diff --git a/grammar.js b/grammar.js index f9afdff..057b6d6 100644 --- a/grammar.js +++ b/grammar.js @@ -35,37 +35,47 @@ const PREC = { module.exports = grammar({ name: 'c', + conflicts: $ => [ + [$.type_specifier, $._declarator], + [$.type_specifier, $._declarator, $.macro_type_specifier], + [$.type_specifier, $.expression], + [$.type_specifier, $.expression, $.macro_type_specifier], + [$.type_specifier, $.macro_type_specifier], + [$.type_specifier, $.sized_type_specifier], + [$.sized_type_specifier], + [$.attributed_statement], + [$._declaration_modifiers, $.attributed_statement], + [$.enum_specifier], + [$.type_specifier, $._old_style_parameter_list], + [$.parameter_list, $._old_style_parameter_list], + [$.function_declarator, $._function_declaration_declarator], + [$._block_item, $.statement], + [$._top_level_item, $._top_level_statement], + [$.type_specifier, $._top_level_expression_statement], + ], + extras: $ => [ /\s|\\\r?\n/, $.comment, ], inline: $ => [ - $._statement, - $._block_item, - $._top_level_item, - $._top_level_statement, $._type_identifier, $._field_identifier, $._statement_identifier, $._non_case_statement, $._assignment_left_expression, + $._expression_not_binary, ], - conflicts: $ => [ - [$._type_specifier, $._declarator], - [$._type_specifier, $._declarator, $.macro_type_specifier], - [$._type_specifier, $._expression_not_binary], - [$._type_specifier, $._expression_not_binary, $.macro_type_specifier], - [$._type_specifier, $.macro_type_specifier], - [$._type_specifier, $.sized_type_specifier], - [$.sized_type_specifier], - [$.attributed_statement], - [$._declaration_modifiers, $.attributed_statement], - [$.enum_specifier], - [$._type_specifier, $._old_style_parameter_list], - [$.parameter_list, $._old_style_parameter_list], - [$.function_declarator, $._function_declaration_declarator], + supertypes: $ => [ + $.expression, + $.statement, + $.type_specifier, + $._declarator, + $._field_declarator, + $._type_declarator, + $._abstract_declarator, ], word: $ => $.identifier, @@ -96,7 +106,7 @@ module.exports = grammar({ alias($._old_style_function_definition, $.function_definition), $.linkage_specification, $.declaration, - $._statement, + $.statement, $.attributed_statement, $.type_definition, $._empty_declaration, @@ -263,7 +273,7 @@ module.exports = grammar({ repeat($.attribute_specifier), ';', ), - _type_definition_type: $ => seq(repeat($.type_qualifier), field('type', $._type_specifier), repeat($.type_qualifier)), + _type_definition_type: $ => seq(repeat($.type_qualifier), field('type', $.type_specifier), repeat($.type_qualifier)), _type_definition_declarators: $ => commaSep1(field('declarator', $._type_declarator)), _declaration_modifiers: $ => choice( @@ -276,7 +286,7 @@ module.exports = grammar({ _declaration_specifiers: $ => prec.right(seq( repeat($._declaration_modifiers), - field('type', $._type_specifier), + field('type', $.type_specifier), repeat($._declaration_modifiers), )), @@ -505,35 +515,35 @@ module.exports = grammar({ field('declarator', $._declarator), '[', repeat(choice($.type_qualifier, 'static')), - field('size', optional(choice($._expression, '*'))), + field('size', optional(choice($.expression, '*'))), ']', )), array_field_declarator: $ => prec(1, seq( field('declarator', $._field_declarator), '[', repeat(choice($.type_qualifier, 'static')), - field('size', optional(choice($._expression, '*'))), + field('size', optional(choice($.expression, '*'))), ']', )), array_type_declarator: $ => prec(1, seq( field('declarator', $._type_declarator), '[', repeat(choice($.type_qualifier, 'static')), - field('size', optional(choice($._expression, '*'))), + field('size', optional(choice($.expression, '*'))), ']', )), abstract_array_declarator: $ => prec(1, seq( field('declarator', optional($._abstract_declarator)), '[', repeat(choice($.type_qualifier, 'static')), - field('size', optional(choice($._expression, '*'))), + field('size', optional(choice($.expression, '*'))), ']', )), init_declarator: $ => seq( field('declarator', $._declarator), '=', - field('value', choice($.initializer_list, $._expression)), + field('value', choice($.initializer_list, $.expression)), ), compound_statement: $ => seq( @@ -571,11 +581,11 @@ module.exports = grammar({ alignas_qualifier: $ => seq( choice('alignas', '_Alignas'), '(', - choice($._expression, $.type_descriptor), + choice($.expression, $.type_descriptor), ')', ), - _type_specifier: $ => choice( + type_specifier: $ => choice( $.struct_specifier, $.union_specifier, $.enum_specifier, @@ -729,11 +739,11 @@ module.exports = grammar({ optional($.bitfield_clause), )), - bitfield_clause: $ => seq(':', $._expression), + bitfield_clause: $ => seq(':', $.expression), enumerator: $ => seq( field('name', $.identifier), - optional(seq('=', field('value', $._expression))), + optional(seq('=', field('value', $.expression))), ), variadic_parameter: _ => '...', @@ -761,10 +771,10 @@ module.exports = grammar({ attributed_statement: $ => seq( repeat1($.attribute_declaration), - $._statement, + $.statement, ), - _statement: $ => choice( + statement: $ => choice( $.case_statement, $._non_case_statement, ), @@ -807,7 +817,7 @@ module.exports = grammar({ labeled_statement: $ => seq( field('label', $._statement_identifier), ':', - $._statement, + $.statement, ), // This is missing binary expressions, others were kept so that macro code can be parsed better and code examples @@ -818,7 +828,7 @@ module.exports = grammar({ expression_statement: $ => seq( optional(choice( - $._expression, + $.expression, $.comma_expression, )), ';', @@ -827,11 +837,11 @@ module.exports = grammar({ if_statement: $ => prec.right(seq( 'if', field('condition', $.parenthesized_expression), - field('consequence', $._statement), + field('consequence', $.statement), optional(field('alternative', $.else_clause)), )), - else_clause: $ => seq('else', $._statement), + else_clause: $ => seq('else', $.statement), switch_statement: $ => seq( 'switch', @@ -841,7 +851,7 @@ module.exports = grammar({ case_statement: $ => prec.right(seq( choice( - seq('case', field('value', $._expression)), + seq('case', field('value', $.expression)), 'default', ), ':', @@ -855,12 +865,12 @@ module.exports = grammar({ while_statement: $ => seq( 'while', field('condition', $.parenthesized_expression), - field('body', $._statement), + field('body', $.statement), ), do_statement: $ => seq( 'do', - field('body', $._statement), + field('body', $.statement), 'while', field('condition', $.parenthesized_expression), ';', @@ -871,21 +881,21 @@ module.exports = grammar({ '(', $._for_statement_body, ')', - field('body', $._statement), + field('body', $.statement), ), _for_statement_body: $ => seq( choice( field('initializer', $.declaration), - seq(field('initializer', optional(choice($._expression, $.comma_expression))), ';'), + seq(field('initializer', optional(choice($.expression, $.comma_expression))), ';'), ), - field('condition', optional(choice($._expression, $.comma_expression))), + field('condition', optional(choice($.expression, $.comma_expression))), ';', - field('update', optional(choice($._expression, $.comma_expression))), + field('update', optional(choice($.expression, $.comma_expression))), ), return_statement: $ => seq( 'return', - optional(choice($._expression, $.comma_expression)), + optional(choice($.expression, $.comma_expression)), ';', ), @@ -926,7 +936,7 @@ module.exports = grammar({ // Expressions - _expression: $ => choice( + expression: $ => choice( $._expression_not_binary, $.binary_expression, ), @@ -963,17 +973,17 @@ module.exports = grammar({ )), comma_expression: $ => seq( - field('left', $._expression), + field('left', $.expression), ',', - field('right', choice($._expression, $.comma_expression)), + field('right', choice($.expression, $.comma_expression)), ), conditional_expression: $ => prec.right(PREC.CONDITIONAL, seq( - field('condition', $._expression), + field('condition', $.expression), '?', - optional(field('consequence', choice($._expression, $.comma_expression))), + optional(field('consequence', choice($.expression, $.comma_expression))), ':', - field('alternative', $._expression), + field('alternative', $.expression), )), _assignment_left_expression: $ => choice( @@ -1000,17 +1010,17 @@ module.exports = grammar({ '^=', '|=', )), - field('right', $._expression), + field('right', $.expression), )), pointer_expression: $ => prec.left(PREC.CAST, seq( field('operator', choice('*', '&')), - field('argument', $._expression), + field('argument', $.expression), )), unary_expression: $ => prec.left(PREC.UNARY, seq( field('operator', choice('!', '~', '-', '+')), - field('argument', $._expression), + field('argument', $.expression), )), binary_expression: $ => { @@ -1037,16 +1047,16 @@ module.exports = grammar({ return choice(...table.map(([operator, precedence]) => { return prec.left(precedence, seq( - field('left', $._expression), + field('left', $.expression), // @ts-ignore field('operator', operator), - field('right', $._expression), + field('right', $.expression), )); })); }, update_expression: $ => { - const argument = field('argument', $._expression); + const argument = field('argument', $.expression); const operator = field('operator', choice('--', '++')); return prec.right(PREC.UNARY, choice( seq(operator, argument), @@ -1058,12 +1068,12 @@ module.exports = grammar({ '(', field('type', $.type_descriptor), ')', - field('value', $._expression), + field('value', $.expression), )), type_descriptor: $ => seq( repeat($.type_qualifier), - field('type', $._type_specifier), + field('type', $.type_specifier), repeat($.type_qualifier), field('declarator', optional($._abstract_declarator)), ), @@ -1071,7 +1081,7 @@ module.exports = grammar({ sizeof_expression: $ => prec(PREC.SIZEOF, seq( 'sizeof', choice( - field('value', $._expression), + field('value', $.expression), seq('(', field('type', $.type_descriptor), ')'), ), )), @@ -1089,21 +1099,21 @@ module.exports = grammar({ generic_expression: $ => prec(PREC.CALL, seq( '_Generic', '(', - $._expression, + $.expression, ',', - commaSep1(seq($.type_descriptor, ':', $._expression)), + commaSep1(seq($.type_descriptor, ':', $.expression)), ')', )), subscript_expression: $ => prec(PREC.SUBSCRIPT, seq( - field('argument', $._expression), + field('argument', $.expression), '[', - field('index', $._expression), + field('index', $.expression), ']', )), call_expression: $ => prec(PREC.CALL, seq( - field('function', $._expression), + field('function', $.expression), field('arguments', $.argument_list), )), @@ -1161,7 +1171,7 @@ module.exports = grammar({ )), field('constraint', $.string_literal), '(', - field('value', $._expression), + field('value', $.expression), ')', ), @@ -1176,11 +1186,11 @@ module.exports = grammar({ ), // The compound_statement is added to parse macros taking statements as arguments, e.g. MYFORLOOP(1, 10, i, { foo(i); bar(i); }) - argument_list: $ => seq('(', commaSep(choice(seq(optional('__extension__'), $._expression), $.compound_statement)), ')'), + argument_list: $ => seq('(', commaSep(choice(seq(optional('__extension__'), $.expression), $.compound_statement)), ')'), field_expression: $ => seq( prec(PREC.FIELD, seq( - field('argument', $._expression), + field('argument', $.expression), field('operator', choice('.', '->')), )), field('field', $._field_identifier), @@ -1195,7 +1205,7 @@ module.exports = grammar({ parenthesized_expression: $ => seq( '(', - choice($._expression, $.comma_expression), + choice($.expression, $.comma_expression), ')', ), @@ -1203,7 +1213,7 @@ module.exports = grammar({ '{', commaSep(choice( $.initializer_pair, - $._expression, + $.expression, $.initializer_list, )), optional(','), @@ -1218,18 +1228,18 @@ module.exports = grammar({ $.subscript_range_designator, ))), '=', - field('value', choice($._expression, $.initializer_list)), + field('value', choice($.expression, $.initializer_list)), ), seq( field('designator', $._field_identifier), ':', - field('value', choice($._expression, $.initializer_list)), + field('value', choice($.expression, $.initializer_list)), ), ), - subscript_designator: $ => seq('[', $._expression, ']'), + subscript_designator: $ => seq('[', $.expression, ']'), - subscript_range_designator: $ => seq('[', field('start', $._expression), '...', field('end', $._expression), ']'), + subscript_range_designator: $ => seq('[', field('start', $.expression), '...', field('end', $.expression), ']'), field_designator: $ => seq('.', $._field_identifier), @@ -1326,7 +1336,7 @@ module.exports = grammar({ _statement_identifier: $ => alias($.identifier, $.statement_identifier), _empty_declaration: $ => seq( - $._type_specifier, + $.type_specifier, ';', ), @@ -1347,16 +1357,6 @@ module.exports = grammar({ ), )), }, - - supertypes: $ => [ - $._expression, - $._statement, - $._type_specifier, - $._declarator, - $._field_declarator, - $._type_declarator, - $._abstract_declarator, - ], }); module.exports.PREC = PREC; diff --git a/src/grammar.json b/src/grammar.json index 428fe29..d32c70f 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -101,7 +101,7 @@ }, { "type": "SYMBOL", - "name": "_statement" + "name": "statement" }, { "type": "SYMBOL", @@ -3050,7 +3050,7 @@ "name": "type", "content": { "type": "SYMBOL", - "name": "_type_specifier" + "name": "type_specifier" } }, { @@ -3138,7 +3138,7 @@ "name": "type", "content": { "type": "SYMBOL", - "name": "_type_specifier" + "name": "type_specifier" } }, { @@ -4301,7 +4301,7 @@ "members": [ { "type": "SYMBOL", - "name": "_expression" + "name": "expression" }, { "type": "STRING", @@ -4367,7 +4367,7 @@ "members": [ { "type": "SYMBOL", - "name": "_expression" + "name": "expression" }, { "type": "STRING", @@ -4433,7 +4433,7 @@ "members": [ { "type": "SYMBOL", - "name": "_expression" + "name": "expression" }, { "type": "STRING", @@ -4507,7 +4507,7 @@ "members": [ { "type": "SYMBOL", - "name": "_expression" + "name": "expression" }, { "type": "STRING", @@ -4555,7 +4555,7 @@ }, { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } ] } @@ -4697,7 +4697,7 @@ "members": [ { "type": "SYMBOL", - "name": "_expression" + "name": "expression" }, { "type": "SYMBOL", @@ -4711,7 +4711,7 @@ } ] }, - "_type_specifier": { + "type_specifier": { "type": "CHOICE", "members": [ { @@ -5564,7 +5564,7 @@ }, { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } ] }, @@ -5594,7 +5594,7 @@ "name": "value", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -5784,11 +5784,11 @@ }, { "type": "SYMBOL", - "name": "_statement" + "name": "statement" } ] }, - "_statement": { + "statement": { "type": "CHOICE", "members": [ { @@ -5949,7 +5949,7 @@ }, { "type": "SYMBOL", - "name": "_statement" + "name": "statement" } ] }, @@ -5977,7 +5977,7 @@ "members": [ { "type": "SYMBOL", - "name": "_expression" + "name": "expression" }, { "type": "SYMBOL", @@ -6019,7 +6019,7 @@ "name": "consequence", "content": { "type": "SYMBOL", - "name": "_statement" + "name": "statement" } }, { @@ -6050,7 +6050,7 @@ }, { "type": "SYMBOL", - "name": "_statement" + "name": "statement" } ] }, @@ -6100,7 +6100,7 @@ "name": "value", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -6158,7 +6158,7 @@ "name": "body", "content": { "type": "SYMBOL", - "name": "_statement" + "name": "statement" } } ] @@ -6175,7 +6175,7 @@ "name": "body", "content": { "type": "SYMBOL", - "name": "_statement" + "name": "statement" } }, { @@ -6220,7 +6220,7 @@ "name": "body", "content": { "type": "SYMBOL", - "name": "_statement" + "name": "statement" } } ] @@ -6253,7 +6253,7 @@ "members": [ { "type": "SYMBOL", - "name": "_expression" + "name": "expression" }, { "type": "SYMBOL", @@ -6286,7 +6286,7 @@ "members": [ { "type": "SYMBOL", - "name": "_expression" + "name": "expression" }, { "type": "SYMBOL", @@ -6315,7 +6315,7 @@ "members": [ { "type": "SYMBOL", - "name": "_expression" + "name": "expression" }, { "type": "SYMBOL", @@ -6346,7 +6346,7 @@ "members": [ { "type": "SYMBOL", - "name": "_expression" + "name": "expression" }, { "type": "SYMBOL", @@ -6497,7 +6497,7 @@ } ] }, - "_expression": { + "expression": { "type": "CHOICE", "members": [ { @@ -6632,7 +6632,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -6647,7 +6647,7 @@ "members": [ { "type": "SYMBOL", - "name": "_expression" + "name": "expression" }, { "type": "SYMBOL", @@ -6669,7 +6669,7 @@ "name": "condition", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -6687,7 +6687,7 @@ "members": [ { "type": "SYMBOL", - "name": "_expression" + "name": "expression" }, { "type": "SYMBOL", @@ -6710,7 +6710,7 @@ "name": "alternative", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -6817,7 +6817,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -6851,7 +6851,7 @@ "name": "argument", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -6893,7 +6893,7 @@ "name": "argument", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -6913,7 +6913,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -6929,7 +6929,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -6946,7 +6946,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -6962,7 +6962,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -6979,7 +6979,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -6995,7 +6995,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -7012,7 +7012,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -7028,7 +7028,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -7045,7 +7045,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -7061,7 +7061,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -7078,7 +7078,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -7094,7 +7094,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -7111,7 +7111,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -7127,7 +7127,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -7144,7 +7144,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -7160,7 +7160,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -7177,7 +7177,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -7193,7 +7193,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -7210,7 +7210,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -7226,7 +7226,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -7243,7 +7243,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -7259,7 +7259,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -7276,7 +7276,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -7292,7 +7292,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -7309,7 +7309,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -7325,7 +7325,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -7342,7 +7342,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -7358,7 +7358,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -7375,7 +7375,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -7391,7 +7391,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -7408,7 +7408,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -7424,7 +7424,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -7441,7 +7441,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -7457,7 +7457,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -7474,7 +7474,7 @@ "name": "left", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -7490,7 +7490,7 @@ "name": "right", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -7529,7 +7529,7 @@ "name": "argument", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -7542,7 +7542,7 @@ "name": "argument", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -7594,7 +7594,7 @@ "name": "value", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } } ] @@ -7615,7 +7615,7 @@ "name": "type", "content": { "type": "SYMBOL", - "name": "_type_specifier" + "name": "type_specifier" } }, { @@ -7661,7 +7661,7 @@ "name": "value", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -7807,7 +7807,7 @@ }, { "type": "SYMBOL", - "name": "_expression" + "name": "expression" }, { "type": "STRING", @@ -7829,7 +7829,7 @@ }, { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } ] }, @@ -7855,7 +7855,7 @@ }, { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } ] } @@ -7882,7 +7882,7 @@ "name": "argument", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -7894,7 +7894,7 @@ "name": "index", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -7915,7 +7915,7 @@ "name": "function", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -8277,7 +8277,7 @@ "name": "value", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -8419,7 +8419,7 @@ }, { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } ] }, @@ -8458,7 +8458,7 @@ }, { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } ] }, @@ -8498,7 +8498,7 @@ "name": "argument", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -8572,7 +8572,7 @@ "members": [ { "type": "SYMBOL", - "name": "_expression" + "name": "expression" }, { "type": "SYMBOL", @@ -8608,7 +8608,7 @@ }, { "type": "SYMBOL", - "name": "_expression" + "name": "expression" }, { "type": "SYMBOL", @@ -8634,7 +8634,7 @@ }, { "type": "SYMBOL", - "name": "_expression" + "name": "expression" }, { "type": "SYMBOL", @@ -8712,7 +8712,7 @@ "members": [ { "type": "SYMBOL", - "name": "_expression" + "name": "expression" }, { "type": "SYMBOL", @@ -8746,7 +8746,7 @@ "members": [ { "type": "SYMBOL", - "name": "_expression" + "name": "expression" }, { "type": "SYMBOL", @@ -8768,7 +8768,7 @@ }, { "type": "SYMBOL", - "name": "_expression" + "name": "expression" }, { "type": "STRING", @@ -8788,7 +8788,7 @@ "name": "start", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -8800,7 +8800,7 @@ "name": "end", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "expression" } }, { @@ -9505,7 +9505,7 @@ "members": [ { "type": "SYMBOL", - "name": "_type_specifier" + "name": "type_specifier" }, { "type": "STRING", @@ -9597,29 +9597,29 @@ ], "conflicts": [ [ - "_type_specifier", + "type_specifier", "_declarator" ], [ - "_type_specifier", + "type_specifier", "_declarator", "macro_type_specifier" ], [ - "_type_specifier", - "_expression_not_binary" + "type_specifier", + "expression" ], [ - "_type_specifier", - "_expression_not_binary", + "type_specifier", + "expression", "macro_type_specifier" ], [ - "_type_specifier", + "type_specifier", "macro_type_specifier" ], [ - "_type_specifier", + "type_specifier", "sized_type_specifier" ], [ @@ -9636,7 +9636,7 @@ "enum_specifier" ], [ - "_type_specifier", + "type_specifier", "_old_style_parameter_list" ], [ @@ -9646,25 +9646,34 @@ [ "function_declarator", "_function_declaration_declarator" + ], + [ + "_block_item", + "statement" + ], + [ + "_top_level_item", + "_top_level_statement" + ], + [ + "type_specifier", + "_top_level_expression_statement" ] ], "precedences": [], "externals": [], "inline": [ - "_statement", - "_block_item", - "_top_level_item", - "_top_level_statement", "_type_identifier", "_field_identifier", "_statement_identifier", "_non_case_statement", - "_assignment_left_expression" + "_assignment_left_expression", + "_expression_not_binary" ], "supertypes": [ - "_expression", - "_statement", - "_type_specifier", + "expression", + "statement", + "type_specifier", "_declarator", "_field_declarator", "_type_declarator", diff --git a/src/node-types.json b/src/node-types.json index eb710e6..fc27d76 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -52,7 +52,71 @@ ] }, { - "type": "_expression", + "type": "_field_declarator", + "named": true, + "subtypes": [ + { + "type": "array_declarator", + "named": true + }, + { + "type": "attributed_declarator", + "named": true + }, + { + "type": "field_identifier", + "named": true + }, + { + "type": "function_declarator", + "named": true + }, + { + "type": "parenthesized_declarator", + "named": true + }, + { + "type": "pointer_declarator", + "named": true + } + ] + }, + { + "type": "_type_declarator", + "named": true, + "subtypes": [ + { + "type": "array_declarator", + "named": true + }, + { + "type": "attributed_declarator", + "named": true + }, + { + "type": "function_declarator", + "named": true + }, + { + "type": "parenthesized_declarator", + "named": true + }, + { + "type": "pointer_declarator", + "named": true + }, + { + "type": "primitive_type", + "named": true + }, + { + "type": "type_identifier", + "named": true + } + ] + }, + { + "type": "expression", "named": true, "subtypes": [ { @@ -158,37 +222,7 @@ ] }, { - "type": "_field_declarator", - "named": true, - "subtypes": [ - { - "type": "array_declarator", - "named": true - }, - { - "type": "attributed_declarator", - "named": true - }, - { - "type": "field_identifier", - "named": true - }, - { - "type": "function_declarator", - "named": true - }, - { - "type": "parenthesized_declarator", - "named": true - }, - { - "type": "pointer_declarator", - "named": true - } - ] - }, - { - "type": "_statement", + "type": "statement", "named": true, "subtypes": [ { @@ -258,41 +292,7 @@ ] }, { - "type": "_type_declarator", - "named": true, - "subtypes": [ - { - "type": "array_declarator", - "named": true - }, - { - "type": "attributed_declarator", - "named": true - }, - { - "type": "function_declarator", - "named": true - }, - { - "type": "parenthesized_declarator", - "named": true - }, - { - "type": "pointer_declarator", - "named": true - }, - { - "type": "primitive_type", - "named": true - }, - { - "type": "type_identifier", - "named": true - } - ] - }, - { - "type": "_type_specifier", + "type": "type_specifier", "named": true, "subtypes": [ { @@ -348,7 +348,7 @@ "named": false }, { - "type": "_expression", + "type": "expression", "named": true } ] @@ -449,7 +449,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true }, { @@ -484,11 +484,11 @@ "required": false, "types": [ { - "type": "_expression", + "type": "compound_statement", "named": true }, { - "type": "compound_statement", + "type": "expression", "named": true }, { @@ -529,7 +529,7 @@ "named": false }, { - "type": "_expression", + "type": "expression", "named": true } ] @@ -635,7 +635,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -744,11 +744,11 @@ "required": true, "types": [ { - "type": "_statement", + "type": "attribute_declaration", "named": true }, { - "type": "attribute_declaration", + "type": "statement", "named": true } ] @@ -763,7 +763,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true }, { @@ -855,7 +855,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true }, { @@ -875,7 +875,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -905,7 +905,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -921,7 +921,7 @@ "required": false, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -1021,7 +1021,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -1056,7 +1056,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -1066,11 +1066,11 @@ "required": true, "types": [ { - "type": "_expression", + "type": "comma_expression", "named": true }, { - "type": "comma_expression", + "type": "expression", "named": true } ] @@ -1111,14 +1111,6 @@ "multiple": true, "required": false, "types": [ - { - "type": "_statement", - "named": true - }, - { - "type": "_type_specifier", - "named": true - }, { "type": "declaration", "named": true @@ -1155,9 +1147,17 @@ "type": "preproc_include", "named": true }, + { + "type": "statement", + "named": true + }, { "type": "type_definition", "named": true + }, + { + "type": "type_specifier", + "named": true } ] } @@ -1190,7 +1190,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -1200,7 +1200,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -1210,11 +1210,11 @@ "required": false, "types": [ { - "type": "_expression", + "type": "comma_expression", "named": true }, { - "type": "comma_expression", + "type": "expression", "named": true } ] @@ -1277,7 +1277,7 @@ "required": true, "types": [ { - "type": "_type_specifier", + "type": "type_specifier", "named": true } ] @@ -1318,14 +1318,6 @@ "multiple": true, "required": false, "types": [ - { - "type": "_statement", - "named": true - }, - { - "type": "_type_specifier", - "named": true - }, { "type": "declaration", "named": true @@ -1362,9 +1354,17 @@ "type": "preproc_include", "named": true }, + { + "type": "statement", + "named": true + }, { "type": "type_definition", "named": true + }, + { + "type": "type_specifier", + "named": true } ] } @@ -1378,7 +1378,7 @@ "required": true, "types": [ { - "type": "_statement", + "type": "statement", "named": true } ] @@ -1404,7 +1404,7 @@ "required": true, "types": [ { - "type": "_statement", + "type": "statement", "named": true } ] @@ -1475,7 +1475,7 @@ "required": false, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -1518,11 +1518,11 @@ "required": false, "types": [ { - "type": "_expression", + "type": "comma_expression", "named": true }, { - "type": "comma_expression", + "type": "expression", "named": true } ] @@ -1547,7 +1547,7 @@ "required": true, "types": [ { - "type": "_type_specifier", + "type": "type_specifier", "named": true } ] @@ -1643,7 +1643,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -1683,7 +1683,7 @@ "required": true, "types": [ { - "type": "_statement", + "type": "statement", "named": true } ] @@ -1693,11 +1693,11 @@ "required": false, "types": [ { - "type": "_expression", + "type": "comma_expression", "named": true }, { - "type": "comma_expression", + "type": "expression", "named": true } ] @@ -1707,15 +1707,15 @@ "required": false, "types": [ { - "type": "_expression", + "type": "comma_expression", "named": true }, { - "type": "comma_expression", + "type": "declaration", "named": true }, { - "type": "declaration", + "type": "expression", "named": true } ] @@ -1725,11 +1725,11 @@ "required": false, "types": [ { - "type": "_expression", + "type": "comma_expression", "named": true }, { - "type": "comma_expression", + "type": "expression", "named": true } ] @@ -1821,7 +1821,7 @@ "required": true, "types": [ { - "type": "_type_specifier", + "type": "type_specifier", "named": true } ] @@ -1871,7 +1871,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true }, { @@ -2016,7 +2016,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -2141,7 +2141,7 @@ "required": true, "types": [ { - "type": "_statement", + "type": "statement", "named": true } ] @@ -2167,7 +2167,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true }, { @@ -2187,7 +2187,7 @@ "required": false, "types": [ { - "type": "_expression", + "type": "expression", "named": true }, { @@ -2232,7 +2232,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true }, { @@ -2263,7 +2263,7 @@ "required": true, "types": [ { - "type": "_statement", + "type": "statement", "named": true } ] @@ -2450,7 +2450,7 @@ "required": true, "types": [ { - "type": "_type_specifier", + "type": "type_specifier", "named": true } ] @@ -2542,11 +2542,11 @@ "required": true, "types": [ { - "type": "_expression", + "type": "comma_expression", "named": true }, { - "type": "comma_expression", + "type": "expression", "named": true }, { @@ -2607,7 +2607,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -2760,14 +2760,6 @@ "multiple": true, "required": false, "types": [ - { - "type": "_statement", - "named": true - }, - { - "type": "_type_specifier", - "named": true - }, { "type": "declaration", "named": true @@ -2812,9 +2804,17 @@ "type": "preproc_include", "named": true }, + { + "type": "statement", + "named": true + }, { "type": "type_definition", "named": true + }, + { + "type": "type_specifier", + "named": true } ] } @@ -2856,14 +2856,6 @@ "multiple": true, "required": false, "types": [ - { - "type": "_statement", - "named": true - }, - { - "type": "_type_specifier", - "named": true - }, { "type": "declaration", "named": true @@ -2908,9 +2900,17 @@ "type": "preproc_include", "named": true }, + { + "type": "statement", + "named": true + }, { "type": "type_definition", "named": true + }, + { + "type": "type_specifier", + "named": true } ] } @@ -2923,14 +2923,6 @@ "multiple": true, "required": false, "types": [ - { - "type": "_statement", - "named": true - }, - { - "type": "_type_specifier", - "named": true - }, { "type": "declaration", "named": true @@ -2975,9 +2967,17 @@ "type": "preproc_include", "named": true }, + { + "type": "statement", + "named": true + }, { "type": "type_definition", "named": true + }, + { + "type": "type_specifier", + "named": true } ] } @@ -3083,14 +3083,6 @@ "multiple": true, "required": false, "types": [ - { - "type": "_statement", - "named": true - }, - { - "type": "_type_specifier", - "named": true - }, { "type": "declaration", "named": true @@ -3135,9 +3127,17 @@ "type": "preproc_include", "named": true }, + { + "type": "statement", + "named": true + }, { "type": "type_definition", "named": true + }, + { + "type": "type_specifier", + "named": true } ] } @@ -3179,14 +3179,6 @@ "multiple": true, "required": false, "types": [ - { - "type": "_statement", - "named": true - }, - { - "type": "_type_specifier", - "named": true - }, { "type": "declaration", "named": true @@ -3231,9 +3223,17 @@ "type": "preproc_include", "named": true }, + { + "type": "statement", + "named": true + }, { "type": "type_definition", "named": true + }, + { + "type": "type_specifier", + "named": true } ] } @@ -3290,11 +3290,11 @@ "required": false, "types": [ { - "type": "_expression", + "type": "comma_expression", "named": true }, { - "type": "comma_expression", + "type": "expression", "named": true } ] @@ -3416,7 +3416,7 @@ "required": false, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -3496,7 +3496,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -3511,7 +3511,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -3521,7 +3521,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -3537,7 +3537,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -3547,7 +3547,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -3588,10 +3588,6 @@ "multiple": true, "required": false, "types": [ - { - "type": "_type_specifier", - "named": true - }, { "type": "attributed_statement", "named": true @@ -3684,6 +3680,10 @@ "type": "type_definition", "named": true }, + { + "type": "type_specifier", + "named": true + }, { "type": "while_statement", "named": true @@ -3710,7 +3710,7 @@ "required": true, "types": [ { - "type": "_type_specifier", + "type": "type_specifier", "named": true } ] @@ -3750,7 +3750,7 @@ "required": true, "types": [ { - "type": "_type_specifier", + "type": "type_specifier", "named": true } ] @@ -3791,7 +3791,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true }, { @@ -3873,7 +3873,7 @@ "required": true, "types": [ { - "type": "_expression", + "type": "expression", "named": true } ] @@ -3908,7 +3908,7 @@ "required": true, "types": [ { - "type": "_statement", + "type": "statement", "named": true } ] diff --git a/src/parser.c b/src/parser.c index 59bb985..a9ef00d 100644 --- a/src/parser.c +++ b/src/parser.c @@ -13,9 +13,9 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 2031 -#define LARGE_STATE_COUNT 498 -#define SYMBOL_COUNT 352 +#define STATE_COUNT 1981 +#define LARGE_STATE_COUNT 446 +#define SYMBOL_COUNT 355 #define ALIAS_COUNT 3 #define TOKEN_COUNT 157 #define EXTERNAL_TOKEN_COUNT 0 @@ -181,203 +181,206 @@ enum ts_symbol_identifiers { anon_sym_nullptr = 155, sym_comment = 156, sym_translation_unit = 157, - sym_preproc_include = 158, - sym_preproc_def = 159, - sym_preproc_function_def = 160, - sym_preproc_params = 161, - sym_preproc_call = 162, - sym_preproc_if = 163, - sym_preproc_ifdef = 164, - sym_preproc_else = 165, - sym_preproc_elif = 166, - sym_preproc_elifdef = 167, - sym_preproc_if_in_field_declaration_list = 168, - sym_preproc_ifdef_in_field_declaration_list = 169, - sym_preproc_else_in_field_declaration_list = 170, - sym_preproc_elif_in_field_declaration_list = 171, - sym_preproc_elifdef_in_field_declaration_list = 172, - sym_preproc_if_in_enumerator_list = 173, - sym_preproc_ifdef_in_enumerator_list = 174, - sym_preproc_else_in_enumerator_list = 175, - sym_preproc_elif_in_enumerator_list = 176, - sym_preproc_elifdef_in_enumerator_list = 177, - sym_preproc_if_in_enumerator_list_no_comma = 178, - sym_preproc_ifdef_in_enumerator_list_no_comma = 179, - sym_preproc_else_in_enumerator_list_no_comma = 180, - sym_preproc_elif_in_enumerator_list_no_comma = 181, - sym_preproc_elifdef_in_enumerator_list_no_comma = 182, - sym__preproc_expression = 183, - sym_preproc_parenthesized_expression = 184, - sym_preproc_defined = 185, - sym_preproc_unary_expression = 186, - sym_preproc_call_expression = 187, - sym_preproc_argument_list = 188, - sym_preproc_binary_expression = 189, - sym_function_definition = 190, - sym__old_style_function_definition = 191, - sym_declaration = 192, - sym_type_definition = 193, - sym__type_definition_type = 194, - sym__type_definition_declarators = 195, - sym__declaration_modifiers = 196, - sym__declaration_specifiers = 197, - sym_linkage_specification = 198, - sym_attribute_specifier = 199, - sym_attribute = 200, - sym_attribute_declaration = 201, - sym_ms_declspec_modifier = 202, - sym_ms_based_modifier = 203, - sym_ms_call_modifier = 204, - sym_ms_unaligned_ptr_modifier = 205, - sym_ms_pointer_modifier = 206, - sym_declaration_list = 207, - sym__declarator = 208, - sym__declaration_declarator = 209, - sym__field_declarator = 210, - sym__type_declarator = 211, - sym__abstract_declarator = 212, - sym_parenthesized_declarator = 213, - sym_parenthesized_field_declarator = 214, - sym_parenthesized_type_declarator = 215, - sym_abstract_parenthesized_declarator = 216, - sym_attributed_declarator = 217, - sym_attributed_field_declarator = 218, - sym_attributed_type_declarator = 219, - sym_pointer_declarator = 220, - sym_pointer_field_declarator = 221, - sym_pointer_type_declarator = 222, - sym_abstract_pointer_declarator = 223, - sym_function_declarator = 224, - sym__function_declaration_declarator = 225, - sym_function_field_declarator = 226, - sym_function_type_declarator = 227, - sym_abstract_function_declarator = 228, - sym__old_style_function_declarator = 229, - sym_array_declarator = 230, - sym_array_field_declarator = 231, - sym_array_type_declarator = 232, - sym_abstract_array_declarator = 233, - sym_init_declarator = 234, - sym_compound_statement = 235, - sym_storage_class_specifier = 236, - sym_type_qualifier = 237, - sym_alignas_qualifier = 238, - sym__type_specifier = 239, - sym_sized_type_specifier = 240, - sym_enum_specifier = 241, - sym_enumerator_list = 242, - sym_struct_specifier = 243, - sym_union_specifier = 244, - sym_field_declaration_list = 245, - sym__field_declaration_list_item = 246, - sym_field_declaration = 247, - sym__field_declaration_declarator = 248, - sym_bitfield_clause = 249, - sym_enumerator = 250, - sym_variadic_parameter = 251, - sym_parameter_list = 252, - sym__old_style_parameter_list = 253, - sym_parameter_declaration = 254, - sym_attributed_statement = 255, - sym_labeled_statement = 256, - sym__top_level_expression_statement = 257, - sym_expression_statement = 258, - sym_if_statement = 259, - sym_else_clause = 260, - sym_switch_statement = 261, - sym_case_statement = 262, - sym_while_statement = 263, - sym_do_statement = 264, - sym_for_statement = 265, - sym__for_statement_body = 266, - sym_return_statement = 267, - sym_break_statement = 268, - sym_continue_statement = 269, - sym_goto_statement = 270, - sym_seh_try_statement = 271, - sym_seh_except_clause = 272, - sym_seh_finally_clause = 273, - sym_seh_leave_statement = 274, - sym__expression = 275, - sym__expression_not_binary = 276, - sym__string = 277, - sym_comma_expression = 278, - sym_conditional_expression = 279, - sym_assignment_expression = 280, - sym_pointer_expression = 281, - sym_unary_expression = 282, - sym_binary_expression = 283, - sym_update_expression = 284, - sym_cast_expression = 285, - sym_type_descriptor = 286, - sym_sizeof_expression = 287, - sym_alignof_expression = 288, - sym_offsetof_expression = 289, - sym_generic_expression = 290, - sym_subscript_expression = 291, - sym_call_expression = 292, - sym_gnu_asm_expression = 293, - sym_gnu_asm_qualifier = 294, - sym_gnu_asm_output_operand_list = 295, - sym_gnu_asm_output_operand = 296, - sym_gnu_asm_input_operand_list = 297, - sym_gnu_asm_input_operand = 298, - sym_gnu_asm_clobber_list = 299, - sym_gnu_asm_goto_list = 300, - sym_argument_list = 301, - sym_field_expression = 302, - sym_compound_literal_expression = 303, - sym_parenthesized_expression = 304, - sym_initializer_list = 305, - sym_initializer_pair = 306, - sym_subscript_designator = 307, - sym_subscript_range_designator = 308, - sym_field_designator = 309, - sym_char_literal = 310, - sym_concatenated_string = 311, - sym_string_literal = 312, - sym_null = 313, - sym__empty_declaration = 314, - sym_macro_type_specifier = 315, - aux_sym_translation_unit_repeat1 = 316, - aux_sym_preproc_params_repeat1 = 317, - aux_sym_preproc_if_repeat1 = 318, - aux_sym_preproc_if_in_field_declaration_list_repeat1 = 319, - aux_sym_preproc_if_in_enumerator_list_repeat1 = 320, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1 = 321, - aux_sym_preproc_argument_list_repeat1 = 322, - aux_sym__old_style_function_definition_repeat1 = 323, - aux_sym_declaration_repeat1 = 324, - aux_sym_type_definition_repeat1 = 325, - aux_sym__type_definition_type_repeat1 = 326, - aux_sym__type_definition_declarators_repeat1 = 327, - aux_sym__declaration_specifiers_repeat1 = 328, - aux_sym_attribute_declaration_repeat1 = 329, - aux_sym_attributed_declarator_repeat1 = 330, - aux_sym_pointer_declarator_repeat1 = 331, - aux_sym_function_declarator_repeat1 = 332, - aux_sym_array_declarator_repeat1 = 333, - aux_sym_sized_type_specifier_repeat1 = 334, - aux_sym_enumerator_list_repeat1 = 335, - aux_sym__field_declaration_declarator_repeat1 = 336, - aux_sym_parameter_list_repeat1 = 337, - aux_sym__old_style_parameter_list_repeat1 = 338, - aux_sym_case_statement_repeat1 = 339, - aux_sym_generic_expression_repeat1 = 340, - aux_sym_gnu_asm_expression_repeat1 = 341, - aux_sym_gnu_asm_output_operand_list_repeat1 = 342, - aux_sym_gnu_asm_input_operand_list_repeat1 = 343, - aux_sym_gnu_asm_clobber_list_repeat1 = 344, - aux_sym_gnu_asm_goto_list_repeat1 = 345, - aux_sym_argument_list_repeat1 = 346, - aux_sym_initializer_list_repeat1 = 347, - aux_sym_initializer_pair_repeat1 = 348, - aux_sym_char_literal_repeat1 = 349, - aux_sym_concatenated_string_repeat1 = 350, - aux_sym_string_literal_repeat1 = 351, - alias_sym_field_identifier = 352, - alias_sym_statement_identifier = 353, - alias_sym_type_identifier = 354, + sym__top_level_item = 158, + sym__block_item = 159, + sym_preproc_include = 160, + sym_preproc_def = 161, + sym_preproc_function_def = 162, + sym_preproc_params = 163, + sym_preproc_call = 164, + sym_preproc_if = 165, + sym_preproc_ifdef = 166, + sym_preproc_else = 167, + sym_preproc_elif = 168, + sym_preproc_elifdef = 169, + sym_preproc_if_in_field_declaration_list = 170, + sym_preproc_ifdef_in_field_declaration_list = 171, + sym_preproc_else_in_field_declaration_list = 172, + sym_preproc_elif_in_field_declaration_list = 173, + sym_preproc_elifdef_in_field_declaration_list = 174, + sym_preproc_if_in_enumerator_list = 175, + sym_preproc_ifdef_in_enumerator_list = 176, + sym_preproc_else_in_enumerator_list = 177, + sym_preproc_elif_in_enumerator_list = 178, + sym_preproc_elifdef_in_enumerator_list = 179, + sym_preproc_if_in_enumerator_list_no_comma = 180, + sym_preproc_ifdef_in_enumerator_list_no_comma = 181, + sym_preproc_else_in_enumerator_list_no_comma = 182, + sym_preproc_elif_in_enumerator_list_no_comma = 183, + sym_preproc_elifdef_in_enumerator_list_no_comma = 184, + sym__preproc_expression = 185, + sym_preproc_parenthesized_expression = 186, + sym_preproc_defined = 187, + sym_preproc_unary_expression = 188, + sym_preproc_call_expression = 189, + sym_preproc_argument_list = 190, + sym_preproc_binary_expression = 191, + sym_function_definition = 192, + sym__old_style_function_definition = 193, + sym_declaration = 194, + sym_type_definition = 195, + sym__type_definition_type = 196, + sym__type_definition_declarators = 197, + sym__declaration_modifiers = 198, + sym__declaration_specifiers = 199, + sym_linkage_specification = 200, + sym_attribute_specifier = 201, + sym_attribute = 202, + sym_attribute_declaration = 203, + sym_ms_declspec_modifier = 204, + sym_ms_based_modifier = 205, + sym_ms_call_modifier = 206, + sym_ms_unaligned_ptr_modifier = 207, + sym_ms_pointer_modifier = 208, + sym_declaration_list = 209, + sym__declarator = 210, + sym__declaration_declarator = 211, + sym__field_declarator = 212, + sym__type_declarator = 213, + sym__abstract_declarator = 214, + sym_parenthesized_declarator = 215, + sym_parenthesized_field_declarator = 216, + sym_parenthesized_type_declarator = 217, + sym_abstract_parenthesized_declarator = 218, + sym_attributed_declarator = 219, + sym_attributed_field_declarator = 220, + sym_attributed_type_declarator = 221, + sym_pointer_declarator = 222, + sym_pointer_field_declarator = 223, + sym_pointer_type_declarator = 224, + sym_abstract_pointer_declarator = 225, + sym_function_declarator = 226, + sym__function_declaration_declarator = 227, + sym_function_field_declarator = 228, + sym_function_type_declarator = 229, + sym_abstract_function_declarator = 230, + sym__old_style_function_declarator = 231, + sym_array_declarator = 232, + sym_array_field_declarator = 233, + sym_array_type_declarator = 234, + sym_abstract_array_declarator = 235, + sym_init_declarator = 236, + sym_compound_statement = 237, + sym_storage_class_specifier = 238, + sym_type_qualifier = 239, + sym_alignas_qualifier = 240, + sym_type_specifier = 241, + sym_sized_type_specifier = 242, + sym_enum_specifier = 243, + sym_enumerator_list = 244, + sym_struct_specifier = 245, + sym_union_specifier = 246, + sym_field_declaration_list = 247, + sym__field_declaration_list_item = 248, + sym_field_declaration = 249, + sym__field_declaration_declarator = 250, + sym_bitfield_clause = 251, + sym_enumerator = 252, + sym_variadic_parameter = 253, + sym_parameter_list = 254, + sym__old_style_parameter_list = 255, + sym_parameter_declaration = 256, + sym_attributed_statement = 257, + sym_statement = 258, + sym__top_level_statement = 259, + sym_labeled_statement = 260, + sym__top_level_expression_statement = 261, + sym_expression_statement = 262, + sym_if_statement = 263, + sym_else_clause = 264, + sym_switch_statement = 265, + sym_case_statement = 266, + sym_while_statement = 267, + sym_do_statement = 268, + sym_for_statement = 269, + sym__for_statement_body = 270, + sym_return_statement = 271, + sym_break_statement = 272, + sym_continue_statement = 273, + sym_goto_statement = 274, + sym_seh_try_statement = 275, + sym_seh_except_clause = 276, + sym_seh_finally_clause = 277, + sym_seh_leave_statement = 278, + sym_expression = 279, + sym__string = 280, + sym_comma_expression = 281, + sym_conditional_expression = 282, + sym_assignment_expression = 283, + sym_pointer_expression = 284, + sym_unary_expression = 285, + sym_binary_expression = 286, + sym_update_expression = 287, + sym_cast_expression = 288, + sym_type_descriptor = 289, + sym_sizeof_expression = 290, + sym_alignof_expression = 291, + sym_offsetof_expression = 292, + sym_generic_expression = 293, + sym_subscript_expression = 294, + sym_call_expression = 295, + sym_gnu_asm_expression = 296, + sym_gnu_asm_qualifier = 297, + sym_gnu_asm_output_operand_list = 298, + sym_gnu_asm_output_operand = 299, + sym_gnu_asm_input_operand_list = 300, + sym_gnu_asm_input_operand = 301, + sym_gnu_asm_clobber_list = 302, + sym_gnu_asm_goto_list = 303, + sym_argument_list = 304, + sym_field_expression = 305, + sym_compound_literal_expression = 306, + sym_parenthesized_expression = 307, + sym_initializer_list = 308, + sym_initializer_pair = 309, + sym_subscript_designator = 310, + sym_subscript_range_designator = 311, + sym_field_designator = 312, + sym_char_literal = 313, + sym_concatenated_string = 314, + sym_string_literal = 315, + sym_null = 316, + sym__empty_declaration = 317, + sym_macro_type_specifier = 318, + aux_sym_translation_unit_repeat1 = 319, + aux_sym_preproc_params_repeat1 = 320, + aux_sym_preproc_if_repeat1 = 321, + aux_sym_preproc_if_in_field_declaration_list_repeat1 = 322, + aux_sym_preproc_if_in_enumerator_list_repeat1 = 323, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1 = 324, + aux_sym_preproc_argument_list_repeat1 = 325, + aux_sym__old_style_function_definition_repeat1 = 326, + aux_sym_declaration_repeat1 = 327, + aux_sym_type_definition_repeat1 = 328, + aux_sym__type_definition_type_repeat1 = 329, + aux_sym__type_definition_declarators_repeat1 = 330, + aux_sym__declaration_specifiers_repeat1 = 331, + aux_sym_attribute_declaration_repeat1 = 332, + aux_sym_attributed_declarator_repeat1 = 333, + aux_sym_pointer_declarator_repeat1 = 334, + aux_sym_function_declarator_repeat1 = 335, + aux_sym_array_declarator_repeat1 = 336, + aux_sym_sized_type_specifier_repeat1 = 337, + aux_sym_enumerator_list_repeat1 = 338, + aux_sym__field_declaration_declarator_repeat1 = 339, + aux_sym_parameter_list_repeat1 = 340, + aux_sym__old_style_parameter_list_repeat1 = 341, + aux_sym_case_statement_repeat1 = 342, + aux_sym_generic_expression_repeat1 = 343, + aux_sym_gnu_asm_expression_repeat1 = 344, + aux_sym_gnu_asm_output_operand_list_repeat1 = 345, + aux_sym_gnu_asm_input_operand_list_repeat1 = 346, + aux_sym_gnu_asm_clobber_list_repeat1 = 347, + aux_sym_gnu_asm_goto_list_repeat1 = 348, + aux_sym_argument_list_repeat1 = 349, + aux_sym_initializer_list_repeat1 = 350, + aux_sym_initializer_pair_repeat1 = 351, + aux_sym_char_literal_repeat1 = 352, + aux_sym_concatenated_string_repeat1 = 353, + aux_sym_string_literal_repeat1 = 354, + alias_sym_field_identifier = 355, + alias_sym_statement_identifier = 356, + alias_sym_type_identifier = 357, }; static const char * const ts_symbol_names[] = { @@ -539,6 +542,8 @@ static const char * const ts_symbol_names[] = { [anon_sym_nullptr] = "nullptr", [sym_comment] = "comment", [sym_translation_unit] = "translation_unit", + [sym__top_level_item] = "_top_level_item", + [sym__block_item] = "_block_item", [sym_preproc_include] = "preproc_include", [sym_preproc_def] = "preproc_def", [sym_preproc_function_def] = "preproc_function_def", @@ -620,7 +625,7 @@ static const char * const ts_symbol_names[] = { [sym_storage_class_specifier] = "storage_class_specifier", [sym_type_qualifier] = "type_qualifier", [sym_alignas_qualifier] = "alignas_qualifier", - [sym__type_specifier] = "_type_specifier", + [sym_type_specifier] = "type_specifier", [sym_sized_type_specifier] = "sized_type_specifier", [sym_enum_specifier] = "enum_specifier", [sym_enumerator_list] = "enumerator_list", @@ -637,6 +642,8 @@ static const char * const ts_symbol_names[] = { [sym__old_style_parameter_list] = "parameter_list", [sym_parameter_declaration] = "parameter_declaration", [sym_attributed_statement] = "attributed_statement", + [sym_statement] = "statement", + [sym__top_level_statement] = "_top_level_statement", [sym_labeled_statement] = "labeled_statement", [sym__top_level_expression_statement] = "expression_statement", [sym_expression_statement] = "expression_statement", @@ -656,8 +663,7 @@ static const char * const ts_symbol_names[] = { [sym_seh_except_clause] = "seh_except_clause", [sym_seh_finally_clause] = "seh_finally_clause", [sym_seh_leave_statement] = "seh_leave_statement", - [sym__expression] = "_expression", - [sym__expression_not_binary] = "_expression_not_binary", + [sym_expression] = "expression", [sym__string] = "_string", [sym_comma_expression] = "comma_expression", [sym_conditional_expression] = "conditional_expression", @@ -897,6 +903,8 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_nullptr] = anon_sym_nullptr, [sym_comment] = sym_comment, [sym_translation_unit] = sym_translation_unit, + [sym__top_level_item] = sym__top_level_item, + [sym__block_item] = sym__block_item, [sym_preproc_include] = sym_preproc_include, [sym_preproc_def] = sym_preproc_def, [sym_preproc_function_def] = sym_preproc_function_def, @@ -978,7 +986,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_storage_class_specifier] = sym_storage_class_specifier, [sym_type_qualifier] = sym_type_qualifier, [sym_alignas_qualifier] = sym_alignas_qualifier, - [sym__type_specifier] = sym__type_specifier, + [sym_type_specifier] = sym_type_specifier, [sym_sized_type_specifier] = sym_sized_type_specifier, [sym_enum_specifier] = sym_enum_specifier, [sym_enumerator_list] = sym_enumerator_list, @@ -995,6 +1003,8 @@ static const TSSymbol ts_symbol_map[] = { [sym__old_style_parameter_list] = sym_parameter_list, [sym_parameter_declaration] = sym_parameter_declaration, [sym_attributed_statement] = sym_attributed_statement, + [sym_statement] = sym_statement, + [sym__top_level_statement] = sym__top_level_statement, [sym_labeled_statement] = sym_labeled_statement, [sym__top_level_expression_statement] = sym_expression_statement, [sym_expression_statement] = sym_expression_statement, @@ -1014,8 +1024,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_seh_except_clause] = sym_seh_except_clause, [sym_seh_finally_clause] = sym_seh_finally_clause, [sym_seh_leave_statement] = sym_seh_leave_statement, - [sym__expression] = sym__expression, - [sym__expression_not_binary] = sym__expression_not_binary, + [sym_expression] = sym_expression, [sym__string] = sym__string, [sym_comma_expression] = sym_comma_expression, [sym_conditional_expression] = sym_conditional_expression, @@ -1729,6 +1738,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym__top_level_item] = { + .visible = false, + .named = true, + }, + [sym__block_item] = { + .visible = false, + .named = true, + }, [sym_preproc_include] = { .visible = true, .named = true, @@ -2057,7 +2074,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym__type_specifier] = { + [sym_type_specifier] = { .visible = false, .named = true, .supertype = true, @@ -2126,6 +2143,15 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_statement] = { + .visible = false, + .named = true, + .supertype = true, + }, + [sym__top_level_statement] = { + .visible = false, + .named = true, + }, [sym_labeled_statement] = { .visible = true, .named = true, @@ -2202,15 +2228,11 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym__expression] = { + [sym_expression] = { .visible = false, .named = true, .supertype = true, }, - [sym__expression_not_binary] = { - .visible = false, - .named = true, - }, [sym__string] = { .visible = false, .named = true, @@ -3200,43 +3222,43 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3] = 3, [4] = 4, [5] = 5, - [6] = 5, - [7] = 4, + [6] = 4, + [7] = 7, [8] = 8, - [9] = 5, - [10] = 10, + [9] = 8, + [10] = 7, [11] = 2, - [12] = 2, - [13] = 3, - [14] = 14, - [15] = 3, - [16] = 16, - [17] = 3, + [12] = 4, + [13] = 7, + [14] = 8, + [15] = 8, + [16] = 4, + [17] = 2, [18] = 2, - [19] = 4, - [20] = 4, - [21] = 5, + [19] = 19, + [20] = 7, + [21] = 21, [22] = 22, [23] = 23, [24] = 24, - [25] = 23, + [25] = 25, [26] = 26, - [27] = 27, - [28] = 27, - [29] = 23, - [30] = 30, - [31] = 23, - [32] = 24, - [33] = 24, + [27] = 23, + [28] = 28, + [29] = 28, + [30] = 25, + [31] = 22, + [32] = 25, + [33] = 28, [34] = 24, - [35] = 22, - [36] = 30, - [37] = 30, - [38] = 22, - [39] = 39, - [40] = 27, - [41] = 27, - [42] = 30, + [35] = 23, + [36] = 36, + [37] = 24, + [38] = 25, + [39] = 24, + [40] = 22, + [41] = 23, + [42] = 28, [43] = 43, [44] = 44, [45] = 45, @@ -3244,26 +3266,26 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [47] = 47, [48] = 48, [49] = 49, - [50] = 48, - [51] = 49, + [50] = 46, + [51] = 47, [52] = 47, - [53] = 46, - [54] = 45, - [55] = 46, - [56] = 45, + [53] = 48, + [54] = 46, + [55] = 49, + [56] = 49, [57] = 45, - [58] = 48, - [59] = 47, - [60] = 49, - [61] = 49, + [58] = 45, + [59] = 46, + [60] = 48, + [61] = 47, [62] = 48, - [63] = 46, - [64] = 47, - [65] = 47, - [66] = 46, - [67] = 48, - [68] = 45, - [69] = 49, + [63] = 49, + [64] = 45, + [65] = 49, + [66] = 48, + [67] = 46, + [68] = 47, + [69] = 45, [70] = 70, [71] = 70, [72] = 70, @@ -3287,7 +3309,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [90] = 90, [91] = 91, [92] = 92, - [93] = 79, + [93] = 93, [94] = 94, [95] = 95, [96] = 96, @@ -3298,14 +3320,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [101] = 101, [102] = 102, [103] = 103, - [104] = 104, + [104] = 88, [105] = 105, [106] = 106, [107] = 107, [108] = 108, [109] = 109, [110] = 110, - [111] = 111, + [111] = 77, [112] = 112, [113] = 113, [114] = 114, @@ -3320,7 +3342,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [123] = 123, [124] = 124, [125] = 125, - [126] = 91, + [126] = 126, [127] = 127, [128] = 128, [129] = 129, @@ -3337,355 +3359,355 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [140] = 140, [141] = 141, [142] = 142, - [143] = 143, - [144] = 144, - [145] = 145, - [146] = 146, - [147] = 147, - [148] = 148, - [149] = 149, - [150] = 150, - [151] = 151, - [152] = 152, - [153] = 153, - [154] = 154, - [155] = 155, - [156] = 75, - [157] = 75, - [158] = 75, - [159] = 86, - [160] = 124, - [161] = 77, - [162] = 79, - [163] = 78, - [164] = 96, - [165] = 114, - [166] = 112, - [167] = 101, - [168] = 100, - [169] = 109, - [170] = 116, - [171] = 82, - [172] = 89, - [173] = 81, - [174] = 83, - [175] = 121, - [176] = 84, - [177] = 91, - [178] = 92, - [179] = 117, - [180] = 85, - [181] = 92, - [182] = 89, - [183] = 90, - [184] = 95, - [185] = 97, - [186] = 98, - [187] = 121, - [188] = 91, - [189] = 102, - [190] = 117, - [191] = 107, - [192] = 111, - [193] = 96, - [194] = 115, - [195] = 109, - [196] = 82, - [197] = 83, - [198] = 88, - [199] = 87, - [200] = 84, - [201] = 80, - [202] = 76, - [203] = 127, - [204] = 125, - [205] = 124, - [206] = 120, - [207] = 123, - [208] = 119, - [209] = 122, + [143] = 75, + [144] = 75, + [145] = 75, + [146] = 87, + [147] = 94, + [148] = 107, + [149] = 108, + [150] = 105, + [151] = 106, + [152] = 106, + [153] = 91, + [154] = 108, + [155] = 91, + [156] = 101, + [157] = 103, + [158] = 96, + [159] = 112, + [160] = 101, + [161] = 89, + [162] = 77, + [163] = 102, + [164] = 110, + [165] = 99, + [166] = 101, + [167] = 78, + [168] = 98, + [169] = 78, + [170] = 79, + [171] = 97, + [172] = 112, + [173] = 80, + [174] = 79, + [175] = 80, + [176] = 81, + [177] = 110, + [178] = 82, + [179] = 89, + [180] = 83, + [181] = 84, + [182] = 94, + [183] = 85, + [184] = 86, + [185] = 113, + [186] = 96, + [187] = 100, + [188] = 102, + [189] = 97, + [190] = 98, + [191] = 99, + [192] = 113, + [193] = 100, + [194] = 76, + [195] = 93, + [196] = 94, + [197] = 86, + [198] = 89, + [199] = 90, + [200] = 97, + [201] = 98, + [202] = 99, + [203] = 88, + [204] = 102, + [205] = 92, + [206] = 95, + [207] = 85, + [208] = 81, + [209] = 82, [210] = 109, - [211] = 118, - [212] = 108, - [213] = 81, - [214] = 77, - [215] = 114, - [216] = 112, - [217] = 106, - [218] = 101, - [219] = 104, - [220] = 116, - [221] = 100, - [222] = 82, - [223] = 105, - [224] = 88, - [225] = 83, - [226] = 84, - [227] = 85, - [228] = 81, - [229] = 110, - [230] = 87, - [231] = 86, - [232] = 103, - [233] = 99, - [234] = 90, - [235] = 94, - [236] = 80, - [237] = 116, - [238] = 78, - [239] = 96, - [240] = 89, - [241] = 113, - [242] = 88, - [243] = 95, - [244] = 105, - [245] = 97, - [246] = 87, - [247] = 105, - [248] = 85, - [249] = 86, - [250] = 117, - [251] = 121, - [252] = 90, - [253] = 98, - [254] = 95, - [255] = 80, - [256] = 97, - [257] = 98, - [258] = 110, - [259] = 102, - [260] = 102, - [261] = 122, - [262] = 92, - [263] = 125, - [264] = 79, - [265] = 127, - [266] = 125, - [267] = 124, - [268] = 107, - [269] = 127, - [270] = 111, - [271] = 115, - [272] = 76, - [273] = 110, - [274] = 107, - [275] = 78, - [276] = 113, - [277] = 111, - [278] = 122, - [279] = 115, - [280] = 94, - [281] = 99, - [282] = 76, - [283] = 120, - [284] = 123, - [285] = 77, - [286] = 119, - [287] = 118, - [288] = 108, - [289] = 114, - [290] = 103, - [291] = 104, - [292] = 106, - [293] = 108, - [294] = 106, - [295] = 104, - [296] = 112, - [297] = 101, - [298] = 103, - [299] = 118, - [300] = 119, - [301] = 100, - [302] = 99, - [303] = 123, - [304] = 94, - [305] = 120, - [306] = 113, - [307] = 151, - [308] = 153, - [309] = 130, - [310] = 132, - [311] = 149, - [312] = 139, - [313] = 139, - [314] = 132, - [315] = 144, - [316] = 141, - [317] = 131, - [318] = 149, - [319] = 134, - [320] = 130, - [321] = 142, - [322] = 146, - [323] = 141, - [324] = 131, + [211] = 103, + [212] = 109, + [213] = 83, + [214] = 87, + [215] = 95, + [216] = 92, + [217] = 84, + [218] = 105, + [219] = 84, + [220] = 85, + [221] = 107, + [222] = 86, + [223] = 93, + [224] = 103, + [225] = 78, + [226] = 105, + [227] = 110, + [228] = 77, + [229] = 112, + [230] = 107, + [231] = 91, + [232] = 108, + [233] = 106, + [234] = 100, + [235] = 79, + [236] = 96, + [237] = 80, + [238] = 83, + [239] = 82, + [240] = 93, + [241] = 76, + [242] = 90, + [243] = 113, + [244] = 90, + [245] = 88, + [246] = 76, + [247] = 95, + [248] = 92, + [249] = 81, + [250] = 109, + [251] = 87, + [252] = 114, + [253] = 140, + [254] = 116, + [255] = 120, + [256] = 125, + [257] = 136, + [258] = 129, + [259] = 115, + [260] = 130, + [261] = 133, + [262] = 123, + [263] = 132, + [264] = 129, + [265] = 130, + [266] = 120, + [267] = 123, + [268] = 125, + [269] = 136, + [270] = 124, + [271] = 140, + [272] = 126, + [273] = 122, + [274] = 121, + [275] = 119, + [276] = 118, + [277] = 128, + [278] = 131, + [279] = 134, + [280] = 137, + [281] = 139, + [282] = 117, + [283] = 135, + [284] = 117, + [285] = 126, + [286] = 142, + [287] = 127, + [288] = 141, + [289] = 122, + [290] = 142, + [291] = 141, + [292] = 132, + [293] = 135, + [294] = 133, + [295] = 114, + [296] = 139, + [297] = 138, + [298] = 127, + [299] = 119, + [300] = 118, + [301] = 137, + [302] = 131, + [303] = 121, + [304] = 128, + [305] = 138, + [306] = 124, + [307] = 134, + [308] = 116, + [309] = 115, + [310] = 310, + [311] = 119, + [312] = 310, + [313] = 135, + [314] = 314, + [315] = 315, + [316] = 316, + [317] = 314, + [318] = 318, + [319] = 319, + [320] = 320, + [321] = 315, + [322] = 322, + [323] = 320, + [324] = 322, [325] = 325, - [326] = 128, - [327] = 155, - [328] = 133, - [329] = 136, - [330] = 152, - [331] = 325, - [332] = 138, - [333] = 154, - [334] = 135, - [335] = 144, - [336] = 145, - [337] = 142, - [338] = 148, - [339] = 128, - [340] = 129, - [341] = 134, - [342] = 150, - [343] = 146, - [344] = 147, - [345] = 155, - [346] = 140, - [347] = 133, - [348] = 143, - [349] = 136, - [350] = 138, - [351] = 129, - [352] = 148, - [353] = 135, - [354] = 140, - [355] = 150, - [356] = 137, - [357] = 154, - [358] = 145, - [359] = 147, - [360] = 151, - [361] = 137, - [362] = 153, - [363] = 143, - [364] = 152, - [365] = 140, - [366] = 154, - [367] = 367, - [368] = 368, - [369] = 369, - [370] = 370, - [371] = 367, - [372] = 372, - [373] = 373, - [374] = 374, - [375] = 368, - [376] = 372, - [377] = 370, - [378] = 367, - [379] = 370, - [380] = 372, - [381] = 381, - [382] = 369, - [383] = 367, - [384] = 373, - [385] = 374, - [386] = 368, - [387] = 369, - [388] = 372, - [389] = 374, - [390] = 368, - [391] = 373, - [392] = 372, - [393] = 381, - [394] = 370, - [395] = 370, - [396] = 367, - [397] = 374, - [398] = 373, - [399] = 369, - [400] = 368, - [401] = 374, - [402] = 373, - [403] = 381, - [404] = 381, - [405] = 381, - [406] = 406, - [407] = 131, - [408] = 150, - [409] = 152, - [410] = 142, - [411] = 155, - [412] = 141, - [413] = 134, - [414] = 145, - [415] = 149, - [416] = 153, - [417] = 139, - [418] = 128, - [419] = 144, - [420] = 133, - [421] = 130, - [422] = 151, - [423] = 148, - [424] = 136, - [425] = 138, - [426] = 137, - [427] = 147, - [428] = 132, + [326] = 315, + [327] = 320, + [328] = 325, + [329] = 319, + [330] = 318, + [331] = 319, + [332] = 325, + [333] = 320, + [334] = 316, + [335] = 322, + [336] = 315, + [337] = 318, + [338] = 318, + [339] = 316, + [340] = 316, + [341] = 322, + [342] = 318, + [343] = 319, + [344] = 320, + [345] = 319, + [346] = 316, + [347] = 314, + [348] = 315, + [349] = 314, + [350] = 322, + [351] = 325, + [352] = 314, + [353] = 142, + [354] = 133, + [355] = 128, + [356] = 121, + [357] = 132, + [358] = 141, + [359] = 359, + [360] = 114, + [361] = 131, + [362] = 118, + [363] = 363, + [364] = 124, + [365] = 127, + [366] = 136, + [367] = 134, + [368] = 123, + [369] = 139, + [370] = 115, + [371] = 138, + [372] = 137, + [373] = 129, + [374] = 117, + [375] = 125, + [376] = 116, + [377] = 126, + [378] = 130, + [379] = 120, + [380] = 380, + [381] = 310, + [382] = 382, + [383] = 382, + [384] = 382, + [385] = 385, + [386] = 385, + [387] = 382, + [388] = 385, + [389] = 382, + [390] = 385, + [391] = 382, + [392] = 385, + [393] = 385, + [394] = 394, + [395] = 394, + [396] = 396, + [397] = 397, + [398] = 310, + [399] = 310, + [400] = 75, + [401] = 401, + [402] = 401, + [403] = 401, + [404] = 401, + [405] = 405, + [406] = 401, + [407] = 401, + [408] = 401, + [409] = 401, + [410] = 410, + [411] = 411, + [412] = 310, + [413] = 413, + [414] = 414, + [415] = 415, + [416] = 416, + [417] = 417, + [418] = 418, + [419] = 419, + [420] = 420, + [421] = 421, + [422] = 422, + [423] = 423, + [424] = 424, + [425] = 425, + [426] = 426, + [427] = 427, + [428] = 424, [429] = 429, - [430] = 129, - [431] = 146, - [432] = 143, - [433] = 325, - [434] = 434, - [435] = 434, - [436] = 436, - [437] = 434, - [438] = 436, - [439] = 436, - [440] = 436, - [441] = 434, - [442] = 436, - [443] = 434, - [444] = 436, - [445] = 434, + [430] = 430, + [431] = 431, + [432] = 429, + [433] = 425, + [434] = 424, + [435] = 435, + [436] = 430, + [437] = 430, + [438] = 429, + [439] = 425, + [440] = 440, + [441] = 441, + [442] = 442, + [443] = 443, + [444] = 444, + [445] = 445, [446] = 446, - [447] = 446, - [448] = 448, + [447] = 447, + [448] = 444, [449] = 449, - [450] = 325, - [451] = 325, - [452] = 75, - [453] = 453, - [454] = 453, + [450] = 444, + [451] = 451, + [452] = 452, + [453] = 452, + [454] = 454, [455] = 455, - [456] = 453, - [457] = 453, - [458] = 453, - [459] = 453, - [460] = 453, - [461] = 453, - [462] = 325, - [463] = 463, - [464] = 453, - [465] = 465, - [466] = 466, + [456] = 456, + [457] = 457, + [458] = 458, + [459] = 459, + [460] = 460, + [461] = 457, + [462] = 462, + [463] = 459, + [464] = 464, + [465] = 458, + [466] = 457, [467] = 467, [468] = 468, - [469] = 469, - [470] = 470, - [471] = 471, - [472] = 472, + [469] = 459, + [470] = 464, + [471] = 464, + [472] = 457, [473] = 473, [474] = 474, - [475] = 475, - [476] = 476, + [475] = 458, + [476] = 457, [477] = 477, [478] = 478, - [479] = 479, + [479] = 458, [480] = 480, - [481] = 480, + [481] = 459, [482] = 482, - [483] = 478, - [484] = 484, - [485] = 485, - [486] = 485, - [487] = 484, - [488] = 485, - [489] = 484, - [490] = 480, - [491] = 478, + [483] = 459, + [484] = 457, + [485] = 411, + [486] = 464, + [487] = 459, + [488] = 488, + [489] = 489, + [490] = 490, + [491] = 491, [492] = 492, [493] = 493, [494] = 494, @@ -3694,174 +3716,174 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [497] = 497, [498] = 498, [499] = 499, - [500] = 497, + [500] = 499, [501] = 501, - [502] = 497, - [503] = 498, + [502] = 502, + [503] = 503, [504] = 504, [505] = 505, - [506] = 506, + [506] = 505, [507] = 507, - [508] = 507, + [508] = 508, [509] = 509, [510] = 510, - [511] = 507, + [511] = 511, [512] = 512, - [513] = 513, - [514] = 513, - [515] = 515, - [516] = 516, - [517] = 507, - [518] = 518, + [513] = 503, + [514] = 514, + [515] = 508, + [516] = 504, + [517] = 517, + [518] = 503, [519] = 519, [520] = 520, - [521] = 520, - [522] = 507, - [523] = 520, - [524] = 524, - [525] = 525, + [521] = 510, + [522] = 505, + [523] = 523, + [524] = 511, + [525] = 517, [526] = 520, - [527] = 513, - [528] = 528, - [529] = 520, - [530] = 507, - [531] = 513, - [532] = 520, + [527] = 508, + [528] = 509, + [529] = 512, + [530] = 514, + [531] = 514, + [532] = 505, [533] = 533, - [534] = 534, + [534] = 514, [535] = 535, - [536] = 536, - [537] = 537, - [538] = 538, + [536] = 508, + [537] = 504, + [538] = 504, [539] = 539, - [540] = 540, - [541] = 537, + [540] = 504, + [541] = 501, [542] = 542, - [543] = 543, - [544] = 543, - [545] = 463, - [546] = 546, - [547] = 547, - [548] = 543, - [549] = 549, - [550] = 550, - [551] = 551, - [552] = 543, - [553] = 553, - [554] = 554, - [555] = 555, - [556] = 556, - [557] = 554, - [558] = 558, - [559] = 555, + [543] = 505, + [544] = 542, + [545] = 512, + [546] = 512, + [547] = 509, + [548] = 548, + [549] = 520, + [550] = 517, + [551] = 507, + [552] = 512, + [553] = 535, + [554] = 542, + [555] = 542, + [556] = 514, + [557] = 517, + [558] = 520, + [559] = 520, [560] = 560, - [561] = 561, - [562] = 562, - [563] = 554, - [564] = 564, - [565] = 565, - [566] = 564, - [567] = 560, - [568] = 568, - [569] = 562, - [570] = 570, - [571] = 571, - [572] = 572, - [573] = 570, - [574] = 574, - [575] = 575, - [576] = 576, - [577] = 577, - [578] = 578, - [579] = 565, - [580] = 558, - [581] = 553, - [582] = 582, - [583] = 583, - [584] = 578, - [585] = 576, - [586] = 558, - [587] = 571, - [588] = 588, - [589] = 558, - [590] = 577, - [591] = 591, - [592] = 562, + [561] = 517, + [562] = 520, + [563] = 563, + [564] = 517, + [565] = 512, + [566] = 501, + [567] = 510, + [568] = 542, + [569] = 508, + [570] = 501, + [571] = 560, + [572] = 507, + [573] = 523, + [574] = 548, + [575] = 504, + [576] = 535, + [577] = 507, + [578] = 560, + [579] = 501, + [580] = 548, + [581] = 523, + [582] = 503, + [583] = 510, + [584] = 510, + [585] = 585, + [586] = 523, + [587] = 587, + [588] = 503, + [589] = 503, + [590] = 548, + [591] = 505, + [592] = 592, [593] = 593, - [594] = 583, - [595] = 576, - [596] = 572, - [597] = 571, - [598] = 576, - [599] = 560, - [600] = 572, - [601] = 564, - [602] = 575, - [603] = 554, - [604] = 578, - [605] = 570, - [606] = 556, - [607] = 577, - [608] = 556, - [609] = 572, - [610] = 578, - [611] = 562, - [612] = 571, - [613] = 553, - [614] = 553, - [615] = 565, - [616] = 555, - [617] = 565, - [618] = 560, - [619] = 564, - [620] = 583, + [594] = 501, + [595] = 507, + [596] = 542, + [597] = 597, + [598] = 511, + [599] = 508, + [600] = 535, + [601] = 523, + [602] = 560, + [603] = 539, + [604] = 560, + [605] = 535, + [606] = 560, + [607] = 535, + [608] = 507, + [609] = 510, + [610] = 563, + [611] = 548, + [612] = 612, + [613] = 613, + [614] = 523, + [615] = 548, + [616] = 616, + [617] = 617, + [618] = 618, + [619] = 619, + [620] = 620, [621] = 621, - [622] = 560, - [623] = 554, - [624] = 555, - [625] = 555, - [626] = 564, - [627] = 565, - [628] = 555, - [629] = 564, - [630] = 553, - [631] = 562, - [632] = 570, - [633] = 572, - [634] = 556, - [635] = 578, + [622] = 622, + [623] = 623, + [624] = 624, + [625] = 625, + [626] = 626, + [627] = 627, + [628] = 628, + [629] = 629, + [630] = 630, + [631] = 631, + [632] = 632, + [633] = 633, + [634] = 634, + [635] = 635, [636] = 636, - [637] = 637, - [638] = 637, - [639] = 575, - [640] = 640, - [641] = 575, - [642] = 565, - [643] = 553, - [644] = 562, - [645] = 554, - [646] = 560, - [647] = 576, - [648] = 572, - [649] = 556, - [650] = 650, - [651] = 570, - [652] = 577, - [653] = 571, - [654] = 558, - [655] = 575, - [656] = 637, - [657] = 574, - [658] = 578, - [659] = 571, - [660] = 570, - [661] = 556, + [637] = 636, + [638] = 638, + [639] = 636, + [640] = 633, + [641] = 636, + [642] = 633, + [643] = 635, + [644] = 638, + [645] = 635, + [646] = 646, + [647] = 635, + [648] = 638, + [649] = 638, + [650] = 633, + [651] = 651, + [652] = 652, + [653] = 653, + [654] = 654, + [655] = 654, + [656] = 396, + [657] = 657, + [658] = 658, + [659] = 659, + [660] = 397, + [661] = 661, [662] = 662, - [663] = 636, - [664] = 577, - [665] = 575, - [666] = 558, - [667] = 576, + [663] = 663, + [664] = 664, + [665] = 665, + [666] = 666, + [667] = 667, [668] = 668, [669] = 669, [670] = 670, @@ -3873,40 +3895,40 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [676] = 676, [677] = 677, [678] = 678, - [679] = 679, + [679] = 659, [680] = 680, [681] = 681, [682] = 682, - [683] = 683, + [683] = 619, [684] = 684, [685] = 685, [686] = 686, [687] = 687, - [688] = 687, + [688] = 688, [689] = 689, - [690] = 689, - [691] = 691, - [692] = 685, - [693] = 691, + [690] = 690, + [691] = 687, + [692] = 678, + [693] = 678, [694] = 687, - [695] = 689, - [696] = 696, - [697] = 685, - [698] = 691, - [699] = 685, - [700] = 687, - [701] = 691, - [702] = 689, + [695] = 695, + [696] = 678, + [697] = 687, + [698] = 698, + [699] = 699, + [700] = 700, + [701] = 619, + [702] = 702, [703] = 703, [704] = 704, [705] = 705, [706] = 706, - [707] = 707, - [708] = 449, + [707] = 699, + [708] = 700, [709] = 709, - [710] = 710, - [711] = 448, - [712] = 710, + [710] = 396, + [711] = 397, + [712] = 712, [713] = 713, [714] = 714, [715] = 715, @@ -3919,44 +3941,44 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [722] = 722, [723] = 723, [724] = 724, - [725] = 725, + [725] = 720, [726] = 726, - [727] = 727, + [727] = 720, [728] = 728, [729] = 729, [730] = 730, - [731] = 731, - [732] = 707, - [733] = 730, + [731] = 720, + [732] = 732, + [733] = 720, [734] = 734, [735] = 735, - [736] = 735, + [736] = 736, [737] = 737, [738] = 738, - [739] = 739, + [739] = 619, [740] = 740, [741] = 741, [742] = 742, - [743] = 730, - [744] = 735, - [745] = 730, - [746] = 671, + [743] = 743, + [744] = 744, + [745] = 745, + [746] = 746, [747] = 747, - [748] = 735, - [749] = 671, + [748] = 748, + [749] = 749, [750] = 750, [751] = 751, [752] = 752, [753] = 753, - [754] = 751, + [754] = 754, [755] = 755, [756] = 756, [757] = 757, [758] = 758, - [759] = 750, + [759] = 759, [760] = 760, - [761] = 449, - [762] = 448, + [761] = 761, + [762] = 762, [763] = 763, [764] = 764, [765] = 765, @@ -3967,365 +3989,365 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [770] = 770, [771] = 771, [772] = 772, - [773] = 771, + [773] = 773, [774] = 774, [775] = 775, [776] = 776, [777] = 777, - [778] = 771, + [778] = 778, [779] = 779, - [780] = 771, - [781] = 771, + [780] = 780, + [781] = 781, [782] = 782, [783] = 783, - [784] = 784, + [784] = 760, [785] = 785, [786] = 786, - [787] = 787, - [788] = 788, - [789] = 789, - [790] = 790, - [791] = 791, - [792] = 792, - [793] = 793, + [787] = 785, + [788] = 117, + [789] = 785, + [790] = 135, + [791] = 785, + [792] = 132, + [793] = 668, [794] = 794, [795] = 795, [796] = 796, - [797] = 797, + [797] = 745, [798] = 798, - [799] = 799, - [800] = 800, - [801] = 801, - [802] = 802, - [803] = 803, + [799] = 138, + [800] = 754, + [801] = 748, + [802] = 778, + [803] = 119, [804] = 804, - [805] = 805, + [805] = 116, [806] = 806, [807] = 807, [808] = 808, - [809] = 809, + [809] = 757, [810] = 810, - [811] = 811, - [812] = 671, - [813] = 813, - [814] = 814, - [815] = 815, + [811] = 758, + [812] = 765, + [813] = 766, + [814] = 770, + [815] = 775, [816] = 816, [817] = 817, - [818] = 818, + [818] = 776, [819] = 819, - [820] = 820, + [820] = 668, [821] = 821, [822] = 822, [823] = 823, [824] = 824, [825] = 825, - [826] = 826, - [827] = 827, - [828] = 828, - [829] = 829, - [830] = 830, - [831] = 831, + [826] = 621, + [827] = 620, + [828] = 798, + [829] = 796, + [830] = 686, + [831] = 754, [832] = 832, - [833] = 833, - [834] = 834, - [835] = 835, - [836] = 836, - [837] = 799, - [838] = 838, - [839] = 831, - [840] = 786, - [841] = 811, - [842] = 789, - [843] = 148, - [844] = 844, - [845] = 151, - [846] = 798, - [847] = 794, - [848] = 802, - [849] = 809, - [850] = 140, - [851] = 145, - [852] = 836, - [853] = 806, - [854] = 154, - [855] = 836, - [856] = 134, - [857] = 804, - [858] = 858, - [859] = 836, + [833] = 138, + [834] = 116, + [835] = 135, + [836] = 132, + [837] = 745, + [838] = 680, + [839] = 778, + [840] = 748, + [841] = 685, + [842] = 776, + [843] = 775, + [844] = 119, + [845] = 770, + [846] = 766, + [847] = 798, + [848] = 765, + [849] = 760, + [850] = 758, + [851] = 817, + [852] = 117, + [853] = 816, + [854] = 786, + [855] = 808, + [856] = 138, + [857] = 810, + [858] = 808, + [859] = 807, [860] = 860, - [861] = 861, - [862] = 862, - [863] = 813, - [864] = 864, - [865] = 865, - [866] = 866, - [867] = 867, - [868] = 868, - [869] = 869, - [870] = 844, - [871] = 871, - [872] = 872, - [873] = 873, - [874] = 874, - [875] = 875, - [876] = 876, - [877] = 672, - [878] = 673, - [879] = 794, - [880] = 747, - [881] = 868, - [882] = 789, - [883] = 798, - [884] = 867, - [885] = 802, - [886] = 858, - [887] = 835, - [888] = 860, - [889] = 866, - [890] = 869, - [891] = 891, - [892] = 858, - [893] = 140, + [861] = 806, + [862] = 804, + [863] = 135, + [864] = 832, + [865] = 832, + [866] = 832, + [867] = 795, + [868] = 757, + [869] = 794, + [870] = 695, + [871] = 689, + [872] = 796, + [873] = 117, + [874] = 807, + [875] = 132, + [876] = 806, + [877] = 116, + [878] = 878, + [879] = 810, + [880] = 816, + [881] = 795, + [882] = 119, + [883] = 786, + [884] = 884, + [885] = 817, + [886] = 794, + [887] = 804, + [888] = 684, + [889] = 688, + [890] = 682, + [891] = 668, + [892] = 690, + [893] = 681, [894] = 894, - [895] = 861, - [896] = 868, - [897] = 862, - [898] = 835, - [899] = 860, - [900] = 739, - [901] = 740, - [902] = 862, - [903] = 134, - [904] = 145, - [905] = 905, - [906] = 148, - [907] = 831, - [908] = 865, - [909] = 905, - [910] = 151, - [911] = 729, - [912] = 813, - [913] = 864, - [914] = 140, - [915] = 865, - [916] = 145, - [917] = 154, - [918] = 151, - [919] = 148, - [920] = 811, - [921] = 799, - [922] = 905, - [923] = 804, - [924] = 866, - [925] = 734, - [926] = 869, - [927] = 786, - [928] = 928, - [929] = 134, - [930] = 731, - [931] = 867, - [932] = 154, - [933] = 806, - [934] = 838, - [935] = 809, - [936] = 905, - [937] = 838, - [938] = 864, - [939] = 861, - [940] = 940, - [941] = 844, - [942] = 738, + [895] = 895, + [896] = 896, + [897] = 897, + [898] = 898, + [899] = 899, + [900] = 900, + [901] = 98, + [902] = 97, + [903] = 100, + [904] = 99, + [905] = 78, + [906] = 101, + [907] = 113, + [908] = 79, + [909] = 909, + [910] = 910, + [911] = 80, + [912] = 94, + [913] = 100, + [914] = 914, + [915] = 113, + [916] = 99, + [917] = 98, + [918] = 97, + [919] = 919, + [920] = 94, + [921] = 921, + [922] = 922, + [923] = 923, + [924] = 924, + [925] = 101, + [926] = 926, + [927] = 926, + [928] = 78, + [929] = 79, + [930] = 926, + [931] = 931, + [932] = 80, + [933] = 926, + [934] = 934, + [935] = 935, + [936] = 754, + [937] = 937, + [938] = 938, + [939] = 939, + [940] = 757, + [941] = 745, + [942] = 748, [943] = 943, - [944] = 944, - [945] = 945, - [946] = 741, - [947] = 742, - [948] = 737, - [949] = 949, - [950] = 950, - [951] = 109, - [952] = 82, - [953] = 83, - [954] = 81, - [955] = 84, - [956] = 116, - [957] = 124, - [958] = 122, - [959] = 959, - [960] = 127, - [961] = 961, - [962] = 125, - [963] = 963, - [964] = 964, - [965] = 965, - [966] = 966, - [967] = 127, - [968] = 84, - [969] = 964, - [970] = 116, - [971] = 125, - [972] = 124, - [973] = 122, - [974] = 974, - [975] = 81, + [944] = 760, + [945] = 776, + [946] = 778, + [947] = 775, + [948] = 770, + [949] = 758, + [950] = 766, + [951] = 765, + [952] = 952, + [953] = 953, + [954] = 954, + [955] = 778, + [956] = 776, + [957] = 758, + [958] = 766, + [959] = 754, + [960] = 765, + [961] = 745, + [962] = 962, + [963] = 748, + [964] = 757, + [965] = 770, + [966] = 775, + [967] = 760, + [968] = 968, + [969] = 969, + [970] = 970, + [971] = 971, + [972] = 971, + [973] = 973, + [974] = 971, + [975] = 971, [976] = 976, - [977] = 83, - [978] = 964, - [979] = 82, - [980] = 109, + [977] = 976, + [978] = 976, + [979] = 976, + [980] = 980, [981] = 981, [982] = 982, - [983] = 964, + [983] = 983, [984] = 984, [985] = 985, - [986] = 802, + [986] = 986, [987] = 987, - [988] = 813, - [989] = 794, - [990] = 990, - [991] = 798, + [988] = 988, + [989] = 989, + [990] = 983, + [991] = 991, [992] = 992, - [993] = 789, - [994] = 831, - [995] = 799, - [996] = 804, - [997] = 806, - [998] = 809, - [999] = 786, - [1000] = 811, - [1001] = 1001, + [993] = 993, + [994] = 994, + [995] = 995, + [996] = 996, + [997] = 995, + [998] = 998, + [999] = 999, + [1000] = 1000, + [1001] = 998, [1002] = 1002, - [1003] = 1003, + [1003] = 825, [1004] = 1004, - [1005] = 794, - [1006] = 809, - [1007] = 786, + [1005] = 1005, + [1006] = 754, + [1007] = 1007, [1008] = 1008, - [1009] = 813, - [1010] = 811, - [1011] = 806, - [1012] = 804, - [1013] = 799, - [1014] = 831, - [1015] = 789, - [1016] = 802, - [1017] = 798, + [1009] = 819, + [1010] = 1010, + [1011] = 1011, + [1012] = 778, + [1013] = 1013, + [1014] = 1004, + [1015] = 1015, + [1016] = 758, + [1017] = 1013, [1018] = 1018, - [1019] = 1019, - [1020] = 1018, - [1021] = 1019, - [1022] = 1018, - [1023] = 1023, + [1019] = 1004, + [1020] = 1005, + [1021] = 1021, + [1022] = 1022, + [1023] = 1005, [1024] = 1024, - [1025] = 1019, - [1026] = 1026, - [1027] = 1019, - [1028] = 1018, - [1029] = 1029, - [1030] = 1030, + [1025] = 1025, + [1026] = 770, + [1027] = 1027, + [1028] = 1028, + [1029] = 1004, + [1030] = 760, [1031] = 1031, [1032] = 1032, - [1033] = 1033, - [1034] = 1034, - [1035] = 1035, - [1036] = 1036, - [1037] = 1037, + [1033] = 1013, + [1034] = 1013, + [1035] = 1005, + [1036] = 939, + [1037] = 765, [1038] = 1038, [1039] = 1039, - [1040] = 1040, - [1041] = 1041, - [1042] = 1034, - [1043] = 1043, - [1044] = 1044, - [1045] = 1044, - [1046] = 1046, + [1040] = 776, + [1041] = 1005, + [1042] = 766, + [1043] = 745, + [1044] = 1021, + [1045] = 757, + [1046] = 1005, [1047] = 1047, - [1048] = 1048, + [1048] = 775, [1049] = 1049, - [1050] = 1047, + [1050] = 748, [1051] = 1051, [1052] = 1052, - [1053] = 874, + [1053] = 1053, [1054] = 1054, [1055] = 1055, [1056] = 1056, [1057] = 1057, [1058] = 1058, [1059] = 1059, - [1060] = 1057, - [1061] = 813, - [1062] = 1057, - [1063] = 802, + [1060] = 1051, + [1061] = 1061, + [1062] = 1062, + [1063] = 1063, [1064] = 1064, - [1065] = 1065, - [1066] = 794, - [1067] = 798, - [1068] = 789, - [1069] = 831, - [1070] = 799, - [1071] = 804, - [1072] = 806, + [1065] = 1057, + [1066] = 1057, + [1067] = 1067, + [1068] = 1068, + [1069] = 1057, + [1070] = 1070, + [1071] = 1057, + [1072] = 1072, [1073] = 1073, - [1074] = 809, - [1075] = 1057, + [1074] = 1074, + [1075] = 1075, [1076] = 1076, [1077] = 1077, - [1078] = 786, - [1079] = 1079, - [1080] = 1058, - [1081] = 872, + [1078] = 1078, + [1079] = 860, + [1080] = 884, + [1081] = 878, [1082] = 1082, - [1083] = 1055, + [1083] = 1083, [1084] = 1084, [1085] = 1085, [1086] = 1086, [1087] = 1087, - [1088] = 1054, - [1089] = 1054, - [1090] = 1057, - [1091] = 1091, - [1092] = 1055, + [1088] = 1088, + [1089] = 1089, + [1090] = 750, + [1091] = 773, + [1092] = 1092, [1093] = 1093, - [1094] = 1055, + [1094] = 1094, [1095] = 1095, - [1096] = 811, - [1097] = 1054, - [1098] = 1057, - [1099] = 1099, - [1100] = 987, - [1101] = 1101, + [1096] = 1096, + [1097] = 1097, + [1098] = 1098, + [1099] = 1098, + [1100] = 1098, + [1101] = 1098, [1102] = 1102, [1103] = 1103, - [1104] = 1104, - [1105] = 1105, + [1104] = 755, + [1105] = 744, [1106] = 1106, - [1107] = 1107, + [1107] = 1103, [1108] = 1108, - [1109] = 1101, - [1110] = 1101, - [1111] = 1111, + [1109] = 1103, + [1110] = 1108, + [1111] = 1103, [1112] = 1112, - [1113] = 1113, - [1114] = 1114, - [1115] = 1115, - [1116] = 1101, - [1117] = 1117, - [1118] = 1118, - [1119] = 1119, - [1120] = 1101, - [1121] = 1121, - [1122] = 1119, - [1123] = 1123, - [1124] = 894, - [1125] = 928, - [1126] = 1126, - [1127] = 1127, - [1128] = 1128, - [1129] = 1129, + [1113] = 1108, + [1114] = 750, + [1115] = 1103, + [1116] = 1102, + [1117] = 1097, + [1118] = 1106, + [1119] = 1103, + [1120] = 1106, + [1121] = 773, + [1122] = 751, + [1123] = 752, + [1124] = 782, + [1125] = 1106, + [1126] = 783, + [1127] = 774, + [1128] = 769, + [1129] = 1102, [1130] = 1130, - [1131] = 891, + [1131] = 1131, [1132] = 1132, [1133] = 1133, [1134] = 1134, @@ -4334,8 +4356,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1137] = 1137, [1138] = 1138, [1139] = 1139, - [1140] = 832, - [1141] = 785, + [1140] = 1140, + [1141] = 1141, [1142] = 1142, [1143] = 1143, [1144] = 1144, @@ -4343,148 +4365,148 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1146] = 1146, [1147] = 1147, [1148] = 1148, - [1149] = 1147, - [1150] = 1147, - [1151] = 1147, + [1149] = 1149, + [1150] = 1150, + [1151] = 1151, [1152] = 1152, - [1153] = 829, - [1154] = 825, + [1153] = 1153, + [1154] = 1154, [1155] = 1155, [1156] = 1156, - [1157] = 795, + [1157] = 1157, [1158] = 1158, - [1159] = 796, - [1160] = 1148, - [1161] = 797, - [1162] = 793, - [1163] = 1156, - [1164] = 1156, - [1165] = 1152, - [1166] = 1156, - [1167] = 818, - [1168] = 1156, - [1169] = 1155, - [1170] = 1158, - [1171] = 785, - [1172] = 1152, - [1173] = 1156, - [1174] = 832, - [1175] = 1155, - [1176] = 1158, - [1177] = 1177, - [1178] = 1155, - [1179] = 787, - [1180] = 1180, - [1181] = 1181, - [1182] = 1182, - [1183] = 1183, - [1184] = 1184, - [1185] = 1185, - [1186] = 1183, - [1187] = 1185, - [1188] = 1188, - [1189] = 1189, + [1159] = 1159, + [1160] = 1160, + [1161] = 1161, + [1162] = 1156, + [1163] = 1163, + [1164] = 1164, + [1165] = 1163, + [1166] = 1159, + [1167] = 1167, + [1168] = 1155, + [1169] = 1154, + [1170] = 1149, + [1171] = 1153, + [1172] = 1167, + [1173] = 1173, + [1174] = 1174, + [1175] = 1175, + [1176] = 1164, + [1177] = 1152, + [1178] = 1151, + [1179] = 1147, + [1180] = 1164, + [1181] = 1142, + [1182] = 1148, + [1183] = 675, + [1184] = 1148, + [1185] = 1148, + [1186] = 1135, + [1187] = 1136, + [1188] = 991, + [1189] = 984, [1190] = 1190, - [1191] = 1191, - [1192] = 1190, + [1191] = 1145, + [1192] = 1192, [1193] = 1193, [1194] = 1194, - [1195] = 1191, - [1196] = 1196, - [1197] = 1197, + [1195] = 1173, + [1196] = 1138, + [1197] = 1144, [1198] = 1198, - [1199] = 1199, - [1200] = 1200, - [1201] = 1201, + [1199] = 1143, + [1200] = 675, + [1201] = 1140, [1202] = 1202, [1203] = 1203, - [1204] = 1180, - [1205] = 1205, + [1204] = 1194, + [1205] = 981, [1206] = 1206, - [1207] = 716, + [1207] = 1161, [1208] = 1208, - [1209] = 1209, - [1210] = 1210, - [1211] = 1183, - [1212] = 1212, - [1213] = 1185, - [1214] = 1214, - [1215] = 1215, - [1216] = 1216, - [1217] = 1217, - [1218] = 1218, - [1219] = 1219, - [1220] = 1220, - [1221] = 1221, - [1222] = 1202, - [1223] = 1201, - [1224] = 1200, - [1225] = 1199, - [1226] = 1198, - [1227] = 1196, - [1228] = 1194, - [1229] = 1221, - [1230] = 1181, + [1209] = 1134, + [1210] = 1206, + [1211] = 1211, + [1212] = 1150, + [1213] = 986, + [1214] = 819, + [1215] = 1194, + [1216] = 1206, + [1217] = 1206, + [1218] = 1211, + [1219] = 1211, + [1220] = 1132, + [1221] = 1141, + [1222] = 1133, + [1223] = 1203, + [1224] = 1224, + [1225] = 1211, + [1226] = 1226, + [1227] = 1226, + [1228] = 1226, + [1229] = 1226, + [1230] = 1230, [1231] = 1231, - [1232] = 1183, + [1232] = 1232, [1233] = 1233, [1234] = 1234, - [1235] = 1235, - [1236] = 1236, - [1237] = 716, - [1238] = 1238, - [1239] = 1239, - [1240] = 1240, - [1241] = 1239, - [1242] = 1238, + [1235] = 1233, + [1236] = 1233, + [1237] = 1233, + [1238] = 1234, + [1239] = 1234, + [1240] = 1234, + [1241] = 1241, + [1242] = 1242, [1243] = 1243, - [1244] = 1193, + [1244] = 1244, [1245] = 1245, - [1246] = 1206, + [1246] = 1246, [1247] = 1247, [1248] = 1248, - [1249] = 1205, - [1250] = 1184, - [1251] = 1216, - [1252] = 1212, - [1253] = 1035, - [1254] = 1248, - [1255] = 1240, - [1256] = 872, - [1257] = 1238, - [1258] = 1041, - [1259] = 1231, - [1260] = 1036, - [1261] = 1248, - [1262] = 1203, + [1249] = 1249, + [1250] = 1250, + [1251] = 1251, + [1252] = 1252, + [1253] = 1247, + [1254] = 1254, + [1255] = 1255, + [1256] = 1247, + [1257] = 1257, + [1258] = 1258, + [1259] = 1259, + [1260] = 1258, + [1261] = 1261, + [1262] = 1262, [1263] = 1263, [1264] = 1264, - [1265] = 1219, - [1266] = 1210, - [1267] = 1238, - [1268] = 1217, - [1269] = 1240, + [1265] = 1265, + [1266] = 1266, + [1267] = 1266, + [1268] = 1266, + [1269] = 1266, [1270] = 1270, - [1271] = 1033, - [1272] = 1214, - [1273] = 1240, - [1274] = 1215, - [1275] = 1197, + [1271] = 1258, + [1272] = 1272, + [1273] = 1273, + [1274] = 1258, + [1275] = 1258, [1276] = 1276, - [1277] = 1277, - [1278] = 1277, + [1277] = 1258, + [1278] = 1278, [1279] = 1279, - [1280] = 1277, - [1281] = 1277, + [1280] = 1280, + [1281] = 1281, [1282] = 1282, - [1283] = 1283, - [1284] = 1283, + [1283] = 1281, + [1284] = 1284, [1285] = 1285, - [1286] = 1285, - [1287] = 1283, - [1288] = 1285, - [1289] = 1285, - [1290] = 1283, + [1286] = 1286, + [1287] = 1287, + [1288] = 1288, + [1289] = 1289, + [1290] = 1290, [1291] = 1291, [1292] = 1292, [1293] = 1293, @@ -4492,15 +4514,15 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1295] = 1295, [1296] = 1296, [1297] = 1297, - [1298] = 1298, - [1299] = 1299, + [1298] = 1281, + [1299] = 1281, [1300] = 1300, - [1301] = 1295, + [1301] = 1301, [1302] = 1302, [1303] = 1303, [1304] = 1304, [1305] = 1305, - [1306] = 1295, + [1306] = 1306, [1307] = 1307, [1308] = 1308, [1309] = 1309, @@ -4508,127 +4530,127 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1311] = 1311, [1312] = 1312, [1313] = 1313, - [1314] = 1308, - [1315] = 1308, + [1314] = 1314, + [1315] = 1315, [1316] = 1316, [1317] = 1317, - [1318] = 1308, - [1319] = 1319, - [1320] = 1309, - [1321] = 1309, - [1322] = 1309, + [1318] = 1318, + [1319] = 1318, + [1320] = 1320, + [1321] = 1321, + [1322] = 1322, [1323] = 1323, - [1324] = 1324, + [1324] = 1318, [1325] = 1325, - [1326] = 1326, - [1327] = 1309, - [1328] = 1309, + [1326] = 1318, + [1327] = 1327, + [1328] = 1328, [1329] = 1329, [1330] = 1330, - [1331] = 1331, - [1332] = 1332, - [1333] = 1333, + [1331] = 1329, + [1332] = 1330, + [1333] = 1329, [1334] = 1334, - [1335] = 1335, - [1336] = 1336, + [1335] = 1334, + [1336] = 1329, [1337] = 1337, [1338] = 1338, - [1339] = 1339, + [1339] = 1334, [1340] = 1340, [1341] = 1341, [1342] = 1342, - [1343] = 1343, - [1344] = 1344, + [1343] = 1330, + [1344] = 1330, [1345] = 1345, - [1346] = 1346, - [1347] = 1332, - [1348] = 1332, - [1349] = 1332, + [1346] = 1334, + [1347] = 1347, + [1348] = 1348, + [1349] = 1349, [1350] = 1350, - [1351] = 1351, + [1351] = 1348, [1352] = 1352, [1353] = 1353, [1354] = 1354, [1355] = 1355, - [1356] = 1356, + [1356] = 1355, [1357] = 1357, - [1358] = 1358, + [1358] = 1348, [1359] = 1359, [1360] = 1360, [1361] = 1361, - [1362] = 1362, + [1362] = 1350, [1363] = 1363, [1364] = 1364, - [1365] = 1365, - [1366] = 1366, + [1365] = 1348, + [1366] = 1350, [1367] = 1367, [1368] = 1368, [1369] = 1369, [1370] = 1370, - [1371] = 1371, + [1371] = 1355, [1372] = 1372, - [1373] = 1368, - [1374] = 1368, + [1373] = 1355, + [1374] = 1350, [1375] = 1375, - [1376] = 1368, + [1376] = 1376, [1377] = 1377, [1378] = 1378, [1379] = 1379, [1380] = 1380, - [1381] = 1380, + [1381] = 1381, [1382] = 1382, - [1383] = 1382, + [1383] = 1383, [1384] = 1384, [1385] = 1385, - [1386] = 1380, + [1386] = 1386, [1387] = 1387, [1388] = 1388, - [1389] = 1385, - [1390] = 1382, - [1391] = 1385, - [1392] = 1380, + [1389] = 1389, + [1390] = 1390, + [1391] = 1391, + [1392] = 1392, [1393] = 1393, [1394] = 1394, - [1395] = 1382, - [1396] = 1385, + [1395] = 1395, + [1396] = 1396, [1397] = 1397, [1398] = 1398, [1399] = 1399, - [1400] = 1398, - [1401] = 1401, + [1400] = 1400, + [1401] = 1400, [1402] = 1402, [1403] = 1403, [1404] = 1404, [1405] = 1405, [1406] = 1406, - [1407] = 1406, + [1407] = 1407, [1408] = 1408, - [1409] = 1398, - [1410] = 1410, + [1409] = 1409, + [1410] = 1400, [1411] = 1411, - [1412] = 1404, - [1413] = 1404, + [1412] = 1412, + [1413] = 1413, [1414] = 1414, [1415] = 1415, - [1416] = 1398, + [1416] = 1416, [1417] = 1417, - [1418] = 1406, + [1418] = 1418, [1419] = 1419, [1420] = 1420, - [1421] = 1421, - [1422] = 1406, - [1423] = 1404, - [1424] = 1424, + [1421] = 1400, + [1422] = 1422, + [1423] = 1418, + [1424] = 1418, [1425] = 1425, [1426] = 1426, - [1427] = 1427, - [1428] = 1428, - [1429] = 1429, + [1427] = 1418, + [1428] = 1400, + [1429] = 1418, [1430] = 1430, - [1431] = 1431, + [1431] = 1400, [1432] = 1432, [1433] = 1433, - [1434] = 1434, + [1434] = 1418, [1435] = 1435, [1436] = 1436, [1437] = 1437, @@ -4654,7 +4676,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1457] = 1457, [1458] = 1458, [1459] = 1459, - [1460] = 1460, + [1460] = 1457, [1461] = 1461, [1462] = 1462, [1463] = 1463, @@ -4663,568 +4685,518 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1466] = 1466, [1467] = 1467, [1468] = 1468, - [1469] = 1469, - [1470] = 1470, - [1471] = 1470, - [1472] = 1472, + [1469] = 1461, + [1470] = 1457, + [1471] = 1471, + [1472] = 1465, [1473] = 1473, - [1474] = 1458, - [1475] = 1475, - [1476] = 1458, + [1474] = 1474, + [1475] = 1462, + [1476] = 1459, [1477] = 1477, - [1478] = 1470, - [1479] = 1458, - [1480] = 1480, - [1481] = 1458, - [1482] = 1470, - [1483] = 1470, - [1484] = 1470, - [1485] = 1458, + [1478] = 1478, + [1479] = 1473, + [1480] = 1459, + [1481] = 1462, + [1482] = 1482, + [1483] = 1461, + [1484] = 1484, + [1485] = 1485, [1486] = 1486, - [1487] = 1487, - [1488] = 1488, + [1487] = 1457, + [1488] = 1459, [1489] = 1489, [1490] = 1490, - [1491] = 1491, + [1491] = 1462, [1492] = 1492, [1493] = 1493, - [1494] = 1494, + [1494] = 1465, [1495] = 1495, - [1496] = 1496, - [1497] = 1497, - [1498] = 1498, + [1496] = 1465, + [1497] = 1473, + [1498] = 1461, [1499] = 1499, [1500] = 1500, - [1501] = 1501, - [1502] = 1502, - [1503] = 1503, + [1501] = 1473, + [1502] = 1471, + [1503] = 1471, [1504] = 1504, [1505] = 1505, - [1506] = 1506, + [1506] = 1473, [1507] = 1507, - [1508] = 1508, - [1509] = 1507, - [1510] = 1510, + [1508] = 1490, + [1509] = 1490, + [1510] = 1489, [1511] = 1511, [1512] = 1512, [1513] = 1513, - [1514] = 1514, + [1514] = 1473, [1515] = 1515, [1516] = 1516, - [1517] = 1513, - [1518] = 1518, - [1519] = 1519, - [1520] = 1507, + [1517] = 1517, + [1518] = 1459, + [1519] = 1473, + [1520] = 1489, [1521] = 1521, - [1522] = 1507, + [1522] = 1522, [1523] = 1523, [1524] = 1524, - [1525] = 1516, + [1525] = 1525, [1526] = 1526, - [1527] = 1512, + [1527] = 1527, [1528] = 1528, - [1529] = 1515, + [1529] = 1529, [1530] = 1530, - [1531] = 1514, - [1532] = 1507, + [1531] = 1531, + [1532] = 1532, [1533] = 1533, [1534] = 1534, [1535] = 1535, [1536] = 1536, [1537] = 1537, - [1538] = 1538, - [1539] = 1518, - [1540] = 1519, - [1541] = 1518, + [1538] = 1529, + [1539] = 1539, + [1540] = 1540, + [1541] = 1541, [1542] = 1542, - [1543] = 1514, - [1544] = 1536, - [1545] = 1513, + [1543] = 1543, + [1544] = 1544, + [1545] = 1528, [1546] = 1546, - [1547] = 1516, - [1548] = 1514, + [1547] = 1546, + [1548] = 1548, [1549] = 1549, - [1550] = 1550, - [1551] = 1516, - [1552] = 1507, - [1553] = 1553, - [1554] = 1554, - [1555] = 1518, - [1556] = 1556, - [1557] = 1507, - [1558] = 1536, + [1550] = 1544, + [1551] = 1551, + [1552] = 1552, + [1553] = 1548, + [1554] = 1521, + [1555] = 1551, + [1556] = 1552, + [1557] = 1529, + [1558] = 1537, [1559] = 1559, - [1560] = 1560, - [1561] = 1519, - [1562] = 1512, - [1563] = 1563, - [1564] = 1515, - [1565] = 1565, - [1566] = 1513, - [1567] = 1519, - [1568] = 1513, - [1569] = 1569, - [1570] = 1570, - [1571] = 1571, - [1572] = 1572, + [1560] = 1542, + [1561] = 1561, + [1562] = 1543, + [1563] = 1546, + [1564] = 1549, + [1565] = 1544, + [1566] = 1542, + [1567] = 1548, + [1568] = 1521, + [1569] = 1551, + [1570] = 1529, + [1571] = 1537, + [1572] = 1540, [1573] = 1573, - [1574] = 1574, - [1575] = 1575, + [1574] = 1542, + [1575] = 1552, [1576] = 1576, [1577] = 1577, - [1578] = 1578, - [1579] = 1579, - [1580] = 1580, - [1581] = 1581, + [1578] = 1543, + [1579] = 1546, + [1580] = 1549, + [1581] = 1543, [1582] = 1582, [1583] = 1583, [1584] = 1584, [1585] = 1585, [1586] = 1586, [1587] = 1587, - [1588] = 1588, - [1589] = 1589, - [1590] = 1572, - [1591] = 1591, - [1592] = 1592, - [1593] = 1593, + [1588] = 1586, + [1589] = 1543, + [1590] = 1529, + [1591] = 1549, + [1592] = 1584, + [1593] = 1546, [1594] = 1594, - [1595] = 1578, + [1595] = 1548, [1596] = 1596, - [1597] = 1597, + [1597] = 1521, [1598] = 1598, - [1599] = 1599, + [1599] = 1549, [1600] = 1600, - [1601] = 1574, - [1602] = 1602, + [1601] = 1551, + [1602] = 1585, [1603] = 1603, - [1604] = 1421, + [1604] = 1604, [1605] = 1605, - [1606] = 1606, - [1607] = 1607, + [1606] = 1526, + [1607] = 1544, [1608] = 1608, [1609] = 1609, - [1610] = 1610, - [1611] = 1611, - [1612] = 1612, - [1613] = 1571, - [1614] = 1580, - [1615] = 1615, - [1616] = 1616, - [1617] = 1578, + [1610] = 1372, + [1611] = 1551, + [1612] = 1521, + [1613] = 1549, + [1614] = 1548, + [1615] = 1546, + [1616] = 1543, + [1617] = 1551, [1618] = 1618, - [1619] = 1619, - [1620] = 1581, + [1619] = 1521, + [1620] = 1620, [1621] = 1621, [1622] = 1622, - [1623] = 1573, - [1624] = 1624, - [1625] = 1612, - [1626] = 1615, - [1627] = 1616, - [1628] = 1600, - [1629] = 1619, - [1630] = 1610, - [1631] = 1618, - [1632] = 1571, + [1623] = 1548, + [1624] = 1584, + [1625] = 1540, + [1626] = 1626, + [1627] = 1627, + [1628] = 1628, + [1629] = 1561, + [1630] = 1630, + [1631] = 1631, + [1632] = 1632, [1633] = 1633, - [1634] = 1596, - [1635] = 1635, - [1636] = 1580, - [1637] = 1573, + [1634] = 1634, + [1635] = 1542, + [1636] = 1636, + [1637] = 1542, [1638] = 1638, - [1639] = 1596, - [1640] = 1612, - [1641] = 1612, - [1642] = 1615, - [1643] = 1616, - [1644] = 1619, - [1645] = 1573, - [1646] = 1618, - [1647] = 1615, - [1648] = 1571, + [1639] = 1639, + [1640] = 1526, + [1641] = 1529, + [1642] = 1585, + [1643] = 1643, + [1644] = 1644, + [1645] = 1645, + [1646] = 1646, + [1647] = 1647, + [1648] = 1648, [1649] = 1649, - [1650] = 1596, - [1651] = 1602, + [1650] = 1650, + [1651] = 1651, [1652] = 1652, - [1653] = 1573, + [1653] = 1653, [1654] = 1654, - [1655] = 1574, - [1656] = 1612, - [1657] = 1615, - [1658] = 1616, - [1659] = 1577, - [1660] = 1660, - [1661] = 1618, - [1662] = 1619, - [1663] = 1619, + [1655] = 1655, + [1656] = 1656, + [1657] = 1657, + [1658] = 1657, + [1659] = 1659, + [1660] = 1659, + [1661] = 1650, + [1662] = 1657, + [1663] = 1655, [1664] = 1664, - [1665] = 1618, - [1666] = 1571, - [1667] = 1667, - [1668] = 1596, - [1669] = 1616, - [1670] = 1670, - [1671] = 1652, - [1672] = 1581, - [1673] = 1673, + [1665] = 1665, + [1666] = 1666, + [1667] = 1651, + [1668] = 1653, + [1669] = 1659, + [1670] = 1650, + [1671] = 1655, + [1672] = 1672, + [1673] = 1653, [1674] = 1674, - [1675] = 1619, - [1676] = 1580, - [1677] = 1677, - [1678] = 1596, + [1675] = 1654, + [1676] = 1651, + [1677] = 1649, + [1678] = 1646, [1679] = 1679, - [1680] = 1680, + [1680] = 1655, [1681] = 1681, [1682] = 1682, - [1683] = 1618, + [1683] = 1659, [1684] = 1684, - [1685] = 1571, - [1686] = 1573, - [1687] = 1602, - [1688] = 1616, - [1689] = 1572, - [1690] = 1615, - [1691] = 1612, - [1692] = 1600, - [1693] = 1693, + [1685] = 1659, + [1686] = 1650, + [1687] = 1687, + [1688] = 1688, + [1689] = 1656, + [1690] = 1690, + [1691] = 1691, + [1692] = 1692, + [1693] = 1645, [1694] = 1694, - [1695] = 1693, - [1696] = 1696, + [1695] = 1695, + [1696] = 1655, [1697] = 1697, - [1698] = 1698, - [1699] = 1699, - [1700] = 1700, - [1701] = 1701, - [1702] = 1702, - [1703] = 1703, - [1704] = 1700, - [1705] = 1705, - [1706] = 1706, + [1698] = 1654, + [1699] = 1674, + [1700] = 1651, + [1701] = 1649, + [1702] = 1646, + [1703] = 1666, + [1704] = 1704, + [1705] = 1674, + [1706] = 1656, [1707] = 1707, - [1708] = 1708, - [1709] = 1701, - [1710] = 1708, + [1708] = 1645, + [1709] = 1645, + [1710] = 1649, [1711] = 1711, [1712] = 1712, - [1713] = 1701, - [1714] = 1714, - [1715] = 1698, - [1716] = 1708, - [1717] = 1717, - [1718] = 1694, - [1719] = 1711, - [1720] = 1712, - [1721] = 1708, - [1722] = 1722, - [1723] = 1723, - [1724] = 1701, - [1725] = 1699, - [1726] = 1700, - [1727] = 1698, - [1728] = 1697, - [1729] = 1696, - [1730] = 1693, - [1731] = 1693, - [1732] = 1694, + [1713] = 1654, + [1714] = 1674, + [1715] = 1715, + [1716] = 1674, + [1717] = 1645, + [1718] = 1645, + [1719] = 1653, + [1720] = 1720, + [1721] = 1674, + [1722] = 1656, + [1723] = 1657, + [1724] = 1653, + [1725] = 1725, + [1726] = 1657, + [1727] = 1645, + [1728] = 1649, + [1729] = 1674, + [1730] = 1654, + [1731] = 1731, + [1732] = 1732, [1733] = 1733, [1734] = 1734, - [1735] = 1697, - [1736] = 1708, - [1737] = 1714, - [1738] = 1711, - [1739] = 1699, + [1735] = 1734, + [1736] = 1736, + [1737] = 1737, + [1738] = 1738, + [1739] = 1739, [1740] = 1740, [1741] = 1741, - [1742] = 1711, + [1742] = 1742, [1743] = 1743, - [1744] = 1701, + [1744] = 1744, [1745] = 1745, [1746] = 1746, [1747] = 1747, [1748] = 1748, - [1749] = 1699, - [1750] = 1698, - [1751] = 1697, - [1752] = 1714, + [1749] = 1740, + [1750] = 1750, + [1751] = 1751, + [1752] = 1752, [1753] = 1753, - [1754] = 1696, - [1755] = 1755, - [1756] = 1694, - [1757] = 1693, + [1754] = 1754, + [1755] = 1739, + [1756] = 1756, + [1757] = 1757, [1758] = 1758, - [1759] = 1714, - [1760] = 1706, + [1759] = 1759, + [1760] = 1731, [1761] = 1761, [1762] = 1762, - [1763] = 1694, - [1764] = 1764, - [1765] = 1694, - [1766] = 1766, - [1767] = 1693, - [1768] = 1693, - [1769] = 1699, - [1770] = 1700, - [1771] = 1712, - [1772] = 1712, - [1773] = 1700, + [1763] = 1747, + [1764] = 1734, + [1765] = 1765, + [1766] = 1757, + [1767] = 1767, + [1768] = 1731, + [1769] = 1743, + [1770] = 1770, + [1771] = 1771, + [1772] = 1772, + [1773] = 1773, [1774] = 1774, - [1775] = 1775, - [1776] = 1694, - [1777] = 1777, - [1778] = 1697, + [1775] = 1731, + [1776] = 1776, + [1777] = 1774, + [1778] = 1747, [1779] = 1779, - [1780] = 1712, - [1781] = 1781, - [1782] = 1782, - [1783] = 1783, - [1784] = 1784, - [1785] = 1785, - [1786] = 1786, - [1787] = 1787, + [1780] = 1780, + [1781] = 1772, + [1782] = 1741, + [1783] = 1757, + [1784] = 1743, + [1785] = 1747, + [1786] = 1740, + [1787] = 1771, [1788] = 1788, - [1789] = 1789, - [1790] = 1790, - [1791] = 1035, - [1792] = 1792, - [1793] = 1793, - [1794] = 1794, - [1795] = 1784, + [1789] = 1752, + [1790] = 986, + [1791] = 1731, + [1792] = 1747, + [1793] = 991, + [1794] = 1743, + [1795] = 1795, [1796] = 1796, [1797] = 1797, - [1798] = 1033, - [1799] = 1790, - [1800] = 1800, - [1801] = 672, - [1802] = 1802, - [1803] = 1802, - [1804] = 1804, - [1805] = 1787, - [1806] = 1806, - [1807] = 1807, - [1808] = 1790, - [1809] = 1794, - [1810] = 1810, - [1811] = 1811, + [1798] = 1798, + [1799] = 1759, + [1800] = 1762, + [1801] = 1767, + [1802] = 1731, + [1803] = 1803, + [1804] = 1771, + [1805] = 1805, + [1806] = 1741, + [1807] = 1743, + [1808] = 1808, + [1809] = 1809, + [1810] = 1747, + [1811] = 1767, [1812] = 1812, - [1813] = 1813, - [1814] = 1785, + [1813] = 984, + [1814] = 1814, [1815] = 1815, - [1816] = 1787, - [1817] = 1817, - [1818] = 1784, - [1819] = 1796, + [1816] = 1816, + [1817] = 1774, + [1818] = 1818, + [1819] = 1744, [1820] = 1820, - [1821] = 1794, - [1822] = 1815, - [1823] = 1823, - [1824] = 1811, - [1825] = 1825, - [1826] = 1826, - [1827] = 1815, - [1828] = 1828, - [1829] = 1829, - [1830] = 1800, - [1831] = 1831, - [1832] = 1832, - [1833] = 1794, - [1834] = 1036, - [1835] = 1820, - [1836] = 1815, - [1837] = 1837, - [1838] = 1811, + [1821] = 1821, + [1822] = 1822, + [1823] = 1767, + [1824] = 1824, + [1825] = 1762, + [1826] = 1759, + [1827] = 1827, + [1828] = 1772, + [1829] = 1757, + [1830] = 1830, + [1831] = 1752, + [1832] = 1740, + [1833] = 1833, + [1834] = 1746, + [1835] = 1835, + [1836] = 1836, + [1837] = 1752, + [1838] = 1798, [1839] = 1839, - [1840] = 1811, - [1841] = 1815, - [1842] = 1831, - [1843] = 1794, - [1844] = 1804, - [1845] = 1845, - [1846] = 1846, - [1847] = 1832, + [1840] = 1840, + [1841] = 1841, + [1842] = 1842, + [1843] = 1843, + [1844] = 1844, + [1845] = 1736, + [1846] = 1734, + [1847] = 1847, [1848] = 1848, [1849] = 1849, [1850] = 1850, - [1851] = 1851, + [1851] = 1788, [1852] = 1852, - [1853] = 1839, + [1853] = 1853, [1854] = 1854, - [1855] = 1851, - [1856] = 1811, - [1857] = 1786, - [1858] = 1802, - [1859] = 1848, - [1860] = 1860, - [1861] = 1851, - [1862] = 1826, + [1855] = 1751, + [1856] = 1856, + [1857] = 1857, + [1858] = 1858, + [1859] = 1859, + [1860] = 1759, + [1861] = 1861, + [1862] = 1762, [1863] = 1863, - [1864] = 1848, - [1865] = 1851, + [1864] = 1864, + [1865] = 1865, [1866] = 1866, - [1867] = 1811, - [1868] = 1868, + [1867] = 1865, + [1868] = 1865, [1869] = 1869, - [1870] = 1870, - [1871] = 1871, + [1870] = 1795, + [1871] = 1767, [1872] = 1872, [1873] = 1873, - [1874] = 1874, - [1875] = 1875, + [1874] = 1788, + [1875] = 1747, [1876] = 1876, - [1877] = 1787, - [1878] = 1878, - [1879] = 1806, - [1880] = 1839, - [1881] = 1793, + [1877] = 1796, + [1878] = 1797, + [1879] = 1820, + [1880] = 1880, + [1881] = 1795, [1882] = 1882, - [1883] = 1883, - [1884] = 1884, - [1885] = 1885, - [1886] = 1886, - [1887] = 1887, - [1888] = 1888, - [1889] = 1797, - [1890] = 1786, - [1891] = 1891, - [1892] = 1794, - [1893] = 1883, + [1883] = 1780, + [1884] = 1780, + [1885] = 1773, + [1886] = 1805, + [1887] = 1745, + [1888] = 1773, + [1889] = 1889, + [1890] = 1890, + [1891] = 981, + [1892] = 1731, + [1893] = 1741, [1894] = 1894, - [1895] = 1806, - [1896] = 1787, - [1897] = 1897, - [1898] = 1898, - [1899] = 1899, - [1900] = 1900, - [1901] = 1802, + [1895] = 1895, + [1896] = 1896, + [1897] = 1843, + [1898] = 1739, + [1899] = 1736, + [1900] = 1745, + [1901] = 1901, [1902] = 1902, [1903] = 1903, - [1904] = 1793, - [1905] = 1797, - [1906] = 1794, - [1907] = 1907, - [1908] = 1908, + [1904] = 1904, + [1905] = 1905, + [1906] = 1906, + [1907] = 1796, + [1908] = 1797, [1909] = 1909, [1910] = 1910, [1911] = 1911, - [1912] = 1912, - [1913] = 1804, + [1912] = 1751, + [1913] = 1805, [1914] = 1914, - [1915] = 1915, - [1916] = 1916, - [1917] = 1820, + [1915] = 1739, + [1916] = 1889, + [1917] = 1857, [1918] = 1918, - [1919] = 1888, - [1920] = 1790, - [1921] = 1815, - [1922] = 1832, - [1923] = 1802, + [1919] = 1919, + [1920] = 1736, + [1921] = 1921, + [1922] = 1922, + [1923] = 621, [1924] = 1924, [1925] = 1925, - [1926] = 1845, - [1927] = 1846, - [1928] = 1041, - [1929] = 1929, - [1930] = 1831, + [1926] = 1926, + [1927] = 1927, + [1928] = 1796, + [1929] = 1751, + [1930] = 1734, [1931] = 1931, - [1932] = 1784, - [1933] = 1933, - [1934] = 1934, - [1935] = 1854, + [1932] = 1796, + [1933] = 1796, + [1934] = 1857, + [1935] = 1771, [1936] = 1936, [1937] = 1937, [1938] = 1938, [1939] = 1939, [1940] = 1940, - [1941] = 1941, - [1942] = 1942, - [1943] = 1943, - [1944] = 1944, - [1945] = 1945, - [1946] = 1796, - [1947] = 1883, - [1948] = 1948, - [1949] = 1806, + [1941] = 1746, + [1942] = 1918, + [1943] = 1744, + [1944] = 1746, + [1945] = 1767, + [1946] = 1946, + [1947] = 1947, + [1948] = 1743, + [1949] = 1848, [1950] = 1950, - [1951] = 1807, - [1952] = 1815, - [1953] = 1953, - [1954] = 1954, + [1951] = 1805, + [1952] = 1774, + [1953] = 1772, + [1954] = 1744, [1955] = 1955, - [1956] = 1956, - [1957] = 1845, - [1958] = 1846, - [1959] = 1959, + [1956] = 1788, + [1957] = 1818, + [1958] = 1940, + [1959] = 1940, [1960] = 1960, - [1961] = 1961, - [1962] = 1831, - [1963] = 1854, - [1964] = 1832, + [1961] = 1757, + [1962] = 1848, + [1963] = 1788, + [1964] = 1843, [1965] = 1965, - [1966] = 1820, - [1967] = 1783, - [1968] = 1968, + [1966] = 1736, + [1967] = 1743, + [1968] = 1788, [1969] = 1969, - [1970] = 1970, - [1971] = 1945, - [1972] = 1789, - [1973] = 1783, + [1970] = 1848, + [1971] = 1939, + [1972] = 1972, + [1973] = 1734, [1974] = 1974, - [1975] = 1788, - [1976] = 1839, - [1977] = 1789, - [1978] = 1845, - [1979] = 1848, - [1980] = 1826, - [1981] = 1800, - [1982] = 1845, - [1983] = 1845, - [1984] = 1984, - [1985] = 1985, - [1986] = 1986, - [1987] = 1807, - [1988] = 1851, - [1989] = 1989, - [1990] = 1990, - [1991] = 1850, - [1992] = 1811, - [1993] = 1993, - [1994] = 1945, - [1995] = 1851, - [1996] = 1796, - [1997] = 1786, - [1998] = 1898, - [1999] = 1965, - [2000] = 2000, - [2001] = 1804, - [2002] = 1788, - [2003] = 2003, - [2004] = 2004, - [2005] = 2005, - [2006] = 1802, - [2007] = 2007, - [2008] = 1854, - [2009] = 1990, - [2010] = 1793, - [2011] = 1797, - [2012] = 1965, - [2013] = 1990, - [2014] = 1884, - [2015] = 1790, - [2016] = 2016, - [2017] = 1806, - [2018] = 2018, - [2019] = 673, - [2020] = 1965, - [2021] = 2021, - [2022] = 1989, - [2023] = 2023, - [2024] = 1800, - [2025] = 1990, - [2026] = 2026, - [2027] = 1787, - [2028] = 1990, - [2029] = 1846, - [2030] = 1845, + [1975] = 1940, + [1976] = 1976, + [1977] = 1797, + [1978] = 1940, + [1979] = 620, + [1980] = 1796, }; static TSCharacterRange sym_number_literal_character_set_13[] = { @@ -5511,19 +5483,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(107); END_STATE(); case 11: - if (lookahead == '\n') SKIP(52); + if (lookahead == '\n') SKIP(53); END_STATE(); case 12: - if (lookahead == '\n') SKIP(52); + if (lookahead == '\n') SKIP(53); if (lookahead == '\r') SKIP(11); if (lookahead == 'U') ADVANCE(115); if (lookahead == 'u') ADVANCE(107); END_STATE(); case 13: - if (lookahead == '\n') SKIP(53); + if (lookahead == '\n') SKIP(52); END_STATE(); case 14: - if (lookahead == '\n') SKIP(53); + if (lookahead == '\n') SKIP(52); if (lookahead == '\r') SKIP(13); if (lookahead == 'U') ADVANCE(115); if (lookahead == 'u') ADVANCE(107); @@ -5611,8 +5583,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(107); END_STATE(); case 30: + if (lookahead == '\n') SKIP(55); + if (lookahead == '"') ADVANCE(286); + if (lookahead == '/') ADVANCE(287); + if (lookahead == '\\') ADVANCE(31); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(290); + if (lookahead != 0) ADVANCE(291); + END_STATE(); + case 31: + if (lookahead == '\n') ADVANCE(293); + if (lookahead == '\r') ADVANCE(292); + if (lookahead == 'U') ADVANCE(116); + if (lookahead == 'u') ADVANCE(108); + if (lookahead == 'x') ADVANCE(104); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(295); + if (lookahead != 0) ADVANCE(292); + END_STATE(); + case 32: if (lookahead == '\n') ADVANCE(122); - if (lookahead == '\r') ADVANCE(34); + if (lookahead == '\r') ADVANCE(36); if (lookahead == '(') ADVANCE(124); if (lookahead == '/') ADVANCE(150); if (lookahead == '\\') ADVANCE(145); @@ -5620,25 +5610,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(66); if (lookahead != 0) ADVANCE(152); END_STATE(); - case 31: + case 33: if (lookahead == '\n') ADVANCE(122); - if (lookahead == '\r') ADVANCE(34); + if (lookahead == '\r') ADVANCE(36); if (lookahead == '/') ADVANCE(150); if (lookahead == '\\') ADVANCE(145); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(66); if (lookahead != 0) ADVANCE(152); END_STATE(); - case 32: + case 34: if (lookahead == '\n') ADVANCE(122); - if (lookahead == '\r') ADVANCE(33); + if (lookahead == '\r') ADVANCE(35); if (lookahead == '(') ADVANCE(185); if (lookahead == '/') ADVANCE(60); if (lookahead == '\\') SKIP(39); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(59); END_STATE(); - case 33: + case 35: if (lookahead == '\n') ADVANCE(122); if (lookahead == '(') ADVANCE(185); if (lookahead == '/') ADVANCE(60); @@ -5646,7 +5636,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(59); END_STATE(); - case 34: + case 36: if (lookahead == '\n') ADVANCE(122); if (lookahead == '/') ADVANCE(150); if (lookahead == '\\') ADVANCE(145); @@ -5654,24 +5644,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(66); if (lookahead != 0) ADVANCE(152); END_STATE(); - case 35: - if (lookahead == '\n') SKIP(55); - if (lookahead == '"') ADVANCE(286); - if (lookahead == '/') ADVANCE(287); - if (lookahead == '\\') ADVANCE(36); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(290); - if (lookahead != 0) ADVANCE(291); - END_STATE(); - case 36: - if (lookahead == '\n') ADVANCE(293); - if (lookahead == '\r') ADVANCE(292); - if (lookahead == 'U') ADVANCE(116); - if (lookahead == 'u') ADVANCE(108); - if (lookahead == 'x') ADVANCE(104); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(295); - if (lookahead != 0) ADVANCE(292); - END_STATE(); case 37: if (lookahead == '\n') SKIP(58); if (lookahead == '\'') ADVANCE(277); @@ -5998,28 +5970,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 52: ADVANCE_MAP( '!', 68, - '#', 76, - '%', 204, - '&', 213, + '#', 80, + '%', 203, + '&', 212, '(', 185, ')', 127, - '*', 200, - '+', 197, + '*', 199, + '+', 194, ',', 126, - '-', 192, - '.', 252, - '/', 202, - ':', 237, + '-', 189, + '/', 201, ';', 226, - '<', 220, + '<', 221, '=', 236, - '>', 216, - '?', 238, + '>', 217, '[', 233, - '\\', 12, - '^', 210, + '\\', 14, + '^', 209, '{', 230, - '|', 207, + '|', 208, '}', 231, ); if (('\t' <= lookahead && lookahead <= '\r') || @@ -6029,25 +5998,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 53: ADVANCE_MAP( '!', 68, - '#', 78, - '%', 203, - '&', 212, + '#', 76, + '%', 204, + '&', 213, '(', 185, ')', 127, - '*', 199, - '+', 194, + '*', 200, + '+', 197, ',', 126, - '-', 189, - '/', 201, + '-', 192, + '.', 252, + '/', 202, + ':', 237, ';', 226, - '<', 221, + '<', 220, '=', 236, - '>', 217, + '>', 216, + '?', 238, '[', 233, - '\\', 14, - '^', 209, + '\\', 12, + '^', 210, '{', 230, - '|', 208, + '|', 207, + '}', 231, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(53); @@ -6068,7 +6041,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 55: if (lookahead == '"') ADVANCE(286); if (lookahead == '/') ADVANCE(60); - if (lookahead == '\\') ADVANCE(36); + if (lookahead == '\\') ADVANCE(31); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(55); END_STATE(); @@ -6082,11 +6055,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(310); END_STATE(); case 57: - if (lookahead == '#') ADVANCE(80); + if (lookahead == '#') ADVANCE(78); if (lookahead == '/') ADVANCE(60); if (lookahead == '[') ADVANCE(73); if (lookahead == '\\') ADVANCE(16); - if (lookahead == '}') ADVANCE(231); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(57); if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(310); @@ -6094,7 +6066,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 58: if (lookahead == '\'') ADVANCE(277); if (lookahead == '/') ADVANCE(60); - if (lookahead == '\\') ADVANCE(36); + if (lookahead == '\\') ADVANCE(31); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(58); END_STATE(); @@ -7587,7 +7559,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 281: ACCEPT_TOKEN(aux_sym_char_literal_token1); - if (lookahead == '\\') ADVANCE(36); + if (lookahead == '\\') ADVANCE(31); END_STATE(); case 282: ACCEPT_TOKEN(anon_sym_L_DQUOTE); @@ -7653,7 +7625,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 293: ACCEPT_TOKEN(sym_escape_sequence); - if (lookahead == '\\') ADVANCE(36); + if (lookahead == '\\') ADVANCE(31); END_STATE(); case 294: ACCEPT_TOKEN(sym_escape_sequence); @@ -9458,15 +9430,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [28] = {.lex_state = 119}, [29] = {.lex_state = 119}, [30] = {.lex_state = 119}, - [31] = {.lex_state = 119}, + [31] = {.lex_state = 47}, [32] = {.lex_state = 119}, [33] = {.lex_state = 119}, [34] = {.lex_state = 119}, [35] = {.lex_state = 119}, - [36] = {.lex_state = 119}, + [36] = {.lex_state = 47}, [37] = {.lex_state = 119}, - [38] = {.lex_state = 47}, - [39] = {.lex_state = 47}, + [38] = {.lex_state = 119}, + [39] = {.lex_state = 119}, [40] = {.lex_state = 119}, [41] = {.lex_state = 119}, [42] = {.lex_state = 119}, @@ -9478,20 +9450,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [48] = {.lex_state = 45}, [49] = {.lex_state = 45}, [50] = {.lex_state = 47}, - [51] = {.lex_state = 119}, + [51] = {.lex_state = 47}, [52] = {.lex_state = 119}, [53] = {.lex_state = 47}, [54] = {.lex_state = 119}, - [55] = {.lex_state = 119}, + [55] = {.lex_state = 47}, [56] = {.lex_state = 119}, - [57] = {.lex_state = 47}, - [58] = {.lex_state = 119}, + [57] = {.lex_state = 119}, + [58] = {.lex_state = 47}, [59] = {.lex_state = 119}, [60] = {.lex_state = 119}, - [61] = {.lex_state = 47}, + [61] = {.lex_state = 119}, [62] = {.lex_state = 119}, [63] = {.lex_state = 119}, - [64] = {.lex_state = 47}, + [64] = {.lex_state = 119}, [65] = {.lex_state = 119}, [66] = {.lex_state = 119}, [67] = {.lex_state = 119}, @@ -9504,7 +9476,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [74] = {.lex_state = 119}, [75] = {.lex_state = 45}, [76] = {.lex_state = 45}, - [77] = {.lex_state = 45}, + [77] = {.lex_state = 119}, [78] = {.lex_state = 45}, [79] = {.lex_state = 45}, [80] = {.lex_state = 45}, @@ -9518,9 +9490,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [88] = {.lex_state = 45}, [89] = {.lex_state = 45}, [90] = {.lex_state = 45}, - [91] = {.lex_state = 119}, + [91] = {.lex_state = 45}, [92] = {.lex_state = 45}, - [93] = {.lex_state = 119}, + [93] = {.lex_state = 45}, [94] = {.lex_state = 45}, [95] = {.lex_state = 45}, [96] = {.lex_state = 45}, @@ -9531,7 +9503,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [101] = {.lex_state = 45}, [102] = {.lex_state = 45}, [103] = {.lex_state = 45}, - [104] = {.lex_state = 45}, + [104] = {.lex_state = 119}, [105] = {.lex_state = 45}, [106] = {.lex_state = 45}, [107] = {.lex_state = 45}, @@ -9570,20 +9542,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [140] = {.lex_state = 45}, [141] = {.lex_state = 45}, [142] = {.lex_state = 45}, - [143] = {.lex_state = 45}, - [144] = {.lex_state = 45}, - [145] = {.lex_state = 45}, - [146] = {.lex_state = 45}, - [147] = {.lex_state = 45}, - [148] = {.lex_state = 45}, - [149] = {.lex_state = 45}, - [150] = {.lex_state = 45}, - [151] = {.lex_state = 45}, - [152] = {.lex_state = 45}, - [153] = {.lex_state = 45}, - [154] = {.lex_state = 45}, - [155] = {.lex_state = 45}, - [156] = {.lex_state = 47}, + [143] = {.lex_state = 47}, + [144] = {.lex_state = 119}, + [145] = {.lex_state = 119}, + [146] = {.lex_state = 119}, + [147] = {.lex_state = 47}, + [148] = {.lex_state = 119}, + [149] = {.lex_state = 119}, + [150] = {.lex_state = 119}, + [151] = {.lex_state = 119}, + [152] = {.lex_state = 119}, + [153] = {.lex_state = 119}, + [154] = {.lex_state = 119}, + [155] = {.lex_state = 119}, + [156] = {.lex_state = 119}, [157] = {.lex_state = 119}, [158] = {.lex_state = 119}, [159] = {.lex_state = 119}, @@ -9593,20 +9565,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [163] = {.lex_state = 119}, [164] = {.lex_state = 119}, [165] = {.lex_state = 119}, - [166] = {.lex_state = 119}, - [167] = {.lex_state = 119}, + [166] = {.lex_state = 47}, + [167] = {.lex_state = 47}, [168] = {.lex_state = 119}, [169] = {.lex_state = 119}, - [170] = {.lex_state = 119}, + [170] = {.lex_state = 47}, [171] = {.lex_state = 119}, [172] = {.lex_state = 119}, - [173] = {.lex_state = 119}, + [173] = {.lex_state = 47}, [174] = {.lex_state = 119}, [175] = {.lex_state = 119}, [176] = {.lex_state = 119}, [177] = {.lex_state = 119}, - [178] = {.lex_state = 47}, - [179] = {.lex_state = 47}, + [178] = {.lex_state = 119}, + [179] = {.lex_state = 119}, [180] = {.lex_state = 119}, [181] = {.lex_state = 119}, [182] = {.lex_state = 119}, @@ -9614,53 +9586,53 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [184] = {.lex_state = 119}, [185] = {.lex_state = 119}, [186] = {.lex_state = 119}, - [187] = {.lex_state = 47}, - [188] = {.lex_state = 47}, - [189] = {.lex_state = 119}, - [190] = {.lex_state = 119}, - [191] = {.lex_state = 119}, - [192] = {.lex_state = 119}, + [187] = {.lex_state = 119}, + [188] = {.lex_state = 119}, + [189] = {.lex_state = 47}, + [190] = {.lex_state = 47}, + [191] = {.lex_state = 47}, + [192] = {.lex_state = 47}, [193] = {.lex_state = 47}, [194] = {.lex_state = 119}, - [195] = {.lex_state = 47}, - [196] = {.lex_state = 47}, - [197] = {.lex_state = 47}, - [198] = {.lex_state = 119}, + [195] = {.lex_state = 119}, + [196] = {.lex_state = 119}, + [197] = {.lex_state = 119}, + [198] = {.lex_state = 47}, [199] = {.lex_state = 119}, - [200] = {.lex_state = 47}, + [200] = {.lex_state = 119}, [201] = {.lex_state = 119}, [202] = {.lex_state = 119}, - [203] = {.lex_state = 47}, + [203] = {.lex_state = 119}, [204] = {.lex_state = 47}, - [205] = {.lex_state = 47}, + [205] = {.lex_state = 119}, [206] = {.lex_state = 119}, [207] = {.lex_state = 119}, - [208] = {.lex_state = 119}, + [208] = {.lex_state = 47}, [209] = {.lex_state = 47}, [210] = {.lex_state = 119}, [211] = {.lex_state = 119}, [212] = {.lex_state = 119}, [213] = {.lex_state = 47}, - [214] = {.lex_state = 47}, - [215] = {.lex_state = 47}, - [216] = {.lex_state = 47}, - [217] = {.lex_state = 119}, - [218] = {.lex_state = 47}, + [214] = {.lex_state = 119}, + [215] = {.lex_state = 119}, + [216] = {.lex_state = 119}, + [217] = {.lex_state = 47}, + [218] = {.lex_state = 119}, [219] = {.lex_state = 119}, [220] = {.lex_state = 47}, - [221] = {.lex_state = 47}, - [222] = {.lex_state = 119}, + [221] = {.lex_state = 119}, + [222] = {.lex_state = 47}, [223] = {.lex_state = 119}, [224] = {.lex_state = 47}, [225] = {.lex_state = 119}, - [226] = {.lex_state = 119}, - [227] = {.lex_state = 119}, - [228] = {.lex_state = 119}, - [229] = {.lex_state = 119}, + [226] = {.lex_state = 47}, + [227] = {.lex_state = 47}, + [228] = {.lex_state = 47}, + [229] = {.lex_state = 47}, [230] = {.lex_state = 47}, - [231] = {.lex_state = 119}, - [232] = {.lex_state = 119}, - [233] = {.lex_state = 119}, + [231] = {.lex_state = 47}, + [232] = {.lex_state = 47}, + [233] = {.lex_state = 47}, [234] = {.lex_state = 119}, [235] = {.lex_state = 119}, [236] = {.lex_state = 47}, @@ -9668,122 +9640,122 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [238] = {.lex_state = 119}, [239] = {.lex_state = 119}, [240] = {.lex_state = 47}, - [241] = {.lex_state = 119}, - [242] = {.lex_state = 119}, + [241] = {.lex_state = 47}, + [242] = {.lex_state = 47}, [243] = {.lex_state = 119}, [244] = {.lex_state = 119}, - [245] = {.lex_state = 119}, + [245] = {.lex_state = 47}, [246] = {.lex_state = 119}, [247] = {.lex_state = 47}, [248] = {.lex_state = 47}, - [249] = {.lex_state = 47}, - [250] = {.lex_state = 119}, - [251] = {.lex_state = 119}, + [249] = {.lex_state = 119}, + [250] = {.lex_state = 47}, + [251] = {.lex_state = 47}, [252] = {.lex_state = 47}, [253] = {.lex_state = 119}, - [254] = {.lex_state = 47}, + [254] = {.lex_state = 119}, [255] = {.lex_state = 119}, - [256] = {.lex_state = 47}, - [257] = {.lex_state = 47}, + [256] = {.lex_state = 119}, + [257] = {.lex_state = 119}, [258] = {.lex_state = 119}, [259] = {.lex_state = 47}, - [260] = {.lex_state = 119}, - [261] = {.lex_state = 119}, - [262] = {.lex_state = 119}, + [260] = {.lex_state = 47}, + [261] = {.lex_state = 47}, + [262] = {.lex_state = 47}, [263] = {.lex_state = 119}, [264] = {.lex_state = 47}, [265] = {.lex_state = 119}, - [266] = {.lex_state = 119}, + [266] = {.lex_state = 47}, [267] = {.lex_state = 119}, [268] = {.lex_state = 47}, - [269] = {.lex_state = 119}, + [269] = {.lex_state = 47}, [270] = {.lex_state = 47}, [271] = {.lex_state = 47}, [272] = {.lex_state = 47}, [273] = {.lex_state = 47}, [274] = {.lex_state = 119}, - [275] = {.lex_state = 47}, - [276] = {.lex_state = 47}, - [277] = {.lex_state = 119}, - [278] = {.lex_state = 119}, - [279] = {.lex_state = 119}, - [280] = {.lex_state = 119}, - [281] = {.lex_state = 119}, + [275] = {.lex_state = 119}, + [276] = {.lex_state = 119}, + [277] = {.lex_state = 47}, + [278] = {.lex_state = 47}, + [279] = {.lex_state = 47}, + [280] = {.lex_state = 47}, + [281] = {.lex_state = 47}, [282] = {.lex_state = 119}, [283] = {.lex_state = 47}, [284] = {.lex_state = 47}, [285] = {.lex_state = 119}, [286] = {.lex_state = 47}, - [287] = {.lex_state = 47}, + [287] = {.lex_state = 119}, [288] = {.lex_state = 47}, [289] = {.lex_state = 119}, [290] = {.lex_state = 119}, [291] = {.lex_state = 119}, - [292] = {.lex_state = 119}, + [292] = {.lex_state = 47}, [293] = {.lex_state = 119}, - [294] = {.lex_state = 47}, - [295] = {.lex_state = 47}, + [294] = {.lex_state = 119}, + [295] = {.lex_state = 119}, [296] = {.lex_state = 119}, [297] = {.lex_state = 119}, [298] = {.lex_state = 47}, - [299] = {.lex_state = 119}, - [300] = {.lex_state = 119}, + [299] = {.lex_state = 47}, + [300] = {.lex_state = 47}, [301] = {.lex_state = 119}, - [302] = {.lex_state = 47}, - [303] = {.lex_state = 119}, - [304] = {.lex_state = 47}, - [305] = {.lex_state = 119}, + [302] = {.lex_state = 119}, + [303] = {.lex_state = 47}, + [304] = {.lex_state = 119}, + [305] = {.lex_state = 47}, [306] = {.lex_state = 119}, - [307] = {.lex_state = 47}, + [307] = {.lex_state = 119}, [308] = {.lex_state = 47}, - [309] = {.lex_state = 47}, - [310] = {.lex_state = 47}, - [311] = {.lex_state = 47}, - [312] = {.lex_state = 47}, + [309] = {.lex_state = 119}, + [310] = {.lex_state = 44}, + [311] = {.lex_state = 119}, + [312] = {.lex_state = 44}, [313] = {.lex_state = 119}, [314] = {.lex_state = 119}, [315] = {.lex_state = 119}, - [316] = {.lex_state = 47}, - [317] = {.lex_state = 47}, + [316] = {.lex_state = 119}, + [317] = {.lex_state = 119}, [318] = {.lex_state = 119}, [319] = {.lex_state = 119}, [320] = {.lex_state = 119}, [321] = {.lex_state = 119}, - [322] = {.lex_state = 47}, + [322] = {.lex_state = 119}, [323] = {.lex_state = 119}, [324] = {.lex_state = 119}, - [325] = {.lex_state = 44}, + [325] = {.lex_state = 119}, [326] = {.lex_state = 119}, - [327] = {.lex_state = 47}, - [328] = {.lex_state = 47}, - [329] = {.lex_state = 47}, - [330] = {.lex_state = 47}, - [331] = {.lex_state = 44}, - [332] = {.lex_state = 47}, - [333] = {.lex_state = 47}, + [327] = {.lex_state = 119}, + [328] = {.lex_state = 119}, + [329] = {.lex_state = 119}, + [330] = {.lex_state = 119}, + [331] = {.lex_state = 119}, + [332] = {.lex_state = 119}, + [333] = {.lex_state = 119}, [334] = {.lex_state = 119}, - [335] = {.lex_state = 47}, - [336] = {.lex_state = 47}, - [337] = {.lex_state = 47}, - [338] = {.lex_state = 47}, - [339] = {.lex_state = 47}, - [340] = {.lex_state = 47}, - [341] = {.lex_state = 47}, + [335] = {.lex_state = 119}, + [336] = {.lex_state = 119}, + [337] = {.lex_state = 119}, + [338] = {.lex_state = 119}, + [339] = {.lex_state = 119}, + [340] = {.lex_state = 119}, + [341] = {.lex_state = 119}, [342] = {.lex_state = 119}, [343] = {.lex_state = 119}, - [344] = {.lex_state = 47}, + [344] = {.lex_state = 119}, [345] = {.lex_state = 119}, - [346] = {.lex_state = 47}, + [346] = {.lex_state = 119}, [347] = {.lex_state = 119}, - [348] = {.lex_state = 47}, + [348] = {.lex_state = 119}, [349] = {.lex_state = 119}, [350] = {.lex_state = 119}, [351] = {.lex_state = 119}, [352] = {.lex_state = 119}, - [353] = {.lex_state = 47}, + [353] = {.lex_state = 119}, [354] = {.lex_state = 119}, - [355] = {.lex_state = 47}, - [356] = {.lex_state = 47}, + [355] = {.lex_state = 119}, + [356] = {.lex_state = 119}, [357] = {.lex_state = 119}, [358] = {.lex_state = 119}, [359] = {.lex_state = 119}, @@ -9808,7 +9780,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [378] = {.lex_state = 119}, [379] = {.lex_state = 119}, [380] = {.lex_state = 119}, - [381] = {.lex_state = 119}, + [381] = {.lex_state = 44}, [382] = {.lex_state = 119}, [383] = {.lex_state = 119}, [384] = {.lex_state = 119}, @@ -9825,22 +9797,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [395] = {.lex_state = 119}, [396] = {.lex_state = 119}, [397] = {.lex_state = 119}, - [398] = {.lex_state = 119}, - [399] = {.lex_state = 119}, + [398] = {.lex_state = 44}, + [399] = {.lex_state = 44}, [400] = {.lex_state = 119}, - [401] = {.lex_state = 119}, - [402] = {.lex_state = 119}, - [403] = {.lex_state = 119}, - [404] = {.lex_state = 119}, + [401] = {.lex_state = 49}, + [402] = {.lex_state = 49}, + [403] = {.lex_state = 49}, + [404] = {.lex_state = 49}, [405] = {.lex_state = 119}, - [406] = {.lex_state = 119}, - [407] = {.lex_state = 119}, - [408] = {.lex_state = 119}, - [409] = {.lex_state = 119}, - [410] = {.lex_state = 119}, - [411] = {.lex_state = 119}, - [412] = {.lex_state = 119}, - [413] = {.lex_state = 119}, + [406] = {.lex_state = 49}, + [407] = {.lex_state = 49}, + [408] = {.lex_state = 49}, + [409] = {.lex_state = 49}, + [410] = {.lex_state = 49}, + [411] = {.lex_state = 49}, + [412] = {.lex_state = 44}, + [413] = {.lex_state = 53}, [414] = {.lex_state = 119}, [415] = {.lex_state = 119}, [416] = {.lex_state = 119}, @@ -9851,88 +9823,88 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [421] = {.lex_state = 119}, [422] = {.lex_state = 119}, [423] = {.lex_state = 119}, - [424] = {.lex_state = 119}, - [425] = {.lex_state = 119}, - [426] = {.lex_state = 119}, - [427] = {.lex_state = 119}, - [428] = {.lex_state = 119}, - [429] = {.lex_state = 119}, - [430] = {.lex_state = 119}, - [431] = {.lex_state = 119}, - [432] = {.lex_state = 119}, - [433] = {.lex_state = 44}, - [434] = {.lex_state = 119}, - [435] = {.lex_state = 119}, - [436] = {.lex_state = 119}, - [437] = {.lex_state = 119}, - [438] = {.lex_state = 119}, - [439] = {.lex_state = 119}, + [424] = {.lex_state = 53}, + [425] = {.lex_state = 53}, + [426] = {.lex_state = 53}, + [427] = {.lex_state = 53}, + [428] = {.lex_state = 53}, + [429] = {.lex_state = 53}, + [430] = {.lex_state = 53}, + [431] = {.lex_state = 53}, + [432] = {.lex_state = 53}, + [433] = {.lex_state = 53}, + [434] = {.lex_state = 53}, + [435] = {.lex_state = 53}, + [436] = {.lex_state = 53}, + [437] = {.lex_state = 53}, + [438] = {.lex_state = 53}, + [439] = {.lex_state = 53}, [440] = {.lex_state = 119}, - [441] = {.lex_state = 119}, + [441] = {.lex_state = 53}, [442] = {.lex_state = 119}, [443] = {.lex_state = 119}, - [444] = {.lex_state = 119}, + [444] = {.lex_state = 53}, [445] = {.lex_state = 119}, - [446] = {.lex_state = 119}, - [447] = {.lex_state = 119}, - [448] = {.lex_state = 119}, - [449] = {.lex_state = 119}, - [450] = {.lex_state = 44}, - [451] = {.lex_state = 44}, + [446] = {.lex_state = 52}, + [447] = {.lex_state = 57}, + [448] = {.lex_state = 57}, + [449] = {.lex_state = 57}, + [450] = {.lex_state = 52}, + [451] = {.lex_state = 52}, [452] = {.lex_state = 119}, - [453] = {.lex_state = 49}, - [454] = {.lex_state = 49}, + [453] = {.lex_state = 119}, + [454] = {.lex_state = 119}, [455] = {.lex_state = 119}, - [456] = {.lex_state = 49}, - [457] = {.lex_state = 49}, - [458] = {.lex_state = 49}, - [459] = {.lex_state = 49}, - [460] = {.lex_state = 49}, - [461] = {.lex_state = 49}, - [462] = {.lex_state = 44}, - [463] = {.lex_state = 49}, - [464] = {.lex_state = 49}, - [465] = {.lex_state = 52}, + [456] = {.lex_state = 119}, + [457] = {.lex_state = 119}, + [458] = {.lex_state = 119}, + [459] = {.lex_state = 119}, + [460] = {.lex_state = 119}, + [461] = {.lex_state = 119}, + [462] = {.lex_state = 119}, + [463] = {.lex_state = 119}, + [464] = {.lex_state = 53}, + [465] = {.lex_state = 119}, [466] = {.lex_state = 119}, [467] = {.lex_state = 119}, [468] = {.lex_state = 119}, [469] = {.lex_state = 119}, - [470] = {.lex_state = 119}, - [471] = {.lex_state = 119}, + [470] = {.lex_state = 53}, + [471] = {.lex_state = 53}, [472] = {.lex_state = 119}, [473] = {.lex_state = 119}, [474] = {.lex_state = 119}, [475] = {.lex_state = 119}, - [476] = {.lex_state = 52}, + [476] = {.lex_state = 119}, [477] = {.lex_state = 119}, - [478] = {.lex_state = 52}, - [479] = {.lex_state = 52}, - [480] = {.lex_state = 52}, - [481] = {.lex_state = 52}, - [482] = {.lex_state = 52}, - [483] = {.lex_state = 52}, - [484] = {.lex_state = 52}, - [485] = {.lex_state = 52}, - [486] = {.lex_state = 52}, - [487] = {.lex_state = 52}, - [488] = {.lex_state = 52}, - [489] = {.lex_state = 52}, - [490] = {.lex_state = 52}, - [491] = {.lex_state = 52}, - [492] = {.lex_state = 52}, - [493] = {.lex_state = 52}, + [478] = {.lex_state = 119}, + [479] = {.lex_state = 119}, + [480] = {.lex_state = 119}, + [481] = {.lex_state = 119}, + [482] = {.lex_state = 119}, + [483] = {.lex_state = 119}, + [484] = {.lex_state = 119}, + [485] = {.lex_state = 49}, + [486] = {.lex_state = 53}, + [487] = {.lex_state = 119}, + [488] = {.lex_state = 119}, + [489] = {.lex_state = 119}, + [490] = {.lex_state = 119}, + [491] = {.lex_state = 119}, + [492] = {.lex_state = 119}, + [493] = {.lex_state = 119}, [494] = {.lex_state = 119}, [495] = {.lex_state = 119}, [496] = {.lex_state = 119}, - [497] = {.lex_state = 52}, + [497] = {.lex_state = 119}, [498] = {.lex_state = 119}, - [499] = {.lex_state = 53}, - [500] = {.lex_state = 57}, - [501] = {.lex_state = 57}, - [502] = {.lex_state = 53}, + [499] = {.lex_state = 119}, + [500] = {.lex_state = 119}, + [501] = {.lex_state = 119}, + [502] = {.lex_state = 119}, [503] = {.lex_state = 119}, - [504] = {.lex_state = 57}, - [505] = {.lex_state = 53}, + [504] = {.lex_state = 119}, + [505] = {.lex_state = 119}, [506] = {.lex_state = 119}, [507] = {.lex_state = 119}, [508] = {.lex_state = 119}, @@ -9970,16 +9942,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [540] = {.lex_state = 119}, [541] = {.lex_state = 119}, [542] = {.lex_state = 119}, - [543] = {.lex_state = 52}, - [544] = {.lex_state = 52}, - [545] = {.lex_state = 49}, + [543] = {.lex_state = 119}, + [544] = {.lex_state = 119}, + [545] = {.lex_state = 119}, [546] = {.lex_state = 119}, [547] = {.lex_state = 119}, - [548] = {.lex_state = 52}, + [548] = {.lex_state = 119}, [549] = {.lex_state = 119}, [550] = {.lex_state = 119}, [551] = {.lex_state = 119}, - [552] = {.lex_state = 52}, + [552] = {.lex_state = 119}, [553] = {.lex_state = 119}, [554] = {.lex_state = 119}, [555] = {.lex_state = 119}, @@ -10043,444 +10015,444 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [613] = {.lex_state = 119}, [614] = {.lex_state = 119}, [615] = {.lex_state = 119}, - [616] = {.lex_state = 119}, - [617] = {.lex_state = 119}, - [618] = {.lex_state = 119}, - [619] = {.lex_state = 119}, - [620] = {.lex_state = 119}, - [621] = {.lex_state = 119}, - [622] = {.lex_state = 119}, - [623] = {.lex_state = 119}, - [624] = {.lex_state = 119}, - [625] = {.lex_state = 119}, - [626] = {.lex_state = 119}, - [627] = {.lex_state = 119}, - [628] = {.lex_state = 119}, - [629] = {.lex_state = 119}, - [630] = {.lex_state = 119}, - [631] = {.lex_state = 119}, - [632] = {.lex_state = 119}, - [633] = {.lex_state = 119}, - [634] = {.lex_state = 119}, - [635] = {.lex_state = 119}, - [636] = {.lex_state = 119}, - [637] = {.lex_state = 119}, - [638] = {.lex_state = 119}, - [639] = {.lex_state = 119}, - [640] = {.lex_state = 119}, - [641] = {.lex_state = 119}, - [642] = {.lex_state = 119}, - [643] = {.lex_state = 119}, - [644] = {.lex_state = 119}, - [645] = {.lex_state = 119}, - [646] = {.lex_state = 119}, - [647] = {.lex_state = 119}, - [648] = {.lex_state = 119}, - [649] = {.lex_state = 119}, - [650] = {.lex_state = 119}, - [651] = {.lex_state = 119}, - [652] = {.lex_state = 119}, - [653] = {.lex_state = 119}, + [616] = {.lex_state = 49}, + [617] = {.lex_state = 49}, + [618] = {.lex_state = 49}, + [619] = {.lex_state = 49}, + [620] = {.lex_state = 49}, + [621] = {.lex_state = 49}, + [622] = {.lex_state = 50}, + [623] = {.lex_state = 50}, + [624] = {.lex_state = 50}, + [625] = {.lex_state = 50}, + [626] = {.lex_state = 53}, + [627] = {.lex_state = 50}, + [628] = {.lex_state = 50}, + [629] = {.lex_state = 50}, + [630] = {.lex_state = 50}, + [631] = {.lex_state = 50}, + [632] = {.lex_state = 50}, + [633] = {.lex_state = 53}, + [634] = {.lex_state = 53}, + [635] = {.lex_state = 53}, + [636] = {.lex_state = 53}, + [637] = {.lex_state = 53}, + [638] = {.lex_state = 53}, + [639] = {.lex_state = 53}, + [640] = {.lex_state = 53}, + [641] = {.lex_state = 53}, + [642] = {.lex_state = 53}, + [643] = {.lex_state = 53}, + [644] = {.lex_state = 53}, + [645] = {.lex_state = 53}, + [646] = {.lex_state = 53}, + [647] = {.lex_state = 53}, + [648] = {.lex_state = 53}, + [649] = {.lex_state = 53}, + [650] = {.lex_state = 53}, + [651] = {.lex_state = 53}, + [652] = {.lex_state = 53}, + [653] = {.lex_state = 53}, [654] = {.lex_state = 119}, - [655] = {.lex_state = 119}, + [655] = {.lex_state = 50}, [656] = {.lex_state = 119}, - [657] = {.lex_state = 119}, + [657] = {.lex_state = 53}, [658] = {.lex_state = 119}, - [659] = {.lex_state = 119}, + [659] = {.lex_state = 49}, [660] = {.lex_state = 119}, - [661] = {.lex_state = 119}, - [662] = {.lex_state = 119}, - [663] = {.lex_state = 119}, - [664] = {.lex_state = 119}, - [665] = {.lex_state = 119}, - [666] = {.lex_state = 119}, - [667] = {.lex_state = 119}, - [668] = {.lex_state = 49}, - [669] = {.lex_state = 49}, - [670] = {.lex_state = 49}, - [671] = {.lex_state = 49}, - [672] = {.lex_state = 49}, - [673] = {.lex_state = 49}, - [674] = {.lex_state = 52}, + [661] = {.lex_state = 50}, + [662] = {.lex_state = 50}, + [663] = {.lex_state = 50}, + [664] = {.lex_state = 50}, + [665] = {.lex_state = 50}, + [666] = {.lex_state = 50}, + [667] = {.lex_state = 50}, + [668] = {.lex_state = 50}, + [669] = {.lex_state = 50}, + [670] = {.lex_state = 50}, + [671] = {.lex_state = 50}, + [672] = {.lex_state = 50}, + [673] = {.lex_state = 50}, + [674] = {.lex_state = 50}, [675] = {.lex_state = 50}, [676] = {.lex_state = 50}, [677] = {.lex_state = 50}, - [678] = {.lex_state = 50}, - [679] = {.lex_state = 50}, + [678] = {.lex_state = 53}, + [679] = {.lex_state = 49}, [680] = {.lex_state = 50}, - [681] = {.lex_state = 50}, - [682] = {.lex_state = 50}, - [683] = {.lex_state = 50}, + [681] = {.lex_state = 51}, + [682] = {.lex_state = 51}, + [683] = {.lex_state = 49}, [684] = {.lex_state = 50}, - [685] = {.lex_state = 52}, - [686] = {.lex_state = 52}, - [687] = {.lex_state = 52}, - [688] = {.lex_state = 52}, - [689] = {.lex_state = 52}, - [690] = {.lex_state = 52}, - [691] = {.lex_state = 52}, - [692] = {.lex_state = 52}, - [693] = {.lex_state = 52}, - [694] = {.lex_state = 52}, - [695] = {.lex_state = 52}, - [696] = {.lex_state = 52}, - [697] = {.lex_state = 52}, - [698] = {.lex_state = 52}, - [699] = {.lex_state = 52}, - [700] = {.lex_state = 52}, - [701] = {.lex_state = 52}, - [702] = {.lex_state = 52}, - [703] = {.lex_state = 52}, - [704] = {.lex_state = 52}, - [705] = {.lex_state = 52}, - [706] = {.lex_state = 119}, - [707] = {.lex_state = 49}, - [708] = {.lex_state = 119}, - [709] = {.lex_state = 52}, - [710] = {.lex_state = 50}, - [711] = {.lex_state = 119}, - [712] = {.lex_state = 119}, - [713] = {.lex_state = 50}, - [714] = {.lex_state = 50}, - [715] = {.lex_state = 50}, - [716] = {.lex_state = 50}, - [717] = {.lex_state = 50}, - [718] = {.lex_state = 50}, - [719] = {.lex_state = 50}, - [720] = {.lex_state = 50}, - [721] = {.lex_state = 50}, - [722] = {.lex_state = 50}, - [723] = {.lex_state = 50}, - [724] = {.lex_state = 50}, - [725] = {.lex_state = 50}, - [726] = {.lex_state = 50}, - [727] = {.lex_state = 50}, - [728] = {.lex_state = 50}, - [729] = {.lex_state = 50}, - [730] = {.lex_state = 52}, - [731] = {.lex_state = 50}, - [732] = {.lex_state = 49}, - [733] = {.lex_state = 52}, - [734] = {.lex_state = 50}, - [735] = {.lex_state = 52}, - [736] = {.lex_state = 52}, - [737] = {.lex_state = 51}, - [738] = {.lex_state = 51}, - [739] = {.lex_state = 50}, - [740] = {.lex_state = 50}, - [741] = {.lex_state = 51}, - [742] = {.lex_state = 51}, - [743] = {.lex_state = 52}, - [744] = {.lex_state = 52}, - [745] = {.lex_state = 52}, - [746] = {.lex_state = 49}, - [747] = {.lex_state = 50}, - [748] = {.lex_state = 52}, - [749] = {.lex_state = 49}, - [750] = {.lex_state = 119}, - [751] = {.lex_state = 119}, - [752] = {.lex_state = 52}, - [753] = {.lex_state = 52}, - [754] = {.lex_state = 52}, - [755] = {.lex_state = 52}, - [756] = {.lex_state = 52}, - [757] = {.lex_state = 52}, - [758] = {.lex_state = 52}, - [759] = {.lex_state = 52}, - [760] = {.lex_state = 52}, - [761] = {.lex_state = 52}, - [762] = {.lex_state = 52}, - [763] = {.lex_state = 52}, - [764] = {.lex_state = 52}, - [765] = {.lex_state = 52}, - [766] = {.lex_state = 52}, - [767] = {.lex_state = 52}, - [768] = {.lex_state = 52}, - [769] = {.lex_state = 52}, - [770] = {.lex_state = 52}, - [771] = {.lex_state = 49}, - [772] = {.lex_state = 52}, - [773] = {.lex_state = 49}, - [774] = {.lex_state = 52}, - [775] = {.lex_state = 52}, - [776] = {.lex_state = 52}, - [777] = {.lex_state = 49}, - [778] = {.lex_state = 49}, - [779] = {.lex_state = 52}, - [780] = {.lex_state = 49}, - [781] = {.lex_state = 49}, - [782] = {.lex_state = 52}, - [783] = {.lex_state = 52}, - [784] = {.lex_state = 52}, - [785] = {.lex_state = 52}, - [786] = {.lex_state = 50}, - [787] = {.lex_state = 52}, - [788] = {.lex_state = 52}, - [789] = {.lex_state = 50}, - [790] = {.lex_state = 52}, - [791] = {.lex_state = 52}, - [792] = {.lex_state = 52}, - [793] = {.lex_state = 52}, - [794] = {.lex_state = 50}, - [795] = {.lex_state = 52}, - [796] = {.lex_state = 52}, - [797] = {.lex_state = 52}, - [798] = {.lex_state = 50}, - [799] = {.lex_state = 50}, - [800] = {.lex_state = 52}, - [801] = {.lex_state = 52}, - [802] = {.lex_state = 50}, - [803] = {.lex_state = 52}, - [804] = {.lex_state = 50}, - [805] = {.lex_state = 52}, - [806] = {.lex_state = 50}, - [807] = {.lex_state = 52}, - [808] = {.lex_state = 52}, - [809] = {.lex_state = 50}, - [810] = {.lex_state = 52}, - [811] = {.lex_state = 50}, - [812] = {.lex_state = 49}, - [813] = {.lex_state = 50}, - [814] = {.lex_state = 52}, - [815] = {.lex_state = 52}, - [816] = {.lex_state = 52}, - [817] = {.lex_state = 52}, - [818] = {.lex_state = 52}, - [819] = {.lex_state = 52}, - [820] = {.lex_state = 52}, - [821] = {.lex_state = 52}, - [822] = {.lex_state = 52}, - [823] = {.lex_state = 52}, - [824] = {.lex_state = 52}, - [825] = {.lex_state = 52}, - [826] = {.lex_state = 52}, - [827] = {.lex_state = 52}, + [685] = {.lex_state = 50}, + [686] = {.lex_state = 50}, + [687] = {.lex_state = 53}, + [688] = {.lex_state = 51}, + [689] = {.lex_state = 50}, + [690] = {.lex_state = 51}, + [691] = {.lex_state = 53}, + [692] = {.lex_state = 53}, + [693] = {.lex_state = 53}, + [694] = {.lex_state = 53}, + [695] = {.lex_state = 50}, + [696] = {.lex_state = 53}, + [697] = {.lex_state = 53}, + [698] = {.lex_state = 53}, + [699] = {.lex_state = 119}, + [700] = {.lex_state = 119}, + [701] = {.lex_state = 49}, + [702] = {.lex_state = 53}, + [703] = {.lex_state = 53}, + [704] = {.lex_state = 53}, + [705] = {.lex_state = 53}, + [706] = {.lex_state = 53}, + [707] = {.lex_state = 53}, + [708] = {.lex_state = 53}, + [709] = {.lex_state = 53}, + [710] = {.lex_state = 53}, + [711] = {.lex_state = 53}, + [712] = {.lex_state = 53}, + [713] = {.lex_state = 53}, + [714] = {.lex_state = 53}, + [715] = {.lex_state = 53}, + [716] = {.lex_state = 53}, + [717] = {.lex_state = 53}, + [718] = {.lex_state = 53}, + [719] = {.lex_state = 53}, + [720] = {.lex_state = 49}, + [721] = {.lex_state = 53}, + [722] = {.lex_state = 53}, + [723] = {.lex_state = 53}, + [724] = {.lex_state = 53}, + [725] = {.lex_state = 49}, + [726] = {.lex_state = 53}, + [727] = {.lex_state = 49}, + [728] = {.lex_state = 53}, + [729] = {.lex_state = 49}, + [730] = {.lex_state = 53}, + [731] = {.lex_state = 49}, + [732] = {.lex_state = 53}, + [733] = {.lex_state = 49}, + [734] = {.lex_state = 53}, + [735] = {.lex_state = 53}, + [736] = {.lex_state = 53}, + [737] = {.lex_state = 53}, + [738] = {.lex_state = 53}, + [739] = {.lex_state = 49}, + [740] = {.lex_state = 53}, + [741] = {.lex_state = 53}, + [742] = {.lex_state = 53}, + [743] = {.lex_state = 53}, + [744] = {.lex_state = 53}, + [745] = {.lex_state = 50}, + [746] = {.lex_state = 53}, + [747] = {.lex_state = 53}, + [748] = {.lex_state = 50}, + [749] = {.lex_state = 53}, + [750] = {.lex_state = 53}, + [751] = {.lex_state = 53}, + [752] = {.lex_state = 53}, + [753] = {.lex_state = 53}, + [754] = {.lex_state = 50}, + [755] = {.lex_state = 53}, + [756] = {.lex_state = 53}, + [757] = {.lex_state = 50}, + [758] = {.lex_state = 50}, + [759] = {.lex_state = 53}, + [760] = {.lex_state = 50}, + [761] = {.lex_state = 53}, + [762] = {.lex_state = 53}, + [763] = {.lex_state = 53}, + [764] = {.lex_state = 53}, + [765] = {.lex_state = 50}, + [766] = {.lex_state = 50}, + [767] = {.lex_state = 53}, + [768] = {.lex_state = 53}, + [769] = {.lex_state = 53}, + [770] = {.lex_state = 50}, + [771] = {.lex_state = 53}, + [772] = {.lex_state = 53}, + [773] = {.lex_state = 53}, + [774] = {.lex_state = 53}, + [775] = {.lex_state = 50}, + [776] = {.lex_state = 50}, + [777] = {.lex_state = 53}, + [778] = {.lex_state = 50}, + [779] = {.lex_state = 53}, + [780] = {.lex_state = 53}, + [781] = {.lex_state = 53}, + [782] = {.lex_state = 53}, + [783] = {.lex_state = 53}, + [784] = {.lex_state = 53}, + [785] = {.lex_state = 53}, + [786] = {.lex_state = 53}, + [787] = {.lex_state = 53}, + [788] = {.lex_state = 53}, + [789] = {.lex_state = 53}, + [790] = {.lex_state = 53}, + [791] = {.lex_state = 53}, + [792] = {.lex_state = 53}, + [793] = {.lex_state = 50}, + [794] = {.lex_state = 53}, + [795] = {.lex_state = 53}, + [796] = {.lex_state = 53}, + [797] = {.lex_state = 53}, + [798] = {.lex_state = 53}, + [799] = {.lex_state = 53}, + [800] = {.lex_state = 53}, + [801] = {.lex_state = 53}, + [802] = {.lex_state = 53}, + [803] = {.lex_state = 53}, + [804] = {.lex_state = 53}, + [805] = {.lex_state = 53}, + [806] = {.lex_state = 53}, + [807] = {.lex_state = 53}, + [808] = {.lex_state = 53}, + [809] = {.lex_state = 53}, + [810] = {.lex_state = 53}, + [811] = {.lex_state = 53}, + [812] = {.lex_state = 53}, + [813] = {.lex_state = 53}, + [814] = {.lex_state = 53}, + [815] = {.lex_state = 53}, + [816] = {.lex_state = 53}, + [817] = {.lex_state = 53}, + [818] = {.lex_state = 53}, + [819] = {.lex_state = 53}, + [820] = {.lex_state = 53}, + [821] = {.lex_state = 53}, + [822] = {.lex_state = 53}, + [823] = {.lex_state = 53}, + [824] = {.lex_state = 53}, + [825] = {.lex_state = 53}, + [826] = {.lex_state = 53}, + [827] = {.lex_state = 53}, [828] = {.lex_state = 52}, - [829] = {.lex_state = 52}, - [830] = {.lex_state = 52}, - [831] = {.lex_state = 50}, - [832] = {.lex_state = 52}, - [833] = {.lex_state = 52}, - [834] = {.lex_state = 52}, + [829] = {.lex_state = 57}, + [830] = {.lex_state = 49}, + [831] = {.lex_state = 49}, + [832] = {.lex_state = 49}, + [833] = {.lex_state = 57}, + [834] = {.lex_state = 57}, [835] = {.lex_state = 52}, [836] = {.lex_state = 52}, - [837] = {.lex_state = 52}, - [838] = {.lex_state = 52}, - [839] = {.lex_state = 52}, - [840] = {.lex_state = 52}, - [841] = {.lex_state = 52}, - [842] = {.lex_state = 52}, - [843] = {.lex_state = 52}, - [844] = {.lex_state = 50}, - [845] = {.lex_state = 52}, - [846] = {.lex_state = 52}, - [847] = {.lex_state = 52}, - [848] = {.lex_state = 52}, - [849] = {.lex_state = 52}, - [850] = {.lex_state = 52}, - [851] = {.lex_state = 52}, - [852] = {.lex_state = 52}, - [853] = {.lex_state = 52}, + [837] = {.lex_state = 49}, + [838] = {.lex_state = 49}, + [839] = {.lex_state = 49}, + [840] = {.lex_state = 49}, + [841] = {.lex_state = 49}, + [842] = {.lex_state = 49}, + [843] = {.lex_state = 49}, + [844] = {.lex_state = 52}, + [845] = {.lex_state = 49}, + [846] = {.lex_state = 49}, + [847] = {.lex_state = 57}, + [848] = {.lex_state = 49}, + [849] = {.lex_state = 49}, + [850] = {.lex_state = 49}, + [851] = {.lex_state = 57}, + [852] = {.lex_state = 57}, + [853] = {.lex_state = 57}, [854] = {.lex_state = 52}, [855] = {.lex_state = 52}, [856] = {.lex_state = 52}, - [857] = {.lex_state = 52}, - [858] = {.lex_state = 52}, - [859] = {.lex_state = 52}, - [860] = {.lex_state = 52}, - [861] = {.lex_state = 52}, - [862] = {.lex_state = 52}, - [863] = {.lex_state = 52}, - [864] = {.lex_state = 52}, - [865] = {.lex_state = 52}, - [866] = {.lex_state = 52}, - [867] = {.lex_state = 52}, - [868] = {.lex_state = 52}, - [869] = {.lex_state = 52}, - [870] = {.lex_state = 52}, - [871] = {.lex_state = 52}, + [857] = {.lex_state = 57}, + [858] = {.lex_state = 57}, + [859] = {.lex_state = 57}, + [860] = {.lex_state = 53}, + [861] = {.lex_state = 57}, + [862] = {.lex_state = 57}, + [863] = {.lex_state = 57}, + [864] = {.lex_state = 49}, + [865] = {.lex_state = 49}, + [866] = {.lex_state = 49}, + [867] = {.lex_state = 57}, + [868] = {.lex_state = 49}, + [869] = {.lex_state = 57}, + [870] = {.lex_state = 49}, + [871] = {.lex_state = 49}, [872] = {.lex_state = 52}, [873] = {.lex_state = 52}, [874] = {.lex_state = 52}, - [875] = {.lex_state = 52}, + [875] = {.lex_state = 57}, [876] = {.lex_state = 52}, [877] = {.lex_state = 52}, - [878] = {.lex_state = 52}, - [879] = {.lex_state = 49}, - [880] = {.lex_state = 49}, - [881] = {.lex_state = 53}, - [882] = {.lex_state = 49}, - [883] = {.lex_state = 49}, + [878] = {.lex_state = 53}, + [879] = {.lex_state = 52}, + [880] = {.lex_state = 52}, + [881] = {.lex_state = 52}, + [882] = {.lex_state = 57}, + [883] = {.lex_state = 57}, [884] = {.lex_state = 53}, - [885] = {.lex_state = 49}, - [886] = {.lex_state = 53}, - [887] = {.lex_state = 57}, - [888] = {.lex_state = 57}, - [889] = {.lex_state = 57}, - [890] = {.lex_state = 57}, - [891] = {.lex_state = 52}, - [892] = {.lex_state = 57}, - [893] = {.lex_state = 57}, - [894] = {.lex_state = 52}, - [895] = {.lex_state = 57}, - [896] = {.lex_state = 57}, - [897] = {.lex_state = 57}, - [898] = {.lex_state = 53}, + [885] = {.lex_state = 52}, + [886] = {.lex_state = 52}, + [887] = {.lex_state = 52}, + [888] = {.lex_state = 49}, + [889] = {.lex_state = 49}, + [890] = {.lex_state = 49}, + [891] = {.lex_state = 49}, + [892] = {.lex_state = 49}, + [893] = {.lex_state = 49}, + [894] = {.lex_state = 53}, + [895] = {.lex_state = 53}, + [896] = {.lex_state = 53}, + [897] = {.lex_state = 53}, + [898] = {.lex_state = 49}, [899] = {.lex_state = 53}, - [900] = {.lex_state = 49}, - [901] = {.lex_state = 49}, - [902] = {.lex_state = 53}, - [903] = {.lex_state = 53}, - [904] = {.lex_state = 57}, - [905] = {.lex_state = 49}, - [906] = {.lex_state = 53}, - [907] = {.lex_state = 49}, - [908] = {.lex_state = 57}, - [909] = {.lex_state = 49}, + [900] = {.lex_state = 53}, + [901] = {.lex_state = 119}, + [902] = {.lex_state = 119}, + [903] = {.lex_state = 119}, + [904] = {.lex_state = 119}, + [905] = {.lex_state = 119}, + [906] = {.lex_state = 119}, + [907] = {.lex_state = 119}, + [908] = {.lex_state = 119}, + [909] = {.lex_state = 53}, [910] = {.lex_state = 53}, - [911] = {.lex_state = 49}, - [912] = {.lex_state = 49}, + [911] = {.lex_state = 119}, + [912] = {.lex_state = 119}, [913] = {.lex_state = 53}, [914] = {.lex_state = 53}, [915] = {.lex_state = 53}, [916] = {.lex_state = 53}, [917] = {.lex_state = 53}, - [918] = {.lex_state = 57}, - [919] = {.lex_state = 57}, - [920] = {.lex_state = 49}, - [921] = {.lex_state = 49}, - [922] = {.lex_state = 49}, - [923] = {.lex_state = 49}, + [918] = {.lex_state = 53}, + [919] = {.lex_state = 53}, + [920] = {.lex_state = 53}, + [921] = {.lex_state = 53}, + [922] = {.lex_state = 53}, + [923] = {.lex_state = 53}, [924] = {.lex_state = 53}, - [925] = {.lex_state = 49}, + [925] = {.lex_state = 53}, [926] = {.lex_state = 53}, - [927] = {.lex_state = 49}, - [928] = {.lex_state = 52}, - [929] = {.lex_state = 57}, - [930] = {.lex_state = 49}, - [931] = {.lex_state = 57}, - [932] = {.lex_state = 57}, - [933] = {.lex_state = 49}, - [934] = {.lex_state = 57}, - [935] = {.lex_state = 49}, - [936] = {.lex_state = 49}, + [927] = {.lex_state = 53}, + [928] = {.lex_state = 53}, + [929] = {.lex_state = 53}, + [930] = {.lex_state = 53}, + [931] = {.lex_state = 53}, + [932] = {.lex_state = 53}, + [933] = {.lex_state = 53}, + [934] = {.lex_state = 53}, + [935] = {.lex_state = 53}, + [936] = {.lex_state = 50}, [937] = {.lex_state = 53}, - [938] = {.lex_state = 57}, - [939] = {.lex_state = 53}, - [940] = {.lex_state = 52}, - [941] = {.lex_state = 49}, - [942] = {.lex_state = 49}, - [943] = {.lex_state = 52}, - [944] = {.lex_state = 52}, - [945] = {.lex_state = 52}, - [946] = {.lex_state = 49}, - [947] = {.lex_state = 49}, - [948] = {.lex_state = 49}, - [949] = {.lex_state = 52}, - [950] = {.lex_state = 52}, - [951] = {.lex_state = 119}, - [952] = {.lex_state = 119}, - [953] = {.lex_state = 119}, - [954] = {.lex_state = 119}, - [955] = {.lex_state = 119}, - [956] = {.lex_state = 119}, - [957] = {.lex_state = 119}, - [958] = {.lex_state = 119}, - [959] = {.lex_state = 52}, - [960] = {.lex_state = 119}, - [961] = {.lex_state = 52}, - [962] = {.lex_state = 119}, - [963] = {.lex_state = 52}, - [964] = {.lex_state = 52}, - [965] = {.lex_state = 52}, - [966] = {.lex_state = 52}, - [967] = {.lex_state = 52}, - [968] = {.lex_state = 52}, - [969] = {.lex_state = 52}, - [970] = {.lex_state = 52}, - [971] = {.lex_state = 52}, - [972] = {.lex_state = 52}, - [973] = {.lex_state = 52}, - [974] = {.lex_state = 52}, - [975] = {.lex_state = 52}, - [976] = {.lex_state = 52}, - [977] = {.lex_state = 52}, - [978] = {.lex_state = 52}, - [979] = {.lex_state = 52}, - [980] = {.lex_state = 52}, + [938] = {.lex_state = 53}, + [939] = {.lex_state = 50}, + [940] = {.lex_state = 50}, + [941] = {.lex_state = 50}, + [942] = {.lex_state = 50}, + [943] = {.lex_state = 53}, + [944] = {.lex_state = 50}, + [945] = {.lex_state = 50}, + [946] = {.lex_state = 50}, + [947] = {.lex_state = 50}, + [948] = {.lex_state = 50}, + [949] = {.lex_state = 50}, + [950] = {.lex_state = 50}, + [951] = {.lex_state = 50}, + [952] = {.lex_state = 53}, + [953] = {.lex_state = 53}, + [954] = {.lex_state = 53}, + [955] = {.lex_state = 53}, + [956] = {.lex_state = 53}, + [957] = {.lex_state = 53}, + [958] = {.lex_state = 53}, + [959] = {.lex_state = 53}, + [960] = {.lex_state = 53}, + [961] = {.lex_state = 53}, + [962] = {.lex_state = 53}, + [963] = {.lex_state = 53}, + [964] = {.lex_state = 53}, + [965] = {.lex_state = 53}, + [966] = {.lex_state = 53}, + [967] = {.lex_state = 53}, + [968] = {.lex_state = 53}, + [969] = {.lex_state = 53}, + [970] = {.lex_state = 53}, + [971] = {.lex_state = 53}, + [972] = {.lex_state = 53}, + [973] = {.lex_state = 53}, + [974] = {.lex_state = 53}, + [975] = {.lex_state = 53}, + [976] = {.lex_state = 53}, + [977] = {.lex_state = 53}, + [978] = {.lex_state = 53}, + [979] = {.lex_state = 53}, + [980] = {.lex_state = 53}, [981] = {.lex_state = 52}, - [982] = {.lex_state = 52}, - [983] = {.lex_state = 52}, + [982] = {.lex_state = 53}, + [983] = {.lex_state = 53}, [984] = {.lex_state = 52}, - [985] = {.lex_state = 52}, - [986] = {.lex_state = 50}, - [987] = {.lex_state = 50}, - [988] = {.lex_state = 50}, - [989] = {.lex_state = 50}, - [990] = {.lex_state = 52}, - [991] = {.lex_state = 50}, - [992] = {.lex_state = 52}, - [993] = {.lex_state = 50}, - [994] = {.lex_state = 50}, - [995] = {.lex_state = 50}, - [996] = {.lex_state = 50}, - [997] = {.lex_state = 50}, - [998] = {.lex_state = 50}, - [999] = {.lex_state = 50}, - [1000] = {.lex_state = 50}, - [1001] = {.lex_state = 52}, - [1002] = {.lex_state = 52}, - [1003] = {.lex_state = 52}, - [1004] = {.lex_state = 52}, - [1005] = {.lex_state = 52}, - [1006] = {.lex_state = 52}, - [1007] = {.lex_state = 52}, - [1008] = {.lex_state = 52}, - [1009] = {.lex_state = 52}, - [1010] = {.lex_state = 52}, - [1011] = {.lex_state = 52}, - [1012] = {.lex_state = 52}, - [1013] = {.lex_state = 52}, - [1014] = {.lex_state = 52}, - [1015] = {.lex_state = 52}, - [1016] = {.lex_state = 52}, - [1017] = {.lex_state = 52}, - [1018] = {.lex_state = 52}, - [1019] = {.lex_state = 52}, - [1020] = {.lex_state = 52}, - [1021] = {.lex_state = 52}, - [1022] = {.lex_state = 52}, - [1023] = {.lex_state = 52}, - [1024] = {.lex_state = 52}, - [1025] = {.lex_state = 52}, - [1026] = {.lex_state = 52}, - [1027] = {.lex_state = 52}, - [1028] = {.lex_state = 52}, - [1029] = {.lex_state = 52}, - [1030] = {.lex_state = 52}, - [1031] = {.lex_state = 52}, - [1032] = {.lex_state = 52}, - [1033] = {.lex_state = 53}, - [1034] = {.lex_state = 52}, - [1035] = {.lex_state = 53}, - [1036] = {.lex_state = 53}, - [1037] = {.lex_state = 52}, + [985] = {.lex_state = 53}, + [986] = {.lex_state = 52}, + [987] = {.lex_state = 53}, + [988] = {.lex_state = 53}, + [989] = {.lex_state = 53}, + [990] = {.lex_state = 53}, + [991] = {.lex_state = 52}, + [992] = {.lex_state = 49}, + [993] = {.lex_state = 49}, + [994] = {.lex_state = 53}, + [995] = {.lex_state = 49}, + [996] = {.lex_state = 49}, + [997] = {.lex_state = 49}, + [998] = {.lex_state = 49}, + [999] = {.lex_state = 53}, + [1000] = {.lex_state = 53}, + [1001] = {.lex_state = 49}, + [1002] = {.lex_state = 49}, + [1003] = {.lex_state = 53}, + [1004] = {.lex_state = 49}, + [1005] = {.lex_state = 49}, + [1006] = {.lex_state = 49}, + [1007] = {.lex_state = 49}, + [1008] = {.lex_state = 49}, + [1009] = {.lex_state = 53}, + [1010] = {.lex_state = 49}, + [1011] = {.lex_state = 49}, + [1012] = {.lex_state = 49}, + [1013] = {.lex_state = 49}, + [1014] = {.lex_state = 49}, + [1015] = {.lex_state = 49}, + [1016] = {.lex_state = 49}, + [1017] = {.lex_state = 49}, + [1018] = {.lex_state = 49}, + [1019] = {.lex_state = 49}, + [1020] = {.lex_state = 49}, + [1021] = {.lex_state = 49}, + [1022] = {.lex_state = 49}, + [1023] = {.lex_state = 49}, + [1024] = {.lex_state = 49}, + [1025] = {.lex_state = 49}, + [1026] = {.lex_state = 49}, + [1027] = {.lex_state = 49}, + [1028] = {.lex_state = 49}, + [1029] = {.lex_state = 49}, + [1030] = {.lex_state = 49}, + [1031] = {.lex_state = 49}, + [1032] = {.lex_state = 49}, + [1033] = {.lex_state = 49}, + [1034] = {.lex_state = 49}, + [1035] = {.lex_state = 49}, + [1036] = {.lex_state = 49}, + [1037] = {.lex_state = 49}, [1038] = {.lex_state = 49}, - [1039] = {.lex_state = 52}, - [1040] = {.lex_state = 52}, - [1041] = {.lex_state = 53}, - [1042] = {.lex_state = 52}, + [1039] = {.lex_state = 49}, + [1040] = {.lex_state = 49}, + [1041] = {.lex_state = 49}, + [1042] = {.lex_state = 49}, [1043] = {.lex_state = 49}, [1044] = {.lex_state = 49}, [1045] = {.lex_state = 49}, - [1046] = {.lex_state = 52}, + [1046] = {.lex_state = 49}, [1047] = {.lex_state = 49}, - [1048] = {.lex_state = 52}, + [1048] = {.lex_state = 49}, [1049] = {.lex_state = 49}, [1050] = {.lex_state = 49}, - [1051] = {.lex_state = 52}, + [1051] = {.lex_state = 49}, [1052] = {.lex_state = 49}, - [1053] = {.lex_state = 52}, + [1053] = {.lex_state = 49}, [1054] = {.lex_state = 49}, [1055] = {.lex_state = 49}, [1056] = {.lex_state = 49}, @@ -10500,559 +10472,559 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1070] = {.lex_state = 49}, [1071] = {.lex_state = 49}, [1072] = {.lex_state = 49}, - [1073] = {.lex_state = 49}, - [1074] = {.lex_state = 49}, - [1075] = {.lex_state = 49}, + [1073] = {.lex_state = 53}, + [1074] = {.lex_state = 53}, + [1075] = {.lex_state = 53}, [1076] = {.lex_state = 49}, - [1077] = {.lex_state = 49}, + [1077] = {.lex_state = 53}, [1078] = {.lex_state = 49}, - [1079] = {.lex_state = 49}, - [1080] = {.lex_state = 49}, - [1081] = {.lex_state = 52}, - [1082] = {.lex_state = 49}, - [1083] = {.lex_state = 49}, - [1084] = {.lex_state = 49}, - [1085] = {.lex_state = 49}, - [1086] = {.lex_state = 49}, - [1087] = {.lex_state = 49}, - [1088] = {.lex_state = 49}, - [1089] = {.lex_state = 49}, - [1090] = {.lex_state = 49}, - [1091] = {.lex_state = 49}, - [1092] = {.lex_state = 49}, - [1093] = {.lex_state = 49}, - [1094] = {.lex_state = 49}, - [1095] = {.lex_state = 49}, - [1096] = {.lex_state = 49}, - [1097] = {.lex_state = 49}, - [1098] = {.lex_state = 49}, - [1099] = {.lex_state = 49}, - [1100] = {.lex_state = 49}, - [1101] = {.lex_state = 49}, - [1102] = {.lex_state = 49}, - [1103] = {.lex_state = 49}, - [1104] = {.lex_state = 49}, - [1105] = {.lex_state = 49}, - [1106] = {.lex_state = 49}, - [1107] = {.lex_state = 49}, - [1108] = {.lex_state = 49}, - [1109] = {.lex_state = 49}, - [1110] = {.lex_state = 49}, - [1111] = {.lex_state = 49}, - [1112] = {.lex_state = 49}, - [1113] = {.lex_state = 49}, - [1114] = {.lex_state = 49}, - [1115] = {.lex_state = 49}, - [1116] = {.lex_state = 49}, - [1117] = {.lex_state = 49}, - [1118] = {.lex_state = 49}, - [1119] = {.lex_state = 49}, - [1120] = {.lex_state = 49}, - [1121] = {.lex_state = 49}, - [1122] = {.lex_state = 49}, - [1123] = {.lex_state = 52}, - [1124] = {.lex_state = 52}, - [1125] = {.lex_state = 52}, - [1126] = {.lex_state = 52}, - [1127] = {.lex_state = 52}, - [1128] = {.lex_state = 49}, + [1079] = {.lex_state = 53}, + [1080] = {.lex_state = 53}, + [1081] = {.lex_state = 53}, + [1082] = {.lex_state = 53}, + [1083] = {.lex_state = 53}, + [1084] = {.lex_state = 53}, + [1085] = {.lex_state = 53}, + [1086] = {.lex_state = 53}, + [1087] = {.lex_state = 53}, + [1088] = {.lex_state = 53}, + [1089] = {.lex_state = 53}, + [1090] = {.lex_state = 53}, + [1091] = {.lex_state = 53}, + [1092] = {.lex_state = 53}, + [1093] = {.lex_state = 53}, + [1094] = {.lex_state = 53}, + [1095] = {.lex_state = 53}, + [1096] = {.lex_state = 53}, + [1097] = {.lex_state = 52}, + [1098] = {.lex_state = 53}, + [1099] = {.lex_state = 53}, + [1100] = {.lex_state = 53}, + [1101] = {.lex_state = 53}, + [1102] = {.lex_state = 52}, + [1103] = {.lex_state = 53}, + [1104] = {.lex_state = 53}, + [1105] = {.lex_state = 53}, + [1106] = {.lex_state = 53}, + [1107] = {.lex_state = 53}, + [1108] = {.lex_state = 48}, + [1109] = {.lex_state = 53}, + [1110] = {.lex_state = 48}, + [1111] = {.lex_state = 53}, + [1112] = {.lex_state = 53}, + [1113] = {.lex_state = 48}, + [1114] = {.lex_state = 53}, + [1115] = {.lex_state = 53}, + [1116] = {.lex_state = 52}, + [1117] = {.lex_state = 25}, + [1118] = {.lex_state = 53}, + [1119] = {.lex_state = 53}, + [1120] = {.lex_state = 53}, + [1121] = {.lex_state = 53}, + [1122] = {.lex_state = 53}, + [1123] = {.lex_state = 53}, + [1124] = {.lex_state = 53}, + [1125] = {.lex_state = 53}, + [1126] = {.lex_state = 53}, + [1127] = {.lex_state = 53}, + [1128] = {.lex_state = 53}, [1129] = {.lex_state = 52}, - [1130] = {.lex_state = 49}, - [1131] = {.lex_state = 52}, + [1130] = {.lex_state = 48}, + [1131] = {.lex_state = 48}, [1132] = {.lex_state = 52}, [1133] = {.lex_state = 52}, [1134] = {.lex_state = 52}, [1135] = {.lex_state = 52}, [1136] = {.lex_state = 52}, - [1137] = {.lex_state = 52}, + [1137] = {.lex_state = 48}, [1138] = {.lex_state = 52}, - [1139] = {.lex_state = 52}, + [1139] = {.lex_state = 53}, [1140] = {.lex_state = 52}, [1141] = {.lex_state = 52}, - [1142] = {.lex_state = 52}, + [1142] = {.lex_state = 48}, [1143] = {.lex_state = 52}, [1144] = {.lex_state = 52}, [1145] = {.lex_state = 52}, [1146] = {.lex_state = 52}, - [1147] = {.lex_state = 52}, - [1148] = {.lex_state = 53}, - [1149] = {.lex_state = 52}, + [1147] = {.lex_state = 48}, + [1148] = {.lex_state = 48}, + [1149] = {.lex_state = 48}, [1150] = {.lex_state = 52}, - [1151] = {.lex_state = 52}, + [1151] = {.lex_state = 48}, [1152] = {.lex_state = 48}, - [1153] = {.lex_state = 52}, - [1154] = {.lex_state = 52}, - [1155] = {.lex_state = 52}, - [1156] = {.lex_state = 52}, - [1157] = {.lex_state = 52}, - [1158] = {.lex_state = 53}, - [1159] = {.lex_state = 52}, - [1160] = {.lex_state = 25}, + [1153] = {.lex_state = 48}, + [1154] = {.lex_state = 48}, + [1155] = {.lex_state = 48}, + [1156] = {.lex_state = 48}, + [1157] = {.lex_state = 48}, + [1158] = {.lex_state = 48}, + [1159] = {.lex_state = 48}, + [1160] = {.lex_state = 48}, [1161] = {.lex_state = 52}, - [1162] = {.lex_state = 52}, - [1163] = {.lex_state = 52}, - [1164] = {.lex_state = 52}, + [1162] = {.lex_state = 48}, + [1163] = {.lex_state = 48}, + [1164] = {.lex_state = 48}, [1165] = {.lex_state = 48}, - [1166] = {.lex_state = 52}, - [1167] = {.lex_state = 52}, - [1168] = {.lex_state = 52}, - [1169] = {.lex_state = 52}, - [1170] = {.lex_state = 53}, - [1171] = {.lex_state = 52}, + [1166] = {.lex_state = 48}, + [1167] = {.lex_state = 48}, + [1168] = {.lex_state = 48}, + [1169] = {.lex_state = 48}, + [1170] = {.lex_state = 48}, + [1171] = {.lex_state = 48}, [1172] = {.lex_state = 48}, [1173] = {.lex_state = 52}, - [1174] = {.lex_state = 52}, - [1175] = {.lex_state = 52}, - [1176] = {.lex_state = 53}, - [1177] = {.lex_state = 52}, - [1178] = {.lex_state = 52}, - [1179] = {.lex_state = 52}, + [1174] = {.lex_state = 48}, + [1175] = {.lex_state = 48}, + [1176] = {.lex_state = 48}, + [1177] = {.lex_state = 48}, + [1178] = {.lex_state = 48}, + [1179] = {.lex_state = 48}, [1180] = {.lex_state = 48}, [1181] = {.lex_state = 48}, - [1182] = {.lex_state = 52}, - [1183] = {.lex_state = 48}, - [1184] = {.lex_state = 53}, + [1182] = {.lex_state = 48}, + [1183] = {.lex_state = 52}, + [1184] = {.lex_state = 48}, [1185] = {.lex_state = 48}, - [1186] = {.lex_state = 48}, - [1187] = {.lex_state = 48}, - [1188] = {.lex_state = 48}, - [1189] = {.lex_state = 53}, - [1190] = {.lex_state = 48}, - [1191] = {.lex_state = 48}, - [1192] = {.lex_state = 48}, - [1193] = {.lex_state = 53}, - [1194] = {.lex_state = 48}, - [1195] = {.lex_state = 48}, - [1196] = {.lex_state = 48}, - [1197] = {.lex_state = 53}, - [1198] = {.lex_state = 48}, - [1199] = {.lex_state = 48}, - [1200] = {.lex_state = 48}, - [1201] = {.lex_state = 48}, - [1202] = {.lex_state = 48}, - [1203] = {.lex_state = 53}, - [1204] = {.lex_state = 48}, - [1205] = {.lex_state = 53}, - [1206] = {.lex_state = 53}, - [1207] = {.lex_state = 53}, - [1208] = {.lex_state = 48}, - [1209] = {.lex_state = 48}, - [1210] = {.lex_state = 53}, - [1211] = {.lex_state = 48}, - [1212] = {.lex_state = 53}, - [1213] = {.lex_state = 48}, + [1186] = {.lex_state = 25}, + [1187] = {.lex_state = 25}, + [1188] = {.lex_state = 25}, + [1189] = {.lex_state = 25}, + [1190] = {.lex_state = 25}, + [1191] = {.lex_state = 25}, + [1192] = {.lex_state = 25}, + [1193] = {.lex_state = 25}, + [1194] = {.lex_state = 25}, + [1195] = {.lex_state = 25}, + [1196] = {.lex_state = 25}, + [1197] = {.lex_state = 25}, + [1198] = {.lex_state = 25}, + [1199] = {.lex_state = 25}, + [1200] = {.lex_state = 25}, + [1201] = {.lex_state = 25}, + [1202] = {.lex_state = 25}, + [1203] = {.lex_state = 52}, + [1204] = {.lex_state = 25}, + [1205] = {.lex_state = 25}, + [1206] = {.lex_state = 25}, + [1207] = {.lex_state = 25}, + [1208] = {.lex_state = 25}, + [1209] = {.lex_state = 25}, + [1210] = {.lex_state = 25}, + [1211] = {.lex_state = 53}, + [1212] = {.lex_state = 25}, + [1213] = {.lex_state = 25}, [1214] = {.lex_state = 53}, - [1215] = {.lex_state = 53}, - [1216] = {.lex_state = 53}, - [1217] = {.lex_state = 53}, - [1218] = {.lex_state = 48}, + [1215] = {.lex_state = 25}, + [1216] = {.lex_state = 25}, + [1217] = {.lex_state = 25}, + [1218] = {.lex_state = 53}, [1219] = {.lex_state = 53}, - [1220] = {.lex_state = 48}, - [1221] = {.lex_state = 48}, - [1222] = {.lex_state = 48}, - [1223] = {.lex_state = 48}, - [1224] = {.lex_state = 48}, - [1225] = {.lex_state = 48}, - [1226] = {.lex_state = 48}, - [1227] = {.lex_state = 48}, - [1228] = {.lex_state = 48}, - [1229] = {.lex_state = 48}, - [1230] = {.lex_state = 48}, + [1220] = {.lex_state = 25}, + [1221] = {.lex_state = 25}, + [1222] = {.lex_state = 25}, + [1223] = {.lex_state = 52}, + [1224] = {.lex_state = 25}, + [1225] = {.lex_state = 53}, + [1226] = {.lex_state = 53}, + [1227] = {.lex_state = 53}, + [1228] = {.lex_state = 53}, + [1229] = {.lex_state = 53}, + [1230] = {.lex_state = 53}, [1231] = {.lex_state = 53}, - [1232] = {.lex_state = 48}, - [1233] = {.lex_state = 48}, - [1234] = {.lex_state = 48}, - [1235] = {.lex_state = 48}, - [1236] = {.lex_state = 25}, - [1237] = {.lex_state = 25}, - [1238] = {.lex_state = 52}, + [1232] = {.lex_state = 53}, + [1233] = {.lex_state = 53}, + [1234] = {.lex_state = 53}, + [1235] = {.lex_state = 53}, + [1236] = {.lex_state = 53}, + [1237] = {.lex_state = 53}, + [1238] = {.lex_state = 53}, [1239] = {.lex_state = 53}, - [1240] = {.lex_state = 25}, + [1240] = {.lex_state = 53}, [1241] = {.lex_state = 53}, - [1242] = {.lex_state = 52}, - [1243] = {.lex_state = 25}, - [1244] = {.lex_state = 25}, - [1245] = {.lex_state = 25}, - [1246] = {.lex_state = 25}, - [1247] = {.lex_state = 25}, - [1248] = {.lex_state = 25}, - [1249] = {.lex_state = 25}, - [1250] = {.lex_state = 25}, - [1251] = {.lex_state = 25}, - [1252] = {.lex_state = 25}, - [1253] = {.lex_state = 25}, - [1254] = {.lex_state = 25}, - [1255] = {.lex_state = 25}, - [1256] = {.lex_state = 52}, - [1257] = {.lex_state = 52}, - [1258] = {.lex_state = 25}, - [1259] = {.lex_state = 25}, - [1260] = {.lex_state = 25}, - [1261] = {.lex_state = 25}, - [1262] = {.lex_state = 25}, - [1263] = {.lex_state = 25}, - [1264] = {.lex_state = 25}, - [1265] = {.lex_state = 25}, - [1266] = {.lex_state = 25}, - [1267] = {.lex_state = 52}, - [1268] = {.lex_state = 25}, - [1269] = {.lex_state = 25}, - [1270] = {.lex_state = 25}, - [1271] = {.lex_state = 25}, - [1272] = {.lex_state = 25}, - [1273] = {.lex_state = 25}, - [1274] = {.lex_state = 25}, - [1275] = {.lex_state = 25}, - [1276] = {.lex_state = 52}, - [1277] = {.lex_state = 52}, - [1278] = {.lex_state = 52}, - [1279] = {.lex_state = 52}, - [1280] = {.lex_state = 52}, - [1281] = {.lex_state = 52}, - [1282] = {.lex_state = 52}, - [1283] = {.lex_state = 52}, - [1284] = {.lex_state = 52}, - [1285] = {.lex_state = 52}, - [1286] = {.lex_state = 52}, - [1287] = {.lex_state = 52}, - [1288] = {.lex_state = 52}, - [1289] = {.lex_state = 52}, - [1290] = {.lex_state = 52}, - [1291] = {.lex_state = 52}, - [1292] = {.lex_state = 52}, - [1293] = {.lex_state = 52}, - [1294] = {.lex_state = 52}, - [1295] = {.lex_state = 52}, - [1296] = {.lex_state = 52}, - [1297] = {.lex_state = 50}, - [1298] = {.lex_state = 50}, - [1299] = {.lex_state = 50}, + [1242] = {.lex_state = 53}, + [1243] = {.lex_state = 53}, + [1244] = {.lex_state = 53}, + [1245] = {.lex_state = 53}, + [1246] = {.lex_state = 53}, + [1247] = {.lex_state = 53}, + [1248] = {.lex_state = 53}, + [1249] = {.lex_state = 53}, + [1250] = {.lex_state = 50}, + [1251] = {.lex_state = 50}, + [1252] = {.lex_state = 50}, + [1253] = {.lex_state = 53}, + [1254] = {.lex_state = 50}, + [1255] = {.lex_state = 53}, + [1256] = {.lex_state = 53}, + [1257] = {.lex_state = 53}, + [1258] = {.lex_state = 53}, + [1259] = {.lex_state = 53}, + [1260] = {.lex_state = 53}, + [1261] = {.lex_state = 53}, + [1262] = {.lex_state = 56}, + [1263] = {.lex_state = 53}, + [1264] = {.lex_state = 53}, + [1265] = {.lex_state = 53}, + [1266] = {.lex_state = 53}, + [1267] = {.lex_state = 53}, + [1268] = {.lex_state = 53}, + [1269] = {.lex_state = 53}, + [1270] = {.lex_state = 53}, + [1271] = {.lex_state = 53}, + [1272] = {.lex_state = 53}, + [1273] = {.lex_state = 53}, + [1274] = {.lex_state = 53}, + [1275] = {.lex_state = 53}, + [1276] = {.lex_state = 56}, + [1277] = {.lex_state = 53}, + [1278] = {.lex_state = 53}, + [1279] = {.lex_state = 53}, + [1280] = {.lex_state = 53}, + [1281] = {.lex_state = 53}, + [1282] = {.lex_state = 50}, + [1283] = {.lex_state = 53}, + [1284] = {.lex_state = 56}, + [1285] = {.lex_state = 53}, + [1286] = {.lex_state = 50}, + [1287] = {.lex_state = 50}, + [1288] = {.lex_state = 53}, + [1289] = {.lex_state = 53}, + [1290] = {.lex_state = 53}, + [1291] = {.lex_state = 53}, + [1292] = {.lex_state = 50}, + [1293] = {.lex_state = 53}, + [1294] = {.lex_state = 50}, + [1295] = {.lex_state = 53}, + [1296] = {.lex_state = 50}, + [1297] = {.lex_state = 53}, + [1298] = {.lex_state = 53}, + [1299] = {.lex_state = 53}, [1300] = {.lex_state = 50}, - [1301] = {.lex_state = 52}, - [1302] = {.lex_state = 52}, - [1303] = {.lex_state = 52}, - [1304] = {.lex_state = 52}, - [1305] = {.lex_state = 52}, - [1306] = {.lex_state = 52}, - [1307] = {.lex_state = 52}, - [1308] = {.lex_state = 52}, - [1309] = {.lex_state = 52}, - [1310] = {.lex_state = 52}, - [1311] = {.lex_state = 52}, - [1312] = {.lex_state = 52}, - [1313] = {.lex_state = 52}, - [1314] = {.lex_state = 52}, - [1315] = {.lex_state = 52}, - [1316] = {.lex_state = 52}, - [1317] = {.lex_state = 52}, - [1318] = {.lex_state = 52}, - [1319] = {.lex_state = 52}, - [1320] = {.lex_state = 52}, - [1321] = {.lex_state = 52}, - [1322] = {.lex_state = 52}, - [1323] = {.lex_state = 52}, - [1324] = {.lex_state = 52}, - [1325] = {.lex_state = 56}, - [1326] = {.lex_state = 56}, - [1327] = {.lex_state = 52}, - [1328] = {.lex_state = 52}, - [1329] = {.lex_state = 52}, - [1330] = {.lex_state = 52}, - [1331] = {.lex_state = 52}, - [1332] = {.lex_state = 52}, - [1333] = {.lex_state = 50}, - [1334] = {.lex_state = 50}, - [1335] = {.lex_state = 50}, - [1336] = {.lex_state = 50}, - [1337] = {.lex_state = 56}, - [1338] = {.lex_state = 50}, - [1339] = {.lex_state = 52}, - [1340] = {.lex_state = 50}, - [1341] = {.lex_state = 50}, - [1342] = {.lex_state = 50}, - [1343] = {.lex_state = 50}, - [1344] = {.lex_state = 50}, - [1345] = {.lex_state = 50}, - [1346] = {.lex_state = 52}, - [1347] = {.lex_state = 52}, - [1348] = {.lex_state = 52}, - [1349] = {.lex_state = 52}, - [1350] = {.lex_state = 52}, - [1351] = {.lex_state = 52}, - [1352] = {.lex_state = 49}, - [1353] = {.lex_state = 52}, - [1354] = {.lex_state = 52}, - [1355] = {.lex_state = 52}, - [1356] = {.lex_state = 52}, - [1357] = {.lex_state = 50}, - [1358] = {.lex_state = 50}, - [1359] = {.lex_state = 50}, - [1360] = {.lex_state = 52}, - [1361] = {.lex_state = 52}, - [1362] = {.lex_state = 52}, - [1363] = {.lex_state = 52}, - [1364] = {.lex_state = 52}, - [1365] = {.lex_state = 52}, - [1366] = {.lex_state = 52}, - [1367] = {.lex_state = 52}, - [1368] = {.lex_state = 119}, - [1369] = {.lex_state = 52}, - [1370] = {.lex_state = 0}, - [1371] = {.lex_state = 52}, - [1372] = {.lex_state = 52}, + [1301] = {.lex_state = 50}, + [1302] = {.lex_state = 50}, + [1303] = {.lex_state = 53}, + [1304] = {.lex_state = 50}, + [1305] = {.lex_state = 50}, + [1306] = {.lex_state = 50}, + [1307] = {.lex_state = 50}, + [1308] = {.lex_state = 50}, + [1309] = {.lex_state = 49}, + [1310] = {.lex_state = 53}, + [1311] = {.lex_state = 0}, + [1312] = {.lex_state = 53}, + [1313] = {.lex_state = 53}, + [1314] = {.lex_state = 53}, + [1315] = {.lex_state = 53}, + [1316] = {.lex_state = 53}, + [1317] = {.lex_state = 53}, + [1318] = {.lex_state = 119}, + [1319] = {.lex_state = 119}, + [1320] = {.lex_state = 53}, + [1321] = {.lex_state = 53}, + [1322] = {.lex_state = 53}, + [1323] = {.lex_state = 53}, + [1324] = {.lex_state = 119}, + [1325] = {.lex_state = 53}, + [1326] = {.lex_state = 119}, + [1327] = {.lex_state = 0}, + [1328] = {.lex_state = 53}, + [1329] = {.lex_state = 54}, + [1330] = {.lex_state = 119}, + [1331] = {.lex_state = 54}, + [1332] = {.lex_state = 119}, + [1333] = {.lex_state = 54}, + [1334] = {.lex_state = 119}, + [1335] = {.lex_state = 119}, + [1336] = {.lex_state = 54}, + [1337] = {.lex_state = 49}, + [1338] = {.lex_state = 49}, + [1339] = {.lex_state = 119}, + [1340] = {.lex_state = 119}, + [1341] = {.lex_state = 53}, + [1342] = {.lex_state = 49}, + [1343] = {.lex_state = 119}, + [1344] = {.lex_state = 119}, + [1345] = {.lex_state = 53}, + [1346] = {.lex_state = 119}, + [1347] = {.lex_state = 53}, + [1348] = {.lex_state = 119}, + [1349] = {.lex_state = 53}, + [1350] = {.lex_state = 119}, + [1351] = {.lex_state = 119}, + [1352] = {.lex_state = 53}, + [1353] = {.lex_state = 53}, + [1354] = {.lex_state = 50}, + [1355] = {.lex_state = 119}, + [1356] = {.lex_state = 119}, + [1357] = {.lex_state = 53}, + [1358] = {.lex_state = 119}, + [1359] = {.lex_state = 0}, + [1360] = {.lex_state = 50}, + [1361] = {.lex_state = 53}, + [1362] = {.lex_state = 119}, + [1363] = {.lex_state = 119}, + [1364] = {.lex_state = 53}, + [1365] = {.lex_state = 119}, + [1366] = {.lex_state = 119}, + [1367] = {.lex_state = 53}, + [1368] = {.lex_state = 0}, + [1369] = {.lex_state = 53}, + [1370] = {.lex_state = 53}, + [1371] = {.lex_state = 119}, + [1372] = {.lex_state = 50}, [1373] = {.lex_state = 119}, [1374] = {.lex_state = 119}, - [1375] = {.lex_state = 0}, + [1375] = {.lex_state = 53}, [1376] = {.lex_state = 119}, - [1377] = {.lex_state = 52}, - [1378] = {.lex_state = 52}, - [1379] = {.lex_state = 49}, - [1380] = {.lex_state = 119}, + [1377] = {.lex_state = 53}, + [1378] = {.lex_state = 53}, + [1379] = {.lex_state = 53}, + [1380] = {.lex_state = 53}, [1381] = {.lex_state = 119}, - [1382] = {.lex_state = 119}, - [1383] = {.lex_state = 119}, - [1384] = {.lex_state = 119}, - [1385] = {.lex_state = 54}, + [1382] = {.lex_state = 53}, + [1383] = {.lex_state = 53}, + [1384] = {.lex_state = 0}, + [1385] = {.lex_state = 53}, [1386] = {.lex_state = 119}, - [1387] = {.lex_state = 49}, - [1388] = {.lex_state = 52}, - [1389] = {.lex_state = 54}, - [1390] = {.lex_state = 119}, - [1391] = {.lex_state = 54}, - [1392] = {.lex_state = 119}, - [1393] = {.lex_state = 52}, - [1394] = {.lex_state = 49}, - [1395] = {.lex_state = 119}, - [1396] = {.lex_state = 54}, - [1397] = {.lex_state = 52}, - [1398] = {.lex_state = 119}, - [1399] = {.lex_state = 50}, - [1400] = {.lex_state = 119}, - [1401] = {.lex_state = 0}, - [1402] = {.lex_state = 0}, - [1403] = {.lex_state = 52}, - [1404] = {.lex_state = 119}, - [1405] = {.lex_state = 119}, - [1406] = {.lex_state = 119}, - [1407] = {.lex_state = 119}, - [1408] = {.lex_state = 52}, - [1409] = {.lex_state = 119}, - [1410] = {.lex_state = 52}, - [1411] = {.lex_state = 52}, + [1387] = {.lex_state = 0}, + [1388] = {.lex_state = 50}, + [1389] = {.lex_state = 119}, + [1390] = {.lex_state = 53}, + [1391] = {.lex_state = 53}, + [1392] = {.lex_state = 53}, + [1393] = {.lex_state = 119}, + [1394] = {.lex_state = 119}, + [1395] = {.lex_state = 53}, + [1396] = {.lex_state = 53}, + [1397] = {.lex_state = 119}, + [1398] = {.lex_state = 53}, + [1399] = {.lex_state = 56}, + [1400] = {.lex_state = 53}, + [1401] = {.lex_state = 53}, + [1402] = {.lex_state = 119}, + [1403] = {.lex_state = 53}, + [1404] = {.lex_state = 0}, + [1405] = {.lex_state = 56}, + [1406] = {.lex_state = 0}, + [1407] = {.lex_state = 56}, + [1408] = {.lex_state = 53}, + [1409] = {.lex_state = 0}, + [1410] = {.lex_state = 53}, + [1411] = {.lex_state = 56}, [1412] = {.lex_state = 119}, [1413] = {.lex_state = 119}, - [1414] = {.lex_state = 52}, - [1415] = {.lex_state = 52}, - [1416] = {.lex_state = 119}, - [1417] = {.lex_state = 52}, - [1418] = {.lex_state = 119}, - [1419] = {.lex_state = 52}, - [1420] = {.lex_state = 52}, - [1421] = {.lex_state = 50}, + [1414] = {.lex_state = 119}, + [1415] = {.lex_state = 56}, + [1416] = {.lex_state = 56}, + [1417] = {.lex_state = 53}, + [1418] = {.lex_state = 53}, + [1419] = {.lex_state = 119}, + [1420] = {.lex_state = 56}, + [1421] = {.lex_state = 53}, [1422] = {.lex_state = 119}, - [1423] = {.lex_state = 119}, - [1424] = {.lex_state = 50}, - [1425] = {.lex_state = 52}, - [1426] = {.lex_state = 0}, - [1427] = {.lex_state = 119}, - [1428] = {.lex_state = 119}, - [1429] = {.lex_state = 119}, + [1423] = {.lex_state = 53}, + [1424] = {.lex_state = 53}, + [1425] = {.lex_state = 119}, + [1426] = {.lex_state = 56}, + [1427] = {.lex_state = 53}, + [1428] = {.lex_state = 53}, + [1429] = {.lex_state = 53}, [1430] = {.lex_state = 119}, - [1431] = {.lex_state = 52}, - [1432] = {.lex_state = 52}, - [1433] = {.lex_state = 119}, - [1434] = {.lex_state = 119}, - [1435] = {.lex_state = 52}, - [1436] = {.lex_state = 52}, - [1437] = {.lex_state = 52}, + [1431] = {.lex_state = 53}, + [1432] = {.lex_state = 56}, + [1433] = {.lex_state = 50}, + [1434] = {.lex_state = 53}, + [1435] = {.lex_state = 56}, + [1436] = {.lex_state = 56}, + [1437] = {.lex_state = 119}, [1438] = {.lex_state = 119}, - [1439] = {.lex_state = 52}, - [1440] = {.lex_state = 0}, - [1441] = {.lex_state = 50}, - [1442] = {.lex_state = 52}, - [1443] = {.lex_state = 52}, - [1444] = {.lex_state = 52}, - [1445] = {.lex_state = 52}, - [1446] = {.lex_state = 52}, - [1447] = {.lex_state = 52}, - [1448] = {.lex_state = 52}, - [1449] = {.lex_state = 119}, - [1450] = {.lex_state = 0}, - [1451] = {.lex_state = 0}, - [1452] = {.lex_state = 56}, - [1453] = {.lex_state = 50}, - [1454] = {.lex_state = 56}, - [1455] = {.lex_state = 56}, - [1456] = {.lex_state = 56}, - [1457] = {.lex_state = 56}, - [1458] = {.lex_state = 52}, - [1459] = {.lex_state = 56}, - [1460] = {.lex_state = 52}, - [1461] = {.lex_state = 0}, - [1462] = {.lex_state = 52}, - [1463] = {.lex_state = 56}, - [1464] = {.lex_state = 119}, - [1465] = {.lex_state = 119}, - [1466] = {.lex_state = 56}, - [1467] = {.lex_state = 56}, - [1468] = {.lex_state = 56}, - [1469] = {.lex_state = 119}, - [1470] = {.lex_state = 52}, - [1471] = {.lex_state = 52}, - [1472] = {.lex_state = 56}, - [1473] = {.lex_state = 119}, - [1474] = {.lex_state = 52}, - [1475] = {.lex_state = 119}, - [1476] = {.lex_state = 52}, - [1477] = {.lex_state = 52}, - [1478] = {.lex_state = 52}, - [1479] = {.lex_state = 52}, - [1480] = {.lex_state = 119}, - [1481] = {.lex_state = 52}, - [1482] = {.lex_state = 52}, - [1483] = {.lex_state = 52}, - [1484] = {.lex_state = 52}, - [1485] = {.lex_state = 52}, - [1486] = {.lex_state = 119}, - [1487] = {.lex_state = 52}, - [1488] = {.lex_state = 52}, - [1489] = {.lex_state = 52}, - [1490] = {.lex_state = 119}, - [1491] = {.lex_state = 119}, + [1439] = {.lex_state = 119}, + [1440] = {.lex_state = 119}, + [1441] = {.lex_state = 53}, + [1442] = {.lex_state = 119}, + [1443] = {.lex_state = 119}, + [1444] = {.lex_state = 53}, + [1445] = {.lex_state = 119}, + [1446] = {.lex_state = 119}, + [1447] = {.lex_state = 119}, + [1448] = {.lex_state = 119}, + [1449] = {.lex_state = 53}, + [1450] = {.lex_state = 50}, + [1451] = {.lex_state = 45}, + [1452] = {.lex_state = 119}, + [1453] = {.lex_state = 53}, + [1454] = {.lex_state = 119}, + [1455] = {.lex_state = 119}, + [1456] = {.lex_state = 119}, + [1457] = {.lex_state = 53}, + [1458] = {.lex_state = 53}, + [1459] = {.lex_state = 53}, + [1460] = {.lex_state = 53}, + [1461] = {.lex_state = 53}, + [1462] = {.lex_state = 53}, + [1463] = {.lex_state = 53}, + [1464] = {.lex_state = 0}, + [1465] = {.lex_state = 53}, + [1466] = {.lex_state = 45}, + [1467] = {.lex_state = 53}, + [1468] = {.lex_state = 53}, + [1469] = {.lex_state = 53}, + [1470] = {.lex_state = 53}, + [1471] = {.lex_state = 30}, + [1472] = {.lex_state = 53}, + [1473] = {.lex_state = 32}, + [1474] = {.lex_state = 0}, + [1475] = {.lex_state = 53}, + [1476] = {.lex_state = 53}, + [1477] = {.lex_state = 119}, + [1478] = {.lex_state = 53}, + [1479] = {.lex_state = 32}, + [1480] = {.lex_state = 53}, + [1481] = {.lex_state = 53}, + [1482] = {.lex_state = 0}, + [1483] = {.lex_state = 53}, + [1484] = {.lex_state = 37}, + [1485] = {.lex_state = 30}, + [1486] = {.lex_state = 0}, + [1487] = {.lex_state = 53}, + [1488] = {.lex_state = 53}, + [1489] = {.lex_state = 30}, + [1490] = {.lex_state = 37}, + [1491] = {.lex_state = 53}, [1492] = {.lex_state = 50}, - [1493] = {.lex_state = 45}, - [1494] = {.lex_state = 119}, - [1495] = {.lex_state = 119}, - [1496] = {.lex_state = 119}, - [1497] = {.lex_state = 119}, - [1498] = {.lex_state = 119}, - [1499] = {.lex_state = 119}, - [1500] = {.lex_state = 119}, - [1501] = {.lex_state = 119}, - [1502] = {.lex_state = 119}, - [1503] = {.lex_state = 119}, - [1504] = {.lex_state = 52}, - [1505] = {.lex_state = 119}, - [1506] = {.lex_state = 119}, - [1507] = {.lex_state = 30}, - [1508] = {.lex_state = 52}, - [1509] = {.lex_state = 30}, - [1510] = {.lex_state = 50}, - [1511] = {.lex_state = 0}, - [1512] = {.lex_state = 35}, - [1513] = {.lex_state = 52}, - [1514] = {.lex_state = 52}, - [1515] = {.lex_state = 37}, - [1516] = {.lex_state = 52}, - [1517] = {.lex_state = 52}, - [1518] = {.lex_state = 52}, - [1519] = {.lex_state = 52}, + [1493] = {.lex_state = 50}, + [1494] = {.lex_state = 53}, + [1495] = {.lex_state = 50}, + [1496] = {.lex_state = 53}, + [1497] = {.lex_state = 32}, + [1498] = {.lex_state = 53}, + [1499] = {.lex_state = 50}, + [1500] = {.lex_state = 0}, + [1501] = {.lex_state = 32}, + [1502] = {.lex_state = 30}, + [1503] = {.lex_state = 30}, + [1504] = {.lex_state = 0}, + [1505] = {.lex_state = 0}, + [1506] = {.lex_state = 32}, + [1507] = {.lex_state = 0}, + [1508] = {.lex_state = 37}, + [1509] = {.lex_state = 37}, + [1510] = {.lex_state = 30}, + [1511] = {.lex_state = 53}, + [1512] = {.lex_state = 53}, + [1513] = {.lex_state = 0}, + [1514] = {.lex_state = 32}, + [1515] = {.lex_state = 53}, + [1516] = {.lex_state = 0}, + [1517] = {.lex_state = 119}, + [1518] = {.lex_state = 53}, + [1519] = {.lex_state = 32}, [1520] = {.lex_state = 30}, [1521] = {.lex_state = 0}, - [1522] = {.lex_state = 30}, - [1523] = {.lex_state = 52}, - [1524] = {.lex_state = 52}, - [1525] = {.lex_state = 52}, - [1526] = {.lex_state = 50}, - [1527] = {.lex_state = 35}, + [1522] = {.lex_state = 0}, + [1523] = {.lex_state = 0}, + [1524] = {.lex_state = 53}, + [1525] = {.lex_state = 0}, + [1526] = {.lex_state = 53}, + [1527] = {.lex_state = 0}, [1528] = {.lex_state = 0}, - [1529] = {.lex_state = 37}, + [1529] = {.lex_state = 0}, [1530] = {.lex_state = 0}, - [1531] = {.lex_state = 52}, - [1532] = {.lex_state = 30}, + [1531] = {.lex_state = 0}, + [1532] = {.lex_state = 0}, [1533] = {.lex_state = 0}, - [1534] = {.lex_state = 119}, - [1535] = {.lex_state = 35}, - [1536] = {.lex_state = 35}, - [1537] = {.lex_state = 0}, - [1538] = {.lex_state = 52}, - [1539] = {.lex_state = 52}, - [1540] = {.lex_state = 52}, - [1541] = {.lex_state = 52}, + [1534] = {.lex_state = 0}, + [1535] = {.lex_state = 0}, + [1536] = {.lex_state = 0}, + [1537] = {.lex_state = 45}, + [1538] = {.lex_state = 0}, + [1539] = {.lex_state = 53}, + [1540] = {.lex_state = 37}, + [1541] = {.lex_state = 0}, [1542] = {.lex_state = 0}, - [1543] = {.lex_state = 52}, - [1544] = {.lex_state = 35}, - [1545] = {.lex_state = 52}, - [1546] = {.lex_state = 37}, - [1547] = {.lex_state = 52}, - [1548] = {.lex_state = 52}, - [1549] = {.lex_state = 45}, - [1550] = {.lex_state = 52}, - [1551] = {.lex_state = 52}, - [1552] = {.lex_state = 30}, - [1553] = {.lex_state = 52}, + [1543] = {.lex_state = 0}, + [1544] = {.lex_state = 34}, + [1545] = {.lex_state = 0}, + [1546] = {.lex_state = 0}, + [1547] = {.lex_state = 0}, + [1548] = {.lex_state = 0}, + [1549] = {.lex_state = 0}, + [1550] = {.lex_state = 34}, + [1551] = {.lex_state = 0}, + [1552] = {.lex_state = 53}, + [1553] = {.lex_state = 0}, [1554] = {.lex_state = 0}, - [1555] = {.lex_state = 52}, - [1556] = {.lex_state = 50}, - [1557] = {.lex_state = 30}, - [1558] = {.lex_state = 35}, - [1559] = {.lex_state = 50}, - [1560] = {.lex_state = 52}, - [1561] = {.lex_state = 52}, - [1562] = {.lex_state = 35}, - [1563] = {.lex_state = 119}, - [1564] = {.lex_state = 37}, - [1565] = {.lex_state = 52}, - [1566] = {.lex_state = 52}, - [1567] = {.lex_state = 52}, - [1568] = {.lex_state = 52}, + [1555] = {.lex_state = 0}, + [1556] = {.lex_state = 53}, + [1557] = {.lex_state = 0}, + [1558] = {.lex_state = 45}, + [1559] = {.lex_state = 53}, + [1560] = {.lex_state = 0}, + [1561] = {.lex_state = 0}, + [1562] = {.lex_state = 0}, + [1563] = {.lex_state = 0}, + [1564] = {.lex_state = 0}, + [1565] = {.lex_state = 34}, + [1566] = {.lex_state = 0}, + [1567] = {.lex_state = 0}, + [1568] = {.lex_state = 0}, [1569] = {.lex_state = 0}, [1570] = {.lex_state = 0}, - [1571] = {.lex_state = 0}, - [1572] = {.lex_state = 52}, + [1571] = {.lex_state = 45}, + [1572] = {.lex_state = 37}, [1573] = {.lex_state = 0}, - [1574] = {.lex_state = 52}, - [1575] = {.lex_state = 0}, + [1574] = {.lex_state = 0}, + [1575] = {.lex_state = 53}, [1576] = {.lex_state = 0}, [1577] = {.lex_state = 0}, - [1578] = {.lex_state = 37}, + [1578] = {.lex_state = 0}, [1579] = {.lex_state = 0}, - [1580] = {.lex_state = 32}, - [1581] = {.lex_state = 45}, - [1582] = {.lex_state = 0}, + [1580] = {.lex_state = 0}, + [1581] = {.lex_state = 0}, + [1582] = {.lex_state = 53}, [1583] = {.lex_state = 0}, [1584] = {.lex_state = 0}, - [1585] = {.lex_state = 52}, - [1586] = {.lex_state = 52}, + [1585] = {.lex_state = 45}, + [1586] = {.lex_state = 0}, [1587] = {.lex_state = 0}, [1588] = {.lex_state = 0}, [1589] = {.lex_state = 0}, - [1590] = {.lex_state = 52}, + [1590] = {.lex_state = 0}, [1591] = {.lex_state = 0}, [1592] = {.lex_state = 0}, [1593] = {.lex_state = 0}, [1594] = {.lex_state = 0}, - [1595] = {.lex_state = 37}, + [1595] = {.lex_state = 0}, [1596] = {.lex_state = 0}, - [1597] = {.lex_state = 52}, + [1597] = {.lex_state = 0}, [1598] = {.lex_state = 0}, [1599] = {.lex_state = 0}, [1600] = {.lex_state = 0}, - [1601] = {.lex_state = 52}, + [1601] = {.lex_state = 0}, [1602] = {.lex_state = 45}, - [1603] = {.lex_state = 52}, + [1603] = {.lex_state = 0}, [1604] = {.lex_state = 0}, [1605] = {.lex_state = 0}, - [1606] = {.lex_state = 52}, - [1607] = {.lex_state = 0}, + [1606] = {.lex_state = 53}, + [1607] = {.lex_state = 34}, [1608] = {.lex_state = 0}, [1609] = {.lex_state = 0}, [1610] = {.lex_state = 0}, [1611] = {.lex_state = 0}, [1612] = {.lex_state = 0}, [1613] = {.lex_state = 0}, - [1614] = {.lex_state = 32}, + [1614] = {.lex_state = 0}, [1615] = {.lex_state = 0}, [1616] = {.lex_state = 0}, - [1617] = {.lex_state = 37}, + [1617] = {.lex_state = 0}, [1618] = {.lex_state = 0}, [1619] = {.lex_state = 0}, - [1620] = {.lex_state = 45}, + [1620] = {.lex_state = 0}, [1621] = {.lex_state = 0}, - [1622] = {.lex_state = 0}, + [1622] = {.lex_state = 53}, [1623] = {.lex_state = 0}, [1624] = {.lex_state = 0}, - [1625] = {.lex_state = 0}, + [1625] = {.lex_state = 37}, [1626] = {.lex_state = 0}, [1627] = {.lex_state = 0}, [1628] = {.lex_state = 0}, @@ -11063,401 +11035,351 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1633] = {.lex_state = 0}, [1634] = {.lex_state = 0}, [1635] = {.lex_state = 0}, - [1636] = {.lex_state = 32}, + [1636] = {.lex_state = 45}, [1637] = {.lex_state = 0}, - [1638] = {.lex_state = 0}, + [1638] = {.lex_state = 53}, [1639] = {.lex_state = 0}, - [1640] = {.lex_state = 0}, + [1640] = {.lex_state = 53}, [1641] = {.lex_state = 0}, - [1642] = {.lex_state = 0}, + [1642] = {.lex_state = 45}, [1643] = {.lex_state = 0}, [1644] = {.lex_state = 0}, - [1645] = {.lex_state = 0}, - [1646] = {.lex_state = 0}, - [1647] = {.lex_state = 0}, + [1645] = {.lex_state = 33}, + [1646] = {.lex_state = 53}, + [1647] = {.lex_state = 45}, [1648] = {.lex_state = 0}, - [1649] = {.lex_state = 52}, - [1650] = {.lex_state = 0}, - [1651] = {.lex_state = 45}, - [1652] = {.lex_state = 0}, + [1649] = {.lex_state = 119}, + [1650] = {.lex_state = 119}, + [1651] = {.lex_state = 119}, + [1652] = {.lex_state = 45}, [1653] = {.lex_state = 0}, - [1654] = {.lex_state = 0}, - [1655] = {.lex_state = 52}, + [1654] = {.lex_state = 119}, + [1655] = {.lex_state = 0}, [1656] = {.lex_state = 0}, [1657] = {.lex_state = 0}, [1658] = {.lex_state = 0}, - [1659] = {.lex_state = 0}, - [1660] = {.lex_state = 0}, - [1661] = {.lex_state = 0}, + [1659] = {.lex_state = 119}, + [1660] = {.lex_state = 119}, + [1661] = {.lex_state = 119}, [1662] = {.lex_state = 0}, [1663] = {.lex_state = 0}, [1664] = {.lex_state = 0}, [1665] = {.lex_state = 0}, - [1666] = {.lex_state = 0}, - [1667] = {.lex_state = 0}, + [1666] = {.lex_state = 53}, + [1667] = {.lex_state = 119}, [1668] = {.lex_state = 0}, - [1669] = {.lex_state = 0}, - [1670] = {.lex_state = 0}, + [1669] = {.lex_state = 119}, + [1670] = {.lex_state = 119}, [1671] = {.lex_state = 0}, - [1672] = {.lex_state = 45}, + [1672] = {.lex_state = 53}, [1673] = {.lex_state = 0}, - [1674] = {.lex_state = 0}, - [1675] = {.lex_state = 0}, - [1676] = {.lex_state = 32}, - [1677] = {.lex_state = 0}, - [1678] = {.lex_state = 0}, - [1679] = {.lex_state = 0}, + [1674] = {.lex_state = 33}, + [1675] = {.lex_state = 119}, + [1676] = {.lex_state = 119}, + [1677] = {.lex_state = 119}, + [1678] = {.lex_state = 53}, + [1679] = {.lex_state = 119}, [1680] = {.lex_state = 0}, - [1681] = {.lex_state = 45}, - [1682] = {.lex_state = 0}, - [1683] = {.lex_state = 0}, + [1681] = {.lex_state = 53}, + [1682] = {.lex_state = 45}, + [1683] = {.lex_state = 119}, [1684] = {.lex_state = 0}, - [1685] = {.lex_state = 0}, - [1686] = {.lex_state = 0}, - [1687] = {.lex_state = 45}, + [1685] = {.lex_state = 119}, + [1686] = {.lex_state = 119}, + [1687] = {.lex_state = 0}, [1688] = {.lex_state = 0}, - [1689] = {.lex_state = 52}, + [1689] = {.lex_state = 0}, [1690] = {.lex_state = 0}, [1691] = {.lex_state = 0}, - [1692] = {.lex_state = 0}, - [1693] = {.lex_state = 31}, - [1694] = {.lex_state = 31}, - [1695] = {.lex_state = 31}, - [1696] = {.lex_state = 52}, - [1697] = {.lex_state = 119}, + [1692] = {.lex_state = 33}, + [1693] = {.lex_state = 33}, + [1694] = {.lex_state = 119}, + [1695] = {.lex_state = 0}, + [1696] = {.lex_state = 0}, + [1697] = {.lex_state = 33}, [1698] = {.lex_state = 119}, - [1699] = {.lex_state = 119}, - [1700] = {.lex_state = 0}, - [1701] = {.lex_state = 0}, - [1702] = {.lex_state = 45}, - [1703] = {.lex_state = 0}, + [1699] = {.lex_state = 33}, + [1700] = {.lex_state = 119}, + [1701] = {.lex_state = 119}, + [1702] = {.lex_state = 53}, + [1703] = {.lex_state = 53}, [1704] = {.lex_state = 0}, - [1705] = {.lex_state = 0}, - [1706] = {.lex_state = 52}, - [1707] = {.lex_state = 119}, - [1708] = {.lex_state = 119}, - [1709] = {.lex_state = 0}, + [1705] = {.lex_state = 33}, + [1706] = {.lex_state = 0}, + [1707] = {.lex_state = 0}, + [1708] = {.lex_state = 33}, + [1709] = {.lex_state = 33}, [1710] = {.lex_state = 119}, - [1711] = {.lex_state = 119}, - [1712] = {.lex_state = 0}, - [1713] = {.lex_state = 0}, - [1714] = {.lex_state = 0}, - [1715] = {.lex_state = 119}, - [1716] = {.lex_state = 119}, - [1717] = {.lex_state = 0}, - [1718] = {.lex_state = 31}, - [1719] = {.lex_state = 119}, + [1711] = {.lex_state = 0}, + [1712] = {.lex_state = 33}, + [1713] = {.lex_state = 119}, + [1714] = {.lex_state = 33}, + [1715] = {.lex_state = 53}, + [1716] = {.lex_state = 33}, + [1717] = {.lex_state = 33}, + [1718] = {.lex_state = 33}, + [1719] = {.lex_state = 0}, [1720] = {.lex_state = 0}, - [1721] = {.lex_state = 119}, - [1722] = {.lex_state = 119}, - [1723] = {.lex_state = 45}, + [1721] = {.lex_state = 33}, + [1722] = {.lex_state = 0}, + [1723] = {.lex_state = 0}, [1724] = {.lex_state = 0}, - [1725] = {.lex_state = 119}, + [1725] = {.lex_state = 0}, [1726] = {.lex_state = 0}, - [1727] = {.lex_state = 119}, + [1727] = {.lex_state = 33}, [1728] = {.lex_state = 119}, - [1729] = {.lex_state = 52}, - [1730] = {.lex_state = 31}, - [1731] = {.lex_state = 31}, - [1732] = {.lex_state = 31}, - [1733] = {.lex_state = 52}, - [1734] = {.lex_state = 45}, - [1735] = {.lex_state = 119}, - [1736] = {.lex_state = 119}, + [1729] = {.lex_state = 33}, + [1730] = {.lex_state = 119}, + [1731] = {.lex_state = 34}, + [1732] = {.lex_state = 0}, + [1733] = {.lex_state = 44}, + [1734] = {.lex_state = 0}, + [1735] = {.lex_state = 0}, + [1736] = {.lex_state = 0}, [1737] = {.lex_state = 0}, - [1738] = {.lex_state = 119}, - [1739] = {.lex_state = 119}, - [1740] = {.lex_state = 52}, - [1741] = {.lex_state = 0}, - [1742] = {.lex_state = 119}, - [1743] = {.lex_state = 0}, - [1744] = {.lex_state = 0}, - [1745] = {.lex_state = 0}, - [1746] = {.lex_state = 0}, - [1747] = {.lex_state = 0}, + [1738] = {.lex_state = 44}, + [1739] = {.lex_state = 44}, + [1740] = {.lex_state = 0}, + [1741] = {.lex_state = 44}, + [1742] = {.lex_state = 44}, + [1743] = {.lex_state = 34}, + [1744] = {.lex_state = 44}, + [1745] = {.lex_state = 44}, + [1746] = {.lex_state = 44}, + [1747] = {.lex_state = 34}, [1748] = {.lex_state = 0}, - [1749] = {.lex_state = 119}, - [1750] = {.lex_state = 119}, - [1751] = {.lex_state = 119}, + [1749] = {.lex_state = 0}, + [1750] = {.lex_state = 44}, + [1751] = {.lex_state = 0}, [1752] = {.lex_state = 0}, - [1753] = {.lex_state = 31}, - [1754] = {.lex_state = 52}, - [1755] = {.lex_state = 0}, - [1756] = {.lex_state = 31}, - [1757] = {.lex_state = 31}, - [1758] = {.lex_state = 31}, + [1753] = {.lex_state = 0}, + [1754] = {.lex_state = 53}, + [1755] = {.lex_state = 44}, + [1756] = {.lex_state = 44}, + [1757] = {.lex_state = 0}, + [1758] = {.lex_state = 0}, [1759] = {.lex_state = 0}, - [1760] = {.lex_state = 52}, + [1760] = {.lex_state = 34}, [1761] = {.lex_state = 0}, - [1762] = {.lex_state = 52}, - [1763] = {.lex_state = 31}, + [1762] = {.lex_state = 0}, + [1763] = {.lex_state = 34}, [1764] = {.lex_state = 0}, - [1765] = {.lex_state = 31}, + [1765] = {.lex_state = 53}, [1766] = {.lex_state = 0}, - [1767] = {.lex_state = 31}, - [1768] = {.lex_state = 31}, - [1769] = {.lex_state = 119}, + [1767] = {.lex_state = 0}, + [1768] = {.lex_state = 34}, + [1769] = {.lex_state = 34}, [1770] = {.lex_state = 0}, - [1771] = {.lex_state = 0}, + [1771] = {.lex_state = 34}, [1772] = {.lex_state = 0}, [1773] = {.lex_state = 0}, [1774] = {.lex_state = 0}, - [1775] = {.lex_state = 0}, - [1776] = {.lex_state = 31}, + [1775] = {.lex_state = 34}, + [1776] = {.lex_state = 44}, [1777] = {.lex_state = 0}, - [1778] = {.lex_state = 119}, - [1779] = {.lex_state = 31}, - [1780] = {.lex_state = 0}, + [1778] = {.lex_state = 34}, + [1779] = {.lex_state = 44}, + [1780] = {.lex_state = 44}, [1781] = {.lex_state = 0}, - [1782] = {.lex_state = 52}, - [1783] = {.lex_state = 44}, - [1784] = {.lex_state = 44}, - [1785] = {.lex_state = 0}, - [1786] = {.lex_state = 32}, - [1787] = {.lex_state = 0}, - [1788] = {.lex_state = 44}, - [1789] = {.lex_state = 44}, - [1790] = {.lex_state = 0}, - [1791] = {.lex_state = 32}, - [1792] = {.lex_state = 52}, - [1793] = {.lex_state = 0}, - [1794] = {.lex_state = 32}, + [1782] = {.lex_state = 44}, + [1783] = {.lex_state = 0}, + [1784] = {.lex_state = 34}, + [1785] = {.lex_state = 34}, + [1786] = {.lex_state = 0}, + [1787] = {.lex_state = 34}, + [1788] = {.lex_state = 0}, + [1789] = {.lex_state = 0}, + [1790] = {.lex_state = 34}, + [1791] = {.lex_state = 34}, + [1792] = {.lex_state = 34}, + [1793] = {.lex_state = 34}, + [1794] = {.lex_state = 34}, [1795] = {.lex_state = 44}, - [1796] = {.lex_state = 44}, - [1797] = {.lex_state = 0}, - [1798] = {.lex_state = 32}, + [1796] = {.lex_state = 53}, + [1797] = {.lex_state = 53}, + [1798] = {.lex_state = 53}, [1799] = {.lex_state = 0}, [1800] = {.lex_state = 0}, - [1801] = {.lex_state = 32}, - [1802] = {.lex_state = 0}, - [1803] = {.lex_state = 0}, - [1804] = {.lex_state = 44}, - [1805] = {.lex_state = 0}, - [1806] = {.lex_state = 0}, - [1807] = {.lex_state = 0}, + [1801] = {.lex_state = 0}, + [1802] = {.lex_state = 34}, + [1803] = {.lex_state = 53}, + [1804] = {.lex_state = 34}, + [1805] = {.lex_state = 53}, + [1806] = {.lex_state = 44}, + [1807] = {.lex_state = 34}, [1808] = {.lex_state = 0}, - [1809] = {.lex_state = 32}, - [1810] = {.lex_state = 0}, - [1811] = {.lex_state = 32}, + [1809] = {.lex_state = 0}, + [1810] = {.lex_state = 34}, + [1811] = {.lex_state = 0}, [1812] = {.lex_state = 0}, - [1813] = {.lex_state = 0}, + [1813] = {.lex_state = 34}, [1814] = {.lex_state = 0}, - [1815] = {.lex_state = 32}, + [1815] = {.lex_state = 53}, [1816] = {.lex_state = 0}, [1817] = {.lex_state = 0}, - [1818] = {.lex_state = 44}, + [1818] = {.lex_state = 0}, [1819] = {.lex_state = 44}, - [1820] = {.lex_state = 44}, - [1821] = {.lex_state = 32}, - [1822] = {.lex_state = 32}, - [1823] = {.lex_state = 52}, - [1824] = {.lex_state = 32}, - [1825] = {.lex_state = 52}, + [1820] = {.lex_state = 0}, + [1821] = {.lex_state = 53}, + [1822] = {.lex_state = 53}, + [1823] = {.lex_state = 0}, + [1824] = {.lex_state = 119}, + [1825] = {.lex_state = 0}, [1826] = {.lex_state = 0}, - [1827] = {.lex_state = 32}, - [1828] = {.lex_state = 44}, - [1829] = {.lex_state = 119}, - [1830] = {.lex_state = 0}, + [1827] = {.lex_state = 0}, + [1828] = {.lex_state = 0}, + [1829] = {.lex_state = 0}, + [1830] = {.lex_state = 119}, [1831] = {.lex_state = 0}, [1832] = {.lex_state = 0}, - [1833] = {.lex_state = 32}, - [1834] = {.lex_state = 32}, - [1835] = {.lex_state = 44}, - [1836] = {.lex_state = 32}, - [1837] = {.lex_state = 44}, - [1838] = {.lex_state = 32}, - [1839] = {.lex_state = 0}, - [1840] = {.lex_state = 32}, - [1841] = {.lex_state = 32}, + [1833] = {.lex_state = 53}, + [1834] = {.lex_state = 44}, + [1835] = {.lex_state = 0}, + [1836] = {.lex_state = 0}, + [1837] = {.lex_state = 0}, + [1838] = {.lex_state = 53}, + [1839] = {.lex_state = 44}, + [1840] = {.lex_state = 0}, + [1841] = {.lex_state = 53}, [1842] = {.lex_state = 0}, - [1843] = {.lex_state = 32}, - [1844] = {.lex_state = 44}, - [1845] = {.lex_state = 52}, - [1846] = {.lex_state = 52}, + [1843] = {.lex_state = 53}, + [1844] = {.lex_state = 0}, + [1845] = {.lex_state = 0}, + [1846] = {.lex_state = 0}, [1847] = {.lex_state = 0}, - [1848] = {.lex_state = 0}, - [1849] = {.lex_state = 52}, + [1848] = {.lex_state = 53}, + [1849] = {.lex_state = 0}, [1850] = {.lex_state = 0}, [1851] = {.lex_state = 0}, - [1852] = {.lex_state = 44}, + [1852] = {.lex_state = 0}, [1853] = {.lex_state = 0}, - [1854] = {.lex_state = 52}, + [1854] = {.lex_state = 44}, [1855] = {.lex_state = 0}, - [1856] = {.lex_state = 32}, - [1857] = {.lex_state = 32}, - [1858] = {.lex_state = 0}, - [1859] = {.lex_state = 0}, - [1860] = {.lex_state = 44}, - [1861] = {.lex_state = 0}, + [1856] = {.lex_state = 0}, + [1857] = {.lex_state = 0}, + [1858] = {.lex_state = 44}, + [1859] = {.lex_state = 44}, + [1860] = {.lex_state = 0}, + [1861] = {.lex_state = 44}, [1862] = {.lex_state = 0}, - [1863] = {.lex_state = 119}, - [1864] = {.lex_state = 0}, - [1865] = {.lex_state = 0}, + [1863] = {.lex_state = 53}, + [1864] = {.lex_state = 53}, + [1865] = {.lex_state = 44}, [1866] = {.lex_state = 0}, - [1867] = {.lex_state = 32}, - [1868] = {.lex_state = 52}, - [1869] = {.lex_state = 0}, - [1870] = {.lex_state = 0}, - [1871] = {.lex_state = 44}, + [1867] = {.lex_state = 44}, + [1868] = {.lex_state = 44}, + [1869] = {.lex_state = 44}, + [1870] = {.lex_state = 44}, + [1871] = {.lex_state = 0}, [1872] = {.lex_state = 0}, [1873] = {.lex_state = 0}, [1874] = {.lex_state = 0}, - [1875] = {.lex_state = 44}, + [1875] = {.lex_state = 34}, [1876] = {.lex_state = 0}, - [1877] = {.lex_state = 0}, - [1878] = {.lex_state = 0}, + [1877] = {.lex_state = 53}, + [1878] = {.lex_state = 53}, [1879] = {.lex_state = 0}, [1880] = {.lex_state = 0}, - [1881] = {.lex_state = 0}, - [1882] = {.lex_state = 44}, - [1883] = {.lex_state = 52}, - [1884] = {.lex_state = 52}, - [1885] = {.lex_state = 44}, - [1886] = {.lex_state = 0}, - [1887] = {.lex_state = 52}, - [1888] = {.lex_state = 52}, + [1881] = {.lex_state = 44}, + [1882] = {.lex_state = 0}, + [1883] = {.lex_state = 44}, + [1884] = {.lex_state = 44}, + [1885] = {.lex_state = 0}, + [1886] = {.lex_state = 53}, + [1887] = {.lex_state = 44}, + [1888] = {.lex_state = 0}, [1889] = {.lex_state = 0}, - [1890] = {.lex_state = 32}, - [1891] = {.lex_state = 0}, - [1892] = {.lex_state = 32}, - [1893] = {.lex_state = 52}, + [1890] = {.lex_state = 0}, + [1891] = {.lex_state = 34}, + [1892] = {.lex_state = 34}, + [1893] = {.lex_state = 44}, [1894] = {.lex_state = 0}, - [1895] = {.lex_state = 0}, - [1896] = {.lex_state = 0}, - [1897] = {.lex_state = 44}, - [1898] = {.lex_state = 0}, + [1895] = {.lex_state = 44}, + [1896] = {.lex_state = 44}, + [1897] = {.lex_state = 53}, + [1898] = {.lex_state = 44}, [1899] = {.lex_state = 0}, - [1900] = {.lex_state = 0}, - [1901] = {.lex_state = 0}, - [1902] = {.lex_state = 44}, + [1900] = {.lex_state = 44}, + [1901] = {.lex_state = 44}, + [1902] = {.lex_state = 53}, [1903] = {.lex_state = 44}, - [1904] = {.lex_state = 0}, - [1905] = {.lex_state = 0}, - [1906] = {.lex_state = 32}, - [1907] = {.lex_state = 0}, - [1908] = {.lex_state = 0}, - [1909] = {.lex_state = 0}, - [1910] = {.lex_state = 0}, - [1911] = {.lex_state = 52}, + [1904] = {.lex_state = 44}, + [1905] = {.lex_state = 44}, + [1906] = {.lex_state = 0}, + [1907] = {.lex_state = 53}, + [1908] = {.lex_state = 53}, + [1909] = {.lex_state = 119}, + [1910] = {.lex_state = 53}, + [1911] = {.lex_state = 0}, [1912] = {.lex_state = 0}, - [1913] = {.lex_state = 44}, - [1914] = {.lex_state = 0}, + [1913] = {.lex_state = 53}, + [1914] = {.lex_state = 53}, [1915] = {.lex_state = 44}, - [1916] = {.lex_state = 44}, - [1917] = {.lex_state = 44}, - [1918] = {.lex_state = 52}, - [1919] = {.lex_state = 52}, + [1916] = {.lex_state = 0}, + [1917] = {.lex_state = 0}, + [1918] = {.lex_state = 53}, + [1919] = {.lex_state = 0}, [1920] = {.lex_state = 0}, - [1921] = {.lex_state = 32}, + [1921] = {.lex_state = 44}, [1922] = {.lex_state = 0}, - [1923] = {.lex_state = 0}, + [1923] = {.lex_state = 34}, [1924] = {.lex_state = 44}, [1925] = {.lex_state = 44}, - [1926] = {.lex_state = 52}, - [1927] = {.lex_state = 52}, - [1928] = {.lex_state = 32}, - [1929] = {.lex_state = 52}, + [1926] = {.lex_state = 44}, + [1927] = {.lex_state = 0}, + [1928] = {.lex_state = 53}, + [1929] = {.lex_state = 0}, [1930] = {.lex_state = 0}, - [1931] = {.lex_state = 0}, - [1932] = {.lex_state = 44}, - [1933] = {.lex_state = 44}, - [1934] = {.lex_state = 44}, - [1935] = {.lex_state = 52}, - [1936] = {.lex_state = 0}, - [1937] = {.lex_state = 44}, - [1938] = {.lex_state = 44}, - [1939] = {.lex_state = 0}, + [1931] = {.lex_state = 44}, + [1932] = {.lex_state = 53}, + [1933] = {.lex_state = 53}, + [1934] = {.lex_state = 0}, + [1935] = {.lex_state = 34}, + [1936] = {.lex_state = 53}, + [1937] = {.lex_state = 119}, + [1938] = {.lex_state = 0}, + [1939] = {.lex_state = 119}, [1940] = {.lex_state = 119}, - [1941] = {.lex_state = 0}, - [1942] = {.lex_state = 52}, - [1943] = {.lex_state = 0}, - [1944] = {.lex_state = 0}, - [1945] = {.lex_state = 44}, - [1946] = {.lex_state = 44}, - [1947] = {.lex_state = 52}, - [1948] = {.lex_state = 0}, - [1949] = {.lex_state = 0}, - [1950] = {.lex_state = 0}, - [1951] = {.lex_state = 0}, - [1952] = {.lex_state = 32}, - [1953] = {.lex_state = 44}, + [1941] = {.lex_state = 44}, + [1942] = {.lex_state = 53}, + [1943] = {.lex_state = 44}, + [1944] = {.lex_state = 44}, + [1945] = {.lex_state = 0}, + [1946] = {.lex_state = 119}, + [1947] = {.lex_state = 119}, + [1948] = {.lex_state = 34}, + [1949] = {.lex_state = 53}, + [1950] = {.lex_state = 119}, + [1951] = {.lex_state = 53}, + [1952] = {.lex_state = 0}, + [1953] = {.lex_state = 0}, [1954] = {.lex_state = 44}, - [1955] = {.lex_state = 44}, + [1955] = {.lex_state = 53}, [1956] = {.lex_state = 0}, - [1957] = {.lex_state = 52}, - [1958] = {.lex_state = 52}, - [1959] = {.lex_state = 52}, - [1960] = {.lex_state = 52}, + [1957] = {.lex_state = 0}, + [1958] = {.lex_state = 119}, + [1959] = {.lex_state = 119}, + [1960] = {.lex_state = 53}, [1961] = {.lex_state = 0}, - [1962] = {.lex_state = 0}, - [1963] = {.lex_state = 52}, - [1964] = {.lex_state = 0}, - [1965] = {.lex_state = 52}, - [1966] = {.lex_state = 44}, - [1967] = {.lex_state = 44}, + [1962] = {.lex_state = 53}, + [1963] = {.lex_state = 0}, + [1964] = {.lex_state = 53}, + [1965] = {.lex_state = 0}, + [1966] = {.lex_state = 0}, + [1967] = {.lex_state = 34}, [1968] = {.lex_state = 0}, - [1969] = {.lex_state = 119}, - [1970] = {.lex_state = 52}, - [1971] = {.lex_state = 44}, - [1972] = {.lex_state = 44}, - [1973] = {.lex_state = 44}, - [1974] = {.lex_state = 52}, - [1975] = {.lex_state = 44}, - [1976] = {.lex_state = 0}, - [1977] = {.lex_state = 44}, - [1978] = {.lex_state = 52}, - [1979] = {.lex_state = 0}, - [1980] = {.lex_state = 0}, - [1981] = {.lex_state = 0}, - [1982] = {.lex_state = 52}, - [1983] = {.lex_state = 52}, - [1984] = {.lex_state = 52}, - [1985] = {.lex_state = 0}, - [1986] = {.lex_state = 0}, - [1987] = {.lex_state = 0}, - [1988] = {.lex_state = 0}, - [1989] = {.lex_state = 119}, - [1990] = {.lex_state = 119}, - [1991] = {.lex_state = 0}, - [1992] = {.lex_state = 32}, - [1993] = {.lex_state = 0}, - [1994] = {.lex_state = 44}, - [1995] = {.lex_state = 0}, - [1996] = {.lex_state = 44}, - [1997] = {.lex_state = 32}, - [1998] = {.lex_state = 0}, - [1999] = {.lex_state = 52}, - [2000] = {.lex_state = 0}, - [2001] = {.lex_state = 44}, - [2002] = {.lex_state = 44}, - [2003] = {.lex_state = 0}, - [2004] = {.lex_state = 119}, - [2005] = {.lex_state = 119}, - [2006] = {.lex_state = 0}, - [2007] = {.lex_state = 119}, - [2008] = {.lex_state = 52}, - [2009] = {.lex_state = 119}, - [2010] = {.lex_state = 0}, - [2011] = {.lex_state = 0}, - [2012] = {.lex_state = 52}, - [2013] = {.lex_state = 119}, - [2014] = {.lex_state = 52}, - [2015] = {.lex_state = 0}, - [2016] = {.lex_state = 44}, - [2017] = {.lex_state = 0}, - [2018] = {.lex_state = 52}, - [2019] = {.lex_state = 32}, - [2020] = {.lex_state = 52}, - [2021] = {.lex_state = 44}, - [2022] = {.lex_state = 119}, - [2023] = {.lex_state = 119}, - [2024] = {.lex_state = 0}, - [2025] = {.lex_state = 119}, - [2026] = {.lex_state = 119}, - [2027] = {.lex_state = 0}, - [2028] = {.lex_state = 119}, - [2029] = {.lex_state = 52}, - [2030] = {.lex_state = 52}, + [1969] = {.lex_state = 0}, + [1970] = {.lex_state = 53}, + [1971] = {.lex_state = 119}, + [1972] = {.lex_state = 119}, + [1973] = {.lex_state = 0}, + [1974] = {.lex_state = 119}, + [1975] = {.lex_state = 119}, + [1976] = {.lex_state = 53}, + [1977] = {.lex_state = 53}, + [1978] = {.lex_state = 119}, + [1979] = {.lex_state = 34}, + [1980] = {.lex_state = 53}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -11612,7 +11534,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [1] = { - [sym_translation_unit] = STATE(2000), + [sym_translation_unit] = STATE(1938), + [sym__top_level_item] = STATE(43), [sym_preproc_include] = STATE(43), [sym_preproc_def] = STATE(43), [sym_preproc_function_def] = STATE(43), @@ -11620,26 +11543,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if] = STATE(43), [sym_preproc_ifdef] = STATE(43), [sym_function_definition] = STATE(43), - [sym__old_style_function_definition] = STATE(429), + [sym__old_style_function_definition] = STATE(359), [sym_declaration] = STATE(43), [sym_type_definition] = STATE(43), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1147), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1101), [sym_linkage_specification] = STATE(43), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(455), - [sym_ms_declspec_modifier] = STATE(752), - [sym_ms_call_modifier] = STATE(745), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(697), [sym_compound_statement] = STATE(43), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(836), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym_attributed_statement] = STATE(43), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(785), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(380), + [sym__top_level_statement] = STATE(43), [sym_labeled_statement] = STATE(43), [sym__top_level_expression_statement] = STATE(43), [sym_if_statement] = STATE(43), @@ -11652,36 +11576,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(43), [sym_continue_statement] = STATE(43), [sym_goto_statement] = STATE(43), - [sym__expression] = STATE(1130), - [sym__expression_not_binary] = STATE(1128), - [sym__string] = STATE(1128), - [sym_conditional_expression] = STATE(1128), - [sym_assignment_expression] = STATE(1128), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(1128), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(1128), - [sym_cast_expression] = STATE(1128), - [sym_sizeof_expression] = STATE(1128), - [sym_alignof_expression] = STATE(1128), - [sym_offsetof_expression] = STATE(1128), - [sym_generic_expression] = STATE(1128), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(1128), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(1128), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(1128), - [sym_concatenated_string] = STATE(1128), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(1128), + [sym_expression] = STATE(1078), + [sym__string] = STATE(1076), + [sym_conditional_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_pointer_expression] = STATE(898), + [sym_unary_expression] = STATE(1076), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(1076), + [sym_cast_expression] = STATE(1076), + [sym_sizeof_expression] = STATE(1076), + [sym_alignof_expression] = STATE(1076), + [sym_offsetof_expression] = STATE(1076), + [sym_generic_expression] = STATE(1076), + [sym_subscript_expression] = STATE(898), + [sym_call_expression] = STATE(898), + [sym_gnu_asm_expression] = STATE(1076), + [sym_field_expression] = STATE(898), + [sym_compound_literal_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(898), + [sym_char_literal] = STATE(1076), + [sym_concatenated_string] = STATE(1076), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(1076), [sym__empty_declaration] = STATE(43), - [sym_macro_type_specifier] = STATE(822), + [sym_macro_type_specifier] = STATE(771), [aux_sym_translation_unit_repeat1] = STATE(43), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_attributed_declarator_repeat1] = STATE(403), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(347), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [aux_sym_preproc_include_token1] = ACTIONS(9), @@ -11778,81 +11701,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [2] = { - [sym_preproc_include] = STATE(7), - [sym_preproc_def] = STATE(7), - [sym_preproc_function_def] = STATE(7), - [sym_preproc_call] = STATE(7), - [sym_preproc_if] = STATE(7), - [sym_preproc_ifdef] = STATE(7), - [sym_preproc_else] = STATE(1932), - [sym_preproc_elif] = STATE(1932), - [sym_preproc_elifdef] = STATE(1932), - [sym_function_definition] = STATE(7), - [sym__old_style_function_definition] = STATE(135), - [sym_declaration] = STATE(7), - [sym_type_definition] = STATE(7), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1151), - [sym_linkage_specification] = STATE(7), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(455), - [sym_ms_declspec_modifier] = STATE(752), - [sym_ms_call_modifier] = STATE(743), - [sym_compound_statement] = STATE(7), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(852), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym_attributed_statement] = STATE(7), - [sym_labeled_statement] = STATE(7), - [sym_expression_statement] = STATE(7), - [sym_if_statement] = STATE(7), - [sym_switch_statement] = STATE(7), - [sym_case_statement] = STATE(7), - [sym_while_statement] = STATE(7), - [sym_do_statement] = STATE(7), - [sym_for_statement] = STATE(7), - [sym_return_statement] = STATE(7), - [sym_break_statement] = STATE(7), - [sym_continue_statement] = STATE(7), - [sym_goto_statement] = STATE(7), - [sym_seh_try_statement] = STATE(7), - [sym_seh_leave_statement] = STATE(7), - [sym__expression] = STATE(1097), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1839), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym__empty_declaration] = STATE(7), - [sym_macro_type_specifier] = STATE(822), - [aux_sym_preproc_if_repeat1] = STATE(7), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_attributed_declarator_repeat1] = STATE(405), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym__block_item] = STATE(22), + [sym_preproc_include] = STATE(22), + [sym_preproc_def] = STATE(22), + [sym_preproc_function_def] = STATE(22), + [sym_preproc_call] = STATE(22), + [sym_preproc_if] = STATE(22), + [sym_preproc_ifdef] = STATE(22), + [sym_preproc_else] = STATE(1834), + [sym_preproc_elif] = STATE(1834), + [sym_preproc_elifdef] = STATE(1834), + [sym_function_definition] = STATE(22), + [sym__old_style_function_definition] = STATE(122), + [sym_declaration] = STATE(22), + [sym_type_definition] = STATE(22), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1098), + [sym_linkage_specification] = STATE(22), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(687), + [sym_compound_statement] = STATE(112), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(789), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(140), + [sym_statement] = STATE(22), + [sym_labeled_statement] = STATE(112), + [sym_expression_statement] = STATE(112), + [sym_if_statement] = STATE(112), + [sym_switch_statement] = STATE(112), + [sym_case_statement] = STATE(112), + [sym_while_statement] = STATE(112), + [sym_do_statement] = STATE(112), + [sym_for_statement] = STATE(112), + [sym_return_statement] = STATE(112), + [sym_break_statement] = STATE(112), + [sym_continue_statement] = STATE(112), + [sym_goto_statement] = STATE(112), + [sym_seh_try_statement] = STATE(112), + [sym_seh_leave_statement] = STATE(112), + [sym_expression] = STATE(1029), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1759), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym__empty_declaration] = STATE(22), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_repeat1] = STATE(22), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(349), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), [sym_identifier] = ACTIONS(103), [aux_sym_preproc_include_token1] = ACTIONS(105), [aux_sym_preproc_def_token1] = ACTIONS(107), @@ -11956,81 +11880,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [3] = { - [sym_preproc_include] = STATE(6), - [sym_preproc_def] = STATE(6), - [sym_preproc_function_def] = STATE(6), - [sym_preproc_call] = STATE(6), - [sym_preproc_if] = STATE(6), - [sym_preproc_ifdef] = STATE(6), - [sym_preproc_else] = STATE(1835), - [sym_preproc_elif] = STATE(1835), - [sym_preproc_elifdef] = STATE(1835), - [sym_function_definition] = STATE(6), - [sym__old_style_function_definition] = STATE(135), - [sym_declaration] = STATE(6), - [sym_type_definition] = STATE(6), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1151), - [sym_linkage_specification] = STATE(6), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(455), - [sym_ms_declspec_modifier] = STATE(752), - [sym_ms_call_modifier] = STATE(743), - [sym_compound_statement] = STATE(6), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(852), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym_attributed_statement] = STATE(6), - [sym_labeled_statement] = STATE(6), - [sym_expression_statement] = STATE(6), - [sym_if_statement] = STATE(6), - [sym_switch_statement] = STATE(6), - [sym_case_statement] = STATE(6), - [sym_while_statement] = STATE(6), - [sym_do_statement] = STATE(6), - [sym_for_statement] = STATE(6), - [sym_return_statement] = STATE(6), - [sym_break_statement] = STATE(6), - [sym_continue_statement] = STATE(6), - [sym_goto_statement] = STATE(6), - [sym_seh_try_statement] = STATE(6), - [sym_seh_leave_statement] = STATE(6), - [sym__expression] = STATE(1097), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1839), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym__empty_declaration] = STATE(6), - [sym_macro_type_specifier] = STATE(822), - [aux_sym_preproc_if_repeat1] = STATE(6), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_attributed_declarator_repeat1] = STATE(405), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym__block_item] = STATE(21), + [sym_preproc_include] = STATE(21), + [sym_preproc_def] = STATE(21), + [sym_preproc_function_def] = STATE(21), + [sym_preproc_call] = STATE(21), + [sym_preproc_if] = STATE(21), + [sym_preproc_ifdef] = STATE(21), + [sym_preproc_else] = STATE(1738), + [sym_preproc_elif] = STATE(1738), + [sym_preproc_elifdef] = STATE(1738), + [sym_function_definition] = STATE(21), + [sym__old_style_function_definition] = STATE(122), + [sym_declaration] = STATE(21), + [sym_type_definition] = STATE(21), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1098), + [sym_linkage_specification] = STATE(21), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(687), + [sym_compound_statement] = STATE(112), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(789), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(140), + [sym_statement] = STATE(21), + [sym_labeled_statement] = STATE(112), + [sym_expression_statement] = STATE(112), + [sym_if_statement] = STATE(112), + [sym_switch_statement] = STATE(112), + [sym_case_statement] = STATE(112), + [sym_while_statement] = STATE(112), + [sym_do_statement] = STATE(112), + [sym_for_statement] = STATE(112), + [sym_return_statement] = STATE(112), + [sym_break_statement] = STATE(112), + [sym_continue_statement] = STATE(112), + [sym_goto_statement] = STATE(112), + [sym_seh_try_statement] = STATE(112), + [sym_seh_leave_statement] = STATE(112), + [sym_expression] = STATE(1029), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1759), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym__empty_declaration] = STATE(21), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_repeat1] = STATE(21), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(349), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), [sym_identifier] = ACTIONS(103), [aux_sym_preproc_include_token1] = ACTIONS(105), [aux_sym_preproc_def_token1] = ACTIONS(107), @@ -12134,81 +12059,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [4] = { - [sym_preproc_include] = STATE(22), - [sym_preproc_def] = STATE(22), - [sym_preproc_function_def] = STATE(22), - [sym_preproc_call] = STATE(22), - [sym_preproc_if] = STATE(22), - [sym_preproc_ifdef] = STATE(22), - [sym_preproc_else] = STATE(1844), - [sym_preproc_elif] = STATE(1844), - [sym_preproc_elifdef] = STATE(1844), - [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(135), - [sym_declaration] = STATE(22), - [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1151), - [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(455), - [sym_ms_declspec_modifier] = STATE(752), - [sym_ms_call_modifier] = STATE(743), - [sym_compound_statement] = STATE(22), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(852), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym_attributed_statement] = STATE(22), - [sym_labeled_statement] = STATE(22), - [sym_expression_statement] = STATE(22), - [sym_if_statement] = STATE(22), - [sym_switch_statement] = STATE(22), - [sym_case_statement] = STATE(22), - [sym_while_statement] = STATE(22), - [sym_do_statement] = STATE(22), - [sym_for_statement] = STATE(22), - [sym_return_statement] = STATE(22), - [sym_break_statement] = STATE(22), - [sym_continue_statement] = STATE(22), - [sym_goto_statement] = STATE(22), - [sym_seh_try_statement] = STATE(22), - [sym_seh_leave_statement] = STATE(22), - [sym__expression] = STATE(1097), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1839), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(822), - [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_attributed_declarator_repeat1] = STATE(405), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym__block_item] = STATE(15), + [sym_preproc_include] = STATE(15), + [sym_preproc_def] = STATE(15), + [sym_preproc_function_def] = STATE(15), + [sym_preproc_call] = STATE(15), + [sym_preproc_if] = STATE(15), + [sym_preproc_ifdef] = STATE(15), + [sym_preproc_else] = STATE(1744), + [sym_preproc_elif] = STATE(1744), + [sym_preproc_elifdef] = STATE(1744), + [sym_function_definition] = STATE(15), + [sym__old_style_function_definition] = STATE(122), + [sym_declaration] = STATE(15), + [sym_type_definition] = STATE(15), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1098), + [sym_linkage_specification] = STATE(15), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(687), + [sym_compound_statement] = STATE(112), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(789), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(140), + [sym_statement] = STATE(15), + [sym_labeled_statement] = STATE(112), + [sym_expression_statement] = STATE(112), + [sym_if_statement] = STATE(112), + [sym_switch_statement] = STATE(112), + [sym_case_statement] = STATE(112), + [sym_while_statement] = STATE(112), + [sym_do_statement] = STATE(112), + [sym_for_statement] = STATE(112), + [sym_return_statement] = STATE(112), + [sym_break_statement] = STATE(112), + [sym_continue_statement] = STATE(112), + [sym_goto_statement] = STATE(112), + [sym_seh_try_statement] = STATE(112), + [sym_seh_leave_statement] = STATE(112), + [sym_expression] = STATE(1029), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1759), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym__empty_declaration] = STATE(15), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_repeat1] = STATE(15), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(349), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), [sym_identifier] = ACTIONS(103), [aux_sym_preproc_include_token1] = ACTIONS(105), [aux_sym_preproc_def_token1] = ACTIONS(107), @@ -12312,81 +12238,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [5] = { + [sym__block_item] = STATE(22), [sym_preproc_include] = STATE(22), [sym_preproc_def] = STATE(22), [sym_preproc_function_def] = STATE(22), [sym_preproc_call] = STATE(22), [sym_preproc_if] = STATE(22), [sym_preproc_ifdef] = STATE(22), - [sym_preproc_else] = STATE(1996), - [sym_preproc_elif] = STATE(1996), - [sym_preproc_elifdef] = STATE(1996), + [sym_preproc_else] = STATE(1839), + [sym_preproc_elif] = STATE(1839), + [sym_preproc_elifdef] = STATE(1839), [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(135), + [sym__old_style_function_definition] = STATE(122), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1151), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1098), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(455), - [sym_ms_declspec_modifier] = STATE(752), - [sym_ms_call_modifier] = STATE(743), - [sym_compound_statement] = STATE(22), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(852), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym_attributed_statement] = STATE(22), - [sym_labeled_statement] = STATE(22), - [sym_expression_statement] = STATE(22), - [sym_if_statement] = STATE(22), - [sym_switch_statement] = STATE(22), - [sym_case_statement] = STATE(22), - [sym_while_statement] = STATE(22), - [sym_do_statement] = STATE(22), - [sym_for_statement] = STATE(22), - [sym_return_statement] = STATE(22), - [sym_break_statement] = STATE(22), - [sym_continue_statement] = STATE(22), - [sym_goto_statement] = STATE(22), - [sym_seh_try_statement] = STATE(22), - [sym_seh_leave_statement] = STATE(22), - [sym__expression] = STATE(1097), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1839), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(687), + [sym_compound_statement] = STATE(112), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(789), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(140), + [sym_statement] = STATE(22), + [sym_labeled_statement] = STATE(112), + [sym_expression_statement] = STATE(112), + [sym_if_statement] = STATE(112), + [sym_switch_statement] = STATE(112), + [sym_case_statement] = STATE(112), + [sym_while_statement] = STATE(112), + [sym_do_statement] = STATE(112), + [sym_for_statement] = STATE(112), + [sym_return_statement] = STATE(112), + [sym_break_statement] = STATE(112), + [sym_continue_statement] = STATE(112), + [sym_goto_statement] = STATE(112), + [sym_seh_try_statement] = STATE(112), + [sym_seh_leave_statement] = STATE(112), + [sym_expression] = STATE(1029), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1759), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(822), + [sym_macro_type_specifier] = STATE(771), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_attributed_declarator_repeat1] = STATE(405), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(349), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), [sym_identifier] = ACTIONS(103), [aux_sym_preproc_include_token1] = ACTIONS(105), [aux_sym_preproc_def_token1] = ACTIONS(107), @@ -12490,81 +12417,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [6] = { - [sym_preproc_include] = STATE(22), - [sym_preproc_def] = STATE(22), - [sym_preproc_function_def] = STATE(22), - [sym_preproc_call] = STATE(22), - [sym_preproc_if] = STATE(22), - [sym_preproc_ifdef] = STATE(22), - [sym_preproc_else] = STATE(1796), - [sym_preproc_elif] = STATE(1796), - [sym_preproc_elifdef] = STATE(1796), - [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(135), - [sym_declaration] = STATE(22), - [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1151), - [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(455), - [sym_ms_declspec_modifier] = STATE(752), - [sym_ms_call_modifier] = STATE(743), - [sym_compound_statement] = STATE(22), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(852), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym_attributed_statement] = STATE(22), - [sym_labeled_statement] = STATE(22), - [sym_expression_statement] = STATE(22), - [sym_if_statement] = STATE(22), - [sym_switch_statement] = STATE(22), - [sym_case_statement] = STATE(22), - [sym_while_statement] = STATE(22), - [sym_do_statement] = STATE(22), - [sym_for_statement] = STATE(22), - [sym_return_statement] = STATE(22), - [sym_break_statement] = STATE(22), - [sym_continue_statement] = STATE(22), - [sym_goto_statement] = STATE(22), - [sym_seh_try_statement] = STATE(22), - [sym_seh_leave_statement] = STATE(22), - [sym__expression] = STATE(1097), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1839), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(822), - [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_attributed_declarator_repeat1] = STATE(405), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym__block_item] = STATE(9), + [sym_preproc_include] = STATE(9), + [sym_preproc_def] = STATE(9), + [sym_preproc_function_def] = STATE(9), + [sym_preproc_call] = STATE(9), + [sym_preproc_if] = STATE(9), + [sym_preproc_ifdef] = STATE(9), + [sym_preproc_else] = STATE(1819), + [sym_preproc_elif] = STATE(1819), + [sym_preproc_elifdef] = STATE(1819), + [sym_function_definition] = STATE(9), + [sym__old_style_function_definition] = STATE(122), + [sym_declaration] = STATE(9), + [sym_type_definition] = STATE(9), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1098), + [sym_linkage_specification] = STATE(9), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(687), + [sym_compound_statement] = STATE(112), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(789), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(140), + [sym_statement] = STATE(9), + [sym_labeled_statement] = STATE(112), + [sym_expression_statement] = STATE(112), + [sym_if_statement] = STATE(112), + [sym_switch_statement] = STATE(112), + [sym_case_statement] = STATE(112), + [sym_while_statement] = STATE(112), + [sym_do_statement] = STATE(112), + [sym_for_statement] = STATE(112), + [sym_return_statement] = STATE(112), + [sym_break_statement] = STATE(112), + [sym_continue_statement] = STATE(112), + [sym_goto_statement] = STATE(112), + [sym_seh_try_statement] = STATE(112), + [sym_seh_leave_statement] = STATE(112), + [sym_expression] = STATE(1029), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1759), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym__empty_declaration] = STATE(9), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_repeat1] = STATE(9), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(349), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), [sym_identifier] = ACTIONS(103), [aux_sym_preproc_include_token1] = ACTIONS(105), [aux_sym_preproc_def_token1] = ACTIONS(107), @@ -12668,81 +12596,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [7] = { - [sym_preproc_include] = STATE(22), - [sym_preproc_def] = STATE(22), - [sym_preproc_function_def] = STATE(22), - [sym_preproc_call] = STATE(22), - [sym_preproc_if] = STATE(22), - [sym_preproc_ifdef] = STATE(22), - [sym_preproc_else] = STATE(2001), - [sym_preproc_elif] = STATE(2001), - [sym_preproc_elifdef] = STATE(2001), - [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(135), - [sym_declaration] = STATE(22), - [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1151), - [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(455), - [sym_ms_declspec_modifier] = STATE(752), - [sym_ms_call_modifier] = STATE(743), - [sym_compound_statement] = STATE(22), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(852), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym_attributed_statement] = STATE(22), - [sym_labeled_statement] = STATE(22), - [sym_expression_statement] = STATE(22), - [sym_if_statement] = STATE(22), - [sym_switch_statement] = STATE(22), - [sym_case_statement] = STATE(22), - [sym_while_statement] = STATE(22), - [sym_do_statement] = STATE(22), - [sym_for_statement] = STATE(22), - [sym_return_statement] = STATE(22), - [sym_break_statement] = STATE(22), - [sym_continue_statement] = STATE(22), - [sym_goto_statement] = STATE(22), - [sym_seh_try_statement] = STATE(22), - [sym_seh_leave_statement] = STATE(22), - [sym__expression] = STATE(1097), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1839), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(822), - [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_attributed_declarator_repeat1] = STATE(405), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym__block_item] = STATE(17), + [sym_preproc_include] = STATE(17), + [sym_preproc_def] = STATE(17), + [sym_preproc_function_def] = STATE(17), + [sym_preproc_call] = STATE(17), + [sym_preproc_if] = STATE(17), + [sym_preproc_ifdef] = STATE(17), + [sym_preproc_else] = STATE(1782), + [sym_preproc_elif] = STATE(1782), + [sym_preproc_elifdef] = STATE(1782), + [sym_function_definition] = STATE(17), + [sym__old_style_function_definition] = STATE(122), + [sym_declaration] = STATE(17), + [sym_type_definition] = STATE(17), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1098), + [sym_linkage_specification] = STATE(17), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(687), + [sym_compound_statement] = STATE(112), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(789), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(140), + [sym_statement] = STATE(17), + [sym_labeled_statement] = STATE(112), + [sym_expression_statement] = STATE(112), + [sym_if_statement] = STATE(112), + [sym_switch_statement] = STATE(112), + [sym_case_statement] = STATE(112), + [sym_while_statement] = STATE(112), + [sym_do_statement] = STATE(112), + [sym_for_statement] = STATE(112), + [sym_return_statement] = STATE(112), + [sym_break_statement] = STATE(112), + [sym_continue_statement] = STATE(112), + [sym_goto_statement] = STATE(112), + [sym_seh_try_statement] = STATE(112), + [sym_seh_leave_statement] = STATE(112), + [sym_expression] = STATE(1029), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1759), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym__empty_declaration] = STATE(17), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_repeat1] = STATE(17), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(349), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), [sym_identifier] = ACTIONS(103), [aux_sym_preproc_include_token1] = ACTIONS(105), [aux_sym_preproc_def_token1] = ACTIONS(107), @@ -12846,81 +12775,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [8] = { - [sym_preproc_include] = STATE(14), - [sym_preproc_def] = STATE(14), - [sym_preproc_function_def] = STATE(14), - [sym_preproc_call] = STATE(14), - [sym_preproc_if] = STATE(14), - [sym_preproc_ifdef] = STATE(14), - [sym_preproc_else] = STATE(1852), - [sym_preproc_elif] = STATE(1852), - [sym_preproc_elifdef] = STATE(1852), - [sym_function_definition] = STATE(14), - [sym__old_style_function_definition] = STATE(135), - [sym_declaration] = STATE(14), - [sym_type_definition] = STATE(14), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1151), - [sym_linkage_specification] = STATE(14), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(455), - [sym_ms_declspec_modifier] = STATE(752), - [sym_ms_call_modifier] = STATE(743), - [sym_compound_statement] = STATE(14), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(852), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym_attributed_statement] = STATE(14), - [sym_labeled_statement] = STATE(14), - [sym_expression_statement] = STATE(14), - [sym_if_statement] = STATE(14), - [sym_switch_statement] = STATE(14), - [sym_case_statement] = STATE(14), - [sym_while_statement] = STATE(14), - [sym_do_statement] = STATE(14), - [sym_for_statement] = STATE(14), - [sym_return_statement] = STATE(14), - [sym_break_statement] = STATE(14), - [sym_continue_statement] = STATE(14), - [sym_goto_statement] = STATE(14), - [sym_seh_try_statement] = STATE(14), - [sym_seh_leave_statement] = STATE(14), - [sym__expression] = STATE(1097), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1839), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym__empty_declaration] = STATE(14), - [sym_macro_type_specifier] = STATE(822), - [aux_sym_preproc_if_repeat1] = STATE(14), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_attributed_declarator_repeat1] = STATE(405), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym__block_item] = STATE(22), + [sym_preproc_include] = STATE(22), + [sym_preproc_def] = STATE(22), + [sym_preproc_function_def] = STATE(22), + [sym_preproc_call] = STATE(22), + [sym_preproc_if] = STATE(22), + [sym_preproc_ifdef] = STATE(22), + [sym_preproc_else] = STATE(1915), + [sym_preproc_elif] = STATE(1915), + [sym_preproc_elifdef] = STATE(1915), + [sym_function_definition] = STATE(22), + [sym__old_style_function_definition] = STATE(122), + [sym_declaration] = STATE(22), + [sym_type_definition] = STATE(22), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1098), + [sym_linkage_specification] = STATE(22), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(687), + [sym_compound_statement] = STATE(112), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(789), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(140), + [sym_statement] = STATE(22), + [sym_labeled_statement] = STATE(112), + [sym_expression_statement] = STATE(112), + [sym_if_statement] = STATE(112), + [sym_switch_statement] = STATE(112), + [sym_case_statement] = STATE(112), + [sym_while_statement] = STATE(112), + [sym_do_statement] = STATE(112), + [sym_for_statement] = STATE(112), + [sym_return_statement] = STATE(112), + [sym_break_statement] = STATE(112), + [sym_continue_statement] = STATE(112), + [sym_goto_statement] = STATE(112), + [sym_seh_try_statement] = STATE(112), + [sym_seh_leave_statement] = STATE(112), + [sym_expression] = STATE(1029), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1759), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym__empty_declaration] = STATE(22), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_repeat1] = STATE(22), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(349), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), [sym_identifier] = ACTIONS(103), [aux_sym_preproc_include_token1] = ACTIONS(105), [aux_sym_preproc_def_token1] = ACTIONS(107), @@ -13024,81 +12954,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [9] = { + [sym__block_item] = STATE(22), [sym_preproc_include] = STATE(22), [sym_preproc_def] = STATE(22), [sym_preproc_function_def] = STATE(22), [sym_preproc_call] = STATE(22), [sym_preproc_if] = STATE(22), [sym_preproc_ifdef] = STATE(22), - [sym_preproc_else] = STATE(1946), - [sym_preproc_elif] = STATE(1946), - [sym_preproc_elifdef] = STATE(1946), + [sym_preproc_else] = STATE(1739), + [sym_preproc_elif] = STATE(1739), + [sym_preproc_elifdef] = STATE(1739), [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(135), + [sym__old_style_function_definition] = STATE(122), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1151), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1098), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(455), - [sym_ms_declspec_modifier] = STATE(752), - [sym_ms_call_modifier] = STATE(743), - [sym_compound_statement] = STATE(22), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(852), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym_attributed_statement] = STATE(22), - [sym_labeled_statement] = STATE(22), - [sym_expression_statement] = STATE(22), - [sym_if_statement] = STATE(22), - [sym_switch_statement] = STATE(22), - [sym_case_statement] = STATE(22), - [sym_while_statement] = STATE(22), - [sym_do_statement] = STATE(22), - [sym_for_statement] = STATE(22), - [sym_return_statement] = STATE(22), - [sym_break_statement] = STATE(22), - [sym_continue_statement] = STATE(22), - [sym_goto_statement] = STATE(22), - [sym_seh_try_statement] = STATE(22), - [sym_seh_leave_statement] = STATE(22), - [sym__expression] = STATE(1097), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1839), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(687), + [sym_compound_statement] = STATE(112), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(789), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(140), + [sym_statement] = STATE(22), + [sym_labeled_statement] = STATE(112), + [sym_expression_statement] = STATE(112), + [sym_if_statement] = STATE(112), + [sym_switch_statement] = STATE(112), + [sym_case_statement] = STATE(112), + [sym_while_statement] = STATE(112), + [sym_do_statement] = STATE(112), + [sym_for_statement] = STATE(112), + [sym_return_statement] = STATE(112), + [sym_break_statement] = STATE(112), + [sym_continue_statement] = STATE(112), + [sym_goto_statement] = STATE(112), + [sym_seh_try_statement] = STATE(112), + [sym_seh_leave_statement] = STATE(112), + [sym_expression] = STATE(1029), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1759), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(822), + [sym_macro_type_specifier] = STATE(771), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_attributed_declarator_repeat1] = STATE(405), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(349), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), [sym_identifier] = ACTIONS(103), [aux_sym_preproc_include_token1] = ACTIONS(105), [aux_sym_preproc_def_token1] = ACTIONS(107), @@ -13202,81 +13133,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [10] = { - [sym_preproc_include] = STATE(16), - [sym_preproc_def] = STATE(16), - [sym_preproc_function_def] = STATE(16), - [sym_preproc_call] = STATE(16), - [sym_preproc_if] = STATE(16), - [sym_preproc_ifdef] = STATE(16), - [sym_preproc_else] = STATE(1903), - [sym_preproc_elif] = STATE(1903), - [sym_preproc_elifdef] = STATE(1903), - [sym_function_definition] = STATE(16), - [sym__old_style_function_definition] = STATE(135), - [sym_declaration] = STATE(16), - [sym_type_definition] = STATE(16), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1151), - [sym_linkage_specification] = STATE(16), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(455), - [sym_ms_declspec_modifier] = STATE(752), - [sym_ms_call_modifier] = STATE(743), - [sym_compound_statement] = STATE(16), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(852), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym_attributed_statement] = STATE(16), - [sym_labeled_statement] = STATE(16), - [sym_expression_statement] = STATE(16), - [sym_if_statement] = STATE(16), - [sym_switch_statement] = STATE(16), - [sym_case_statement] = STATE(16), - [sym_while_statement] = STATE(16), - [sym_do_statement] = STATE(16), - [sym_for_statement] = STATE(16), - [sym_return_statement] = STATE(16), - [sym_break_statement] = STATE(16), - [sym_continue_statement] = STATE(16), - [sym_goto_statement] = STATE(16), - [sym_seh_try_statement] = STATE(16), - [sym_seh_leave_statement] = STATE(16), - [sym__expression] = STATE(1097), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1839), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym__empty_declaration] = STATE(16), - [sym_macro_type_specifier] = STATE(822), - [aux_sym_preproc_if_repeat1] = STATE(16), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_attributed_declarator_repeat1] = STATE(405), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym__block_item] = STATE(11), + [sym_preproc_include] = STATE(11), + [sym_preproc_def] = STATE(11), + [sym_preproc_function_def] = STATE(11), + [sym_preproc_call] = STATE(11), + [sym_preproc_if] = STATE(11), + [sym_preproc_ifdef] = STATE(11), + [sym_preproc_else] = STATE(1893), + [sym_preproc_elif] = STATE(1893), + [sym_preproc_elifdef] = STATE(1893), + [sym_function_definition] = STATE(11), + [sym__old_style_function_definition] = STATE(122), + [sym_declaration] = STATE(11), + [sym_type_definition] = STATE(11), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1098), + [sym_linkage_specification] = STATE(11), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(687), + [sym_compound_statement] = STATE(112), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(789), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(140), + [sym_statement] = STATE(11), + [sym_labeled_statement] = STATE(112), + [sym_expression_statement] = STATE(112), + [sym_if_statement] = STATE(112), + [sym_switch_statement] = STATE(112), + [sym_case_statement] = STATE(112), + [sym_while_statement] = STATE(112), + [sym_do_statement] = STATE(112), + [sym_for_statement] = STATE(112), + [sym_return_statement] = STATE(112), + [sym_break_statement] = STATE(112), + [sym_continue_statement] = STATE(112), + [sym_goto_statement] = STATE(112), + [sym_seh_try_statement] = STATE(112), + [sym_seh_leave_statement] = STATE(112), + [sym_expression] = STATE(1029), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1759), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym__empty_declaration] = STATE(11), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_repeat1] = STATE(11), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(349), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), [sym_identifier] = ACTIONS(103), [aux_sym_preproc_include_token1] = ACTIONS(105), [aux_sym_preproc_def_token1] = ACTIONS(107), @@ -13380,81 +13312,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [11] = { - [sym_preproc_include] = STATE(4), - [sym_preproc_def] = STATE(4), - [sym_preproc_function_def] = STATE(4), - [sym_preproc_call] = STATE(4), - [sym_preproc_if] = STATE(4), - [sym_preproc_ifdef] = STATE(4), - [sym_preproc_else] = STATE(1784), - [sym_preproc_elif] = STATE(1784), - [sym_preproc_elifdef] = STATE(1784), - [sym_function_definition] = STATE(4), - [sym__old_style_function_definition] = STATE(135), - [sym_declaration] = STATE(4), - [sym_type_definition] = STATE(4), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1151), - [sym_linkage_specification] = STATE(4), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(455), - [sym_ms_declspec_modifier] = STATE(752), - [sym_ms_call_modifier] = STATE(743), - [sym_compound_statement] = STATE(4), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(852), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym_attributed_statement] = STATE(4), - [sym_labeled_statement] = STATE(4), - [sym_expression_statement] = STATE(4), - [sym_if_statement] = STATE(4), - [sym_switch_statement] = STATE(4), - [sym_case_statement] = STATE(4), - [sym_while_statement] = STATE(4), - [sym_do_statement] = STATE(4), - [sym_for_statement] = STATE(4), - [sym_return_statement] = STATE(4), - [sym_break_statement] = STATE(4), - [sym_continue_statement] = STATE(4), - [sym_goto_statement] = STATE(4), - [sym_seh_try_statement] = STATE(4), - [sym_seh_leave_statement] = STATE(4), - [sym__expression] = STATE(1097), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1839), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym__empty_declaration] = STATE(4), - [sym_macro_type_specifier] = STATE(822), - [aux_sym_preproc_if_repeat1] = STATE(4), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_attributed_declarator_repeat1] = STATE(405), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym__block_item] = STATE(22), + [sym_preproc_include] = STATE(22), + [sym_preproc_def] = STATE(22), + [sym_preproc_function_def] = STATE(22), + [sym_preproc_call] = STATE(22), + [sym_preproc_if] = STATE(22), + [sym_preproc_ifdef] = STATE(22), + [sym_preproc_else] = STATE(1944), + [sym_preproc_elif] = STATE(1944), + [sym_preproc_elifdef] = STATE(1944), + [sym_function_definition] = STATE(22), + [sym__old_style_function_definition] = STATE(122), + [sym_declaration] = STATE(22), + [sym_type_definition] = STATE(22), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1098), + [sym_linkage_specification] = STATE(22), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(687), + [sym_compound_statement] = STATE(112), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(789), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(140), + [sym_statement] = STATE(22), + [sym_labeled_statement] = STATE(112), + [sym_expression_statement] = STATE(112), + [sym_if_statement] = STATE(112), + [sym_switch_statement] = STATE(112), + [sym_case_statement] = STATE(112), + [sym_while_statement] = STATE(112), + [sym_do_statement] = STATE(112), + [sym_for_statement] = STATE(112), + [sym_return_statement] = STATE(112), + [sym_break_statement] = STATE(112), + [sym_continue_statement] = STATE(112), + [sym_goto_statement] = STATE(112), + [sym_seh_try_statement] = STATE(112), + [sym_seh_leave_statement] = STATE(112), + [sym_expression] = STATE(1029), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1759), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym__empty_declaration] = STATE(22), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_repeat1] = STATE(22), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(349), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), [sym_identifier] = ACTIONS(103), [aux_sym_preproc_include_token1] = ACTIONS(105), [aux_sym_preproc_def_token1] = ACTIONS(107), @@ -13558,81 +13491,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [12] = { - [sym_preproc_include] = STATE(20), - [sym_preproc_def] = STATE(20), - [sym_preproc_function_def] = STATE(20), - [sym_preproc_call] = STATE(20), - [sym_preproc_if] = STATE(20), - [sym_preproc_ifdef] = STATE(20), - [sym_preproc_else] = STATE(1818), - [sym_preproc_elif] = STATE(1818), - [sym_preproc_elifdef] = STATE(1818), - [sym_function_definition] = STATE(20), - [sym__old_style_function_definition] = STATE(135), - [sym_declaration] = STATE(20), - [sym_type_definition] = STATE(20), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1151), - [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(455), - [sym_ms_declspec_modifier] = STATE(752), - [sym_ms_call_modifier] = STATE(743), - [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(852), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym_attributed_statement] = STATE(20), - [sym_labeled_statement] = STATE(20), - [sym_expression_statement] = STATE(20), - [sym_if_statement] = STATE(20), - [sym_switch_statement] = STATE(20), - [sym_case_statement] = STATE(20), - [sym_while_statement] = STATE(20), - [sym_do_statement] = STATE(20), - [sym_for_statement] = STATE(20), - [sym_return_statement] = STATE(20), - [sym_break_statement] = STATE(20), - [sym_continue_statement] = STATE(20), - [sym_goto_statement] = STATE(20), - [sym_seh_try_statement] = STATE(20), - [sym_seh_leave_statement] = STATE(20), - [sym__expression] = STATE(1097), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1839), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(822), - [aux_sym_preproc_if_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_attributed_declarator_repeat1] = STATE(405), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym__block_item] = STATE(8), + [sym_preproc_include] = STATE(8), + [sym_preproc_def] = STATE(8), + [sym_preproc_function_def] = STATE(8), + [sym_preproc_call] = STATE(8), + [sym_preproc_if] = STATE(8), + [sym_preproc_ifdef] = STATE(8), + [sym_preproc_else] = STATE(1954), + [sym_preproc_elif] = STATE(1954), + [sym_preproc_elifdef] = STATE(1954), + [sym_function_definition] = STATE(8), + [sym__old_style_function_definition] = STATE(122), + [sym_declaration] = STATE(8), + [sym_type_definition] = STATE(8), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1098), + [sym_linkage_specification] = STATE(8), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(687), + [sym_compound_statement] = STATE(112), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(789), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(140), + [sym_statement] = STATE(8), + [sym_labeled_statement] = STATE(112), + [sym_expression_statement] = STATE(112), + [sym_if_statement] = STATE(112), + [sym_switch_statement] = STATE(112), + [sym_case_statement] = STATE(112), + [sym_while_statement] = STATE(112), + [sym_do_statement] = STATE(112), + [sym_for_statement] = STATE(112), + [sym_return_statement] = STATE(112), + [sym_break_statement] = STATE(112), + [sym_continue_statement] = STATE(112), + [sym_goto_statement] = STATE(112), + [sym_seh_try_statement] = STATE(112), + [sym_seh_leave_statement] = STATE(112), + [sym_expression] = STATE(1029), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1759), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym__empty_declaration] = STATE(8), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_repeat1] = STATE(8), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(349), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), [sym_identifier] = ACTIONS(103), [aux_sym_preproc_include_token1] = ACTIONS(105), [aux_sym_preproc_def_token1] = ACTIONS(107), @@ -13736,81 +13670,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [13] = { - [sym_preproc_include] = STATE(21), - [sym_preproc_def] = STATE(21), - [sym_preproc_function_def] = STATE(21), - [sym_preproc_call] = STATE(21), - [sym_preproc_if] = STATE(21), - [sym_preproc_ifdef] = STATE(21), - [sym_preproc_else] = STATE(1966), - [sym_preproc_elif] = STATE(1966), - [sym_preproc_elifdef] = STATE(1966), - [sym_function_definition] = STATE(21), - [sym__old_style_function_definition] = STATE(135), - [sym_declaration] = STATE(21), - [sym_type_definition] = STATE(21), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1151), - [sym_linkage_specification] = STATE(21), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(455), - [sym_ms_declspec_modifier] = STATE(752), - [sym_ms_call_modifier] = STATE(743), - [sym_compound_statement] = STATE(21), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(852), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym_attributed_statement] = STATE(21), - [sym_labeled_statement] = STATE(21), - [sym_expression_statement] = STATE(21), - [sym_if_statement] = STATE(21), - [sym_switch_statement] = STATE(21), - [sym_case_statement] = STATE(21), - [sym_while_statement] = STATE(21), - [sym_do_statement] = STATE(21), - [sym_for_statement] = STATE(21), - [sym_return_statement] = STATE(21), - [sym_break_statement] = STATE(21), - [sym_continue_statement] = STATE(21), - [sym_goto_statement] = STATE(21), - [sym_seh_try_statement] = STATE(21), - [sym_seh_leave_statement] = STATE(21), - [sym__expression] = STATE(1097), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1839), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym__empty_declaration] = STATE(21), - [sym_macro_type_specifier] = STATE(822), - [aux_sym_preproc_if_repeat1] = STATE(21), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_attributed_declarator_repeat1] = STATE(405), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym__block_item] = STATE(2), + [sym_preproc_include] = STATE(2), + [sym_preproc_def] = STATE(2), + [sym_preproc_function_def] = STATE(2), + [sym_preproc_call] = STATE(2), + [sym_preproc_if] = STATE(2), + [sym_preproc_ifdef] = STATE(2), + [sym_preproc_else] = STATE(1806), + [sym_preproc_elif] = STATE(1806), + [sym_preproc_elifdef] = STATE(1806), + [sym_function_definition] = STATE(2), + [sym__old_style_function_definition] = STATE(122), + [sym_declaration] = STATE(2), + [sym_type_definition] = STATE(2), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1098), + [sym_linkage_specification] = STATE(2), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(687), + [sym_compound_statement] = STATE(112), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(789), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(140), + [sym_statement] = STATE(2), + [sym_labeled_statement] = STATE(112), + [sym_expression_statement] = STATE(112), + [sym_if_statement] = STATE(112), + [sym_switch_statement] = STATE(112), + [sym_case_statement] = STATE(112), + [sym_while_statement] = STATE(112), + [sym_do_statement] = STATE(112), + [sym_for_statement] = STATE(112), + [sym_return_statement] = STATE(112), + [sym_break_statement] = STATE(112), + [sym_continue_statement] = STATE(112), + [sym_goto_statement] = STATE(112), + [sym_seh_try_statement] = STATE(112), + [sym_seh_leave_statement] = STATE(112), + [sym_expression] = STATE(1029), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1759), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym__empty_declaration] = STATE(2), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_repeat1] = STATE(2), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(349), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), [sym_identifier] = ACTIONS(103), [aux_sym_preproc_include_token1] = ACTIONS(105), [aux_sym_preproc_def_token1] = ACTIONS(107), @@ -13914,81 +13849,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [14] = { + [sym__block_item] = STATE(22), [sym_preproc_include] = STATE(22), [sym_preproc_def] = STATE(22), [sym_preproc_function_def] = STATE(22), [sym_preproc_call] = STATE(22), [sym_preproc_if] = STATE(22), [sym_preproc_ifdef] = STATE(22), - [sym_preproc_else] = STATE(2016), - [sym_preproc_elif] = STATE(2016), - [sym_preproc_elifdef] = STATE(2016), + [sym_preproc_else] = STATE(1898), + [sym_preproc_elif] = STATE(1898), + [sym_preproc_elifdef] = STATE(1898), [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(135), + [sym__old_style_function_definition] = STATE(122), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1151), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1098), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(455), - [sym_ms_declspec_modifier] = STATE(752), - [sym_ms_call_modifier] = STATE(743), - [sym_compound_statement] = STATE(22), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(852), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym_attributed_statement] = STATE(22), - [sym_labeled_statement] = STATE(22), - [sym_expression_statement] = STATE(22), - [sym_if_statement] = STATE(22), - [sym_switch_statement] = STATE(22), - [sym_case_statement] = STATE(22), - [sym_while_statement] = STATE(22), - [sym_do_statement] = STATE(22), - [sym_for_statement] = STATE(22), - [sym_return_statement] = STATE(22), - [sym_break_statement] = STATE(22), - [sym_continue_statement] = STATE(22), - [sym_goto_statement] = STATE(22), - [sym_seh_try_statement] = STATE(22), - [sym_seh_leave_statement] = STATE(22), - [sym__expression] = STATE(1097), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1839), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(687), + [sym_compound_statement] = STATE(112), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(789), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(140), + [sym_statement] = STATE(22), + [sym_labeled_statement] = STATE(112), + [sym_expression_statement] = STATE(112), + [sym_if_statement] = STATE(112), + [sym_switch_statement] = STATE(112), + [sym_case_statement] = STATE(112), + [sym_while_statement] = STATE(112), + [sym_do_statement] = STATE(112), + [sym_for_statement] = STATE(112), + [sym_return_statement] = STATE(112), + [sym_break_statement] = STATE(112), + [sym_continue_statement] = STATE(112), + [sym_goto_statement] = STATE(112), + [sym_seh_try_statement] = STATE(112), + [sym_seh_leave_statement] = STATE(112), + [sym_expression] = STATE(1029), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1759), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(822), + [sym_macro_type_specifier] = STATE(771), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_attributed_declarator_repeat1] = STATE(405), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(349), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), [sym_identifier] = ACTIONS(103), [aux_sym_preproc_include_token1] = ACTIONS(105), [aux_sym_preproc_def_token1] = ACTIONS(107), @@ -14092,81 +14028,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [15] = { - [sym_preproc_include] = STATE(5), - [sym_preproc_def] = STATE(5), - [sym_preproc_function_def] = STATE(5), - [sym_preproc_call] = STATE(5), - [sym_preproc_if] = STATE(5), - [sym_preproc_ifdef] = STATE(5), - [sym_preproc_else] = STATE(1917), - [sym_preproc_elif] = STATE(1917), - [sym_preproc_elifdef] = STATE(1917), - [sym_function_definition] = STATE(5), - [sym__old_style_function_definition] = STATE(135), - [sym_declaration] = STATE(5), - [sym_type_definition] = STATE(5), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1151), - [sym_linkage_specification] = STATE(5), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(455), - [sym_ms_declspec_modifier] = STATE(752), - [sym_ms_call_modifier] = STATE(743), - [sym_compound_statement] = STATE(5), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(852), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym_attributed_statement] = STATE(5), - [sym_labeled_statement] = STATE(5), - [sym_expression_statement] = STATE(5), - [sym_if_statement] = STATE(5), - [sym_switch_statement] = STATE(5), - [sym_case_statement] = STATE(5), - [sym_while_statement] = STATE(5), - [sym_do_statement] = STATE(5), - [sym_for_statement] = STATE(5), - [sym_return_statement] = STATE(5), - [sym_break_statement] = STATE(5), - [sym_continue_statement] = STATE(5), - [sym_goto_statement] = STATE(5), - [sym_seh_try_statement] = STATE(5), - [sym_seh_leave_statement] = STATE(5), - [sym__expression] = STATE(1097), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1839), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym__empty_declaration] = STATE(5), - [sym_macro_type_specifier] = STATE(822), - [aux_sym_preproc_if_repeat1] = STATE(5), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_attributed_declarator_repeat1] = STATE(405), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym__block_item] = STATE(22), + [sym_preproc_include] = STATE(22), + [sym_preproc_def] = STATE(22), + [sym_preproc_function_def] = STATE(22), + [sym_preproc_call] = STATE(22), + [sym_preproc_if] = STATE(22), + [sym_preproc_ifdef] = STATE(22), + [sym_preproc_else] = STATE(1755), + [sym_preproc_elif] = STATE(1755), + [sym_preproc_elifdef] = STATE(1755), + [sym_function_definition] = STATE(22), + [sym__old_style_function_definition] = STATE(122), + [sym_declaration] = STATE(22), + [sym_type_definition] = STATE(22), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1098), + [sym_linkage_specification] = STATE(22), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(687), + [sym_compound_statement] = STATE(112), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(789), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(140), + [sym_statement] = STATE(22), + [sym_labeled_statement] = STATE(112), + [sym_expression_statement] = STATE(112), + [sym_if_statement] = STATE(112), + [sym_switch_statement] = STATE(112), + [sym_case_statement] = STATE(112), + [sym_while_statement] = STATE(112), + [sym_do_statement] = STATE(112), + [sym_for_statement] = STATE(112), + [sym_return_statement] = STATE(112), + [sym_break_statement] = STATE(112), + [sym_continue_statement] = STATE(112), + [sym_goto_statement] = STATE(112), + [sym_seh_try_statement] = STATE(112), + [sym_seh_leave_statement] = STATE(112), + [sym_expression] = STATE(1029), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1759), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym__empty_declaration] = STATE(22), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_repeat1] = STATE(22), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(349), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), [sym_identifier] = ACTIONS(103), [aux_sym_preproc_include_token1] = ACTIONS(105), [aux_sym_preproc_def_token1] = ACTIONS(107), @@ -14270,81 +14207,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [16] = { - [sym_preproc_include] = STATE(22), - [sym_preproc_def] = STATE(22), - [sym_preproc_function_def] = STATE(22), - [sym_preproc_call] = STATE(22), - [sym_preproc_if] = STATE(22), - [sym_preproc_ifdef] = STATE(22), - [sym_preproc_else] = STATE(1860), - [sym_preproc_elif] = STATE(1860), - [sym_preproc_elifdef] = STATE(1860), - [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(135), - [sym_declaration] = STATE(22), - [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1151), - [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(455), - [sym_ms_declspec_modifier] = STATE(752), - [sym_ms_call_modifier] = STATE(743), - [sym_compound_statement] = STATE(22), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(852), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym_attributed_statement] = STATE(22), - [sym_labeled_statement] = STATE(22), - [sym_expression_statement] = STATE(22), - [sym_if_statement] = STATE(22), - [sym_switch_statement] = STATE(22), - [sym_case_statement] = STATE(22), - [sym_while_statement] = STATE(22), - [sym_do_statement] = STATE(22), - [sym_for_statement] = STATE(22), - [sym_return_statement] = STATE(22), - [sym_break_statement] = STATE(22), - [sym_continue_statement] = STATE(22), - [sym_goto_statement] = STATE(22), - [sym_seh_try_statement] = STATE(22), - [sym_seh_leave_statement] = STATE(22), - [sym__expression] = STATE(1097), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1839), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(822), - [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_attributed_declarator_repeat1] = STATE(405), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym__block_item] = STATE(14), + [sym_preproc_include] = STATE(14), + [sym_preproc_def] = STATE(14), + [sym_preproc_function_def] = STATE(14), + [sym_preproc_call] = STATE(14), + [sym_preproc_if] = STATE(14), + [sym_preproc_ifdef] = STATE(14), + [sym_preproc_else] = STATE(1943), + [sym_preproc_elif] = STATE(1943), + [sym_preproc_elifdef] = STATE(1943), + [sym_function_definition] = STATE(14), + [sym__old_style_function_definition] = STATE(122), + [sym_declaration] = STATE(14), + [sym_type_definition] = STATE(14), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1098), + [sym_linkage_specification] = STATE(14), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(687), + [sym_compound_statement] = STATE(112), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(789), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(140), + [sym_statement] = STATE(14), + [sym_labeled_statement] = STATE(112), + [sym_expression_statement] = STATE(112), + [sym_if_statement] = STATE(112), + [sym_switch_statement] = STATE(112), + [sym_case_statement] = STATE(112), + [sym_while_statement] = STATE(112), + [sym_do_statement] = STATE(112), + [sym_for_statement] = STATE(112), + [sym_return_statement] = STATE(112), + [sym_break_statement] = STATE(112), + [sym_continue_statement] = STATE(112), + [sym_goto_statement] = STATE(112), + [sym_seh_try_statement] = STATE(112), + [sym_seh_leave_statement] = STATE(112), + [sym_expression] = STATE(1029), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1759), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym__empty_declaration] = STATE(14), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_repeat1] = STATE(14), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(349), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), [sym_identifier] = ACTIONS(103), [aux_sym_preproc_include_token1] = ACTIONS(105), [aux_sym_preproc_def_token1] = ACTIONS(107), @@ -14448,81 +14386,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [17] = { - [sym_preproc_include] = STATE(9), - [sym_preproc_def] = STATE(9), - [sym_preproc_function_def] = STATE(9), - [sym_preproc_call] = STATE(9), - [sym_preproc_if] = STATE(9), - [sym_preproc_ifdef] = STATE(9), - [sym_preproc_else] = STATE(1820), - [sym_preproc_elif] = STATE(1820), - [sym_preproc_elifdef] = STATE(1820), - [sym_function_definition] = STATE(9), - [sym__old_style_function_definition] = STATE(135), - [sym_declaration] = STATE(9), - [sym_type_definition] = STATE(9), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1151), - [sym_linkage_specification] = STATE(9), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(455), - [sym_ms_declspec_modifier] = STATE(752), - [sym_ms_call_modifier] = STATE(743), - [sym_compound_statement] = STATE(9), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(852), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym_attributed_statement] = STATE(9), - [sym_labeled_statement] = STATE(9), - [sym_expression_statement] = STATE(9), - [sym_if_statement] = STATE(9), - [sym_switch_statement] = STATE(9), - [sym_case_statement] = STATE(9), - [sym_while_statement] = STATE(9), - [sym_do_statement] = STATE(9), - [sym_for_statement] = STATE(9), - [sym_return_statement] = STATE(9), - [sym_break_statement] = STATE(9), - [sym_continue_statement] = STATE(9), - [sym_goto_statement] = STATE(9), - [sym_seh_try_statement] = STATE(9), - [sym_seh_leave_statement] = STATE(9), - [sym__expression] = STATE(1097), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1839), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym__empty_declaration] = STATE(9), - [sym_macro_type_specifier] = STATE(822), - [aux_sym_preproc_if_repeat1] = STATE(9), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_attributed_declarator_repeat1] = STATE(405), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym__block_item] = STATE(22), + [sym_preproc_include] = STATE(22), + [sym_preproc_def] = STATE(22), + [sym_preproc_function_def] = STATE(22), + [sym_preproc_call] = STATE(22), + [sym_preproc_if] = STATE(22), + [sym_preproc_ifdef] = STATE(22), + [sym_preproc_else] = STATE(1746), + [sym_preproc_elif] = STATE(1746), + [sym_preproc_elifdef] = STATE(1746), + [sym_function_definition] = STATE(22), + [sym__old_style_function_definition] = STATE(122), + [sym_declaration] = STATE(22), + [sym_type_definition] = STATE(22), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1098), + [sym_linkage_specification] = STATE(22), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(687), + [sym_compound_statement] = STATE(112), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(789), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(140), + [sym_statement] = STATE(22), + [sym_labeled_statement] = STATE(112), + [sym_expression_statement] = STATE(112), + [sym_if_statement] = STATE(112), + [sym_switch_statement] = STATE(112), + [sym_case_statement] = STATE(112), + [sym_while_statement] = STATE(112), + [sym_do_statement] = STATE(112), + [sym_for_statement] = STATE(112), + [sym_return_statement] = STATE(112), + [sym_break_statement] = STATE(112), + [sym_continue_statement] = STATE(112), + [sym_goto_statement] = STATE(112), + [sym_seh_try_statement] = STATE(112), + [sym_seh_leave_statement] = STATE(112), + [sym_expression] = STATE(1029), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1759), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym__empty_declaration] = STATE(22), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_repeat1] = STATE(22), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(349), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), [sym_identifier] = ACTIONS(103), [aux_sym_preproc_include_token1] = ACTIONS(105), [aux_sym_preproc_def_token1] = ACTIONS(107), @@ -14626,81 +14565,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [18] = { - [sym_preproc_include] = STATE(19), - [sym_preproc_def] = STATE(19), - [sym_preproc_function_def] = STATE(19), - [sym_preproc_call] = STATE(19), - [sym_preproc_if] = STATE(19), - [sym_preproc_ifdef] = STATE(19), - [sym_preproc_else] = STATE(1795), - [sym_preproc_elif] = STATE(1795), - [sym_preproc_elifdef] = STATE(1795), - [sym_function_definition] = STATE(19), - [sym__old_style_function_definition] = STATE(135), - [sym_declaration] = STATE(19), - [sym_type_definition] = STATE(19), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1151), - [sym_linkage_specification] = STATE(19), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(455), - [sym_ms_declspec_modifier] = STATE(752), - [sym_ms_call_modifier] = STATE(743), - [sym_compound_statement] = STATE(19), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(852), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym_attributed_statement] = STATE(19), - [sym_labeled_statement] = STATE(19), - [sym_expression_statement] = STATE(19), - [sym_if_statement] = STATE(19), - [sym_switch_statement] = STATE(19), - [sym_case_statement] = STATE(19), - [sym_while_statement] = STATE(19), - [sym_do_statement] = STATE(19), - [sym_for_statement] = STATE(19), - [sym_return_statement] = STATE(19), - [sym_break_statement] = STATE(19), - [sym_continue_statement] = STATE(19), - [sym_goto_statement] = STATE(19), - [sym_seh_try_statement] = STATE(19), - [sym_seh_leave_statement] = STATE(19), - [sym__expression] = STATE(1097), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1839), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym__empty_declaration] = STATE(19), - [sym_macro_type_specifier] = STATE(822), - [aux_sym_preproc_if_repeat1] = STATE(19), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_attributed_declarator_repeat1] = STATE(405), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym__block_item] = STATE(22), + [sym_preproc_include] = STATE(22), + [sym_preproc_def] = STATE(22), + [sym_preproc_function_def] = STATE(22), + [sym_preproc_call] = STATE(22), + [sym_preproc_if] = STATE(22), + [sym_preproc_ifdef] = STATE(22), + [sym_preproc_else] = STATE(1941), + [sym_preproc_elif] = STATE(1941), + [sym_preproc_elifdef] = STATE(1941), + [sym_function_definition] = STATE(22), + [sym__old_style_function_definition] = STATE(122), + [sym_declaration] = STATE(22), + [sym_type_definition] = STATE(22), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1098), + [sym_linkage_specification] = STATE(22), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(687), + [sym_compound_statement] = STATE(112), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(789), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(140), + [sym_statement] = STATE(22), + [sym_labeled_statement] = STATE(112), + [sym_expression_statement] = STATE(112), + [sym_if_statement] = STATE(112), + [sym_switch_statement] = STATE(112), + [sym_case_statement] = STATE(112), + [sym_while_statement] = STATE(112), + [sym_do_statement] = STATE(112), + [sym_for_statement] = STATE(112), + [sym_return_statement] = STATE(112), + [sym_break_statement] = STATE(112), + [sym_continue_statement] = STATE(112), + [sym_goto_statement] = STATE(112), + [sym_seh_try_statement] = STATE(112), + [sym_seh_leave_statement] = STATE(112), + [sym_expression] = STATE(1029), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1759), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym__empty_declaration] = STATE(22), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_repeat1] = STATE(22), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(349), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), [sym_identifier] = ACTIONS(103), [aux_sym_preproc_include_token1] = ACTIONS(105), [aux_sym_preproc_def_token1] = ACTIONS(107), @@ -14804,81 +14744,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [19] = { - [sym_preproc_include] = STATE(22), - [sym_preproc_def] = STATE(22), - [sym_preproc_function_def] = STATE(22), - [sym_preproc_call] = STATE(22), - [sym_preproc_if] = STATE(22), - [sym_preproc_ifdef] = STATE(22), - [sym_preproc_else] = STATE(1804), - [sym_preproc_elif] = STATE(1804), - [sym_preproc_elifdef] = STATE(1804), - [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(135), - [sym_declaration] = STATE(22), - [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1151), - [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(455), - [sym_ms_declspec_modifier] = STATE(752), - [sym_ms_call_modifier] = STATE(743), - [sym_compound_statement] = STATE(22), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(852), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym_attributed_statement] = STATE(22), - [sym_labeled_statement] = STATE(22), - [sym_expression_statement] = STATE(22), - [sym_if_statement] = STATE(22), - [sym_switch_statement] = STATE(22), - [sym_case_statement] = STATE(22), - [sym_while_statement] = STATE(22), - [sym_do_statement] = STATE(22), - [sym_for_statement] = STATE(22), - [sym_return_statement] = STATE(22), - [sym_break_statement] = STATE(22), - [sym_continue_statement] = STATE(22), - [sym_goto_statement] = STATE(22), - [sym_seh_try_statement] = STATE(22), - [sym_seh_leave_statement] = STATE(22), - [sym__expression] = STATE(1097), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1839), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(822), - [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_attributed_declarator_repeat1] = STATE(405), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym__block_item] = STATE(5), + [sym_preproc_include] = STATE(5), + [sym_preproc_def] = STATE(5), + [sym_preproc_function_def] = STATE(5), + [sym_preproc_call] = STATE(5), + [sym_preproc_if] = STATE(5), + [sym_preproc_ifdef] = STATE(5), + [sym_preproc_else] = STATE(1779), + [sym_preproc_elif] = STATE(1779), + [sym_preproc_elifdef] = STATE(1779), + [sym_function_definition] = STATE(5), + [sym__old_style_function_definition] = STATE(122), + [sym_declaration] = STATE(5), + [sym_type_definition] = STATE(5), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1098), + [sym_linkage_specification] = STATE(5), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(687), + [sym_compound_statement] = STATE(112), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(789), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(140), + [sym_statement] = STATE(5), + [sym_labeled_statement] = STATE(112), + [sym_expression_statement] = STATE(112), + [sym_if_statement] = STATE(112), + [sym_switch_statement] = STATE(112), + [sym_case_statement] = STATE(112), + [sym_while_statement] = STATE(112), + [sym_do_statement] = STATE(112), + [sym_for_statement] = STATE(112), + [sym_return_statement] = STATE(112), + [sym_break_statement] = STATE(112), + [sym_continue_statement] = STATE(112), + [sym_goto_statement] = STATE(112), + [sym_seh_try_statement] = STATE(112), + [sym_seh_leave_statement] = STATE(112), + [sym_expression] = STATE(1029), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1759), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym__empty_declaration] = STATE(5), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_repeat1] = STATE(5), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(349), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), [sym_identifier] = ACTIONS(103), [aux_sym_preproc_include_token1] = ACTIONS(105), [aux_sym_preproc_def_token1] = ACTIONS(107), @@ -14982,81 +14923,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [20] = { - [sym_preproc_include] = STATE(22), - [sym_preproc_def] = STATE(22), - [sym_preproc_function_def] = STATE(22), - [sym_preproc_call] = STATE(22), - [sym_preproc_if] = STATE(22), - [sym_preproc_ifdef] = STATE(22), - [sym_preproc_else] = STATE(1913), - [sym_preproc_elif] = STATE(1913), - [sym_preproc_elifdef] = STATE(1913), - [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(135), - [sym_declaration] = STATE(22), - [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1151), - [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(455), - [sym_ms_declspec_modifier] = STATE(752), - [sym_ms_call_modifier] = STATE(743), - [sym_compound_statement] = STATE(22), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(852), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym_attributed_statement] = STATE(22), - [sym_labeled_statement] = STATE(22), - [sym_expression_statement] = STATE(22), - [sym_if_statement] = STATE(22), - [sym_switch_statement] = STATE(22), - [sym_case_statement] = STATE(22), - [sym_while_statement] = STATE(22), - [sym_do_statement] = STATE(22), - [sym_for_statement] = STATE(22), - [sym_return_statement] = STATE(22), - [sym_break_statement] = STATE(22), - [sym_continue_statement] = STATE(22), - [sym_goto_statement] = STATE(22), - [sym_seh_try_statement] = STATE(22), - [sym_seh_leave_statement] = STATE(22), - [sym__expression] = STATE(1097), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1839), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(822), - [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_attributed_declarator_repeat1] = STATE(405), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym__block_item] = STATE(18), + [sym_preproc_include] = STATE(18), + [sym_preproc_def] = STATE(18), + [sym_preproc_function_def] = STATE(18), + [sym_preproc_call] = STATE(18), + [sym_preproc_if] = STATE(18), + [sym_preproc_ifdef] = STATE(18), + [sym_preproc_else] = STATE(1741), + [sym_preproc_elif] = STATE(1741), + [sym_preproc_elifdef] = STATE(1741), + [sym_function_definition] = STATE(18), + [sym__old_style_function_definition] = STATE(122), + [sym_declaration] = STATE(18), + [sym_type_definition] = STATE(18), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1098), + [sym_linkage_specification] = STATE(18), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(687), + [sym_compound_statement] = STATE(112), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(789), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(140), + [sym_statement] = STATE(18), + [sym_labeled_statement] = STATE(112), + [sym_expression_statement] = STATE(112), + [sym_if_statement] = STATE(112), + [sym_switch_statement] = STATE(112), + [sym_case_statement] = STATE(112), + [sym_while_statement] = STATE(112), + [sym_do_statement] = STATE(112), + [sym_for_statement] = STATE(112), + [sym_return_statement] = STATE(112), + [sym_break_statement] = STATE(112), + [sym_continue_statement] = STATE(112), + [sym_goto_statement] = STATE(112), + [sym_seh_try_statement] = STATE(112), + [sym_seh_leave_statement] = STATE(112), + [sym_expression] = STATE(1029), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1759), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym__empty_declaration] = STATE(18), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_repeat1] = STATE(18), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(349), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), [sym_identifier] = ACTIONS(103), [aux_sym_preproc_include_token1] = ACTIONS(105), [aux_sym_preproc_def_token1] = ACTIONS(107), @@ -15160,81 +15102,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [21] = { + [sym__block_item] = STATE(22), [sym_preproc_include] = STATE(22), [sym_preproc_def] = STATE(22), [sym_preproc_function_def] = STATE(22), [sym_preproc_call] = STATE(22), [sym_preproc_if] = STATE(22), [sym_preproc_ifdef] = STATE(22), - [sym_preproc_else] = STATE(1819), - [sym_preproc_elif] = STATE(1819), - [sym_preproc_elifdef] = STATE(1819), + [sym_preproc_else] = STATE(1733), + [sym_preproc_elif] = STATE(1733), + [sym_preproc_elifdef] = STATE(1733), [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(135), + [sym__old_style_function_definition] = STATE(122), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1151), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1098), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(455), - [sym_ms_declspec_modifier] = STATE(752), - [sym_ms_call_modifier] = STATE(743), - [sym_compound_statement] = STATE(22), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(852), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym_attributed_statement] = STATE(22), - [sym_labeled_statement] = STATE(22), - [sym_expression_statement] = STATE(22), - [sym_if_statement] = STATE(22), - [sym_switch_statement] = STATE(22), - [sym_case_statement] = STATE(22), - [sym_while_statement] = STATE(22), - [sym_do_statement] = STATE(22), - [sym_for_statement] = STATE(22), - [sym_return_statement] = STATE(22), - [sym_break_statement] = STATE(22), - [sym_continue_statement] = STATE(22), - [sym_goto_statement] = STATE(22), - [sym_seh_try_statement] = STATE(22), - [sym_seh_leave_statement] = STATE(22), - [sym__expression] = STATE(1097), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1839), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(687), + [sym_compound_statement] = STATE(112), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(789), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(140), + [sym_statement] = STATE(22), + [sym_labeled_statement] = STATE(112), + [sym_expression_statement] = STATE(112), + [sym_if_statement] = STATE(112), + [sym_switch_statement] = STATE(112), + [sym_case_statement] = STATE(112), + [sym_while_statement] = STATE(112), + [sym_do_statement] = STATE(112), + [sym_for_statement] = STATE(112), + [sym_return_statement] = STATE(112), + [sym_break_statement] = STATE(112), + [sym_continue_statement] = STATE(112), + [sym_goto_statement] = STATE(112), + [sym_seh_try_statement] = STATE(112), + [sym_seh_leave_statement] = STATE(112), + [sym_expression] = STATE(1029), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1759), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(822), + [sym_macro_type_specifier] = STATE(771), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_attributed_declarator_repeat1] = STATE(405), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(349), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), [sym_identifier] = ACTIONS(103), [aux_sym_preproc_include_token1] = ACTIONS(105), [aux_sym_preproc_def_token1] = ACTIONS(107), @@ -15338,6 +15281,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [22] = { + [sym__block_item] = STATE(22), [sym_preproc_include] = STATE(22), [sym_preproc_def] = STATE(22), [sym_preproc_function_def] = STATE(22), @@ -15345,71 +15289,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if] = STATE(22), [sym_preproc_ifdef] = STATE(22), [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(135), + [sym__old_style_function_definition] = STATE(122), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1151), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1098), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(455), - [sym_ms_declspec_modifier] = STATE(752), - [sym_ms_call_modifier] = STATE(743), - [sym_compound_statement] = STATE(22), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(852), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym_attributed_statement] = STATE(22), - [sym_labeled_statement] = STATE(22), - [sym_expression_statement] = STATE(22), - [sym_if_statement] = STATE(22), - [sym_switch_statement] = STATE(22), - [sym_case_statement] = STATE(22), - [sym_while_statement] = STATE(22), - [sym_do_statement] = STATE(22), - [sym_for_statement] = STATE(22), - [sym_return_statement] = STATE(22), - [sym_break_statement] = STATE(22), - [sym_continue_statement] = STATE(22), - [sym_goto_statement] = STATE(22), - [sym_seh_try_statement] = STATE(22), - [sym_seh_leave_statement] = STATE(22), - [sym__expression] = STATE(1097), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1839), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(687), + [sym_compound_statement] = STATE(112), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(789), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(140), + [sym_statement] = STATE(22), + [sym_labeled_statement] = STATE(112), + [sym_expression_statement] = STATE(112), + [sym_if_statement] = STATE(112), + [sym_switch_statement] = STATE(112), + [sym_case_statement] = STATE(112), + [sym_while_statement] = STATE(112), + [sym_do_statement] = STATE(112), + [sym_for_statement] = STATE(112), + [sym_return_statement] = STATE(112), + [sym_break_statement] = STATE(112), + [sym_continue_statement] = STATE(112), + [sym_goto_statement] = STATE(112), + [sym_seh_try_statement] = STATE(112), + [sym_seh_leave_statement] = STATE(112), + [sym_expression] = STATE(1029), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1759), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(822), + [sym_macro_type_specifier] = STATE(771), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_attributed_declarator_repeat1] = STATE(405), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(349), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), [sym_identifier] = ACTIONS(201), [aux_sym_preproc_include_token1] = ACTIONS(204), [aux_sym_preproc_def_token1] = ACTIONS(207), @@ -15513,78 +15457,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [23] = { - [sym_preproc_include] = STATE(35), - [sym_preproc_def] = STATE(35), - [sym_preproc_function_def] = STATE(35), - [sym_preproc_call] = STATE(35), - [sym_preproc_if] = STATE(35), - [sym_preproc_ifdef] = STATE(35), - [sym_function_definition] = STATE(35), - [sym__old_style_function_definition] = STATE(334), - [sym_declaration] = STATE(35), - [sym_type_definition] = STATE(35), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1149), - [sym_linkage_specification] = STATE(35), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(455), - [sym_ms_declspec_modifier] = STATE(752), - [sym_ms_call_modifier] = STATE(730), - [sym_compound_statement] = STATE(35), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(859), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym_attributed_statement] = STATE(35), - [sym_labeled_statement] = STATE(35), - [sym_expression_statement] = STATE(35), - [sym_if_statement] = STATE(35), - [sym_switch_statement] = STATE(35), - [sym_case_statement] = STATE(35), - [sym_while_statement] = STATE(35), - [sym_do_statement] = STATE(35), - [sym_for_statement] = STATE(35), - [sym_return_statement] = STATE(35), - [sym_break_statement] = STATE(35), - [sym_continue_statement] = STATE(35), - [sym_goto_statement] = STATE(35), - [sym_seh_try_statement] = STATE(35), - [sym_seh_leave_statement] = STATE(35), - [sym__expression] = STATE(1089), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1976), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym__empty_declaration] = STATE(35), - [sym_macro_type_specifier] = STATE(822), - [aux_sym_preproc_if_repeat1] = STATE(35), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_attributed_declarator_repeat1] = STATE(393), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym__block_item] = STATE(40), + [sym_preproc_include] = STATE(40), + [sym_preproc_def] = STATE(40), + [sym_preproc_function_def] = STATE(40), + [sym_preproc_call] = STATE(40), + [sym_preproc_if] = STATE(40), + [sym_preproc_ifdef] = STATE(40), + [sym_function_definition] = STATE(40), + [sym__old_style_function_definition] = STATE(289), + [sym_declaration] = STATE(40), + [sym_type_definition] = STATE(40), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1100), + [sym_linkage_specification] = STATE(40), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(694), + [sym_compound_statement] = STATE(172), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(791), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(253), + [sym_statement] = STATE(40), + [sym_labeled_statement] = STATE(172), + [sym_expression_statement] = STATE(172), + [sym_if_statement] = STATE(172), + [sym_switch_statement] = STATE(172), + [sym_case_statement] = STATE(172), + [sym_while_statement] = STATE(172), + [sym_do_statement] = STATE(172), + [sym_for_statement] = STATE(172), + [sym_return_statement] = STATE(172), + [sym_break_statement] = STATE(172), + [sym_continue_statement] = STATE(172), + [sym_goto_statement] = STATE(172), + [sym_seh_try_statement] = STATE(172), + [sym_seh_leave_statement] = STATE(172), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym__empty_declaration] = STATE(40), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_repeat1] = STATE(40), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(352), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), [sym_identifier] = ACTIONS(356), [aux_sym_preproc_include_token1] = ACTIONS(358), [aux_sym_preproc_def_token1] = ACTIONS(360), @@ -15684,78 +15629,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [24] = { - [sym_preproc_include] = STATE(25), - [sym_preproc_def] = STATE(25), - [sym_preproc_function_def] = STATE(25), - [sym_preproc_call] = STATE(25), - [sym_preproc_if] = STATE(25), - [sym_preproc_ifdef] = STATE(25), - [sym_function_definition] = STATE(25), - [sym__old_style_function_definition] = STATE(334), - [sym_declaration] = STATE(25), - [sym_type_definition] = STATE(25), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1149), - [sym_linkage_specification] = STATE(25), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(455), - [sym_ms_declspec_modifier] = STATE(752), - [sym_ms_call_modifier] = STATE(730), - [sym_compound_statement] = STATE(25), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(859), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym_attributed_statement] = STATE(25), - [sym_labeled_statement] = STATE(25), - [sym_expression_statement] = STATE(25), - [sym_if_statement] = STATE(25), - [sym_switch_statement] = STATE(25), - [sym_case_statement] = STATE(25), - [sym_while_statement] = STATE(25), - [sym_do_statement] = STATE(25), - [sym_for_statement] = STATE(25), - [sym_return_statement] = STATE(25), - [sym_break_statement] = STATE(25), - [sym_continue_statement] = STATE(25), - [sym_goto_statement] = STATE(25), - [sym_seh_try_statement] = STATE(25), - [sym_seh_leave_statement] = STATE(25), - [sym__expression] = STATE(1089), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1976), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym__empty_declaration] = STATE(25), - [sym_macro_type_specifier] = STATE(822), - [aux_sym_preproc_if_repeat1] = STATE(25), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_attributed_declarator_repeat1] = STATE(393), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym__block_item] = STATE(27), + [sym_preproc_include] = STATE(27), + [sym_preproc_def] = STATE(27), + [sym_preproc_function_def] = STATE(27), + [sym_preproc_call] = STATE(27), + [sym_preproc_if] = STATE(27), + [sym_preproc_ifdef] = STATE(27), + [sym_function_definition] = STATE(27), + [sym__old_style_function_definition] = STATE(289), + [sym_declaration] = STATE(27), + [sym_type_definition] = STATE(27), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1100), + [sym_linkage_specification] = STATE(27), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(694), + [sym_compound_statement] = STATE(172), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(791), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(253), + [sym_statement] = STATE(27), + [sym_labeled_statement] = STATE(172), + [sym_expression_statement] = STATE(172), + [sym_if_statement] = STATE(172), + [sym_switch_statement] = STATE(172), + [sym_case_statement] = STATE(172), + [sym_while_statement] = STATE(172), + [sym_do_statement] = STATE(172), + [sym_for_statement] = STATE(172), + [sym_return_statement] = STATE(172), + [sym_break_statement] = STATE(172), + [sym_continue_statement] = STATE(172), + [sym_goto_statement] = STATE(172), + [sym_seh_try_statement] = STATE(172), + [sym_seh_leave_statement] = STATE(172), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym__empty_declaration] = STATE(27), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_repeat1] = STATE(27), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(352), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), [sym_identifier] = ACTIONS(356), [aux_sym_preproc_include_token1] = ACTIONS(358), [aux_sym_preproc_def_token1] = ACTIONS(360), @@ -15855,78 +15801,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [25] = { - [sym_preproc_include] = STATE(35), - [sym_preproc_def] = STATE(35), - [sym_preproc_function_def] = STATE(35), - [sym_preproc_call] = STATE(35), - [sym_preproc_if] = STATE(35), - [sym_preproc_ifdef] = STATE(35), - [sym_function_definition] = STATE(35), - [sym__old_style_function_definition] = STATE(334), - [sym_declaration] = STATE(35), - [sym_type_definition] = STATE(35), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1149), - [sym_linkage_specification] = STATE(35), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(455), - [sym_ms_declspec_modifier] = STATE(752), - [sym_ms_call_modifier] = STATE(730), - [sym_compound_statement] = STATE(35), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(859), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym_attributed_statement] = STATE(35), - [sym_labeled_statement] = STATE(35), - [sym_expression_statement] = STATE(35), - [sym_if_statement] = STATE(35), - [sym_switch_statement] = STATE(35), - [sym_case_statement] = STATE(35), - [sym_while_statement] = STATE(35), - [sym_do_statement] = STATE(35), - [sym_for_statement] = STATE(35), - [sym_return_statement] = STATE(35), - [sym_break_statement] = STATE(35), - [sym_continue_statement] = STATE(35), - [sym_goto_statement] = STATE(35), - [sym_seh_try_statement] = STATE(35), - [sym_seh_leave_statement] = STATE(35), - [sym__expression] = STATE(1089), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1976), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym__empty_declaration] = STATE(35), - [sym_macro_type_specifier] = STATE(822), - [aux_sym_preproc_if_repeat1] = STATE(35), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_attributed_declarator_repeat1] = STATE(393), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym__block_item] = STATE(42), + [sym_preproc_include] = STATE(42), + [sym_preproc_def] = STATE(42), + [sym_preproc_function_def] = STATE(42), + [sym_preproc_call] = STATE(42), + [sym_preproc_if] = STATE(42), + [sym_preproc_ifdef] = STATE(42), + [sym_function_definition] = STATE(42), + [sym__old_style_function_definition] = STATE(289), + [sym_declaration] = STATE(42), + [sym_type_definition] = STATE(42), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1100), + [sym_linkage_specification] = STATE(42), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(694), + [sym_compound_statement] = STATE(172), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(791), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(253), + [sym_statement] = STATE(42), + [sym_labeled_statement] = STATE(172), + [sym_expression_statement] = STATE(172), + [sym_if_statement] = STATE(172), + [sym_switch_statement] = STATE(172), + [sym_case_statement] = STATE(172), + [sym_while_statement] = STATE(172), + [sym_do_statement] = STATE(172), + [sym_for_statement] = STATE(172), + [sym_return_statement] = STATE(172), + [sym_break_statement] = STATE(172), + [sym_continue_statement] = STATE(172), + [sym_goto_statement] = STATE(172), + [sym_seh_try_statement] = STATE(172), + [sym_seh_leave_statement] = STATE(172), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym__empty_declaration] = STATE(42), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_repeat1] = STATE(42), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(352), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), [sym_identifier] = ACTIONS(356), [aux_sym_preproc_include_token1] = ACTIONS(358), [aux_sym_preproc_def_token1] = ACTIONS(360), @@ -16026,78 +15973,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [26] = { - [sym_preproc_include] = STATE(38), - [sym_preproc_def] = STATE(38), - [sym_preproc_function_def] = STATE(38), - [sym_preproc_call] = STATE(38), - [sym_preproc_if] = STATE(38), - [sym_preproc_ifdef] = STATE(38), - [sym_function_definition] = STATE(38), - [sym__old_style_function_definition] = STATE(353), - [sym_declaration] = STATE(38), - [sym_type_definition] = STATE(38), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1150), - [sym_linkage_specification] = STATE(38), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(455), - [sym_ms_declspec_modifier] = STATE(752), - [sym_ms_call_modifier] = STATE(733), - [sym_compound_statement] = STATE(38), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(855), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym_attributed_statement] = STATE(38), - [sym_labeled_statement] = STATE(38), - [sym_expression_statement] = STATE(38), - [sym_if_statement] = STATE(38), - [sym_switch_statement] = STATE(38), - [sym_case_statement] = STATE(38), - [sym_while_statement] = STATE(38), - [sym_do_statement] = STATE(38), - [sym_for_statement] = STATE(38), - [sym_return_statement] = STATE(38), - [sym_break_statement] = STATE(38), - [sym_continue_statement] = STATE(38), - [sym_goto_statement] = STATE(38), - [sym_seh_try_statement] = STATE(38), - [sym_seh_leave_statement] = STATE(38), - [sym__expression] = STATE(1054), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1853), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym__empty_declaration] = STATE(38), - [sym_macro_type_specifier] = STATE(822), - [aux_sym_preproc_if_repeat1] = STATE(38), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_attributed_declarator_repeat1] = STATE(404), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym__block_item] = STATE(31), + [sym_preproc_include] = STATE(31), + [sym_preproc_def] = STATE(31), + [sym_preproc_function_def] = STATE(31), + [sym_preproc_call] = STATE(31), + [sym_preproc_if] = STATE(31), + [sym_preproc_ifdef] = STATE(31), + [sym_function_definition] = STATE(31), + [sym__old_style_function_definition] = STATE(273), + [sym_declaration] = STATE(31), + [sym_type_definition] = STATE(31), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1099), + [sym_linkage_specification] = STATE(31), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(691), + [sym_compound_statement] = STATE(229), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(787), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(271), + [sym_statement] = STATE(31), + [sym_labeled_statement] = STATE(229), + [sym_expression_statement] = STATE(229), + [sym_if_statement] = STATE(229), + [sym_switch_statement] = STATE(229), + [sym_case_statement] = STATE(229), + [sym_while_statement] = STATE(229), + [sym_do_statement] = STATE(229), + [sym_for_statement] = STATE(229), + [sym_return_statement] = STATE(229), + [sym_break_statement] = STATE(229), + [sym_continue_statement] = STATE(229), + [sym_goto_statement] = STATE(229), + [sym_seh_try_statement] = STATE(229), + [sym_seh_leave_statement] = STATE(229), + [sym_expression] = STATE(1004), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1799), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym__empty_declaration] = STATE(31), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_repeat1] = STATE(31), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(317), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), [sym_identifier] = ACTIONS(410), [aux_sym_preproc_include_token1] = ACTIONS(412), [aux_sym_preproc_def_token1] = ACTIONS(414), @@ -16197,78 +16145,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [27] = { - [sym_preproc_include] = STATE(35), - [sym_preproc_def] = STATE(35), - [sym_preproc_function_def] = STATE(35), - [sym_preproc_call] = STATE(35), - [sym_preproc_if] = STATE(35), - [sym_preproc_ifdef] = STATE(35), - [sym_function_definition] = STATE(35), - [sym__old_style_function_definition] = STATE(334), - [sym_declaration] = STATE(35), - [sym_type_definition] = STATE(35), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1149), - [sym_linkage_specification] = STATE(35), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(455), - [sym_ms_declspec_modifier] = STATE(752), - [sym_ms_call_modifier] = STATE(730), - [sym_compound_statement] = STATE(35), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(859), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym_attributed_statement] = STATE(35), - [sym_labeled_statement] = STATE(35), - [sym_expression_statement] = STATE(35), - [sym_if_statement] = STATE(35), - [sym_switch_statement] = STATE(35), - [sym_case_statement] = STATE(35), - [sym_while_statement] = STATE(35), - [sym_do_statement] = STATE(35), - [sym_for_statement] = STATE(35), - [sym_return_statement] = STATE(35), - [sym_break_statement] = STATE(35), - [sym_continue_statement] = STATE(35), - [sym_goto_statement] = STATE(35), - [sym_seh_try_statement] = STATE(35), - [sym_seh_leave_statement] = STATE(35), - [sym__expression] = STATE(1089), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1976), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym__empty_declaration] = STATE(35), - [sym_macro_type_specifier] = STATE(822), - [aux_sym_preproc_if_repeat1] = STATE(35), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_attributed_declarator_repeat1] = STATE(393), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym__block_item] = STATE(40), + [sym_preproc_include] = STATE(40), + [sym_preproc_def] = STATE(40), + [sym_preproc_function_def] = STATE(40), + [sym_preproc_call] = STATE(40), + [sym_preproc_if] = STATE(40), + [sym_preproc_ifdef] = STATE(40), + [sym_function_definition] = STATE(40), + [sym__old_style_function_definition] = STATE(289), + [sym_declaration] = STATE(40), + [sym_type_definition] = STATE(40), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1100), + [sym_linkage_specification] = STATE(40), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(694), + [sym_compound_statement] = STATE(172), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(791), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(253), + [sym_statement] = STATE(40), + [sym_labeled_statement] = STATE(172), + [sym_expression_statement] = STATE(172), + [sym_if_statement] = STATE(172), + [sym_switch_statement] = STATE(172), + [sym_case_statement] = STATE(172), + [sym_while_statement] = STATE(172), + [sym_do_statement] = STATE(172), + [sym_for_statement] = STATE(172), + [sym_return_statement] = STATE(172), + [sym_break_statement] = STATE(172), + [sym_continue_statement] = STATE(172), + [sym_goto_statement] = STATE(172), + [sym_seh_try_statement] = STATE(172), + [sym_seh_leave_statement] = STATE(172), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym__empty_declaration] = STATE(40), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_repeat1] = STATE(40), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(352), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), [sym_identifier] = ACTIONS(356), [aux_sym_preproc_include_token1] = ACTIONS(358), [aux_sym_preproc_def_token1] = ACTIONS(360), @@ -16368,78 +16317,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [28] = { - [sym_preproc_include] = STATE(35), - [sym_preproc_def] = STATE(35), - [sym_preproc_function_def] = STATE(35), - [sym_preproc_call] = STATE(35), - [sym_preproc_if] = STATE(35), - [sym_preproc_ifdef] = STATE(35), - [sym_function_definition] = STATE(35), - [sym__old_style_function_definition] = STATE(334), - [sym_declaration] = STATE(35), - [sym_type_definition] = STATE(35), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1149), - [sym_linkage_specification] = STATE(35), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(455), - [sym_ms_declspec_modifier] = STATE(752), - [sym_ms_call_modifier] = STATE(730), - [sym_compound_statement] = STATE(35), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(859), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym_attributed_statement] = STATE(35), - [sym_labeled_statement] = STATE(35), - [sym_expression_statement] = STATE(35), - [sym_if_statement] = STATE(35), - [sym_switch_statement] = STATE(35), - [sym_case_statement] = STATE(35), - [sym_while_statement] = STATE(35), - [sym_do_statement] = STATE(35), - [sym_for_statement] = STATE(35), - [sym_return_statement] = STATE(35), - [sym_break_statement] = STATE(35), - [sym_continue_statement] = STATE(35), - [sym_goto_statement] = STATE(35), - [sym_seh_try_statement] = STATE(35), - [sym_seh_leave_statement] = STATE(35), - [sym__expression] = STATE(1089), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1976), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym__empty_declaration] = STATE(35), - [sym_macro_type_specifier] = STATE(822), - [aux_sym_preproc_if_repeat1] = STATE(35), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_attributed_declarator_repeat1] = STATE(393), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym__block_item] = STATE(40), + [sym_preproc_include] = STATE(40), + [sym_preproc_def] = STATE(40), + [sym_preproc_function_def] = STATE(40), + [sym_preproc_call] = STATE(40), + [sym_preproc_if] = STATE(40), + [sym_preproc_ifdef] = STATE(40), + [sym_function_definition] = STATE(40), + [sym__old_style_function_definition] = STATE(289), + [sym_declaration] = STATE(40), + [sym_type_definition] = STATE(40), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1100), + [sym_linkage_specification] = STATE(40), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(694), + [sym_compound_statement] = STATE(172), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(791), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(253), + [sym_statement] = STATE(40), + [sym_labeled_statement] = STATE(172), + [sym_expression_statement] = STATE(172), + [sym_if_statement] = STATE(172), + [sym_switch_statement] = STATE(172), + [sym_case_statement] = STATE(172), + [sym_while_statement] = STATE(172), + [sym_do_statement] = STATE(172), + [sym_for_statement] = STATE(172), + [sym_return_statement] = STATE(172), + [sym_break_statement] = STATE(172), + [sym_continue_statement] = STATE(172), + [sym_goto_statement] = STATE(172), + [sym_seh_try_statement] = STATE(172), + [sym_seh_leave_statement] = STATE(172), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym__empty_declaration] = STATE(40), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_repeat1] = STATE(40), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(352), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), [sym_identifier] = ACTIONS(356), [aux_sym_preproc_include_token1] = ACTIONS(358), [aux_sym_preproc_def_token1] = ACTIONS(360), @@ -16539,78 +16489,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [29] = { - [sym_preproc_include] = STATE(35), - [sym_preproc_def] = STATE(35), - [sym_preproc_function_def] = STATE(35), - [sym_preproc_call] = STATE(35), - [sym_preproc_if] = STATE(35), - [sym_preproc_ifdef] = STATE(35), - [sym_function_definition] = STATE(35), - [sym__old_style_function_definition] = STATE(334), - [sym_declaration] = STATE(35), - [sym_type_definition] = STATE(35), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1149), - [sym_linkage_specification] = STATE(35), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(455), - [sym_ms_declspec_modifier] = STATE(752), - [sym_ms_call_modifier] = STATE(730), - [sym_compound_statement] = STATE(35), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(859), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym_attributed_statement] = STATE(35), - [sym_labeled_statement] = STATE(35), - [sym_expression_statement] = STATE(35), - [sym_if_statement] = STATE(35), - [sym_switch_statement] = STATE(35), - [sym_case_statement] = STATE(35), - [sym_while_statement] = STATE(35), - [sym_do_statement] = STATE(35), - [sym_for_statement] = STATE(35), - [sym_return_statement] = STATE(35), - [sym_break_statement] = STATE(35), - [sym_continue_statement] = STATE(35), - [sym_goto_statement] = STATE(35), - [sym_seh_try_statement] = STATE(35), - [sym_seh_leave_statement] = STATE(35), - [sym__expression] = STATE(1089), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1976), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym__empty_declaration] = STATE(35), - [sym_macro_type_specifier] = STATE(822), - [aux_sym_preproc_if_repeat1] = STATE(35), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_attributed_declarator_repeat1] = STATE(393), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym__block_item] = STATE(40), + [sym_preproc_include] = STATE(40), + [sym_preproc_def] = STATE(40), + [sym_preproc_function_def] = STATE(40), + [sym_preproc_call] = STATE(40), + [sym_preproc_if] = STATE(40), + [sym_preproc_ifdef] = STATE(40), + [sym_function_definition] = STATE(40), + [sym__old_style_function_definition] = STATE(289), + [sym_declaration] = STATE(40), + [sym_type_definition] = STATE(40), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1100), + [sym_linkage_specification] = STATE(40), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(694), + [sym_compound_statement] = STATE(172), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(791), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(253), + [sym_statement] = STATE(40), + [sym_labeled_statement] = STATE(172), + [sym_expression_statement] = STATE(172), + [sym_if_statement] = STATE(172), + [sym_switch_statement] = STATE(172), + [sym_case_statement] = STATE(172), + [sym_while_statement] = STATE(172), + [sym_do_statement] = STATE(172), + [sym_for_statement] = STATE(172), + [sym_return_statement] = STATE(172), + [sym_break_statement] = STATE(172), + [sym_continue_statement] = STATE(172), + [sym_goto_statement] = STATE(172), + [sym_seh_try_statement] = STATE(172), + [sym_seh_leave_statement] = STATE(172), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym__empty_declaration] = STATE(40), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_repeat1] = STATE(40), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(352), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), [sym_identifier] = ACTIONS(356), [aux_sym_preproc_include_token1] = ACTIONS(358), [aux_sym_preproc_def_token1] = ACTIONS(360), @@ -16710,6 +16661,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [30] = { + [sym__block_item] = STATE(28), [sym_preproc_include] = STATE(28), [sym_preproc_def] = STATE(28), [sym_preproc_function_def] = STATE(28), @@ -16717,71 +16669,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if] = STATE(28), [sym_preproc_ifdef] = STATE(28), [sym_function_definition] = STATE(28), - [sym__old_style_function_definition] = STATE(334), + [sym__old_style_function_definition] = STATE(289), [sym_declaration] = STATE(28), [sym_type_definition] = STATE(28), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1149), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1100), [sym_linkage_specification] = STATE(28), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(455), - [sym_ms_declspec_modifier] = STATE(752), - [sym_ms_call_modifier] = STATE(730), - [sym_compound_statement] = STATE(28), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(859), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym_attributed_statement] = STATE(28), - [sym_labeled_statement] = STATE(28), - [sym_expression_statement] = STATE(28), - [sym_if_statement] = STATE(28), - [sym_switch_statement] = STATE(28), - [sym_case_statement] = STATE(28), - [sym_while_statement] = STATE(28), - [sym_do_statement] = STATE(28), - [sym_for_statement] = STATE(28), - [sym_return_statement] = STATE(28), - [sym_break_statement] = STATE(28), - [sym_continue_statement] = STATE(28), - [sym_goto_statement] = STATE(28), - [sym_seh_try_statement] = STATE(28), - [sym_seh_leave_statement] = STATE(28), - [sym__expression] = STATE(1089), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1976), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(694), + [sym_compound_statement] = STATE(172), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(791), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(253), + [sym_statement] = STATE(28), + [sym_labeled_statement] = STATE(172), + [sym_expression_statement] = STATE(172), + [sym_if_statement] = STATE(172), + [sym_switch_statement] = STATE(172), + [sym_case_statement] = STATE(172), + [sym_while_statement] = STATE(172), + [sym_do_statement] = STATE(172), + [sym_for_statement] = STATE(172), + [sym_return_statement] = STATE(172), + [sym_break_statement] = STATE(172), + [sym_continue_statement] = STATE(172), + [sym_goto_statement] = STATE(172), + [sym_seh_try_statement] = STATE(172), + [sym_seh_leave_statement] = STATE(172), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), [sym__empty_declaration] = STATE(28), - [sym_macro_type_specifier] = STATE(822), + [sym_macro_type_specifier] = STATE(771), [aux_sym_preproc_if_repeat1] = STATE(28), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_attributed_declarator_repeat1] = STATE(393), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(352), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), [sym_identifier] = ACTIONS(356), [aux_sym_preproc_include_token1] = ACTIONS(358), [aux_sym_preproc_def_token1] = ACTIONS(360), @@ -16881,78 +16833,251 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [31] = { - [sym_preproc_include] = STATE(35), - [sym_preproc_def] = STATE(35), - [sym_preproc_function_def] = STATE(35), - [sym_preproc_call] = STATE(35), - [sym_preproc_if] = STATE(35), - [sym_preproc_ifdef] = STATE(35), - [sym_function_definition] = STATE(35), - [sym__old_style_function_definition] = STATE(334), - [sym_declaration] = STATE(35), - [sym_type_definition] = STATE(35), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1149), - [sym_linkage_specification] = STATE(35), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(455), - [sym_ms_declspec_modifier] = STATE(752), - [sym_ms_call_modifier] = STATE(730), - [sym_compound_statement] = STATE(35), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(859), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym_attributed_statement] = STATE(35), - [sym_labeled_statement] = STATE(35), - [sym_expression_statement] = STATE(35), - [sym_if_statement] = STATE(35), - [sym_switch_statement] = STATE(35), - [sym_case_statement] = STATE(35), - [sym_while_statement] = STATE(35), - [sym_do_statement] = STATE(35), - [sym_for_statement] = STATE(35), - [sym_return_statement] = STATE(35), - [sym_break_statement] = STATE(35), - [sym_continue_statement] = STATE(35), - [sym_goto_statement] = STATE(35), - [sym_seh_try_statement] = STATE(35), - [sym_seh_leave_statement] = STATE(35), - [sym__expression] = STATE(1089), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1976), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym__empty_declaration] = STATE(35), - [sym_macro_type_specifier] = STATE(822), - [aux_sym_preproc_if_repeat1] = STATE(35), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_attributed_declarator_repeat1] = STATE(393), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym__block_item] = STATE(31), + [sym_preproc_include] = STATE(31), + [sym_preproc_def] = STATE(31), + [sym_preproc_function_def] = STATE(31), + [sym_preproc_call] = STATE(31), + [sym_preproc_if] = STATE(31), + [sym_preproc_ifdef] = STATE(31), + [sym_function_definition] = STATE(31), + [sym__old_style_function_definition] = STATE(273), + [sym_declaration] = STATE(31), + [sym_type_definition] = STATE(31), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1099), + [sym_linkage_specification] = STATE(31), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(691), + [sym_compound_statement] = STATE(229), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(787), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(271), + [sym_statement] = STATE(31), + [sym_labeled_statement] = STATE(229), + [sym_expression_statement] = STATE(229), + [sym_if_statement] = STATE(229), + [sym_switch_statement] = STATE(229), + [sym_case_statement] = STATE(229), + [sym_while_statement] = STATE(229), + [sym_do_statement] = STATE(229), + [sym_for_statement] = STATE(229), + [sym_return_statement] = STATE(229), + [sym_break_statement] = STATE(229), + [sym_continue_statement] = STATE(229), + [sym_goto_statement] = STATE(229), + [sym_seh_try_statement] = STATE(229), + [sym_seh_leave_statement] = STATE(229), + [sym_expression] = STATE(1004), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1799), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym__empty_declaration] = STATE(31), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_repeat1] = STATE(31), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(317), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(468), + [aux_sym_preproc_include_token1] = ACTIONS(471), + [aux_sym_preproc_def_token1] = ACTIONS(474), + [aux_sym_preproc_if_token1] = ACTIONS(477), + [aux_sym_preproc_if_token2] = ACTIONS(213), + [aux_sym_preproc_ifdef_token1] = ACTIONS(480), + [aux_sym_preproc_ifdef_token2] = ACTIONS(480), + [sym_preproc_directive] = ACTIONS(483), + [anon_sym_LPAREN2] = ACTIONS(221), + [anon_sym_BANG] = ACTIONS(224), + [anon_sym_TILDE] = ACTIONS(224), + [anon_sym_DASH] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(227), + [anon_sym_STAR] = ACTIONS(230), + [anon_sym_AMP] = ACTIONS(230), + [anon_sym_SEMI] = ACTIONS(486), + [anon_sym___extension__] = ACTIONS(489), + [anon_sym_typedef] = ACTIONS(492), + [anon_sym_extern] = ACTIONS(495), + [anon_sym___attribute__] = ACTIONS(245), + [anon_sym_LBRACK_LBRACK] = ACTIONS(248), + [anon_sym___declspec] = ACTIONS(251), + [anon_sym___cdecl] = ACTIONS(254), + [anon_sym___clrcall] = ACTIONS(254), + [anon_sym___stdcall] = ACTIONS(254), + [anon_sym___fastcall] = ACTIONS(254), + [anon_sym___thiscall] = ACTIONS(254), + [anon_sym___vectorcall] = ACTIONS(254), + [anon_sym_LBRACE] = ACTIONS(498), + [anon_sym_signed] = ACTIONS(260), + [anon_sym_unsigned] = ACTIONS(260), + [anon_sym_long] = ACTIONS(260), + [anon_sym_short] = ACTIONS(260), + [anon_sym_static] = ACTIONS(263), + [anon_sym_auto] = ACTIONS(263), + [anon_sym_register] = ACTIONS(263), + [anon_sym_inline] = ACTIONS(263), + [anon_sym___inline] = ACTIONS(263), + [anon_sym___inline__] = ACTIONS(263), + [anon_sym___forceinline] = ACTIONS(263), + [anon_sym_thread_local] = ACTIONS(263), + [anon_sym___thread] = ACTIONS(263), + [anon_sym_const] = ACTIONS(266), + [anon_sym_constexpr] = ACTIONS(266), + [anon_sym_volatile] = ACTIONS(266), + [anon_sym_restrict] = ACTIONS(266), + [anon_sym___restrict__] = ACTIONS(266), + [anon_sym__Atomic] = ACTIONS(266), + [anon_sym__Noreturn] = ACTIONS(266), + [anon_sym_noreturn] = ACTIONS(266), + [anon_sym_alignas] = ACTIONS(269), + [anon_sym__Alignas] = ACTIONS(269), + [sym_primitive_type] = ACTIONS(272), + [anon_sym_enum] = ACTIONS(275), + [anon_sym_struct] = ACTIONS(278), + [anon_sym_union] = ACTIONS(281), + [anon_sym_if] = ACTIONS(501), + [anon_sym_switch] = ACTIONS(504), + [anon_sym_case] = ACTIONS(507), + [anon_sym_default] = ACTIONS(510), + [anon_sym_while] = ACTIONS(513), + [anon_sym_do] = ACTIONS(516), + [anon_sym_for] = ACTIONS(519), + [anon_sym_return] = ACTIONS(522), + [anon_sym_break] = ACTIONS(525), + [anon_sym_continue] = ACTIONS(528), + [anon_sym_goto] = ACTIONS(531), + [anon_sym___try] = ACTIONS(534), + [anon_sym___leave] = ACTIONS(537), + [anon_sym_DASH_DASH] = ACTIONS(323), + [anon_sym_PLUS_PLUS] = ACTIONS(323), + [anon_sym_sizeof] = ACTIONS(326), + [anon_sym___alignof__] = ACTIONS(329), + [anon_sym___alignof] = ACTIONS(329), + [anon_sym__alignof] = ACTIONS(329), + [anon_sym_alignof] = ACTIONS(329), + [anon_sym__Alignof] = ACTIONS(329), + [anon_sym_offsetof] = ACTIONS(332), + [anon_sym__Generic] = ACTIONS(335), + [anon_sym_asm] = ACTIONS(338), + [anon_sym___asm__] = ACTIONS(338), + [sym_number_literal] = ACTIONS(341), + [anon_sym_L_SQUOTE] = ACTIONS(344), + [anon_sym_u_SQUOTE] = ACTIONS(344), + [anon_sym_U_SQUOTE] = ACTIONS(344), + [anon_sym_u8_SQUOTE] = ACTIONS(344), + [anon_sym_SQUOTE] = ACTIONS(344), + [anon_sym_L_DQUOTE] = ACTIONS(347), + [anon_sym_u_DQUOTE] = ACTIONS(347), + [anon_sym_U_DQUOTE] = ACTIONS(347), + [anon_sym_u8_DQUOTE] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(347), + [sym_true] = ACTIONS(350), + [sym_false] = ACTIONS(350), + [anon_sym_NULL] = ACTIONS(353), + [anon_sym_nullptr] = ACTIONS(353), + [sym_comment] = ACTIONS(3), + }, + [32] = { + [sym__block_item] = STATE(33), + [sym_preproc_include] = STATE(33), + [sym_preproc_def] = STATE(33), + [sym_preproc_function_def] = STATE(33), + [sym_preproc_call] = STATE(33), + [sym_preproc_if] = STATE(33), + [sym_preproc_ifdef] = STATE(33), + [sym_function_definition] = STATE(33), + [sym__old_style_function_definition] = STATE(289), + [sym_declaration] = STATE(33), + [sym_type_definition] = STATE(33), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1100), + [sym_linkage_specification] = STATE(33), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(694), + [sym_compound_statement] = STATE(172), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(791), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(253), + [sym_statement] = STATE(33), + [sym_labeled_statement] = STATE(172), + [sym_expression_statement] = STATE(172), + [sym_if_statement] = STATE(172), + [sym_switch_statement] = STATE(172), + [sym_case_statement] = STATE(172), + [sym_while_statement] = STATE(172), + [sym_do_statement] = STATE(172), + [sym_for_statement] = STATE(172), + [sym_return_statement] = STATE(172), + [sym_break_statement] = STATE(172), + [sym_continue_statement] = STATE(172), + [sym_goto_statement] = STATE(172), + [sym_seh_try_statement] = STATE(172), + [sym_seh_leave_statement] = STATE(172), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym__empty_declaration] = STATE(33), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_repeat1] = STATE(33), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(352), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), [sym_identifier] = ACTIONS(356), [aux_sym_preproc_include_token1] = ACTIONS(358), [aux_sym_preproc_def_token1] = ACTIONS(360), @@ -16981,7 +17106,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(376), - [anon_sym_RBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(540), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -17051,79 +17176,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [32] = { - [sym_preproc_include] = STATE(29), - [sym_preproc_def] = STATE(29), - [sym_preproc_function_def] = STATE(29), - [sym_preproc_call] = STATE(29), - [sym_preproc_if] = STATE(29), - [sym_preproc_ifdef] = STATE(29), - [sym_function_definition] = STATE(29), - [sym__old_style_function_definition] = STATE(334), - [sym_declaration] = STATE(29), - [sym_type_definition] = STATE(29), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1149), - [sym_linkage_specification] = STATE(29), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(455), - [sym_ms_declspec_modifier] = STATE(752), - [sym_ms_call_modifier] = STATE(730), - [sym_compound_statement] = STATE(29), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(859), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym_attributed_statement] = STATE(29), - [sym_labeled_statement] = STATE(29), - [sym_expression_statement] = STATE(29), - [sym_if_statement] = STATE(29), - [sym_switch_statement] = STATE(29), - [sym_case_statement] = STATE(29), - [sym_while_statement] = STATE(29), - [sym_do_statement] = STATE(29), - [sym_for_statement] = STATE(29), - [sym_return_statement] = STATE(29), - [sym_break_statement] = STATE(29), - [sym_continue_statement] = STATE(29), - [sym_goto_statement] = STATE(29), - [sym_seh_try_statement] = STATE(29), - [sym_seh_leave_statement] = STATE(29), - [sym__expression] = STATE(1089), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1976), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym__empty_declaration] = STATE(29), - [sym_macro_type_specifier] = STATE(822), - [aux_sym_preproc_if_repeat1] = STATE(29), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_attributed_declarator_repeat1] = STATE(393), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [33] = { + [sym__block_item] = STATE(40), + [sym_preproc_include] = STATE(40), + [sym_preproc_def] = STATE(40), + [sym_preproc_function_def] = STATE(40), + [sym_preproc_call] = STATE(40), + [sym_preproc_if] = STATE(40), + [sym_preproc_ifdef] = STATE(40), + [sym_function_definition] = STATE(40), + [sym__old_style_function_definition] = STATE(289), + [sym_declaration] = STATE(40), + [sym_type_definition] = STATE(40), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1100), + [sym_linkage_specification] = STATE(40), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(694), + [sym_compound_statement] = STATE(172), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(791), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(253), + [sym_statement] = STATE(40), + [sym_labeled_statement] = STATE(172), + [sym_expression_statement] = STATE(172), + [sym_if_statement] = STATE(172), + [sym_switch_statement] = STATE(172), + [sym_case_statement] = STATE(172), + [sym_while_statement] = STATE(172), + [sym_do_statement] = STATE(172), + [sym_for_statement] = STATE(172), + [sym_return_statement] = STATE(172), + [sym_break_statement] = STATE(172), + [sym_continue_statement] = STATE(172), + [sym_goto_statement] = STATE(172), + [sym_seh_try_statement] = STATE(172), + [sym_seh_leave_statement] = STATE(172), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym__empty_declaration] = STATE(40), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_repeat1] = STATE(40), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(352), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), [sym_identifier] = ACTIONS(356), [aux_sym_preproc_include_token1] = ACTIONS(358), [aux_sym_preproc_def_token1] = ACTIONS(360), @@ -17152,7 +17278,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(376), - [anon_sym_RBRACE] = ACTIONS(470), + [anon_sym_RBRACE] = ACTIONS(542), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -17222,79 +17348,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [33] = { - [sym_preproc_include] = STATE(31), - [sym_preproc_def] = STATE(31), - [sym_preproc_function_def] = STATE(31), - [sym_preproc_call] = STATE(31), - [sym_preproc_if] = STATE(31), - [sym_preproc_ifdef] = STATE(31), - [sym_function_definition] = STATE(31), - [sym__old_style_function_definition] = STATE(334), - [sym_declaration] = STATE(31), - [sym_type_definition] = STATE(31), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1149), - [sym_linkage_specification] = STATE(31), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(455), - [sym_ms_declspec_modifier] = STATE(752), - [sym_ms_call_modifier] = STATE(730), - [sym_compound_statement] = STATE(31), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(859), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym_attributed_statement] = STATE(31), - [sym_labeled_statement] = STATE(31), - [sym_expression_statement] = STATE(31), - [sym_if_statement] = STATE(31), - [sym_switch_statement] = STATE(31), - [sym_case_statement] = STATE(31), - [sym_while_statement] = STATE(31), - [sym_do_statement] = STATE(31), - [sym_for_statement] = STATE(31), - [sym_return_statement] = STATE(31), - [sym_break_statement] = STATE(31), - [sym_continue_statement] = STATE(31), - [sym_goto_statement] = STATE(31), - [sym_seh_try_statement] = STATE(31), - [sym_seh_leave_statement] = STATE(31), - [sym__expression] = STATE(1089), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1976), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym__empty_declaration] = STATE(31), - [sym_macro_type_specifier] = STATE(822), - [aux_sym_preproc_if_repeat1] = STATE(31), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_attributed_declarator_repeat1] = STATE(393), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [34] = { + [sym__block_item] = STATE(41), + [sym_preproc_include] = STATE(41), + [sym_preproc_def] = STATE(41), + [sym_preproc_function_def] = STATE(41), + [sym_preproc_call] = STATE(41), + [sym_preproc_if] = STATE(41), + [sym_preproc_ifdef] = STATE(41), + [sym_function_definition] = STATE(41), + [sym__old_style_function_definition] = STATE(289), + [sym_declaration] = STATE(41), + [sym_type_definition] = STATE(41), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1100), + [sym_linkage_specification] = STATE(41), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(694), + [sym_compound_statement] = STATE(172), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(791), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(253), + [sym_statement] = STATE(41), + [sym_labeled_statement] = STATE(172), + [sym_expression_statement] = STATE(172), + [sym_if_statement] = STATE(172), + [sym_switch_statement] = STATE(172), + [sym_case_statement] = STATE(172), + [sym_while_statement] = STATE(172), + [sym_do_statement] = STATE(172), + [sym_for_statement] = STATE(172), + [sym_return_statement] = STATE(172), + [sym_break_statement] = STATE(172), + [sym_continue_statement] = STATE(172), + [sym_goto_statement] = STATE(172), + [sym_seh_try_statement] = STATE(172), + [sym_seh_leave_statement] = STATE(172), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym__empty_declaration] = STATE(41), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_repeat1] = STATE(41), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(352), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), [sym_identifier] = ACTIONS(356), [aux_sym_preproc_include_token1] = ACTIONS(358), [aux_sym_preproc_def_token1] = ACTIONS(360), @@ -17323,7 +17450,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(376), - [anon_sym_RBRACE] = ACTIONS(472), + [anon_sym_RBRACE] = ACTIONS(544), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -17393,79 +17520,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [34] = { - [sym_preproc_include] = STATE(23), - [sym_preproc_def] = STATE(23), - [sym_preproc_function_def] = STATE(23), - [sym_preproc_call] = STATE(23), - [sym_preproc_if] = STATE(23), - [sym_preproc_ifdef] = STATE(23), - [sym_function_definition] = STATE(23), - [sym__old_style_function_definition] = STATE(334), - [sym_declaration] = STATE(23), - [sym_type_definition] = STATE(23), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1149), - [sym_linkage_specification] = STATE(23), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(455), - [sym_ms_declspec_modifier] = STATE(752), - [sym_ms_call_modifier] = STATE(730), - [sym_compound_statement] = STATE(23), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(859), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym_attributed_statement] = STATE(23), - [sym_labeled_statement] = STATE(23), - [sym_expression_statement] = STATE(23), - [sym_if_statement] = STATE(23), - [sym_switch_statement] = STATE(23), - [sym_case_statement] = STATE(23), - [sym_while_statement] = STATE(23), - [sym_do_statement] = STATE(23), - [sym_for_statement] = STATE(23), - [sym_return_statement] = STATE(23), - [sym_break_statement] = STATE(23), - [sym_continue_statement] = STATE(23), - [sym_goto_statement] = STATE(23), - [sym_seh_try_statement] = STATE(23), - [sym_seh_leave_statement] = STATE(23), - [sym__expression] = STATE(1089), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1976), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym__empty_declaration] = STATE(23), - [sym_macro_type_specifier] = STATE(822), - [aux_sym_preproc_if_repeat1] = STATE(23), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_attributed_declarator_repeat1] = STATE(393), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [35] = { + [sym__block_item] = STATE(40), + [sym_preproc_include] = STATE(40), + [sym_preproc_def] = STATE(40), + [sym_preproc_function_def] = STATE(40), + [sym_preproc_call] = STATE(40), + [sym_preproc_if] = STATE(40), + [sym_preproc_ifdef] = STATE(40), + [sym_function_definition] = STATE(40), + [sym__old_style_function_definition] = STATE(289), + [sym_declaration] = STATE(40), + [sym_type_definition] = STATE(40), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1100), + [sym_linkage_specification] = STATE(40), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(694), + [sym_compound_statement] = STATE(172), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(791), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(253), + [sym_statement] = STATE(40), + [sym_labeled_statement] = STATE(172), + [sym_expression_statement] = STATE(172), + [sym_if_statement] = STATE(172), + [sym_switch_statement] = STATE(172), + [sym_case_statement] = STATE(172), + [sym_while_statement] = STATE(172), + [sym_do_statement] = STATE(172), + [sym_for_statement] = STATE(172), + [sym_return_statement] = STATE(172), + [sym_break_statement] = STATE(172), + [sym_continue_statement] = STATE(172), + [sym_goto_statement] = STATE(172), + [sym_seh_try_statement] = STATE(172), + [sym_seh_leave_statement] = STATE(172), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym__empty_declaration] = STATE(40), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_repeat1] = STATE(40), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(352), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), [sym_identifier] = ACTIONS(356), [aux_sym_preproc_include_token1] = ACTIONS(358), [aux_sym_preproc_def_token1] = ACTIONS(360), @@ -17494,7 +17622,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(376), - [anon_sym_RBRACE] = ACTIONS(474), + [anon_sym_RBRACE] = ACTIONS(546), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -17564,257 +17692,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [35] = { - [sym_preproc_include] = STATE(35), - [sym_preproc_def] = STATE(35), - [sym_preproc_function_def] = STATE(35), - [sym_preproc_call] = STATE(35), - [sym_preproc_if] = STATE(35), - [sym_preproc_ifdef] = STATE(35), - [sym_function_definition] = STATE(35), - [sym__old_style_function_definition] = STATE(334), - [sym_declaration] = STATE(35), - [sym_type_definition] = STATE(35), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1149), - [sym_linkage_specification] = STATE(35), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(455), - [sym_ms_declspec_modifier] = STATE(752), - [sym_ms_call_modifier] = STATE(730), - [sym_compound_statement] = STATE(35), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(859), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym_attributed_statement] = STATE(35), - [sym_labeled_statement] = STATE(35), - [sym_expression_statement] = STATE(35), - [sym_if_statement] = STATE(35), - [sym_switch_statement] = STATE(35), - [sym_case_statement] = STATE(35), - [sym_while_statement] = STATE(35), - [sym_do_statement] = STATE(35), - [sym_for_statement] = STATE(35), - [sym_return_statement] = STATE(35), - [sym_break_statement] = STATE(35), - [sym_continue_statement] = STATE(35), - [sym_goto_statement] = STATE(35), - [sym_seh_try_statement] = STATE(35), - [sym_seh_leave_statement] = STATE(35), - [sym__expression] = STATE(1089), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1976), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym__empty_declaration] = STATE(35), - [sym_macro_type_specifier] = STATE(822), - [aux_sym_preproc_if_repeat1] = STATE(35), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_attributed_declarator_repeat1] = STATE(393), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), - [sym_identifier] = ACTIONS(476), - [aux_sym_preproc_include_token1] = ACTIONS(479), - [aux_sym_preproc_def_token1] = ACTIONS(482), - [aux_sym_preproc_if_token1] = ACTIONS(485), - [aux_sym_preproc_ifdef_token1] = ACTIONS(488), - [aux_sym_preproc_ifdef_token2] = ACTIONS(488), - [sym_preproc_directive] = ACTIONS(491), - [anon_sym_LPAREN2] = ACTIONS(221), - [anon_sym_BANG] = ACTIONS(224), - [anon_sym_TILDE] = ACTIONS(224), - [anon_sym_DASH] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(227), - [anon_sym_STAR] = ACTIONS(230), - [anon_sym_AMP] = ACTIONS(230), - [anon_sym_SEMI] = ACTIONS(494), - [anon_sym___extension__] = ACTIONS(497), - [anon_sym_typedef] = ACTIONS(500), - [anon_sym_extern] = ACTIONS(503), - [anon_sym___attribute__] = ACTIONS(245), - [anon_sym_LBRACK_LBRACK] = ACTIONS(248), - [anon_sym___declspec] = ACTIONS(251), - [anon_sym___cdecl] = ACTIONS(254), - [anon_sym___clrcall] = ACTIONS(254), - [anon_sym___stdcall] = ACTIONS(254), - [anon_sym___fastcall] = ACTIONS(254), - [anon_sym___thiscall] = ACTIONS(254), - [anon_sym___vectorcall] = ACTIONS(254), - [anon_sym_LBRACE] = ACTIONS(506), - [anon_sym_RBRACE] = ACTIONS(509), - [anon_sym_signed] = ACTIONS(260), - [anon_sym_unsigned] = ACTIONS(260), - [anon_sym_long] = ACTIONS(260), - [anon_sym_short] = ACTIONS(260), - [anon_sym_static] = ACTIONS(263), - [anon_sym_auto] = ACTIONS(263), - [anon_sym_register] = ACTIONS(263), - [anon_sym_inline] = ACTIONS(263), - [anon_sym___inline] = ACTIONS(263), - [anon_sym___inline__] = ACTIONS(263), - [anon_sym___forceinline] = ACTIONS(263), - [anon_sym_thread_local] = ACTIONS(263), - [anon_sym___thread] = ACTIONS(263), - [anon_sym_const] = ACTIONS(266), - [anon_sym_constexpr] = ACTIONS(266), - [anon_sym_volatile] = ACTIONS(266), - [anon_sym_restrict] = ACTIONS(266), - [anon_sym___restrict__] = ACTIONS(266), - [anon_sym__Atomic] = ACTIONS(266), - [anon_sym__Noreturn] = ACTIONS(266), - [anon_sym_noreturn] = ACTIONS(266), - [anon_sym_alignas] = ACTIONS(269), - [anon_sym__Alignas] = ACTIONS(269), - [sym_primitive_type] = ACTIONS(272), - [anon_sym_enum] = ACTIONS(275), - [anon_sym_struct] = ACTIONS(278), - [anon_sym_union] = ACTIONS(281), - [anon_sym_if] = ACTIONS(511), - [anon_sym_switch] = ACTIONS(514), - [anon_sym_case] = ACTIONS(517), - [anon_sym_default] = ACTIONS(520), - [anon_sym_while] = ACTIONS(523), - [anon_sym_do] = ACTIONS(526), - [anon_sym_for] = ACTIONS(529), - [anon_sym_return] = ACTIONS(532), - [anon_sym_break] = ACTIONS(535), - [anon_sym_continue] = ACTIONS(538), - [anon_sym_goto] = ACTIONS(541), - [anon_sym___try] = ACTIONS(544), - [anon_sym___leave] = ACTIONS(547), - [anon_sym_DASH_DASH] = ACTIONS(323), - [anon_sym_PLUS_PLUS] = ACTIONS(323), - [anon_sym_sizeof] = ACTIONS(326), - [anon_sym___alignof__] = ACTIONS(329), - [anon_sym___alignof] = ACTIONS(329), - [anon_sym__alignof] = ACTIONS(329), - [anon_sym_alignof] = ACTIONS(329), - [anon_sym__Alignof] = ACTIONS(329), - [anon_sym_offsetof] = ACTIONS(332), - [anon_sym__Generic] = ACTIONS(335), - [anon_sym_asm] = ACTIONS(338), - [anon_sym___asm__] = ACTIONS(338), - [sym_number_literal] = ACTIONS(341), - [anon_sym_L_SQUOTE] = ACTIONS(344), - [anon_sym_u_SQUOTE] = ACTIONS(344), - [anon_sym_U_SQUOTE] = ACTIONS(344), - [anon_sym_u8_SQUOTE] = ACTIONS(344), - [anon_sym_SQUOTE] = ACTIONS(344), - [anon_sym_L_DQUOTE] = ACTIONS(347), - [anon_sym_u_DQUOTE] = ACTIONS(347), - [anon_sym_U_DQUOTE] = ACTIONS(347), - [anon_sym_u8_DQUOTE] = ACTIONS(347), - [anon_sym_DQUOTE] = ACTIONS(347), - [sym_true] = ACTIONS(350), - [sym_false] = ACTIONS(350), - [anon_sym_NULL] = ACTIONS(353), - [anon_sym_nullptr] = ACTIONS(353), - [sym_comment] = ACTIONS(3), - }, [36] = { - [sym_preproc_include] = STATE(40), - [sym_preproc_def] = STATE(40), - [sym_preproc_function_def] = STATE(40), - [sym_preproc_call] = STATE(40), - [sym_preproc_if] = STATE(40), - [sym_preproc_ifdef] = STATE(40), - [sym_function_definition] = STATE(40), - [sym__old_style_function_definition] = STATE(334), - [sym_declaration] = STATE(40), - [sym_type_definition] = STATE(40), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1149), - [sym_linkage_specification] = STATE(40), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(455), - [sym_ms_declspec_modifier] = STATE(752), - [sym_ms_call_modifier] = STATE(730), - [sym_compound_statement] = STATE(40), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(859), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym_attributed_statement] = STATE(40), - [sym_labeled_statement] = STATE(40), - [sym_expression_statement] = STATE(40), - [sym_if_statement] = STATE(40), - [sym_switch_statement] = STATE(40), - [sym_case_statement] = STATE(40), - [sym_while_statement] = STATE(40), - [sym_do_statement] = STATE(40), - [sym_for_statement] = STATE(40), - [sym_return_statement] = STATE(40), - [sym_break_statement] = STATE(40), - [sym_continue_statement] = STATE(40), - [sym_goto_statement] = STATE(40), - [sym_seh_try_statement] = STATE(40), - [sym_seh_leave_statement] = STATE(40), - [sym__expression] = STATE(1089), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1976), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym__empty_declaration] = STATE(40), - [sym_macro_type_specifier] = STATE(822), - [aux_sym_preproc_if_repeat1] = STATE(40), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_attributed_declarator_repeat1] = STATE(393), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), - [sym_identifier] = ACTIONS(356), - [aux_sym_preproc_include_token1] = ACTIONS(358), - [aux_sym_preproc_def_token1] = ACTIONS(360), - [aux_sym_preproc_if_token1] = ACTIONS(362), - [aux_sym_preproc_ifdef_token1] = ACTIONS(364), - [aux_sym_preproc_ifdef_token2] = ACTIONS(364), - [sym_preproc_directive] = ACTIONS(366), + [sym__block_item] = STATE(26), + [sym_preproc_include] = STATE(26), + [sym_preproc_def] = STATE(26), + [sym_preproc_function_def] = STATE(26), + [sym_preproc_call] = STATE(26), + [sym_preproc_if] = STATE(26), + [sym_preproc_ifdef] = STATE(26), + [sym_function_definition] = STATE(26), + [sym__old_style_function_definition] = STATE(273), + [sym_declaration] = STATE(26), + [sym_type_definition] = STATE(26), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1099), + [sym_linkage_specification] = STATE(26), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(691), + [sym_compound_statement] = STATE(229), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(787), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(271), + [sym_statement] = STATE(26), + [sym_labeled_statement] = STATE(229), + [sym_expression_statement] = STATE(229), + [sym_if_statement] = STATE(229), + [sym_switch_statement] = STATE(229), + [sym_case_statement] = STATE(229), + [sym_while_statement] = STATE(229), + [sym_do_statement] = STATE(229), + [sym_for_statement] = STATE(229), + [sym_return_statement] = STATE(229), + [sym_break_statement] = STATE(229), + [sym_continue_statement] = STATE(229), + [sym_goto_statement] = STATE(229), + [sym_seh_try_statement] = STATE(229), + [sym_seh_leave_statement] = STATE(229), + [sym_expression] = STATE(1004), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1799), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym__empty_declaration] = STATE(26), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_repeat1] = STATE(26), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(317), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(410), + [aux_sym_preproc_include_token1] = ACTIONS(412), + [aux_sym_preproc_def_token1] = ACTIONS(414), + [aux_sym_preproc_if_token1] = ACTIONS(416), + [aux_sym_preproc_if_token2] = ACTIONS(548), + [aux_sym_preproc_ifdef_token1] = ACTIONS(420), + [aux_sym_preproc_ifdef_token2] = ACTIONS(420), + [sym_preproc_directive] = ACTIONS(422), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -17822,10 +17781,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(368), - [anon_sym___extension__] = ACTIONS(370), - [anon_sym_typedef] = ACTIONS(372), - [anon_sym_extern] = ACTIONS(374), + [anon_sym_SEMI] = ACTIONS(424), + [anon_sym___extension__] = ACTIONS(426), + [anon_sym_typedef] = ACTIONS(428), + [anon_sym_extern] = ACTIONS(430), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -17835,8 +17794,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(376), - [anon_sym_RBRACE] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(432), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -17864,19 +17822,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(53), [anon_sym_struct] = ACTIONS(55), [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(380), - [anon_sym_switch] = ACTIONS(382), - [anon_sym_case] = ACTIONS(384), - [anon_sym_default] = ACTIONS(386), - [anon_sym_while] = ACTIONS(388), - [anon_sym_do] = ACTIONS(390), - [anon_sym_for] = ACTIONS(392), - [anon_sym_return] = ACTIONS(394), - [anon_sym_break] = ACTIONS(396), - [anon_sym_continue] = ACTIONS(398), - [anon_sym_goto] = ACTIONS(400), - [anon_sym___try] = ACTIONS(402), - [anon_sym___leave] = ACTIONS(404), + [anon_sym_if] = ACTIONS(434), + [anon_sym_switch] = ACTIONS(436), + [anon_sym_case] = ACTIONS(438), + [anon_sym_default] = ACTIONS(440), + [anon_sym_while] = ACTIONS(442), + [anon_sym_do] = ACTIONS(444), + [anon_sym_for] = ACTIONS(446), + [anon_sym_return] = ACTIONS(448), + [anon_sym_break] = ACTIONS(450), + [anon_sym_continue] = ACTIONS(452), + [anon_sym_goto] = ACTIONS(454), + [anon_sym___try] = ACTIONS(456), + [anon_sym___leave] = ACTIONS(458), [anon_sym_DASH_DASH] = ACTIONS(81), [anon_sym_PLUS_PLUS] = ACTIONS(81), [anon_sym_sizeof] = ACTIONS(83), @@ -17907,78 +17865,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [37] = { - [sym_preproc_include] = STATE(27), - [sym_preproc_def] = STATE(27), - [sym_preproc_function_def] = STATE(27), - [sym_preproc_call] = STATE(27), - [sym_preproc_if] = STATE(27), - [sym_preproc_ifdef] = STATE(27), - [sym_function_definition] = STATE(27), - [sym__old_style_function_definition] = STATE(334), - [sym_declaration] = STATE(27), - [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1149), - [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(455), - [sym_ms_declspec_modifier] = STATE(752), - [sym_ms_call_modifier] = STATE(730), - [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(859), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym_attributed_statement] = STATE(27), - [sym_labeled_statement] = STATE(27), - [sym_expression_statement] = STATE(27), - [sym_if_statement] = STATE(27), - [sym_switch_statement] = STATE(27), - [sym_case_statement] = STATE(27), - [sym_while_statement] = STATE(27), - [sym_do_statement] = STATE(27), - [sym_for_statement] = STATE(27), - [sym_return_statement] = STATE(27), - [sym_break_statement] = STATE(27), - [sym_continue_statement] = STATE(27), - [sym_goto_statement] = STATE(27), - [sym_seh_try_statement] = STATE(27), - [sym_seh_leave_statement] = STATE(27), - [sym__expression] = STATE(1089), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1976), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(822), - [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_attributed_declarator_repeat1] = STATE(393), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym__block_item] = STATE(23), + [sym_preproc_include] = STATE(23), + [sym_preproc_def] = STATE(23), + [sym_preproc_function_def] = STATE(23), + [sym_preproc_call] = STATE(23), + [sym_preproc_if] = STATE(23), + [sym_preproc_ifdef] = STATE(23), + [sym_function_definition] = STATE(23), + [sym__old_style_function_definition] = STATE(289), + [sym_declaration] = STATE(23), + [sym_type_definition] = STATE(23), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1100), + [sym_linkage_specification] = STATE(23), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(694), + [sym_compound_statement] = STATE(172), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(791), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(253), + [sym_statement] = STATE(23), + [sym_labeled_statement] = STATE(172), + [sym_expression_statement] = STATE(172), + [sym_if_statement] = STATE(172), + [sym_switch_statement] = STATE(172), + [sym_case_statement] = STATE(172), + [sym_while_statement] = STATE(172), + [sym_do_statement] = STATE(172), + [sym_for_statement] = STATE(172), + [sym_return_statement] = STATE(172), + [sym_break_statement] = STATE(172), + [sym_continue_statement] = STATE(172), + [sym_goto_statement] = STATE(172), + [sym_seh_try_statement] = STATE(172), + [sym_seh_leave_statement] = STATE(172), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym__empty_declaration] = STATE(23), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_repeat1] = STATE(23), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(352), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), [sym_identifier] = ACTIONS(356), [aux_sym_preproc_include_token1] = ACTIONS(358), [aux_sym_preproc_def_token1] = ACTIONS(360), @@ -18007,7 +17966,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(376), - [anon_sym_RBRACE] = ACTIONS(552), + [anon_sym_RBRACE] = ACTIONS(550), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -18078,257 +18037,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [38] = { - [sym_preproc_include] = STATE(38), - [sym_preproc_def] = STATE(38), - [sym_preproc_function_def] = STATE(38), - [sym_preproc_call] = STATE(38), - [sym_preproc_if] = STATE(38), - [sym_preproc_ifdef] = STATE(38), - [sym_function_definition] = STATE(38), - [sym__old_style_function_definition] = STATE(353), - [sym_declaration] = STATE(38), - [sym_type_definition] = STATE(38), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1150), - [sym_linkage_specification] = STATE(38), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(455), - [sym_ms_declspec_modifier] = STATE(752), - [sym_ms_call_modifier] = STATE(733), - [sym_compound_statement] = STATE(38), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(855), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym_attributed_statement] = STATE(38), - [sym_labeled_statement] = STATE(38), - [sym_expression_statement] = STATE(38), - [sym_if_statement] = STATE(38), - [sym_switch_statement] = STATE(38), - [sym_case_statement] = STATE(38), - [sym_while_statement] = STATE(38), - [sym_do_statement] = STATE(38), - [sym_for_statement] = STATE(38), - [sym_return_statement] = STATE(38), - [sym_break_statement] = STATE(38), - [sym_continue_statement] = STATE(38), - [sym_goto_statement] = STATE(38), - [sym_seh_try_statement] = STATE(38), - [sym_seh_leave_statement] = STATE(38), - [sym__expression] = STATE(1054), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1853), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym__empty_declaration] = STATE(38), - [sym_macro_type_specifier] = STATE(822), - [aux_sym_preproc_if_repeat1] = STATE(38), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_attributed_declarator_repeat1] = STATE(404), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), - [sym_identifier] = ACTIONS(554), - [aux_sym_preproc_include_token1] = ACTIONS(557), - [aux_sym_preproc_def_token1] = ACTIONS(560), - [aux_sym_preproc_if_token1] = ACTIONS(563), - [aux_sym_preproc_if_token2] = ACTIONS(213), - [aux_sym_preproc_ifdef_token1] = ACTIONS(566), - [aux_sym_preproc_ifdef_token2] = ACTIONS(566), - [sym_preproc_directive] = ACTIONS(569), - [anon_sym_LPAREN2] = ACTIONS(221), - [anon_sym_BANG] = ACTIONS(224), - [anon_sym_TILDE] = ACTIONS(224), - [anon_sym_DASH] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(227), - [anon_sym_STAR] = ACTIONS(230), - [anon_sym_AMP] = ACTIONS(230), - [anon_sym_SEMI] = ACTIONS(572), - [anon_sym___extension__] = ACTIONS(575), - [anon_sym_typedef] = ACTIONS(578), - [anon_sym_extern] = ACTIONS(581), - [anon_sym___attribute__] = ACTIONS(245), - [anon_sym_LBRACK_LBRACK] = ACTIONS(248), - [anon_sym___declspec] = ACTIONS(251), - [anon_sym___cdecl] = ACTIONS(254), - [anon_sym___clrcall] = ACTIONS(254), - [anon_sym___stdcall] = ACTIONS(254), - [anon_sym___fastcall] = ACTIONS(254), - [anon_sym___thiscall] = ACTIONS(254), - [anon_sym___vectorcall] = ACTIONS(254), - [anon_sym_LBRACE] = ACTIONS(584), - [anon_sym_signed] = ACTIONS(260), - [anon_sym_unsigned] = ACTIONS(260), - [anon_sym_long] = ACTIONS(260), - [anon_sym_short] = ACTIONS(260), - [anon_sym_static] = ACTIONS(263), - [anon_sym_auto] = ACTIONS(263), - [anon_sym_register] = ACTIONS(263), - [anon_sym_inline] = ACTIONS(263), - [anon_sym___inline] = ACTIONS(263), - [anon_sym___inline__] = ACTIONS(263), - [anon_sym___forceinline] = ACTIONS(263), - [anon_sym_thread_local] = ACTIONS(263), - [anon_sym___thread] = ACTIONS(263), - [anon_sym_const] = ACTIONS(266), - [anon_sym_constexpr] = ACTIONS(266), - [anon_sym_volatile] = ACTIONS(266), - [anon_sym_restrict] = ACTIONS(266), - [anon_sym___restrict__] = ACTIONS(266), - [anon_sym__Atomic] = ACTIONS(266), - [anon_sym__Noreturn] = ACTIONS(266), - [anon_sym_noreturn] = ACTIONS(266), - [anon_sym_alignas] = ACTIONS(269), - [anon_sym__Alignas] = ACTIONS(269), - [sym_primitive_type] = ACTIONS(272), - [anon_sym_enum] = ACTIONS(275), - [anon_sym_struct] = ACTIONS(278), - [anon_sym_union] = ACTIONS(281), - [anon_sym_if] = ACTIONS(587), - [anon_sym_switch] = ACTIONS(590), - [anon_sym_case] = ACTIONS(593), - [anon_sym_default] = ACTIONS(596), - [anon_sym_while] = ACTIONS(599), - [anon_sym_do] = ACTIONS(602), - [anon_sym_for] = ACTIONS(605), - [anon_sym_return] = ACTIONS(608), - [anon_sym_break] = ACTIONS(611), - [anon_sym_continue] = ACTIONS(614), - [anon_sym_goto] = ACTIONS(617), - [anon_sym___try] = ACTIONS(620), - [anon_sym___leave] = ACTIONS(623), - [anon_sym_DASH_DASH] = ACTIONS(323), - [anon_sym_PLUS_PLUS] = ACTIONS(323), - [anon_sym_sizeof] = ACTIONS(326), - [anon_sym___alignof__] = ACTIONS(329), - [anon_sym___alignof] = ACTIONS(329), - [anon_sym__alignof] = ACTIONS(329), - [anon_sym_alignof] = ACTIONS(329), - [anon_sym__Alignof] = ACTIONS(329), - [anon_sym_offsetof] = ACTIONS(332), - [anon_sym__Generic] = ACTIONS(335), - [anon_sym_asm] = ACTIONS(338), - [anon_sym___asm__] = ACTIONS(338), - [sym_number_literal] = ACTIONS(341), - [anon_sym_L_SQUOTE] = ACTIONS(344), - [anon_sym_u_SQUOTE] = ACTIONS(344), - [anon_sym_U_SQUOTE] = ACTIONS(344), - [anon_sym_u8_SQUOTE] = ACTIONS(344), - [anon_sym_SQUOTE] = ACTIONS(344), - [anon_sym_L_DQUOTE] = ACTIONS(347), - [anon_sym_u_DQUOTE] = ACTIONS(347), - [anon_sym_U_DQUOTE] = ACTIONS(347), - [anon_sym_u8_DQUOTE] = ACTIONS(347), - [anon_sym_DQUOTE] = ACTIONS(347), - [sym_true] = ACTIONS(350), - [sym_false] = ACTIONS(350), - [anon_sym_NULL] = ACTIONS(353), - [anon_sym_nullptr] = ACTIONS(353), - [sym_comment] = ACTIONS(3), - }, - [39] = { - [sym_preproc_include] = STATE(26), - [sym_preproc_def] = STATE(26), - [sym_preproc_function_def] = STATE(26), - [sym_preproc_call] = STATE(26), - [sym_preproc_if] = STATE(26), - [sym_preproc_ifdef] = STATE(26), - [sym_function_definition] = STATE(26), - [sym__old_style_function_definition] = STATE(353), - [sym_declaration] = STATE(26), - [sym_type_definition] = STATE(26), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1150), - [sym_linkage_specification] = STATE(26), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(455), - [sym_ms_declspec_modifier] = STATE(752), - [sym_ms_call_modifier] = STATE(733), - [sym_compound_statement] = STATE(26), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(855), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym_attributed_statement] = STATE(26), - [sym_labeled_statement] = STATE(26), - [sym_expression_statement] = STATE(26), - [sym_if_statement] = STATE(26), - [sym_switch_statement] = STATE(26), - [sym_case_statement] = STATE(26), - [sym_while_statement] = STATE(26), - [sym_do_statement] = STATE(26), - [sym_for_statement] = STATE(26), - [sym_return_statement] = STATE(26), - [sym_break_statement] = STATE(26), - [sym_continue_statement] = STATE(26), - [sym_goto_statement] = STATE(26), - [sym_seh_try_statement] = STATE(26), - [sym_seh_leave_statement] = STATE(26), - [sym__expression] = STATE(1054), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1853), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym__empty_declaration] = STATE(26), - [sym_macro_type_specifier] = STATE(822), - [aux_sym_preproc_if_repeat1] = STATE(26), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_attributed_declarator_repeat1] = STATE(404), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), - [sym_identifier] = ACTIONS(410), - [aux_sym_preproc_include_token1] = ACTIONS(412), - [aux_sym_preproc_def_token1] = ACTIONS(414), - [aux_sym_preproc_if_token1] = ACTIONS(416), - [aux_sym_preproc_if_token2] = ACTIONS(626), - [aux_sym_preproc_ifdef_token1] = ACTIONS(420), - [aux_sym_preproc_ifdef_token2] = ACTIONS(420), - [sym_preproc_directive] = ACTIONS(422), + [sym__block_item] = STATE(29), + [sym_preproc_include] = STATE(29), + [sym_preproc_def] = STATE(29), + [sym_preproc_function_def] = STATE(29), + [sym_preproc_call] = STATE(29), + [sym_preproc_if] = STATE(29), + [sym_preproc_ifdef] = STATE(29), + [sym_function_definition] = STATE(29), + [sym__old_style_function_definition] = STATE(289), + [sym_declaration] = STATE(29), + [sym_type_definition] = STATE(29), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1100), + [sym_linkage_specification] = STATE(29), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(694), + [sym_compound_statement] = STATE(172), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(791), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(253), + [sym_statement] = STATE(29), + [sym_labeled_statement] = STATE(172), + [sym_expression_statement] = STATE(172), + [sym_if_statement] = STATE(172), + [sym_switch_statement] = STATE(172), + [sym_case_statement] = STATE(172), + [sym_while_statement] = STATE(172), + [sym_do_statement] = STATE(172), + [sym_for_statement] = STATE(172), + [sym_return_statement] = STATE(172), + [sym_break_statement] = STATE(172), + [sym_continue_statement] = STATE(172), + [sym_goto_statement] = STATE(172), + [sym_seh_try_statement] = STATE(172), + [sym_seh_leave_statement] = STATE(172), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym__empty_declaration] = STATE(29), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_repeat1] = STATE(29), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(352), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(356), + [aux_sym_preproc_include_token1] = ACTIONS(358), + [aux_sym_preproc_def_token1] = ACTIONS(360), + [aux_sym_preproc_if_token1] = ACTIONS(362), + [aux_sym_preproc_ifdef_token1] = ACTIONS(364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(364), + [sym_preproc_directive] = ACTIONS(366), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -18336,10 +18124,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(424), - [anon_sym___extension__] = ACTIONS(426), - [anon_sym_typedef] = ACTIONS(428), - [anon_sym_extern] = ACTIONS(430), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym___extension__] = ACTIONS(370), + [anon_sym_typedef] = ACTIONS(372), + [anon_sym_extern] = ACTIONS(374), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -18349,7 +18137,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(376), + [anon_sym_RBRACE] = ACTIONS(552), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -18377,19 +18166,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(53), [anon_sym_struct] = ACTIONS(55), [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(434), - [anon_sym_switch] = ACTIONS(436), - [anon_sym_case] = ACTIONS(438), - [anon_sym_default] = ACTIONS(440), - [anon_sym_while] = ACTIONS(442), - [anon_sym_do] = ACTIONS(444), - [anon_sym_for] = ACTIONS(446), - [anon_sym_return] = ACTIONS(448), - [anon_sym_break] = ACTIONS(450), - [anon_sym_continue] = ACTIONS(452), - [anon_sym_goto] = ACTIONS(454), - [anon_sym___try] = ACTIONS(456), - [anon_sym___leave] = ACTIONS(458), + [anon_sym_if] = ACTIONS(380), + [anon_sym_switch] = ACTIONS(382), + [anon_sym_case] = ACTIONS(384), + [anon_sym_default] = ACTIONS(386), + [anon_sym_while] = ACTIONS(388), + [anon_sym_do] = ACTIONS(390), + [anon_sym_for] = ACTIONS(392), + [anon_sym_return] = ACTIONS(394), + [anon_sym_break] = ACTIONS(396), + [anon_sym_continue] = ACTIONS(398), + [anon_sym_goto] = ACTIONS(400), + [anon_sym___try] = ACTIONS(402), + [anon_sym___leave] = ACTIONS(404), [anon_sym_DASH_DASH] = ACTIONS(81), [anon_sym_PLUS_PLUS] = ACTIONS(81), [anon_sym_sizeof] = ACTIONS(83), @@ -18419,7 +18208,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [40] = { + [39] = { + [sym__block_item] = STATE(35), [sym_preproc_include] = STATE(35), [sym_preproc_def] = STATE(35), [sym_preproc_function_def] = STATE(35), @@ -18427,71 +18217,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if] = STATE(35), [sym_preproc_ifdef] = STATE(35), [sym_function_definition] = STATE(35), - [sym__old_style_function_definition] = STATE(334), + [sym__old_style_function_definition] = STATE(289), [sym_declaration] = STATE(35), [sym_type_definition] = STATE(35), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1149), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1100), [sym_linkage_specification] = STATE(35), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(455), - [sym_ms_declspec_modifier] = STATE(752), - [sym_ms_call_modifier] = STATE(730), - [sym_compound_statement] = STATE(35), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(859), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym_attributed_statement] = STATE(35), - [sym_labeled_statement] = STATE(35), - [sym_expression_statement] = STATE(35), - [sym_if_statement] = STATE(35), - [sym_switch_statement] = STATE(35), - [sym_case_statement] = STATE(35), - [sym_while_statement] = STATE(35), - [sym_do_statement] = STATE(35), - [sym_for_statement] = STATE(35), - [sym_return_statement] = STATE(35), - [sym_break_statement] = STATE(35), - [sym_continue_statement] = STATE(35), - [sym_goto_statement] = STATE(35), - [sym_seh_try_statement] = STATE(35), - [sym_seh_leave_statement] = STATE(35), - [sym__expression] = STATE(1089), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1976), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(694), + [sym_compound_statement] = STATE(172), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(791), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(253), + [sym_statement] = STATE(35), + [sym_labeled_statement] = STATE(172), + [sym_expression_statement] = STATE(172), + [sym_if_statement] = STATE(172), + [sym_switch_statement] = STATE(172), + [sym_case_statement] = STATE(172), + [sym_while_statement] = STATE(172), + [sym_do_statement] = STATE(172), + [sym_for_statement] = STATE(172), + [sym_return_statement] = STATE(172), + [sym_break_statement] = STATE(172), + [sym_continue_statement] = STATE(172), + [sym_goto_statement] = STATE(172), + [sym_seh_try_statement] = STATE(172), + [sym_seh_leave_statement] = STATE(172), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), [sym__empty_declaration] = STATE(35), - [sym_macro_type_specifier] = STATE(822), + [sym_macro_type_specifier] = STATE(771), [aux_sym_preproc_if_repeat1] = STATE(35), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_attributed_declarator_repeat1] = STATE(393), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(352), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), [sym_identifier] = ACTIONS(356), [aux_sym_preproc_include_token1] = ACTIONS(358), [aux_sym_preproc_def_token1] = ACTIONS(360), @@ -18520,7 +18310,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(376), - [anon_sym_RBRACE] = ACTIONS(628), + [anon_sym_RBRACE] = ACTIONS(554), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -18590,79 +18380,252 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, + [40] = { + [sym__block_item] = STATE(40), + [sym_preproc_include] = STATE(40), + [sym_preproc_def] = STATE(40), + [sym_preproc_function_def] = STATE(40), + [sym_preproc_call] = STATE(40), + [sym_preproc_if] = STATE(40), + [sym_preproc_ifdef] = STATE(40), + [sym_function_definition] = STATE(40), + [sym__old_style_function_definition] = STATE(289), + [sym_declaration] = STATE(40), + [sym_type_definition] = STATE(40), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1100), + [sym_linkage_specification] = STATE(40), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(694), + [sym_compound_statement] = STATE(172), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(791), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(253), + [sym_statement] = STATE(40), + [sym_labeled_statement] = STATE(172), + [sym_expression_statement] = STATE(172), + [sym_if_statement] = STATE(172), + [sym_switch_statement] = STATE(172), + [sym_case_statement] = STATE(172), + [sym_while_statement] = STATE(172), + [sym_do_statement] = STATE(172), + [sym_for_statement] = STATE(172), + [sym_return_statement] = STATE(172), + [sym_break_statement] = STATE(172), + [sym_continue_statement] = STATE(172), + [sym_goto_statement] = STATE(172), + [sym_seh_try_statement] = STATE(172), + [sym_seh_leave_statement] = STATE(172), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym__empty_declaration] = STATE(40), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_repeat1] = STATE(40), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(352), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(556), + [aux_sym_preproc_include_token1] = ACTIONS(559), + [aux_sym_preproc_def_token1] = ACTIONS(562), + [aux_sym_preproc_if_token1] = ACTIONS(565), + [aux_sym_preproc_ifdef_token1] = ACTIONS(568), + [aux_sym_preproc_ifdef_token2] = ACTIONS(568), + [sym_preproc_directive] = ACTIONS(571), + [anon_sym_LPAREN2] = ACTIONS(221), + [anon_sym_BANG] = ACTIONS(224), + [anon_sym_TILDE] = ACTIONS(224), + [anon_sym_DASH] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(227), + [anon_sym_STAR] = ACTIONS(230), + [anon_sym_AMP] = ACTIONS(230), + [anon_sym_SEMI] = ACTIONS(574), + [anon_sym___extension__] = ACTIONS(577), + [anon_sym_typedef] = ACTIONS(580), + [anon_sym_extern] = ACTIONS(583), + [anon_sym___attribute__] = ACTIONS(245), + [anon_sym_LBRACK_LBRACK] = ACTIONS(248), + [anon_sym___declspec] = ACTIONS(251), + [anon_sym___cdecl] = ACTIONS(254), + [anon_sym___clrcall] = ACTIONS(254), + [anon_sym___stdcall] = ACTIONS(254), + [anon_sym___fastcall] = ACTIONS(254), + [anon_sym___thiscall] = ACTIONS(254), + [anon_sym___vectorcall] = ACTIONS(254), + [anon_sym_LBRACE] = ACTIONS(586), + [anon_sym_RBRACE] = ACTIONS(589), + [anon_sym_signed] = ACTIONS(260), + [anon_sym_unsigned] = ACTIONS(260), + [anon_sym_long] = ACTIONS(260), + [anon_sym_short] = ACTIONS(260), + [anon_sym_static] = ACTIONS(263), + [anon_sym_auto] = ACTIONS(263), + [anon_sym_register] = ACTIONS(263), + [anon_sym_inline] = ACTIONS(263), + [anon_sym___inline] = ACTIONS(263), + [anon_sym___inline__] = ACTIONS(263), + [anon_sym___forceinline] = ACTIONS(263), + [anon_sym_thread_local] = ACTIONS(263), + [anon_sym___thread] = ACTIONS(263), + [anon_sym_const] = ACTIONS(266), + [anon_sym_constexpr] = ACTIONS(266), + [anon_sym_volatile] = ACTIONS(266), + [anon_sym_restrict] = ACTIONS(266), + [anon_sym___restrict__] = ACTIONS(266), + [anon_sym__Atomic] = ACTIONS(266), + [anon_sym__Noreturn] = ACTIONS(266), + [anon_sym_noreturn] = ACTIONS(266), + [anon_sym_alignas] = ACTIONS(269), + [anon_sym__Alignas] = ACTIONS(269), + [sym_primitive_type] = ACTIONS(272), + [anon_sym_enum] = ACTIONS(275), + [anon_sym_struct] = ACTIONS(278), + [anon_sym_union] = ACTIONS(281), + [anon_sym_if] = ACTIONS(591), + [anon_sym_switch] = ACTIONS(594), + [anon_sym_case] = ACTIONS(597), + [anon_sym_default] = ACTIONS(600), + [anon_sym_while] = ACTIONS(603), + [anon_sym_do] = ACTIONS(606), + [anon_sym_for] = ACTIONS(609), + [anon_sym_return] = ACTIONS(612), + [anon_sym_break] = ACTIONS(615), + [anon_sym_continue] = ACTIONS(618), + [anon_sym_goto] = ACTIONS(621), + [anon_sym___try] = ACTIONS(624), + [anon_sym___leave] = ACTIONS(627), + [anon_sym_DASH_DASH] = ACTIONS(323), + [anon_sym_PLUS_PLUS] = ACTIONS(323), + [anon_sym_sizeof] = ACTIONS(326), + [anon_sym___alignof__] = ACTIONS(329), + [anon_sym___alignof] = ACTIONS(329), + [anon_sym__alignof] = ACTIONS(329), + [anon_sym_alignof] = ACTIONS(329), + [anon_sym__Alignof] = ACTIONS(329), + [anon_sym_offsetof] = ACTIONS(332), + [anon_sym__Generic] = ACTIONS(335), + [anon_sym_asm] = ACTIONS(338), + [anon_sym___asm__] = ACTIONS(338), + [sym_number_literal] = ACTIONS(341), + [anon_sym_L_SQUOTE] = ACTIONS(344), + [anon_sym_u_SQUOTE] = ACTIONS(344), + [anon_sym_U_SQUOTE] = ACTIONS(344), + [anon_sym_u8_SQUOTE] = ACTIONS(344), + [anon_sym_SQUOTE] = ACTIONS(344), + [anon_sym_L_DQUOTE] = ACTIONS(347), + [anon_sym_u_DQUOTE] = ACTIONS(347), + [anon_sym_U_DQUOTE] = ACTIONS(347), + [anon_sym_u8_DQUOTE] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(347), + [sym_true] = ACTIONS(350), + [sym_false] = ACTIONS(350), + [anon_sym_NULL] = ACTIONS(353), + [anon_sym_nullptr] = ACTIONS(353), + [sym_comment] = ACTIONS(3), + }, [41] = { - [sym_preproc_include] = STATE(35), - [sym_preproc_def] = STATE(35), - [sym_preproc_function_def] = STATE(35), - [sym_preproc_call] = STATE(35), - [sym_preproc_if] = STATE(35), - [sym_preproc_ifdef] = STATE(35), - [sym_function_definition] = STATE(35), - [sym__old_style_function_definition] = STATE(334), - [sym_declaration] = STATE(35), - [sym_type_definition] = STATE(35), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1149), - [sym_linkage_specification] = STATE(35), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(455), - [sym_ms_declspec_modifier] = STATE(752), - [sym_ms_call_modifier] = STATE(730), - [sym_compound_statement] = STATE(35), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(859), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym_attributed_statement] = STATE(35), - [sym_labeled_statement] = STATE(35), - [sym_expression_statement] = STATE(35), - [sym_if_statement] = STATE(35), - [sym_switch_statement] = STATE(35), - [sym_case_statement] = STATE(35), - [sym_while_statement] = STATE(35), - [sym_do_statement] = STATE(35), - [sym_for_statement] = STATE(35), - [sym_return_statement] = STATE(35), - [sym_break_statement] = STATE(35), - [sym_continue_statement] = STATE(35), - [sym_goto_statement] = STATE(35), - [sym_seh_try_statement] = STATE(35), - [sym_seh_leave_statement] = STATE(35), - [sym__expression] = STATE(1089), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1976), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym__empty_declaration] = STATE(35), - [sym_macro_type_specifier] = STATE(822), - [aux_sym_preproc_if_repeat1] = STATE(35), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_attributed_declarator_repeat1] = STATE(393), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym__block_item] = STATE(40), + [sym_preproc_include] = STATE(40), + [sym_preproc_def] = STATE(40), + [sym_preproc_function_def] = STATE(40), + [sym_preproc_call] = STATE(40), + [sym_preproc_if] = STATE(40), + [sym_preproc_ifdef] = STATE(40), + [sym_function_definition] = STATE(40), + [sym__old_style_function_definition] = STATE(289), + [sym_declaration] = STATE(40), + [sym_type_definition] = STATE(40), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1100), + [sym_linkage_specification] = STATE(40), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(694), + [sym_compound_statement] = STATE(172), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(791), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(253), + [sym_statement] = STATE(40), + [sym_labeled_statement] = STATE(172), + [sym_expression_statement] = STATE(172), + [sym_if_statement] = STATE(172), + [sym_switch_statement] = STATE(172), + [sym_case_statement] = STATE(172), + [sym_while_statement] = STATE(172), + [sym_do_statement] = STATE(172), + [sym_for_statement] = STATE(172), + [sym_return_statement] = STATE(172), + [sym_break_statement] = STATE(172), + [sym_continue_statement] = STATE(172), + [sym_goto_statement] = STATE(172), + [sym_seh_try_statement] = STATE(172), + [sym_seh_leave_statement] = STATE(172), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym__empty_declaration] = STATE(40), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_repeat1] = STATE(40), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(352), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), [sym_identifier] = ACTIONS(356), [aux_sym_preproc_include_token1] = ACTIONS(358), [aux_sym_preproc_def_token1] = ACTIONS(360), @@ -18762,78 +18725,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [42] = { - [sym_preproc_include] = STATE(41), - [sym_preproc_def] = STATE(41), - [sym_preproc_function_def] = STATE(41), - [sym_preproc_call] = STATE(41), - [sym_preproc_if] = STATE(41), - [sym_preproc_ifdef] = STATE(41), - [sym_function_definition] = STATE(41), - [sym__old_style_function_definition] = STATE(334), - [sym_declaration] = STATE(41), - [sym_type_definition] = STATE(41), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1149), - [sym_linkage_specification] = STATE(41), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(455), - [sym_ms_declspec_modifier] = STATE(752), - [sym_ms_call_modifier] = STATE(730), - [sym_compound_statement] = STATE(41), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(859), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym_attributed_statement] = STATE(41), - [sym_labeled_statement] = STATE(41), - [sym_expression_statement] = STATE(41), - [sym_if_statement] = STATE(41), - [sym_switch_statement] = STATE(41), - [sym_case_statement] = STATE(41), - [sym_while_statement] = STATE(41), - [sym_do_statement] = STATE(41), - [sym_for_statement] = STATE(41), - [sym_return_statement] = STATE(41), - [sym_break_statement] = STATE(41), - [sym_continue_statement] = STATE(41), - [sym_goto_statement] = STATE(41), - [sym_seh_try_statement] = STATE(41), - [sym_seh_leave_statement] = STATE(41), - [sym__expression] = STATE(1089), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1976), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym__empty_declaration] = STATE(41), - [sym_macro_type_specifier] = STATE(822), - [aux_sym_preproc_if_repeat1] = STATE(41), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_attributed_declarator_repeat1] = STATE(393), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym__block_item] = STATE(40), + [sym_preproc_include] = STATE(40), + [sym_preproc_def] = STATE(40), + [sym_preproc_function_def] = STATE(40), + [sym_preproc_call] = STATE(40), + [sym_preproc_if] = STATE(40), + [sym_preproc_ifdef] = STATE(40), + [sym_function_definition] = STATE(40), + [sym__old_style_function_definition] = STATE(289), + [sym_declaration] = STATE(40), + [sym_type_definition] = STATE(40), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1100), + [sym_linkage_specification] = STATE(40), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(694), + [sym_compound_statement] = STATE(172), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(791), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(253), + [sym_statement] = STATE(40), + [sym_labeled_statement] = STATE(172), + [sym_expression_statement] = STATE(172), + [sym_if_statement] = STATE(172), + [sym_switch_statement] = STATE(172), + [sym_case_statement] = STATE(172), + [sym_while_statement] = STATE(172), + [sym_do_statement] = STATE(172), + [sym_for_statement] = STATE(172), + [sym_return_statement] = STATE(172), + [sym_break_statement] = STATE(172), + [sym_continue_statement] = STATE(172), + [sym_goto_statement] = STATE(172), + [sym_seh_try_statement] = STATE(172), + [sym_seh_leave_statement] = STATE(172), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym__empty_declaration] = STATE(40), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_repeat1] = STATE(40), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(352), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), [sym_identifier] = ACTIONS(356), [aux_sym_preproc_include_token1] = ACTIONS(358), [aux_sym_preproc_def_token1] = ACTIONS(360), @@ -18933,6 +18897,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [43] = { + [sym__top_level_item] = STATE(44), [sym_preproc_include] = STATE(44), [sym_preproc_def] = STATE(44), [sym_preproc_function_def] = STATE(44), @@ -18940,26 +18905,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if] = STATE(44), [sym_preproc_ifdef] = STATE(44), [sym_function_definition] = STATE(44), - [sym__old_style_function_definition] = STATE(429), + [sym__old_style_function_definition] = STATE(359), [sym_declaration] = STATE(44), [sym_type_definition] = STATE(44), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1147), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1101), [sym_linkage_specification] = STATE(44), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(455), - [sym_ms_declspec_modifier] = STATE(752), - [sym_ms_call_modifier] = STATE(745), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(697), [sym_compound_statement] = STATE(44), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(836), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym_attributed_statement] = STATE(44), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(785), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(380), + [sym__top_level_statement] = STATE(44), [sym_labeled_statement] = STATE(44), [sym__top_level_expression_statement] = STATE(44), [sym_if_statement] = STATE(44), @@ -18972,36 +18938,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(44), [sym_continue_statement] = STATE(44), [sym_goto_statement] = STATE(44), - [sym__expression] = STATE(1130), - [sym__expression_not_binary] = STATE(1128), - [sym__string] = STATE(1128), - [sym_conditional_expression] = STATE(1128), - [sym_assignment_expression] = STATE(1128), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(1128), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(1128), - [sym_cast_expression] = STATE(1128), - [sym_sizeof_expression] = STATE(1128), - [sym_alignof_expression] = STATE(1128), - [sym_offsetof_expression] = STATE(1128), - [sym_generic_expression] = STATE(1128), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(1128), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(1128), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(1128), - [sym_concatenated_string] = STATE(1128), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(1128), + [sym_expression] = STATE(1078), + [sym__string] = STATE(1076), + [sym_conditional_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_pointer_expression] = STATE(898), + [sym_unary_expression] = STATE(1076), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(1076), + [sym_cast_expression] = STATE(1076), + [sym_sizeof_expression] = STATE(1076), + [sym_alignof_expression] = STATE(1076), + [sym_offsetof_expression] = STATE(1076), + [sym_generic_expression] = STATE(1076), + [sym_subscript_expression] = STATE(898), + [sym_call_expression] = STATE(898), + [sym_gnu_asm_expression] = STATE(1076), + [sym_field_expression] = STATE(898), + [sym_compound_literal_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(898), + [sym_char_literal] = STATE(1076), + [sym_concatenated_string] = STATE(1076), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(1076), [sym__empty_declaration] = STATE(44), - [sym_macro_type_specifier] = STATE(822), + [sym_macro_type_specifier] = STATE(771), [aux_sym_translation_unit_repeat1] = STATE(44), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_attributed_declarator_repeat1] = STATE(403), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(347), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), [ts_builtin_sym_end] = ACTIONS(634), [sym_identifier] = ACTIONS(7), [aux_sym_preproc_include_token1] = ACTIONS(9), @@ -19098,6 +19063,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [44] = { + [sym__top_level_item] = STATE(44), [sym_preproc_include] = STATE(44), [sym_preproc_def] = STATE(44), [sym_preproc_function_def] = STATE(44), @@ -19105,26 +19071,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if] = STATE(44), [sym_preproc_ifdef] = STATE(44), [sym_function_definition] = STATE(44), - [sym__old_style_function_definition] = STATE(429), + [sym__old_style_function_definition] = STATE(359), [sym_declaration] = STATE(44), [sym_type_definition] = STATE(44), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1147), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1101), [sym_linkage_specification] = STATE(44), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(455), - [sym_ms_declspec_modifier] = STATE(752), - [sym_ms_call_modifier] = STATE(745), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(697), [sym_compound_statement] = STATE(44), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(836), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym_attributed_statement] = STATE(44), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(785), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(380), + [sym__top_level_statement] = STATE(44), [sym_labeled_statement] = STATE(44), [sym__top_level_expression_statement] = STATE(44), [sym_if_statement] = STATE(44), @@ -19137,36 +19104,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(44), [sym_continue_statement] = STATE(44), [sym_goto_statement] = STATE(44), - [sym__expression] = STATE(1130), - [sym__expression_not_binary] = STATE(1128), - [sym__string] = STATE(1128), - [sym_conditional_expression] = STATE(1128), - [sym_assignment_expression] = STATE(1128), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(1128), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(1128), - [sym_cast_expression] = STATE(1128), - [sym_sizeof_expression] = STATE(1128), - [sym_alignof_expression] = STATE(1128), - [sym_offsetof_expression] = STATE(1128), - [sym_generic_expression] = STATE(1128), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(1128), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(1128), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(1128), - [sym_concatenated_string] = STATE(1128), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(1128), + [sym_expression] = STATE(1078), + [sym__string] = STATE(1076), + [sym_conditional_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_pointer_expression] = STATE(898), + [sym_unary_expression] = STATE(1076), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(1076), + [sym_cast_expression] = STATE(1076), + [sym_sizeof_expression] = STATE(1076), + [sym_alignof_expression] = STATE(1076), + [sym_offsetof_expression] = STATE(1076), + [sym_generic_expression] = STATE(1076), + [sym_subscript_expression] = STATE(898), + [sym_call_expression] = STATE(898), + [sym_gnu_asm_expression] = STATE(1076), + [sym_field_expression] = STATE(898), + [sym_compound_literal_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(898), + [sym_char_literal] = STATE(1076), + [sym_concatenated_string] = STATE(1076), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(1076), [sym__empty_declaration] = STATE(44), - [sym_macro_type_specifier] = STATE(822), + [sym_macro_type_specifier] = STATE(771), [aux_sym_translation_unit_repeat1] = STATE(44), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_attributed_declarator_repeat1] = STATE(403), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(347), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), [ts_builtin_sym_end] = ACTIONS(636), [sym_identifier] = ACTIONS(638), [aux_sym_preproc_include_token1] = ACTIONS(641), @@ -19263,78 +19229,240 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [45] = { - [sym_declaration] = STATE(47), - [sym_type_definition] = STATE(47), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1164), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(455), - [sym_ms_declspec_modifier] = STATE(752), - [sym_compound_statement] = STATE(47), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(763), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym_attributed_statement] = STATE(47), - [sym_labeled_statement] = STATE(47), - [sym_expression_statement] = STATE(47), - [sym_if_statement] = STATE(47), - [sym_switch_statement] = STATE(47), - [sym_while_statement] = STATE(47), - [sym_do_statement] = STATE(47), - [sym_for_statement] = STATE(47), - [sym_return_statement] = STATE(47), - [sym_break_statement] = STATE(47), - [sym_continue_statement] = STATE(47), - [sym_goto_statement] = STATE(47), - [sym_seh_try_statement] = STATE(47), - [sym_seh_leave_statement] = STATE(47), - [sym__expression] = STATE(1097), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1839), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym_macro_type_specifier] = STATE(822), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_attributed_declarator_repeat1] = STATE(405), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), - [aux_sym_case_statement_repeat1] = STATE(47), + [sym_declaration] = STATE(45), + [sym_type_definition] = STATE(45), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1119), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_compound_statement] = STATE(45), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(45), + [sym_labeled_statement] = STATE(45), + [sym_expression_statement] = STATE(45), + [sym_if_statement] = STATE(45), + [sym_switch_statement] = STATE(45), + [sym_while_statement] = STATE(45), + [sym_do_statement] = STATE(45), + [sym_for_statement] = STATE(45), + [sym_return_statement] = STATE(45), + [sym_break_statement] = STATE(45), + [sym_continue_statement] = STATE(45), + [sym_goto_statement] = STATE(45), + [sym_seh_try_statement] = STATE(45), + [sym_seh_leave_statement] = STATE(45), + [sym_expression] = STATE(1029), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1759), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(349), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [aux_sym_case_statement_repeat1] = STATE(45), [sym_identifier] = ACTIONS(782), - [aux_sym_preproc_include_token1] = ACTIONS(784), - [aux_sym_preproc_def_token1] = ACTIONS(784), - [aux_sym_preproc_if_token1] = ACTIONS(784), - [aux_sym_preproc_if_token2] = ACTIONS(784), - [aux_sym_preproc_ifdef_token1] = ACTIONS(784), - [aux_sym_preproc_ifdef_token2] = ACTIONS(784), - [aux_sym_preproc_else_token1] = ACTIONS(784), - [aux_sym_preproc_elif_token1] = ACTIONS(784), - [aux_sym_preproc_elifdef_token1] = ACTIONS(784), - [aux_sym_preproc_elifdef_token2] = ACTIONS(784), - [sym_preproc_directive] = ACTIONS(784), + [aux_sym_preproc_include_token1] = ACTIONS(785), + [aux_sym_preproc_def_token1] = ACTIONS(785), + [aux_sym_preproc_if_token1] = ACTIONS(785), + [aux_sym_preproc_if_token2] = ACTIONS(785), + [aux_sym_preproc_ifdef_token1] = ACTIONS(785), + [aux_sym_preproc_ifdef_token2] = ACTIONS(785), + [aux_sym_preproc_else_token1] = ACTIONS(785), + [aux_sym_preproc_elif_token1] = ACTIONS(785), + [aux_sym_preproc_elifdef_token1] = ACTIONS(785), + [aux_sym_preproc_elifdef_token2] = ACTIONS(785), + [sym_preproc_directive] = ACTIONS(785), + [anon_sym_LPAREN2] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(790), + [anon_sym_TILDE] = ACTIONS(790), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(796), + [anon_sym_SEMI] = ACTIONS(799), + [anon_sym___extension__] = ACTIONS(802), + [anon_sym_typedef] = ACTIONS(805), + [anon_sym_extern] = ACTIONS(808), + [anon_sym___attribute__] = ACTIONS(811), + [anon_sym_LBRACK_LBRACK] = ACTIONS(814), + [anon_sym___declspec] = ACTIONS(817), + [anon_sym___cdecl] = ACTIONS(785), + [anon_sym___clrcall] = ACTIONS(785), + [anon_sym___stdcall] = ACTIONS(785), + [anon_sym___fastcall] = ACTIONS(785), + [anon_sym___thiscall] = ACTIONS(785), + [anon_sym___vectorcall] = ACTIONS(785), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_signed] = ACTIONS(823), + [anon_sym_unsigned] = ACTIONS(823), + [anon_sym_long] = ACTIONS(823), + [anon_sym_short] = ACTIONS(823), + [anon_sym_static] = ACTIONS(808), + [anon_sym_auto] = ACTIONS(808), + [anon_sym_register] = ACTIONS(808), + [anon_sym_inline] = ACTIONS(808), + [anon_sym___inline] = ACTIONS(808), + [anon_sym___inline__] = ACTIONS(808), + [anon_sym___forceinline] = ACTIONS(808), + [anon_sym_thread_local] = ACTIONS(808), + [anon_sym___thread] = ACTIONS(808), + [anon_sym_const] = ACTIONS(826), + [anon_sym_constexpr] = ACTIONS(826), + [anon_sym_volatile] = ACTIONS(826), + [anon_sym_restrict] = ACTIONS(826), + [anon_sym___restrict__] = ACTIONS(826), + [anon_sym__Atomic] = ACTIONS(826), + [anon_sym__Noreturn] = ACTIONS(826), + [anon_sym_noreturn] = ACTIONS(826), + [anon_sym_alignas] = ACTIONS(829), + [anon_sym__Alignas] = ACTIONS(829), + [sym_primitive_type] = ACTIONS(832), + [anon_sym_enum] = ACTIONS(835), + [anon_sym_struct] = ACTIONS(838), + [anon_sym_union] = ACTIONS(841), + [anon_sym_if] = ACTIONS(844), + [anon_sym_else] = ACTIONS(785), + [anon_sym_switch] = ACTIONS(847), + [anon_sym_case] = ACTIONS(785), + [anon_sym_default] = ACTIONS(785), + [anon_sym_while] = ACTIONS(850), + [anon_sym_do] = ACTIONS(853), + [anon_sym_for] = ACTIONS(856), + [anon_sym_return] = ACTIONS(859), + [anon_sym_break] = ACTIONS(862), + [anon_sym_continue] = ACTIONS(865), + [anon_sym_goto] = ACTIONS(868), + [anon_sym___try] = ACTIONS(871), + [anon_sym___leave] = ACTIONS(874), + [anon_sym_DASH_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_sizeof] = ACTIONS(880), + [anon_sym___alignof__] = ACTIONS(883), + [anon_sym___alignof] = ACTIONS(883), + [anon_sym__alignof] = ACTIONS(883), + [anon_sym_alignof] = ACTIONS(883), + [anon_sym__Alignof] = ACTIONS(883), + [anon_sym_offsetof] = ACTIONS(886), + [anon_sym__Generic] = ACTIONS(889), + [anon_sym_asm] = ACTIONS(892), + [anon_sym___asm__] = ACTIONS(892), + [sym_number_literal] = ACTIONS(895), + [anon_sym_L_SQUOTE] = ACTIONS(898), + [anon_sym_u_SQUOTE] = ACTIONS(898), + [anon_sym_U_SQUOTE] = ACTIONS(898), + [anon_sym_u8_SQUOTE] = ACTIONS(898), + [anon_sym_SQUOTE] = ACTIONS(898), + [anon_sym_L_DQUOTE] = ACTIONS(901), + [anon_sym_u_DQUOTE] = ACTIONS(901), + [anon_sym_U_DQUOTE] = ACTIONS(901), + [anon_sym_u8_DQUOTE] = ACTIONS(901), + [anon_sym_DQUOTE] = ACTIONS(901), + [sym_true] = ACTIONS(904), + [sym_false] = ACTIONS(904), + [anon_sym_NULL] = ACTIONS(907), + [anon_sym_nullptr] = ACTIONS(907), + [sym_comment] = ACTIONS(3), + }, + [46] = { + [sym_declaration] = STATE(45), + [sym_type_definition] = STATE(45), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1119), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_compound_statement] = STATE(45), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(45), + [sym_labeled_statement] = STATE(45), + [sym_expression_statement] = STATE(45), + [sym_if_statement] = STATE(45), + [sym_switch_statement] = STATE(45), + [sym_while_statement] = STATE(45), + [sym_do_statement] = STATE(45), + [sym_for_statement] = STATE(45), + [sym_return_statement] = STATE(45), + [sym_break_statement] = STATE(45), + [sym_continue_statement] = STATE(45), + [sym_goto_statement] = STATE(45), + [sym_seh_try_statement] = STATE(45), + [sym_seh_leave_statement] = STATE(45), + [sym_expression] = STATE(1029), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1759), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(349), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [aux_sym_case_statement_repeat1] = STATE(45), + [sym_identifier] = ACTIONS(910), + [aux_sym_preproc_include_token1] = ACTIONS(912), + [aux_sym_preproc_def_token1] = ACTIONS(912), + [aux_sym_preproc_if_token1] = ACTIONS(912), + [aux_sym_preproc_if_token2] = ACTIONS(912), + [aux_sym_preproc_ifdef_token1] = ACTIONS(912), + [aux_sym_preproc_ifdef_token2] = ACTIONS(912), + [aux_sym_preproc_else_token1] = ACTIONS(912), + [aux_sym_preproc_elif_token1] = ACTIONS(912), + [aux_sym_preproc_elifdef_token1] = ACTIONS(912), + [aux_sym_preproc_elifdef_token2] = ACTIONS(912), + [sym_preproc_directive] = ACTIONS(912), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -19349,12 +19477,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(784), - [anon_sym___clrcall] = ACTIONS(784), - [anon_sym___stdcall] = ACTIONS(784), - [anon_sym___fastcall] = ACTIONS(784), - [anon_sym___thiscall] = ACTIONS(784), - [anon_sym___vectorcall] = ACTIONS(784), + [anon_sym___cdecl] = ACTIONS(912), + [anon_sym___clrcall] = ACTIONS(912), + [anon_sym___stdcall] = ACTIONS(912), + [anon_sym___fastcall] = ACTIONS(912), + [anon_sym___thiscall] = ACTIONS(912), + [anon_sym___vectorcall] = ACTIONS(912), [anon_sym_LBRACE] = ACTIONS(131), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -19384,10 +19512,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(55), [anon_sym_union] = ACTIONS(57), [anon_sym_if] = ACTIONS(133), - [anon_sym_else] = ACTIONS(784), + [anon_sym_else] = ACTIONS(912), [anon_sym_switch] = ACTIONS(135), - [anon_sym_case] = ACTIONS(784), - [anon_sym_default] = ACTIONS(784), + [anon_sym_case] = ACTIONS(912), + [anon_sym_default] = ACTIONS(912), [anon_sym_while] = ACTIONS(141), [anon_sym_do] = ACTIONS(143), [anon_sym_for] = ACTIONS(145), @@ -19426,79 +19554,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [46] = { - [sym_declaration] = STATE(48), - [sym_type_definition] = STATE(48), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1164), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(455), - [sym_ms_declspec_modifier] = STATE(752), - [sym_compound_statement] = STATE(48), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(763), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym_attributed_statement] = STATE(48), - [sym_labeled_statement] = STATE(48), - [sym_expression_statement] = STATE(48), - [sym_if_statement] = STATE(48), - [sym_switch_statement] = STATE(48), - [sym_while_statement] = STATE(48), - [sym_do_statement] = STATE(48), - [sym_for_statement] = STATE(48), - [sym_return_statement] = STATE(48), - [sym_break_statement] = STATE(48), - [sym_continue_statement] = STATE(48), - [sym_goto_statement] = STATE(48), - [sym_seh_try_statement] = STATE(48), - [sym_seh_leave_statement] = STATE(48), - [sym__expression] = STATE(1097), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1839), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym_macro_type_specifier] = STATE(822), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_attributed_declarator_repeat1] = STATE(405), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), - [aux_sym_case_statement_repeat1] = STATE(48), - [sym_identifier] = ACTIONS(782), - [aux_sym_preproc_include_token1] = ACTIONS(786), - [aux_sym_preproc_def_token1] = ACTIONS(786), - [aux_sym_preproc_if_token1] = ACTIONS(786), - [aux_sym_preproc_if_token2] = ACTIONS(786), - [aux_sym_preproc_ifdef_token1] = ACTIONS(786), - [aux_sym_preproc_ifdef_token2] = ACTIONS(786), - [aux_sym_preproc_else_token1] = ACTIONS(786), - [aux_sym_preproc_elif_token1] = ACTIONS(786), - [aux_sym_preproc_elifdef_token1] = ACTIONS(786), - [aux_sym_preproc_elifdef_token2] = ACTIONS(786), - [sym_preproc_directive] = ACTIONS(786), + [47] = { + [sym_declaration] = STATE(49), + [sym_type_definition] = STATE(49), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1119), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_compound_statement] = STATE(49), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(49), + [sym_labeled_statement] = STATE(49), + [sym_expression_statement] = STATE(49), + [sym_if_statement] = STATE(49), + [sym_switch_statement] = STATE(49), + [sym_while_statement] = STATE(49), + [sym_do_statement] = STATE(49), + [sym_for_statement] = STATE(49), + [sym_return_statement] = STATE(49), + [sym_break_statement] = STATE(49), + [sym_continue_statement] = STATE(49), + [sym_goto_statement] = STATE(49), + [sym_seh_try_statement] = STATE(49), + [sym_seh_leave_statement] = STATE(49), + [sym_expression] = STATE(1029), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1759), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(349), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [aux_sym_case_statement_repeat1] = STATE(49), + [sym_identifier] = ACTIONS(910), + [aux_sym_preproc_include_token1] = ACTIONS(914), + [aux_sym_preproc_def_token1] = ACTIONS(914), + [aux_sym_preproc_if_token1] = ACTIONS(914), + [aux_sym_preproc_if_token2] = ACTIONS(914), + [aux_sym_preproc_ifdef_token1] = ACTIONS(914), + [aux_sym_preproc_ifdef_token2] = ACTIONS(914), + [aux_sym_preproc_else_token1] = ACTIONS(914), + [aux_sym_preproc_elif_token1] = ACTIONS(914), + [aux_sym_preproc_elifdef_token1] = ACTIONS(914), + [aux_sym_preproc_elifdef_token2] = ACTIONS(914), + [sym_preproc_directive] = ACTIONS(914), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -19513,12 +19640,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(786), - [anon_sym___clrcall] = ACTIONS(786), - [anon_sym___stdcall] = ACTIONS(786), - [anon_sym___fastcall] = ACTIONS(786), - [anon_sym___thiscall] = ACTIONS(786), - [anon_sym___vectorcall] = ACTIONS(786), + [anon_sym___cdecl] = ACTIONS(914), + [anon_sym___clrcall] = ACTIONS(914), + [anon_sym___stdcall] = ACTIONS(914), + [anon_sym___fastcall] = ACTIONS(914), + [anon_sym___thiscall] = ACTIONS(914), + [anon_sym___vectorcall] = ACTIONS(914), [anon_sym_LBRACE] = ACTIONS(131), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -19548,10 +19675,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(55), [anon_sym_union] = ACTIONS(57), [anon_sym_if] = ACTIONS(133), - [anon_sym_else] = ACTIONS(786), + [anon_sym_else] = ACTIONS(914), [anon_sym_switch] = ACTIONS(135), - [anon_sym_case] = ACTIONS(786), - [anon_sym_default] = ACTIONS(786), + [anon_sym_case] = ACTIONS(914), + [anon_sym_default] = ACTIONS(914), [anon_sym_while] = ACTIONS(141), [anon_sym_do] = ACTIONS(143), [anon_sym_for] = ACTIONS(145), @@ -19590,79 +19717,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [47] = { - [sym_declaration] = STATE(48), - [sym_type_definition] = STATE(48), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1164), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(455), - [sym_ms_declspec_modifier] = STATE(752), - [sym_compound_statement] = STATE(48), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(763), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym_attributed_statement] = STATE(48), - [sym_labeled_statement] = STATE(48), - [sym_expression_statement] = STATE(48), - [sym_if_statement] = STATE(48), - [sym_switch_statement] = STATE(48), - [sym_while_statement] = STATE(48), - [sym_do_statement] = STATE(48), - [sym_for_statement] = STATE(48), - [sym_return_statement] = STATE(48), - [sym_break_statement] = STATE(48), - [sym_continue_statement] = STATE(48), - [sym_goto_statement] = STATE(48), - [sym_seh_try_statement] = STATE(48), - [sym_seh_leave_statement] = STATE(48), - [sym__expression] = STATE(1097), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1839), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym_macro_type_specifier] = STATE(822), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_attributed_declarator_repeat1] = STATE(405), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), - [aux_sym_case_statement_repeat1] = STATE(48), - [sym_identifier] = ACTIONS(782), - [aux_sym_preproc_include_token1] = ACTIONS(788), - [aux_sym_preproc_def_token1] = ACTIONS(788), - [aux_sym_preproc_if_token1] = ACTIONS(788), - [aux_sym_preproc_if_token2] = ACTIONS(788), - [aux_sym_preproc_ifdef_token1] = ACTIONS(788), - [aux_sym_preproc_ifdef_token2] = ACTIONS(788), - [aux_sym_preproc_else_token1] = ACTIONS(788), - [aux_sym_preproc_elif_token1] = ACTIONS(788), - [aux_sym_preproc_elifdef_token1] = ACTIONS(788), - [aux_sym_preproc_elifdef_token2] = ACTIONS(788), - [sym_preproc_directive] = ACTIONS(788), + [48] = { + [sym_declaration] = STATE(46), + [sym_type_definition] = STATE(46), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1119), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_compound_statement] = STATE(46), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(46), + [sym_labeled_statement] = STATE(46), + [sym_expression_statement] = STATE(46), + [sym_if_statement] = STATE(46), + [sym_switch_statement] = STATE(46), + [sym_while_statement] = STATE(46), + [sym_do_statement] = STATE(46), + [sym_for_statement] = STATE(46), + [sym_return_statement] = STATE(46), + [sym_break_statement] = STATE(46), + [sym_continue_statement] = STATE(46), + [sym_goto_statement] = STATE(46), + [sym_seh_try_statement] = STATE(46), + [sym_seh_leave_statement] = STATE(46), + [sym_expression] = STATE(1029), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1759), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(349), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [aux_sym_case_statement_repeat1] = STATE(46), + [sym_identifier] = ACTIONS(910), + [aux_sym_preproc_include_token1] = ACTIONS(916), + [aux_sym_preproc_def_token1] = ACTIONS(916), + [aux_sym_preproc_if_token1] = ACTIONS(916), + [aux_sym_preproc_if_token2] = ACTIONS(916), + [aux_sym_preproc_ifdef_token1] = ACTIONS(916), + [aux_sym_preproc_ifdef_token2] = ACTIONS(916), + [aux_sym_preproc_else_token1] = ACTIONS(916), + [aux_sym_preproc_elif_token1] = ACTIONS(916), + [aux_sym_preproc_elifdef_token1] = ACTIONS(916), + [aux_sym_preproc_elifdef_token2] = ACTIONS(916), + [sym_preproc_directive] = ACTIONS(916), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -19677,12 +19803,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(788), - [anon_sym___clrcall] = ACTIONS(788), - [anon_sym___stdcall] = ACTIONS(788), - [anon_sym___fastcall] = ACTIONS(788), - [anon_sym___thiscall] = ACTIONS(788), - [anon_sym___vectorcall] = ACTIONS(788), + [anon_sym___cdecl] = ACTIONS(916), + [anon_sym___clrcall] = ACTIONS(916), + [anon_sym___stdcall] = ACTIONS(916), + [anon_sym___fastcall] = ACTIONS(916), + [anon_sym___thiscall] = ACTIONS(916), + [anon_sym___vectorcall] = ACTIONS(916), [anon_sym_LBRACE] = ACTIONS(131), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -19712,10 +19838,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(55), [anon_sym_union] = ACTIONS(57), [anon_sym_if] = ACTIONS(133), - [anon_sym_else] = ACTIONS(788), + [anon_sym_else] = ACTIONS(916), [anon_sym_switch] = ACTIONS(135), - [anon_sym_case] = ACTIONS(788), - [anon_sym_default] = ACTIONS(788), + [anon_sym_case] = ACTIONS(916), + [anon_sym_default] = ACTIONS(916), [anon_sym_while] = ACTIONS(141), [anon_sym_do] = ACTIONS(143), [anon_sym_for] = ACTIONS(145), @@ -19754,232 +19880,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [48] = { - [sym_declaration] = STATE(48), - [sym_type_definition] = STATE(48), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1164), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(455), - [sym_ms_declspec_modifier] = STATE(752), - [sym_compound_statement] = STATE(48), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(763), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym_attributed_statement] = STATE(48), - [sym_labeled_statement] = STATE(48), - [sym_expression_statement] = STATE(48), - [sym_if_statement] = STATE(48), - [sym_switch_statement] = STATE(48), - [sym_while_statement] = STATE(48), - [sym_do_statement] = STATE(48), - [sym_for_statement] = STATE(48), - [sym_return_statement] = STATE(48), - [sym_break_statement] = STATE(48), - [sym_continue_statement] = STATE(48), - [sym_goto_statement] = STATE(48), - [sym_seh_try_statement] = STATE(48), - [sym_seh_leave_statement] = STATE(48), - [sym__expression] = STATE(1097), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1839), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym_macro_type_specifier] = STATE(822), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_attributed_declarator_repeat1] = STATE(405), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), - [aux_sym_case_statement_repeat1] = STATE(48), - [sym_identifier] = ACTIONS(790), - [aux_sym_preproc_include_token1] = ACTIONS(793), - [aux_sym_preproc_def_token1] = ACTIONS(793), - [aux_sym_preproc_if_token1] = ACTIONS(793), - [aux_sym_preproc_if_token2] = ACTIONS(793), - [aux_sym_preproc_ifdef_token1] = ACTIONS(793), - [aux_sym_preproc_ifdef_token2] = ACTIONS(793), - [aux_sym_preproc_else_token1] = ACTIONS(793), - [aux_sym_preproc_elif_token1] = ACTIONS(793), - [aux_sym_preproc_elifdef_token1] = ACTIONS(793), - [aux_sym_preproc_elifdef_token2] = ACTIONS(793), - [sym_preproc_directive] = ACTIONS(793), - [anon_sym_LPAREN2] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(798), - [anon_sym_TILDE] = ACTIONS(798), - [anon_sym_DASH] = ACTIONS(801), - [anon_sym_PLUS] = ACTIONS(801), - [anon_sym_STAR] = ACTIONS(804), - [anon_sym_AMP] = ACTIONS(804), - [anon_sym_SEMI] = ACTIONS(807), - [anon_sym___extension__] = ACTIONS(810), - [anon_sym_typedef] = ACTIONS(813), - [anon_sym_extern] = ACTIONS(816), - [anon_sym___attribute__] = ACTIONS(819), - [anon_sym_LBRACK_LBRACK] = ACTIONS(822), - [anon_sym___declspec] = ACTIONS(825), - [anon_sym___cdecl] = ACTIONS(793), - [anon_sym___clrcall] = ACTIONS(793), - [anon_sym___stdcall] = ACTIONS(793), - [anon_sym___fastcall] = ACTIONS(793), - [anon_sym___thiscall] = ACTIONS(793), - [anon_sym___vectorcall] = ACTIONS(793), - [anon_sym_LBRACE] = ACTIONS(828), - [anon_sym_signed] = ACTIONS(831), - [anon_sym_unsigned] = ACTIONS(831), - [anon_sym_long] = ACTIONS(831), - [anon_sym_short] = ACTIONS(831), - [anon_sym_static] = ACTIONS(816), - [anon_sym_auto] = ACTIONS(816), - [anon_sym_register] = ACTIONS(816), - [anon_sym_inline] = ACTIONS(816), - [anon_sym___inline] = ACTIONS(816), - [anon_sym___inline__] = ACTIONS(816), - [anon_sym___forceinline] = ACTIONS(816), - [anon_sym_thread_local] = ACTIONS(816), - [anon_sym___thread] = ACTIONS(816), - [anon_sym_const] = ACTIONS(834), - [anon_sym_constexpr] = ACTIONS(834), - [anon_sym_volatile] = ACTIONS(834), - [anon_sym_restrict] = ACTIONS(834), - [anon_sym___restrict__] = ACTIONS(834), - [anon_sym__Atomic] = ACTIONS(834), - [anon_sym__Noreturn] = ACTIONS(834), - [anon_sym_noreturn] = ACTIONS(834), - [anon_sym_alignas] = ACTIONS(837), - [anon_sym__Alignas] = ACTIONS(837), - [sym_primitive_type] = ACTIONS(840), - [anon_sym_enum] = ACTIONS(843), - [anon_sym_struct] = ACTIONS(846), - [anon_sym_union] = ACTIONS(849), - [anon_sym_if] = ACTIONS(852), - [anon_sym_else] = ACTIONS(793), - [anon_sym_switch] = ACTIONS(855), - [anon_sym_case] = ACTIONS(793), - [anon_sym_default] = ACTIONS(793), - [anon_sym_while] = ACTIONS(858), - [anon_sym_do] = ACTIONS(861), - [anon_sym_for] = ACTIONS(864), - [anon_sym_return] = ACTIONS(867), - [anon_sym_break] = ACTIONS(870), - [anon_sym_continue] = ACTIONS(873), - [anon_sym_goto] = ACTIONS(876), - [anon_sym___try] = ACTIONS(879), - [anon_sym___leave] = ACTIONS(882), - [anon_sym_DASH_DASH] = ACTIONS(885), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_sizeof] = ACTIONS(888), - [anon_sym___alignof__] = ACTIONS(891), - [anon_sym___alignof] = ACTIONS(891), - [anon_sym__alignof] = ACTIONS(891), - [anon_sym_alignof] = ACTIONS(891), - [anon_sym__Alignof] = ACTIONS(891), - [anon_sym_offsetof] = ACTIONS(894), - [anon_sym__Generic] = ACTIONS(897), - [anon_sym_asm] = ACTIONS(900), - [anon_sym___asm__] = ACTIONS(900), - [sym_number_literal] = ACTIONS(903), - [anon_sym_L_SQUOTE] = ACTIONS(906), - [anon_sym_u_SQUOTE] = ACTIONS(906), - [anon_sym_U_SQUOTE] = ACTIONS(906), - [anon_sym_u8_SQUOTE] = ACTIONS(906), - [anon_sym_SQUOTE] = ACTIONS(906), - [anon_sym_L_DQUOTE] = ACTIONS(909), - [anon_sym_u_DQUOTE] = ACTIONS(909), - [anon_sym_U_DQUOTE] = ACTIONS(909), - [anon_sym_u8_DQUOTE] = ACTIONS(909), - [anon_sym_DQUOTE] = ACTIONS(909), - [sym_true] = ACTIONS(912), - [sym_false] = ACTIONS(912), - [anon_sym_NULL] = ACTIONS(915), - [anon_sym_nullptr] = ACTIONS(915), - [sym_comment] = ACTIONS(3), - }, [49] = { - [sym_declaration] = STATE(46), - [sym_type_definition] = STATE(46), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1164), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(455), - [sym_ms_declspec_modifier] = STATE(752), - [sym_compound_statement] = STATE(46), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(763), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym_attributed_statement] = STATE(46), - [sym_labeled_statement] = STATE(46), - [sym_expression_statement] = STATE(46), - [sym_if_statement] = STATE(46), - [sym_switch_statement] = STATE(46), - [sym_while_statement] = STATE(46), - [sym_do_statement] = STATE(46), - [sym_for_statement] = STATE(46), - [sym_return_statement] = STATE(46), - [sym_break_statement] = STATE(46), - [sym_continue_statement] = STATE(46), - [sym_goto_statement] = STATE(46), - [sym_seh_try_statement] = STATE(46), - [sym_seh_leave_statement] = STATE(46), - [sym__expression] = STATE(1097), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1839), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym_macro_type_specifier] = STATE(822), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_attributed_declarator_repeat1] = STATE(405), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), - [aux_sym_case_statement_repeat1] = STATE(46), - [sym_identifier] = ACTIONS(782), + [sym_declaration] = STATE(45), + [sym_type_definition] = STATE(45), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1119), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_compound_statement] = STATE(45), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(45), + [sym_labeled_statement] = STATE(45), + [sym_expression_statement] = STATE(45), + [sym_if_statement] = STATE(45), + [sym_switch_statement] = STATE(45), + [sym_while_statement] = STATE(45), + [sym_do_statement] = STATE(45), + [sym_for_statement] = STATE(45), + [sym_return_statement] = STATE(45), + [sym_break_statement] = STATE(45), + [sym_continue_statement] = STATE(45), + [sym_goto_statement] = STATE(45), + [sym_seh_try_statement] = STATE(45), + [sym_seh_leave_statement] = STATE(45), + [sym_expression] = STATE(1029), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1759), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(349), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [aux_sym_case_statement_repeat1] = STATE(45), + [sym_identifier] = ACTIONS(910), [aux_sym_preproc_include_token1] = ACTIONS(918), [aux_sym_preproc_def_token1] = ACTIONS(918), [aux_sym_preproc_if_token1] = ACTIONS(918), @@ -20083,233 +20044,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [50] = { - [sym_declaration] = STATE(50), - [sym_type_definition] = STATE(50), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1163), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(455), - [sym_ms_declspec_modifier] = STATE(752), - [sym_compound_statement] = STATE(50), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(763), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym_attributed_statement] = STATE(50), - [sym_labeled_statement] = STATE(50), - [sym_expression_statement] = STATE(50), - [sym_if_statement] = STATE(50), - [sym_switch_statement] = STATE(50), - [sym_while_statement] = STATE(50), - [sym_do_statement] = STATE(50), - [sym_for_statement] = STATE(50), - [sym_return_statement] = STATE(50), - [sym_break_statement] = STATE(50), - [sym_continue_statement] = STATE(50), - [sym_goto_statement] = STATE(50), - [sym_seh_try_statement] = STATE(50), - [sym_seh_leave_statement] = STATE(50), - [sym__expression] = STATE(1054), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1853), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym_macro_type_specifier] = STATE(822), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_attributed_declarator_repeat1] = STATE(404), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), - [aux_sym_case_statement_repeat1] = STATE(50), + [sym_declaration] = STATE(58), + [sym_type_definition] = STATE(58), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1107), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_compound_statement] = STATE(58), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(58), + [sym_labeled_statement] = STATE(58), + [sym_expression_statement] = STATE(58), + [sym_if_statement] = STATE(58), + [sym_switch_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_do_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_return_statement] = STATE(58), + [sym_break_statement] = STATE(58), + [sym_continue_statement] = STATE(58), + [sym_goto_statement] = STATE(58), + [sym_seh_try_statement] = STATE(58), + [sym_seh_leave_statement] = STATE(58), + [sym_expression] = STATE(1004), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1799), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(317), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [aux_sym_case_statement_repeat1] = STATE(58), [sym_identifier] = ACTIONS(920), - [aux_sym_preproc_include_token1] = ACTIONS(793), - [aux_sym_preproc_def_token1] = ACTIONS(793), - [aux_sym_preproc_if_token1] = ACTIONS(793), - [aux_sym_preproc_if_token2] = ACTIONS(793), - [aux_sym_preproc_ifdef_token1] = ACTIONS(793), - [aux_sym_preproc_ifdef_token2] = ACTIONS(793), - [sym_preproc_directive] = ACTIONS(793), - [anon_sym_LPAREN2] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(798), - [anon_sym_TILDE] = ACTIONS(798), - [anon_sym_DASH] = ACTIONS(801), - [anon_sym_PLUS] = ACTIONS(801), - [anon_sym_STAR] = ACTIONS(804), - [anon_sym_AMP] = ACTIONS(804), - [anon_sym_SEMI] = ACTIONS(923), - [anon_sym___extension__] = ACTIONS(926), - [anon_sym_typedef] = ACTIONS(929), - [anon_sym_extern] = ACTIONS(816), - [anon_sym___attribute__] = ACTIONS(819), - [anon_sym_LBRACK_LBRACK] = ACTIONS(822), - [anon_sym___declspec] = ACTIONS(825), - [anon_sym___cdecl] = ACTIONS(793), - [anon_sym___clrcall] = ACTIONS(793), - [anon_sym___stdcall] = ACTIONS(793), - [anon_sym___fastcall] = ACTIONS(793), - [anon_sym___thiscall] = ACTIONS(793), - [anon_sym___vectorcall] = ACTIONS(793), - [anon_sym_LBRACE] = ACTIONS(932), - [anon_sym_signed] = ACTIONS(831), - [anon_sym_unsigned] = ACTIONS(831), - [anon_sym_long] = ACTIONS(831), - [anon_sym_short] = ACTIONS(831), - [anon_sym_static] = ACTIONS(816), - [anon_sym_auto] = ACTIONS(816), - [anon_sym_register] = ACTIONS(816), - [anon_sym_inline] = ACTIONS(816), - [anon_sym___inline] = ACTIONS(816), - [anon_sym___inline__] = ACTIONS(816), - [anon_sym___forceinline] = ACTIONS(816), - [anon_sym_thread_local] = ACTIONS(816), - [anon_sym___thread] = ACTIONS(816), - [anon_sym_const] = ACTIONS(834), - [anon_sym_constexpr] = ACTIONS(834), - [anon_sym_volatile] = ACTIONS(834), - [anon_sym_restrict] = ACTIONS(834), - [anon_sym___restrict__] = ACTIONS(834), - [anon_sym__Atomic] = ACTIONS(834), - [anon_sym__Noreturn] = ACTIONS(834), - [anon_sym_noreturn] = ACTIONS(834), - [anon_sym_alignas] = ACTIONS(837), - [anon_sym__Alignas] = ACTIONS(837), - [sym_primitive_type] = ACTIONS(840), - [anon_sym_enum] = ACTIONS(843), - [anon_sym_struct] = ACTIONS(846), - [anon_sym_union] = ACTIONS(849), - [anon_sym_if] = ACTIONS(935), - [anon_sym_else] = ACTIONS(793), - [anon_sym_switch] = ACTIONS(938), - [anon_sym_case] = ACTIONS(793), - [anon_sym_default] = ACTIONS(793), - [anon_sym_while] = ACTIONS(941), - [anon_sym_do] = ACTIONS(944), - [anon_sym_for] = ACTIONS(947), - [anon_sym_return] = ACTIONS(950), - [anon_sym_break] = ACTIONS(953), - [anon_sym_continue] = ACTIONS(956), - [anon_sym_goto] = ACTIONS(959), - [anon_sym___try] = ACTIONS(962), - [anon_sym___leave] = ACTIONS(965), - [anon_sym_DASH_DASH] = ACTIONS(885), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_sizeof] = ACTIONS(888), - [anon_sym___alignof__] = ACTIONS(891), - [anon_sym___alignof] = ACTIONS(891), - [anon_sym__alignof] = ACTIONS(891), - [anon_sym_alignof] = ACTIONS(891), - [anon_sym__Alignof] = ACTIONS(891), - [anon_sym_offsetof] = ACTIONS(894), - [anon_sym__Generic] = ACTIONS(897), - [anon_sym_asm] = ACTIONS(900), - [anon_sym___asm__] = ACTIONS(900), - [sym_number_literal] = ACTIONS(903), - [anon_sym_L_SQUOTE] = ACTIONS(906), - [anon_sym_u_SQUOTE] = ACTIONS(906), - [anon_sym_U_SQUOTE] = ACTIONS(906), - [anon_sym_u8_SQUOTE] = ACTIONS(906), - [anon_sym_SQUOTE] = ACTIONS(906), - [anon_sym_L_DQUOTE] = ACTIONS(909), - [anon_sym_u_DQUOTE] = ACTIONS(909), - [anon_sym_U_DQUOTE] = ACTIONS(909), - [anon_sym_u8_DQUOTE] = ACTIONS(909), - [anon_sym_DQUOTE] = ACTIONS(909), - [sym_true] = ACTIONS(912), - [sym_false] = ACTIONS(912), - [anon_sym_NULL] = ACTIONS(915), - [anon_sym_nullptr] = ACTIONS(915), - [sym_comment] = ACTIONS(3), - }, - [51] = { - [sym_declaration] = STATE(55), - [sym_type_definition] = STATE(55), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1168), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(455), - [sym_ms_declspec_modifier] = STATE(752), - [sym_compound_statement] = STATE(55), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(763), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym_attributed_statement] = STATE(55), - [sym_labeled_statement] = STATE(55), - [sym_expression_statement] = STATE(55), - [sym_if_statement] = STATE(55), - [sym_switch_statement] = STATE(55), - [sym_while_statement] = STATE(55), - [sym_do_statement] = STATE(55), - [sym_for_statement] = STATE(55), - [sym_return_statement] = STATE(55), - [sym_break_statement] = STATE(55), - [sym_continue_statement] = STATE(55), - [sym_goto_statement] = STATE(55), - [sym_seh_try_statement] = STATE(55), - [sym_seh_leave_statement] = STATE(55), - [sym__expression] = STATE(1089), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1976), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym_macro_type_specifier] = STATE(822), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_attributed_declarator_repeat1] = STATE(393), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), - [aux_sym_case_statement_repeat1] = STATE(55), - [sym_identifier] = ACTIONS(968), - [aux_sym_preproc_include_token1] = ACTIONS(918), - [aux_sym_preproc_def_token1] = ACTIONS(918), - [aux_sym_preproc_if_token1] = ACTIONS(918), - [aux_sym_preproc_ifdef_token1] = ACTIONS(918), - [aux_sym_preproc_ifdef_token2] = ACTIONS(918), - [sym_preproc_directive] = ACTIONS(918), + [aux_sym_preproc_include_token1] = ACTIONS(912), + [aux_sym_preproc_def_token1] = ACTIONS(912), + [aux_sym_preproc_if_token1] = ACTIONS(912), + [aux_sym_preproc_if_token2] = ACTIONS(912), + [aux_sym_preproc_ifdef_token1] = ACTIONS(912), + [aux_sym_preproc_ifdef_token2] = ACTIONS(912), + [sym_preproc_directive] = ACTIONS(912), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -20317,21 +20118,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(368), - [anon_sym___extension__] = ACTIONS(370), - [anon_sym_typedef] = ACTIONS(372), + [anon_sym_SEMI] = ACTIONS(424), + [anon_sym___extension__] = ACTIONS(426), + [anon_sym_typedef] = ACTIONS(428), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(918), - [anon_sym___clrcall] = ACTIONS(918), - [anon_sym___stdcall] = ACTIONS(918), - [anon_sym___fastcall] = ACTIONS(918), - [anon_sym___thiscall] = ACTIONS(918), - [anon_sym___vectorcall] = ACTIONS(918), - [anon_sym_LBRACE] = ACTIONS(376), - [anon_sym_RBRACE] = ACTIONS(970), + [anon_sym___cdecl] = ACTIONS(912), + [anon_sym___clrcall] = ACTIONS(912), + [anon_sym___stdcall] = ACTIONS(912), + [anon_sym___fastcall] = ACTIONS(912), + [anon_sym___thiscall] = ACTIONS(912), + [anon_sym___vectorcall] = ACTIONS(912), + [anon_sym_LBRACE] = ACTIONS(432), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -20359,20 +20159,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(53), [anon_sym_struct] = ACTIONS(55), [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(380), - [anon_sym_else] = ACTIONS(918), - [anon_sym_switch] = ACTIONS(382), - [anon_sym_case] = ACTIONS(918), - [anon_sym_default] = ACTIONS(918), - [anon_sym_while] = ACTIONS(388), - [anon_sym_do] = ACTIONS(390), - [anon_sym_for] = ACTIONS(392), - [anon_sym_return] = ACTIONS(394), - [anon_sym_break] = ACTIONS(396), - [anon_sym_continue] = ACTIONS(398), - [anon_sym_goto] = ACTIONS(400), - [anon_sym___try] = ACTIONS(402), - [anon_sym___leave] = ACTIONS(404), + [anon_sym_if] = ACTIONS(434), + [anon_sym_else] = ACTIONS(912), + [anon_sym_switch] = ACTIONS(436), + [anon_sym_case] = ACTIONS(912), + [anon_sym_default] = ACTIONS(912), + [anon_sym_while] = ACTIONS(442), + [anon_sym_do] = ACTIONS(444), + [anon_sym_for] = ACTIONS(446), + [anon_sym_return] = ACTIONS(448), + [anon_sym_break] = ACTIONS(450), + [anon_sym_continue] = ACTIONS(452), + [anon_sym_goto] = ACTIONS(454), + [anon_sym___try] = ACTIONS(456), + [anon_sym___leave] = ACTIONS(458), [anon_sym_DASH_DASH] = ACTIONS(81), [anon_sym_PLUS_PLUS] = ACTIONS(81), [anon_sym_sizeof] = ACTIONS(83), @@ -20402,74 +20202,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [52] = { - [sym_declaration] = STATE(62), - [sym_type_definition] = STATE(62), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1168), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(455), - [sym_ms_declspec_modifier] = STATE(752), - [sym_compound_statement] = STATE(62), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(763), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym_attributed_statement] = STATE(62), - [sym_labeled_statement] = STATE(62), - [sym_expression_statement] = STATE(62), - [sym_if_statement] = STATE(62), - [sym_switch_statement] = STATE(62), - [sym_while_statement] = STATE(62), - [sym_do_statement] = STATE(62), - [sym_for_statement] = STATE(62), - [sym_return_statement] = STATE(62), - [sym_break_statement] = STATE(62), - [sym_continue_statement] = STATE(62), - [sym_goto_statement] = STATE(62), - [sym_seh_try_statement] = STATE(62), - [sym_seh_leave_statement] = STATE(62), - [sym__expression] = STATE(1089), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1976), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym_macro_type_specifier] = STATE(822), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_attributed_declarator_repeat1] = STATE(393), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), - [aux_sym_case_statement_repeat1] = STATE(62), - [sym_identifier] = ACTIONS(968), - [aux_sym_preproc_include_token1] = ACTIONS(788), - [aux_sym_preproc_def_token1] = ACTIONS(788), - [aux_sym_preproc_if_token1] = ACTIONS(788), - [aux_sym_preproc_ifdef_token1] = ACTIONS(788), - [aux_sym_preproc_ifdef_token2] = ACTIONS(788), - [sym_preproc_directive] = ACTIONS(788), + [51] = { + [sym_declaration] = STATE(55), + [sym_type_definition] = STATE(55), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1107), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_compound_statement] = STATE(55), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(55), + [sym_labeled_statement] = STATE(55), + [sym_expression_statement] = STATE(55), + [sym_if_statement] = STATE(55), + [sym_switch_statement] = STATE(55), + [sym_while_statement] = STATE(55), + [sym_do_statement] = STATE(55), + [sym_for_statement] = STATE(55), + [sym_return_statement] = STATE(55), + [sym_break_statement] = STATE(55), + [sym_continue_statement] = STATE(55), + [sym_goto_statement] = STATE(55), + [sym_seh_try_statement] = STATE(55), + [sym_seh_leave_statement] = STATE(55), + [sym_expression] = STATE(1004), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1799), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(317), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [aux_sym_case_statement_repeat1] = STATE(55), + [sym_identifier] = ACTIONS(920), + [aux_sym_preproc_include_token1] = ACTIONS(914), + [aux_sym_preproc_def_token1] = ACTIONS(914), + [aux_sym_preproc_if_token1] = ACTIONS(914), + [aux_sym_preproc_if_token2] = ACTIONS(914), + [aux_sym_preproc_ifdef_token1] = ACTIONS(914), + [aux_sym_preproc_ifdef_token2] = ACTIONS(914), + [sym_preproc_directive] = ACTIONS(914), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -20477,21 +20277,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(368), - [anon_sym___extension__] = ACTIONS(370), - [anon_sym_typedef] = ACTIONS(372), + [anon_sym_SEMI] = ACTIONS(424), + [anon_sym___extension__] = ACTIONS(426), + [anon_sym_typedef] = ACTIONS(428), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(788), - [anon_sym___clrcall] = ACTIONS(788), - [anon_sym___stdcall] = ACTIONS(788), - [anon_sym___fastcall] = ACTIONS(788), - [anon_sym___thiscall] = ACTIONS(788), - [anon_sym___vectorcall] = ACTIONS(788), - [anon_sym_LBRACE] = ACTIONS(376), - [anon_sym_RBRACE] = ACTIONS(972), + [anon_sym___cdecl] = ACTIONS(914), + [anon_sym___clrcall] = ACTIONS(914), + [anon_sym___stdcall] = ACTIONS(914), + [anon_sym___fastcall] = ACTIONS(914), + [anon_sym___thiscall] = ACTIONS(914), + [anon_sym___vectorcall] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(432), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -20519,20 +20318,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(53), [anon_sym_struct] = ACTIONS(55), [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(380), - [anon_sym_else] = ACTIONS(788), - [anon_sym_switch] = ACTIONS(382), - [anon_sym_case] = ACTIONS(788), - [anon_sym_default] = ACTIONS(788), - [anon_sym_while] = ACTIONS(388), - [anon_sym_do] = ACTIONS(390), - [anon_sym_for] = ACTIONS(392), - [anon_sym_return] = ACTIONS(394), - [anon_sym_break] = ACTIONS(396), - [anon_sym_continue] = ACTIONS(398), - [anon_sym_goto] = ACTIONS(400), - [anon_sym___try] = ACTIONS(402), - [anon_sym___leave] = ACTIONS(404), + [anon_sym_if] = ACTIONS(434), + [anon_sym_else] = ACTIONS(914), + [anon_sym_switch] = ACTIONS(436), + [anon_sym_case] = ACTIONS(914), + [anon_sym_default] = ACTIONS(914), + [anon_sym_while] = ACTIONS(442), + [anon_sym_do] = ACTIONS(444), + [anon_sym_for] = ACTIONS(446), + [anon_sym_return] = ACTIONS(448), + [anon_sym_break] = ACTIONS(450), + [anon_sym_continue] = ACTIONS(452), + [anon_sym_goto] = ACTIONS(454), + [anon_sym___try] = ACTIONS(456), + [anon_sym___leave] = ACTIONS(458), [anon_sym_DASH_DASH] = ACTIONS(81), [anon_sym_PLUS_PLUS] = ACTIONS(81), [anon_sym_sizeof] = ACTIONS(83), @@ -20562,75 +20361,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [53] = { - [sym_declaration] = STATE(50), - [sym_type_definition] = STATE(50), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1163), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(455), - [sym_ms_declspec_modifier] = STATE(752), - [sym_compound_statement] = STATE(50), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(763), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym_attributed_statement] = STATE(50), - [sym_labeled_statement] = STATE(50), - [sym_expression_statement] = STATE(50), - [sym_if_statement] = STATE(50), - [sym_switch_statement] = STATE(50), - [sym_while_statement] = STATE(50), - [sym_do_statement] = STATE(50), - [sym_for_statement] = STATE(50), - [sym_return_statement] = STATE(50), - [sym_break_statement] = STATE(50), - [sym_continue_statement] = STATE(50), - [sym_goto_statement] = STATE(50), - [sym_seh_try_statement] = STATE(50), - [sym_seh_leave_statement] = STATE(50), - [sym__expression] = STATE(1054), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1853), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym_macro_type_specifier] = STATE(822), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_attributed_declarator_repeat1] = STATE(404), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), - [aux_sym_case_statement_repeat1] = STATE(50), - [sym_identifier] = ACTIONS(974), - [aux_sym_preproc_include_token1] = ACTIONS(786), - [aux_sym_preproc_def_token1] = ACTIONS(786), - [aux_sym_preproc_if_token1] = ACTIONS(786), - [aux_sym_preproc_if_token2] = ACTIONS(786), - [aux_sym_preproc_ifdef_token1] = ACTIONS(786), - [aux_sym_preproc_ifdef_token2] = ACTIONS(786), - [sym_preproc_directive] = ACTIONS(786), + [52] = { + [sym_declaration] = STATE(63), + [sym_type_definition] = STATE(63), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1109), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_compound_statement] = STATE(63), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(63), + [sym_labeled_statement] = STATE(63), + [sym_expression_statement] = STATE(63), + [sym_if_statement] = STATE(63), + [sym_switch_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_do_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_return_statement] = STATE(63), + [sym_break_statement] = STATE(63), + [sym_continue_statement] = STATE(63), + [sym_goto_statement] = STATE(63), + [sym_seh_try_statement] = STATE(63), + [sym_seh_leave_statement] = STATE(63), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(352), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [aux_sym_case_statement_repeat1] = STATE(63), + [sym_identifier] = ACTIONS(922), + [aux_sym_preproc_include_token1] = ACTIONS(914), + [aux_sym_preproc_def_token1] = ACTIONS(914), + [aux_sym_preproc_if_token1] = ACTIONS(914), + [aux_sym_preproc_ifdef_token1] = ACTIONS(914), + [aux_sym_preproc_ifdef_token2] = ACTIONS(914), + [sym_preproc_directive] = ACTIONS(914), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -20638,20 +20435,180 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(424), - [anon_sym___extension__] = ACTIONS(426), - [anon_sym_typedef] = ACTIONS(428), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym___extension__] = ACTIONS(370), + [anon_sym_typedef] = ACTIONS(372), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(786), - [anon_sym___clrcall] = ACTIONS(786), - [anon_sym___stdcall] = ACTIONS(786), - [anon_sym___fastcall] = ACTIONS(786), - [anon_sym___thiscall] = ACTIONS(786), - [anon_sym___vectorcall] = ACTIONS(786), - [anon_sym_LBRACE] = ACTIONS(432), + [anon_sym___cdecl] = ACTIONS(914), + [anon_sym___clrcall] = ACTIONS(914), + [anon_sym___stdcall] = ACTIONS(914), + [anon_sym___fastcall] = ACTIONS(914), + [anon_sym___thiscall] = ACTIONS(914), + [anon_sym___vectorcall] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(376), + [anon_sym_RBRACE] = ACTIONS(924), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(380), + [anon_sym_else] = ACTIONS(914), + [anon_sym_switch] = ACTIONS(382), + [anon_sym_case] = ACTIONS(914), + [anon_sym_default] = ACTIONS(914), + [anon_sym_while] = ACTIONS(388), + [anon_sym_do] = ACTIONS(390), + [anon_sym_for] = ACTIONS(392), + [anon_sym_return] = ACTIONS(394), + [anon_sym_break] = ACTIONS(396), + [anon_sym_continue] = ACTIONS(398), + [anon_sym_goto] = ACTIONS(400), + [anon_sym___try] = ACTIONS(402), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [53] = { + [sym_declaration] = STATE(50), + [sym_type_definition] = STATE(50), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1107), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_compound_statement] = STATE(50), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(50), + [sym_labeled_statement] = STATE(50), + [sym_expression_statement] = STATE(50), + [sym_if_statement] = STATE(50), + [sym_switch_statement] = STATE(50), + [sym_while_statement] = STATE(50), + [sym_do_statement] = STATE(50), + [sym_for_statement] = STATE(50), + [sym_return_statement] = STATE(50), + [sym_break_statement] = STATE(50), + [sym_continue_statement] = STATE(50), + [sym_goto_statement] = STATE(50), + [sym_seh_try_statement] = STATE(50), + [sym_seh_leave_statement] = STATE(50), + [sym_expression] = STATE(1004), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1799), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(317), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [aux_sym_case_statement_repeat1] = STATE(50), + [sym_identifier] = ACTIONS(920), + [aux_sym_preproc_include_token1] = ACTIONS(916), + [aux_sym_preproc_def_token1] = ACTIONS(916), + [aux_sym_preproc_if_token1] = ACTIONS(916), + [aux_sym_preproc_if_token2] = ACTIONS(916), + [aux_sym_preproc_ifdef_token1] = ACTIONS(916), + [aux_sym_preproc_ifdef_token2] = ACTIONS(916), + [sym_preproc_directive] = ACTIONS(916), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(424), + [anon_sym___extension__] = ACTIONS(426), + [anon_sym_typedef] = ACTIONS(428), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(916), + [anon_sym___clrcall] = ACTIONS(916), + [anon_sym___stdcall] = ACTIONS(916), + [anon_sym___fastcall] = ACTIONS(916), + [anon_sym___thiscall] = ACTIONS(916), + [anon_sym___vectorcall] = ACTIONS(916), + [anon_sym_LBRACE] = ACTIONS(432), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -20680,10 +20637,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(55), [anon_sym_union] = ACTIONS(57), [anon_sym_if] = ACTIONS(434), - [anon_sym_else] = ACTIONS(786), + [anon_sym_else] = ACTIONS(916), [anon_sym_switch] = ACTIONS(436), - [anon_sym_case] = ACTIONS(786), - [anon_sym_default] = ACTIONS(786), + [anon_sym_case] = ACTIONS(916), + [anon_sym_default] = ACTIONS(916), [anon_sym_while] = ACTIONS(442), [anon_sym_do] = ACTIONS(444), [anon_sym_for] = ACTIONS(446), @@ -20723,74 +20680,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [54] = { - [sym_declaration] = STATE(59), - [sym_type_definition] = STATE(59), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1173), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(455), - [sym_ms_declspec_modifier] = STATE(752), - [sym_compound_statement] = STATE(59), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(763), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym_attributed_statement] = STATE(59), - [sym_labeled_statement] = STATE(59), - [sym_expression_statement] = STATE(59), - [sym_if_statement] = STATE(59), - [sym_switch_statement] = STATE(59), - [sym_while_statement] = STATE(59), - [sym_do_statement] = STATE(59), - [sym_for_statement] = STATE(59), - [sym_return_statement] = STATE(59), - [sym_break_statement] = STATE(59), - [sym_continue_statement] = STATE(59), - [sym_goto_statement] = STATE(59), - [sym_seh_try_statement] = STATE(59), - [sym_seh_leave_statement] = STATE(59), - [sym__expression] = STATE(1088), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1880), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym_macro_type_specifier] = STATE(822), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_attributed_declarator_repeat1] = STATE(403), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), - [aux_sym_case_statement_repeat1] = STATE(59), - [ts_builtin_sym_end] = ACTIONS(976), - [sym_identifier] = ACTIONS(978), - [aux_sym_preproc_include_token1] = ACTIONS(784), - [aux_sym_preproc_def_token1] = ACTIONS(784), - [aux_sym_preproc_if_token1] = ACTIONS(784), - [aux_sym_preproc_ifdef_token1] = ACTIONS(784), - [aux_sym_preproc_ifdef_token2] = ACTIONS(784), - [sym_preproc_directive] = ACTIONS(784), + [sym_declaration] = STATE(57), + [sym_type_definition] = STATE(57), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1115), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_compound_statement] = STATE(57), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(57), + [sym_labeled_statement] = STATE(57), + [sym_expression_statement] = STATE(57), + [sym_if_statement] = STATE(57), + [sym_switch_statement] = STATE(57), + [sym_while_statement] = STATE(57), + [sym_do_statement] = STATE(57), + [sym_for_statement] = STATE(57), + [sym_return_statement] = STATE(57), + [sym_break_statement] = STATE(57), + [sym_continue_statement] = STATE(57), + [sym_goto_statement] = STATE(57), + [sym_seh_try_statement] = STATE(57), + [sym_seh_leave_statement] = STATE(57), + [sym_expression] = STATE(1019), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1826), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(347), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [aux_sym_case_statement_repeat1] = STATE(57), + [ts_builtin_sym_end] = ACTIONS(926), + [sym_identifier] = ACTIONS(928), + [aux_sym_preproc_include_token1] = ACTIONS(912), + [aux_sym_preproc_def_token1] = ACTIONS(912), + [aux_sym_preproc_if_token1] = ACTIONS(912), + [aux_sym_preproc_ifdef_token1] = ACTIONS(912), + [aux_sym_preproc_ifdef_token2] = ACTIONS(912), + [sym_preproc_directive] = ACTIONS(912), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -20798,19 +20754,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(980), + [anon_sym_SEMI] = ACTIONS(930), [anon_sym___extension__] = ACTIONS(27), [anon_sym_typedef] = ACTIONS(29), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(784), - [anon_sym___clrcall] = ACTIONS(784), - [anon_sym___stdcall] = ACTIONS(784), - [anon_sym___fastcall] = ACTIONS(784), - [anon_sym___thiscall] = ACTIONS(784), - [anon_sym___vectorcall] = ACTIONS(784), + [anon_sym___cdecl] = ACTIONS(912), + [anon_sym___clrcall] = ACTIONS(912), + [anon_sym___stdcall] = ACTIONS(912), + [anon_sym___fastcall] = ACTIONS(912), + [anon_sym___thiscall] = ACTIONS(912), + [anon_sym___vectorcall] = ACTIONS(912), [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -20840,10 +20796,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(55), [anon_sym_union] = ACTIONS(57), [anon_sym_if] = ACTIONS(59), - [anon_sym_else] = ACTIONS(784), + [anon_sym_else] = ACTIONS(912), [anon_sym_switch] = ACTIONS(61), - [anon_sym_case] = ACTIONS(784), - [anon_sym_default] = ACTIONS(784), + [anon_sym_case] = ACTIONS(912), + [anon_sym_default] = ACTIONS(912), [anon_sym_while] = ACTIONS(67), [anon_sym_do] = ACTIONS(69), [anon_sym_for] = ACTIONS(71), @@ -20851,8 +20807,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(75), [anon_sym_continue] = ACTIONS(77), [anon_sym_goto] = ACTIONS(79), - [anon_sym___try] = ACTIONS(982), - [anon_sym___leave] = ACTIONS(984), + [anon_sym___try] = ACTIONS(932), + [anon_sym___leave] = ACTIONS(934), [anon_sym_DASH_DASH] = ACTIONS(81), [anon_sym_PLUS_PLUS] = ACTIONS(81), [anon_sym_sizeof] = ACTIONS(83), @@ -20883,73 +20839,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [55] = { - [sym_declaration] = STATE(62), - [sym_type_definition] = STATE(62), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1168), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(455), - [sym_ms_declspec_modifier] = STATE(752), - [sym_compound_statement] = STATE(62), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(763), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym_attributed_statement] = STATE(62), - [sym_labeled_statement] = STATE(62), - [sym_expression_statement] = STATE(62), - [sym_if_statement] = STATE(62), - [sym_switch_statement] = STATE(62), - [sym_while_statement] = STATE(62), - [sym_do_statement] = STATE(62), - [sym_for_statement] = STATE(62), - [sym_return_statement] = STATE(62), - [sym_break_statement] = STATE(62), - [sym_continue_statement] = STATE(62), - [sym_goto_statement] = STATE(62), - [sym_seh_try_statement] = STATE(62), - [sym_seh_leave_statement] = STATE(62), - [sym__expression] = STATE(1089), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1976), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym_macro_type_specifier] = STATE(822), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_attributed_declarator_repeat1] = STATE(393), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), - [aux_sym_case_statement_repeat1] = STATE(62), - [sym_identifier] = ACTIONS(968), - [aux_sym_preproc_include_token1] = ACTIONS(786), - [aux_sym_preproc_def_token1] = ACTIONS(786), - [aux_sym_preproc_if_token1] = ACTIONS(786), - [aux_sym_preproc_ifdef_token1] = ACTIONS(786), - [aux_sym_preproc_ifdef_token2] = ACTIONS(786), - [sym_preproc_directive] = ACTIONS(786), + [sym_declaration] = STATE(58), + [sym_type_definition] = STATE(58), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1107), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_compound_statement] = STATE(58), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(58), + [sym_labeled_statement] = STATE(58), + [sym_expression_statement] = STATE(58), + [sym_if_statement] = STATE(58), + [sym_switch_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_do_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_return_statement] = STATE(58), + [sym_break_statement] = STATE(58), + [sym_continue_statement] = STATE(58), + [sym_goto_statement] = STATE(58), + [sym_seh_try_statement] = STATE(58), + [sym_seh_leave_statement] = STATE(58), + [sym_expression] = STATE(1004), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1799), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(317), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [aux_sym_case_statement_repeat1] = STATE(58), + [sym_identifier] = ACTIONS(920), + [aux_sym_preproc_include_token1] = ACTIONS(918), + [aux_sym_preproc_def_token1] = ACTIONS(918), + [aux_sym_preproc_if_token1] = ACTIONS(918), + [aux_sym_preproc_if_token2] = ACTIONS(918), + [aux_sym_preproc_ifdef_token1] = ACTIONS(918), + [aux_sym_preproc_ifdef_token2] = ACTIONS(918), + [sym_preproc_directive] = ACTIONS(918), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -20957,21 +20913,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(368), - [anon_sym___extension__] = ACTIONS(370), - [anon_sym_typedef] = ACTIONS(372), + [anon_sym_SEMI] = ACTIONS(424), + [anon_sym___extension__] = ACTIONS(426), + [anon_sym_typedef] = ACTIONS(428), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(786), - [anon_sym___clrcall] = ACTIONS(786), - [anon_sym___stdcall] = ACTIONS(786), - [anon_sym___fastcall] = ACTIONS(786), - [anon_sym___thiscall] = ACTIONS(786), - [anon_sym___vectorcall] = ACTIONS(786), - [anon_sym_LBRACE] = ACTIONS(376), - [anon_sym_RBRACE] = ACTIONS(986), + [anon_sym___cdecl] = ACTIONS(918), + [anon_sym___clrcall] = ACTIONS(918), + [anon_sym___stdcall] = ACTIONS(918), + [anon_sym___fastcall] = ACTIONS(918), + [anon_sym___thiscall] = ACTIONS(918), + [anon_sym___vectorcall] = ACTIONS(918), + [anon_sym_LBRACE] = ACTIONS(432), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -20999,20 +20954,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(53), [anon_sym_struct] = ACTIONS(55), [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(380), - [anon_sym_else] = ACTIONS(786), - [anon_sym_switch] = ACTIONS(382), - [anon_sym_case] = ACTIONS(786), - [anon_sym_default] = ACTIONS(786), - [anon_sym_while] = ACTIONS(388), - [anon_sym_do] = ACTIONS(390), - [anon_sym_for] = ACTIONS(392), - [anon_sym_return] = ACTIONS(394), - [anon_sym_break] = ACTIONS(396), - [anon_sym_continue] = ACTIONS(398), - [anon_sym_goto] = ACTIONS(400), - [anon_sym___try] = ACTIONS(402), - [anon_sym___leave] = ACTIONS(404), + [anon_sym_if] = ACTIONS(434), + [anon_sym_else] = ACTIONS(918), + [anon_sym_switch] = ACTIONS(436), + [anon_sym_case] = ACTIONS(918), + [anon_sym_default] = ACTIONS(918), + [anon_sym_while] = ACTIONS(442), + [anon_sym_do] = ACTIONS(444), + [anon_sym_for] = ACTIONS(446), + [anon_sym_return] = ACTIONS(448), + [anon_sym_break] = ACTIONS(450), + [anon_sym_continue] = ACTIONS(452), + [anon_sym_goto] = ACTIONS(454), + [anon_sym___try] = ACTIONS(456), + [anon_sym___leave] = ACTIONS(458), [anon_sym_DASH_DASH] = ACTIONS(81), [anon_sym_PLUS_PLUS] = ACTIONS(81), [anon_sym_sizeof] = ACTIONS(83), @@ -21043,73 +20998,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [56] = { - [sym_declaration] = STATE(52), - [sym_type_definition] = STATE(52), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1168), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(455), - [sym_ms_declspec_modifier] = STATE(752), - [sym_compound_statement] = STATE(52), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(763), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym_attributed_statement] = STATE(52), - [sym_labeled_statement] = STATE(52), - [sym_expression_statement] = STATE(52), - [sym_if_statement] = STATE(52), - [sym_switch_statement] = STATE(52), - [sym_while_statement] = STATE(52), - [sym_do_statement] = STATE(52), - [sym_for_statement] = STATE(52), - [sym_return_statement] = STATE(52), - [sym_break_statement] = STATE(52), - [sym_continue_statement] = STATE(52), - [sym_goto_statement] = STATE(52), - [sym_seh_try_statement] = STATE(52), - [sym_seh_leave_statement] = STATE(52), - [sym__expression] = STATE(1089), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1976), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym_macro_type_specifier] = STATE(822), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_attributed_declarator_repeat1] = STATE(393), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), - [aux_sym_case_statement_repeat1] = STATE(52), - [sym_identifier] = ACTIONS(968), - [aux_sym_preproc_include_token1] = ACTIONS(784), - [aux_sym_preproc_def_token1] = ACTIONS(784), - [aux_sym_preproc_if_token1] = ACTIONS(784), - [aux_sym_preproc_ifdef_token1] = ACTIONS(784), - [aux_sym_preproc_ifdef_token2] = ACTIONS(784), - [sym_preproc_directive] = ACTIONS(784), + [sym_declaration] = STATE(57), + [sym_type_definition] = STATE(57), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1115), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_compound_statement] = STATE(57), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(57), + [sym_labeled_statement] = STATE(57), + [sym_expression_statement] = STATE(57), + [sym_if_statement] = STATE(57), + [sym_switch_statement] = STATE(57), + [sym_while_statement] = STATE(57), + [sym_do_statement] = STATE(57), + [sym_for_statement] = STATE(57), + [sym_return_statement] = STATE(57), + [sym_break_statement] = STATE(57), + [sym_continue_statement] = STATE(57), + [sym_goto_statement] = STATE(57), + [sym_seh_try_statement] = STATE(57), + [sym_seh_leave_statement] = STATE(57), + [sym_expression] = STATE(1019), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1826), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(347), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [aux_sym_case_statement_repeat1] = STATE(57), + [ts_builtin_sym_end] = ACTIONS(936), + [sym_identifier] = ACTIONS(928), + [aux_sym_preproc_include_token1] = ACTIONS(918), + [aux_sym_preproc_def_token1] = ACTIONS(918), + [aux_sym_preproc_if_token1] = ACTIONS(918), + [aux_sym_preproc_ifdef_token1] = ACTIONS(918), + [aux_sym_preproc_ifdef_token2] = ACTIONS(918), + [sym_preproc_directive] = ACTIONS(918), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -21117,21 +21072,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(368), - [anon_sym___extension__] = ACTIONS(370), - [anon_sym_typedef] = ACTIONS(372), + [anon_sym_SEMI] = ACTIONS(930), + [anon_sym___extension__] = ACTIONS(27), + [anon_sym_typedef] = ACTIONS(29), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(784), - [anon_sym___clrcall] = ACTIONS(784), - [anon_sym___stdcall] = ACTIONS(784), - [anon_sym___fastcall] = ACTIONS(784), - [anon_sym___thiscall] = ACTIONS(784), - [anon_sym___vectorcall] = ACTIONS(784), - [anon_sym_LBRACE] = ACTIONS(376), - [anon_sym_RBRACE] = ACTIONS(976), + [anon_sym___cdecl] = ACTIONS(918), + [anon_sym___clrcall] = ACTIONS(918), + [anon_sym___stdcall] = ACTIONS(918), + [anon_sym___fastcall] = ACTIONS(918), + [anon_sym___thiscall] = ACTIONS(918), + [anon_sym___vectorcall] = ACTIONS(918), + [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -21159,20 +21113,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(53), [anon_sym_struct] = ACTIONS(55), [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(380), - [anon_sym_else] = ACTIONS(784), - [anon_sym_switch] = ACTIONS(382), - [anon_sym_case] = ACTIONS(784), - [anon_sym_default] = ACTIONS(784), - [anon_sym_while] = ACTIONS(388), - [anon_sym_do] = ACTIONS(390), - [anon_sym_for] = ACTIONS(392), - [anon_sym_return] = ACTIONS(394), - [anon_sym_break] = ACTIONS(396), - [anon_sym_continue] = ACTIONS(398), - [anon_sym_goto] = ACTIONS(400), - [anon_sym___try] = ACTIONS(402), - [anon_sym___leave] = ACTIONS(404), + [anon_sym_if] = ACTIONS(59), + [anon_sym_else] = ACTIONS(918), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_case] = ACTIONS(918), + [anon_sym_default] = ACTIONS(918), + [anon_sym_while] = ACTIONS(67), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym___try] = ACTIONS(932), + [anon_sym___leave] = ACTIONS(934), [anon_sym_DASH_DASH] = ACTIONS(81), [anon_sym_PLUS_PLUS] = ACTIONS(81), [anon_sym_sizeof] = ACTIONS(83), @@ -21203,22 +21157,340 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [57] = { + [sym_declaration] = STATE(57), + [sym_type_definition] = STATE(57), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1115), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_compound_statement] = STATE(57), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(57), + [sym_labeled_statement] = STATE(57), + [sym_expression_statement] = STATE(57), + [sym_if_statement] = STATE(57), + [sym_switch_statement] = STATE(57), + [sym_while_statement] = STATE(57), + [sym_do_statement] = STATE(57), + [sym_for_statement] = STATE(57), + [sym_return_statement] = STATE(57), + [sym_break_statement] = STATE(57), + [sym_continue_statement] = STATE(57), + [sym_goto_statement] = STATE(57), + [sym_seh_try_statement] = STATE(57), + [sym_seh_leave_statement] = STATE(57), + [sym_expression] = STATE(1019), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1826), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(347), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [aux_sym_case_statement_repeat1] = STATE(57), + [ts_builtin_sym_end] = ACTIONS(938), + [sym_identifier] = ACTIONS(940), + [aux_sym_preproc_include_token1] = ACTIONS(785), + [aux_sym_preproc_def_token1] = ACTIONS(785), + [aux_sym_preproc_if_token1] = ACTIONS(785), + [aux_sym_preproc_ifdef_token1] = ACTIONS(785), + [aux_sym_preproc_ifdef_token2] = ACTIONS(785), + [sym_preproc_directive] = ACTIONS(785), + [anon_sym_LPAREN2] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(790), + [anon_sym_TILDE] = ACTIONS(790), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(796), + [anon_sym_SEMI] = ACTIONS(943), + [anon_sym___extension__] = ACTIONS(946), + [anon_sym_typedef] = ACTIONS(949), + [anon_sym_extern] = ACTIONS(808), + [anon_sym___attribute__] = ACTIONS(811), + [anon_sym_LBRACK_LBRACK] = ACTIONS(814), + [anon_sym___declspec] = ACTIONS(817), + [anon_sym___cdecl] = ACTIONS(785), + [anon_sym___clrcall] = ACTIONS(785), + [anon_sym___stdcall] = ACTIONS(785), + [anon_sym___fastcall] = ACTIONS(785), + [anon_sym___thiscall] = ACTIONS(785), + [anon_sym___vectorcall] = ACTIONS(785), + [anon_sym_LBRACE] = ACTIONS(952), + [anon_sym_signed] = ACTIONS(823), + [anon_sym_unsigned] = ACTIONS(823), + [anon_sym_long] = ACTIONS(823), + [anon_sym_short] = ACTIONS(823), + [anon_sym_static] = ACTIONS(808), + [anon_sym_auto] = ACTIONS(808), + [anon_sym_register] = ACTIONS(808), + [anon_sym_inline] = ACTIONS(808), + [anon_sym___inline] = ACTIONS(808), + [anon_sym___inline__] = ACTIONS(808), + [anon_sym___forceinline] = ACTIONS(808), + [anon_sym_thread_local] = ACTIONS(808), + [anon_sym___thread] = ACTIONS(808), + [anon_sym_const] = ACTIONS(826), + [anon_sym_constexpr] = ACTIONS(826), + [anon_sym_volatile] = ACTIONS(826), + [anon_sym_restrict] = ACTIONS(826), + [anon_sym___restrict__] = ACTIONS(826), + [anon_sym__Atomic] = ACTIONS(826), + [anon_sym__Noreturn] = ACTIONS(826), + [anon_sym_noreturn] = ACTIONS(826), + [anon_sym_alignas] = ACTIONS(829), + [anon_sym__Alignas] = ACTIONS(829), + [sym_primitive_type] = ACTIONS(832), + [anon_sym_enum] = ACTIONS(835), + [anon_sym_struct] = ACTIONS(838), + [anon_sym_union] = ACTIONS(841), + [anon_sym_if] = ACTIONS(955), + [anon_sym_else] = ACTIONS(785), + [anon_sym_switch] = ACTIONS(958), + [anon_sym_case] = ACTIONS(785), + [anon_sym_default] = ACTIONS(785), + [anon_sym_while] = ACTIONS(961), + [anon_sym_do] = ACTIONS(964), + [anon_sym_for] = ACTIONS(967), + [anon_sym_return] = ACTIONS(970), + [anon_sym_break] = ACTIONS(973), + [anon_sym_continue] = ACTIONS(976), + [anon_sym_goto] = ACTIONS(979), + [anon_sym___try] = ACTIONS(982), + [anon_sym___leave] = ACTIONS(985), + [anon_sym_DASH_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_sizeof] = ACTIONS(880), + [anon_sym___alignof__] = ACTIONS(883), + [anon_sym___alignof] = ACTIONS(883), + [anon_sym__alignof] = ACTIONS(883), + [anon_sym_alignof] = ACTIONS(883), + [anon_sym__Alignof] = ACTIONS(883), + [anon_sym_offsetof] = ACTIONS(886), + [anon_sym__Generic] = ACTIONS(889), + [anon_sym_asm] = ACTIONS(892), + [anon_sym___asm__] = ACTIONS(892), + [sym_number_literal] = ACTIONS(895), + [anon_sym_L_SQUOTE] = ACTIONS(898), + [anon_sym_u_SQUOTE] = ACTIONS(898), + [anon_sym_U_SQUOTE] = ACTIONS(898), + [anon_sym_u8_SQUOTE] = ACTIONS(898), + [anon_sym_SQUOTE] = ACTIONS(898), + [anon_sym_L_DQUOTE] = ACTIONS(901), + [anon_sym_u_DQUOTE] = ACTIONS(901), + [anon_sym_U_DQUOTE] = ACTIONS(901), + [anon_sym_u8_DQUOTE] = ACTIONS(901), + [anon_sym_DQUOTE] = ACTIONS(901), + [sym_true] = ACTIONS(904), + [sym_false] = ACTIONS(904), + [anon_sym_NULL] = ACTIONS(907), + [anon_sym_nullptr] = ACTIONS(907), + [sym_comment] = ACTIONS(3), + }, + [58] = { + [sym_declaration] = STATE(58), + [sym_type_definition] = STATE(58), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1107), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_compound_statement] = STATE(58), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(58), + [sym_labeled_statement] = STATE(58), + [sym_expression_statement] = STATE(58), + [sym_if_statement] = STATE(58), + [sym_switch_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_do_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_return_statement] = STATE(58), + [sym_break_statement] = STATE(58), + [sym_continue_statement] = STATE(58), + [sym_goto_statement] = STATE(58), + [sym_seh_try_statement] = STATE(58), + [sym_seh_leave_statement] = STATE(58), + [sym_expression] = STATE(1004), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1799), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(317), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [aux_sym_case_statement_repeat1] = STATE(58), + [sym_identifier] = ACTIONS(988), + [aux_sym_preproc_include_token1] = ACTIONS(785), + [aux_sym_preproc_def_token1] = ACTIONS(785), + [aux_sym_preproc_if_token1] = ACTIONS(785), + [aux_sym_preproc_if_token2] = ACTIONS(785), + [aux_sym_preproc_ifdef_token1] = ACTIONS(785), + [aux_sym_preproc_ifdef_token2] = ACTIONS(785), + [sym_preproc_directive] = ACTIONS(785), + [anon_sym_LPAREN2] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(790), + [anon_sym_TILDE] = ACTIONS(790), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(796), + [anon_sym_SEMI] = ACTIONS(991), + [anon_sym___extension__] = ACTIONS(994), + [anon_sym_typedef] = ACTIONS(997), + [anon_sym_extern] = ACTIONS(808), + [anon_sym___attribute__] = ACTIONS(811), + [anon_sym_LBRACK_LBRACK] = ACTIONS(814), + [anon_sym___declspec] = ACTIONS(817), + [anon_sym___cdecl] = ACTIONS(785), + [anon_sym___clrcall] = ACTIONS(785), + [anon_sym___stdcall] = ACTIONS(785), + [anon_sym___fastcall] = ACTIONS(785), + [anon_sym___thiscall] = ACTIONS(785), + [anon_sym___vectorcall] = ACTIONS(785), + [anon_sym_LBRACE] = ACTIONS(1000), + [anon_sym_signed] = ACTIONS(823), + [anon_sym_unsigned] = ACTIONS(823), + [anon_sym_long] = ACTIONS(823), + [anon_sym_short] = ACTIONS(823), + [anon_sym_static] = ACTIONS(808), + [anon_sym_auto] = ACTIONS(808), + [anon_sym_register] = ACTIONS(808), + [anon_sym_inline] = ACTIONS(808), + [anon_sym___inline] = ACTIONS(808), + [anon_sym___inline__] = ACTIONS(808), + [anon_sym___forceinline] = ACTIONS(808), + [anon_sym_thread_local] = ACTIONS(808), + [anon_sym___thread] = ACTIONS(808), + [anon_sym_const] = ACTIONS(826), + [anon_sym_constexpr] = ACTIONS(826), + [anon_sym_volatile] = ACTIONS(826), + [anon_sym_restrict] = ACTIONS(826), + [anon_sym___restrict__] = ACTIONS(826), + [anon_sym__Atomic] = ACTIONS(826), + [anon_sym__Noreturn] = ACTIONS(826), + [anon_sym_noreturn] = ACTIONS(826), + [anon_sym_alignas] = ACTIONS(829), + [anon_sym__Alignas] = ACTIONS(829), + [sym_primitive_type] = ACTIONS(832), + [anon_sym_enum] = ACTIONS(835), + [anon_sym_struct] = ACTIONS(838), + [anon_sym_union] = ACTIONS(841), + [anon_sym_if] = ACTIONS(1003), + [anon_sym_else] = ACTIONS(785), + [anon_sym_switch] = ACTIONS(1006), + [anon_sym_case] = ACTIONS(785), + [anon_sym_default] = ACTIONS(785), + [anon_sym_while] = ACTIONS(1009), + [anon_sym_do] = ACTIONS(1012), + [anon_sym_for] = ACTIONS(1015), + [anon_sym_return] = ACTIONS(1018), + [anon_sym_break] = ACTIONS(1021), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_goto] = ACTIONS(1027), + [anon_sym___try] = ACTIONS(1030), + [anon_sym___leave] = ACTIONS(1033), + [anon_sym_DASH_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_sizeof] = ACTIONS(880), + [anon_sym___alignof__] = ACTIONS(883), + [anon_sym___alignof] = ACTIONS(883), + [anon_sym__alignof] = ACTIONS(883), + [anon_sym_alignof] = ACTIONS(883), + [anon_sym__Alignof] = ACTIONS(883), + [anon_sym_offsetof] = ACTIONS(886), + [anon_sym__Generic] = ACTIONS(889), + [anon_sym_asm] = ACTIONS(892), + [anon_sym___asm__] = ACTIONS(892), + [sym_number_literal] = ACTIONS(895), + [anon_sym_L_SQUOTE] = ACTIONS(898), + [anon_sym_u_SQUOTE] = ACTIONS(898), + [anon_sym_U_SQUOTE] = ACTIONS(898), + [anon_sym_u8_SQUOTE] = ACTIONS(898), + [anon_sym_SQUOTE] = ACTIONS(898), + [anon_sym_L_DQUOTE] = ACTIONS(901), + [anon_sym_u_DQUOTE] = ACTIONS(901), + [anon_sym_U_DQUOTE] = ACTIONS(901), + [anon_sym_u8_DQUOTE] = ACTIONS(901), + [anon_sym_DQUOTE] = ACTIONS(901), + [sym_true] = ACTIONS(904), + [sym_false] = ACTIONS(904), + [anon_sym_NULL] = ACTIONS(907), + [anon_sym_nullptr] = ACTIONS(907), + [sym_comment] = ACTIONS(3), + }, + [59] = { [sym_declaration] = STATE(64), [sym_type_definition] = STATE(64), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1163), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(455), - [sym_ms_declspec_modifier] = STATE(752), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1109), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), [sym_compound_statement] = STATE(64), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(763), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), [sym_attributed_statement] = STATE(64), [sym_labeled_statement] = STATE(64), [sym_expression_statement] = STATE(64), @@ -21233,44 +21505,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(64), [sym_seh_try_statement] = STATE(64), [sym_seh_leave_statement] = STATE(64), - [sym__expression] = STATE(1054), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1853), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym_macro_type_specifier] = STATE(822), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_attributed_declarator_repeat1] = STATE(404), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(352), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), [aux_sym_case_statement_repeat1] = STATE(64), - [sym_identifier] = ACTIONS(974), - [aux_sym_preproc_include_token1] = ACTIONS(784), - [aux_sym_preproc_def_token1] = ACTIONS(784), - [aux_sym_preproc_if_token1] = ACTIONS(784), - [aux_sym_preproc_if_token2] = ACTIONS(784), - [aux_sym_preproc_ifdef_token1] = ACTIONS(784), - [aux_sym_preproc_ifdef_token2] = ACTIONS(784), - [sym_preproc_directive] = ACTIONS(784), + [sym_identifier] = ACTIONS(922), + [aux_sym_preproc_include_token1] = ACTIONS(912), + [aux_sym_preproc_def_token1] = ACTIONS(912), + [aux_sym_preproc_if_token1] = ACTIONS(912), + [aux_sym_preproc_ifdef_token1] = ACTIONS(912), + [aux_sym_preproc_ifdef_token2] = ACTIONS(912), + [sym_preproc_directive] = ACTIONS(912), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -21278,20 +21548,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(424), - [anon_sym___extension__] = ACTIONS(426), - [anon_sym_typedef] = ACTIONS(428), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym___extension__] = ACTIONS(370), + [anon_sym_typedef] = ACTIONS(372), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(784), - [anon_sym___clrcall] = ACTIONS(784), - [anon_sym___stdcall] = ACTIONS(784), - [anon_sym___fastcall] = ACTIONS(784), - [anon_sym___thiscall] = ACTIONS(784), - [anon_sym___vectorcall] = ACTIONS(784), - [anon_sym_LBRACE] = ACTIONS(432), + [anon_sym___cdecl] = ACTIONS(912), + [anon_sym___clrcall] = ACTIONS(912), + [anon_sym___stdcall] = ACTIONS(912), + [anon_sym___fastcall] = ACTIONS(912), + [anon_sym___thiscall] = ACTIONS(912), + [anon_sym___vectorcall] = ACTIONS(912), + [anon_sym_LBRACE] = ACTIONS(376), + [anon_sym_RBRACE] = ACTIONS(926), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -21319,20 +21590,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(53), [anon_sym_struct] = ACTIONS(55), [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(434), - [anon_sym_else] = ACTIONS(784), - [anon_sym_switch] = ACTIONS(436), - [anon_sym_case] = ACTIONS(784), - [anon_sym_default] = ACTIONS(784), - [anon_sym_while] = ACTIONS(442), - [anon_sym_do] = ACTIONS(444), - [anon_sym_for] = ACTIONS(446), - [anon_sym_return] = ACTIONS(448), - [anon_sym_break] = ACTIONS(450), - [anon_sym_continue] = ACTIONS(452), - [anon_sym_goto] = ACTIONS(454), - [anon_sym___try] = ACTIONS(456), - [anon_sym___leave] = ACTIONS(458), + [anon_sym_if] = ACTIONS(380), + [anon_sym_else] = ACTIONS(912), + [anon_sym_switch] = ACTIONS(382), + [anon_sym_case] = ACTIONS(912), + [anon_sym_default] = ACTIONS(912), + [anon_sym_while] = ACTIONS(388), + [anon_sym_do] = ACTIONS(390), + [anon_sym_for] = ACTIONS(392), + [anon_sym_return] = ACTIONS(394), + [anon_sym_break] = ACTIONS(396), + [anon_sym_continue] = ACTIONS(398), + [anon_sym_goto] = ACTIONS(400), + [anon_sym___try] = ACTIONS(402), + [anon_sym___leave] = ACTIONS(404), [anon_sym_DASH_DASH] = ACTIONS(81), [anon_sym_PLUS_PLUS] = ACTIONS(81), [anon_sym_sizeof] = ACTIONS(83), @@ -21362,235 +21633,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [58] = { - [sym_declaration] = STATE(58), - [sym_type_definition] = STATE(58), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1173), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(455), - [sym_ms_declspec_modifier] = STATE(752), - [sym_compound_statement] = STATE(58), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(763), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym_attributed_statement] = STATE(58), - [sym_labeled_statement] = STATE(58), - [sym_expression_statement] = STATE(58), - [sym_if_statement] = STATE(58), - [sym_switch_statement] = STATE(58), - [sym_while_statement] = STATE(58), - [sym_do_statement] = STATE(58), - [sym_for_statement] = STATE(58), - [sym_return_statement] = STATE(58), - [sym_break_statement] = STATE(58), - [sym_continue_statement] = STATE(58), - [sym_goto_statement] = STATE(58), - [sym_seh_try_statement] = STATE(58), - [sym_seh_leave_statement] = STATE(58), - [sym__expression] = STATE(1088), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1880), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym_macro_type_specifier] = STATE(822), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_attributed_declarator_repeat1] = STATE(403), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), - [aux_sym_case_statement_repeat1] = STATE(58), - [ts_builtin_sym_end] = ACTIONS(988), - [sym_identifier] = ACTIONS(990), - [aux_sym_preproc_include_token1] = ACTIONS(793), - [aux_sym_preproc_def_token1] = ACTIONS(793), - [aux_sym_preproc_if_token1] = ACTIONS(793), - [aux_sym_preproc_ifdef_token1] = ACTIONS(793), - [aux_sym_preproc_ifdef_token2] = ACTIONS(793), - [sym_preproc_directive] = ACTIONS(793), - [anon_sym_LPAREN2] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(798), - [anon_sym_TILDE] = ACTIONS(798), - [anon_sym_DASH] = ACTIONS(801), - [anon_sym_PLUS] = ACTIONS(801), - [anon_sym_STAR] = ACTIONS(804), - [anon_sym_AMP] = ACTIONS(804), - [anon_sym_SEMI] = ACTIONS(993), - [anon_sym___extension__] = ACTIONS(996), - [anon_sym_typedef] = ACTIONS(999), - [anon_sym_extern] = ACTIONS(816), - [anon_sym___attribute__] = ACTIONS(819), - [anon_sym_LBRACK_LBRACK] = ACTIONS(822), - [anon_sym___declspec] = ACTIONS(825), - [anon_sym___cdecl] = ACTIONS(793), - [anon_sym___clrcall] = ACTIONS(793), - [anon_sym___stdcall] = ACTIONS(793), - [anon_sym___fastcall] = ACTIONS(793), - [anon_sym___thiscall] = ACTIONS(793), - [anon_sym___vectorcall] = ACTIONS(793), - [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_signed] = ACTIONS(831), - [anon_sym_unsigned] = ACTIONS(831), - [anon_sym_long] = ACTIONS(831), - [anon_sym_short] = ACTIONS(831), - [anon_sym_static] = ACTIONS(816), - [anon_sym_auto] = ACTIONS(816), - [anon_sym_register] = ACTIONS(816), - [anon_sym_inline] = ACTIONS(816), - [anon_sym___inline] = ACTIONS(816), - [anon_sym___inline__] = ACTIONS(816), - [anon_sym___forceinline] = ACTIONS(816), - [anon_sym_thread_local] = ACTIONS(816), - [anon_sym___thread] = ACTIONS(816), - [anon_sym_const] = ACTIONS(834), - [anon_sym_constexpr] = ACTIONS(834), - [anon_sym_volatile] = ACTIONS(834), - [anon_sym_restrict] = ACTIONS(834), - [anon_sym___restrict__] = ACTIONS(834), - [anon_sym__Atomic] = ACTIONS(834), - [anon_sym__Noreturn] = ACTIONS(834), - [anon_sym_noreturn] = ACTIONS(834), - [anon_sym_alignas] = ACTIONS(837), - [anon_sym__Alignas] = ACTIONS(837), - [sym_primitive_type] = ACTIONS(840), - [anon_sym_enum] = ACTIONS(843), - [anon_sym_struct] = ACTIONS(846), - [anon_sym_union] = ACTIONS(849), - [anon_sym_if] = ACTIONS(1005), - [anon_sym_else] = ACTIONS(793), - [anon_sym_switch] = ACTIONS(1008), - [anon_sym_case] = ACTIONS(793), - [anon_sym_default] = ACTIONS(793), - [anon_sym_while] = ACTIONS(1011), - [anon_sym_do] = ACTIONS(1014), - [anon_sym_for] = ACTIONS(1017), - [anon_sym_return] = ACTIONS(1020), - [anon_sym_break] = ACTIONS(1023), - [anon_sym_continue] = ACTIONS(1026), - [anon_sym_goto] = ACTIONS(1029), - [anon_sym___try] = ACTIONS(1032), - [anon_sym___leave] = ACTIONS(1035), - [anon_sym_DASH_DASH] = ACTIONS(885), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_sizeof] = ACTIONS(888), - [anon_sym___alignof__] = ACTIONS(891), - [anon_sym___alignof] = ACTIONS(891), - [anon_sym__alignof] = ACTIONS(891), - [anon_sym_alignof] = ACTIONS(891), - [anon_sym__Alignof] = ACTIONS(891), - [anon_sym_offsetof] = ACTIONS(894), - [anon_sym__Generic] = ACTIONS(897), - [anon_sym_asm] = ACTIONS(900), - [anon_sym___asm__] = ACTIONS(900), - [sym_number_literal] = ACTIONS(903), - [anon_sym_L_SQUOTE] = ACTIONS(906), - [anon_sym_u_SQUOTE] = ACTIONS(906), - [anon_sym_U_SQUOTE] = ACTIONS(906), - [anon_sym_u8_SQUOTE] = ACTIONS(906), - [anon_sym_SQUOTE] = ACTIONS(906), - [anon_sym_L_DQUOTE] = ACTIONS(909), - [anon_sym_u_DQUOTE] = ACTIONS(909), - [anon_sym_U_DQUOTE] = ACTIONS(909), - [anon_sym_u8_DQUOTE] = ACTIONS(909), - [anon_sym_DQUOTE] = ACTIONS(909), - [sym_true] = ACTIONS(912), - [sym_false] = ACTIONS(912), - [anon_sym_NULL] = ACTIONS(915), - [anon_sym_nullptr] = ACTIONS(915), - [sym_comment] = ACTIONS(3), - }, - [59] = { - [sym_declaration] = STATE(58), - [sym_type_definition] = STATE(58), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1173), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(455), - [sym_ms_declspec_modifier] = STATE(752), - [sym_compound_statement] = STATE(58), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(763), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym_attributed_statement] = STATE(58), - [sym_labeled_statement] = STATE(58), - [sym_expression_statement] = STATE(58), - [sym_if_statement] = STATE(58), - [sym_switch_statement] = STATE(58), - [sym_while_statement] = STATE(58), - [sym_do_statement] = STATE(58), - [sym_for_statement] = STATE(58), - [sym_return_statement] = STATE(58), - [sym_break_statement] = STATE(58), - [sym_continue_statement] = STATE(58), - [sym_goto_statement] = STATE(58), - [sym_seh_try_statement] = STATE(58), - [sym_seh_leave_statement] = STATE(58), - [sym__expression] = STATE(1088), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1880), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym_macro_type_specifier] = STATE(822), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_attributed_declarator_repeat1] = STATE(403), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), - [aux_sym_case_statement_repeat1] = STATE(58), - [ts_builtin_sym_end] = ACTIONS(972), - [sym_identifier] = ACTIONS(978), - [aux_sym_preproc_include_token1] = ACTIONS(788), - [aux_sym_preproc_def_token1] = ACTIONS(788), - [aux_sym_preproc_if_token1] = ACTIONS(788), - [aux_sym_preproc_ifdef_token1] = ACTIONS(788), - [aux_sym_preproc_ifdef_token2] = ACTIONS(788), - [sym_preproc_directive] = ACTIONS(788), + [60] = { + [sym_declaration] = STATE(54), + [sym_type_definition] = STATE(54), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1115), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_compound_statement] = STATE(54), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(54), + [sym_labeled_statement] = STATE(54), + [sym_expression_statement] = STATE(54), + [sym_if_statement] = STATE(54), + [sym_switch_statement] = STATE(54), + [sym_while_statement] = STATE(54), + [sym_do_statement] = STATE(54), + [sym_for_statement] = STATE(54), + [sym_return_statement] = STATE(54), + [sym_break_statement] = STATE(54), + [sym_continue_statement] = STATE(54), + [sym_goto_statement] = STATE(54), + [sym_seh_try_statement] = STATE(54), + [sym_seh_leave_statement] = STATE(54), + [sym_expression] = STATE(1019), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1826), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(347), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [aux_sym_case_statement_repeat1] = STATE(54), + [ts_builtin_sym_end] = ACTIONS(1036), + [sym_identifier] = ACTIONS(928), + [aux_sym_preproc_include_token1] = ACTIONS(916), + [aux_sym_preproc_def_token1] = ACTIONS(916), + [aux_sym_preproc_if_token1] = ACTIONS(916), + [aux_sym_preproc_ifdef_token1] = ACTIONS(916), + [aux_sym_preproc_ifdef_token2] = ACTIONS(916), + [sym_preproc_directive] = ACTIONS(916), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -21598,19 +21708,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(980), + [anon_sym_SEMI] = ACTIONS(930), [anon_sym___extension__] = ACTIONS(27), [anon_sym_typedef] = ACTIONS(29), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(788), - [anon_sym___clrcall] = ACTIONS(788), - [anon_sym___stdcall] = ACTIONS(788), - [anon_sym___fastcall] = ACTIONS(788), - [anon_sym___thiscall] = ACTIONS(788), - [anon_sym___vectorcall] = ACTIONS(788), + [anon_sym___cdecl] = ACTIONS(916), + [anon_sym___clrcall] = ACTIONS(916), + [anon_sym___stdcall] = ACTIONS(916), + [anon_sym___fastcall] = ACTIONS(916), + [anon_sym___thiscall] = ACTIONS(916), + [anon_sym___vectorcall] = ACTIONS(916), [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -21640,10 +21750,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(55), [anon_sym_union] = ACTIONS(57), [anon_sym_if] = ACTIONS(59), - [anon_sym_else] = ACTIONS(788), + [anon_sym_else] = ACTIONS(916), [anon_sym_switch] = ACTIONS(61), - [anon_sym_case] = ACTIONS(788), - [anon_sym_default] = ACTIONS(788), + [anon_sym_case] = ACTIONS(916), + [anon_sym_default] = ACTIONS(916), [anon_sym_while] = ACTIONS(67), [anon_sym_do] = ACTIONS(69), [anon_sym_for] = ACTIONS(71), @@ -21651,8 +21761,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(75), [anon_sym_continue] = ACTIONS(77), [anon_sym_goto] = ACTIONS(79), - [anon_sym___try] = ACTIONS(982), - [anon_sym___leave] = ACTIONS(984), + [anon_sym___try] = ACTIONS(932), + [anon_sym___leave] = ACTIONS(934), [anon_sym_DASH_DASH] = ACTIONS(81), [anon_sym_PLUS_PLUS] = ACTIONS(81), [anon_sym_sizeof] = ACTIONS(83), @@ -21682,75 +21792,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [60] = { - [sym_declaration] = STATE(63), - [sym_type_definition] = STATE(63), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1173), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(455), - [sym_ms_declspec_modifier] = STATE(752), - [sym_compound_statement] = STATE(63), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(763), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym_attributed_statement] = STATE(63), - [sym_labeled_statement] = STATE(63), - [sym_expression_statement] = STATE(63), - [sym_if_statement] = STATE(63), - [sym_switch_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_do_statement] = STATE(63), - [sym_for_statement] = STATE(63), - [sym_return_statement] = STATE(63), - [sym_break_statement] = STATE(63), - [sym_continue_statement] = STATE(63), - [sym_goto_statement] = STATE(63), - [sym_seh_try_statement] = STATE(63), - [sym_seh_leave_statement] = STATE(63), - [sym__expression] = STATE(1088), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1880), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym_macro_type_specifier] = STATE(822), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_attributed_declarator_repeat1] = STATE(403), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), - [aux_sym_case_statement_repeat1] = STATE(63), - [ts_builtin_sym_end] = ACTIONS(970), - [sym_identifier] = ACTIONS(978), - [aux_sym_preproc_include_token1] = ACTIONS(918), - [aux_sym_preproc_def_token1] = ACTIONS(918), - [aux_sym_preproc_if_token1] = ACTIONS(918), - [aux_sym_preproc_ifdef_token1] = ACTIONS(918), - [aux_sym_preproc_ifdef_token2] = ACTIONS(918), - [sym_preproc_directive] = ACTIONS(918), + [61] = { + [sym_declaration] = STATE(56), + [sym_type_definition] = STATE(56), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1115), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_compound_statement] = STATE(56), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(56), + [sym_labeled_statement] = STATE(56), + [sym_expression_statement] = STATE(56), + [sym_if_statement] = STATE(56), + [sym_switch_statement] = STATE(56), + [sym_while_statement] = STATE(56), + [sym_do_statement] = STATE(56), + [sym_for_statement] = STATE(56), + [sym_return_statement] = STATE(56), + [sym_break_statement] = STATE(56), + [sym_continue_statement] = STATE(56), + [sym_goto_statement] = STATE(56), + [sym_seh_try_statement] = STATE(56), + [sym_seh_leave_statement] = STATE(56), + [sym_expression] = STATE(1019), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1826), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(347), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [aux_sym_case_statement_repeat1] = STATE(56), + [ts_builtin_sym_end] = ACTIONS(924), + [sym_identifier] = ACTIONS(928), + [aux_sym_preproc_include_token1] = ACTIONS(914), + [aux_sym_preproc_def_token1] = ACTIONS(914), + [aux_sym_preproc_if_token1] = ACTIONS(914), + [aux_sym_preproc_ifdef_token1] = ACTIONS(914), + [aux_sym_preproc_ifdef_token2] = ACTIONS(914), + [sym_preproc_directive] = ACTIONS(914), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -21758,19 +21867,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(980), + [anon_sym_SEMI] = ACTIONS(930), [anon_sym___extension__] = ACTIONS(27), [anon_sym_typedef] = ACTIONS(29), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(918), - [anon_sym___clrcall] = ACTIONS(918), - [anon_sym___stdcall] = ACTIONS(918), - [anon_sym___fastcall] = ACTIONS(918), - [anon_sym___thiscall] = ACTIONS(918), - [anon_sym___vectorcall] = ACTIONS(918), + [anon_sym___cdecl] = ACTIONS(914), + [anon_sym___clrcall] = ACTIONS(914), + [anon_sym___stdcall] = ACTIONS(914), + [anon_sym___fastcall] = ACTIONS(914), + [anon_sym___thiscall] = ACTIONS(914), + [anon_sym___vectorcall] = ACTIONS(914), [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -21800,10 +21909,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(55), [anon_sym_union] = ACTIONS(57), [anon_sym_if] = ACTIONS(59), - [anon_sym_else] = ACTIONS(918), + [anon_sym_else] = ACTIONS(914), [anon_sym_switch] = ACTIONS(61), - [anon_sym_case] = ACTIONS(918), - [anon_sym_default] = ACTIONS(918), + [anon_sym_case] = ACTIONS(914), + [anon_sym_default] = ACTIONS(914), [anon_sym_while] = ACTIONS(67), [anon_sym_do] = ACTIONS(69), [anon_sym_for] = ACTIONS(71), @@ -21811,8 +21920,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(75), [anon_sym_continue] = ACTIONS(77), [anon_sym_goto] = ACTIONS(79), - [anon_sym___try] = ACTIONS(982), - [anon_sym___leave] = ACTIONS(984), + [anon_sym___try] = ACTIONS(932), + [anon_sym___leave] = ACTIONS(934), [anon_sym_DASH_DASH] = ACTIONS(81), [anon_sym_PLUS_PLUS] = ACTIONS(81), [anon_sym_sizeof] = ACTIONS(83), @@ -21842,75 +21951,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [61] = { - [sym_declaration] = STATE(53), - [sym_type_definition] = STATE(53), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1163), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(455), - [sym_ms_declspec_modifier] = STATE(752), - [sym_compound_statement] = STATE(53), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(763), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym_attributed_statement] = STATE(53), - [sym_labeled_statement] = STATE(53), - [sym_expression_statement] = STATE(53), - [sym_if_statement] = STATE(53), - [sym_switch_statement] = STATE(53), - [sym_while_statement] = STATE(53), - [sym_do_statement] = STATE(53), - [sym_for_statement] = STATE(53), - [sym_return_statement] = STATE(53), - [sym_break_statement] = STATE(53), - [sym_continue_statement] = STATE(53), - [sym_goto_statement] = STATE(53), - [sym_seh_try_statement] = STATE(53), - [sym_seh_leave_statement] = STATE(53), - [sym__expression] = STATE(1054), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1853), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym_macro_type_specifier] = STATE(822), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_attributed_declarator_repeat1] = STATE(404), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), - [aux_sym_case_statement_repeat1] = STATE(53), - [sym_identifier] = ACTIONS(974), - [aux_sym_preproc_include_token1] = ACTIONS(918), - [aux_sym_preproc_def_token1] = ACTIONS(918), - [aux_sym_preproc_if_token1] = ACTIONS(918), - [aux_sym_preproc_if_token2] = ACTIONS(918), - [aux_sym_preproc_ifdef_token1] = ACTIONS(918), - [aux_sym_preproc_ifdef_token2] = ACTIONS(918), - [sym_preproc_directive] = ACTIONS(918), + [62] = { + [sym_declaration] = STATE(59), + [sym_type_definition] = STATE(59), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1109), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_compound_statement] = STATE(59), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(59), + [sym_labeled_statement] = STATE(59), + [sym_expression_statement] = STATE(59), + [sym_if_statement] = STATE(59), + [sym_switch_statement] = STATE(59), + [sym_while_statement] = STATE(59), + [sym_do_statement] = STATE(59), + [sym_for_statement] = STATE(59), + [sym_return_statement] = STATE(59), + [sym_break_statement] = STATE(59), + [sym_continue_statement] = STATE(59), + [sym_goto_statement] = STATE(59), + [sym_seh_try_statement] = STATE(59), + [sym_seh_leave_statement] = STATE(59), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(352), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [aux_sym_case_statement_repeat1] = STATE(59), + [sym_identifier] = ACTIONS(922), + [aux_sym_preproc_include_token1] = ACTIONS(916), + [aux_sym_preproc_def_token1] = ACTIONS(916), + [aux_sym_preproc_if_token1] = ACTIONS(916), + [aux_sym_preproc_ifdef_token1] = ACTIONS(916), + [aux_sym_preproc_ifdef_token2] = ACTIONS(916), + [sym_preproc_directive] = ACTIONS(916), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -21918,20 +22025,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(424), - [anon_sym___extension__] = ACTIONS(426), - [anon_sym_typedef] = ACTIONS(428), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym___extension__] = ACTIONS(370), + [anon_sym_typedef] = ACTIONS(372), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(918), - [anon_sym___clrcall] = ACTIONS(918), - [anon_sym___stdcall] = ACTIONS(918), - [anon_sym___fastcall] = ACTIONS(918), - [anon_sym___thiscall] = ACTIONS(918), - [anon_sym___vectorcall] = ACTIONS(918), - [anon_sym_LBRACE] = ACTIONS(432), + [anon_sym___cdecl] = ACTIONS(916), + [anon_sym___clrcall] = ACTIONS(916), + [anon_sym___stdcall] = ACTIONS(916), + [anon_sym___fastcall] = ACTIONS(916), + [anon_sym___thiscall] = ACTIONS(916), + [anon_sym___vectorcall] = ACTIONS(916), + [anon_sym_LBRACE] = ACTIONS(376), + [anon_sym_RBRACE] = ACTIONS(1036), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -21959,20 +22067,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(53), [anon_sym_struct] = ACTIONS(55), [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(434), - [anon_sym_else] = ACTIONS(918), - [anon_sym_switch] = ACTIONS(436), - [anon_sym_case] = ACTIONS(918), - [anon_sym_default] = ACTIONS(918), - [anon_sym_while] = ACTIONS(442), - [anon_sym_do] = ACTIONS(444), - [anon_sym_for] = ACTIONS(446), - [anon_sym_return] = ACTIONS(448), - [anon_sym_break] = ACTIONS(450), - [anon_sym_continue] = ACTIONS(452), - [anon_sym_goto] = ACTIONS(454), - [anon_sym___try] = ACTIONS(456), - [anon_sym___leave] = ACTIONS(458), + [anon_sym_if] = ACTIONS(380), + [anon_sym_else] = ACTIONS(916), + [anon_sym_switch] = ACTIONS(382), + [anon_sym_case] = ACTIONS(916), + [anon_sym_default] = ACTIONS(916), + [anon_sym_while] = ACTIONS(388), + [anon_sym_do] = ACTIONS(390), + [anon_sym_for] = ACTIONS(392), + [anon_sym_return] = ACTIONS(394), + [anon_sym_break] = ACTIONS(396), + [anon_sym_continue] = ACTIONS(398), + [anon_sym_goto] = ACTIONS(400), + [anon_sym___try] = ACTIONS(402), + [anon_sym___leave] = ACTIONS(404), [anon_sym_DASH_DASH] = ACTIONS(81), [anon_sym_PLUS_PLUS] = ACTIONS(81), [anon_sym_sizeof] = ACTIONS(83), @@ -22002,235 +22110,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [62] = { - [sym_declaration] = STATE(62), - [sym_type_definition] = STATE(62), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1168), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(455), - [sym_ms_declspec_modifier] = STATE(752), - [sym_compound_statement] = STATE(62), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(763), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym_attributed_statement] = STATE(62), - [sym_labeled_statement] = STATE(62), - [sym_expression_statement] = STATE(62), - [sym_if_statement] = STATE(62), - [sym_switch_statement] = STATE(62), - [sym_while_statement] = STATE(62), - [sym_do_statement] = STATE(62), - [sym_for_statement] = STATE(62), - [sym_return_statement] = STATE(62), - [sym_break_statement] = STATE(62), - [sym_continue_statement] = STATE(62), - [sym_goto_statement] = STATE(62), - [sym_seh_try_statement] = STATE(62), - [sym_seh_leave_statement] = STATE(62), - [sym__expression] = STATE(1089), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1976), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym_macro_type_specifier] = STATE(822), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_attributed_declarator_repeat1] = STATE(393), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), - [aux_sym_case_statement_repeat1] = STATE(62), - [sym_identifier] = ACTIONS(1038), - [aux_sym_preproc_include_token1] = ACTIONS(793), - [aux_sym_preproc_def_token1] = ACTIONS(793), - [aux_sym_preproc_if_token1] = ACTIONS(793), - [aux_sym_preproc_ifdef_token1] = ACTIONS(793), - [aux_sym_preproc_ifdef_token2] = ACTIONS(793), - [sym_preproc_directive] = ACTIONS(793), - [anon_sym_LPAREN2] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(798), - [anon_sym_TILDE] = ACTIONS(798), - [anon_sym_DASH] = ACTIONS(801), - [anon_sym_PLUS] = ACTIONS(801), - [anon_sym_STAR] = ACTIONS(804), - [anon_sym_AMP] = ACTIONS(804), - [anon_sym_SEMI] = ACTIONS(1041), - [anon_sym___extension__] = ACTIONS(1044), - [anon_sym_typedef] = ACTIONS(1047), - [anon_sym_extern] = ACTIONS(816), - [anon_sym___attribute__] = ACTIONS(819), - [anon_sym_LBRACK_LBRACK] = ACTIONS(822), - [anon_sym___declspec] = ACTIONS(825), - [anon_sym___cdecl] = ACTIONS(793), - [anon_sym___clrcall] = ACTIONS(793), - [anon_sym___stdcall] = ACTIONS(793), - [anon_sym___fastcall] = ACTIONS(793), - [anon_sym___thiscall] = ACTIONS(793), - [anon_sym___vectorcall] = ACTIONS(793), - [anon_sym_LBRACE] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(988), - [anon_sym_signed] = ACTIONS(831), - [anon_sym_unsigned] = ACTIONS(831), - [anon_sym_long] = ACTIONS(831), - [anon_sym_short] = ACTIONS(831), - [anon_sym_static] = ACTIONS(816), - [anon_sym_auto] = ACTIONS(816), - [anon_sym_register] = ACTIONS(816), - [anon_sym_inline] = ACTIONS(816), - [anon_sym___inline] = ACTIONS(816), - [anon_sym___inline__] = ACTIONS(816), - [anon_sym___forceinline] = ACTIONS(816), - [anon_sym_thread_local] = ACTIONS(816), - [anon_sym___thread] = ACTIONS(816), - [anon_sym_const] = ACTIONS(834), - [anon_sym_constexpr] = ACTIONS(834), - [anon_sym_volatile] = ACTIONS(834), - [anon_sym_restrict] = ACTIONS(834), - [anon_sym___restrict__] = ACTIONS(834), - [anon_sym__Atomic] = ACTIONS(834), - [anon_sym__Noreturn] = ACTIONS(834), - [anon_sym_noreturn] = ACTIONS(834), - [anon_sym_alignas] = ACTIONS(837), - [anon_sym__Alignas] = ACTIONS(837), - [sym_primitive_type] = ACTIONS(840), - [anon_sym_enum] = ACTIONS(843), - [anon_sym_struct] = ACTIONS(846), - [anon_sym_union] = ACTIONS(849), - [anon_sym_if] = ACTIONS(1053), - [anon_sym_else] = ACTIONS(793), - [anon_sym_switch] = ACTIONS(1056), - [anon_sym_case] = ACTIONS(793), - [anon_sym_default] = ACTIONS(793), - [anon_sym_while] = ACTIONS(1059), - [anon_sym_do] = ACTIONS(1062), - [anon_sym_for] = ACTIONS(1065), - [anon_sym_return] = ACTIONS(1068), - [anon_sym_break] = ACTIONS(1071), - [anon_sym_continue] = ACTIONS(1074), - [anon_sym_goto] = ACTIONS(1077), - [anon_sym___try] = ACTIONS(1080), - [anon_sym___leave] = ACTIONS(1083), - [anon_sym_DASH_DASH] = ACTIONS(885), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_sizeof] = ACTIONS(888), - [anon_sym___alignof__] = ACTIONS(891), - [anon_sym___alignof] = ACTIONS(891), - [anon_sym__alignof] = ACTIONS(891), - [anon_sym_alignof] = ACTIONS(891), - [anon_sym__Alignof] = ACTIONS(891), - [anon_sym_offsetof] = ACTIONS(894), - [anon_sym__Generic] = ACTIONS(897), - [anon_sym_asm] = ACTIONS(900), - [anon_sym___asm__] = ACTIONS(900), - [sym_number_literal] = ACTIONS(903), - [anon_sym_L_SQUOTE] = ACTIONS(906), - [anon_sym_u_SQUOTE] = ACTIONS(906), - [anon_sym_U_SQUOTE] = ACTIONS(906), - [anon_sym_u8_SQUOTE] = ACTIONS(906), - [anon_sym_SQUOTE] = ACTIONS(906), - [anon_sym_L_DQUOTE] = ACTIONS(909), - [anon_sym_u_DQUOTE] = ACTIONS(909), - [anon_sym_U_DQUOTE] = ACTIONS(909), - [anon_sym_u8_DQUOTE] = ACTIONS(909), - [anon_sym_DQUOTE] = ACTIONS(909), - [sym_true] = ACTIONS(912), - [sym_false] = ACTIONS(912), - [anon_sym_NULL] = ACTIONS(915), - [anon_sym_nullptr] = ACTIONS(915), - [sym_comment] = ACTIONS(3), - }, [63] = { - [sym_declaration] = STATE(58), - [sym_type_definition] = STATE(58), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1173), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(455), - [sym_ms_declspec_modifier] = STATE(752), - [sym_compound_statement] = STATE(58), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(763), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym_attributed_statement] = STATE(58), - [sym_labeled_statement] = STATE(58), - [sym_expression_statement] = STATE(58), - [sym_if_statement] = STATE(58), - [sym_switch_statement] = STATE(58), - [sym_while_statement] = STATE(58), - [sym_do_statement] = STATE(58), - [sym_for_statement] = STATE(58), - [sym_return_statement] = STATE(58), - [sym_break_statement] = STATE(58), - [sym_continue_statement] = STATE(58), - [sym_goto_statement] = STATE(58), - [sym_seh_try_statement] = STATE(58), - [sym_seh_leave_statement] = STATE(58), - [sym__expression] = STATE(1088), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1880), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym_macro_type_specifier] = STATE(822), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_attributed_declarator_repeat1] = STATE(403), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), - [aux_sym_case_statement_repeat1] = STATE(58), - [ts_builtin_sym_end] = ACTIONS(986), - [sym_identifier] = ACTIONS(978), - [aux_sym_preproc_include_token1] = ACTIONS(786), - [aux_sym_preproc_def_token1] = ACTIONS(786), - [aux_sym_preproc_if_token1] = ACTIONS(786), - [aux_sym_preproc_ifdef_token1] = ACTIONS(786), - [aux_sym_preproc_ifdef_token2] = ACTIONS(786), - [sym_preproc_directive] = ACTIONS(786), + [sym_declaration] = STATE(64), + [sym_type_definition] = STATE(64), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1109), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_compound_statement] = STATE(64), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(64), + [sym_labeled_statement] = STATE(64), + [sym_expression_statement] = STATE(64), + [sym_if_statement] = STATE(64), + [sym_switch_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_do_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_return_statement] = STATE(64), + [sym_break_statement] = STATE(64), + [sym_continue_statement] = STATE(64), + [sym_goto_statement] = STATE(64), + [sym_seh_try_statement] = STATE(64), + [sym_seh_leave_statement] = STATE(64), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(352), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [aux_sym_case_statement_repeat1] = STATE(64), + [sym_identifier] = ACTIONS(922), + [aux_sym_preproc_include_token1] = ACTIONS(918), + [aux_sym_preproc_def_token1] = ACTIONS(918), + [aux_sym_preproc_if_token1] = ACTIONS(918), + [aux_sym_preproc_ifdef_token1] = ACTIONS(918), + [aux_sym_preproc_ifdef_token2] = ACTIONS(918), + [sym_preproc_directive] = ACTIONS(918), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -22238,20 +22184,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(980), - [anon_sym___extension__] = ACTIONS(27), - [anon_sym_typedef] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym___extension__] = ACTIONS(370), + [anon_sym_typedef] = ACTIONS(372), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(786), - [anon_sym___clrcall] = ACTIONS(786), - [anon_sym___stdcall] = ACTIONS(786), - [anon_sym___fastcall] = ACTIONS(786), - [anon_sym___thiscall] = ACTIONS(786), - [anon_sym___vectorcall] = ACTIONS(786), - [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(918), + [anon_sym___clrcall] = ACTIONS(918), + [anon_sym___stdcall] = ACTIONS(918), + [anon_sym___fastcall] = ACTIONS(918), + [anon_sym___thiscall] = ACTIONS(918), + [anon_sym___vectorcall] = ACTIONS(918), + [anon_sym_LBRACE] = ACTIONS(376), + [anon_sym_RBRACE] = ACTIONS(936), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -22279,20 +22226,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(53), [anon_sym_struct] = ACTIONS(55), [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(59), - [anon_sym_else] = ACTIONS(786), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_case] = ACTIONS(786), - [anon_sym_default] = ACTIONS(786), - [anon_sym_while] = ACTIONS(67), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_return] = ACTIONS(73), - [anon_sym_break] = ACTIONS(75), - [anon_sym_continue] = ACTIONS(77), - [anon_sym_goto] = ACTIONS(79), - [anon_sym___try] = ACTIONS(982), - [anon_sym___leave] = ACTIONS(984), + [anon_sym_if] = ACTIONS(380), + [anon_sym_else] = ACTIONS(918), + [anon_sym_switch] = ACTIONS(382), + [anon_sym_case] = ACTIONS(918), + [anon_sym_default] = ACTIONS(918), + [anon_sym_while] = ACTIONS(388), + [anon_sym_do] = ACTIONS(390), + [anon_sym_for] = ACTIONS(392), + [anon_sym_return] = ACTIONS(394), + [anon_sym_break] = ACTIONS(396), + [anon_sym_continue] = ACTIONS(398), + [anon_sym_goto] = ACTIONS(400), + [anon_sym___try] = ACTIONS(402), + [anon_sym___leave] = ACTIONS(404), [anon_sym_DASH_DASH] = ACTIONS(81), [anon_sym_PLUS_PLUS] = ACTIONS(81), [anon_sym_sizeof] = ACTIONS(83), @@ -22323,74 +22270,225 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [64] = { - [sym_declaration] = STATE(50), - [sym_type_definition] = STATE(50), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1163), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(455), - [sym_ms_declspec_modifier] = STATE(752), - [sym_compound_statement] = STATE(50), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(763), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym_attributed_statement] = STATE(50), - [sym_labeled_statement] = STATE(50), - [sym_expression_statement] = STATE(50), - [sym_if_statement] = STATE(50), - [sym_switch_statement] = STATE(50), - [sym_while_statement] = STATE(50), - [sym_do_statement] = STATE(50), - [sym_for_statement] = STATE(50), - [sym_return_statement] = STATE(50), - [sym_break_statement] = STATE(50), - [sym_continue_statement] = STATE(50), - [sym_goto_statement] = STATE(50), - [sym_seh_try_statement] = STATE(50), - [sym_seh_leave_statement] = STATE(50), - [sym__expression] = STATE(1054), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1853), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym_macro_type_specifier] = STATE(822), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_attributed_declarator_repeat1] = STATE(404), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), - [aux_sym_case_statement_repeat1] = STATE(50), - [sym_identifier] = ACTIONS(974), - [aux_sym_preproc_include_token1] = ACTIONS(788), - [aux_sym_preproc_def_token1] = ACTIONS(788), - [aux_sym_preproc_if_token1] = ACTIONS(788), - [aux_sym_preproc_if_token2] = ACTIONS(788), - [aux_sym_preproc_ifdef_token1] = ACTIONS(788), - [aux_sym_preproc_ifdef_token2] = ACTIONS(788), - [sym_preproc_directive] = ACTIONS(788), + [sym_declaration] = STATE(64), + [sym_type_definition] = STATE(64), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1109), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_compound_statement] = STATE(64), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(64), + [sym_labeled_statement] = STATE(64), + [sym_expression_statement] = STATE(64), + [sym_if_statement] = STATE(64), + [sym_switch_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_do_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_return_statement] = STATE(64), + [sym_break_statement] = STATE(64), + [sym_continue_statement] = STATE(64), + [sym_goto_statement] = STATE(64), + [sym_seh_try_statement] = STATE(64), + [sym_seh_leave_statement] = STATE(64), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(352), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [aux_sym_case_statement_repeat1] = STATE(64), + [sym_identifier] = ACTIONS(1038), + [aux_sym_preproc_include_token1] = ACTIONS(785), + [aux_sym_preproc_def_token1] = ACTIONS(785), + [aux_sym_preproc_if_token1] = ACTIONS(785), + [aux_sym_preproc_ifdef_token1] = ACTIONS(785), + [aux_sym_preproc_ifdef_token2] = ACTIONS(785), + [sym_preproc_directive] = ACTIONS(785), + [anon_sym_LPAREN2] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(790), + [anon_sym_TILDE] = ACTIONS(790), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(796), + [anon_sym_SEMI] = ACTIONS(1041), + [anon_sym___extension__] = ACTIONS(1044), + [anon_sym_typedef] = ACTIONS(1047), + [anon_sym_extern] = ACTIONS(808), + [anon_sym___attribute__] = ACTIONS(811), + [anon_sym_LBRACK_LBRACK] = ACTIONS(814), + [anon_sym___declspec] = ACTIONS(817), + [anon_sym___cdecl] = ACTIONS(785), + [anon_sym___clrcall] = ACTIONS(785), + [anon_sym___stdcall] = ACTIONS(785), + [anon_sym___fastcall] = ACTIONS(785), + [anon_sym___thiscall] = ACTIONS(785), + [anon_sym___vectorcall] = ACTIONS(785), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(938), + [anon_sym_signed] = ACTIONS(823), + [anon_sym_unsigned] = ACTIONS(823), + [anon_sym_long] = ACTIONS(823), + [anon_sym_short] = ACTIONS(823), + [anon_sym_static] = ACTIONS(808), + [anon_sym_auto] = ACTIONS(808), + [anon_sym_register] = ACTIONS(808), + [anon_sym_inline] = ACTIONS(808), + [anon_sym___inline] = ACTIONS(808), + [anon_sym___inline__] = ACTIONS(808), + [anon_sym___forceinline] = ACTIONS(808), + [anon_sym_thread_local] = ACTIONS(808), + [anon_sym___thread] = ACTIONS(808), + [anon_sym_const] = ACTIONS(826), + [anon_sym_constexpr] = ACTIONS(826), + [anon_sym_volatile] = ACTIONS(826), + [anon_sym_restrict] = ACTIONS(826), + [anon_sym___restrict__] = ACTIONS(826), + [anon_sym__Atomic] = ACTIONS(826), + [anon_sym__Noreturn] = ACTIONS(826), + [anon_sym_noreturn] = ACTIONS(826), + [anon_sym_alignas] = ACTIONS(829), + [anon_sym__Alignas] = ACTIONS(829), + [sym_primitive_type] = ACTIONS(832), + [anon_sym_enum] = ACTIONS(835), + [anon_sym_struct] = ACTIONS(838), + [anon_sym_union] = ACTIONS(841), + [anon_sym_if] = ACTIONS(1053), + [anon_sym_else] = ACTIONS(785), + [anon_sym_switch] = ACTIONS(1056), + [anon_sym_case] = ACTIONS(785), + [anon_sym_default] = ACTIONS(785), + [anon_sym_while] = ACTIONS(1059), + [anon_sym_do] = ACTIONS(1062), + [anon_sym_for] = ACTIONS(1065), + [anon_sym_return] = ACTIONS(1068), + [anon_sym_break] = ACTIONS(1071), + [anon_sym_continue] = ACTIONS(1074), + [anon_sym_goto] = ACTIONS(1077), + [anon_sym___try] = ACTIONS(1080), + [anon_sym___leave] = ACTIONS(1083), + [anon_sym_DASH_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_sizeof] = ACTIONS(880), + [anon_sym___alignof__] = ACTIONS(883), + [anon_sym___alignof] = ACTIONS(883), + [anon_sym__alignof] = ACTIONS(883), + [anon_sym_alignof] = ACTIONS(883), + [anon_sym__Alignof] = ACTIONS(883), + [anon_sym_offsetof] = ACTIONS(886), + [anon_sym__Generic] = ACTIONS(889), + [anon_sym_asm] = ACTIONS(892), + [anon_sym___asm__] = ACTIONS(892), + [sym_number_literal] = ACTIONS(895), + [anon_sym_L_SQUOTE] = ACTIONS(898), + [anon_sym_u_SQUOTE] = ACTIONS(898), + [anon_sym_U_SQUOTE] = ACTIONS(898), + [anon_sym_u8_SQUOTE] = ACTIONS(898), + [anon_sym_SQUOTE] = ACTIONS(898), + [anon_sym_L_DQUOTE] = ACTIONS(901), + [anon_sym_u_DQUOTE] = ACTIONS(901), + [anon_sym_U_DQUOTE] = ACTIONS(901), + [anon_sym_u8_DQUOTE] = ACTIONS(901), + [anon_sym_DQUOTE] = ACTIONS(901), + [sym_true] = ACTIONS(904), + [sym_false] = ACTIONS(904), + [anon_sym_NULL] = ACTIONS(907), + [anon_sym_nullptr] = ACTIONS(907), + [sym_comment] = ACTIONS(3), + }, + [65] = { + [sym_declaration] = STATE(69), + [sym_type_definition] = STATE(69), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1115), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_compound_statement] = STATE(69), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(69), + [sym_labeled_statement] = STATE(69), + [sym_expression_statement] = STATE(69), + [sym_if_statement] = STATE(69), + [sym_switch_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_do_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_return_statement] = STATE(69), + [sym_break_statement] = STATE(69), + [sym_continue_statement] = STATE(69), + [sym_goto_statement] = STATE(69), + [sym_seh_try_statement] = STATE(69), + [sym_seh_leave_statement] = STATE(69), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(314), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [aux_sym_case_statement_repeat1] = STATE(69), + [sym_identifier] = ACTIONS(1086), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -22398,20 +22496,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(424), - [anon_sym___extension__] = ACTIONS(426), - [anon_sym_typedef] = ACTIONS(428), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym___extension__] = ACTIONS(27), + [anon_sym_typedef] = ACTIONS(29), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(788), - [anon_sym___clrcall] = ACTIONS(788), - [anon_sym___stdcall] = ACTIONS(788), - [anon_sym___fastcall] = ACTIONS(788), - [anon_sym___thiscall] = ACTIONS(788), - [anon_sym___vectorcall] = ACTIONS(788), - [anon_sym_LBRACE] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -22439,20 +22531,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(53), [anon_sym_struct] = ACTIONS(55), [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(434), - [anon_sym_else] = ACTIONS(788), - [anon_sym_switch] = ACTIONS(436), - [anon_sym_case] = ACTIONS(788), - [anon_sym_default] = ACTIONS(788), - [anon_sym_while] = ACTIONS(442), - [anon_sym_do] = ACTIONS(444), - [anon_sym_for] = ACTIONS(446), - [anon_sym_return] = ACTIONS(448), - [anon_sym_break] = ACTIONS(450), - [anon_sym_continue] = ACTIONS(452), - [anon_sym_goto] = ACTIONS(454), - [anon_sym___try] = ACTIONS(456), - [anon_sym___leave] = ACTIONS(458), + [anon_sym_if] = ACTIONS(1088), + [anon_sym_else] = ACTIONS(918), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_while] = ACTIONS(1090), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(1092), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym___try] = ACTIONS(1094), + [anon_sym___leave] = ACTIONS(404), [anon_sym_DASH_DASH] = ACTIONS(81), [anon_sym_PLUS_PLUS] = ACTIONS(81), [anon_sym_sizeof] = ACTIONS(83), @@ -22482,23 +22572,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [65] = { + [66] = { [sym_declaration] = STATE(67), [sym_type_definition] = STATE(67), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1173), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(455), - [sym_ms_declspec_modifier] = STATE(752), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1115), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), [sym_compound_statement] = STATE(67), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(763), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), [sym_attributed_statement] = STATE(67), [sym_labeled_statement] = STATE(67), [sym_expression_statement] = STATE(67), @@ -22513,35 +22603,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(67), [sym_seh_try_statement] = STATE(67), [sym_seh_leave_statement] = STATE(67), - [sym__expression] = STATE(1089), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1976), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym_macro_type_specifier] = STATE(822), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_attributed_declarator_repeat1] = STATE(381), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(314), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), [aux_sym_case_statement_repeat1] = STATE(67), [sym_identifier] = ACTIONS(1086), [anon_sym_LPAREN2] = ACTIONS(19), @@ -22587,7 +22676,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(55), [anon_sym_union] = ACTIONS(57), [anon_sym_if] = ACTIONS(1088), - [anon_sym_else] = ACTIONS(788), + [anon_sym_else] = ACTIONS(916), [anon_sym_switch] = ACTIONS(61), [anon_sym_while] = ACTIONS(1090), [anon_sym_do] = ACTIONS(69), @@ -22627,67 +22716,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [66] = { - [sym_declaration] = STATE(67), - [sym_type_definition] = STATE(67), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1173), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(455), - [sym_ms_declspec_modifier] = STATE(752), - [sym_compound_statement] = STATE(67), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(763), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym_attributed_statement] = STATE(67), - [sym_labeled_statement] = STATE(67), - [sym_expression_statement] = STATE(67), - [sym_if_statement] = STATE(67), - [sym_switch_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_do_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_return_statement] = STATE(67), - [sym_break_statement] = STATE(67), - [sym_continue_statement] = STATE(67), - [sym_goto_statement] = STATE(67), - [sym_seh_try_statement] = STATE(67), - [sym_seh_leave_statement] = STATE(67), - [sym__expression] = STATE(1089), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1976), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym_macro_type_specifier] = STATE(822), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_attributed_declarator_repeat1] = STATE(381), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), - [aux_sym_case_statement_repeat1] = STATE(67), + [67] = { + [sym_declaration] = STATE(69), + [sym_type_definition] = STATE(69), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1115), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_compound_statement] = STATE(69), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(69), + [sym_labeled_statement] = STATE(69), + [sym_expression_statement] = STATE(69), + [sym_if_statement] = STATE(69), + [sym_switch_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_do_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_return_statement] = STATE(69), + [sym_break_statement] = STATE(69), + [sym_continue_statement] = STATE(69), + [sym_goto_statement] = STATE(69), + [sym_seh_try_statement] = STATE(69), + [sym_seh_leave_statement] = STATE(69), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(314), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [aux_sym_case_statement_repeat1] = STATE(69), [sym_identifier] = ACTIONS(1086), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -22732,7 +22820,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(55), [anon_sym_union] = ACTIONS(57), [anon_sym_if] = ACTIONS(1088), - [anon_sym_else] = ACTIONS(786), + [anon_sym_else] = ACTIONS(912), [anon_sym_switch] = ACTIONS(61), [anon_sym_while] = ACTIONS(1090), [anon_sym_do] = ACTIONS(69), @@ -22772,168 +22860,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [67] = { - [sym_declaration] = STATE(67), - [sym_type_definition] = STATE(67), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1173), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(455), - [sym_ms_declspec_modifier] = STATE(752), - [sym_compound_statement] = STATE(67), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(763), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym_attributed_statement] = STATE(67), - [sym_labeled_statement] = STATE(67), - [sym_expression_statement] = STATE(67), - [sym_if_statement] = STATE(67), - [sym_switch_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_do_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_return_statement] = STATE(67), - [sym_break_statement] = STATE(67), - [sym_continue_statement] = STATE(67), - [sym_goto_statement] = STATE(67), - [sym_seh_try_statement] = STATE(67), - [sym_seh_leave_statement] = STATE(67), - [sym__expression] = STATE(1089), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1976), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym_macro_type_specifier] = STATE(822), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_attributed_declarator_repeat1] = STATE(381), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), - [aux_sym_case_statement_repeat1] = STATE(67), - [sym_identifier] = ACTIONS(1096), - [anon_sym_LPAREN2] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(798), - [anon_sym_TILDE] = ACTIONS(798), - [anon_sym_DASH] = ACTIONS(801), - [anon_sym_PLUS] = ACTIONS(801), - [anon_sym_STAR] = ACTIONS(804), - [anon_sym_AMP] = ACTIONS(804), - [anon_sym_SEMI] = ACTIONS(1041), - [anon_sym___extension__] = ACTIONS(996), - [anon_sym_typedef] = ACTIONS(999), - [anon_sym_extern] = ACTIONS(816), - [anon_sym___attribute__] = ACTIONS(819), - [anon_sym_LBRACK_LBRACK] = ACTIONS(822), - [anon_sym___declspec] = ACTIONS(825), - [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_signed] = ACTIONS(831), - [anon_sym_unsigned] = ACTIONS(831), - [anon_sym_long] = ACTIONS(831), - [anon_sym_short] = ACTIONS(831), - [anon_sym_static] = ACTIONS(816), - [anon_sym_auto] = ACTIONS(816), - [anon_sym_register] = ACTIONS(816), - [anon_sym_inline] = ACTIONS(816), - [anon_sym___inline] = ACTIONS(816), - [anon_sym___inline__] = ACTIONS(816), - [anon_sym___forceinline] = ACTIONS(816), - [anon_sym_thread_local] = ACTIONS(816), - [anon_sym___thread] = ACTIONS(816), - [anon_sym_const] = ACTIONS(834), - [anon_sym_constexpr] = ACTIONS(834), - [anon_sym_volatile] = ACTIONS(834), - [anon_sym_restrict] = ACTIONS(834), - [anon_sym___restrict__] = ACTIONS(834), - [anon_sym__Atomic] = ACTIONS(834), - [anon_sym__Noreturn] = ACTIONS(834), - [anon_sym_noreturn] = ACTIONS(834), - [anon_sym_alignas] = ACTIONS(837), - [anon_sym__Alignas] = ACTIONS(837), - [sym_primitive_type] = ACTIONS(840), - [anon_sym_enum] = ACTIONS(843), - [anon_sym_struct] = ACTIONS(846), - [anon_sym_union] = ACTIONS(849), - [anon_sym_if] = ACTIONS(1099), - [anon_sym_else] = ACTIONS(793), - [anon_sym_switch] = ACTIONS(1008), - [anon_sym_while] = ACTIONS(1102), - [anon_sym_do] = ACTIONS(1014), - [anon_sym_for] = ACTIONS(1105), - [anon_sym_return] = ACTIONS(1020), - [anon_sym_break] = ACTIONS(1023), - [anon_sym_continue] = ACTIONS(1026), - [anon_sym_goto] = ACTIONS(1029), - [anon_sym___try] = ACTIONS(1108), - [anon_sym___leave] = ACTIONS(1083), - [anon_sym_DASH_DASH] = ACTIONS(885), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_sizeof] = ACTIONS(888), - [anon_sym___alignof__] = ACTIONS(891), - [anon_sym___alignof] = ACTIONS(891), - [anon_sym__alignof] = ACTIONS(891), - [anon_sym_alignof] = ACTIONS(891), - [anon_sym__Alignof] = ACTIONS(891), - [anon_sym_offsetof] = ACTIONS(894), - [anon_sym__Generic] = ACTIONS(897), - [anon_sym_asm] = ACTIONS(900), - [anon_sym___asm__] = ACTIONS(900), - [sym_number_literal] = ACTIONS(903), - [anon_sym_L_SQUOTE] = ACTIONS(906), - [anon_sym_u_SQUOTE] = ACTIONS(906), - [anon_sym_U_SQUOTE] = ACTIONS(906), - [anon_sym_u8_SQUOTE] = ACTIONS(906), - [anon_sym_SQUOTE] = ACTIONS(906), - [anon_sym_L_DQUOTE] = ACTIONS(909), - [anon_sym_u_DQUOTE] = ACTIONS(909), - [anon_sym_U_DQUOTE] = ACTIONS(909), - [anon_sym_u8_DQUOTE] = ACTIONS(909), - [anon_sym_DQUOTE] = ACTIONS(909), - [sym_true] = ACTIONS(912), - [sym_false] = ACTIONS(912), - [anon_sym_NULL] = ACTIONS(915), - [anon_sym_nullptr] = ACTIONS(915), - [sym_comment] = ACTIONS(3), - }, [68] = { [sym_declaration] = STATE(65), [sym_type_definition] = STATE(65), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1173), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(455), - [sym_ms_declspec_modifier] = STATE(752), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1115), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), [sym_compound_statement] = STATE(65), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(763), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), [sym_attributed_statement] = STATE(65), [sym_labeled_statement] = STATE(65), [sym_expression_statement] = STATE(65), @@ -22948,35 +22891,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(65), [sym_seh_try_statement] = STATE(65), [sym_seh_leave_statement] = STATE(65), - [sym__expression] = STATE(1089), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1976), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym_macro_type_specifier] = STATE(822), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_attributed_declarator_repeat1] = STATE(381), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(314), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), [aux_sym_case_statement_repeat1] = STATE(65), [sym_identifier] = ACTIONS(1086), [anon_sym_LPAREN2] = ACTIONS(19), @@ -23022,7 +22964,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(55), [anon_sym_union] = ACTIONS(57), [anon_sym_if] = ACTIONS(1088), - [anon_sym_else] = ACTIONS(784), + [anon_sym_else] = ACTIONS(914), [anon_sym_switch] = ACTIONS(61), [anon_sym_while] = ACTIONS(1090), [anon_sym_do] = ACTIONS(69), @@ -23063,194 +23005,192 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [69] = { - [sym_declaration] = STATE(66), - [sym_type_definition] = STATE(66), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1173), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(455), - [sym_ms_declspec_modifier] = STATE(752), - [sym_compound_statement] = STATE(66), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(763), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym_attributed_statement] = STATE(66), - [sym_labeled_statement] = STATE(66), - [sym_expression_statement] = STATE(66), - [sym_if_statement] = STATE(66), - [sym_switch_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_do_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_return_statement] = STATE(66), - [sym_break_statement] = STATE(66), - [sym_continue_statement] = STATE(66), - [sym_goto_statement] = STATE(66), - [sym_seh_try_statement] = STATE(66), - [sym_seh_leave_statement] = STATE(66), - [sym__expression] = STATE(1089), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1976), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym_macro_type_specifier] = STATE(822), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_attributed_declarator_repeat1] = STATE(381), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), - [aux_sym_case_statement_repeat1] = STATE(66), - [sym_identifier] = ACTIONS(1086), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(368), - [anon_sym___extension__] = ACTIONS(27), - [anon_sym_typedef] = ACTIONS(29), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_signed] = ACTIONS(43), - [anon_sym_unsigned] = ACTIONS(43), - [anon_sym_long] = ACTIONS(43), - [anon_sym_short] = ACTIONS(43), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [anon_sym___inline] = ACTIONS(45), - [anon_sym___inline__] = ACTIONS(45), - [anon_sym___forceinline] = ACTIONS(45), - [anon_sym_thread_local] = ACTIONS(45), - [anon_sym___thread] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_constexpr] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym___restrict__] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(47), - [anon_sym__Noreturn] = ACTIONS(47), - [anon_sym_noreturn] = ACTIONS(47), - [anon_sym_alignas] = ACTIONS(49), - [anon_sym__Alignas] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(1088), - [anon_sym_else] = ACTIONS(918), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_while] = ACTIONS(1090), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(1092), - [anon_sym_return] = ACTIONS(73), - [anon_sym_break] = ACTIONS(75), - [anon_sym_continue] = ACTIONS(77), - [anon_sym_goto] = ACTIONS(79), - [anon_sym___try] = ACTIONS(1094), - [anon_sym___leave] = ACTIONS(404), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [sym_declaration] = STATE(69), + [sym_type_definition] = STATE(69), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1115), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(405), + [sym_ms_declspec_modifier] = STATE(698), + [sym_compound_statement] = STATE(69), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_attributed_statement] = STATE(69), + [sym_labeled_statement] = STATE(69), + [sym_expression_statement] = STATE(69), + [sym_if_statement] = STATE(69), + [sym_switch_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_do_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_return_statement] = STATE(69), + [sym_break_statement] = STATE(69), + [sym_continue_statement] = STATE(69), + [sym_goto_statement] = STATE(69), + [sym_seh_try_statement] = STATE(69), + [sym_seh_leave_statement] = STATE(69), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(314), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [aux_sym_case_statement_repeat1] = STATE(69), + [sym_identifier] = ACTIONS(1096), + [anon_sym_LPAREN2] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(790), + [anon_sym_TILDE] = ACTIONS(790), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(796), + [anon_sym_SEMI] = ACTIONS(1041), + [anon_sym___extension__] = ACTIONS(946), + [anon_sym_typedef] = ACTIONS(949), + [anon_sym_extern] = ACTIONS(808), + [anon_sym___attribute__] = ACTIONS(811), + [anon_sym_LBRACK_LBRACK] = ACTIONS(814), + [anon_sym___declspec] = ACTIONS(817), + [anon_sym_LBRACE] = ACTIONS(952), + [anon_sym_signed] = ACTIONS(823), + [anon_sym_unsigned] = ACTIONS(823), + [anon_sym_long] = ACTIONS(823), + [anon_sym_short] = ACTIONS(823), + [anon_sym_static] = ACTIONS(808), + [anon_sym_auto] = ACTIONS(808), + [anon_sym_register] = ACTIONS(808), + [anon_sym_inline] = ACTIONS(808), + [anon_sym___inline] = ACTIONS(808), + [anon_sym___inline__] = ACTIONS(808), + [anon_sym___forceinline] = ACTIONS(808), + [anon_sym_thread_local] = ACTIONS(808), + [anon_sym___thread] = ACTIONS(808), + [anon_sym_const] = ACTIONS(826), + [anon_sym_constexpr] = ACTIONS(826), + [anon_sym_volatile] = ACTIONS(826), + [anon_sym_restrict] = ACTIONS(826), + [anon_sym___restrict__] = ACTIONS(826), + [anon_sym__Atomic] = ACTIONS(826), + [anon_sym__Noreturn] = ACTIONS(826), + [anon_sym_noreturn] = ACTIONS(826), + [anon_sym_alignas] = ACTIONS(829), + [anon_sym__Alignas] = ACTIONS(829), + [sym_primitive_type] = ACTIONS(832), + [anon_sym_enum] = ACTIONS(835), + [anon_sym_struct] = ACTIONS(838), + [anon_sym_union] = ACTIONS(841), + [anon_sym_if] = ACTIONS(1099), + [anon_sym_else] = ACTIONS(785), + [anon_sym_switch] = ACTIONS(958), + [anon_sym_while] = ACTIONS(1102), + [anon_sym_do] = ACTIONS(964), + [anon_sym_for] = ACTIONS(1105), + [anon_sym_return] = ACTIONS(970), + [anon_sym_break] = ACTIONS(973), + [anon_sym_continue] = ACTIONS(976), + [anon_sym_goto] = ACTIONS(979), + [anon_sym___try] = ACTIONS(1108), + [anon_sym___leave] = ACTIONS(1083), + [anon_sym_DASH_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_sizeof] = ACTIONS(880), + [anon_sym___alignof__] = ACTIONS(883), + [anon_sym___alignof] = ACTIONS(883), + [anon_sym__alignof] = ACTIONS(883), + [anon_sym_alignof] = ACTIONS(883), + [anon_sym__Alignof] = ACTIONS(883), + [anon_sym_offsetof] = ACTIONS(886), + [anon_sym__Generic] = ACTIONS(889), + [anon_sym_asm] = ACTIONS(892), + [anon_sym___asm__] = ACTIONS(892), + [sym_number_literal] = ACTIONS(895), + [anon_sym_L_SQUOTE] = ACTIONS(898), + [anon_sym_u_SQUOTE] = ACTIONS(898), + [anon_sym_U_SQUOTE] = ACTIONS(898), + [anon_sym_u8_SQUOTE] = ACTIONS(898), + [anon_sym_SQUOTE] = ACTIONS(898), + [anon_sym_L_DQUOTE] = ACTIONS(901), + [anon_sym_u_DQUOTE] = ACTIONS(901), + [anon_sym_U_DQUOTE] = ACTIONS(901), + [anon_sym_u8_DQUOTE] = ACTIONS(901), + [anon_sym_DQUOTE] = ACTIONS(901), + [sym_true] = ACTIONS(904), + [sym_false] = ACTIONS(904), + [anon_sym_NULL] = ACTIONS(907), + [anon_sym_nullptr] = ACTIONS(907), [sym_comment] = ACTIONS(3), }, [70] = { - [sym_declaration] = STATE(519), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1156), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(752), - [sym_ms_declspec_modifier] = STATE(752), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(763), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym__for_statement_body] = STATE(1879), - [sym__expression] = STATE(1079), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1878), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym_macro_type_specifier] = STATE(822), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_declaration] = STATE(456), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1111), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(698), + [sym_ms_declspec_modifier] = STATE(698), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym__for_statement_body] = STATE(1845), + [sym_expression] = STATE(1049), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1969), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), [sym_identifier] = ACTIONS(1111), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -23322,49 +23262,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [71] = { - [sym_declaration] = STATE(519), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1156), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(752), - [sym_ms_declspec_modifier] = STATE(752), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(763), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym__for_statement_body] = STATE(1806), - [sym__expression] = STATE(1079), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1878), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym_macro_type_specifier] = STATE(822), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_declaration] = STATE(456), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1111), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(698), + [sym_ms_declspec_modifier] = STATE(698), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym__for_statement_body] = STATE(1920), + [sym_expression] = STATE(1049), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1969), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), [sym_identifier] = ACTIONS(1111), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -23436,49 +23375,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [72] = { - [sym_declaration] = STATE(519), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1156), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(752), - [sym_ms_declspec_modifier] = STATE(752), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(763), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym__for_statement_body] = STATE(1949), - [sym__expression] = STATE(1079), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1878), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym_macro_type_specifier] = STATE(822), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_declaration] = STATE(456), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1111), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(698), + [sym_ms_declspec_modifier] = STATE(698), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym__for_statement_body] = STATE(1966), + [sym_expression] = STATE(1049), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1969), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), [sym_identifier] = ACTIONS(1111), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -23550,49 +23488,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [73] = { - [sym_declaration] = STATE(519), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1156), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(752), - [sym_ms_declspec_modifier] = STATE(752), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(763), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym__for_statement_body] = STATE(1895), - [sym__expression] = STATE(1079), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1878), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym_macro_type_specifier] = STATE(822), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_declaration] = STATE(456), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1111), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(698), + [sym_ms_declspec_modifier] = STATE(698), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym__for_statement_body] = STATE(1899), + [sym_expression] = STATE(1049), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1969), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), [sym_identifier] = ACTIONS(1111), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -23664,49 +23601,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [74] = { - [sym_declaration] = STATE(519), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1156), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(752), - [sym_ms_declspec_modifier] = STATE(752), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(763), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym__for_statement_body] = STATE(2017), - [sym__expression] = STATE(1079), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1878), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym_macro_type_specifier] = STATE(822), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_declaration] = STATE(456), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1111), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(698), + [sym_ms_declspec_modifier] = STATE(698), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym__for_statement_body] = STATE(1736), + [sym_expression] = STATE(1049), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1969), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), [sym_identifier] = ACTIONS(1111), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -23778,7 +23714,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [75] = { - [sym_else_clause] = STATE(113), + [sym_else_clause] = STATE(103), [sym_identifier] = ACTIONS(1117), [aux_sym_preproc_include_token1] = ACTIONS(1117), [aux_sym_preproc_def_token1] = ACTIONS(1117), @@ -23987,107 +23923,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [77] = { - [sym_identifier] = ACTIONS(1127), - [aux_sym_preproc_include_token1] = ACTIONS(1127), - [aux_sym_preproc_def_token1] = ACTIONS(1127), - [aux_sym_preproc_if_token1] = ACTIONS(1127), - [aux_sym_preproc_if_token2] = ACTIONS(1127), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1127), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1127), - [aux_sym_preproc_else_token1] = ACTIONS(1127), - [aux_sym_preproc_elif_token1] = ACTIONS(1127), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1127), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1127), - [sym_preproc_directive] = ACTIONS(1127), - [anon_sym_LPAREN2] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_STAR] = ACTIONS(1129), - [anon_sym_AMP] = ACTIONS(1129), - [anon_sym_SEMI] = ACTIONS(1129), - [anon_sym___extension__] = ACTIONS(1127), - [anon_sym_typedef] = ACTIONS(1127), - [anon_sym_extern] = ACTIONS(1127), - [anon_sym___attribute__] = ACTIONS(1127), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1129), - [anon_sym___declspec] = ACTIONS(1127), - [anon_sym___cdecl] = ACTIONS(1127), - [anon_sym___clrcall] = ACTIONS(1127), - [anon_sym___stdcall] = ACTIONS(1127), - [anon_sym___fastcall] = ACTIONS(1127), - [anon_sym___thiscall] = ACTIONS(1127), - [anon_sym___vectorcall] = ACTIONS(1127), - [anon_sym_LBRACE] = ACTIONS(1129), - [anon_sym_signed] = ACTIONS(1127), - [anon_sym_unsigned] = ACTIONS(1127), - [anon_sym_long] = ACTIONS(1127), - [anon_sym_short] = ACTIONS(1127), - [anon_sym_static] = ACTIONS(1127), - [anon_sym_auto] = ACTIONS(1127), - [anon_sym_register] = ACTIONS(1127), - [anon_sym_inline] = ACTIONS(1127), - [anon_sym___inline] = ACTIONS(1127), - [anon_sym___inline__] = ACTIONS(1127), - [anon_sym___forceinline] = ACTIONS(1127), - [anon_sym_thread_local] = ACTIONS(1127), - [anon_sym___thread] = ACTIONS(1127), - [anon_sym_const] = ACTIONS(1127), - [anon_sym_constexpr] = ACTIONS(1127), - [anon_sym_volatile] = ACTIONS(1127), - [anon_sym_restrict] = ACTIONS(1127), - [anon_sym___restrict__] = ACTIONS(1127), - [anon_sym__Atomic] = ACTIONS(1127), - [anon_sym__Noreturn] = ACTIONS(1127), - [anon_sym_noreturn] = ACTIONS(1127), - [anon_sym_alignas] = ACTIONS(1127), - [anon_sym__Alignas] = ACTIONS(1127), - [sym_primitive_type] = ACTIONS(1127), - [anon_sym_enum] = ACTIONS(1127), - [anon_sym_struct] = ACTIONS(1127), - [anon_sym_union] = ACTIONS(1127), - [anon_sym_if] = ACTIONS(1127), - [anon_sym_else] = ACTIONS(1127), - [anon_sym_switch] = ACTIONS(1127), - [anon_sym_case] = ACTIONS(1127), - [anon_sym_default] = ACTIONS(1127), - [anon_sym_while] = ACTIONS(1127), - [anon_sym_do] = ACTIONS(1127), - [anon_sym_for] = ACTIONS(1127), - [anon_sym_return] = ACTIONS(1127), - [anon_sym_break] = ACTIONS(1127), - [anon_sym_continue] = ACTIONS(1127), - [anon_sym_goto] = ACTIONS(1127), - [anon_sym___try] = ACTIONS(1127), - [anon_sym___leave] = ACTIONS(1127), - [anon_sym_DASH_DASH] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1129), - [anon_sym_sizeof] = ACTIONS(1127), - [anon_sym___alignof__] = ACTIONS(1127), - [anon_sym___alignof] = ACTIONS(1127), - [anon_sym__alignof] = ACTIONS(1127), - [anon_sym_alignof] = ACTIONS(1127), - [anon_sym__Alignof] = ACTIONS(1127), - [anon_sym_offsetof] = ACTIONS(1127), - [anon_sym__Generic] = ACTIONS(1127), - [anon_sym_asm] = ACTIONS(1127), - [anon_sym___asm__] = ACTIONS(1127), - [sym_number_literal] = ACTIONS(1129), - [anon_sym_L_SQUOTE] = ACTIONS(1129), - [anon_sym_u_SQUOTE] = ACTIONS(1129), - [anon_sym_U_SQUOTE] = ACTIONS(1129), - [anon_sym_u8_SQUOTE] = ACTIONS(1129), - [anon_sym_SQUOTE] = ACTIONS(1129), - [anon_sym_L_DQUOTE] = ACTIONS(1129), - [anon_sym_u_DQUOTE] = ACTIONS(1129), - [anon_sym_U_DQUOTE] = ACTIONS(1129), - [anon_sym_u8_DQUOTE] = ACTIONS(1129), - [anon_sym_DQUOTE] = ACTIONS(1129), - [sym_true] = ACTIONS(1127), - [sym_false] = ACTIONS(1127), - [anon_sym_NULL] = ACTIONS(1127), - [anon_sym_nullptr] = ACTIONS(1127), + [ts_builtin_sym_end] = ACTIONS(1127), + [sym_identifier] = ACTIONS(1129), + [aux_sym_preproc_include_token1] = ACTIONS(1129), + [aux_sym_preproc_def_token1] = ACTIONS(1129), + [anon_sym_COMMA] = ACTIONS(1127), + [anon_sym_RPAREN] = ACTIONS(1127), + [aux_sym_preproc_if_token1] = ACTIONS(1129), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1129), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1129), + [sym_preproc_directive] = ACTIONS(1129), + [anon_sym_LPAREN2] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_TILDE] = ACTIONS(1127), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_STAR] = ACTIONS(1127), + [anon_sym_AMP] = ACTIONS(1127), + [anon_sym_SEMI] = ACTIONS(1127), + [anon_sym___extension__] = ACTIONS(1129), + [anon_sym_typedef] = ACTIONS(1129), + [anon_sym_extern] = ACTIONS(1129), + [anon_sym___attribute__] = ACTIONS(1129), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1127), + [anon_sym___declspec] = ACTIONS(1129), + [anon_sym___cdecl] = ACTIONS(1129), + [anon_sym___clrcall] = ACTIONS(1129), + [anon_sym___stdcall] = ACTIONS(1129), + [anon_sym___fastcall] = ACTIONS(1129), + [anon_sym___thiscall] = ACTIONS(1129), + [anon_sym___vectorcall] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_signed] = ACTIONS(1129), + [anon_sym_unsigned] = ACTIONS(1129), + [anon_sym_long] = ACTIONS(1129), + [anon_sym_short] = ACTIONS(1129), + [anon_sym_static] = ACTIONS(1129), + [anon_sym_auto] = ACTIONS(1129), + [anon_sym_register] = ACTIONS(1129), + [anon_sym_inline] = ACTIONS(1129), + [anon_sym___inline] = ACTIONS(1129), + [anon_sym___inline__] = ACTIONS(1129), + [anon_sym___forceinline] = ACTIONS(1129), + [anon_sym_thread_local] = ACTIONS(1129), + [anon_sym___thread] = ACTIONS(1129), + [anon_sym_const] = ACTIONS(1129), + [anon_sym_constexpr] = ACTIONS(1129), + [anon_sym_volatile] = ACTIONS(1129), + [anon_sym_restrict] = ACTIONS(1129), + [anon_sym___restrict__] = ACTIONS(1129), + [anon_sym__Atomic] = ACTIONS(1129), + [anon_sym__Noreturn] = ACTIONS(1129), + [anon_sym_noreturn] = ACTIONS(1129), + [anon_sym_alignas] = ACTIONS(1129), + [anon_sym__Alignas] = ACTIONS(1129), + [sym_primitive_type] = ACTIONS(1129), + [anon_sym_enum] = ACTIONS(1129), + [anon_sym_struct] = ACTIONS(1129), + [anon_sym_union] = ACTIONS(1129), + [anon_sym_if] = ACTIONS(1129), + [anon_sym_else] = ACTIONS(1129), + [anon_sym_switch] = ACTIONS(1129), + [anon_sym_case] = ACTIONS(1129), + [anon_sym_default] = ACTIONS(1129), + [anon_sym_while] = ACTIONS(1129), + [anon_sym_do] = ACTIONS(1129), + [anon_sym_for] = ACTIONS(1129), + [anon_sym_return] = ACTIONS(1129), + [anon_sym_break] = ACTIONS(1129), + [anon_sym_continue] = ACTIONS(1129), + [anon_sym_goto] = ACTIONS(1129), + [anon_sym___try] = ACTIONS(1129), + [anon_sym___except] = ACTIONS(1129), + [anon_sym___finally] = ACTIONS(1129), + [anon_sym___leave] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1127), + [anon_sym_PLUS_PLUS] = ACTIONS(1127), + [anon_sym_sizeof] = ACTIONS(1129), + [anon_sym___alignof__] = ACTIONS(1129), + [anon_sym___alignof] = ACTIONS(1129), + [anon_sym__alignof] = ACTIONS(1129), + [anon_sym_alignof] = ACTIONS(1129), + [anon_sym__Alignof] = ACTIONS(1129), + [anon_sym_offsetof] = ACTIONS(1129), + [anon_sym__Generic] = ACTIONS(1129), + [anon_sym_asm] = ACTIONS(1129), + [anon_sym___asm__] = ACTIONS(1129), + [sym_number_literal] = ACTIONS(1127), + [anon_sym_L_SQUOTE] = ACTIONS(1127), + [anon_sym_u_SQUOTE] = ACTIONS(1127), + [anon_sym_U_SQUOTE] = ACTIONS(1127), + [anon_sym_u8_SQUOTE] = ACTIONS(1127), + [anon_sym_SQUOTE] = ACTIONS(1127), + [anon_sym_L_DQUOTE] = ACTIONS(1127), + [anon_sym_u_DQUOTE] = ACTIONS(1127), + [anon_sym_U_DQUOTE] = ACTIONS(1127), + [anon_sym_u8_DQUOTE] = ACTIONS(1127), + [anon_sym_DQUOTE] = ACTIONS(1127), + [sym_true] = ACTIONS(1129), + [sym_false] = ACTIONS(1129), + [anon_sym_NULL] = ACTIONS(1129), + [anon_sym_nullptr] = ACTIONS(1129), [sym_comment] = ACTIONS(3), }, [78] = { @@ -24195,6 +24131,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [79] = { + [sym_identifier] = ACTIONS(1131), + [aux_sym_preproc_include_token1] = ACTIONS(1131), + [aux_sym_preproc_def_token1] = ACTIONS(1131), + [aux_sym_preproc_if_token1] = ACTIONS(1131), + [aux_sym_preproc_if_token2] = ACTIONS(1131), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1131), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1131), + [aux_sym_preproc_else_token1] = ACTIONS(1131), + [aux_sym_preproc_elif_token1] = ACTIONS(1131), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1131), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1131), + [sym_preproc_directive] = ACTIONS(1131), + [anon_sym_LPAREN2] = ACTIONS(1133), + [anon_sym_BANG] = ACTIONS(1133), + [anon_sym_TILDE] = ACTIONS(1133), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_AMP] = ACTIONS(1133), + [anon_sym_SEMI] = ACTIONS(1133), + [anon_sym___extension__] = ACTIONS(1131), + [anon_sym_typedef] = ACTIONS(1131), + [anon_sym_extern] = ACTIONS(1131), + [anon_sym___attribute__] = ACTIONS(1131), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1133), + [anon_sym___declspec] = ACTIONS(1131), + [anon_sym___cdecl] = ACTIONS(1131), + [anon_sym___clrcall] = ACTIONS(1131), + [anon_sym___stdcall] = ACTIONS(1131), + [anon_sym___fastcall] = ACTIONS(1131), + [anon_sym___thiscall] = ACTIONS(1131), + [anon_sym___vectorcall] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(1133), + [anon_sym_signed] = ACTIONS(1131), + [anon_sym_unsigned] = ACTIONS(1131), + [anon_sym_long] = ACTIONS(1131), + [anon_sym_short] = ACTIONS(1131), + [anon_sym_static] = ACTIONS(1131), + [anon_sym_auto] = ACTIONS(1131), + [anon_sym_register] = ACTIONS(1131), + [anon_sym_inline] = ACTIONS(1131), + [anon_sym___inline] = ACTIONS(1131), + [anon_sym___inline__] = ACTIONS(1131), + [anon_sym___forceinline] = ACTIONS(1131), + [anon_sym_thread_local] = ACTIONS(1131), + [anon_sym___thread] = ACTIONS(1131), + [anon_sym_const] = ACTIONS(1131), + [anon_sym_constexpr] = ACTIONS(1131), + [anon_sym_volatile] = ACTIONS(1131), + [anon_sym_restrict] = ACTIONS(1131), + [anon_sym___restrict__] = ACTIONS(1131), + [anon_sym__Atomic] = ACTIONS(1131), + [anon_sym__Noreturn] = ACTIONS(1131), + [anon_sym_noreturn] = ACTIONS(1131), + [anon_sym_alignas] = ACTIONS(1131), + [anon_sym__Alignas] = ACTIONS(1131), + [sym_primitive_type] = ACTIONS(1131), + [anon_sym_enum] = ACTIONS(1131), + [anon_sym_struct] = ACTIONS(1131), + [anon_sym_union] = ACTIONS(1131), + [anon_sym_if] = ACTIONS(1131), + [anon_sym_else] = ACTIONS(1131), + [anon_sym_switch] = ACTIONS(1131), + [anon_sym_case] = ACTIONS(1131), + [anon_sym_default] = ACTIONS(1131), + [anon_sym_while] = ACTIONS(1131), + [anon_sym_do] = ACTIONS(1131), + [anon_sym_for] = ACTIONS(1131), + [anon_sym_return] = ACTIONS(1131), + [anon_sym_break] = ACTIONS(1131), + [anon_sym_continue] = ACTIONS(1131), + [anon_sym_goto] = ACTIONS(1131), + [anon_sym___try] = ACTIONS(1131), + [anon_sym___leave] = ACTIONS(1131), + [anon_sym_DASH_DASH] = ACTIONS(1133), + [anon_sym_PLUS_PLUS] = ACTIONS(1133), + [anon_sym_sizeof] = ACTIONS(1131), + [anon_sym___alignof__] = ACTIONS(1131), + [anon_sym___alignof] = ACTIONS(1131), + [anon_sym__alignof] = ACTIONS(1131), + [anon_sym_alignof] = ACTIONS(1131), + [anon_sym__Alignof] = ACTIONS(1131), + [anon_sym_offsetof] = ACTIONS(1131), + [anon_sym__Generic] = ACTIONS(1131), + [anon_sym_asm] = ACTIONS(1131), + [anon_sym___asm__] = ACTIONS(1131), + [sym_number_literal] = ACTIONS(1133), + [anon_sym_L_SQUOTE] = ACTIONS(1133), + [anon_sym_u_SQUOTE] = ACTIONS(1133), + [anon_sym_U_SQUOTE] = ACTIONS(1133), + [anon_sym_u8_SQUOTE] = ACTIONS(1133), + [anon_sym_SQUOTE] = ACTIONS(1133), + [anon_sym_L_DQUOTE] = ACTIONS(1133), + [anon_sym_u_DQUOTE] = ACTIONS(1133), + [anon_sym_U_DQUOTE] = ACTIONS(1133), + [anon_sym_u8_DQUOTE] = ACTIONS(1133), + [anon_sym_DQUOTE] = ACTIONS(1133), + [sym_true] = ACTIONS(1131), + [sym_false] = ACTIONS(1131), + [anon_sym_NULL] = ACTIONS(1131), + [anon_sym_nullptr] = ACTIONS(1131), + [sym_comment] = ACTIONS(3), + }, + [80] = { [sym_identifier] = ACTIONS(1135), [aux_sym_preproc_include_token1] = ACTIONS(1135), [aux_sym_preproc_def_token1] = ACTIONS(1135), @@ -24298,7 +24338,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1135), [sym_comment] = ACTIONS(3), }, - [80] = { + [81] = { [sym_identifier] = ACTIONS(1139), [aux_sym_preproc_include_token1] = ACTIONS(1139), [aux_sym_preproc_def_token1] = ACTIONS(1139), @@ -24402,7 +24442,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1139), [sym_comment] = ACTIONS(3), }, - [81] = { + [82] = { [sym_identifier] = ACTIONS(1143), [aux_sym_preproc_include_token1] = ACTIONS(1143), [aux_sym_preproc_def_token1] = ACTIONS(1143), @@ -24506,110 +24546,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1143), [sym_comment] = ACTIONS(3), }, - [82] = { - [sym_identifier] = ACTIONS(1147), - [aux_sym_preproc_include_token1] = ACTIONS(1147), - [aux_sym_preproc_def_token1] = ACTIONS(1147), - [aux_sym_preproc_if_token1] = ACTIONS(1147), - [aux_sym_preproc_if_token2] = ACTIONS(1147), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1147), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1147), - [aux_sym_preproc_else_token1] = ACTIONS(1147), - [aux_sym_preproc_elif_token1] = ACTIONS(1147), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1147), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1147), - [sym_preproc_directive] = ACTIONS(1147), - [anon_sym_LPAREN2] = ACTIONS(1149), - [anon_sym_BANG] = ACTIONS(1149), - [anon_sym_TILDE] = ACTIONS(1149), - [anon_sym_DASH] = ACTIONS(1147), - [anon_sym_PLUS] = ACTIONS(1147), - [anon_sym_STAR] = ACTIONS(1149), - [anon_sym_AMP] = ACTIONS(1149), - [anon_sym_SEMI] = ACTIONS(1149), - [anon_sym___extension__] = ACTIONS(1147), - [anon_sym_typedef] = ACTIONS(1147), - [anon_sym_extern] = ACTIONS(1147), - [anon_sym___attribute__] = ACTIONS(1147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1149), - [anon_sym___declspec] = ACTIONS(1147), - [anon_sym___cdecl] = ACTIONS(1147), - [anon_sym___clrcall] = ACTIONS(1147), - [anon_sym___stdcall] = ACTIONS(1147), - [anon_sym___fastcall] = ACTIONS(1147), - [anon_sym___thiscall] = ACTIONS(1147), - [anon_sym___vectorcall] = ACTIONS(1147), - [anon_sym_LBRACE] = ACTIONS(1149), - [anon_sym_signed] = ACTIONS(1147), - [anon_sym_unsigned] = ACTIONS(1147), - [anon_sym_long] = ACTIONS(1147), - [anon_sym_short] = ACTIONS(1147), - [anon_sym_static] = ACTIONS(1147), - [anon_sym_auto] = ACTIONS(1147), - [anon_sym_register] = ACTIONS(1147), - [anon_sym_inline] = ACTIONS(1147), - [anon_sym___inline] = ACTIONS(1147), - [anon_sym___inline__] = ACTIONS(1147), - [anon_sym___forceinline] = ACTIONS(1147), - [anon_sym_thread_local] = ACTIONS(1147), - [anon_sym___thread] = ACTIONS(1147), - [anon_sym_const] = ACTIONS(1147), - [anon_sym_constexpr] = ACTIONS(1147), - [anon_sym_volatile] = ACTIONS(1147), - [anon_sym_restrict] = ACTIONS(1147), - [anon_sym___restrict__] = ACTIONS(1147), - [anon_sym__Atomic] = ACTIONS(1147), - [anon_sym__Noreturn] = ACTIONS(1147), - [anon_sym_noreturn] = ACTIONS(1147), - [anon_sym_alignas] = ACTIONS(1147), - [anon_sym__Alignas] = ACTIONS(1147), - [sym_primitive_type] = ACTIONS(1147), - [anon_sym_enum] = ACTIONS(1147), - [anon_sym_struct] = ACTIONS(1147), - [anon_sym_union] = ACTIONS(1147), - [anon_sym_if] = ACTIONS(1147), - [anon_sym_else] = ACTIONS(1147), - [anon_sym_switch] = ACTIONS(1147), - [anon_sym_case] = ACTIONS(1147), - [anon_sym_default] = ACTIONS(1147), - [anon_sym_while] = ACTIONS(1147), - [anon_sym_do] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1147), - [anon_sym_return] = ACTIONS(1147), - [anon_sym_break] = ACTIONS(1147), - [anon_sym_continue] = ACTIONS(1147), - [anon_sym_goto] = ACTIONS(1147), - [anon_sym___try] = ACTIONS(1147), - [anon_sym___leave] = ACTIONS(1147), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_sizeof] = ACTIONS(1147), - [anon_sym___alignof__] = ACTIONS(1147), - [anon_sym___alignof] = ACTIONS(1147), - [anon_sym__alignof] = ACTIONS(1147), - [anon_sym_alignof] = ACTIONS(1147), - [anon_sym__Alignof] = ACTIONS(1147), - [anon_sym_offsetof] = ACTIONS(1147), - [anon_sym__Generic] = ACTIONS(1147), - [anon_sym_asm] = ACTIONS(1147), - [anon_sym___asm__] = ACTIONS(1147), - [sym_number_literal] = ACTIONS(1149), - [anon_sym_L_SQUOTE] = ACTIONS(1149), - [anon_sym_u_SQUOTE] = ACTIONS(1149), - [anon_sym_U_SQUOTE] = ACTIONS(1149), - [anon_sym_u8_SQUOTE] = ACTIONS(1149), - [anon_sym_SQUOTE] = ACTIONS(1149), - [anon_sym_L_DQUOTE] = ACTIONS(1149), - [anon_sym_u_DQUOTE] = ACTIONS(1149), - [anon_sym_U_DQUOTE] = ACTIONS(1149), - [anon_sym_u8_DQUOTE] = ACTIONS(1149), - [anon_sym_DQUOTE] = ACTIONS(1149), - [sym_true] = ACTIONS(1147), - [sym_false] = ACTIONS(1147), - [anon_sym_NULL] = ACTIONS(1147), - [anon_sym_nullptr] = ACTIONS(1147), - [sym_comment] = ACTIONS(3), - }, [83] = { [sym_identifier] = ACTIONS(1147), [aux_sym_preproc_include_token1] = ACTIONS(1147), @@ -24819,214 +24755,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [85] = { - [sym_identifier] = ACTIONS(1123), - [aux_sym_preproc_include_token1] = ACTIONS(1123), - [aux_sym_preproc_def_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token2] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), - [aux_sym_preproc_else_token1] = ACTIONS(1123), - [aux_sym_preproc_elif_token1] = ACTIONS(1123), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1123), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1123), - [sym_preproc_directive] = ACTIONS(1123), - [anon_sym_LPAREN2] = ACTIONS(1125), - [anon_sym_BANG] = ACTIONS(1125), - [anon_sym_TILDE] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym___extension__] = ACTIONS(1123), - [anon_sym_typedef] = ACTIONS(1123), - [anon_sym_extern] = ACTIONS(1123), - [anon_sym___attribute__] = ACTIONS(1123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), - [anon_sym___declspec] = ACTIONS(1123), - [anon_sym___cdecl] = ACTIONS(1123), - [anon_sym___clrcall] = ACTIONS(1123), - [anon_sym___stdcall] = ACTIONS(1123), - [anon_sym___fastcall] = ACTIONS(1123), - [anon_sym___thiscall] = ACTIONS(1123), - [anon_sym___vectorcall] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_signed] = ACTIONS(1123), - [anon_sym_unsigned] = ACTIONS(1123), - [anon_sym_long] = ACTIONS(1123), - [anon_sym_short] = ACTIONS(1123), - [anon_sym_static] = ACTIONS(1123), - [anon_sym_auto] = ACTIONS(1123), - [anon_sym_register] = ACTIONS(1123), - [anon_sym_inline] = ACTIONS(1123), - [anon_sym___inline] = ACTIONS(1123), - [anon_sym___inline__] = ACTIONS(1123), - [anon_sym___forceinline] = ACTIONS(1123), - [anon_sym_thread_local] = ACTIONS(1123), - [anon_sym___thread] = ACTIONS(1123), - [anon_sym_const] = ACTIONS(1123), - [anon_sym_constexpr] = ACTIONS(1123), - [anon_sym_volatile] = ACTIONS(1123), - [anon_sym_restrict] = ACTIONS(1123), - [anon_sym___restrict__] = ACTIONS(1123), - [anon_sym__Atomic] = ACTIONS(1123), - [anon_sym__Noreturn] = ACTIONS(1123), - [anon_sym_noreturn] = ACTIONS(1123), - [anon_sym_alignas] = ACTIONS(1123), - [anon_sym__Alignas] = ACTIONS(1123), - [sym_primitive_type] = ACTIONS(1123), - [anon_sym_enum] = ACTIONS(1123), - [anon_sym_struct] = ACTIONS(1123), - [anon_sym_union] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1123), - [anon_sym_else] = ACTIONS(1123), - [anon_sym_switch] = ACTIONS(1123), - [anon_sym_case] = ACTIONS(1123), - [anon_sym_default] = ACTIONS(1123), - [anon_sym_while] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(1123), - [anon_sym_for] = ACTIONS(1123), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_break] = ACTIONS(1123), - [anon_sym_continue] = ACTIONS(1123), - [anon_sym_goto] = ACTIONS(1123), - [anon_sym___try] = ACTIONS(1123), - [anon_sym___leave] = ACTIONS(1123), - [anon_sym_DASH_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1125), - [anon_sym_sizeof] = ACTIONS(1123), - [anon_sym___alignof__] = ACTIONS(1123), - [anon_sym___alignof] = ACTIONS(1123), - [anon_sym__alignof] = ACTIONS(1123), - [anon_sym_alignof] = ACTIONS(1123), - [anon_sym__Alignof] = ACTIONS(1123), - [anon_sym_offsetof] = ACTIONS(1123), - [anon_sym__Generic] = ACTIONS(1123), - [anon_sym_asm] = ACTIONS(1123), - [anon_sym___asm__] = ACTIONS(1123), - [sym_number_literal] = ACTIONS(1125), - [anon_sym_L_SQUOTE] = ACTIONS(1125), - [anon_sym_u_SQUOTE] = ACTIONS(1125), - [anon_sym_U_SQUOTE] = ACTIONS(1125), - [anon_sym_u8_SQUOTE] = ACTIONS(1125), - [anon_sym_SQUOTE] = ACTIONS(1125), - [anon_sym_L_DQUOTE] = ACTIONS(1125), - [anon_sym_u_DQUOTE] = ACTIONS(1125), - [anon_sym_U_DQUOTE] = ACTIONS(1125), - [anon_sym_u8_DQUOTE] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(1125), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [anon_sym_NULL] = ACTIONS(1123), - [anon_sym_nullptr] = ACTIONS(1123), - [sym_comment] = ACTIONS(3), - }, - [86] = { - [sym_identifier] = ACTIONS(1123), - [aux_sym_preproc_include_token1] = ACTIONS(1123), - [aux_sym_preproc_def_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token2] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), - [aux_sym_preproc_else_token1] = ACTIONS(1123), - [aux_sym_preproc_elif_token1] = ACTIONS(1123), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1123), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1123), - [sym_preproc_directive] = ACTIONS(1123), - [anon_sym_LPAREN2] = ACTIONS(1125), - [anon_sym_BANG] = ACTIONS(1125), - [anon_sym_TILDE] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym___extension__] = ACTIONS(1123), - [anon_sym_typedef] = ACTIONS(1123), - [anon_sym_extern] = ACTIONS(1123), - [anon_sym___attribute__] = ACTIONS(1123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), - [anon_sym___declspec] = ACTIONS(1123), - [anon_sym___cdecl] = ACTIONS(1123), - [anon_sym___clrcall] = ACTIONS(1123), - [anon_sym___stdcall] = ACTIONS(1123), - [anon_sym___fastcall] = ACTIONS(1123), - [anon_sym___thiscall] = ACTIONS(1123), - [anon_sym___vectorcall] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_signed] = ACTIONS(1123), - [anon_sym_unsigned] = ACTIONS(1123), - [anon_sym_long] = ACTIONS(1123), - [anon_sym_short] = ACTIONS(1123), - [anon_sym_static] = ACTIONS(1123), - [anon_sym_auto] = ACTIONS(1123), - [anon_sym_register] = ACTIONS(1123), - [anon_sym_inline] = ACTIONS(1123), - [anon_sym___inline] = ACTIONS(1123), - [anon_sym___inline__] = ACTIONS(1123), - [anon_sym___forceinline] = ACTIONS(1123), - [anon_sym_thread_local] = ACTIONS(1123), - [anon_sym___thread] = ACTIONS(1123), - [anon_sym_const] = ACTIONS(1123), - [anon_sym_constexpr] = ACTIONS(1123), - [anon_sym_volatile] = ACTIONS(1123), - [anon_sym_restrict] = ACTIONS(1123), - [anon_sym___restrict__] = ACTIONS(1123), - [anon_sym__Atomic] = ACTIONS(1123), - [anon_sym__Noreturn] = ACTIONS(1123), - [anon_sym_noreturn] = ACTIONS(1123), - [anon_sym_alignas] = ACTIONS(1123), - [anon_sym__Alignas] = ACTIONS(1123), - [sym_primitive_type] = ACTIONS(1123), - [anon_sym_enum] = ACTIONS(1123), - [anon_sym_struct] = ACTIONS(1123), - [anon_sym_union] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1123), - [anon_sym_else] = ACTIONS(1123), - [anon_sym_switch] = ACTIONS(1123), - [anon_sym_case] = ACTIONS(1123), - [anon_sym_default] = ACTIONS(1123), - [anon_sym_while] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(1123), - [anon_sym_for] = ACTIONS(1123), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_break] = ACTIONS(1123), - [anon_sym_continue] = ACTIONS(1123), - [anon_sym_goto] = ACTIONS(1123), - [anon_sym___try] = ACTIONS(1123), - [anon_sym___leave] = ACTIONS(1123), - [anon_sym_DASH_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1125), - [anon_sym_sizeof] = ACTIONS(1123), - [anon_sym___alignof__] = ACTIONS(1123), - [anon_sym___alignof] = ACTIONS(1123), - [anon_sym__alignof] = ACTIONS(1123), - [anon_sym_alignof] = ACTIONS(1123), - [anon_sym__Alignof] = ACTIONS(1123), - [anon_sym_offsetof] = ACTIONS(1123), - [anon_sym__Generic] = ACTIONS(1123), - [anon_sym_asm] = ACTIONS(1123), - [anon_sym___asm__] = ACTIONS(1123), - [sym_number_literal] = ACTIONS(1125), - [anon_sym_L_SQUOTE] = ACTIONS(1125), - [anon_sym_u_SQUOTE] = ACTIONS(1125), - [anon_sym_U_SQUOTE] = ACTIONS(1125), - [anon_sym_u8_SQUOTE] = ACTIONS(1125), - [anon_sym_SQUOTE] = ACTIONS(1125), - [anon_sym_L_DQUOTE] = ACTIONS(1125), - [anon_sym_u_DQUOTE] = ACTIONS(1125), - [anon_sym_U_DQUOTE] = ACTIONS(1125), - [anon_sym_u8_DQUOTE] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(1125), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [anon_sym_NULL] = ACTIONS(1123), - [anon_sym_nullptr] = ACTIONS(1123), - [sym_comment] = ACTIONS(3), - }, - [87] = { [sym_identifier] = ACTIONS(1155), [aux_sym_preproc_include_token1] = ACTIONS(1155), [aux_sym_preproc_def_token1] = ACTIONS(1155), @@ -25130,7 +24858,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1155), [sym_comment] = ACTIONS(3), }, - [88] = { + [86] = { [sym_identifier] = ACTIONS(1159), [aux_sym_preproc_include_token1] = ACTIONS(1159), [aux_sym_preproc_def_token1] = ACTIONS(1159), @@ -25234,7 +24962,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1159), [sym_comment] = ACTIONS(3), }, - [89] = { + [87] = { [sym_identifier] = ACTIONS(1163), [aux_sym_preproc_include_token1] = ACTIONS(1163), [aux_sym_preproc_def_token1] = ACTIONS(1163), @@ -25338,215 +25066,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1163), [sym_comment] = ACTIONS(3), }, - [90] = { - [sym_identifier] = ACTIONS(1123), - [aux_sym_preproc_include_token1] = ACTIONS(1123), - [aux_sym_preproc_def_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token2] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), - [aux_sym_preproc_else_token1] = ACTIONS(1123), - [aux_sym_preproc_elif_token1] = ACTIONS(1123), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1123), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1123), - [sym_preproc_directive] = ACTIONS(1123), - [anon_sym_LPAREN2] = ACTIONS(1125), - [anon_sym_BANG] = ACTIONS(1125), - [anon_sym_TILDE] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym___extension__] = ACTIONS(1123), - [anon_sym_typedef] = ACTIONS(1123), - [anon_sym_extern] = ACTIONS(1123), - [anon_sym___attribute__] = ACTIONS(1123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), - [anon_sym___declspec] = ACTIONS(1123), - [anon_sym___cdecl] = ACTIONS(1123), - [anon_sym___clrcall] = ACTIONS(1123), - [anon_sym___stdcall] = ACTIONS(1123), - [anon_sym___fastcall] = ACTIONS(1123), - [anon_sym___thiscall] = ACTIONS(1123), - [anon_sym___vectorcall] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_signed] = ACTIONS(1123), - [anon_sym_unsigned] = ACTIONS(1123), - [anon_sym_long] = ACTIONS(1123), - [anon_sym_short] = ACTIONS(1123), - [anon_sym_static] = ACTIONS(1123), - [anon_sym_auto] = ACTIONS(1123), - [anon_sym_register] = ACTIONS(1123), - [anon_sym_inline] = ACTIONS(1123), - [anon_sym___inline] = ACTIONS(1123), - [anon_sym___inline__] = ACTIONS(1123), - [anon_sym___forceinline] = ACTIONS(1123), - [anon_sym_thread_local] = ACTIONS(1123), - [anon_sym___thread] = ACTIONS(1123), - [anon_sym_const] = ACTIONS(1123), - [anon_sym_constexpr] = ACTIONS(1123), - [anon_sym_volatile] = ACTIONS(1123), - [anon_sym_restrict] = ACTIONS(1123), - [anon_sym___restrict__] = ACTIONS(1123), - [anon_sym__Atomic] = ACTIONS(1123), - [anon_sym__Noreturn] = ACTIONS(1123), - [anon_sym_noreturn] = ACTIONS(1123), - [anon_sym_alignas] = ACTIONS(1123), - [anon_sym__Alignas] = ACTIONS(1123), - [sym_primitive_type] = ACTIONS(1123), - [anon_sym_enum] = ACTIONS(1123), - [anon_sym_struct] = ACTIONS(1123), - [anon_sym_union] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1123), - [anon_sym_else] = ACTIONS(1123), - [anon_sym_switch] = ACTIONS(1123), - [anon_sym_case] = ACTIONS(1123), - [anon_sym_default] = ACTIONS(1123), - [anon_sym_while] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(1123), - [anon_sym_for] = ACTIONS(1123), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_break] = ACTIONS(1123), - [anon_sym_continue] = ACTIONS(1123), - [anon_sym_goto] = ACTIONS(1123), - [anon_sym___try] = ACTIONS(1123), - [anon_sym___leave] = ACTIONS(1123), - [anon_sym_DASH_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1125), - [anon_sym_sizeof] = ACTIONS(1123), - [anon_sym___alignof__] = ACTIONS(1123), - [anon_sym___alignof] = ACTIONS(1123), - [anon_sym__alignof] = ACTIONS(1123), - [anon_sym_alignof] = ACTIONS(1123), - [anon_sym__Alignof] = ACTIONS(1123), - [anon_sym_offsetof] = ACTIONS(1123), - [anon_sym__Generic] = ACTIONS(1123), - [anon_sym_asm] = ACTIONS(1123), - [anon_sym___asm__] = ACTIONS(1123), - [sym_number_literal] = ACTIONS(1125), - [anon_sym_L_SQUOTE] = ACTIONS(1125), - [anon_sym_u_SQUOTE] = ACTIONS(1125), - [anon_sym_U_SQUOTE] = ACTIONS(1125), - [anon_sym_u8_SQUOTE] = ACTIONS(1125), - [anon_sym_SQUOTE] = ACTIONS(1125), - [anon_sym_L_DQUOTE] = ACTIONS(1125), - [anon_sym_u_DQUOTE] = ACTIONS(1125), - [anon_sym_U_DQUOTE] = ACTIONS(1125), - [anon_sym_u8_DQUOTE] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(1125), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [anon_sym_NULL] = ACTIONS(1123), - [anon_sym_nullptr] = ACTIONS(1123), - [sym_comment] = ACTIONS(3), - }, - [91] = { - [ts_builtin_sym_end] = ACTIONS(1167), - [sym_identifier] = ACTIONS(1169), - [aux_sym_preproc_include_token1] = ACTIONS(1169), - [aux_sym_preproc_def_token1] = ACTIONS(1169), - [anon_sym_COMMA] = ACTIONS(1167), - [anon_sym_RPAREN] = ACTIONS(1167), - [aux_sym_preproc_if_token1] = ACTIONS(1169), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1169), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1169), - [sym_preproc_directive] = ACTIONS(1169), - [anon_sym_LPAREN2] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1167), - [anon_sym_TILDE] = ACTIONS(1167), - [anon_sym_DASH] = ACTIONS(1169), - [anon_sym_PLUS] = ACTIONS(1169), - [anon_sym_STAR] = ACTIONS(1167), - [anon_sym_AMP] = ACTIONS(1167), - [anon_sym_SEMI] = ACTIONS(1167), - [anon_sym___extension__] = ACTIONS(1169), - [anon_sym_typedef] = ACTIONS(1169), - [anon_sym_extern] = ACTIONS(1169), - [anon_sym___attribute__] = ACTIONS(1169), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1167), - [anon_sym___declspec] = ACTIONS(1169), - [anon_sym___cdecl] = ACTIONS(1169), - [anon_sym___clrcall] = ACTIONS(1169), - [anon_sym___stdcall] = ACTIONS(1169), - [anon_sym___fastcall] = ACTIONS(1169), - [anon_sym___thiscall] = ACTIONS(1169), - [anon_sym___vectorcall] = ACTIONS(1169), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_signed] = ACTIONS(1169), - [anon_sym_unsigned] = ACTIONS(1169), - [anon_sym_long] = ACTIONS(1169), - [anon_sym_short] = ACTIONS(1169), - [anon_sym_static] = ACTIONS(1169), - [anon_sym_auto] = ACTIONS(1169), - [anon_sym_register] = ACTIONS(1169), - [anon_sym_inline] = ACTIONS(1169), - [anon_sym___inline] = ACTIONS(1169), - [anon_sym___inline__] = ACTIONS(1169), - [anon_sym___forceinline] = ACTIONS(1169), - [anon_sym_thread_local] = ACTIONS(1169), - [anon_sym___thread] = ACTIONS(1169), - [anon_sym_const] = ACTIONS(1169), - [anon_sym_constexpr] = ACTIONS(1169), - [anon_sym_volatile] = ACTIONS(1169), - [anon_sym_restrict] = ACTIONS(1169), - [anon_sym___restrict__] = ACTIONS(1169), - [anon_sym__Atomic] = ACTIONS(1169), - [anon_sym__Noreturn] = ACTIONS(1169), - [anon_sym_noreturn] = ACTIONS(1169), - [anon_sym_alignas] = ACTIONS(1169), - [anon_sym__Alignas] = ACTIONS(1169), - [sym_primitive_type] = ACTIONS(1169), - [anon_sym_enum] = ACTIONS(1169), - [anon_sym_struct] = ACTIONS(1169), - [anon_sym_union] = ACTIONS(1169), - [anon_sym_if] = ACTIONS(1169), - [anon_sym_else] = ACTIONS(1169), - [anon_sym_switch] = ACTIONS(1169), - [anon_sym_case] = ACTIONS(1169), - [anon_sym_default] = ACTIONS(1169), - [anon_sym_while] = ACTIONS(1169), - [anon_sym_do] = ACTIONS(1169), - [anon_sym_for] = ACTIONS(1169), - [anon_sym_return] = ACTIONS(1169), - [anon_sym_break] = ACTIONS(1169), - [anon_sym_continue] = ACTIONS(1169), - [anon_sym_goto] = ACTIONS(1169), - [anon_sym___try] = ACTIONS(1169), - [anon_sym___except] = ACTIONS(1169), - [anon_sym___finally] = ACTIONS(1169), - [anon_sym___leave] = ACTIONS(1169), - [anon_sym_DASH_DASH] = ACTIONS(1167), - [anon_sym_PLUS_PLUS] = ACTIONS(1167), - [anon_sym_sizeof] = ACTIONS(1169), - [anon_sym___alignof__] = ACTIONS(1169), - [anon_sym___alignof] = ACTIONS(1169), - [anon_sym__alignof] = ACTIONS(1169), - [anon_sym_alignof] = ACTIONS(1169), - [anon_sym__Alignof] = ACTIONS(1169), - [anon_sym_offsetof] = ACTIONS(1169), - [anon_sym__Generic] = ACTIONS(1169), - [anon_sym_asm] = ACTIONS(1169), - [anon_sym___asm__] = ACTIONS(1169), - [sym_number_literal] = ACTIONS(1167), - [anon_sym_L_SQUOTE] = ACTIONS(1167), - [anon_sym_u_SQUOTE] = ACTIONS(1167), - [anon_sym_U_SQUOTE] = ACTIONS(1167), - [anon_sym_u8_SQUOTE] = ACTIONS(1167), - [anon_sym_SQUOTE] = ACTIONS(1167), - [anon_sym_L_DQUOTE] = ACTIONS(1167), - [anon_sym_u_DQUOTE] = ACTIONS(1167), - [anon_sym_U_DQUOTE] = ACTIONS(1167), - [anon_sym_u8_DQUOTE] = ACTIONS(1167), - [anon_sym_DQUOTE] = ACTIONS(1167), - [sym_true] = ACTIONS(1169), - [sym_false] = ACTIONS(1169), - [anon_sym_NULL] = ACTIONS(1169), - [anon_sym_nullptr] = ACTIONS(1169), + [88] = { + [sym_identifier] = ACTIONS(1167), + [aux_sym_preproc_include_token1] = ACTIONS(1167), + [aux_sym_preproc_def_token1] = ACTIONS(1167), + [aux_sym_preproc_if_token1] = ACTIONS(1167), + [aux_sym_preproc_if_token2] = ACTIONS(1167), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1167), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1167), + [aux_sym_preproc_else_token1] = ACTIONS(1167), + [aux_sym_preproc_elif_token1] = ACTIONS(1167), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1167), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1167), + [sym_preproc_directive] = ACTIONS(1167), + [anon_sym_LPAREN2] = ACTIONS(1169), + [anon_sym_BANG] = ACTIONS(1169), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_DASH] = ACTIONS(1167), + [anon_sym_PLUS] = ACTIONS(1167), + [anon_sym_STAR] = ACTIONS(1169), + [anon_sym_AMP] = ACTIONS(1169), + [anon_sym_SEMI] = ACTIONS(1169), + [anon_sym___extension__] = ACTIONS(1167), + [anon_sym_typedef] = ACTIONS(1167), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym___attribute__] = ACTIONS(1167), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1169), + [anon_sym___declspec] = ACTIONS(1167), + [anon_sym___cdecl] = ACTIONS(1167), + [anon_sym___clrcall] = ACTIONS(1167), + [anon_sym___stdcall] = ACTIONS(1167), + [anon_sym___fastcall] = ACTIONS(1167), + [anon_sym___thiscall] = ACTIONS(1167), + [anon_sym___vectorcall] = ACTIONS(1167), + [anon_sym_LBRACE] = ACTIONS(1169), + [anon_sym_signed] = ACTIONS(1167), + [anon_sym_unsigned] = ACTIONS(1167), + [anon_sym_long] = ACTIONS(1167), + [anon_sym_short] = ACTIONS(1167), + [anon_sym_static] = ACTIONS(1167), + [anon_sym_auto] = ACTIONS(1167), + [anon_sym_register] = ACTIONS(1167), + [anon_sym_inline] = ACTIONS(1167), + [anon_sym___inline] = ACTIONS(1167), + [anon_sym___inline__] = ACTIONS(1167), + [anon_sym___forceinline] = ACTIONS(1167), + [anon_sym_thread_local] = ACTIONS(1167), + [anon_sym___thread] = ACTIONS(1167), + [anon_sym_const] = ACTIONS(1167), + [anon_sym_constexpr] = ACTIONS(1167), + [anon_sym_volatile] = ACTIONS(1167), + [anon_sym_restrict] = ACTIONS(1167), + [anon_sym___restrict__] = ACTIONS(1167), + [anon_sym__Atomic] = ACTIONS(1167), + [anon_sym__Noreturn] = ACTIONS(1167), + [anon_sym_noreturn] = ACTIONS(1167), + [anon_sym_alignas] = ACTIONS(1167), + [anon_sym__Alignas] = ACTIONS(1167), + [sym_primitive_type] = ACTIONS(1167), + [anon_sym_enum] = ACTIONS(1167), + [anon_sym_struct] = ACTIONS(1167), + [anon_sym_union] = ACTIONS(1167), + [anon_sym_if] = ACTIONS(1167), + [anon_sym_else] = ACTIONS(1167), + [anon_sym_switch] = ACTIONS(1167), + [anon_sym_case] = ACTIONS(1167), + [anon_sym_default] = ACTIONS(1167), + [anon_sym_while] = ACTIONS(1167), + [anon_sym_do] = ACTIONS(1167), + [anon_sym_for] = ACTIONS(1167), + [anon_sym_return] = ACTIONS(1167), + [anon_sym_break] = ACTIONS(1167), + [anon_sym_continue] = ACTIONS(1167), + [anon_sym_goto] = ACTIONS(1167), + [anon_sym___try] = ACTIONS(1167), + [anon_sym___leave] = ACTIONS(1167), + [anon_sym_DASH_DASH] = ACTIONS(1169), + [anon_sym_PLUS_PLUS] = ACTIONS(1169), + [anon_sym_sizeof] = ACTIONS(1167), + [anon_sym___alignof__] = ACTIONS(1167), + [anon_sym___alignof] = ACTIONS(1167), + [anon_sym__alignof] = ACTIONS(1167), + [anon_sym_alignof] = ACTIONS(1167), + [anon_sym__Alignof] = ACTIONS(1167), + [anon_sym_offsetof] = ACTIONS(1167), + [anon_sym__Generic] = ACTIONS(1167), + [anon_sym_asm] = ACTIONS(1167), + [anon_sym___asm__] = ACTIONS(1167), + [sym_number_literal] = ACTIONS(1169), + [anon_sym_L_SQUOTE] = ACTIONS(1169), + [anon_sym_u_SQUOTE] = ACTIONS(1169), + [anon_sym_U_SQUOTE] = ACTIONS(1169), + [anon_sym_u8_SQUOTE] = ACTIONS(1169), + [anon_sym_SQUOTE] = ACTIONS(1169), + [anon_sym_L_DQUOTE] = ACTIONS(1169), + [anon_sym_u_DQUOTE] = ACTIONS(1169), + [anon_sym_U_DQUOTE] = ACTIONS(1169), + [anon_sym_u8_DQUOTE] = ACTIONS(1169), + [anon_sym_DQUOTE] = ACTIONS(1169), + [sym_true] = ACTIONS(1167), + [sym_false] = ACTIONS(1167), + [anon_sym_NULL] = ACTIONS(1167), + [anon_sym_nullptr] = ACTIONS(1167), [sym_comment] = ACTIONS(3), }, - [92] = { + [89] = { [sym_identifier] = ACTIONS(1171), [aux_sym_preproc_include_token1] = ACTIONS(1171), [aux_sym_preproc_def_token1] = ACTIONS(1171), @@ -25650,111 +25274,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1171), [sym_comment] = ACTIONS(3), }, - [93] = { - [ts_builtin_sym_end] = ACTIONS(1137), - [sym_identifier] = ACTIONS(1135), - [aux_sym_preproc_include_token1] = ACTIONS(1135), - [aux_sym_preproc_def_token1] = ACTIONS(1135), - [anon_sym_COMMA] = ACTIONS(1137), - [anon_sym_RPAREN] = ACTIONS(1137), - [aux_sym_preproc_if_token1] = ACTIONS(1135), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1135), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1135), - [sym_preproc_directive] = ACTIONS(1135), - [anon_sym_LPAREN2] = ACTIONS(1137), - [anon_sym_BANG] = ACTIONS(1137), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_PLUS] = ACTIONS(1135), - [anon_sym_STAR] = ACTIONS(1137), - [anon_sym_AMP] = ACTIONS(1137), - [anon_sym_SEMI] = ACTIONS(1137), - [anon_sym___extension__] = ACTIONS(1135), - [anon_sym_typedef] = ACTIONS(1135), - [anon_sym_extern] = ACTIONS(1135), - [anon_sym___attribute__] = ACTIONS(1135), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1137), - [anon_sym___declspec] = ACTIONS(1135), - [anon_sym___cdecl] = ACTIONS(1135), - [anon_sym___clrcall] = ACTIONS(1135), - [anon_sym___stdcall] = ACTIONS(1135), - [anon_sym___fastcall] = ACTIONS(1135), - [anon_sym___thiscall] = ACTIONS(1135), - [anon_sym___vectorcall] = ACTIONS(1135), - [anon_sym_LBRACE] = ACTIONS(1137), - [anon_sym_signed] = ACTIONS(1135), - [anon_sym_unsigned] = ACTIONS(1135), - [anon_sym_long] = ACTIONS(1135), - [anon_sym_short] = ACTIONS(1135), - [anon_sym_static] = ACTIONS(1135), - [anon_sym_auto] = ACTIONS(1135), - [anon_sym_register] = ACTIONS(1135), - [anon_sym_inline] = ACTIONS(1135), - [anon_sym___inline] = ACTIONS(1135), - [anon_sym___inline__] = ACTIONS(1135), - [anon_sym___forceinline] = ACTIONS(1135), - [anon_sym_thread_local] = ACTIONS(1135), - [anon_sym___thread] = ACTIONS(1135), - [anon_sym_const] = ACTIONS(1135), - [anon_sym_constexpr] = ACTIONS(1135), - [anon_sym_volatile] = ACTIONS(1135), - [anon_sym_restrict] = ACTIONS(1135), - [anon_sym___restrict__] = ACTIONS(1135), - [anon_sym__Atomic] = ACTIONS(1135), - [anon_sym__Noreturn] = ACTIONS(1135), - [anon_sym_noreturn] = ACTIONS(1135), - [anon_sym_alignas] = ACTIONS(1135), - [anon_sym__Alignas] = ACTIONS(1135), - [sym_primitive_type] = ACTIONS(1135), - [anon_sym_enum] = ACTIONS(1135), - [anon_sym_struct] = ACTIONS(1135), - [anon_sym_union] = ACTIONS(1135), - [anon_sym_if] = ACTIONS(1135), - [anon_sym_else] = ACTIONS(1135), - [anon_sym_switch] = ACTIONS(1135), - [anon_sym_case] = ACTIONS(1135), - [anon_sym_default] = ACTIONS(1135), - [anon_sym_while] = ACTIONS(1135), - [anon_sym_do] = ACTIONS(1135), - [anon_sym_for] = ACTIONS(1135), - [anon_sym_return] = ACTIONS(1135), - [anon_sym_break] = ACTIONS(1135), - [anon_sym_continue] = ACTIONS(1135), - [anon_sym_goto] = ACTIONS(1135), - [anon_sym___try] = ACTIONS(1135), - [anon_sym___except] = ACTIONS(1135), - [anon_sym___finally] = ACTIONS(1135), - [anon_sym___leave] = ACTIONS(1135), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_sizeof] = ACTIONS(1135), - [anon_sym___alignof__] = ACTIONS(1135), - [anon_sym___alignof] = ACTIONS(1135), - [anon_sym__alignof] = ACTIONS(1135), - [anon_sym_alignof] = ACTIONS(1135), - [anon_sym__Alignof] = ACTIONS(1135), - [anon_sym_offsetof] = ACTIONS(1135), - [anon_sym__Generic] = ACTIONS(1135), - [anon_sym_asm] = ACTIONS(1135), - [anon_sym___asm__] = ACTIONS(1135), - [sym_number_literal] = ACTIONS(1137), - [anon_sym_L_SQUOTE] = ACTIONS(1137), - [anon_sym_u_SQUOTE] = ACTIONS(1137), - [anon_sym_U_SQUOTE] = ACTIONS(1137), - [anon_sym_u8_SQUOTE] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1137), - [anon_sym_L_DQUOTE] = ACTIONS(1137), - [anon_sym_u_DQUOTE] = ACTIONS(1137), - [anon_sym_U_DQUOTE] = ACTIONS(1137), - [anon_sym_u8_DQUOTE] = ACTIONS(1137), - [anon_sym_DQUOTE] = ACTIONS(1137), - [sym_true] = ACTIONS(1135), - [sym_false] = ACTIONS(1135), - [anon_sym_NULL] = ACTIONS(1135), - [anon_sym_nullptr] = ACTIONS(1135), - [sym_comment] = ACTIONS(3), - }, - [94] = { + [90] = { [sym_identifier] = ACTIONS(1175), [aux_sym_preproc_include_token1] = ACTIONS(1175), [aux_sym_preproc_def_token1] = ACTIONS(1175), @@ -25858,111 +25378,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1175), [sym_comment] = ACTIONS(3), }, - [95] = { - [sym_identifier] = ACTIONS(1123), - [aux_sym_preproc_include_token1] = ACTIONS(1123), - [aux_sym_preproc_def_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token2] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), - [aux_sym_preproc_else_token1] = ACTIONS(1123), - [aux_sym_preproc_elif_token1] = ACTIONS(1123), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1123), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1123), - [sym_preproc_directive] = ACTIONS(1123), - [anon_sym_LPAREN2] = ACTIONS(1125), - [anon_sym_BANG] = ACTIONS(1125), - [anon_sym_TILDE] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym___extension__] = ACTIONS(1123), - [anon_sym_typedef] = ACTIONS(1123), - [anon_sym_extern] = ACTIONS(1123), - [anon_sym___attribute__] = ACTIONS(1123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), - [anon_sym___declspec] = ACTIONS(1123), - [anon_sym___cdecl] = ACTIONS(1123), - [anon_sym___clrcall] = ACTIONS(1123), - [anon_sym___stdcall] = ACTIONS(1123), - [anon_sym___fastcall] = ACTIONS(1123), - [anon_sym___thiscall] = ACTIONS(1123), - [anon_sym___vectorcall] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_signed] = ACTIONS(1123), - [anon_sym_unsigned] = ACTIONS(1123), - [anon_sym_long] = ACTIONS(1123), - [anon_sym_short] = ACTIONS(1123), - [anon_sym_static] = ACTIONS(1123), - [anon_sym_auto] = ACTIONS(1123), - [anon_sym_register] = ACTIONS(1123), - [anon_sym_inline] = ACTIONS(1123), - [anon_sym___inline] = ACTIONS(1123), - [anon_sym___inline__] = ACTIONS(1123), - [anon_sym___forceinline] = ACTIONS(1123), - [anon_sym_thread_local] = ACTIONS(1123), - [anon_sym___thread] = ACTIONS(1123), - [anon_sym_const] = ACTIONS(1123), - [anon_sym_constexpr] = ACTIONS(1123), - [anon_sym_volatile] = ACTIONS(1123), - [anon_sym_restrict] = ACTIONS(1123), - [anon_sym___restrict__] = ACTIONS(1123), - [anon_sym__Atomic] = ACTIONS(1123), - [anon_sym__Noreturn] = ACTIONS(1123), - [anon_sym_noreturn] = ACTIONS(1123), - [anon_sym_alignas] = ACTIONS(1123), - [anon_sym__Alignas] = ACTIONS(1123), - [sym_primitive_type] = ACTIONS(1123), - [anon_sym_enum] = ACTIONS(1123), - [anon_sym_struct] = ACTIONS(1123), - [anon_sym_union] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1123), - [anon_sym_else] = ACTIONS(1123), - [anon_sym_switch] = ACTIONS(1123), - [anon_sym_case] = ACTIONS(1123), - [anon_sym_default] = ACTIONS(1123), - [anon_sym_while] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(1123), - [anon_sym_for] = ACTIONS(1123), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_break] = ACTIONS(1123), - [anon_sym_continue] = ACTIONS(1123), - [anon_sym_goto] = ACTIONS(1123), - [anon_sym___try] = ACTIONS(1123), - [anon_sym___leave] = ACTIONS(1123), - [anon_sym_DASH_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1125), - [anon_sym_sizeof] = ACTIONS(1123), - [anon_sym___alignof__] = ACTIONS(1123), - [anon_sym___alignof] = ACTIONS(1123), - [anon_sym__alignof] = ACTIONS(1123), - [anon_sym_alignof] = ACTIONS(1123), - [anon_sym__Alignof] = ACTIONS(1123), - [anon_sym_offsetof] = ACTIONS(1123), - [anon_sym__Generic] = ACTIONS(1123), - [anon_sym_asm] = ACTIONS(1123), - [anon_sym___asm__] = ACTIONS(1123), - [sym_number_literal] = ACTIONS(1125), - [anon_sym_L_SQUOTE] = ACTIONS(1125), - [anon_sym_u_SQUOTE] = ACTIONS(1125), - [anon_sym_U_SQUOTE] = ACTIONS(1125), - [anon_sym_u8_SQUOTE] = ACTIONS(1125), - [anon_sym_SQUOTE] = ACTIONS(1125), - [anon_sym_L_DQUOTE] = ACTIONS(1125), - [anon_sym_u_DQUOTE] = ACTIONS(1125), - [anon_sym_U_DQUOTE] = ACTIONS(1125), - [anon_sym_u8_DQUOTE] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(1125), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [anon_sym_NULL] = ACTIONS(1123), - [anon_sym_nullptr] = ACTIONS(1123), - [sym_comment] = ACTIONS(3), - }, - [96] = { + [91] = { [sym_identifier] = ACTIONS(1179), [aux_sym_preproc_include_token1] = ACTIONS(1179), [aux_sym_preproc_def_token1] = ACTIONS(1179), @@ -26066,215 +25482,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1179), [sym_comment] = ACTIONS(3), }, - [97] = { - [sym_identifier] = ACTIONS(1123), - [aux_sym_preproc_include_token1] = ACTIONS(1123), - [aux_sym_preproc_def_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token2] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), - [aux_sym_preproc_else_token1] = ACTIONS(1123), - [aux_sym_preproc_elif_token1] = ACTIONS(1123), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1123), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1123), - [sym_preproc_directive] = ACTIONS(1123), - [anon_sym_LPAREN2] = ACTIONS(1125), - [anon_sym_BANG] = ACTIONS(1125), - [anon_sym_TILDE] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym___extension__] = ACTIONS(1123), - [anon_sym_typedef] = ACTIONS(1123), - [anon_sym_extern] = ACTIONS(1123), - [anon_sym___attribute__] = ACTIONS(1123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), - [anon_sym___declspec] = ACTIONS(1123), - [anon_sym___cdecl] = ACTIONS(1123), - [anon_sym___clrcall] = ACTIONS(1123), - [anon_sym___stdcall] = ACTIONS(1123), - [anon_sym___fastcall] = ACTIONS(1123), - [anon_sym___thiscall] = ACTIONS(1123), - [anon_sym___vectorcall] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_signed] = ACTIONS(1123), - [anon_sym_unsigned] = ACTIONS(1123), - [anon_sym_long] = ACTIONS(1123), - [anon_sym_short] = ACTIONS(1123), - [anon_sym_static] = ACTIONS(1123), - [anon_sym_auto] = ACTIONS(1123), - [anon_sym_register] = ACTIONS(1123), - [anon_sym_inline] = ACTIONS(1123), - [anon_sym___inline] = ACTIONS(1123), - [anon_sym___inline__] = ACTIONS(1123), - [anon_sym___forceinline] = ACTIONS(1123), - [anon_sym_thread_local] = ACTIONS(1123), - [anon_sym___thread] = ACTIONS(1123), - [anon_sym_const] = ACTIONS(1123), - [anon_sym_constexpr] = ACTIONS(1123), - [anon_sym_volatile] = ACTIONS(1123), - [anon_sym_restrict] = ACTIONS(1123), - [anon_sym___restrict__] = ACTIONS(1123), - [anon_sym__Atomic] = ACTIONS(1123), - [anon_sym__Noreturn] = ACTIONS(1123), - [anon_sym_noreturn] = ACTIONS(1123), - [anon_sym_alignas] = ACTIONS(1123), - [anon_sym__Alignas] = ACTIONS(1123), - [sym_primitive_type] = ACTIONS(1123), - [anon_sym_enum] = ACTIONS(1123), - [anon_sym_struct] = ACTIONS(1123), - [anon_sym_union] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1123), - [anon_sym_else] = ACTIONS(1123), - [anon_sym_switch] = ACTIONS(1123), - [anon_sym_case] = ACTIONS(1123), - [anon_sym_default] = ACTIONS(1123), - [anon_sym_while] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(1123), - [anon_sym_for] = ACTIONS(1123), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_break] = ACTIONS(1123), - [anon_sym_continue] = ACTIONS(1123), - [anon_sym_goto] = ACTIONS(1123), - [anon_sym___try] = ACTIONS(1123), - [anon_sym___leave] = ACTIONS(1123), - [anon_sym_DASH_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1125), - [anon_sym_sizeof] = ACTIONS(1123), - [anon_sym___alignof__] = ACTIONS(1123), - [anon_sym___alignof] = ACTIONS(1123), - [anon_sym__alignof] = ACTIONS(1123), - [anon_sym_alignof] = ACTIONS(1123), - [anon_sym__Alignof] = ACTIONS(1123), - [anon_sym_offsetof] = ACTIONS(1123), - [anon_sym__Generic] = ACTIONS(1123), - [anon_sym_asm] = ACTIONS(1123), - [anon_sym___asm__] = ACTIONS(1123), - [sym_number_literal] = ACTIONS(1125), - [anon_sym_L_SQUOTE] = ACTIONS(1125), - [anon_sym_u_SQUOTE] = ACTIONS(1125), - [anon_sym_U_SQUOTE] = ACTIONS(1125), - [anon_sym_u8_SQUOTE] = ACTIONS(1125), - [anon_sym_SQUOTE] = ACTIONS(1125), - [anon_sym_L_DQUOTE] = ACTIONS(1125), - [anon_sym_u_DQUOTE] = ACTIONS(1125), - [anon_sym_U_DQUOTE] = ACTIONS(1125), - [anon_sym_u8_DQUOTE] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(1125), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [anon_sym_NULL] = ACTIONS(1123), - [anon_sym_nullptr] = ACTIONS(1123), - [sym_comment] = ACTIONS(3), - }, - [98] = { - [sym_identifier] = ACTIONS(1123), - [aux_sym_preproc_include_token1] = ACTIONS(1123), - [aux_sym_preproc_def_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token2] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), - [aux_sym_preproc_else_token1] = ACTIONS(1123), - [aux_sym_preproc_elif_token1] = ACTIONS(1123), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1123), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1123), - [sym_preproc_directive] = ACTIONS(1123), - [anon_sym_LPAREN2] = ACTIONS(1125), - [anon_sym_BANG] = ACTIONS(1125), - [anon_sym_TILDE] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym___extension__] = ACTIONS(1123), - [anon_sym_typedef] = ACTIONS(1123), - [anon_sym_extern] = ACTIONS(1123), - [anon_sym___attribute__] = ACTIONS(1123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), - [anon_sym___declspec] = ACTIONS(1123), - [anon_sym___cdecl] = ACTIONS(1123), - [anon_sym___clrcall] = ACTIONS(1123), - [anon_sym___stdcall] = ACTIONS(1123), - [anon_sym___fastcall] = ACTIONS(1123), - [anon_sym___thiscall] = ACTIONS(1123), - [anon_sym___vectorcall] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_signed] = ACTIONS(1123), - [anon_sym_unsigned] = ACTIONS(1123), - [anon_sym_long] = ACTIONS(1123), - [anon_sym_short] = ACTIONS(1123), - [anon_sym_static] = ACTIONS(1123), - [anon_sym_auto] = ACTIONS(1123), - [anon_sym_register] = ACTIONS(1123), - [anon_sym_inline] = ACTIONS(1123), - [anon_sym___inline] = ACTIONS(1123), - [anon_sym___inline__] = ACTIONS(1123), - [anon_sym___forceinline] = ACTIONS(1123), - [anon_sym_thread_local] = ACTIONS(1123), - [anon_sym___thread] = ACTIONS(1123), - [anon_sym_const] = ACTIONS(1123), - [anon_sym_constexpr] = ACTIONS(1123), - [anon_sym_volatile] = ACTIONS(1123), - [anon_sym_restrict] = ACTIONS(1123), - [anon_sym___restrict__] = ACTIONS(1123), - [anon_sym__Atomic] = ACTIONS(1123), - [anon_sym__Noreturn] = ACTIONS(1123), - [anon_sym_noreturn] = ACTIONS(1123), - [anon_sym_alignas] = ACTIONS(1123), - [anon_sym__Alignas] = ACTIONS(1123), - [sym_primitive_type] = ACTIONS(1123), - [anon_sym_enum] = ACTIONS(1123), - [anon_sym_struct] = ACTIONS(1123), - [anon_sym_union] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1123), - [anon_sym_else] = ACTIONS(1123), - [anon_sym_switch] = ACTIONS(1123), - [anon_sym_case] = ACTIONS(1123), - [anon_sym_default] = ACTIONS(1123), - [anon_sym_while] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(1123), - [anon_sym_for] = ACTIONS(1123), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_break] = ACTIONS(1123), - [anon_sym_continue] = ACTIONS(1123), - [anon_sym_goto] = ACTIONS(1123), - [anon_sym___try] = ACTIONS(1123), - [anon_sym___leave] = ACTIONS(1123), - [anon_sym_DASH_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1125), - [anon_sym_sizeof] = ACTIONS(1123), - [anon_sym___alignof__] = ACTIONS(1123), - [anon_sym___alignof] = ACTIONS(1123), - [anon_sym__alignof] = ACTIONS(1123), - [anon_sym_alignof] = ACTIONS(1123), - [anon_sym__Alignof] = ACTIONS(1123), - [anon_sym_offsetof] = ACTIONS(1123), - [anon_sym__Generic] = ACTIONS(1123), - [anon_sym_asm] = ACTIONS(1123), - [anon_sym___asm__] = ACTIONS(1123), - [sym_number_literal] = ACTIONS(1125), - [anon_sym_L_SQUOTE] = ACTIONS(1125), - [anon_sym_u_SQUOTE] = ACTIONS(1125), - [anon_sym_U_SQUOTE] = ACTIONS(1125), - [anon_sym_u8_SQUOTE] = ACTIONS(1125), - [anon_sym_SQUOTE] = ACTIONS(1125), - [anon_sym_L_DQUOTE] = ACTIONS(1125), - [anon_sym_u_DQUOTE] = ACTIONS(1125), - [anon_sym_U_DQUOTE] = ACTIONS(1125), - [anon_sym_u8_DQUOTE] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(1125), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [anon_sym_NULL] = ACTIONS(1123), - [anon_sym_nullptr] = ACTIONS(1123), - [sym_comment] = ACTIONS(3), - }, - [99] = { + [92] = { [sym_identifier] = ACTIONS(1183), [aux_sym_preproc_include_token1] = ACTIONS(1183), [aux_sym_preproc_def_token1] = ACTIONS(1183), @@ -26378,7 +25586,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1183), [sym_comment] = ACTIONS(3), }, - [100] = { + [93] = { [sym_identifier] = ACTIONS(1187), [aux_sym_preproc_include_token1] = ACTIONS(1187), [aux_sym_preproc_def_token1] = ACTIONS(1187), @@ -26482,7 +25690,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1187), [sym_comment] = ACTIONS(3), }, - [101] = { + [94] = { [sym_identifier] = ACTIONS(1191), [aux_sym_preproc_include_token1] = ACTIONS(1191), [aux_sym_preproc_def_token1] = ACTIONS(1191), @@ -26586,111 +25794,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1191), [sym_comment] = ACTIONS(3), }, - [102] = { - [sym_identifier] = ACTIONS(1123), - [aux_sym_preproc_include_token1] = ACTIONS(1123), - [aux_sym_preproc_def_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token2] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), - [aux_sym_preproc_else_token1] = ACTIONS(1123), - [aux_sym_preproc_elif_token1] = ACTIONS(1123), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1123), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1123), - [sym_preproc_directive] = ACTIONS(1123), - [anon_sym_LPAREN2] = ACTIONS(1125), - [anon_sym_BANG] = ACTIONS(1125), - [anon_sym_TILDE] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym___extension__] = ACTIONS(1123), - [anon_sym_typedef] = ACTIONS(1123), - [anon_sym_extern] = ACTIONS(1123), - [anon_sym___attribute__] = ACTIONS(1123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), - [anon_sym___declspec] = ACTIONS(1123), - [anon_sym___cdecl] = ACTIONS(1123), - [anon_sym___clrcall] = ACTIONS(1123), - [anon_sym___stdcall] = ACTIONS(1123), - [anon_sym___fastcall] = ACTIONS(1123), - [anon_sym___thiscall] = ACTIONS(1123), - [anon_sym___vectorcall] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_signed] = ACTIONS(1123), - [anon_sym_unsigned] = ACTIONS(1123), - [anon_sym_long] = ACTIONS(1123), - [anon_sym_short] = ACTIONS(1123), - [anon_sym_static] = ACTIONS(1123), - [anon_sym_auto] = ACTIONS(1123), - [anon_sym_register] = ACTIONS(1123), - [anon_sym_inline] = ACTIONS(1123), - [anon_sym___inline] = ACTIONS(1123), - [anon_sym___inline__] = ACTIONS(1123), - [anon_sym___forceinline] = ACTIONS(1123), - [anon_sym_thread_local] = ACTIONS(1123), - [anon_sym___thread] = ACTIONS(1123), - [anon_sym_const] = ACTIONS(1123), - [anon_sym_constexpr] = ACTIONS(1123), - [anon_sym_volatile] = ACTIONS(1123), - [anon_sym_restrict] = ACTIONS(1123), - [anon_sym___restrict__] = ACTIONS(1123), - [anon_sym__Atomic] = ACTIONS(1123), - [anon_sym__Noreturn] = ACTIONS(1123), - [anon_sym_noreturn] = ACTIONS(1123), - [anon_sym_alignas] = ACTIONS(1123), - [anon_sym__Alignas] = ACTIONS(1123), - [sym_primitive_type] = ACTIONS(1123), - [anon_sym_enum] = ACTIONS(1123), - [anon_sym_struct] = ACTIONS(1123), - [anon_sym_union] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1123), - [anon_sym_else] = ACTIONS(1123), - [anon_sym_switch] = ACTIONS(1123), - [anon_sym_case] = ACTIONS(1123), - [anon_sym_default] = ACTIONS(1123), - [anon_sym_while] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(1123), - [anon_sym_for] = ACTIONS(1123), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_break] = ACTIONS(1123), - [anon_sym_continue] = ACTIONS(1123), - [anon_sym_goto] = ACTIONS(1123), - [anon_sym___try] = ACTIONS(1123), - [anon_sym___leave] = ACTIONS(1123), - [anon_sym_DASH_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1125), - [anon_sym_sizeof] = ACTIONS(1123), - [anon_sym___alignof__] = ACTIONS(1123), - [anon_sym___alignof] = ACTIONS(1123), - [anon_sym__alignof] = ACTIONS(1123), - [anon_sym_alignof] = ACTIONS(1123), - [anon_sym__Alignof] = ACTIONS(1123), - [anon_sym_offsetof] = ACTIONS(1123), - [anon_sym__Generic] = ACTIONS(1123), - [anon_sym_asm] = ACTIONS(1123), - [anon_sym___asm__] = ACTIONS(1123), - [sym_number_literal] = ACTIONS(1125), - [anon_sym_L_SQUOTE] = ACTIONS(1125), - [anon_sym_u_SQUOTE] = ACTIONS(1125), - [anon_sym_U_SQUOTE] = ACTIONS(1125), - [anon_sym_u8_SQUOTE] = ACTIONS(1125), - [anon_sym_SQUOTE] = ACTIONS(1125), - [anon_sym_L_DQUOTE] = ACTIONS(1125), - [anon_sym_u_DQUOTE] = ACTIONS(1125), - [anon_sym_U_DQUOTE] = ACTIONS(1125), - [anon_sym_u8_DQUOTE] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(1125), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [anon_sym_NULL] = ACTIONS(1123), - [anon_sym_nullptr] = ACTIONS(1123), - [sym_comment] = ACTIONS(3), - }, - [103] = { + [95] = { [sym_identifier] = ACTIONS(1195), [aux_sym_preproc_include_token1] = ACTIONS(1195), [aux_sym_preproc_def_token1] = ACTIONS(1195), @@ -26794,7 +25898,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1195), [sym_comment] = ACTIONS(3), }, - [104] = { + [96] = { [sym_identifier] = ACTIONS(1199), [aux_sym_preproc_include_token1] = ACTIONS(1199), [aux_sym_preproc_def_token1] = ACTIONS(1199), @@ -26898,7 +26002,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1199), [sym_comment] = ACTIONS(3), }, - [105] = { + [97] = { + [sym_identifier] = ACTIONS(1191), + [aux_sym_preproc_include_token1] = ACTIONS(1191), + [aux_sym_preproc_def_token1] = ACTIONS(1191), + [aux_sym_preproc_if_token1] = ACTIONS(1191), + [aux_sym_preproc_if_token2] = ACTIONS(1191), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1191), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1191), + [aux_sym_preproc_else_token1] = ACTIONS(1191), + [aux_sym_preproc_elif_token1] = ACTIONS(1191), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1191), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1191), + [sym_preproc_directive] = ACTIONS(1191), + [anon_sym_LPAREN2] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(1193), + [anon_sym_TILDE] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1191), + [anon_sym_STAR] = ACTIONS(1193), + [anon_sym_AMP] = ACTIONS(1193), + [anon_sym_SEMI] = ACTIONS(1193), + [anon_sym___extension__] = ACTIONS(1191), + [anon_sym_typedef] = ACTIONS(1191), + [anon_sym_extern] = ACTIONS(1191), + [anon_sym___attribute__] = ACTIONS(1191), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1193), + [anon_sym___declspec] = ACTIONS(1191), + [anon_sym___cdecl] = ACTIONS(1191), + [anon_sym___clrcall] = ACTIONS(1191), + [anon_sym___stdcall] = ACTIONS(1191), + [anon_sym___fastcall] = ACTIONS(1191), + [anon_sym___thiscall] = ACTIONS(1191), + [anon_sym___vectorcall] = ACTIONS(1191), + [anon_sym_LBRACE] = ACTIONS(1193), + [anon_sym_signed] = ACTIONS(1191), + [anon_sym_unsigned] = ACTIONS(1191), + [anon_sym_long] = ACTIONS(1191), + [anon_sym_short] = ACTIONS(1191), + [anon_sym_static] = ACTIONS(1191), + [anon_sym_auto] = ACTIONS(1191), + [anon_sym_register] = ACTIONS(1191), + [anon_sym_inline] = ACTIONS(1191), + [anon_sym___inline] = ACTIONS(1191), + [anon_sym___inline__] = ACTIONS(1191), + [anon_sym___forceinline] = ACTIONS(1191), + [anon_sym_thread_local] = ACTIONS(1191), + [anon_sym___thread] = ACTIONS(1191), + [anon_sym_const] = ACTIONS(1191), + [anon_sym_constexpr] = ACTIONS(1191), + [anon_sym_volatile] = ACTIONS(1191), + [anon_sym_restrict] = ACTIONS(1191), + [anon_sym___restrict__] = ACTIONS(1191), + [anon_sym__Atomic] = ACTIONS(1191), + [anon_sym__Noreturn] = ACTIONS(1191), + [anon_sym_noreturn] = ACTIONS(1191), + [anon_sym_alignas] = ACTIONS(1191), + [anon_sym__Alignas] = ACTIONS(1191), + [sym_primitive_type] = ACTIONS(1191), + [anon_sym_enum] = ACTIONS(1191), + [anon_sym_struct] = ACTIONS(1191), + [anon_sym_union] = ACTIONS(1191), + [anon_sym_if] = ACTIONS(1191), + [anon_sym_else] = ACTIONS(1191), + [anon_sym_switch] = ACTIONS(1191), + [anon_sym_case] = ACTIONS(1191), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_while] = ACTIONS(1191), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1191), + [anon_sym_return] = ACTIONS(1191), + [anon_sym_break] = ACTIONS(1191), + [anon_sym_continue] = ACTIONS(1191), + [anon_sym_goto] = ACTIONS(1191), + [anon_sym___try] = ACTIONS(1191), + [anon_sym___leave] = ACTIONS(1191), + [anon_sym_DASH_DASH] = ACTIONS(1193), + [anon_sym_PLUS_PLUS] = ACTIONS(1193), + [anon_sym_sizeof] = ACTIONS(1191), + [anon_sym___alignof__] = ACTIONS(1191), + [anon_sym___alignof] = ACTIONS(1191), + [anon_sym__alignof] = ACTIONS(1191), + [anon_sym_alignof] = ACTIONS(1191), + [anon_sym__Alignof] = ACTIONS(1191), + [anon_sym_offsetof] = ACTIONS(1191), + [anon_sym__Generic] = ACTIONS(1191), + [anon_sym_asm] = ACTIONS(1191), + [anon_sym___asm__] = ACTIONS(1191), + [sym_number_literal] = ACTIONS(1193), + [anon_sym_L_SQUOTE] = ACTIONS(1193), + [anon_sym_u_SQUOTE] = ACTIONS(1193), + [anon_sym_U_SQUOTE] = ACTIONS(1193), + [anon_sym_u8_SQUOTE] = ACTIONS(1193), + [anon_sym_SQUOTE] = ACTIONS(1193), + [anon_sym_L_DQUOTE] = ACTIONS(1193), + [anon_sym_u_DQUOTE] = ACTIONS(1193), + [anon_sym_U_DQUOTE] = ACTIONS(1193), + [anon_sym_u8_DQUOTE] = ACTIONS(1193), + [anon_sym_DQUOTE] = ACTIONS(1193), + [sym_true] = ACTIONS(1191), + [sym_false] = ACTIONS(1191), + [anon_sym_NULL] = ACTIONS(1191), + [anon_sym_nullptr] = ACTIONS(1191), + [sym_comment] = ACTIONS(3), + }, + [98] = { [sym_identifier] = ACTIONS(1203), [aux_sym_preproc_include_token1] = ACTIONS(1203), [aux_sym_preproc_def_token1] = ACTIONS(1203), @@ -27002,7 +26210,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1203), [sym_comment] = ACTIONS(3), }, - [106] = { + [99] = { + [sym_identifier] = ACTIONS(1203), + [aux_sym_preproc_include_token1] = ACTIONS(1203), + [aux_sym_preproc_def_token1] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1203), + [aux_sym_preproc_if_token2] = ACTIONS(1203), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1203), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1203), + [aux_sym_preproc_else_token1] = ACTIONS(1203), + [aux_sym_preproc_elif_token1] = ACTIONS(1203), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1203), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1203), + [sym_preproc_directive] = ACTIONS(1203), + [anon_sym_LPAREN2] = ACTIONS(1205), + [anon_sym_BANG] = ACTIONS(1205), + [anon_sym_TILDE] = ACTIONS(1205), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_AMP] = ACTIONS(1205), + [anon_sym_SEMI] = ACTIONS(1205), + [anon_sym___extension__] = ACTIONS(1203), + [anon_sym_typedef] = ACTIONS(1203), + [anon_sym_extern] = ACTIONS(1203), + [anon_sym___attribute__] = ACTIONS(1203), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1205), + [anon_sym___declspec] = ACTIONS(1203), + [anon_sym___cdecl] = ACTIONS(1203), + [anon_sym___clrcall] = ACTIONS(1203), + [anon_sym___stdcall] = ACTIONS(1203), + [anon_sym___fastcall] = ACTIONS(1203), + [anon_sym___thiscall] = ACTIONS(1203), + [anon_sym___vectorcall] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [anon_sym_signed] = ACTIONS(1203), + [anon_sym_unsigned] = ACTIONS(1203), + [anon_sym_long] = ACTIONS(1203), + [anon_sym_short] = ACTIONS(1203), + [anon_sym_static] = ACTIONS(1203), + [anon_sym_auto] = ACTIONS(1203), + [anon_sym_register] = ACTIONS(1203), + [anon_sym_inline] = ACTIONS(1203), + [anon_sym___inline] = ACTIONS(1203), + [anon_sym___inline__] = ACTIONS(1203), + [anon_sym___forceinline] = ACTIONS(1203), + [anon_sym_thread_local] = ACTIONS(1203), + [anon_sym___thread] = ACTIONS(1203), + [anon_sym_const] = ACTIONS(1203), + [anon_sym_constexpr] = ACTIONS(1203), + [anon_sym_volatile] = ACTIONS(1203), + [anon_sym_restrict] = ACTIONS(1203), + [anon_sym___restrict__] = ACTIONS(1203), + [anon_sym__Atomic] = ACTIONS(1203), + [anon_sym__Noreturn] = ACTIONS(1203), + [anon_sym_noreturn] = ACTIONS(1203), + [anon_sym_alignas] = ACTIONS(1203), + [anon_sym__Alignas] = ACTIONS(1203), + [sym_primitive_type] = ACTIONS(1203), + [anon_sym_enum] = ACTIONS(1203), + [anon_sym_struct] = ACTIONS(1203), + [anon_sym_union] = ACTIONS(1203), + [anon_sym_if] = ACTIONS(1203), + [anon_sym_else] = ACTIONS(1203), + [anon_sym_switch] = ACTIONS(1203), + [anon_sym_case] = ACTIONS(1203), + [anon_sym_default] = ACTIONS(1203), + [anon_sym_while] = ACTIONS(1203), + [anon_sym_do] = ACTIONS(1203), + [anon_sym_for] = ACTIONS(1203), + [anon_sym_return] = ACTIONS(1203), + [anon_sym_break] = ACTIONS(1203), + [anon_sym_continue] = ACTIONS(1203), + [anon_sym_goto] = ACTIONS(1203), + [anon_sym___try] = ACTIONS(1203), + [anon_sym___leave] = ACTIONS(1203), + [anon_sym_DASH_DASH] = ACTIONS(1205), + [anon_sym_PLUS_PLUS] = ACTIONS(1205), + [anon_sym_sizeof] = ACTIONS(1203), + [anon_sym___alignof__] = ACTIONS(1203), + [anon_sym___alignof] = ACTIONS(1203), + [anon_sym__alignof] = ACTIONS(1203), + [anon_sym_alignof] = ACTIONS(1203), + [anon_sym__Alignof] = ACTIONS(1203), + [anon_sym_offsetof] = ACTIONS(1203), + [anon_sym__Generic] = ACTIONS(1203), + [anon_sym_asm] = ACTIONS(1203), + [anon_sym___asm__] = ACTIONS(1203), + [sym_number_literal] = ACTIONS(1205), + [anon_sym_L_SQUOTE] = ACTIONS(1205), + [anon_sym_u_SQUOTE] = ACTIONS(1205), + [anon_sym_U_SQUOTE] = ACTIONS(1205), + [anon_sym_u8_SQUOTE] = ACTIONS(1205), + [anon_sym_SQUOTE] = ACTIONS(1205), + [anon_sym_L_DQUOTE] = ACTIONS(1205), + [anon_sym_u_DQUOTE] = ACTIONS(1205), + [anon_sym_U_DQUOTE] = ACTIONS(1205), + [anon_sym_u8_DQUOTE] = ACTIONS(1205), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_true] = ACTIONS(1203), + [sym_false] = ACTIONS(1203), + [anon_sym_NULL] = ACTIONS(1203), + [anon_sym_nullptr] = ACTIONS(1203), + [sym_comment] = ACTIONS(3), + }, + [100] = { [sym_identifier] = ACTIONS(1207), [aux_sym_preproc_include_token1] = ACTIONS(1207), [aux_sym_preproc_def_token1] = ACTIONS(1207), @@ -27106,215 +26418,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1207), [sym_comment] = ACTIONS(3), }, - [107] = { - [sym_identifier] = ACTIONS(1123), - [aux_sym_preproc_include_token1] = ACTIONS(1123), - [aux_sym_preproc_def_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token2] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), - [aux_sym_preproc_else_token1] = ACTIONS(1123), - [aux_sym_preproc_elif_token1] = ACTIONS(1123), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1123), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1123), - [sym_preproc_directive] = ACTIONS(1123), - [anon_sym_LPAREN2] = ACTIONS(1125), - [anon_sym_BANG] = ACTIONS(1125), - [anon_sym_TILDE] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym___extension__] = ACTIONS(1123), - [anon_sym_typedef] = ACTIONS(1123), - [anon_sym_extern] = ACTIONS(1123), - [anon_sym___attribute__] = ACTIONS(1123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), - [anon_sym___declspec] = ACTIONS(1123), - [anon_sym___cdecl] = ACTIONS(1123), - [anon_sym___clrcall] = ACTIONS(1123), - [anon_sym___stdcall] = ACTIONS(1123), - [anon_sym___fastcall] = ACTIONS(1123), - [anon_sym___thiscall] = ACTIONS(1123), - [anon_sym___vectorcall] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_signed] = ACTIONS(1123), - [anon_sym_unsigned] = ACTIONS(1123), - [anon_sym_long] = ACTIONS(1123), - [anon_sym_short] = ACTIONS(1123), - [anon_sym_static] = ACTIONS(1123), - [anon_sym_auto] = ACTIONS(1123), - [anon_sym_register] = ACTIONS(1123), - [anon_sym_inline] = ACTIONS(1123), - [anon_sym___inline] = ACTIONS(1123), - [anon_sym___inline__] = ACTIONS(1123), - [anon_sym___forceinline] = ACTIONS(1123), - [anon_sym_thread_local] = ACTIONS(1123), - [anon_sym___thread] = ACTIONS(1123), - [anon_sym_const] = ACTIONS(1123), - [anon_sym_constexpr] = ACTIONS(1123), - [anon_sym_volatile] = ACTIONS(1123), - [anon_sym_restrict] = ACTIONS(1123), - [anon_sym___restrict__] = ACTIONS(1123), - [anon_sym__Atomic] = ACTIONS(1123), - [anon_sym__Noreturn] = ACTIONS(1123), - [anon_sym_noreturn] = ACTIONS(1123), - [anon_sym_alignas] = ACTIONS(1123), - [anon_sym__Alignas] = ACTIONS(1123), - [sym_primitive_type] = ACTIONS(1123), - [anon_sym_enum] = ACTIONS(1123), - [anon_sym_struct] = ACTIONS(1123), - [anon_sym_union] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1123), - [anon_sym_else] = ACTIONS(1123), - [anon_sym_switch] = ACTIONS(1123), - [anon_sym_case] = ACTIONS(1123), - [anon_sym_default] = ACTIONS(1123), - [anon_sym_while] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(1123), - [anon_sym_for] = ACTIONS(1123), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_break] = ACTIONS(1123), - [anon_sym_continue] = ACTIONS(1123), - [anon_sym_goto] = ACTIONS(1123), - [anon_sym___try] = ACTIONS(1123), - [anon_sym___leave] = ACTIONS(1123), - [anon_sym_DASH_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1125), - [anon_sym_sizeof] = ACTIONS(1123), - [anon_sym___alignof__] = ACTIONS(1123), - [anon_sym___alignof] = ACTIONS(1123), - [anon_sym__alignof] = ACTIONS(1123), - [anon_sym_alignof] = ACTIONS(1123), - [anon_sym__Alignof] = ACTIONS(1123), - [anon_sym_offsetof] = ACTIONS(1123), - [anon_sym__Generic] = ACTIONS(1123), - [anon_sym_asm] = ACTIONS(1123), - [anon_sym___asm__] = ACTIONS(1123), - [sym_number_literal] = ACTIONS(1125), - [anon_sym_L_SQUOTE] = ACTIONS(1125), - [anon_sym_u_SQUOTE] = ACTIONS(1125), - [anon_sym_U_SQUOTE] = ACTIONS(1125), - [anon_sym_u8_SQUOTE] = ACTIONS(1125), - [anon_sym_SQUOTE] = ACTIONS(1125), - [anon_sym_L_DQUOTE] = ACTIONS(1125), - [anon_sym_u_DQUOTE] = ACTIONS(1125), - [anon_sym_U_DQUOTE] = ACTIONS(1125), - [anon_sym_u8_DQUOTE] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(1125), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [anon_sym_NULL] = ACTIONS(1123), - [anon_sym_nullptr] = ACTIONS(1123), - [sym_comment] = ACTIONS(3), - }, - [108] = { - [sym_identifier] = ACTIONS(1123), - [aux_sym_preproc_include_token1] = ACTIONS(1123), - [aux_sym_preproc_def_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token2] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), - [aux_sym_preproc_else_token1] = ACTIONS(1123), - [aux_sym_preproc_elif_token1] = ACTIONS(1123), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1123), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1123), - [sym_preproc_directive] = ACTIONS(1123), - [anon_sym_LPAREN2] = ACTIONS(1125), - [anon_sym_BANG] = ACTIONS(1125), - [anon_sym_TILDE] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym___extension__] = ACTIONS(1123), - [anon_sym_typedef] = ACTIONS(1123), - [anon_sym_extern] = ACTIONS(1123), - [anon_sym___attribute__] = ACTIONS(1123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), - [anon_sym___declspec] = ACTIONS(1123), - [anon_sym___cdecl] = ACTIONS(1123), - [anon_sym___clrcall] = ACTIONS(1123), - [anon_sym___stdcall] = ACTIONS(1123), - [anon_sym___fastcall] = ACTIONS(1123), - [anon_sym___thiscall] = ACTIONS(1123), - [anon_sym___vectorcall] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_signed] = ACTIONS(1123), - [anon_sym_unsigned] = ACTIONS(1123), - [anon_sym_long] = ACTIONS(1123), - [anon_sym_short] = ACTIONS(1123), - [anon_sym_static] = ACTIONS(1123), - [anon_sym_auto] = ACTIONS(1123), - [anon_sym_register] = ACTIONS(1123), - [anon_sym_inline] = ACTIONS(1123), - [anon_sym___inline] = ACTIONS(1123), - [anon_sym___inline__] = ACTIONS(1123), - [anon_sym___forceinline] = ACTIONS(1123), - [anon_sym_thread_local] = ACTIONS(1123), - [anon_sym___thread] = ACTIONS(1123), - [anon_sym_const] = ACTIONS(1123), - [anon_sym_constexpr] = ACTIONS(1123), - [anon_sym_volatile] = ACTIONS(1123), - [anon_sym_restrict] = ACTIONS(1123), - [anon_sym___restrict__] = ACTIONS(1123), - [anon_sym__Atomic] = ACTIONS(1123), - [anon_sym__Noreturn] = ACTIONS(1123), - [anon_sym_noreturn] = ACTIONS(1123), - [anon_sym_alignas] = ACTIONS(1123), - [anon_sym__Alignas] = ACTIONS(1123), - [sym_primitive_type] = ACTIONS(1123), - [anon_sym_enum] = ACTIONS(1123), - [anon_sym_struct] = ACTIONS(1123), - [anon_sym_union] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1123), - [anon_sym_else] = ACTIONS(1123), - [anon_sym_switch] = ACTIONS(1123), - [anon_sym_case] = ACTIONS(1123), - [anon_sym_default] = ACTIONS(1123), - [anon_sym_while] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(1123), - [anon_sym_for] = ACTIONS(1123), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_break] = ACTIONS(1123), - [anon_sym_continue] = ACTIONS(1123), - [anon_sym_goto] = ACTIONS(1123), - [anon_sym___try] = ACTIONS(1123), - [anon_sym___leave] = ACTIONS(1123), - [anon_sym_DASH_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1125), - [anon_sym_sizeof] = ACTIONS(1123), - [anon_sym___alignof__] = ACTIONS(1123), - [anon_sym___alignof] = ACTIONS(1123), - [anon_sym__alignof] = ACTIONS(1123), - [anon_sym_alignof] = ACTIONS(1123), - [anon_sym__Alignof] = ACTIONS(1123), - [anon_sym_offsetof] = ACTIONS(1123), - [anon_sym__Generic] = ACTIONS(1123), - [anon_sym_asm] = ACTIONS(1123), - [anon_sym___asm__] = ACTIONS(1123), - [sym_number_literal] = ACTIONS(1125), - [anon_sym_L_SQUOTE] = ACTIONS(1125), - [anon_sym_u_SQUOTE] = ACTIONS(1125), - [anon_sym_U_SQUOTE] = ACTIONS(1125), - [anon_sym_u8_SQUOTE] = ACTIONS(1125), - [anon_sym_SQUOTE] = ACTIONS(1125), - [anon_sym_L_DQUOTE] = ACTIONS(1125), - [anon_sym_u_DQUOTE] = ACTIONS(1125), - [anon_sym_U_DQUOTE] = ACTIONS(1125), - [anon_sym_u8_DQUOTE] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(1125), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [anon_sym_NULL] = ACTIONS(1123), - [anon_sym_nullptr] = ACTIONS(1123), - [sym_comment] = ACTIONS(3), - }, - [109] = { + [101] = { [sym_identifier] = ACTIONS(1211), [aux_sym_preproc_include_token1] = ACTIONS(1211), [aux_sym_preproc_def_token1] = ACTIONS(1211), @@ -27418,7 +26522,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1211), [sym_comment] = ACTIONS(3), }, - [110] = { + [102] = { [sym_identifier] = ACTIONS(1215), [aux_sym_preproc_include_token1] = ACTIONS(1215), [aux_sym_preproc_def_token1] = ACTIONS(1215), @@ -27522,111 +26626,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1215), [sym_comment] = ACTIONS(3), }, - [111] = { - [sym_identifier] = ACTIONS(1123), - [aux_sym_preproc_include_token1] = ACTIONS(1123), - [aux_sym_preproc_def_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token2] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), - [aux_sym_preproc_else_token1] = ACTIONS(1123), - [aux_sym_preproc_elif_token1] = ACTIONS(1123), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1123), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1123), - [sym_preproc_directive] = ACTIONS(1123), - [anon_sym_LPAREN2] = ACTIONS(1125), - [anon_sym_BANG] = ACTIONS(1125), - [anon_sym_TILDE] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym___extension__] = ACTIONS(1123), - [anon_sym_typedef] = ACTIONS(1123), - [anon_sym_extern] = ACTIONS(1123), - [anon_sym___attribute__] = ACTIONS(1123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), - [anon_sym___declspec] = ACTIONS(1123), - [anon_sym___cdecl] = ACTIONS(1123), - [anon_sym___clrcall] = ACTIONS(1123), - [anon_sym___stdcall] = ACTIONS(1123), - [anon_sym___fastcall] = ACTIONS(1123), - [anon_sym___thiscall] = ACTIONS(1123), - [anon_sym___vectorcall] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_signed] = ACTIONS(1123), - [anon_sym_unsigned] = ACTIONS(1123), - [anon_sym_long] = ACTIONS(1123), - [anon_sym_short] = ACTIONS(1123), - [anon_sym_static] = ACTIONS(1123), - [anon_sym_auto] = ACTIONS(1123), - [anon_sym_register] = ACTIONS(1123), - [anon_sym_inline] = ACTIONS(1123), - [anon_sym___inline] = ACTIONS(1123), - [anon_sym___inline__] = ACTIONS(1123), - [anon_sym___forceinline] = ACTIONS(1123), - [anon_sym_thread_local] = ACTIONS(1123), - [anon_sym___thread] = ACTIONS(1123), - [anon_sym_const] = ACTIONS(1123), - [anon_sym_constexpr] = ACTIONS(1123), - [anon_sym_volatile] = ACTIONS(1123), - [anon_sym_restrict] = ACTIONS(1123), - [anon_sym___restrict__] = ACTIONS(1123), - [anon_sym__Atomic] = ACTIONS(1123), - [anon_sym__Noreturn] = ACTIONS(1123), - [anon_sym_noreturn] = ACTIONS(1123), - [anon_sym_alignas] = ACTIONS(1123), - [anon_sym__Alignas] = ACTIONS(1123), - [sym_primitive_type] = ACTIONS(1123), - [anon_sym_enum] = ACTIONS(1123), - [anon_sym_struct] = ACTIONS(1123), - [anon_sym_union] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1123), - [anon_sym_else] = ACTIONS(1123), - [anon_sym_switch] = ACTIONS(1123), - [anon_sym_case] = ACTIONS(1123), - [anon_sym_default] = ACTIONS(1123), - [anon_sym_while] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(1123), - [anon_sym_for] = ACTIONS(1123), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_break] = ACTIONS(1123), - [anon_sym_continue] = ACTIONS(1123), - [anon_sym_goto] = ACTIONS(1123), - [anon_sym___try] = ACTIONS(1123), - [anon_sym___leave] = ACTIONS(1123), - [anon_sym_DASH_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1125), - [anon_sym_sizeof] = ACTIONS(1123), - [anon_sym___alignof__] = ACTIONS(1123), - [anon_sym___alignof] = ACTIONS(1123), - [anon_sym__alignof] = ACTIONS(1123), - [anon_sym_alignof] = ACTIONS(1123), - [anon_sym__Alignof] = ACTIONS(1123), - [anon_sym_offsetof] = ACTIONS(1123), - [anon_sym__Generic] = ACTIONS(1123), - [anon_sym_asm] = ACTIONS(1123), - [anon_sym___asm__] = ACTIONS(1123), - [sym_number_literal] = ACTIONS(1125), - [anon_sym_L_SQUOTE] = ACTIONS(1125), - [anon_sym_u_SQUOTE] = ACTIONS(1125), - [anon_sym_U_SQUOTE] = ACTIONS(1125), - [anon_sym_u8_SQUOTE] = ACTIONS(1125), - [anon_sym_SQUOTE] = ACTIONS(1125), - [anon_sym_L_DQUOTE] = ACTIONS(1125), - [anon_sym_u_DQUOTE] = ACTIONS(1125), - [anon_sym_U_DQUOTE] = ACTIONS(1125), - [anon_sym_u8_DQUOTE] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(1125), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [anon_sym_NULL] = ACTIONS(1123), - [anon_sym_nullptr] = ACTIONS(1123), - [sym_comment] = ACTIONS(3), - }, - [112] = { + [103] = { [sym_identifier] = ACTIONS(1219), [aux_sym_preproc_include_token1] = ACTIONS(1219), [aux_sym_preproc_def_token1] = ACTIONS(1219), @@ -27730,7 +26730,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1219), [sym_comment] = ACTIONS(3), }, - [113] = { + [104] = { + [ts_builtin_sym_end] = ACTIONS(1169), + [sym_identifier] = ACTIONS(1167), + [aux_sym_preproc_include_token1] = ACTIONS(1167), + [aux_sym_preproc_def_token1] = ACTIONS(1167), + [anon_sym_COMMA] = ACTIONS(1169), + [anon_sym_RPAREN] = ACTIONS(1169), + [aux_sym_preproc_if_token1] = ACTIONS(1167), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1167), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1167), + [sym_preproc_directive] = ACTIONS(1167), + [anon_sym_LPAREN2] = ACTIONS(1169), + [anon_sym_BANG] = ACTIONS(1169), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_DASH] = ACTIONS(1167), + [anon_sym_PLUS] = ACTIONS(1167), + [anon_sym_STAR] = ACTIONS(1169), + [anon_sym_AMP] = ACTIONS(1169), + [anon_sym_SEMI] = ACTIONS(1169), + [anon_sym___extension__] = ACTIONS(1167), + [anon_sym_typedef] = ACTIONS(1167), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym___attribute__] = ACTIONS(1167), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1169), + [anon_sym___declspec] = ACTIONS(1167), + [anon_sym___cdecl] = ACTIONS(1167), + [anon_sym___clrcall] = ACTIONS(1167), + [anon_sym___stdcall] = ACTIONS(1167), + [anon_sym___fastcall] = ACTIONS(1167), + [anon_sym___thiscall] = ACTIONS(1167), + [anon_sym___vectorcall] = ACTIONS(1167), + [anon_sym_LBRACE] = ACTIONS(1169), + [anon_sym_signed] = ACTIONS(1167), + [anon_sym_unsigned] = ACTIONS(1167), + [anon_sym_long] = ACTIONS(1167), + [anon_sym_short] = ACTIONS(1167), + [anon_sym_static] = ACTIONS(1167), + [anon_sym_auto] = ACTIONS(1167), + [anon_sym_register] = ACTIONS(1167), + [anon_sym_inline] = ACTIONS(1167), + [anon_sym___inline] = ACTIONS(1167), + [anon_sym___inline__] = ACTIONS(1167), + [anon_sym___forceinline] = ACTIONS(1167), + [anon_sym_thread_local] = ACTIONS(1167), + [anon_sym___thread] = ACTIONS(1167), + [anon_sym_const] = ACTIONS(1167), + [anon_sym_constexpr] = ACTIONS(1167), + [anon_sym_volatile] = ACTIONS(1167), + [anon_sym_restrict] = ACTIONS(1167), + [anon_sym___restrict__] = ACTIONS(1167), + [anon_sym__Atomic] = ACTIONS(1167), + [anon_sym__Noreturn] = ACTIONS(1167), + [anon_sym_noreturn] = ACTIONS(1167), + [anon_sym_alignas] = ACTIONS(1167), + [anon_sym__Alignas] = ACTIONS(1167), + [sym_primitive_type] = ACTIONS(1167), + [anon_sym_enum] = ACTIONS(1167), + [anon_sym_struct] = ACTIONS(1167), + [anon_sym_union] = ACTIONS(1167), + [anon_sym_if] = ACTIONS(1167), + [anon_sym_else] = ACTIONS(1167), + [anon_sym_switch] = ACTIONS(1167), + [anon_sym_case] = ACTIONS(1167), + [anon_sym_default] = ACTIONS(1167), + [anon_sym_while] = ACTIONS(1167), + [anon_sym_do] = ACTIONS(1167), + [anon_sym_for] = ACTIONS(1167), + [anon_sym_return] = ACTIONS(1167), + [anon_sym_break] = ACTIONS(1167), + [anon_sym_continue] = ACTIONS(1167), + [anon_sym_goto] = ACTIONS(1167), + [anon_sym___try] = ACTIONS(1167), + [anon_sym___except] = ACTIONS(1167), + [anon_sym___finally] = ACTIONS(1167), + [anon_sym___leave] = ACTIONS(1167), + [anon_sym_DASH_DASH] = ACTIONS(1169), + [anon_sym_PLUS_PLUS] = ACTIONS(1169), + [anon_sym_sizeof] = ACTIONS(1167), + [anon_sym___alignof__] = ACTIONS(1167), + [anon_sym___alignof] = ACTIONS(1167), + [anon_sym__alignof] = ACTIONS(1167), + [anon_sym_alignof] = ACTIONS(1167), + [anon_sym__Alignof] = ACTIONS(1167), + [anon_sym_offsetof] = ACTIONS(1167), + [anon_sym__Generic] = ACTIONS(1167), + [anon_sym_asm] = ACTIONS(1167), + [anon_sym___asm__] = ACTIONS(1167), + [sym_number_literal] = ACTIONS(1169), + [anon_sym_L_SQUOTE] = ACTIONS(1169), + [anon_sym_u_SQUOTE] = ACTIONS(1169), + [anon_sym_U_SQUOTE] = ACTIONS(1169), + [anon_sym_u8_SQUOTE] = ACTIONS(1169), + [anon_sym_SQUOTE] = ACTIONS(1169), + [anon_sym_L_DQUOTE] = ACTIONS(1169), + [anon_sym_u_DQUOTE] = ACTIONS(1169), + [anon_sym_U_DQUOTE] = ACTIONS(1169), + [anon_sym_u8_DQUOTE] = ACTIONS(1169), + [anon_sym_DQUOTE] = ACTIONS(1169), + [sym_true] = ACTIONS(1167), + [sym_false] = ACTIONS(1167), + [anon_sym_NULL] = ACTIONS(1167), + [anon_sym_nullptr] = ACTIONS(1167), + [sym_comment] = ACTIONS(3), + }, + [105] = { [sym_identifier] = ACTIONS(1223), [aux_sym_preproc_include_token1] = ACTIONS(1223), [aux_sym_preproc_def_token1] = ACTIONS(1223), @@ -27834,7 +26938,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1223), [sym_comment] = ACTIONS(3), }, - [114] = { + [106] = { [sym_identifier] = ACTIONS(1227), [aux_sym_preproc_include_token1] = ACTIONS(1227), [aux_sym_preproc_def_token1] = ACTIONS(1227), @@ -27938,215 +27042,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1227), [sym_comment] = ACTIONS(3), }, - [115] = { - [sym_identifier] = ACTIONS(1123), - [aux_sym_preproc_include_token1] = ACTIONS(1123), - [aux_sym_preproc_def_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token2] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), - [aux_sym_preproc_else_token1] = ACTIONS(1123), - [aux_sym_preproc_elif_token1] = ACTIONS(1123), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1123), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1123), - [sym_preproc_directive] = ACTIONS(1123), - [anon_sym_LPAREN2] = ACTIONS(1125), - [anon_sym_BANG] = ACTIONS(1125), - [anon_sym_TILDE] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym___extension__] = ACTIONS(1123), - [anon_sym_typedef] = ACTIONS(1123), - [anon_sym_extern] = ACTIONS(1123), - [anon_sym___attribute__] = ACTIONS(1123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), - [anon_sym___declspec] = ACTIONS(1123), - [anon_sym___cdecl] = ACTIONS(1123), - [anon_sym___clrcall] = ACTIONS(1123), - [anon_sym___stdcall] = ACTIONS(1123), - [anon_sym___fastcall] = ACTIONS(1123), - [anon_sym___thiscall] = ACTIONS(1123), - [anon_sym___vectorcall] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_signed] = ACTIONS(1123), - [anon_sym_unsigned] = ACTIONS(1123), - [anon_sym_long] = ACTIONS(1123), - [anon_sym_short] = ACTIONS(1123), - [anon_sym_static] = ACTIONS(1123), - [anon_sym_auto] = ACTIONS(1123), - [anon_sym_register] = ACTIONS(1123), - [anon_sym_inline] = ACTIONS(1123), - [anon_sym___inline] = ACTIONS(1123), - [anon_sym___inline__] = ACTIONS(1123), - [anon_sym___forceinline] = ACTIONS(1123), - [anon_sym_thread_local] = ACTIONS(1123), - [anon_sym___thread] = ACTIONS(1123), - [anon_sym_const] = ACTIONS(1123), - [anon_sym_constexpr] = ACTIONS(1123), - [anon_sym_volatile] = ACTIONS(1123), - [anon_sym_restrict] = ACTIONS(1123), - [anon_sym___restrict__] = ACTIONS(1123), - [anon_sym__Atomic] = ACTIONS(1123), - [anon_sym__Noreturn] = ACTIONS(1123), - [anon_sym_noreturn] = ACTIONS(1123), - [anon_sym_alignas] = ACTIONS(1123), - [anon_sym__Alignas] = ACTIONS(1123), - [sym_primitive_type] = ACTIONS(1123), - [anon_sym_enum] = ACTIONS(1123), - [anon_sym_struct] = ACTIONS(1123), - [anon_sym_union] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1123), - [anon_sym_else] = ACTIONS(1123), - [anon_sym_switch] = ACTIONS(1123), - [anon_sym_case] = ACTIONS(1123), - [anon_sym_default] = ACTIONS(1123), - [anon_sym_while] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(1123), - [anon_sym_for] = ACTIONS(1123), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_break] = ACTIONS(1123), - [anon_sym_continue] = ACTIONS(1123), - [anon_sym_goto] = ACTIONS(1123), - [anon_sym___try] = ACTIONS(1123), - [anon_sym___leave] = ACTIONS(1123), - [anon_sym_DASH_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1125), - [anon_sym_sizeof] = ACTIONS(1123), - [anon_sym___alignof__] = ACTIONS(1123), - [anon_sym___alignof] = ACTIONS(1123), - [anon_sym__alignof] = ACTIONS(1123), - [anon_sym_alignof] = ACTIONS(1123), - [anon_sym__Alignof] = ACTIONS(1123), - [anon_sym_offsetof] = ACTIONS(1123), - [anon_sym__Generic] = ACTIONS(1123), - [anon_sym_asm] = ACTIONS(1123), - [anon_sym___asm__] = ACTIONS(1123), - [sym_number_literal] = ACTIONS(1125), - [anon_sym_L_SQUOTE] = ACTIONS(1125), - [anon_sym_u_SQUOTE] = ACTIONS(1125), - [anon_sym_U_SQUOTE] = ACTIONS(1125), - [anon_sym_u8_SQUOTE] = ACTIONS(1125), - [anon_sym_SQUOTE] = ACTIONS(1125), - [anon_sym_L_DQUOTE] = ACTIONS(1125), - [anon_sym_u_DQUOTE] = ACTIONS(1125), - [anon_sym_U_DQUOTE] = ACTIONS(1125), - [anon_sym_u8_DQUOTE] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(1125), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [anon_sym_NULL] = ACTIONS(1123), - [anon_sym_nullptr] = ACTIONS(1123), - [sym_comment] = ACTIONS(3), - }, - [116] = { - [sym_identifier] = ACTIONS(1143), - [aux_sym_preproc_include_token1] = ACTIONS(1143), - [aux_sym_preproc_def_token1] = ACTIONS(1143), - [aux_sym_preproc_if_token1] = ACTIONS(1143), - [aux_sym_preproc_if_token2] = ACTIONS(1143), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1143), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1143), - [aux_sym_preproc_else_token1] = ACTIONS(1143), - [aux_sym_preproc_elif_token1] = ACTIONS(1143), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1143), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1143), - [sym_preproc_directive] = ACTIONS(1143), - [anon_sym_LPAREN2] = ACTIONS(1145), - [anon_sym_BANG] = ACTIONS(1145), - [anon_sym_TILDE] = ACTIONS(1145), - [anon_sym_DASH] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_STAR] = ACTIONS(1145), - [anon_sym_AMP] = ACTIONS(1145), - [anon_sym_SEMI] = ACTIONS(1145), - [anon_sym___extension__] = ACTIONS(1143), - [anon_sym_typedef] = ACTIONS(1143), - [anon_sym_extern] = ACTIONS(1143), - [anon_sym___attribute__] = ACTIONS(1143), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), - [anon_sym___declspec] = ACTIONS(1143), - [anon_sym___cdecl] = ACTIONS(1143), - [anon_sym___clrcall] = ACTIONS(1143), - [anon_sym___stdcall] = ACTIONS(1143), - [anon_sym___fastcall] = ACTIONS(1143), - [anon_sym___thiscall] = ACTIONS(1143), - [anon_sym___vectorcall] = ACTIONS(1143), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_signed] = ACTIONS(1143), - [anon_sym_unsigned] = ACTIONS(1143), - [anon_sym_long] = ACTIONS(1143), - [anon_sym_short] = ACTIONS(1143), - [anon_sym_static] = ACTIONS(1143), - [anon_sym_auto] = ACTIONS(1143), - [anon_sym_register] = ACTIONS(1143), - [anon_sym_inline] = ACTIONS(1143), - [anon_sym___inline] = ACTIONS(1143), - [anon_sym___inline__] = ACTIONS(1143), - [anon_sym___forceinline] = ACTIONS(1143), - [anon_sym_thread_local] = ACTIONS(1143), - [anon_sym___thread] = ACTIONS(1143), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_constexpr] = ACTIONS(1143), - [anon_sym_volatile] = ACTIONS(1143), - [anon_sym_restrict] = ACTIONS(1143), - [anon_sym___restrict__] = ACTIONS(1143), - [anon_sym__Atomic] = ACTIONS(1143), - [anon_sym__Noreturn] = ACTIONS(1143), - [anon_sym_noreturn] = ACTIONS(1143), - [anon_sym_alignas] = ACTIONS(1143), - [anon_sym__Alignas] = ACTIONS(1143), - [sym_primitive_type] = ACTIONS(1143), - [anon_sym_enum] = ACTIONS(1143), - [anon_sym_struct] = ACTIONS(1143), - [anon_sym_union] = ACTIONS(1143), - [anon_sym_if] = ACTIONS(1143), - [anon_sym_else] = ACTIONS(1143), - [anon_sym_switch] = ACTIONS(1143), - [anon_sym_case] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1143), - [anon_sym_while] = ACTIONS(1143), - [anon_sym_do] = ACTIONS(1143), - [anon_sym_for] = ACTIONS(1143), - [anon_sym_return] = ACTIONS(1143), - [anon_sym_break] = ACTIONS(1143), - [anon_sym_continue] = ACTIONS(1143), - [anon_sym_goto] = ACTIONS(1143), - [anon_sym___try] = ACTIONS(1143), - [anon_sym___leave] = ACTIONS(1143), - [anon_sym_DASH_DASH] = ACTIONS(1145), - [anon_sym_PLUS_PLUS] = ACTIONS(1145), - [anon_sym_sizeof] = ACTIONS(1143), - [anon_sym___alignof__] = ACTIONS(1143), - [anon_sym___alignof] = ACTIONS(1143), - [anon_sym__alignof] = ACTIONS(1143), - [anon_sym_alignof] = ACTIONS(1143), - [anon_sym__Alignof] = ACTIONS(1143), - [anon_sym_offsetof] = ACTIONS(1143), - [anon_sym__Generic] = ACTIONS(1143), - [anon_sym_asm] = ACTIONS(1143), - [anon_sym___asm__] = ACTIONS(1143), - [sym_number_literal] = ACTIONS(1145), - [anon_sym_L_SQUOTE] = ACTIONS(1145), - [anon_sym_u_SQUOTE] = ACTIONS(1145), - [anon_sym_U_SQUOTE] = ACTIONS(1145), - [anon_sym_u8_SQUOTE] = ACTIONS(1145), - [anon_sym_SQUOTE] = ACTIONS(1145), - [anon_sym_L_DQUOTE] = ACTIONS(1145), - [anon_sym_u_DQUOTE] = ACTIONS(1145), - [anon_sym_U_DQUOTE] = ACTIONS(1145), - [anon_sym_u8_DQUOTE] = ACTIONS(1145), - [anon_sym_DQUOTE] = ACTIONS(1145), - [sym_true] = ACTIONS(1143), - [sym_false] = ACTIONS(1143), - [anon_sym_NULL] = ACTIONS(1143), - [anon_sym_nullptr] = ACTIONS(1143), - [sym_comment] = ACTIONS(3), - }, - [117] = { + [107] = { [sym_identifier] = ACTIONS(1231), [aux_sym_preproc_include_token1] = ACTIONS(1231), [aux_sym_preproc_def_token1] = ACTIONS(1231), @@ -28250,319 +27146,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1231), [sym_comment] = ACTIONS(3), }, - [118] = { - [sym_identifier] = ACTIONS(1123), - [aux_sym_preproc_include_token1] = ACTIONS(1123), - [aux_sym_preproc_def_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token2] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), - [aux_sym_preproc_else_token1] = ACTIONS(1123), - [aux_sym_preproc_elif_token1] = ACTIONS(1123), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1123), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1123), - [sym_preproc_directive] = ACTIONS(1123), - [anon_sym_LPAREN2] = ACTIONS(1125), - [anon_sym_BANG] = ACTIONS(1125), - [anon_sym_TILDE] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym___extension__] = ACTIONS(1123), - [anon_sym_typedef] = ACTIONS(1123), - [anon_sym_extern] = ACTIONS(1123), - [anon_sym___attribute__] = ACTIONS(1123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), - [anon_sym___declspec] = ACTIONS(1123), - [anon_sym___cdecl] = ACTIONS(1123), - [anon_sym___clrcall] = ACTIONS(1123), - [anon_sym___stdcall] = ACTIONS(1123), - [anon_sym___fastcall] = ACTIONS(1123), - [anon_sym___thiscall] = ACTIONS(1123), - [anon_sym___vectorcall] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_signed] = ACTIONS(1123), - [anon_sym_unsigned] = ACTIONS(1123), - [anon_sym_long] = ACTIONS(1123), - [anon_sym_short] = ACTIONS(1123), - [anon_sym_static] = ACTIONS(1123), - [anon_sym_auto] = ACTIONS(1123), - [anon_sym_register] = ACTIONS(1123), - [anon_sym_inline] = ACTIONS(1123), - [anon_sym___inline] = ACTIONS(1123), - [anon_sym___inline__] = ACTIONS(1123), - [anon_sym___forceinline] = ACTIONS(1123), - [anon_sym_thread_local] = ACTIONS(1123), - [anon_sym___thread] = ACTIONS(1123), - [anon_sym_const] = ACTIONS(1123), - [anon_sym_constexpr] = ACTIONS(1123), - [anon_sym_volatile] = ACTIONS(1123), - [anon_sym_restrict] = ACTIONS(1123), - [anon_sym___restrict__] = ACTIONS(1123), - [anon_sym__Atomic] = ACTIONS(1123), - [anon_sym__Noreturn] = ACTIONS(1123), - [anon_sym_noreturn] = ACTIONS(1123), - [anon_sym_alignas] = ACTIONS(1123), - [anon_sym__Alignas] = ACTIONS(1123), - [sym_primitive_type] = ACTIONS(1123), - [anon_sym_enum] = ACTIONS(1123), - [anon_sym_struct] = ACTIONS(1123), - [anon_sym_union] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1123), - [anon_sym_else] = ACTIONS(1123), - [anon_sym_switch] = ACTIONS(1123), - [anon_sym_case] = ACTIONS(1123), - [anon_sym_default] = ACTIONS(1123), - [anon_sym_while] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(1123), - [anon_sym_for] = ACTIONS(1123), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_break] = ACTIONS(1123), - [anon_sym_continue] = ACTIONS(1123), - [anon_sym_goto] = ACTIONS(1123), - [anon_sym___try] = ACTIONS(1123), - [anon_sym___leave] = ACTIONS(1123), - [anon_sym_DASH_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1125), - [anon_sym_sizeof] = ACTIONS(1123), - [anon_sym___alignof__] = ACTIONS(1123), - [anon_sym___alignof] = ACTIONS(1123), - [anon_sym__alignof] = ACTIONS(1123), - [anon_sym_alignof] = ACTIONS(1123), - [anon_sym__Alignof] = ACTIONS(1123), - [anon_sym_offsetof] = ACTIONS(1123), - [anon_sym__Generic] = ACTIONS(1123), - [anon_sym_asm] = ACTIONS(1123), - [anon_sym___asm__] = ACTIONS(1123), - [sym_number_literal] = ACTIONS(1125), - [anon_sym_L_SQUOTE] = ACTIONS(1125), - [anon_sym_u_SQUOTE] = ACTIONS(1125), - [anon_sym_U_SQUOTE] = ACTIONS(1125), - [anon_sym_u8_SQUOTE] = ACTIONS(1125), - [anon_sym_SQUOTE] = ACTIONS(1125), - [anon_sym_L_DQUOTE] = ACTIONS(1125), - [anon_sym_u_DQUOTE] = ACTIONS(1125), - [anon_sym_U_DQUOTE] = ACTIONS(1125), - [anon_sym_u8_DQUOTE] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(1125), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [anon_sym_NULL] = ACTIONS(1123), - [anon_sym_nullptr] = ACTIONS(1123), - [sym_comment] = ACTIONS(3), - }, - [119] = { - [sym_identifier] = ACTIONS(1123), - [aux_sym_preproc_include_token1] = ACTIONS(1123), - [aux_sym_preproc_def_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token2] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), - [aux_sym_preproc_else_token1] = ACTIONS(1123), - [aux_sym_preproc_elif_token1] = ACTIONS(1123), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1123), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1123), - [sym_preproc_directive] = ACTIONS(1123), - [anon_sym_LPAREN2] = ACTIONS(1125), - [anon_sym_BANG] = ACTIONS(1125), - [anon_sym_TILDE] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym___extension__] = ACTIONS(1123), - [anon_sym_typedef] = ACTIONS(1123), - [anon_sym_extern] = ACTIONS(1123), - [anon_sym___attribute__] = ACTIONS(1123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), - [anon_sym___declspec] = ACTIONS(1123), - [anon_sym___cdecl] = ACTIONS(1123), - [anon_sym___clrcall] = ACTIONS(1123), - [anon_sym___stdcall] = ACTIONS(1123), - [anon_sym___fastcall] = ACTIONS(1123), - [anon_sym___thiscall] = ACTIONS(1123), - [anon_sym___vectorcall] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_signed] = ACTIONS(1123), - [anon_sym_unsigned] = ACTIONS(1123), - [anon_sym_long] = ACTIONS(1123), - [anon_sym_short] = ACTIONS(1123), - [anon_sym_static] = ACTIONS(1123), - [anon_sym_auto] = ACTIONS(1123), - [anon_sym_register] = ACTIONS(1123), - [anon_sym_inline] = ACTIONS(1123), - [anon_sym___inline] = ACTIONS(1123), - [anon_sym___inline__] = ACTIONS(1123), - [anon_sym___forceinline] = ACTIONS(1123), - [anon_sym_thread_local] = ACTIONS(1123), - [anon_sym___thread] = ACTIONS(1123), - [anon_sym_const] = ACTIONS(1123), - [anon_sym_constexpr] = ACTIONS(1123), - [anon_sym_volatile] = ACTIONS(1123), - [anon_sym_restrict] = ACTIONS(1123), - [anon_sym___restrict__] = ACTIONS(1123), - [anon_sym__Atomic] = ACTIONS(1123), - [anon_sym__Noreturn] = ACTIONS(1123), - [anon_sym_noreturn] = ACTIONS(1123), - [anon_sym_alignas] = ACTIONS(1123), - [anon_sym__Alignas] = ACTIONS(1123), - [sym_primitive_type] = ACTIONS(1123), - [anon_sym_enum] = ACTIONS(1123), - [anon_sym_struct] = ACTIONS(1123), - [anon_sym_union] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1123), - [anon_sym_else] = ACTIONS(1123), - [anon_sym_switch] = ACTIONS(1123), - [anon_sym_case] = ACTIONS(1123), - [anon_sym_default] = ACTIONS(1123), - [anon_sym_while] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(1123), - [anon_sym_for] = ACTIONS(1123), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_break] = ACTIONS(1123), - [anon_sym_continue] = ACTIONS(1123), - [anon_sym_goto] = ACTIONS(1123), - [anon_sym___try] = ACTIONS(1123), - [anon_sym___leave] = ACTIONS(1123), - [anon_sym_DASH_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1125), - [anon_sym_sizeof] = ACTIONS(1123), - [anon_sym___alignof__] = ACTIONS(1123), - [anon_sym___alignof] = ACTIONS(1123), - [anon_sym__alignof] = ACTIONS(1123), - [anon_sym_alignof] = ACTIONS(1123), - [anon_sym__Alignof] = ACTIONS(1123), - [anon_sym_offsetof] = ACTIONS(1123), - [anon_sym__Generic] = ACTIONS(1123), - [anon_sym_asm] = ACTIONS(1123), - [anon_sym___asm__] = ACTIONS(1123), - [sym_number_literal] = ACTIONS(1125), - [anon_sym_L_SQUOTE] = ACTIONS(1125), - [anon_sym_u_SQUOTE] = ACTIONS(1125), - [anon_sym_U_SQUOTE] = ACTIONS(1125), - [anon_sym_u8_SQUOTE] = ACTIONS(1125), - [anon_sym_SQUOTE] = ACTIONS(1125), - [anon_sym_L_DQUOTE] = ACTIONS(1125), - [anon_sym_u_DQUOTE] = ACTIONS(1125), - [anon_sym_U_DQUOTE] = ACTIONS(1125), - [anon_sym_u8_DQUOTE] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(1125), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [anon_sym_NULL] = ACTIONS(1123), - [anon_sym_nullptr] = ACTIONS(1123), - [sym_comment] = ACTIONS(3), - }, - [120] = { - [sym_identifier] = ACTIONS(1123), - [aux_sym_preproc_include_token1] = ACTIONS(1123), - [aux_sym_preproc_def_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token2] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), - [aux_sym_preproc_else_token1] = ACTIONS(1123), - [aux_sym_preproc_elif_token1] = ACTIONS(1123), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1123), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1123), - [sym_preproc_directive] = ACTIONS(1123), - [anon_sym_LPAREN2] = ACTIONS(1125), - [anon_sym_BANG] = ACTIONS(1125), - [anon_sym_TILDE] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym___extension__] = ACTIONS(1123), - [anon_sym_typedef] = ACTIONS(1123), - [anon_sym_extern] = ACTIONS(1123), - [anon_sym___attribute__] = ACTIONS(1123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), - [anon_sym___declspec] = ACTIONS(1123), - [anon_sym___cdecl] = ACTIONS(1123), - [anon_sym___clrcall] = ACTIONS(1123), - [anon_sym___stdcall] = ACTIONS(1123), - [anon_sym___fastcall] = ACTIONS(1123), - [anon_sym___thiscall] = ACTIONS(1123), - [anon_sym___vectorcall] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_signed] = ACTIONS(1123), - [anon_sym_unsigned] = ACTIONS(1123), - [anon_sym_long] = ACTIONS(1123), - [anon_sym_short] = ACTIONS(1123), - [anon_sym_static] = ACTIONS(1123), - [anon_sym_auto] = ACTIONS(1123), - [anon_sym_register] = ACTIONS(1123), - [anon_sym_inline] = ACTIONS(1123), - [anon_sym___inline] = ACTIONS(1123), - [anon_sym___inline__] = ACTIONS(1123), - [anon_sym___forceinline] = ACTIONS(1123), - [anon_sym_thread_local] = ACTIONS(1123), - [anon_sym___thread] = ACTIONS(1123), - [anon_sym_const] = ACTIONS(1123), - [anon_sym_constexpr] = ACTIONS(1123), - [anon_sym_volatile] = ACTIONS(1123), - [anon_sym_restrict] = ACTIONS(1123), - [anon_sym___restrict__] = ACTIONS(1123), - [anon_sym__Atomic] = ACTIONS(1123), - [anon_sym__Noreturn] = ACTIONS(1123), - [anon_sym_noreturn] = ACTIONS(1123), - [anon_sym_alignas] = ACTIONS(1123), - [anon_sym__Alignas] = ACTIONS(1123), - [sym_primitive_type] = ACTIONS(1123), - [anon_sym_enum] = ACTIONS(1123), - [anon_sym_struct] = ACTIONS(1123), - [anon_sym_union] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1123), - [anon_sym_else] = ACTIONS(1123), - [anon_sym_switch] = ACTIONS(1123), - [anon_sym_case] = ACTIONS(1123), - [anon_sym_default] = ACTIONS(1123), - [anon_sym_while] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(1123), - [anon_sym_for] = ACTIONS(1123), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_break] = ACTIONS(1123), - [anon_sym_continue] = ACTIONS(1123), - [anon_sym_goto] = ACTIONS(1123), - [anon_sym___try] = ACTIONS(1123), - [anon_sym___leave] = ACTIONS(1123), - [anon_sym_DASH_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1125), - [anon_sym_sizeof] = ACTIONS(1123), - [anon_sym___alignof__] = ACTIONS(1123), - [anon_sym___alignof] = ACTIONS(1123), - [anon_sym__alignof] = ACTIONS(1123), - [anon_sym_alignof] = ACTIONS(1123), - [anon_sym__Alignof] = ACTIONS(1123), - [anon_sym_offsetof] = ACTIONS(1123), - [anon_sym__Generic] = ACTIONS(1123), - [anon_sym_asm] = ACTIONS(1123), - [anon_sym___asm__] = ACTIONS(1123), - [sym_number_literal] = ACTIONS(1125), - [anon_sym_L_SQUOTE] = ACTIONS(1125), - [anon_sym_u_SQUOTE] = ACTIONS(1125), - [anon_sym_U_SQUOTE] = ACTIONS(1125), - [anon_sym_u8_SQUOTE] = ACTIONS(1125), - [anon_sym_SQUOTE] = ACTIONS(1125), - [anon_sym_L_DQUOTE] = ACTIONS(1125), - [anon_sym_u_DQUOTE] = ACTIONS(1125), - [anon_sym_U_DQUOTE] = ACTIONS(1125), - [anon_sym_u8_DQUOTE] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(1125), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [anon_sym_NULL] = ACTIONS(1123), - [anon_sym_nullptr] = ACTIONS(1123), - [sym_comment] = ACTIONS(3), - }, - [121] = { + [108] = { [sym_identifier] = ACTIONS(1235), [aux_sym_preproc_include_token1] = ACTIONS(1235), [aux_sym_preproc_def_token1] = ACTIONS(1235), @@ -28666,7 +27250,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1235), [sym_comment] = ACTIONS(3), }, - [122] = { + [109] = { [sym_identifier] = ACTIONS(1239), [aux_sym_preproc_include_token1] = ACTIONS(1239), [aux_sym_preproc_def_token1] = ACTIONS(1239), @@ -28770,215 +27354,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1239), [sym_comment] = ACTIONS(3), }, - [123] = { - [sym_identifier] = ACTIONS(1123), - [aux_sym_preproc_include_token1] = ACTIONS(1123), - [aux_sym_preproc_def_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token2] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), - [aux_sym_preproc_else_token1] = ACTIONS(1123), - [aux_sym_preproc_elif_token1] = ACTIONS(1123), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1123), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1123), - [sym_preproc_directive] = ACTIONS(1123), - [anon_sym_LPAREN2] = ACTIONS(1125), - [anon_sym_BANG] = ACTIONS(1125), - [anon_sym_TILDE] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym___extension__] = ACTIONS(1123), - [anon_sym_typedef] = ACTIONS(1123), - [anon_sym_extern] = ACTIONS(1123), - [anon_sym___attribute__] = ACTIONS(1123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), - [anon_sym___declspec] = ACTIONS(1123), - [anon_sym___cdecl] = ACTIONS(1123), - [anon_sym___clrcall] = ACTIONS(1123), - [anon_sym___stdcall] = ACTIONS(1123), - [anon_sym___fastcall] = ACTIONS(1123), - [anon_sym___thiscall] = ACTIONS(1123), - [anon_sym___vectorcall] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_signed] = ACTIONS(1123), - [anon_sym_unsigned] = ACTIONS(1123), - [anon_sym_long] = ACTIONS(1123), - [anon_sym_short] = ACTIONS(1123), - [anon_sym_static] = ACTIONS(1123), - [anon_sym_auto] = ACTIONS(1123), - [anon_sym_register] = ACTIONS(1123), - [anon_sym_inline] = ACTIONS(1123), - [anon_sym___inline] = ACTIONS(1123), - [anon_sym___inline__] = ACTIONS(1123), - [anon_sym___forceinline] = ACTIONS(1123), - [anon_sym_thread_local] = ACTIONS(1123), - [anon_sym___thread] = ACTIONS(1123), - [anon_sym_const] = ACTIONS(1123), - [anon_sym_constexpr] = ACTIONS(1123), - [anon_sym_volatile] = ACTIONS(1123), - [anon_sym_restrict] = ACTIONS(1123), - [anon_sym___restrict__] = ACTIONS(1123), - [anon_sym__Atomic] = ACTIONS(1123), - [anon_sym__Noreturn] = ACTIONS(1123), - [anon_sym_noreturn] = ACTIONS(1123), - [anon_sym_alignas] = ACTIONS(1123), - [anon_sym__Alignas] = ACTIONS(1123), - [sym_primitive_type] = ACTIONS(1123), - [anon_sym_enum] = ACTIONS(1123), - [anon_sym_struct] = ACTIONS(1123), - [anon_sym_union] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1123), - [anon_sym_else] = ACTIONS(1123), - [anon_sym_switch] = ACTIONS(1123), - [anon_sym_case] = ACTIONS(1123), - [anon_sym_default] = ACTIONS(1123), - [anon_sym_while] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(1123), - [anon_sym_for] = ACTIONS(1123), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_break] = ACTIONS(1123), - [anon_sym_continue] = ACTIONS(1123), - [anon_sym_goto] = ACTIONS(1123), - [anon_sym___try] = ACTIONS(1123), - [anon_sym___leave] = ACTIONS(1123), - [anon_sym_DASH_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1125), - [anon_sym_sizeof] = ACTIONS(1123), - [anon_sym___alignof__] = ACTIONS(1123), - [anon_sym___alignof] = ACTIONS(1123), - [anon_sym__alignof] = ACTIONS(1123), - [anon_sym_alignof] = ACTIONS(1123), - [anon_sym__Alignof] = ACTIONS(1123), - [anon_sym_offsetof] = ACTIONS(1123), - [anon_sym__Generic] = ACTIONS(1123), - [anon_sym_asm] = ACTIONS(1123), - [anon_sym___asm__] = ACTIONS(1123), - [sym_number_literal] = ACTIONS(1125), - [anon_sym_L_SQUOTE] = ACTIONS(1125), - [anon_sym_u_SQUOTE] = ACTIONS(1125), - [anon_sym_U_SQUOTE] = ACTIONS(1125), - [anon_sym_u8_SQUOTE] = ACTIONS(1125), - [anon_sym_SQUOTE] = ACTIONS(1125), - [anon_sym_L_DQUOTE] = ACTIONS(1125), - [anon_sym_u_DQUOTE] = ACTIONS(1125), - [anon_sym_U_DQUOTE] = ACTIONS(1125), - [anon_sym_u8_DQUOTE] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(1125), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [anon_sym_NULL] = ACTIONS(1123), - [anon_sym_nullptr] = ACTIONS(1123), - [sym_comment] = ACTIONS(3), - }, - [124] = { - [sym_identifier] = ACTIONS(1239), - [aux_sym_preproc_include_token1] = ACTIONS(1239), - [aux_sym_preproc_def_token1] = ACTIONS(1239), - [aux_sym_preproc_if_token1] = ACTIONS(1239), - [aux_sym_preproc_if_token2] = ACTIONS(1239), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1239), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1239), - [aux_sym_preproc_else_token1] = ACTIONS(1239), - [aux_sym_preproc_elif_token1] = ACTIONS(1239), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1239), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1239), - [sym_preproc_directive] = ACTIONS(1239), - [anon_sym_LPAREN2] = ACTIONS(1241), - [anon_sym_BANG] = ACTIONS(1241), - [anon_sym_TILDE] = ACTIONS(1241), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1241), - [anon_sym_SEMI] = ACTIONS(1241), - [anon_sym___extension__] = ACTIONS(1239), - [anon_sym_typedef] = ACTIONS(1239), - [anon_sym_extern] = ACTIONS(1239), - [anon_sym___attribute__] = ACTIONS(1239), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1241), - [anon_sym___declspec] = ACTIONS(1239), - [anon_sym___cdecl] = ACTIONS(1239), - [anon_sym___clrcall] = ACTIONS(1239), - [anon_sym___stdcall] = ACTIONS(1239), - [anon_sym___fastcall] = ACTIONS(1239), - [anon_sym___thiscall] = ACTIONS(1239), - [anon_sym___vectorcall] = ACTIONS(1239), - [anon_sym_LBRACE] = ACTIONS(1241), - [anon_sym_signed] = ACTIONS(1239), - [anon_sym_unsigned] = ACTIONS(1239), - [anon_sym_long] = ACTIONS(1239), - [anon_sym_short] = ACTIONS(1239), - [anon_sym_static] = ACTIONS(1239), - [anon_sym_auto] = ACTIONS(1239), - [anon_sym_register] = ACTIONS(1239), - [anon_sym_inline] = ACTIONS(1239), - [anon_sym___inline] = ACTIONS(1239), - [anon_sym___inline__] = ACTIONS(1239), - [anon_sym___forceinline] = ACTIONS(1239), - [anon_sym_thread_local] = ACTIONS(1239), - [anon_sym___thread] = ACTIONS(1239), - [anon_sym_const] = ACTIONS(1239), - [anon_sym_constexpr] = ACTIONS(1239), - [anon_sym_volatile] = ACTIONS(1239), - [anon_sym_restrict] = ACTIONS(1239), - [anon_sym___restrict__] = ACTIONS(1239), - [anon_sym__Atomic] = ACTIONS(1239), - [anon_sym__Noreturn] = ACTIONS(1239), - [anon_sym_noreturn] = ACTIONS(1239), - [anon_sym_alignas] = ACTIONS(1239), - [anon_sym__Alignas] = 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___try] = ACTIONS(1239), - [anon_sym___leave] = ACTIONS(1239), - [anon_sym_DASH_DASH] = ACTIONS(1241), - [anon_sym_PLUS_PLUS] = ACTIONS(1241), - [anon_sym_sizeof] = ACTIONS(1239), - [anon_sym___alignof__] = ACTIONS(1239), - [anon_sym___alignof] = ACTIONS(1239), - [anon_sym__alignof] = ACTIONS(1239), - [anon_sym_alignof] = ACTIONS(1239), - [anon_sym__Alignof] = ACTIONS(1239), - [anon_sym_offsetof] = ACTIONS(1239), - [anon_sym__Generic] = ACTIONS(1239), - [anon_sym_asm] = ACTIONS(1239), - [anon_sym___asm__] = ACTIONS(1239), - [sym_number_literal] = ACTIONS(1241), - [anon_sym_L_SQUOTE] = ACTIONS(1241), - [anon_sym_u_SQUOTE] = ACTIONS(1241), - [anon_sym_U_SQUOTE] = ACTIONS(1241), - [anon_sym_u8_SQUOTE] = ACTIONS(1241), - [anon_sym_SQUOTE] = ACTIONS(1241), - [anon_sym_L_DQUOTE] = ACTIONS(1241), - [anon_sym_u_DQUOTE] = ACTIONS(1241), - [anon_sym_U_DQUOTE] = ACTIONS(1241), - [anon_sym_u8_DQUOTE] = ACTIONS(1241), - [anon_sym_DQUOTE] = ACTIONS(1241), - [sym_true] = ACTIONS(1239), - [sym_false] = ACTIONS(1239), - [anon_sym_NULL] = ACTIONS(1239), - [anon_sym_nullptr] = ACTIONS(1239), - [sym_comment] = ACTIONS(3), - }, - [125] = { + [110] = { [sym_identifier] = ACTIONS(1243), [aux_sym_preproc_include_token1] = ACTIONS(1243), [aux_sym_preproc_def_token1] = ACTIONS(1243), @@ -29082,215 +27458,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1243), [sym_comment] = ACTIONS(3), }, - [126] = { - [sym_identifier] = ACTIONS(1169), - [aux_sym_preproc_include_token1] = ACTIONS(1169), - [aux_sym_preproc_def_token1] = ACTIONS(1169), - [aux_sym_preproc_if_token1] = ACTIONS(1169), - [aux_sym_preproc_if_token2] = ACTIONS(1169), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1169), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1169), - [aux_sym_preproc_else_token1] = ACTIONS(1169), - [aux_sym_preproc_elif_token1] = ACTIONS(1169), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1169), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1169), - [sym_preproc_directive] = ACTIONS(1169), - [anon_sym_LPAREN2] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1167), - [anon_sym_TILDE] = ACTIONS(1167), - [anon_sym_DASH] = ACTIONS(1169), - [anon_sym_PLUS] = ACTIONS(1169), - [anon_sym_STAR] = ACTIONS(1167), - [anon_sym_AMP] = ACTIONS(1167), - [anon_sym_SEMI] = ACTIONS(1167), - [anon_sym___extension__] = ACTIONS(1169), - [anon_sym_typedef] = ACTIONS(1169), - [anon_sym_extern] = ACTIONS(1169), - [anon_sym___attribute__] = ACTIONS(1169), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1167), - [anon_sym___declspec] = ACTIONS(1169), - [anon_sym___cdecl] = ACTIONS(1169), - [anon_sym___clrcall] = ACTIONS(1169), - [anon_sym___stdcall] = ACTIONS(1169), - [anon_sym___fastcall] = ACTIONS(1169), - [anon_sym___thiscall] = ACTIONS(1169), - [anon_sym___vectorcall] = ACTIONS(1169), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_signed] = ACTIONS(1169), - [anon_sym_unsigned] = ACTIONS(1169), - [anon_sym_long] = ACTIONS(1169), - [anon_sym_short] = ACTIONS(1169), - [anon_sym_static] = ACTIONS(1169), - [anon_sym_auto] = ACTIONS(1169), - [anon_sym_register] = ACTIONS(1169), - [anon_sym_inline] = ACTIONS(1169), - [anon_sym___inline] = ACTIONS(1169), - [anon_sym___inline__] = ACTIONS(1169), - [anon_sym___forceinline] = ACTIONS(1169), - [anon_sym_thread_local] = ACTIONS(1169), - [anon_sym___thread] = ACTIONS(1169), - [anon_sym_const] = ACTIONS(1169), - [anon_sym_constexpr] = ACTIONS(1169), - [anon_sym_volatile] = ACTIONS(1169), - [anon_sym_restrict] = ACTIONS(1169), - [anon_sym___restrict__] = ACTIONS(1169), - [anon_sym__Atomic] = ACTIONS(1169), - [anon_sym__Noreturn] = ACTIONS(1169), - [anon_sym_noreturn] = ACTIONS(1169), - [anon_sym_alignas] = ACTIONS(1169), - [anon_sym__Alignas] = ACTIONS(1169), - [sym_primitive_type] = ACTIONS(1169), - [anon_sym_enum] = ACTIONS(1169), - [anon_sym_struct] = ACTIONS(1169), - [anon_sym_union] = ACTIONS(1169), - [anon_sym_if] = ACTIONS(1169), - [anon_sym_else] = ACTIONS(1169), - [anon_sym_switch] = ACTIONS(1169), - [anon_sym_case] = ACTIONS(1169), - [anon_sym_default] = ACTIONS(1169), - [anon_sym_while] = ACTIONS(1169), - [anon_sym_do] = ACTIONS(1169), - [anon_sym_for] = ACTIONS(1169), - [anon_sym_return] = ACTIONS(1169), - [anon_sym_break] = ACTIONS(1169), - [anon_sym_continue] = ACTIONS(1169), - [anon_sym_goto] = ACTIONS(1169), - [anon_sym___try] = ACTIONS(1169), - [anon_sym___leave] = ACTIONS(1169), - [anon_sym_DASH_DASH] = ACTIONS(1167), - [anon_sym_PLUS_PLUS] = ACTIONS(1167), - [anon_sym_sizeof] = ACTIONS(1169), - [anon_sym___alignof__] = ACTIONS(1169), - [anon_sym___alignof] = ACTIONS(1169), - [anon_sym__alignof] = ACTIONS(1169), - [anon_sym_alignof] = ACTIONS(1169), - [anon_sym__Alignof] = ACTIONS(1169), - [anon_sym_offsetof] = ACTIONS(1169), - [anon_sym__Generic] = ACTIONS(1169), - [anon_sym_asm] = ACTIONS(1169), - [anon_sym___asm__] = ACTIONS(1169), - [sym_number_literal] = ACTIONS(1167), - [anon_sym_L_SQUOTE] = ACTIONS(1167), - [anon_sym_u_SQUOTE] = ACTIONS(1167), - [anon_sym_U_SQUOTE] = ACTIONS(1167), - [anon_sym_u8_SQUOTE] = ACTIONS(1167), - [anon_sym_SQUOTE] = ACTIONS(1167), - [anon_sym_L_DQUOTE] = ACTIONS(1167), - [anon_sym_u_DQUOTE] = ACTIONS(1167), - [anon_sym_U_DQUOTE] = ACTIONS(1167), - [anon_sym_u8_DQUOTE] = ACTIONS(1167), - [anon_sym_DQUOTE] = ACTIONS(1167), - [sym_true] = ACTIONS(1169), - [sym_false] = ACTIONS(1169), - [anon_sym_NULL] = ACTIONS(1169), - [anon_sym_nullptr] = ACTIONS(1169), - [sym_comment] = ACTIONS(3), - }, - [127] = { - [sym_identifier] = ACTIONS(1243), - [aux_sym_preproc_include_token1] = ACTIONS(1243), - [aux_sym_preproc_def_token1] = ACTIONS(1243), - [aux_sym_preproc_if_token1] = ACTIONS(1243), - [aux_sym_preproc_if_token2] = ACTIONS(1243), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1243), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1243), - [aux_sym_preproc_else_token1] = ACTIONS(1243), - [aux_sym_preproc_elif_token1] = ACTIONS(1243), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1243), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1243), - [sym_preproc_directive] = ACTIONS(1243), - [anon_sym_LPAREN2] = ACTIONS(1245), - [anon_sym_BANG] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1243), - [anon_sym_PLUS] = ACTIONS(1243), - [anon_sym_STAR] = ACTIONS(1245), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_SEMI] = ACTIONS(1245), - [anon_sym___extension__] = ACTIONS(1243), - [anon_sym_typedef] = ACTIONS(1243), - [anon_sym_extern] = ACTIONS(1243), - [anon_sym___attribute__] = ACTIONS(1243), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1245), - [anon_sym___declspec] = ACTIONS(1243), - [anon_sym___cdecl] = ACTIONS(1243), - [anon_sym___clrcall] = ACTIONS(1243), - [anon_sym___stdcall] = ACTIONS(1243), - [anon_sym___fastcall] = ACTIONS(1243), - [anon_sym___thiscall] = ACTIONS(1243), - [anon_sym___vectorcall] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_signed] = ACTIONS(1243), - [anon_sym_unsigned] = ACTIONS(1243), - [anon_sym_long] = ACTIONS(1243), - [anon_sym_short] = ACTIONS(1243), - [anon_sym_static] = ACTIONS(1243), - [anon_sym_auto] = ACTIONS(1243), - [anon_sym_register] = ACTIONS(1243), - [anon_sym_inline] = ACTIONS(1243), - [anon_sym___inline] = ACTIONS(1243), - [anon_sym___inline__] = ACTIONS(1243), - [anon_sym___forceinline] = ACTIONS(1243), - [anon_sym_thread_local] = ACTIONS(1243), - [anon_sym___thread] = ACTIONS(1243), - [anon_sym_const] = ACTIONS(1243), - [anon_sym_constexpr] = ACTIONS(1243), - [anon_sym_volatile] = ACTIONS(1243), - [anon_sym_restrict] = ACTIONS(1243), - [anon_sym___restrict__] = ACTIONS(1243), - [anon_sym__Atomic] = ACTIONS(1243), - [anon_sym__Noreturn] = ACTIONS(1243), - [anon_sym_noreturn] = ACTIONS(1243), - [anon_sym_alignas] = ACTIONS(1243), - [anon_sym__Alignas] = ACTIONS(1243), - [sym_primitive_type] = ACTIONS(1243), - [anon_sym_enum] = ACTIONS(1243), - [anon_sym_struct] = ACTIONS(1243), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1243), - [anon_sym_else] = ACTIONS(1243), - [anon_sym_switch] = ACTIONS(1243), - [anon_sym_case] = ACTIONS(1243), - [anon_sym_default] = ACTIONS(1243), - [anon_sym_while] = ACTIONS(1243), - [anon_sym_do] = ACTIONS(1243), - [anon_sym_for] = ACTIONS(1243), - [anon_sym_return] = ACTIONS(1243), - [anon_sym_break] = ACTIONS(1243), - [anon_sym_continue] = ACTIONS(1243), - [anon_sym_goto] = ACTIONS(1243), - [anon_sym___try] = ACTIONS(1243), - [anon_sym___leave] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1245), - [anon_sym_sizeof] = ACTIONS(1243), - [anon_sym___alignof__] = ACTIONS(1243), - [anon_sym___alignof] = ACTIONS(1243), - [anon_sym__alignof] = ACTIONS(1243), - [anon_sym_alignof] = ACTIONS(1243), - [anon_sym__Alignof] = ACTIONS(1243), - [anon_sym_offsetof] = ACTIONS(1243), - [anon_sym__Generic] = ACTIONS(1243), - [anon_sym_asm] = ACTIONS(1243), - [anon_sym___asm__] = ACTIONS(1243), - [sym_number_literal] = ACTIONS(1245), - [anon_sym_L_SQUOTE] = ACTIONS(1245), - [anon_sym_u_SQUOTE] = ACTIONS(1245), - [anon_sym_U_SQUOTE] = ACTIONS(1245), - [anon_sym_u8_SQUOTE] = ACTIONS(1245), - [anon_sym_SQUOTE] = ACTIONS(1245), - [anon_sym_L_DQUOTE] = ACTIONS(1245), - [anon_sym_u_DQUOTE] = ACTIONS(1245), - [anon_sym_U_DQUOTE] = ACTIONS(1245), - [anon_sym_u8_DQUOTE] = ACTIONS(1245), - [anon_sym_DQUOTE] = ACTIONS(1245), - [sym_true] = ACTIONS(1243), - [sym_false] = ACTIONS(1243), - [anon_sym_NULL] = ACTIONS(1243), - [anon_sym_nullptr] = ACTIONS(1243), + [111] = { + [sym_identifier] = ACTIONS(1129), + [aux_sym_preproc_include_token1] = ACTIONS(1129), + [aux_sym_preproc_def_token1] = ACTIONS(1129), + [aux_sym_preproc_if_token1] = ACTIONS(1129), + [aux_sym_preproc_if_token2] = ACTIONS(1129), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1129), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1129), + [aux_sym_preproc_else_token1] = ACTIONS(1129), + [aux_sym_preproc_elif_token1] = ACTIONS(1129), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1129), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1129), + [sym_preproc_directive] = ACTIONS(1129), + [anon_sym_LPAREN2] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_TILDE] = ACTIONS(1127), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_STAR] = ACTIONS(1127), + [anon_sym_AMP] = ACTIONS(1127), + [anon_sym_SEMI] = ACTIONS(1127), + [anon_sym___extension__] = ACTIONS(1129), + [anon_sym_typedef] = ACTIONS(1129), + [anon_sym_extern] = ACTIONS(1129), + [anon_sym___attribute__] = ACTIONS(1129), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1127), + [anon_sym___declspec] = ACTIONS(1129), + [anon_sym___cdecl] = ACTIONS(1129), + [anon_sym___clrcall] = ACTIONS(1129), + [anon_sym___stdcall] = ACTIONS(1129), + [anon_sym___fastcall] = ACTIONS(1129), + [anon_sym___thiscall] = ACTIONS(1129), + [anon_sym___vectorcall] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_signed] = ACTIONS(1129), + [anon_sym_unsigned] = ACTIONS(1129), + [anon_sym_long] = ACTIONS(1129), + [anon_sym_short] = ACTIONS(1129), + [anon_sym_static] = ACTIONS(1129), + [anon_sym_auto] = ACTIONS(1129), + [anon_sym_register] = ACTIONS(1129), + [anon_sym_inline] = ACTIONS(1129), + [anon_sym___inline] = ACTIONS(1129), + [anon_sym___inline__] = ACTIONS(1129), + [anon_sym___forceinline] = ACTIONS(1129), + [anon_sym_thread_local] = ACTIONS(1129), + [anon_sym___thread] = ACTIONS(1129), + [anon_sym_const] = ACTIONS(1129), + [anon_sym_constexpr] = ACTIONS(1129), + [anon_sym_volatile] = ACTIONS(1129), + [anon_sym_restrict] = ACTIONS(1129), + [anon_sym___restrict__] = ACTIONS(1129), + [anon_sym__Atomic] = ACTIONS(1129), + [anon_sym__Noreturn] = ACTIONS(1129), + [anon_sym_noreturn] = ACTIONS(1129), + [anon_sym_alignas] = ACTIONS(1129), + [anon_sym__Alignas] = ACTIONS(1129), + [sym_primitive_type] = ACTIONS(1129), + [anon_sym_enum] = ACTIONS(1129), + [anon_sym_struct] = ACTIONS(1129), + [anon_sym_union] = ACTIONS(1129), + [anon_sym_if] = ACTIONS(1129), + [anon_sym_else] = ACTIONS(1129), + [anon_sym_switch] = ACTIONS(1129), + [anon_sym_case] = ACTIONS(1129), + [anon_sym_default] = ACTIONS(1129), + [anon_sym_while] = ACTIONS(1129), + [anon_sym_do] = ACTIONS(1129), + [anon_sym_for] = ACTIONS(1129), + [anon_sym_return] = ACTIONS(1129), + [anon_sym_break] = ACTIONS(1129), + [anon_sym_continue] = ACTIONS(1129), + [anon_sym_goto] = ACTIONS(1129), + [anon_sym___try] = ACTIONS(1129), + [anon_sym___leave] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1127), + [anon_sym_PLUS_PLUS] = ACTIONS(1127), + [anon_sym_sizeof] = ACTIONS(1129), + [anon_sym___alignof__] = ACTIONS(1129), + [anon_sym___alignof] = ACTIONS(1129), + [anon_sym__alignof] = ACTIONS(1129), + [anon_sym_alignof] = ACTIONS(1129), + [anon_sym__Alignof] = ACTIONS(1129), + [anon_sym_offsetof] = ACTIONS(1129), + [anon_sym__Generic] = ACTIONS(1129), + [anon_sym_asm] = ACTIONS(1129), + [anon_sym___asm__] = ACTIONS(1129), + [sym_number_literal] = ACTIONS(1127), + [anon_sym_L_SQUOTE] = ACTIONS(1127), + [anon_sym_u_SQUOTE] = ACTIONS(1127), + [anon_sym_U_SQUOTE] = ACTIONS(1127), + [anon_sym_u8_SQUOTE] = ACTIONS(1127), + [anon_sym_SQUOTE] = ACTIONS(1127), + [anon_sym_L_DQUOTE] = ACTIONS(1127), + [anon_sym_u_DQUOTE] = ACTIONS(1127), + [anon_sym_U_DQUOTE] = ACTIONS(1127), + [anon_sym_u8_DQUOTE] = ACTIONS(1127), + [anon_sym_DQUOTE] = ACTIONS(1127), + [sym_true] = ACTIONS(1129), + [sym_false] = ACTIONS(1129), + [anon_sym_NULL] = ACTIONS(1129), + [anon_sym_nullptr] = ACTIONS(1129), [sym_comment] = ACTIONS(3), }, - [128] = { + [112] = { [sym_identifier] = ACTIONS(1247), [aux_sym_preproc_include_token1] = ACTIONS(1247), [aux_sym_preproc_def_token1] = ACTIONS(1247), @@ -29352,6 +27624,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1247), [anon_sym_union] = ACTIONS(1247), [anon_sym_if] = ACTIONS(1247), + [anon_sym_else] = ACTIONS(1247), [anon_sym_switch] = ACTIONS(1247), [anon_sym_case] = ACTIONS(1247), [anon_sym_default] = ACTIONS(1247), @@ -29393,7 +27666,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1247), [sym_comment] = ACTIONS(3), }, - [129] = { + [113] = { + [sym_identifier] = ACTIONS(1207), + [aux_sym_preproc_include_token1] = ACTIONS(1207), + [aux_sym_preproc_def_token1] = ACTIONS(1207), + [aux_sym_preproc_if_token1] = ACTIONS(1207), + [aux_sym_preproc_if_token2] = ACTIONS(1207), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1207), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1207), + [aux_sym_preproc_else_token1] = ACTIONS(1207), + [aux_sym_preproc_elif_token1] = ACTIONS(1207), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1207), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1207), + [sym_preproc_directive] = ACTIONS(1207), + [anon_sym_LPAREN2] = ACTIONS(1209), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_TILDE] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1207), + [anon_sym_PLUS] = ACTIONS(1207), + [anon_sym_STAR] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1209), + [anon_sym_SEMI] = ACTIONS(1209), + [anon_sym___extension__] = ACTIONS(1207), + [anon_sym_typedef] = ACTIONS(1207), + [anon_sym_extern] = ACTIONS(1207), + [anon_sym___attribute__] = ACTIONS(1207), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1209), + [anon_sym___declspec] = ACTIONS(1207), + [anon_sym___cdecl] = ACTIONS(1207), + [anon_sym___clrcall] = ACTIONS(1207), + [anon_sym___stdcall] = ACTIONS(1207), + [anon_sym___fastcall] = ACTIONS(1207), + [anon_sym___thiscall] = ACTIONS(1207), + [anon_sym___vectorcall] = ACTIONS(1207), + [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_signed] = ACTIONS(1207), + [anon_sym_unsigned] = ACTIONS(1207), + [anon_sym_long] = ACTIONS(1207), + [anon_sym_short] = ACTIONS(1207), + [anon_sym_static] = ACTIONS(1207), + [anon_sym_auto] = ACTIONS(1207), + [anon_sym_register] = ACTIONS(1207), + [anon_sym_inline] = ACTIONS(1207), + [anon_sym___inline] = ACTIONS(1207), + [anon_sym___inline__] = ACTIONS(1207), + [anon_sym___forceinline] = ACTIONS(1207), + [anon_sym_thread_local] = ACTIONS(1207), + [anon_sym___thread] = ACTIONS(1207), + [anon_sym_const] = ACTIONS(1207), + [anon_sym_constexpr] = ACTIONS(1207), + [anon_sym_volatile] = ACTIONS(1207), + [anon_sym_restrict] = ACTIONS(1207), + [anon_sym___restrict__] = ACTIONS(1207), + [anon_sym__Atomic] = ACTIONS(1207), + [anon_sym__Noreturn] = ACTIONS(1207), + [anon_sym_noreturn] = ACTIONS(1207), + [anon_sym_alignas] = ACTIONS(1207), + [anon_sym__Alignas] = ACTIONS(1207), + [sym_primitive_type] = ACTIONS(1207), + [anon_sym_enum] = ACTIONS(1207), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_union] = ACTIONS(1207), + [anon_sym_if] = ACTIONS(1207), + [anon_sym_else] = ACTIONS(1207), + [anon_sym_switch] = ACTIONS(1207), + [anon_sym_case] = ACTIONS(1207), + [anon_sym_default] = ACTIONS(1207), + [anon_sym_while] = ACTIONS(1207), + [anon_sym_do] = ACTIONS(1207), + [anon_sym_for] = ACTIONS(1207), + [anon_sym_return] = ACTIONS(1207), + [anon_sym_break] = ACTIONS(1207), + [anon_sym_continue] = ACTIONS(1207), + [anon_sym_goto] = ACTIONS(1207), + [anon_sym___try] = ACTIONS(1207), + [anon_sym___leave] = ACTIONS(1207), + [anon_sym_DASH_DASH] = ACTIONS(1209), + [anon_sym_PLUS_PLUS] = ACTIONS(1209), + [anon_sym_sizeof] = ACTIONS(1207), + [anon_sym___alignof__] = ACTIONS(1207), + [anon_sym___alignof] = ACTIONS(1207), + [anon_sym__alignof] = ACTIONS(1207), + [anon_sym_alignof] = ACTIONS(1207), + [anon_sym__Alignof] = ACTIONS(1207), + [anon_sym_offsetof] = ACTIONS(1207), + [anon_sym__Generic] = ACTIONS(1207), + [anon_sym_asm] = ACTIONS(1207), + [anon_sym___asm__] = ACTIONS(1207), + [sym_number_literal] = ACTIONS(1209), + [anon_sym_L_SQUOTE] = ACTIONS(1209), + [anon_sym_u_SQUOTE] = ACTIONS(1209), + [anon_sym_U_SQUOTE] = ACTIONS(1209), + [anon_sym_u8_SQUOTE] = ACTIONS(1209), + [anon_sym_SQUOTE] = ACTIONS(1209), + [anon_sym_L_DQUOTE] = ACTIONS(1209), + [anon_sym_u_DQUOTE] = ACTIONS(1209), + [anon_sym_U_DQUOTE] = ACTIONS(1209), + [anon_sym_u8_DQUOTE] = ACTIONS(1209), + [anon_sym_DQUOTE] = ACTIONS(1209), + [sym_true] = ACTIONS(1207), + [sym_false] = ACTIONS(1207), + [anon_sym_NULL] = ACTIONS(1207), + [anon_sym_nullptr] = ACTIONS(1207), + [sym_comment] = ACTIONS(3), + }, + [114] = { [sym_identifier] = ACTIONS(1251), [aux_sym_preproc_include_token1] = ACTIONS(1251), [aux_sym_preproc_def_token1] = ACTIONS(1251), @@ -29496,7 +27873,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1251), [sym_comment] = ACTIONS(3), }, - [130] = { + [115] = { [sym_identifier] = ACTIONS(1255), [aux_sym_preproc_include_token1] = ACTIONS(1255), [aux_sym_preproc_def_token1] = ACTIONS(1255), @@ -29599,7 +27976,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1255), [sym_comment] = ACTIONS(3), }, - [131] = { + [116] = { [sym_identifier] = ACTIONS(1259), [aux_sym_preproc_include_token1] = ACTIONS(1259), [aux_sym_preproc_def_token1] = ACTIONS(1259), @@ -29702,7 +28079,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1259), [sym_comment] = ACTIONS(3), }, - [132] = { + [117] = { [sym_identifier] = ACTIONS(1263), [aux_sym_preproc_include_token1] = ACTIONS(1263), [aux_sym_preproc_def_token1] = ACTIONS(1263), @@ -29805,7 +28182,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1263), [sym_comment] = ACTIONS(3), }, - [133] = { + [118] = { [sym_identifier] = ACTIONS(1267), [aux_sym_preproc_include_token1] = ACTIONS(1267), [aux_sym_preproc_def_token1] = ACTIONS(1267), @@ -29908,7 +28285,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1267), [sym_comment] = ACTIONS(3), }, - [134] = { + [119] = { [sym_identifier] = ACTIONS(1271), [aux_sym_preproc_include_token1] = ACTIONS(1271), [aux_sym_preproc_def_token1] = ACTIONS(1271), @@ -30011,7 +28388,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1271), [sym_comment] = ACTIONS(3), }, - [135] = { + [120] = { [sym_identifier] = ACTIONS(1275), [aux_sym_preproc_include_token1] = ACTIONS(1275), [aux_sym_preproc_def_token1] = ACTIONS(1275), @@ -30114,7 +28491,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1275), [sym_comment] = ACTIONS(3), }, - [136] = { + [121] = { [sym_identifier] = ACTIONS(1279), [aux_sym_preproc_include_token1] = ACTIONS(1279), [aux_sym_preproc_def_token1] = ACTIONS(1279), @@ -30217,7 +28594,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1279), [sym_comment] = ACTIONS(3), }, - [137] = { + [122] = { [sym_identifier] = ACTIONS(1283), [aux_sym_preproc_include_token1] = ACTIONS(1283), [aux_sym_preproc_def_token1] = ACTIONS(1283), @@ -30320,7 +28697,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1283), [sym_comment] = ACTIONS(3), }, - [138] = { + [123] = { [sym_identifier] = ACTIONS(1287), [aux_sym_preproc_include_token1] = ACTIONS(1287), [aux_sym_preproc_def_token1] = ACTIONS(1287), @@ -30423,7 +28800,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1287), [sym_comment] = ACTIONS(3), }, - [139] = { + [124] = { [sym_identifier] = ACTIONS(1291), [aux_sym_preproc_include_token1] = ACTIONS(1291), [aux_sym_preproc_def_token1] = ACTIONS(1291), @@ -30526,7 +28903,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1291), [sym_comment] = ACTIONS(3), }, - [140] = { + [125] = { [sym_identifier] = ACTIONS(1295), [aux_sym_preproc_include_token1] = ACTIONS(1295), [aux_sym_preproc_def_token1] = ACTIONS(1295), @@ -30629,7 +29006,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1295), [sym_comment] = ACTIONS(3), }, - [141] = { + [126] = { [sym_identifier] = ACTIONS(1299), [aux_sym_preproc_include_token1] = ACTIONS(1299), [aux_sym_preproc_def_token1] = ACTIONS(1299), @@ -30732,7 +29109,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1299), [sym_comment] = ACTIONS(3), }, - [142] = { + [127] = { [sym_identifier] = ACTIONS(1303), [aux_sym_preproc_include_token1] = ACTIONS(1303), [aux_sym_preproc_def_token1] = ACTIONS(1303), @@ -30835,7 +29212,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1303), [sym_comment] = ACTIONS(3), }, - [143] = { + [128] = { [sym_identifier] = ACTIONS(1307), [aux_sym_preproc_include_token1] = ACTIONS(1307), [aux_sym_preproc_def_token1] = ACTIONS(1307), @@ -30938,7 +29315,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1307), [sym_comment] = ACTIONS(3), }, - [144] = { + [129] = { [sym_identifier] = ACTIONS(1311), [aux_sym_preproc_include_token1] = ACTIONS(1311), [aux_sym_preproc_def_token1] = ACTIONS(1311), @@ -31041,7 +29418,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1311), [sym_comment] = ACTIONS(3), }, - [145] = { + [130] = { [sym_identifier] = ACTIONS(1315), [aux_sym_preproc_include_token1] = ACTIONS(1315), [aux_sym_preproc_def_token1] = ACTIONS(1315), @@ -31144,7 +29521,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1315), [sym_comment] = ACTIONS(3), }, - [146] = { + [131] = { [sym_identifier] = ACTIONS(1319), [aux_sym_preproc_include_token1] = ACTIONS(1319), [aux_sym_preproc_def_token1] = ACTIONS(1319), @@ -31247,7 +29624,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1319), [sym_comment] = ACTIONS(3), }, - [147] = { + [132] = { [sym_identifier] = ACTIONS(1323), [aux_sym_preproc_include_token1] = ACTIONS(1323), [aux_sym_preproc_def_token1] = ACTIONS(1323), @@ -31350,7 +29727,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1323), [sym_comment] = ACTIONS(3), }, - [148] = { + [133] = { [sym_identifier] = ACTIONS(1327), [aux_sym_preproc_include_token1] = ACTIONS(1327), [aux_sym_preproc_def_token1] = ACTIONS(1327), @@ -31453,7 +29830,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1327), [sym_comment] = ACTIONS(3), }, - [149] = { + [134] = { [sym_identifier] = ACTIONS(1331), [aux_sym_preproc_include_token1] = ACTIONS(1331), [aux_sym_preproc_def_token1] = ACTIONS(1331), @@ -31556,7 +29933,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1331), [sym_comment] = ACTIONS(3), }, - [150] = { + [135] = { [sym_identifier] = ACTIONS(1335), [aux_sym_preproc_include_token1] = ACTIONS(1335), [aux_sym_preproc_def_token1] = ACTIONS(1335), @@ -31659,7 +30036,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1335), [sym_comment] = ACTIONS(3), }, - [151] = { + [136] = { [sym_identifier] = ACTIONS(1339), [aux_sym_preproc_include_token1] = ACTIONS(1339), [aux_sym_preproc_def_token1] = ACTIONS(1339), @@ -31762,7 +30139,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1339), [sym_comment] = ACTIONS(3), }, - [152] = { + [137] = { [sym_identifier] = ACTIONS(1343), [aux_sym_preproc_include_token1] = ACTIONS(1343), [aux_sym_preproc_def_token1] = ACTIONS(1343), @@ -31865,7 +30242,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1343), [sym_comment] = ACTIONS(3), }, - [153] = { + [138] = { [sym_identifier] = ACTIONS(1347), [aux_sym_preproc_include_token1] = ACTIONS(1347), [aux_sym_preproc_def_token1] = ACTIONS(1347), @@ -31968,7 +30345,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1347), [sym_comment] = ACTIONS(3), }, - [154] = { + [139] = { [sym_identifier] = ACTIONS(1351), [aux_sym_preproc_include_token1] = ACTIONS(1351), [aux_sym_preproc_def_token1] = ACTIONS(1351), @@ -32071,7 +30448,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1351), [sym_comment] = ACTIONS(3), }, - [155] = { + [140] = { [sym_identifier] = ACTIONS(1355), [aux_sym_preproc_include_token1] = ACTIONS(1355), [aux_sym_preproc_def_token1] = ACTIONS(1355), @@ -32084,19 +30461,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_elifdef_token1] = ACTIONS(1355), [aux_sym_preproc_elifdef_token2] = ACTIONS(1355), [sym_preproc_directive] = ACTIONS(1355), - [anon_sym_LPAREN2] = ACTIONS(1357), - [anon_sym_BANG] = ACTIONS(1357), - [anon_sym_TILDE] = ACTIONS(1357), + [anon_sym_LPAREN2] = ACTIONS(1358), + [anon_sym_BANG] = ACTIONS(1358), + [anon_sym_TILDE] = ACTIONS(1358), [anon_sym_DASH] = ACTIONS(1355), [anon_sym_PLUS] = ACTIONS(1355), - [anon_sym_STAR] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(1357), - [anon_sym_SEMI] = ACTIONS(1357), + [anon_sym_STAR] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_SEMI] = ACTIONS(1358), [anon_sym___extension__] = ACTIONS(1355), [anon_sym_typedef] = ACTIONS(1355), [anon_sym_extern] = ACTIONS(1355), [anon_sym___attribute__] = ACTIONS(1355), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1357), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1358), [anon_sym___declspec] = ACTIONS(1355), [anon_sym___cdecl] = ACTIONS(1355), [anon_sym___clrcall] = ACTIONS(1355), @@ -32104,7 +30481,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(1355), [anon_sym___thiscall] = ACTIONS(1355), [anon_sym___vectorcall] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(1358), [anon_sym_signed] = ACTIONS(1355), [anon_sym_unsigned] = ACTIONS(1355), [anon_sym_long] = ACTIONS(1355), @@ -32145,8 +30522,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(1355), [anon_sym___try] = ACTIONS(1355), [anon_sym___leave] = ACTIONS(1355), - [anon_sym_DASH_DASH] = ACTIONS(1357), - [anon_sym_PLUS_PLUS] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1358), + [anon_sym_PLUS_PLUS] = ACTIONS(1358), [anon_sym_sizeof] = ACTIONS(1355), [anon_sym___alignof__] = ACTIONS(1355), [anon_sym___alignof] = ACTIONS(1355), @@ -32157,25 +30534,231 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(1355), [anon_sym_asm] = ACTIONS(1355), [anon_sym___asm__] = ACTIONS(1355), - [sym_number_literal] = ACTIONS(1357), - [anon_sym_L_SQUOTE] = ACTIONS(1357), - [anon_sym_u_SQUOTE] = ACTIONS(1357), - [anon_sym_U_SQUOTE] = ACTIONS(1357), - [anon_sym_u8_SQUOTE] = ACTIONS(1357), - [anon_sym_SQUOTE] = ACTIONS(1357), - [anon_sym_L_DQUOTE] = ACTIONS(1357), - [anon_sym_u_DQUOTE] = ACTIONS(1357), - [anon_sym_U_DQUOTE] = ACTIONS(1357), - [anon_sym_u8_DQUOTE] = ACTIONS(1357), - [anon_sym_DQUOTE] = ACTIONS(1357), + [sym_number_literal] = ACTIONS(1358), + [anon_sym_L_SQUOTE] = ACTIONS(1358), + [anon_sym_u_SQUOTE] = ACTIONS(1358), + [anon_sym_U_SQUOTE] = ACTIONS(1358), + [anon_sym_u8_SQUOTE] = ACTIONS(1358), + [anon_sym_SQUOTE] = ACTIONS(1358), + [anon_sym_L_DQUOTE] = ACTIONS(1358), + [anon_sym_u_DQUOTE] = ACTIONS(1358), + [anon_sym_U_DQUOTE] = ACTIONS(1358), + [anon_sym_u8_DQUOTE] = ACTIONS(1358), + [anon_sym_DQUOTE] = ACTIONS(1358), [sym_true] = ACTIONS(1355), [sym_false] = ACTIONS(1355), [anon_sym_NULL] = ACTIONS(1355), [anon_sym_nullptr] = ACTIONS(1355), [sym_comment] = ACTIONS(3), }, - [156] = { - [sym_else_clause] = STATE(276), + [141] = { + [sym_identifier] = ACTIONS(1361), + [aux_sym_preproc_include_token1] = ACTIONS(1361), + [aux_sym_preproc_def_token1] = ACTIONS(1361), + [aux_sym_preproc_if_token1] = ACTIONS(1361), + [aux_sym_preproc_if_token2] = ACTIONS(1361), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1361), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1361), + [aux_sym_preproc_else_token1] = ACTIONS(1361), + [aux_sym_preproc_elif_token1] = ACTIONS(1361), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1361), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1361), + [sym_preproc_directive] = ACTIONS(1361), + [anon_sym_LPAREN2] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_TILDE] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1361), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_AMP] = ACTIONS(1363), + [anon_sym_SEMI] = ACTIONS(1363), + [anon_sym___extension__] = ACTIONS(1361), + [anon_sym_typedef] = ACTIONS(1361), + [anon_sym_extern] = ACTIONS(1361), + [anon_sym___attribute__] = ACTIONS(1361), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1363), + [anon_sym___declspec] = ACTIONS(1361), + [anon_sym___cdecl] = ACTIONS(1361), + [anon_sym___clrcall] = ACTIONS(1361), + [anon_sym___stdcall] = ACTIONS(1361), + [anon_sym___fastcall] = ACTIONS(1361), + [anon_sym___thiscall] = ACTIONS(1361), + [anon_sym___vectorcall] = ACTIONS(1361), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_signed] = ACTIONS(1361), + [anon_sym_unsigned] = ACTIONS(1361), + [anon_sym_long] = ACTIONS(1361), + [anon_sym_short] = ACTIONS(1361), + [anon_sym_static] = ACTIONS(1361), + [anon_sym_auto] = ACTIONS(1361), + [anon_sym_register] = ACTIONS(1361), + [anon_sym_inline] = ACTIONS(1361), + [anon_sym___inline] = ACTIONS(1361), + [anon_sym___inline__] = ACTIONS(1361), + [anon_sym___forceinline] = ACTIONS(1361), + [anon_sym_thread_local] = ACTIONS(1361), + [anon_sym___thread] = ACTIONS(1361), + [anon_sym_const] = ACTIONS(1361), + [anon_sym_constexpr] = ACTIONS(1361), + [anon_sym_volatile] = ACTIONS(1361), + [anon_sym_restrict] = ACTIONS(1361), + [anon_sym___restrict__] = ACTIONS(1361), + [anon_sym__Atomic] = ACTIONS(1361), + [anon_sym__Noreturn] = ACTIONS(1361), + [anon_sym_noreturn] = ACTIONS(1361), + [anon_sym_alignas] = ACTIONS(1361), + [anon_sym__Alignas] = ACTIONS(1361), + [sym_primitive_type] = ACTIONS(1361), + [anon_sym_enum] = ACTIONS(1361), + [anon_sym_struct] = ACTIONS(1361), + [anon_sym_union] = ACTIONS(1361), + [anon_sym_if] = ACTIONS(1361), + [anon_sym_switch] = ACTIONS(1361), + [anon_sym_case] = ACTIONS(1361), + [anon_sym_default] = ACTIONS(1361), + [anon_sym_while] = ACTIONS(1361), + [anon_sym_do] = ACTIONS(1361), + [anon_sym_for] = ACTIONS(1361), + [anon_sym_return] = ACTIONS(1361), + [anon_sym_break] = ACTIONS(1361), + [anon_sym_continue] = ACTIONS(1361), + [anon_sym_goto] = ACTIONS(1361), + [anon_sym___try] = ACTIONS(1361), + [anon_sym___leave] = ACTIONS(1361), + [anon_sym_DASH_DASH] = ACTIONS(1363), + [anon_sym_PLUS_PLUS] = ACTIONS(1363), + [anon_sym_sizeof] = ACTIONS(1361), + [anon_sym___alignof__] = ACTIONS(1361), + [anon_sym___alignof] = ACTIONS(1361), + [anon_sym__alignof] = ACTIONS(1361), + [anon_sym_alignof] = ACTIONS(1361), + [anon_sym__Alignof] = ACTIONS(1361), + [anon_sym_offsetof] = ACTIONS(1361), + [anon_sym__Generic] = ACTIONS(1361), + [anon_sym_asm] = ACTIONS(1361), + [anon_sym___asm__] = ACTIONS(1361), + [sym_number_literal] = ACTIONS(1363), + [anon_sym_L_SQUOTE] = ACTIONS(1363), + [anon_sym_u_SQUOTE] = ACTIONS(1363), + [anon_sym_U_SQUOTE] = ACTIONS(1363), + [anon_sym_u8_SQUOTE] = ACTIONS(1363), + [anon_sym_SQUOTE] = ACTIONS(1363), + [anon_sym_L_DQUOTE] = ACTIONS(1363), + [anon_sym_u_DQUOTE] = ACTIONS(1363), + [anon_sym_U_DQUOTE] = ACTIONS(1363), + [anon_sym_u8_DQUOTE] = ACTIONS(1363), + [anon_sym_DQUOTE] = ACTIONS(1363), + [sym_true] = ACTIONS(1361), + [sym_false] = ACTIONS(1361), + [anon_sym_NULL] = ACTIONS(1361), + [anon_sym_nullptr] = ACTIONS(1361), + [sym_comment] = ACTIONS(3), + }, + [142] = { + [sym_identifier] = ACTIONS(1365), + [aux_sym_preproc_include_token1] = ACTIONS(1365), + [aux_sym_preproc_def_token1] = ACTIONS(1365), + [aux_sym_preproc_if_token1] = ACTIONS(1365), + [aux_sym_preproc_if_token2] = ACTIONS(1365), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1365), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1365), + [aux_sym_preproc_else_token1] = ACTIONS(1365), + [aux_sym_preproc_elif_token1] = ACTIONS(1365), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1365), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1365), + [sym_preproc_directive] = ACTIONS(1365), + [anon_sym_LPAREN2] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1367), + [anon_sym_TILDE] = ACTIONS(1367), + [anon_sym_DASH] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1365), + [anon_sym_STAR] = ACTIONS(1367), + [anon_sym_AMP] = ACTIONS(1367), + [anon_sym_SEMI] = ACTIONS(1367), + [anon_sym___extension__] = ACTIONS(1365), + [anon_sym_typedef] = ACTIONS(1365), + [anon_sym_extern] = ACTIONS(1365), + [anon_sym___attribute__] = ACTIONS(1365), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1367), + [anon_sym___declspec] = ACTIONS(1365), + [anon_sym___cdecl] = ACTIONS(1365), + [anon_sym___clrcall] = ACTIONS(1365), + [anon_sym___stdcall] = ACTIONS(1365), + [anon_sym___fastcall] = ACTIONS(1365), + [anon_sym___thiscall] = ACTIONS(1365), + [anon_sym___vectorcall] = ACTIONS(1365), + [anon_sym_LBRACE] = ACTIONS(1367), + [anon_sym_signed] = ACTIONS(1365), + [anon_sym_unsigned] = ACTIONS(1365), + [anon_sym_long] = ACTIONS(1365), + [anon_sym_short] = ACTIONS(1365), + [anon_sym_static] = ACTIONS(1365), + [anon_sym_auto] = ACTIONS(1365), + [anon_sym_register] = ACTIONS(1365), + [anon_sym_inline] = ACTIONS(1365), + [anon_sym___inline] = ACTIONS(1365), + [anon_sym___inline__] = ACTIONS(1365), + [anon_sym___forceinline] = ACTIONS(1365), + [anon_sym_thread_local] = ACTIONS(1365), + [anon_sym___thread] = ACTIONS(1365), + [anon_sym_const] = ACTIONS(1365), + [anon_sym_constexpr] = ACTIONS(1365), + [anon_sym_volatile] = ACTIONS(1365), + [anon_sym_restrict] = ACTIONS(1365), + [anon_sym___restrict__] = ACTIONS(1365), + [anon_sym__Atomic] = ACTIONS(1365), + [anon_sym__Noreturn] = ACTIONS(1365), + [anon_sym_noreturn] = ACTIONS(1365), + [anon_sym_alignas] = ACTIONS(1365), + [anon_sym__Alignas] = ACTIONS(1365), + [sym_primitive_type] = ACTIONS(1365), + [anon_sym_enum] = ACTIONS(1365), + [anon_sym_struct] = ACTIONS(1365), + [anon_sym_union] = ACTIONS(1365), + [anon_sym_if] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1365), + [anon_sym_case] = ACTIONS(1365), + [anon_sym_default] = ACTIONS(1365), + [anon_sym_while] = ACTIONS(1365), + [anon_sym_do] = ACTIONS(1365), + [anon_sym_for] = ACTIONS(1365), + [anon_sym_return] = ACTIONS(1365), + [anon_sym_break] = ACTIONS(1365), + [anon_sym_continue] = ACTIONS(1365), + [anon_sym_goto] = ACTIONS(1365), + [anon_sym___try] = ACTIONS(1365), + [anon_sym___leave] = ACTIONS(1365), + [anon_sym_DASH_DASH] = ACTIONS(1367), + [anon_sym_PLUS_PLUS] = ACTIONS(1367), + [anon_sym_sizeof] = ACTIONS(1365), + [anon_sym___alignof__] = ACTIONS(1365), + [anon_sym___alignof] = ACTIONS(1365), + [anon_sym__alignof] = ACTIONS(1365), + [anon_sym_alignof] = ACTIONS(1365), + [anon_sym__Alignof] = ACTIONS(1365), + [anon_sym_offsetof] = ACTIONS(1365), + [anon_sym__Generic] = ACTIONS(1365), + [anon_sym_asm] = ACTIONS(1365), + [anon_sym___asm__] = ACTIONS(1365), + [sym_number_literal] = ACTIONS(1367), + [anon_sym_L_SQUOTE] = ACTIONS(1367), + [anon_sym_u_SQUOTE] = ACTIONS(1367), + [anon_sym_U_SQUOTE] = ACTIONS(1367), + [anon_sym_u8_SQUOTE] = ACTIONS(1367), + [anon_sym_SQUOTE] = ACTIONS(1367), + [anon_sym_L_DQUOTE] = ACTIONS(1367), + [anon_sym_u_DQUOTE] = ACTIONS(1367), + [anon_sym_U_DQUOTE] = ACTIONS(1367), + [anon_sym_u8_DQUOTE] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1367), + [sym_true] = ACTIONS(1365), + [sym_false] = ACTIONS(1365), + [anon_sym_NULL] = ACTIONS(1365), + [anon_sym_nullptr] = ACTIONS(1365), + [sym_comment] = ACTIONS(3), + }, + [143] = { + [sym_else_clause] = STATE(224), [sym_identifier] = ACTIONS(1117), [aux_sym_preproc_include_token1] = ACTIONS(1117), [aux_sym_preproc_def_token1] = ACTIONS(1117), @@ -32233,7 +30816,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1117), [anon_sym_union] = ACTIONS(1117), [anon_sym_if] = ACTIONS(1117), - [anon_sym_else] = ACTIONS(1359), + [anon_sym_else] = ACTIONS(1369), [anon_sym_switch] = ACTIONS(1117), [anon_sym_case] = ACTIONS(1117), [anon_sym_default] = ACTIONS(1117), @@ -32275,8 +30858,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1117), [sym_comment] = ACTIONS(3), }, - [157] = { - [sym_else_clause] = STATE(241), + [144] = { + [sym_else_clause] = STATE(211), [sym_identifier] = ACTIONS(1117), [aux_sym_preproc_include_token1] = ACTIONS(1117), [aux_sym_preproc_def_token1] = ACTIONS(1117), @@ -32334,7 +30917,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1117), [anon_sym_union] = ACTIONS(1117), [anon_sym_if] = ACTIONS(1117), - [anon_sym_else] = ACTIONS(1361), + [anon_sym_else] = ACTIONS(1371), [anon_sym_switch] = ACTIONS(1117), [anon_sym_case] = ACTIONS(1117), [anon_sym_default] = ACTIONS(1117), @@ -32376,8 +30959,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1117), [sym_comment] = ACTIONS(3), }, - [158] = { - [sym_else_clause] = STATE(306), + [145] = { + [sym_else_clause] = STATE(157), [ts_builtin_sym_end] = ACTIONS(1119), [sym_identifier] = ACTIONS(1117), [aux_sym_preproc_include_token1] = ACTIONS(1117), @@ -32435,7 +31018,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1117), [anon_sym_union] = ACTIONS(1117), [anon_sym_if] = ACTIONS(1117), - [anon_sym_else] = ACTIONS(1363), + [anon_sym_else] = ACTIONS(1373), [anon_sym_switch] = ACTIONS(1117), [anon_sym_case] = ACTIONS(1117), [anon_sym_default] = ACTIONS(1117), @@ -32477,679 +31060,579 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1117), [sym_comment] = ACTIONS(3), }, - [159] = { - [ts_builtin_sym_end] = ACTIONS(1125), - [sym_identifier] = ACTIONS(1123), - [aux_sym_preproc_include_token1] = ACTIONS(1123), - [aux_sym_preproc_def_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), - [sym_preproc_directive] = ACTIONS(1123), - [anon_sym_LPAREN2] = ACTIONS(1125), - [anon_sym_BANG] = ACTIONS(1125), - [anon_sym_TILDE] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym___extension__] = ACTIONS(1123), - [anon_sym_typedef] = ACTIONS(1123), - [anon_sym_extern] = ACTIONS(1123), - [anon_sym___attribute__] = ACTIONS(1123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), - [anon_sym___declspec] = ACTIONS(1123), - [anon_sym___cdecl] = ACTIONS(1123), - [anon_sym___clrcall] = ACTIONS(1123), - [anon_sym___stdcall] = ACTIONS(1123), - [anon_sym___fastcall] = ACTIONS(1123), - [anon_sym___thiscall] = ACTIONS(1123), - [anon_sym___vectorcall] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_signed] = ACTIONS(1123), - [anon_sym_unsigned] = ACTIONS(1123), - [anon_sym_long] = ACTIONS(1123), - [anon_sym_short] = ACTIONS(1123), - [anon_sym_static] = ACTIONS(1123), - [anon_sym_auto] = ACTIONS(1123), - [anon_sym_register] = ACTIONS(1123), - [anon_sym_inline] = ACTIONS(1123), - [anon_sym___inline] = ACTIONS(1123), - [anon_sym___inline__] = ACTIONS(1123), - [anon_sym___forceinline] = ACTIONS(1123), - [anon_sym_thread_local] = ACTIONS(1123), - [anon_sym___thread] = ACTIONS(1123), - [anon_sym_const] = ACTIONS(1123), - [anon_sym_constexpr] = ACTIONS(1123), - [anon_sym_volatile] = ACTIONS(1123), - [anon_sym_restrict] = ACTIONS(1123), - [anon_sym___restrict__] = ACTIONS(1123), - [anon_sym__Atomic] = ACTIONS(1123), - [anon_sym__Noreturn] = ACTIONS(1123), - [anon_sym_noreturn] = ACTIONS(1123), - [anon_sym_alignas] = ACTIONS(1123), - [anon_sym__Alignas] = ACTIONS(1123), - [sym_primitive_type] = ACTIONS(1123), - [anon_sym_enum] = ACTIONS(1123), - [anon_sym_struct] = ACTIONS(1123), - [anon_sym_union] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1123), - [anon_sym_else] = ACTIONS(1123), - [anon_sym_switch] = ACTIONS(1123), - [anon_sym_case] = ACTIONS(1123), - [anon_sym_default] = ACTIONS(1123), - [anon_sym_while] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(1123), - [anon_sym_for] = ACTIONS(1123), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_break] = ACTIONS(1123), - [anon_sym_continue] = ACTIONS(1123), - [anon_sym_goto] = ACTIONS(1123), - [anon_sym___try] = ACTIONS(1123), - [anon_sym___leave] = ACTIONS(1123), - [anon_sym_DASH_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1125), - [anon_sym_sizeof] = ACTIONS(1123), - [anon_sym___alignof__] = ACTIONS(1123), - [anon_sym___alignof] = ACTIONS(1123), - [anon_sym__alignof] = ACTIONS(1123), - [anon_sym_alignof] = ACTIONS(1123), - [anon_sym__Alignof] = ACTIONS(1123), - [anon_sym_offsetof] = ACTIONS(1123), - [anon_sym__Generic] = ACTIONS(1123), - [anon_sym_asm] = ACTIONS(1123), - [anon_sym___asm__] = ACTIONS(1123), - [sym_number_literal] = ACTIONS(1125), - [anon_sym_L_SQUOTE] = ACTIONS(1125), - [anon_sym_u_SQUOTE] = ACTIONS(1125), - [anon_sym_U_SQUOTE] = ACTIONS(1125), - [anon_sym_u8_SQUOTE] = ACTIONS(1125), - [anon_sym_SQUOTE] = ACTIONS(1125), - [anon_sym_L_DQUOTE] = ACTIONS(1125), - [anon_sym_u_DQUOTE] = ACTIONS(1125), - [anon_sym_U_DQUOTE] = ACTIONS(1125), - [anon_sym_u8_DQUOTE] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(1125), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [anon_sym_NULL] = ACTIONS(1123), - [anon_sym_nullptr] = ACTIONS(1123), - [sym_comment] = ACTIONS(3), - }, - [160] = { - [sym_identifier] = ACTIONS(1239), - [aux_sym_preproc_include_token1] = ACTIONS(1239), - [aux_sym_preproc_def_token1] = ACTIONS(1239), - [aux_sym_preproc_if_token1] = ACTIONS(1239), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1239), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1239), - [sym_preproc_directive] = ACTIONS(1239), - [anon_sym_LPAREN2] = ACTIONS(1241), - [anon_sym_BANG] = ACTIONS(1241), - [anon_sym_TILDE] = ACTIONS(1241), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1241), - [anon_sym_SEMI] = ACTIONS(1241), - [anon_sym___extension__] = ACTIONS(1239), - [anon_sym_typedef] = ACTIONS(1239), - [anon_sym_extern] = ACTIONS(1239), - [anon_sym___attribute__] = ACTIONS(1239), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1241), - [anon_sym___declspec] = ACTIONS(1239), - [anon_sym___cdecl] = ACTIONS(1239), - [anon_sym___clrcall] = ACTIONS(1239), - [anon_sym___stdcall] = ACTIONS(1239), - [anon_sym___fastcall] = ACTIONS(1239), - [anon_sym___thiscall] = ACTIONS(1239), - [anon_sym___vectorcall] = ACTIONS(1239), - [anon_sym_LBRACE] = ACTIONS(1241), - [anon_sym_RBRACE] = ACTIONS(1241), - [anon_sym_signed] = ACTIONS(1239), - [anon_sym_unsigned] = ACTIONS(1239), - [anon_sym_long] = ACTIONS(1239), - [anon_sym_short] = ACTIONS(1239), - [anon_sym_static] = ACTIONS(1239), - [anon_sym_auto] = ACTIONS(1239), - [anon_sym_register] = ACTIONS(1239), - [anon_sym_inline] = ACTIONS(1239), - [anon_sym___inline] = ACTIONS(1239), - [anon_sym___inline__] = ACTIONS(1239), - [anon_sym___forceinline] = ACTIONS(1239), - [anon_sym_thread_local] = ACTIONS(1239), - [anon_sym___thread] = ACTIONS(1239), - [anon_sym_const] = ACTIONS(1239), - [anon_sym_constexpr] = ACTIONS(1239), - [anon_sym_volatile] = ACTIONS(1239), - [anon_sym_restrict] = ACTIONS(1239), - [anon_sym___restrict__] = ACTIONS(1239), - [anon_sym__Atomic] = ACTIONS(1239), - [anon_sym__Noreturn] = ACTIONS(1239), - [anon_sym_noreturn] = ACTIONS(1239), - [anon_sym_alignas] = ACTIONS(1239), - [anon_sym__Alignas] = 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___try] = ACTIONS(1239), - [anon_sym___leave] = ACTIONS(1239), - [anon_sym_DASH_DASH] = ACTIONS(1241), - [anon_sym_PLUS_PLUS] = ACTIONS(1241), - [anon_sym_sizeof] = ACTIONS(1239), - [anon_sym___alignof__] = ACTIONS(1239), - [anon_sym___alignof] = ACTIONS(1239), - [anon_sym__alignof] = ACTIONS(1239), - [anon_sym_alignof] = ACTIONS(1239), - [anon_sym__Alignof] = ACTIONS(1239), - [anon_sym_offsetof] = ACTIONS(1239), - [anon_sym__Generic] = ACTIONS(1239), - [anon_sym_asm] = ACTIONS(1239), - [anon_sym___asm__] = ACTIONS(1239), - [sym_number_literal] = ACTIONS(1241), - [anon_sym_L_SQUOTE] = ACTIONS(1241), - [anon_sym_u_SQUOTE] = ACTIONS(1241), - [anon_sym_U_SQUOTE] = ACTIONS(1241), - [anon_sym_u8_SQUOTE] = ACTIONS(1241), - [anon_sym_SQUOTE] = ACTIONS(1241), - [anon_sym_L_DQUOTE] = ACTIONS(1241), - [anon_sym_u_DQUOTE] = ACTIONS(1241), - [anon_sym_U_DQUOTE] = ACTIONS(1241), - [anon_sym_u8_DQUOTE] = ACTIONS(1241), - [anon_sym_DQUOTE] = ACTIONS(1241), - [sym_true] = ACTIONS(1239), - [sym_false] = ACTIONS(1239), - [anon_sym_NULL] = ACTIONS(1239), - [anon_sym_nullptr] = ACTIONS(1239), + [146] = { + [ts_builtin_sym_end] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1163), + [aux_sym_preproc_include_token1] = ACTIONS(1163), + [aux_sym_preproc_def_token1] = ACTIONS(1163), + [aux_sym_preproc_if_token1] = ACTIONS(1163), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1163), + [sym_preproc_directive] = ACTIONS(1163), + [anon_sym_LPAREN2] = ACTIONS(1165), + [anon_sym_BANG] = ACTIONS(1165), + [anon_sym_TILDE] = ACTIONS(1165), + [anon_sym_DASH] = ACTIONS(1163), + [anon_sym_PLUS] = ACTIONS(1163), + [anon_sym_STAR] = ACTIONS(1165), + [anon_sym_AMP] = ACTIONS(1165), + [anon_sym_SEMI] = ACTIONS(1165), + [anon_sym___extension__] = ACTIONS(1163), + [anon_sym_typedef] = ACTIONS(1163), + [anon_sym_extern] = ACTIONS(1163), + [anon_sym___attribute__] = ACTIONS(1163), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1165), + [anon_sym___declspec] = ACTIONS(1163), + [anon_sym___cdecl] = ACTIONS(1163), + [anon_sym___clrcall] = ACTIONS(1163), + [anon_sym___stdcall] = ACTIONS(1163), + [anon_sym___fastcall] = ACTIONS(1163), + [anon_sym___thiscall] = ACTIONS(1163), + [anon_sym___vectorcall] = ACTIONS(1163), + [anon_sym_LBRACE] = ACTIONS(1165), + [anon_sym_signed] = ACTIONS(1163), + [anon_sym_unsigned] = ACTIONS(1163), + [anon_sym_long] = ACTIONS(1163), + [anon_sym_short] = ACTIONS(1163), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_auto] = ACTIONS(1163), + [anon_sym_register] = ACTIONS(1163), + [anon_sym_inline] = ACTIONS(1163), + [anon_sym___inline] = ACTIONS(1163), + [anon_sym___inline__] = ACTIONS(1163), + [anon_sym___forceinline] = ACTIONS(1163), + [anon_sym_thread_local] = ACTIONS(1163), + [anon_sym___thread] = ACTIONS(1163), + [anon_sym_const] = ACTIONS(1163), + [anon_sym_constexpr] = ACTIONS(1163), + [anon_sym_volatile] = ACTIONS(1163), + [anon_sym_restrict] = ACTIONS(1163), + [anon_sym___restrict__] = ACTIONS(1163), + [anon_sym__Atomic] = ACTIONS(1163), + [anon_sym__Noreturn] = ACTIONS(1163), + [anon_sym_noreturn] = ACTIONS(1163), + [anon_sym_alignas] = ACTIONS(1163), + [anon_sym__Alignas] = ACTIONS(1163), + [sym_primitive_type] = ACTIONS(1163), + [anon_sym_enum] = ACTIONS(1163), + [anon_sym_struct] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1163), + [anon_sym_if] = ACTIONS(1163), + [anon_sym_else] = ACTIONS(1163), + [anon_sym_switch] = ACTIONS(1163), + [anon_sym_case] = ACTIONS(1163), + [anon_sym_default] = ACTIONS(1163), + [anon_sym_while] = ACTIONS(1163), + [anon_sym_do] = ACTIONS(1163), + [anon_sym_for] = ACTIONS(1163), + [anon_sym_return] = ACTIONS(1163), + [anon_sym_break] = ACTIONS(1163), + [anon_sym_continue] = ACTIONS(1163), + [anon_sym_goto] = ACTIONS(1163), + [anon_sym___try] = ACTIONS(1163), + [anon_sym___leave] = ACTIONS(1163), + [anon_sym_DASH_DASH] = ACTIONS(1165), + [anon_sym_PLUS_PLUS] = ACTIONS(1165), + [anon_sym_sizeof] = ACTIONS(1163), + [anon_sym___alignof__] = ACTIONS(1163), + [anon_sym___alignof] = ACTIONS(1163), + [anon_sym__alignof] = ACTIONS(1163), + [anon_sym_alignof] = ACTIONS(1163), + [anon_sym__Alignof] = ACTIONS(1163), + [anon_sym_offsetof] = ACTIONS(1163), + [anon_sym__Generic] = ACTIONS(1163), + [anon_sym_asm] = ACTIONS(1163), + [anon_sym___asm__] = ACTIONS(1163), + [sym_number_literal] = ACTIONS(1165), + [anon_sym_L_SQUOTE] = ACTIONS(1165), + [anon_sym_u_SQUOTE] = ACTIONS(1165), + [anon_sym_U_SQUOTE] = ACTIONS(1165), + [anon_sym_u8_SQUOTE] = ACTIONS(1165), + [anon_sym_SQUOTE] = ACTIONS(1165), + [anon_sym_L_DQUOTE] = ACTIONS(1165), + [anon_sym_u_DQUOTE] = ACTIONS(1165), + [anon_sym_U_DQUOTE] = ACTIONS(1165), + [anon_sym_u8_DQUOTE] = ACTIONS(1165), + [anon_sym_DQUOTE] = ACTIONS(1165), + [sym_true] = ACTIONS(1163), + [sym_false] = ACTIONS(1163), + [anon_sym_NULL] = ACTIONS(1163), + [anon_sym_nullptr] = ACTIONS(1163), [sym_comment] = ACTIONS(3), }, - [161] = { - [sym_identifier] = ACTIONS(1127), - [aux_sym_preproc_include_token1] = ACTIONS(1127), - [aux_sym_preproc_def_token1] = ACTIONS(1127), - [aux_sym_preproc_if_token1] = ACTIONS(1127), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1127), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1127), - [sym_preproc_directive] = ACTIONS(1127), - [anon_sym_LPAREN2] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_STAR] = ACTIONS(1129), - [anon_sym_AMP] = ACTIONS(1129), - [anon_sym_SEMI] = ACTIONS(1129), - [anon_sym___extension__] = ACTIONS(1127), - [anon_sym_typedef] = ACTIONS(1127), - [anon_sym_extern] = ACTIONS(1127), - [anon_sym___attribute__] = ACTIONS(1127), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1129), - [anon_sym___declspec] = ACTIONS(1127), - [anon_sym___cdecl] = ACTIONS(1127), - [anon_sym___clrcall] = ACTIONS(1127), - [anon_sym___stdcall] = ACTIONS(1127), - [anon_sym___fastcall] = ACTIONS(1127), - [anon_sym___thiscall] = ACTIONS(1127), - [anon_sym___vectorcall] = ACTIONS(1127), - [anon_sym_LBRACE] = ACTIONS(1129), - [anon_sym_RBRACE] = ACTIONS(1129), - [anon_sym_signed] = ACTIONS(1127), - [anon_sym_unsigned] = ACTIONS(1127), - [anon_sym_long] = ACTIONS(1127), - [anon_sym_short] = ACTIONS(1127), - [anon_sym_static] = ACTIONS(1127), - [anon_sym_auto] = ACTIONS(1127), - [anon_sym_register] = ACTIONS(1127), - [anon_sym_inline] = ACTIONS(1127), - [anon_sym___inline] = ACTIONS(1127), - [anon_sym___inline__] = ACTIONS(1127), - [anon_sym___forceinline] = ACTIONS(1127), - [anon_sym_thread_local] = ACTIONS(1127), - [anon_sym___thread] = ACTIONS(1127), - [anon_sym_const] = ACTIONS(1127), - [anon_sym_constexpr] = ACTIONS(1127), - [anon_sym_volatile] = ACTIONS(1127), - [anon_sym_restrict] = ACTIONS(1127), - [anon_sym___restrict__] = ACTIONS(1127), - [anon_sym__Atomic] = ACTIONS(1127), - [anon_sym__Noreturn] = ACTIONS(1127), - [anon_sym_noreturn] = ACTIONS(1127), - [anon_sym_alignas] = ACTIONS(1127), - [anon_sym__Alignas] = ACTIONS(1127), - [sym_primitive_type] = ACTIONS(1127), - [anon_sym_enum] = ACTIONS(1127), - [anon_sym_struct] = ACTIONS(1127), - [anon_sym_union] = ACTIONS(1127), - [anon_sym_if] = ACTIONS(1127), - [anon_sym_else] = ACTIONS(1127), - [anon_sym_switch] = ACTIONS(1127), - [anon_sym_case] = ACTIONS(1127), - [anon_sym_default] = ACTIONS(1127), - [anon_sym_while] = ACTIONS(1127), - [anon_sym_do] = ACTIONS(1127), - [anon_sym_for] = ACTIONS(1127), - [anon_sym_return] = ACTIONS(1127), - [anon_sym_break] = ACTIONS(1127), - [anon_sym_continue] = ACTIONS(1127), - [anon_sym_goto] = ACTIONS(1127), - [anon_sym___try] = ACTIONS(1127), - [anon_sym___leave] = ACTIONS(1127), - [anon_sym_DASH_DASH] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1129), - [anon_sym_sizeof] = ACTIONS(1127), - [anon_sym___alignof__] = ACTIONS(1127), - [anon_sym___alignof] = ACTIONS(1127), - [anon_sym__alignof] = ACTIONS(1127), - [anon_sym_alignof] = ACTIONS(1127), - [anon_sym__Alignof] = ACTIONS(1127), - [anon_sym_offsetof] = ACTIONS(1127), - [anon_sym__Generic] = ACTIONS(1127), - [anon_sym_asm] = ACTIONS(1127), - [anon_sym___asm__] = ACTIONS(1127), - [sym_number_literal] = ACTIONS(1129), - [anon_sym_L_SQUOTE] = ACTIONS(1129), - [anon_sym_u_SQUOTE] = ACTIONS(1129), - [anon_sym_U_SQUOTE] = ACTIONS(1129), - [anon_sym_u8_SQUOTE] = ACTIONS(1129), - [anon_sym_SQUOTE] = ACTIONS(1129), - [anon_sym_L_DQUOTE] = ACTIONS(1129), - [anon_sym_u_DQUOTE] = ACTIONS(1129), - [anon_sym_U_DQUOTE] = ACTIONS(1129), - [anon_sym_u8_DQUOTE] = ACTIONS(1129), - [anon_sym_DQUOTE] = ACTIONS(1129), - [sym_true] = ACTIONS(1127), - [sym_false] = ACTIONS(1127), - [anon_sym_NULL] = ACTIONS(1127), - [anon_sym_nullptr] = ACTIONS(1127), + [147] = { + [sym_identifier] = ACTIONS(1191), + [aux_sym_preproc_include_token1] = ACTIONS(1191), + [aux_sym_preproc_def_token1] = ACTIONS(1191), + [aux_sym_preproc_if_token1] = ACTIONS(1191), + [aux_sym_preproc_if_token2] = ACTIONS(1191), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1191), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1191), + [sym_preproc_directive] = ACTIONS(1191), + [anon_sym_LPAREN2] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(1193), + [anon_sym_TILDE] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1191), + [anon_sym_STAR] = ACTIONS(1193), + [anon_sym_AMP] = ACTIONS(1193), + [anon_sym_SEMI] = ACTIONS(1193), + [anon_sym___extension__] = ACTIONS(1191), + [anon_sym_typedef] = ACTIONS(1191), + [anon_sym_extern] = ACTIONS(1191), + [anon_sym___attribute__] = ACTIONS(1191), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1193), + [anon_sym___declspec] = ACTIONS(1191), + [anon_sym___cdecl] = ACTIONS(1191), + [anon_sym___clrcall] = ACTIONS(1191), + [anon_sym___stdcall] = ACTIONS(1191), + [anon_sym___fastcall] = ACTIONS(1191), + [anon_sym___thiscall] = ACTIONS(1191), + [anon_sym___vectorcall] = ACTIONS(1191), + [anon_sym_LBRACE] = ACTIONS(1193), + [anon_sym_signed] = ACTIONS(1191), + [anon_sym_unsigned] = ACTIONS(1191), + [anon_sym_long] = ACTIONS(1191), + [anon_sym_short] = ACTIONS(1191), + [anon_sym_static] = ACTIONS(1191), + [anon_sym_auto] = ACTIONS(1191), + [anon_sym_register] = ACTIONS(1191), + [anon_sym_inline] = ACTIONS(1191), + [anon_sym___inline] = ACTIONS(1191), + [anon_sym___inline__] = ACTIONS(1191), + [anon_sym___forceinline] = ACTIONS(1191), + [anon_sym_thread_local] = ACTIONS(1191), + [anon_sym___thread] = ACTIONS(1191), + [anon_sym_const] = ACTIONS(1191), + [anon_sym_constexpr] = ACTIONS(1191), + [anon_sym_volatile] = ACTIONS(1191), + [anon_sym_restrict] = ACTIONS(1191), + [anon_sym___restrict__] = ACTIONS(1191), + [anon_sym__Atomic] = ACTIONS(1191), + [anon_sym__Noreturn] = ACTIONS(1191), + [anon_sym_noreturn] = ACTIONS(1191), + [anon_sym_alignas] = ACTIONS(1191), + [anon_sym__Alignas] = ACTIONS(1191), + [sym_primitive_type] = ACTIONS(1191), + [anon_sym_enum] = ACTIONS(1191), + [anon_sym_struct] = ACTIONS(1191), + [anon_sym_union] = ACTIONS(1191), + [anon_sym_if] = ACTIONS(1191), + [anon_sym_else] = ACTIONS(1191), + [anon_sym_switch] = ACTIONS(1191), + [anon_sym_case] = ACTIONS(1191), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_while] = ACTIONS(1191), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1191), + [anon_sym_return] = ACTIONS(1191), + [anon_sym_break] = ACTIONS(1191), + [anon_sym_continue] = ACTIONS(1191), + [anon_sym_goto] = ACTIONS(1191), + [anon_sym___try] = ACTIONS(1191), + [anon_sym___leave] = ACTIONS(1191), + [anon_sym_DASH_DASH] = ACTIONS(1193), + [anon_sym_PLUS_PLUS] = ACTIONS(1193), + [anon_sym_sizeof] = ACTIONS(1191), + [anon_sym___alignof__] = ACTIONS(1191), + [anon_sym___alignof] = ACTIONS(1191), + [anon_sym__alignof] = ACTIONS(1191), + [anon_sym_alignof] = ACTIONS(1191), + [anon_sym__Alignof] = ACTIONS(1191), + [anon_sym_offsetof] = ACTIONS(1191), + [anon_sym__Generic] = ACTIONS(1191), + [anon_sym_asm] = ACTIONS(1191), + [anon_sym___asm__] = ACTIONS(1191), + [sym_number_literal] = ACTIONS(1193), + [anon_sym_L_SQUOTE] = ACTIONS(1193), + [anon_sym_u_SQUOTE] = ACTIONS(1193), + [anon_sym_U_SQUOTE] = ACTIONS(1193), + [anon_sym_u8_SQUOTE] = ACTIONS(1193), + [anon_sym_SQUOTE] = ACTIONS(1193), + [anon_sym_L_DQUOTE] = ACTIONS(1193), + [anon_sym_u_DQUOTE] = ACTIONS(1193), + [anon_sym_U_DQUOTE] = ACTIONS(1193), + [anon_sym_u8_DQUOTE] = ACTIONS(1193), + [anon_sym_DQUOTE] = ACTIONS(1193), + [sym_true] = ACTIONS(1191), + [sym_false] = ACTIONS(1191), + [anon_sym_NULL] = ACTIONS(1191), + [anon_sym_nullptr] = ACTIONS(1191), [sym_comment] = ACTIONS(3), }, - [162] = { - [sym_identifier] = ACTIONS(1135), - [aux_sym_preproc_include_token1] = ACTIONS(1135), - [aux_sym_preproc_def_token1] = ACTIONS(1135), - [aux_sym_preproc_if_token1] = ACTIONS(1135), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1135), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1135), - [sym_preproc_directive] = ACTIONS(1135), - [anon_sym_LPAREN2] = ACTIONS(1137), - [anon_sym_BANG] = ACTIONS(1137), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_PLUS] = ACTIONS(1135), - [anon_sym_STAR] = ACTIONS(1137), - [anon_sym_AMP] = ACTIONS(1137), - [anon_sym_SEMI] = ACTIONS(1137), - [anon_sym___extension__] = ACTIONS(1135), - [anon_sym_typedef] = ACTIONS(1135), - [anon_sym_extern] = ACTIONS(1135), - [anon_sym___attribute__] = ACTIONS(1135), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1137), - [anon_sym___declspec] = ACTIONS(1135), - [anon_sym___cdecl] = ACTIONS(1135), - [anon_sym___clrcall] = ACTIONS(1135), - [anon_sym___stdcall] = ACTIONS(1135), - [anon_sym___fastcall] = ACTIONS(1135), - [anon_sym___thiscall] = ACTIONS(1135), - [anon_sym___vectorcall] = ACTIONS(1135), - [anon_sym_LBRACE] = ACTIONS(1137), - [anon_sym_RBRACE] = ACTIONS(1137), - [anon_sym_signed] = ACTIONS(1135), - [anon_sym_unsigned] = ACTIONS(1135), - [anon_sym_long] = ACTIONS(1135), - [anon_sym_short] = ACTIONS(1135), - [anon_sym_static] = ACTIONS(1135), - [anon_sym_auto] = ACTIONS(1135), - [anon_sym_register] = ACTIONS(1135), - [anon_sym_inline] = ACTIONS(1135), - [anon_sym___inline] = ACTIONS(1135), - [anon_sym___inline__] = ACTIONS(1135), - [anon_sym___forceinline] = ACTIONS(1135), - [anon_sym_thread_local] = ACTIONS(1135), - [anon_sym___thread] = ACTIONS(1135), - [anon_sym_const] = ACTIONS(1135), - [anon_sym_constexpr] = ACTIONS(1135), - [anon_sym_volatile] = ACTIONS(1135), - [anon_sym_restrict] = ACTIONS(1135), - [anon_sym___restrict__] = ACTIONS(1135), - [anon_sym__Atomic] = ACTIONS(1135), - [anon_sym__Noreturn] = ACTIONS(1135), - [anon_sym_noreturn] = ACTIONS(1135), - [anon_sym_alignas] = ACTIONS(1135), - [anon_sym__Alignas] = ACTIONS(1135), - [sym_primitive_type] = ACTIONS(1135), - [anon_sym_enum] = ACTIONS(1135), - [anon_sym_struct] = ACTIONS(1135), - [anon_sym_union] = ACTIONS(1135), - [anon_sym_if] = ACTIONS(1135), - [anon_sym_else] = ACTIONS(1135), - [anon_sym_switch] = ACTIONS(1135), - [anon_sym_case] = ACTIONS(1135), - [anon_sym_default] = ACTIONS(1135), - [anon_sym_while] = ACTIONS(1135), - [anon_sym_do] = ACTIONS(1135), - [anon_sym_for] = ACTIONS(1135), - [anon_sym_return] = ACTIONS(1135), - [anon_sym_break] = ACTIONS(1135), - [anon_sym_continue] = ACTIONS(1135), - [anon_sym_goto] = ACTIONS(1135), - [anon_sym___try] = ACTIONS(1135), - [anon_sym___leave] = ACTIONS(1135), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_sizeof] = ACTIONS(1135), - [anon_sym___alignof__] = ACTIONS(1135), - [anon_sym___alignof] = ACTIONS(1135), - [anon_sym__alignof] = ACTIONS(1135), - [anon_sym_alignof] = ACTIONS(1135), - [anon_sym__Alignof] = ACTIONS(1135), - [anon_sym_offsetof] = ACTIONS(1135), - [anon_sym__Generic] = ACTIONS(1135), - [anon_sym_asm] = ACTIONS(1135), - [anon_sym___asm__] = ACTIONS(1135), - [sym_number_literal] = ACTIONS(1137), - [anon_sym_L_SQUOTE] = ACTIONS(1137), - [anon_sym_u_SQUOTE] = ACTIONS(1137), - [anon_sym_U_SQUOTE] = ACTIONS(1137), - [anon_sym_u8_SQUOTE] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1137), - [anon_sym_L_DQUOTE] = ACTIONS(1137), - [anon_sym_u_DQUOTE] = ACTIONS(1137), - [anon_sym_U_DQUOTE] = ACTIONS(1137), - [anon_sym_u8_DQUOTE] = ACTIONS(1137), - [anon_sym_DQUOTE] = ACTIONS(1137), - [sym_true] = ACTIONS(1135), - [sym_false] = ACTIONS(1135), - [anon_sym_NULL] = ACTIONS(1135), - [anon_sym_nullptr] = ACTIONS(1135), - [sym_comment] = ACTIONS(3), - }, - [163] = { - [ts_builtin_sym_end] = ACTIONS(1133), - [sym_identifier] = ACTIONS(1131), - [aux_sym_preproc_include_token1] = ACTIONS(1131), - [aux_sym_preproc_def_token1] = ACTIONS(1131), - [aux_sym_preproc_if_token1] = ACTIONS(1131), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1131), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1131), - [sym_preproc_directive] = ACTIONS(1131), - [anon_sym_LPAREN2] = ACTIONS(1133), - [anon_sym_BANG] = ACTIONS(1133), - [anon_sym_TILDE] = ACTIONS(1133), - [anon_sym_DASH] = ACTIONS(1131), - [anon_sym_PLUS] = ACTIONS(1131), - [anon_sym_STAR] = ACTIONS(1133), - [anon_sym_AMP] = ACTIONS(1133), - [anon_sym_SEMI] = ACTIONS(1133), - [anon_sym___extension__] = ACTIONS(1131), - [anon_sym_typedef] = ACTIONS(1131), - [anon_sym_extern] = ACTIONS(1131), - [anon_sym___attribute__] = ACTIONS(1131), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1133), - [anon_sym___declspec] = ACTIONS(1131), - [anon_sym___cdecl] = ACTIONS(1131), - [anon_sym___clrcall] = ACTIONS(1131), - [anon_sym___stdcall] = ACTIONS(1131), - [anon_sym___fastcall] = ACTIONS(1131), - [anon_sym___thiscall] = ACTIONS(1131), - [anon_sym___vectorcall] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(1133), - [anon_sym_signed] = ACTIONS(1131), - [anon_sym_unsigned] = ACTIONS(1131), - [anon_sym_long] = ACTIONS(1131), - [anon_sym_short] = ACTIONS(1131), - [anon_sym_static] = ACTIONS(1131), - [anon_sym_auto] = ACTIONS(1131), - [anon_sym_register] = ACTIONS(1131), - [anon_sym_inline] = ACTIONS(1131), - [anon_sym___inline] = ACTIONS(1131), - [anon_sym___inline__] = ACTIONS(1131), - [anon_sym___forceinline] = ACTIONS(1131), - [anon_sym_thread_local] = ACTIONS(1131), - [anon_sym___thread] = ACTIONS(1131), - [anon_sym_const] = ACTIONS(1131), - [anon_sym_constexpr] = ACTIONS(1131), - [anon_sym_volatile] = ACTIONS(1131), - [anon_sym_restrict] = ACTIONS(1131), - [anon_sym___restrict__] = ACTIONS(1131), - [anon_sym__Atomic] = ACTIONS(1131), - [anon_sym__Noreturn] = ACTIONS(1131), - [anon_sym_noreturn] = ACTIONS(1131), - [anon_sym_alignas] = ACTIONS(1131), - [anon_sym__Alignas] = ACTIONS(1131), - [sym_primitive_type] = ACTIONS(1131), - [anon_sym_enum] = ACTIONS(1131), - [anon_sym_struct] = ACTIONS(1131), - [anon_sym_union] = ACTIONS(1131), - [anon_sym_if] = ACTIONS(1131), - [anon_sym_else] = ACTIONS(1131), - [anon_sym_switch] = ACTIONS(1131), - [anon_sym_case] = ACTIONS(1131), - [anon_sym_default] = ACTIONS(1131), - [anon_sym_while] = ACTIONS(1131), - [anon_sym_do] = ACTIONS(1131), - [anon_sym_for] = ACTIONS(1131), - [anon_sym_return] = ACTIONS(1131), - [anon_sym_break] = ACTIONS(1131), - [anon_sym_continue] = ACTIONS(1131), - [anon_sym_goto] = ACTIONS(1131), - [anon_sym___try] = ACTIONS(1131), - [anon_sym___leave] = ACTIONS(1131), - [anon_sym_DASH_DASH] = ACTIONS(1133), - [anon_sym_PLUS_PLUS] = ACTIONS(1133), - [anon_sym_sizeof] = ACTIONS(1131), - [anon_sym___alignof__] = ACTIONS(1131), - [anon_sym___alignof] = ACTIONS(1131), - [anon_sym__alignof] = ACTIONS(1131), - [anon_sym_alignof] = ACTIONS(1131), - [anon_sym__Alignof] = ACTIONS(1131), - [anon_sym_offsetof] = ACTIONS(1131), - [anon_sym__Generic] = ACTIONS(1131), - [anon_sym_asm] = ACTIONS(1131), - [anon_sym___asm__] = ACTIONS(1131), - [sym_number_literal] = ACTIONS(1133), - [anon_sym_L_SQUOTE] = ACTIONS(1133), - [anon_sym_u_SQUOTE] = ACTIONS(1133), - [anon_sym_U_SQUOTE] = ACTIONS(1133), - [anon_sym_u8_SQUOTE] = ACTIONS(1133), - [anon_sym_SQUOTE] = ACTIONS(1133), - [anon_sym_L_DQUOTE] = ACTIONS(1133), - [anon_sym_u_DQUOTE] = ACTIONS(1133), - [anon_sym_U_DQUOTE] = ACTIONS(1133), - [anon_sym_u8_DQUOTE] = ACTIONS(1133), - [anon_sym_DQUOTE] = ACTIONS(1133), - [sym_true] = ACTIONS(1131), - [sym_false] = ACTIONS(1131), - [anon_sym_NULL] = ACTIONS(1131), - [anon_sym_nullptr] = ACTIONS(1131), + [148] = { + [ts_builtin_sym_end] = ACTIONS(1233), + [sym_identifier] = ACTIONS(1231), + [aux_sym_preproc_include_token1] = ACTIONS(1231), + [aux_sym_preproc_def_token1] = ACTIONS(1231), + [aux_sym_preproc_if_token1] = ACTIONS(1231), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1231), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1231), + [sym_preproc_directive] = ACTIONS(1231), + [anon_sym_LPAREN2] = ACTIONS(1233), + [anon_sym_BANG] = ACTIONS(1233), + [anon_sym_TILDE] = ACTIONS(1233), + [anon_sym_DASH] = ACTIONS(1231), + [anon_sym_PLUS] = ACTIONS(1231), + [anon_sym_STAR] = ACTIONS(1233), + [anon_sym_AMP] = ACTIONS(1233), + [anon_sym_SEMI] = ACTIONS(1233), + [anon_sym___extension__] = ACTIONS(1231), + [anon_sym_typedef] = ACTIONS(1231), + [anon_sym_extern] = ACTIONS(1231), + [anon_sym___attribute__] = ACTIONS(1231), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1233), + [anon_sym___declspec] = ACTIONS(1231), + [anon_sym___cdecl] = ACTIONS(1231), + [anon_sym___clrcall] = ACTIONS(1231), + [anon_sym___stdcall] = ACTIONS(1231), + [anon_sym___fastcall] = ACTIONS(1231), + [anon_sym___thiscall] = ACTIONS(1231), + [anon_sym___vectorcall] = ACTIONS(1231), + [anon_sym_LBRACE] = ACTIONS(1233), + [anon_sym_signed] = ACTIONS(1231), + [anon_sym_unsigned] = ACTIONS(1231), + [anon_sym_long] = ACTIONS(1231), + [anon_sym_short] = ACTIONS(1231), + [anon_sym_static] = ACTIONS(1231), + [anon_sym_auto] = ACTIONS(1231), + [anon_sym_register] = ACTIONS(1231), + [anon_sym_inline] = ACTIONS(1231), + [anon_sym___inline] = ACTIONS(1231), + [anon_sym___inline__] = ACTIONS(1231), + [anon_sym___forceinline] = ACTIONS(1231), + [anon_sym_thread_local] = ACTIONS(1231), + [anon_sym___thread] = ACTIONS(1231), + [anon_sym_const] = ACTIONS(1231), + [anon_sym_constexpr] = ACTIONS(1231), + [anon_sym_volatile] = ACTIONS(1231), + [anon_sym_restrict] = ACTIONS(1231), + [anon_sym___restrict__] = ACTIONS(1231), + [anon_sym__Atomic] = ACTIONS(1231), + [anon_sym__Noreturn] = ACTIONS(1231), + [anon_sym_noreturn] = ACTIONS(1231), + [anon_sym_alignas] = ACTIONS(1231), + [anon_sym__Alignas] = ACTIONS(1231), + [sym_primitive_type] = ACTIONS(1231), + [anon_sym_enum] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1231), + [anon_sym_union] = ACTIONS(1231), + [anon_sym_if] = ACTIONS(1231), + [anon_sym_else] = ACTIONS(1231), + [anon_sym_switch] = ACTIONS(1231), + [anon_sym_case] = ACTIONS(1231), + [anon_sym_default] = ACTIONS(1231), + [anon_sym_while] = ACTIONS(1231), + [anon_sym_do] = ACTIONS(1231), + [anon_sym_for] = ACTIONS(1231), + [anon_sym_return] = ACTIONS(1231), + [anon_sym_break] = ACTIONS(1231), + [anon_sym_continue] = ACTIONS(1231), + [anon_sym_goto] = ACTIONS(1231), + [anon_sym___try] = ACTIONS(1231), + [anon_sym___leave] = ACTIONS(1231), + [anon_sym_DASH_DASH] = ACTIONS(1233), + [anon_sym_PLUS_PLUS] = ACTIONS(1233), + [anon_sym_sizeof] = ACTIONS(1231), + [anon_sym___alignof__] = ACTIONS(1231), + [anon_sym___alignof] = ACTIONS(1231), + [anon_sym__alignof] = ACTIONS(1231), + [anon_sym_alignof] = ACTIONS(1231), + [anon_sym__Alignof] = ACTIONS(1231), + [anon_sym_offsetof] = ACTIONS(1231), + [anon_sym__Generic] = ACTIONS(1231), + [anon_sym_asm] = ACTIONS(1231), + [anon_sym___asm__] = ACTIONS(1231), + [sym_number_literal] = ACTIONS(1233), + [anon_sym_L_SQUOTE] = ACTIONS(1233), + [anon_sym_u_SQUOTE] = ACTIONS(1233), + [anon_sym_U_SQUOTE] = ACTIONS(1233), + [anon_sym_u8_SQUOTE] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(1233), + [anon_sym_L_DQUOTE] = ACTIONS(1233), + [anon_sym_u_DQUOTE] = ACTIONS(1233), + [anon_sym_U_DQUOTE] = ACTIONS(1233), + [anon_sym_u8_DQUOTE] = ACTIONS(1233), + [anon_sym_DQUOTE] = ACTIONS(1233), + [sym_true] = ACTIONS(1231), + [sym_false] = ACTIONS(1231), + [anon_sym_NULL] = ACTIONS(1231), + [anon_sym_nullptr] = ACTIONS(1231), [sym_comment] = ACTIONS(3), }, - [164] = { - [sym_identifier] = ACTIONS(1179), - [aux_sym_preproc_include_token1] = ACTIONS(1179), - [aux_sym_preproc_def_token1] = ACTIONS(1179), - [aux_sym_preproc_if_token1] = ACTIONS(1179), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1179), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1179), - [sym_preproc_directive] = ACTIONS(1179), - [anon_sym_LPAREN2] = ACTIONS(1181), - [anon_sym_BANG] = ACTIONS(1181), - [anon_sym_TILDE] = ACTIONS(1181), - [anon_sym_DASH] = ACTIONS(1179), - [anon_sym_PLUS] = ACTIONS(1179), - [anon_sym_STAR] = ACTIONS(1181), - [anon_sym_AMP] = ACTIONS(1181), - [anon_sym_SEMI] = ACTIONS(1181), - [anon_sym___extension__] = ACTIONS(1179), - [anon_sym_typedef] = ACTIONS(1179), - [anon_sym_extern] = ACTIONS(1179), - [anon_sym___attribute__] = ACTIONS(1179), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1181), - [anon_sym___declspec] = ACTIONS(1179), - [anon_sym___cdecl] = ACTIONS(1179), - [anon_sym___clrcall] = ACTIONS(1179), - [anon_sym___stdcall] = ACTIONS(1179), - [anon_sym___fastcall] = ACTIONS(1179), - [anon_sym___thiscall] = ACTIONS(1179), - [anon_sym___vectorcall] = ACTIONS(1179), - [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_RBRACE] = ACTIONS(1181), - [anon_sym_signed] = ACTIONS(1179), - [anon_sym_unsigned] = ACTIONS(1179), - [anon_sym_long] = ACTIONS(1179), - [anon_sym_short] = ACTIONS(1179), - [anon_sym_static] = ACTIONS(1179), - [anon_sym_auto] = ACTIONS(1179), - [anon_sym_register] = ACTIONS(1179), - [anon_sym_inline] = ACTIONS(1179), - [anon_sym___inline] = ACTIONS(1179), - [anon_sym___inline__] = ACTIONS(1179), - [anon_sym___forceinline] = ACTIONS(1179), - [anon_sym_thread_local] = ACTIONS(1179), - [anon_sym___thread] = ACTIONS(1179), - [anon_sym_const] = ACTIONS(1179), - [anon_sym_constexpr] = ACTIONS(1179), - [anon_sym_volatile] = ACTIONS(1179), - [anon_sym_restrict] = ACTIONS(1179), - [anon_sym___restrict__] = ACTIONS(1179), - [anon_sym__Atomic] = ACTIONS(1179), - [anon_sym__Noreturn] = ACTIONS(1179), - [anon_sym_noreturn] = ACTIONS(1179), - [anon_sym_alignas] = ACTIONS(1179), - [anon_sym__Alignas] = ACTIONS(1179), - [sym_primitive_type] = ACTIONS(1179), - [anon_sym_enum] = ACTIONS(1179), - [anon_sym_struct] = ACTIONS(1179), - [anon_sym_union] = ACTIONS(1179), - [anon_sym_if] = ACTIONS(1179), - [anon_sym_else] = ACTIONS(1179), - [anon_sym_switch] = ACTIONS(1179), - [anon_sym_case] = ACTIONS(1179), - [anon_sym_default] = ACTIONS(1179), - [anon_sym_while] = ACTIONS(1179), - [anon_sym_do] = ACTIONS(1179), - [anon_sym_for] = ACTIONS(1179), - [anon_sym_return] = ACTIONS(1179), - [anon_sym_break] = ACTIONS(1179), - [anon_sym_continue] = ACTIONS(1179), - [anon_sym_goto] = ACTIONS(1179), - [anon_sym___try] = ACTIONS(1179), - [anon_sym___leave] = ACTIONS(1179), - [anon_sym_DASH_DASH] = ACTIONS(1181), - [anon_sym_PLUS_PLUS] = ACTIONS(1181), - [anon_sym_sizeof] = ACTIONS(1179), - [anon_sym___alignof__] = ACTIONS(1179), - [anon_sym___alignof] = ACTIONS(1179), - [anon_sym__alignof] = ACTIONS(1179), - [anon_sym_alignof] = ACTIONS(1179), - [anon_sym__Alignof] = ACTIONS(1179), - [anon_sym_offsetof] = ACTIONS(1179), - [anon_sym__Generic] = ACTIONS(1179), - [anon_sym_asm] = ACTIONS(1179), - [anon_sym___asm__] = ACTIONS(1179), - [sym_number_literal] = ACTIONS(1181), - [anon_sym_L_SQUOTE] = ACTIONS(1181), - [anon_sym_u_SQUOTE] = ACTIONS(1181), - [anon_sym_U_SQUOTE] = ACTIONS(1181), - [anon_sym_u8_SQUOTE] = ACTIONS(1181), - [anon_sym_SQUOTE] = ACTIONS(1181), - [anon_sym_L_DQUOTE] = ACTIONS(1181), - [anon_sym_u_DQUOTE] = ACTIONS(1181), - [anon_sym_U_DQUOTE] = ACTIONS(1181), - [anon_sym_u8_DQUOTE] = ACTIONS(1181), - [anon_sym_DQUOTE] = ACTIONS(1181), - [sym_true] = ACTIONS(1179), - [sym_false] = ACTIONS(1179), - [anon_sym_NULL] = ACTIONS(1179), - [anon_sym_nullptr] = ACTIONS(1179), + [149] = { + [ts_builtin_sym_end] = ACTIONS(1237), + [sym_identifier] = ACTIONS(1235), + [aux_sym_preproc_include_token1] = ACTIONS(1235), + [aux_sym_preproc_def_token1] = ACTIONS(1235), + [aux_sym_preproc_if_token1] = ACTIONS(1235), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1235), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1235), + [sym_preproc_directive] = ACTIONS(1235), + [anon_sym_LPAREN2] = ACTIONS(1237), + [anon_sym_BANG] = ACTIONS(1237), + [anon_sym_TILDE] = ACTIONS(1237), + [anon_sym_DASH] = ACTIONS(1235), + [anon_sym_PLUS] = ACTIONS(1235), + [anon_sym_STAR] = ACTIONS(1237), + [anon_sym_AMP] = ACTIONS(1237), + [anon_sym_SEMI] = ACTIONS(1237), + [anon_sym___extension__] = ACTIONS(1235), + [anon_sym_typedef] = ACTIONS(1235), + [anon_sym_extern] = ACTIONS(1235), + [anon_sym___attribute__] = ACTIONS(1235), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1237), + [anon_sym___declspec] = ACTIONS(1235), + [anon_sym___cdecl] = ACTIONS(1235), + [anon_sym___clrcall] = ACTIONS(1235), + [anon_sym___stdcall] = ACTIONS(1235), + [anon_sym___fastcall] = ACTIONS(1235), + [anon_sym___thiscall] = ACTIONS(1235), + [anon_sym___vectorcall] = ACTIONS(1235), + [anon_sym_LBRACE] = ACTIONS(1237), + [anon_sym_signed] = ACTIONS(1235), + [anon_sym_unsigned] = ACTIONS(1235), + [anon_sym_long] = ACTIONS(1235), + [anon_sym_short] = ACTIONS(1235), + [anon_sym_static] = ACTIONS(1235), + [anon_sym_auto] = ACTIONS(1235), + [anon_sym_register] = ACTIONS(1235), + [anon_sym_inline] = ACTIONS(1235), + [anon_sym___inline] = ACTIONS(1235), + [anon_sym___inline__] = ACTIONS(1235), + [anon_sym___forceinline] = ACTIONS(1235), + [anon_sym_thread_local] = ACTIONS(1235), + [anon_sym___thread] = ACTIONS(1235), + [anon_sym_const] = ACTIONS(1235), + [anon_sym_constexpr] = ACTIONS(1235), + [anon_sym_volatile] = ACTIONS(1235), + [anon_sym_restrict] = ACTIONS(1235), + [anon_sym___restrict__] = ACTIONS(1235), + [anon_sym__Atomic] = ACTIONS(1235), + [anon_sym__Noreturn] = ACTIONS(1235), + [anon_sym_noreturn] = ACTIONS(1235), + [anon_sym_alignas] = ACTIONS(1235), + [anon_sym__Alignas] = 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___try] = ACTIONS(1235), + [anon_sym___leave] = ACTIONS(1235), + [anon_sym_DASH_DASH] = ACTIONS(1237), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_sizeof] = ACTIONS(1235), + [anon_sym___alignof__] = ACTIONS(1235), + [anon_sym___alignof] = ACTIONS(1235), + [anon_sym__alignof] = ACTIONS(1235), + [anon_sym_alignof] = ACTIONS(1235), + [anon_sym__Alignof] = ACTIONS(1235), + [anon_sym_offsetof] = ACTIONS(1235), + [anon_sym__Generic] = ACTIONS(1235), + [anon_sym_asm] = ACTIONS(1235), + [anon_sym___asm__] = ACTIONS(1235), + [sym_number_literal] = ACTIONS(1237), + [anon_sym_L_SQUOTE] = ACTIONS(1237), + [anon_sym_u_SQUOTE] = ACTIONS(1237), + [anon_sym_U_SQUOTE] = ACTIONS(1237), + [anon_sym_u8_SQUOTE] = ACTIONS(1237), + [anon_sym_SQUOTE] = ACTIONS(1237), + [anon_sym_L_DQUOTE] = ACTIONS(1237), + [anon_sym_u_DQUOTE] = ACTIONS(1237), + [anon_sym_U_DQUOTE] = ACTIONS(1237), + [anon_sym_u8_DQUOTE] = ACTIONS(1237), + [anon_sym_DQUOTE] = ACTIONS(1237), + [sym_true] = ACTIONS(1235), + [sym_false] = ACTIONS(1235), + [anon_sym_NULL] = ACTIONS(1235), + [anon_sym_nullptr] = ACTIONS(1235), [sym_comment] = ACTIONS(3), }, - [165] = { - [sym_identifier] = ACTIONS(1227), - [aux_sym_preproc_include_token1] = ACTIONS(1227), - [aux_sym_preproc_def_token1] = ACTIONS(1227), - [aux_sym_preproc_if_token1] = ACTIONS(1227), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1227), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1227), - [sym_preproc_directive] = ACTIONS(1227), - [anon_sym_LPAREN2] = ACTIONS(1229), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1227), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1229), - [anon_sym_SEMI] = ACTIONS(1229), - [anon_sym___extension__] = ACTIONS(1227), - [anon_sym_typedef] = ACTIONS(1227), - [anon_sym_extern] = ACTIONS(1227), - [anon_sym___attribute__] = ACTIONS(1227), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1229), - [anon_sym___declspec] = ACTIONS(1227), - [anon_sym___cdecl] = ACTIONS(1227), - [anon_sym___clrcall] = ACTIONS(1227), - [anon_sym___stdcall] = ACTIONS(1227), - [anon_sym___fastcall] = ACTIONS(1227), - [anon_sym___thiscall] = ACTIONS(1227), - [anon_sym___vectorcall] = ACTIONS(1227), - [anon_sym_LBRACE] = ACTIONS(1229), - [anon_sym_RBRACE] = ACTIONS(1229), - [anon_sym_signed] = ACTIONS(1227), - [anon_sym_unsigned] = ACTIONS(1227), - [anon_sym_long] = ACTIONS(1227), - [anon_sym_short] = ACTIONS(1227), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_auto] = ACTIONS(1227), - [anon_sym_register] = ACTIONS(1227), - [anon_sym_inline] = ACTIONS(1227), - [anon_sym___inline] = ACTIONS(1227), - [anon_sym___inline__] = ACTIONS(1227), - [anon_sym___forceinline] = ACTIONS(1227), - [anon_sym_thread_local] = ACTIONS(1227), - [anon_sym___thread] = ACTIONS(1227), - [anon_sym_const] = ACTIONS(1227), - [anon_sym_constexpr] = ACTIONS(1227), - [anon_sym_volatile] = ACTIONS(1227), - [anon_sym_restrict] = ACTIONS(1227), - [anon_sym___restrict__] = ACTIONS(1227), - [anon_sym__Atomic] = ACTIONS(1227), - [anon_sym__Noreturn] = ACTIONS(1227), - [anon_sym_noreturn] = ACTIONS(1227), - [anon_sym_alignas] = ACTIONS(1227), - [anon_sym__Alignas] = ACTIONS(1227), - [sym_primitive_type] = ACTIONS(1227), - [anon_sym_enum] = ACTIONS(1227), - [anon_sym_struct] = ACTIONS(1227), - [anon_sym_union] = ACTIONS(1227), - [anon_sym_if] = ACTIONS(1227), - [anon_sym_else] = ACTIONS(1227), - [anon_sym_switch] = ACTIONS(1227), - [anon_sym_case] = ACTIONS(1227), - [anon_sym_default] = ACTIONS(1227), - [anon_sym_while] = ACTIONS(1227), - [anon_sym_do] = ACTIONS(1227), - [anon_sym_for] = ACTIONS(1227), - [anon_sym_return] = ACTIONS(1227), - [anon_sym_break] = ACTIONS(1227), - [anon_sym_continue] = ACTIONS(1227), - [anon_sym_goto] = ACTIONS(1227), - [anon_sym___try] = ACTIONS(1227), - [anon_sym___leave] = ACTIONS(1227), - [anon_sym_DASH_DASH] = ACTIONS(1229), - [anon_sym_PLUS_PLUS] = ACTIONS(1229), + [150] = { + [sym_identifier] = ACTIONS(1223), + [aux_sym_preproc_include_token1] = ACTIONS(1223), + [aux_sym_preproc_def_token1] = ACTIONS(1223), + [aux_sym_preproc_if_token1] = ACTIONS(1223), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1223), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1223), + [sym_preproc_directive] = ACTIONS(1223), + [anon_sym_LPAREN2] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1225), + [anon_sym_TILDE] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1223), + [anon_sym_PLUS] = ACTIONS(1223), + [anon_sym_STAR] = ACTIONS(1225), + [anon_sym_AMP] = ACTIONS(1225), + [anon_sym_SEMI] = ACTIONS(1225), + [anon_sym___extension__] = ACTIONS(1223), + [anon_sym_typedef] = ACTIONS(1223), + [anon_sym_extern] = ACTIONS(1223), + [anon_sym___attribute__] = ACTIONS(1223), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1225), + [anon_sym___declspec] = ACTIONS(1223), + [anon_sym___cdecl] = ACTIONS(1223), + [anon_sym___clrcall] = ACTIONS(1223), + [anon_sym___stdcall] = ACTIONS(1223), + [anon_sym___fastcall] = ACTIONS(1223), + [anon_sym___thiscall] = ACTIONS(1223), + [anon_sym___vectorcall] = ACTIONS(1223), + [anon_sym_LBRACE] = ACTIONS(1225), + [anon_sym_RBRACE] = ACTIONS(1225), + [anon_sym_signed] = ACTIONS(1223), + [anon_sym_unsigned] = ACTIONS(1223), + [anon_sym_long] = ACTIONS(1223), + [anon_sym_short] = ACTIONS(1223), + [anon_sym_static] = ACTIONS(1223), + [anon_sym_auto] = ACTIONS(1223), + [anon_sym_register] = ACTIONS(1223), + [anon_sym_inline] = ACTIONS(1223), + [anon_sym___inline] = ACTIONS(1223), + [anon_sym___inline__] = ACTIONS(1223), + [anon_sym___forceinline] = ACTIONS(1223), + [anon_sym_thread_local] = ACTIONS(1223), + [anon_sym___thread] = ACTIONS(1223), + [anon_sym_const] = ACTIONS(1223), + [anon_sym_constexpr] = ACTIONS(1223), + [anon_sym_volatile] = ACTIONS(1223), + [anon_sym_restrict] = ACTIONS(1223), + [anon_sym___restrict__] = ACTIONS(1223), + [anon_sym__Atomic] = ACTIONS(1223), + [anon_sym__Noreturn] = ACTIONS(1223), + [anon_sym_noreturn] = ACTIONS(1223), + [anon_sym_alignas] = ACTIONS(1223), + [anon_sym__Alignas] = ACTIONS(1223), + [sym_primitive_type] = ACTIONS(1223), + [anon_sym_enum] = ACTIONS(1223), + [anon_sym_struct] = ACTIONS(1223), + [anon_sym_union] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1223), + [anon_sym_else] = ACTIONS(1223), + [anon_sym_switch] = ACTIONS(1223), + [anon_sym_case] = ACTIONS(1223), + [anon_sym_default] = ACTIONS(1223), + [anon_sym_while] = ACTIONS(1223), + [anon_sym_do] = ACTIONS(1223), + [anon_sym_for] = ACTIONS(1223), + [anon_sym_return] = ACTIONS(1223), + [anon_sym_break] = ACTIONS(1223), + [anon_sym_continue] = ACTIONS(1223), + [anon_sym_goto] = ACTIONS(1223), + [anon_sym___try] = ACTIONS(1223), + [anon_sym___leave] = ACTIONS(1223), + [anon_sym_DASH_DASH] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1225), + [anon_sym_sizeof] = ACTIONS(1223), + [anon_sym___alignof__] = ACTIONS(1223), + [anon_sym___alignof] = ACTIONS(1223), + [anon_sym__alignof] = ACTIONS(1223), + [anon_sym_alignof] = ACTIONS(1223), + [anon_sym__Alignof] = ACTIONS(1223), + [anon_sym_offsetof] = ACTIONS(1223), + [anon_sym__Generic] = ACTIONS(1223), + [anon_sym_asm] = ACTIONS(1223), + [anon_sym___asm__] = ACTIONS(1223), + [sym_number_literal] = ACTIONS(1225), + [anon_sym_L_SQUOTE] = ACTIONS(1225), + [anon_sym_u_SQUOTE] = ACTIONS(1225), + [anon_sym_U_SQUOTE] = ACTIONS(1225), + [anon_sym_u8_SQUOTE] = ACTIONS(1225), + [anon_sym_SQUOTE] = ACTIONS(1225), + [anon_sym_L_DQUOTE] = ACTIONS(1225), + [anon_sym_u_DQUOTE] = ACTIONS(1225), + [anon_sym_U_DQUOTE] = ACTIONS(1225), + [anon_sym_u8_DQUOTE] = ACTIONS(1225), + [anon_sym_DQUOTE] = ACTIONS(1225), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [anon_sym_NULL] = ACTIONS(1223), + [anon_sym_nullptr] = ACTIONS(1223), + [sym_comment] = ACTIONS(3), + }, + [151] = { + [ts_builtin_sym_end] = ACTIONS(1229), + [sym_identifier] = ACTIONS(1227), + [aux_sym_preproc_include_token1] = ACTIONS(1227), + [aux_sym_preproc_def_token1] = ACTIONS(1227), + [aux_sym_preproc_if_token1] = ACTIONS(1227), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1227), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1227), + [sym_preproc_directive] = ACTIONS(1227), + [anon_sym_LPAREN2] = ACTIONS(1229), + [anon_sym_BANG] = ACTIONS(1229), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1227), + [anon_sym_STAR] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1229), + [anon_sym_SEMI] = ACTIONS(1229), + [anon_sym___extension__] = ACTIONS(1227), + [anon_sym_typedef] = ACTIONS(1227), + [anon_sym_extern] = ACTIONS(1227), + [anon_sym___attribute__] = ACTIONS(1227), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1229), + [anon_sym___declspec] = ACTIONS(1227), + [anon_sym___cdecl] = ACTIONS(1227), + [anon_sym___clrcall] = ACTIONS(1227), + [anon_sym___stdcall] = ACTIONS(1227), + [anon_sym___fastcall] = ACTIONS(1227), + [anon_sym___thiscall] = ACTIONS(1227), + [anon_sym___vectorcall] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(1229), + [anon_sym_signed] = ACTIONS(1227), + [anon_sym_unsigned] = ACTIONS(1227), + [anon_sym_long] = ACTIONS(1227), + [anon_sym_short] = ACTIONS(1227), + [anon_sym_static] = ACTIONS(1227), + [anon_sym_auto] = ACTIONS(1227), + [anon_sym_register] = ACTIONS(1227), + [anon_sym_inline] = ACTIONS(1227), + [anon_sym___inline] = ACTIONS(1227), + [anon_sym___inline__] = ACTIONS(1227), + [anon_sym___forceinline] = ACTIONS(1227), + [anon_sym_thread_local] = ACTIONS(1227), + [anon_sym___thread] = ACTIONS(1227), + [anon_sym_const] = ACTIONS(1227), + [anon_sym_constexpr] = ACTIONS(1227), + [anon_sym_volatile] = ACTIONS(1227), + [anon_sym_restrict] = ACTIONS(1227), + [anon_sym___restrict__] = ACTIONS(1227), + [anon_sym__Atomic] = ACTIONS(1227), + [anon_sym__Noreturn] = ACTIONS(1227), + [anon_sym_noreturn] = ACTIONS(1227), + [anon_sym_alignas] = ACTIONS(1227), + [anon_sym__Alignas] = ACTIONS(1227), + [sym_primitive_type] = ACTIONS(1227), + [anon_sym_enum] = ACTIONS(1227), + [anon_sym_struct] = ACTIONS(1227), + [anon_sym_union] = ACTIONS(1227), + [anon_sym_if] = ACTIONS(1227), + [anon_sym_else] = ACTIONS(1227), + [anon_sym_switch] = ACTIONS(1227), + [anon_sym_case] = ACTIONS(1227), + [anon_sym_default] = ACTIONS(1227), + [anon_sym_while] = ACTIONS(1227), + [anon_sym_do] = ACTIONS(1227), + [anon_sym_for] = ACTIONS(1227), + [anon_sym_return] = ACTIONS(1227), + [anon_sym_break] = ACTIONS(1227), + [anon_sym_continue] = ACTIONS(1227), + [anon_sym_goto] = ACTIONS(1227), + [anon_sym___try] = ACTIONS(1227), + [anon_sym___leave] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1229), + [anon_sym_PLUS_PLUS] = ACTIONS(1229), [anon_sym_sizeof] = ACTIONS(1227), [anon_sym___alignof__] = ACTIONS(1227), [anon_sym___alignof] = ACTIONS(1227), @@ -33177,307 +31660,408 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1227), [sym_comment] = ACTIONS(3), }, - [166] = { - [sym_identifier] = ACTIONS(1219), - [aux_sym_preproc_include_token1] = ACTIONS(1219), - [aux_sym_preproc_def_token1] = ACTIONS(1219), - [aux_sym_preproc_if_token1] = ACTIONS(1219), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1219), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1219), - [sym_preproc_directive] = ACTIONS(1219), - [anon_sym_LPAREN2] = ACTIONS(1221), - [anon_sym_BANG] = ACTIONS(1221), - [anon_sym_TILDE] = ACTIONS(1221), - [anon_sym_DASH] = ACTIONS(1219), - [anon_sym_PLUS] = ACTIONS(1219), - [anon_sym_STAR] = ACTIONS(1221), - [anon_sym_AMP] = ACTIONS(1221), - [anon_sym_SEMI] = ACTIONS(1221), - [anon_sym___extension__] = ACTIONS(1219), - [anon_sym_typedef] = ACTIONS(1219), - [anon_sym_extern] = ACTIONS(1219), - [anon_sym___attribute__] = ACTIONS(1219), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1221), - [anon_sym___declspec] = ACTIONS(1219), - [anon_sym___cdecl] = ACTIONS(1219), - [anon_sym___clrcall] = ACTIONS(1219), - [anon_sym___stdcall] = ACTIONS(1219), - [anon_sym___fastcall] = ACTIONS(1219), - [anon_sym___thiscall] = ACTIONS(1219), - [anon_sym___vectorcall] = ACTIONS(1219), - [anon_sym_LBRACE] = ACTIONS(1221), - [anon_sym_RBRACE] = ACTIONS(1221), - [anon_sym_signed] = ACTIONS(1219), - [anon_sym_unsigned] = ACTIONS(1219), - [anon_sym_long] = ACTIONS(1219), - [anon_sym_short] = ACTIONS(1219), - [anon_sym_static] = ACTIONS(1219), - [anon_sym_auto] = ACTIONS(1219), - [anon_sym_register] = ACTIONS(1219), - [anon_sym_inline] = ACTIONS(1219), - [anon_sym___inline] = ACTIONS(1219), - [anon_sym___inline__] = ACTIONS(1219), - [anon_sym___forceinline] = ACTIONS(1219), - [anon_sym_thread_local] = ACTIONS(1219), - [anon_sym___thread] = ACTIONS(1219), - [anon_sym_const] = ACTIONS(1219), - [anon_sym_constexpr] = ACTIONS(1219), - [anon_sym_volatile] = ACTIONS(1219), - [anon_sym_restrict] = ACTIONS(1219), - [anon_sym___restrict__] = ACTIONS(1219), - [anon_sym__Atomic] = ACTIONS(1219), - [anon_sym__Noreturn] = ACTIONS(1219), - [anon_sym_noreturn] = ACTIONS(1219), - [anon_sym_alignas] = ACTIONS(1219), - [anon_sym__Alignas] = ACTIONS(1219), - [sym_primitive_type] = ACTIONS(1219), - [anon_sym_enum] = ACTIONS(1219), - [anon_sym_struct] = ACTIONS(1219), - [anon_sym_union] = ACTIONS(1219), - [anon_sym_if] = ACTIONS(1219), - [anon_sym_else] = ACTIONS(1219), - [anon_sym_switch] = ACTIONS(1219), - [anon_sym_case] = ACTIONS(1219), - [anon_sym_default] = ACTIONS(1219), - [anon_sym_while] = ACTIONS(1219), - [anon_sym_do] = ACTIONS(1219), - [anon_sym_for] = ACTIONS(1219), - [anon_sym_return] = ACTIONS(1219), - [anon_sym_break] = ACTIONS(1219), - [anon_sym_continue] = ACTIONS(1219), - [anon_sym_goto] = ACTIONS(1219), - [anon_sym___try] = ACTIONS(1219), - [anon_sym___leave] = ACTIONS(1219), - [anon_sym_DASH_DASH] = ACTIONS(1221), - [anon_sym_PLUS_PLUS] = ACTIONS(1221), - [anon_sym_sizeof] = ACTIONS(1219), - [anon_sym___alignof__] = ACTIONS(1219), - [anon_sym___alignof] = ACTIONS(1219), - [anon_sym__alignof] = ACTIONS(1219), - [anon_sym_alignof] = ACTIONS(1219), - [anon_sym__Alignof] = ACTIONS(1219), - [anon_sym_offsetof] = ACTIONS(1219), - [anon_sym__Generic] = ACTIONS(1219), - [anon_sym_asm] = ACTIONS(1219), - [anon_sym___asm__] = ACTIONS(1219), - [sym_number_literal] = ACTIONS(1221), - [anon_sym_L_SQUOTE] = ACTIONS(1221), - [anon_sym_u_SQUOTE] = ACTIONS(1221), - [anon_sym_U_SQUOTE] = ACTIONS(1221), - [anon_sym_u8_SQUOTE] = ACTIONS(1221), - [anon_sym_SQUOTE] = ACTIONS(1221), - [anon_sym_L_DQUOTE] = ACTIONS(1221), - [anon_sym_u_DQUOTE] = ACTIONS(1221), - [anon_sym_U_DQUOTE] = ACTIONS(1221), - [anon_sym_u8_DQUOTE] = ACTIONS(1221), - [anon_sym_DQUOTE] = ACTIONS(1221), - [sym_true] = ACTIONS(1219), - [sym_false] = ACTIONS(1219), - [anon_sym_NULL] = ACTIONS(1219), - [anon_sym_nullptr] = ACTIONS(1219), - [sym_comment] = ACTIONS(3), - }, - [167] = { - [sym_identifier] = ACTIONS(1191), - [aux_sym_preproc_include_token1] = ACTIONS(1191), - [aux_sym_preproc_def_token1] = ACTIONS(1191), - [aux_sym_preproc_if_token1] = ACTIONS(1191), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1191), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1191), - [sym_preproc_directive] = ACTIONS(1191), - [anon_sym_LPAREN2] = ACTIONS(1193), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_TILDE] = ACTIONS(1193), - [anon_sym_DASH] = ACTIONS(1191), - [anon_sym_PLUS] = ACTIONS(1191), - [anon_sym_STAR] = ACTIONS(1193), - [anon_sym_AMP] = ACTIONS(1193), - [anon_sym_SEMI] = ACTIONS(1193), - [anon_sym___extension__] = ACTIONS(1191), - [anon_sym_typedef] = ACTIONS(1191), - [anon_sym_extern] = ACTIONS(1191), - [anon_sym___attribute__] = ACTIONS(1191), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1193), - [anon_sym___declspec] = ACTIONS(1191), - [anon_sym___cdecl] = ACTIONS(1191), - [anon_sym___clrcall] = ACTIONS(1191), - [anon_sym___stdcall] = ACTIONS(1191), - [anon_sym___fastcall] = ACTIONS(1191), - [anon_sym___thiscall] = ACTIONS(1191), - [anon_sym___vectorcall] = ACTIONS(1191), - [anon_sym_LBRACE] = ACTIONS(1193), - [anon_sym_RBRACE] = ACTIONS(1193), - [anon_sym_signed] = ACTIONS(1191), - [anon_sym_unsigned] = ACTIONS(1191), - [anon_sym_long] = ACTIONS(1191), - [anon_sym_short] = ACTIONS(1191), - [anon_sym_static] = ACTIONS(1191), - [anon_sym_auto] = ACTIONS(1191), - [anon_sym_register] = ACTIONS(1191), - [anon_sym_inline] = ACTIONS(1191), - [anon_sym___inline] = ACTIONS(1191), - [anon_sym___inline__] = ACTIONS(1191), - [anon_sym___forceinline] = ACTIONS(1191), - [anon_sym_thread_local] = ACTIONS(1191), - [anon_sym___thread] = ACTIONS(1191), - [anon_sym_const] = ACTIONS(1191), - [anon_sym_constexpr] = ACTIONS(1191), - [anon_sym_volatile] = ACTIONS(1191), - [anon_sym_restrict] = ACTIONS(1191), - [anon_sym___restrict__] = ACTIONS(1191), - [anon_sym__Atomic] = ACTIONS(1191), - [anon_sym__Noreturn] = ACTIONS(1191), - [anon_sym_noreturn] = ACTIONS(1191), - [anon_sym_alignas] = ACTIONS(1191), - [anon_sym__Alignas] = ACTIONS(1191), - [sym_primitive_type] = ACTIONS(1191), - [anon_sym_enum] = ACTIONS(1191), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_union] = ACTIONS(1191), - [anon_sym_if] = ACTIONS(1191), - [anon_sym_else] = ACTIONS(1191), - [anon_sym_switch] = ACTIONS(1191), - [anon_sym_case] = ACTIONS(1191), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_while] = ACTIONS(1191), - [anon_sym_do] = ACTIONS(1191), - [anon_sym_for] = ACTIONS(1191), - [anon_sym_return] = ACTIONS(1191), - [anon_sym_break] = ACTIONS(1191), - [anon_sym_continue] = ACTIONS(1191), - [anon_sym_goto] = ACTIONS(1191), - [anon_sym___try] = ACTIONS(1191), - [anon_sym___leave] = ACTIONS(1191), - [anon_sym_DASH_DASH] = ACTIONS(1193), - [anon_sym_PLUS_PLUS] = ACTIONS(1193), - [anon_sym_sizeof] = ACTIONS(1191), - [anon_sym___alignof__] = ACTIONS(1191), - [anon_sym___alignof] = ACTIONS(1191), - [anon_sym__alignof] = ACTIONS(1191), - [anon_sym_alignof] = ACTIONS(1191), - [anon_sym__Alignof] = ACTIONS(1191), - [anon_sym_offsetof] = ACTIONS(1191), - [anon_sym__Generic] = ACTIONS(1191), - [anon_sym_asm] = ACTIONS(1191), - [anon_sym___asm__] = ACTIONS(1191), - [sym_number_literal] = ACTIONS(1193), - [anon_sym_L_SQUOTE] = ACTIONS(1193), - [anon_sym_u_SQUOTE] = ACTIONS(1193), - [anon_sym_U_SQUOTE] = ACTIONS(1193), - [anon_sym_u8_SQUOTE] = ACTIONS(1193), - [anon_sym_SQUOTE] = ACTIONS(1193), - [anon_sym_L_DQUOTE] = ACTIONS(1193), - [anon_sym_u_DQUOTE] = ACTIONS(1193), - [anon_sym_U_DQUOTE] = ACTIONS(1193), - [anon_sym_u8_DQUOTE] = ACTIONS(1193), - [anon_sym_DQUOTE] = ACTIONS(1193), - [sym_true] = ACTIONS(1191), - [sym_false] = ACTIONS(1191), - [anon_sym_NULL] = ACTIONS(1191), - [anon_sym_nullptr] = ACTIONS(1191), + [152] = { + [sym_identifier] = ACTIONS(1227), + [aux_sym_preproc_include_token1] = ACTIONS(1227), + [aux_sym_preproc_def_token1] = ACTIONS(1227), + [aux_sym_preproc_if_token1] = ACTIONS(1227), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1227), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1227), + [sym_preproc_directive] = ACTIONS(1227), + [anon_sym_LPAREN2] = ACTIONS(1229), + [anon_sym_BANG] = ACTIONS(1229), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1227), + [anon_sym_STAR] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1229), + [anon_sym_SEMI] = ACTIONS(1229), + [anon_sym___extension__] = ACTIONS(1227), + [anon_sym_typedef] = ACTIONS(1227), + [anon_sym_extern] = ACTIONS(1227), + [anon_sym___attribute__] = ACTIONS(1227), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1229), + [anon_sym___declspec] = ACTIONS(1227), + [anon_sym___cdecl] = ACTIONS(1227), + [anon_sym___clrcall] = ACTIONS(1227), + [anon_sym___stdcall] = ACTIONS(1227), + [anon_sym___fastcall] = ACTIONS(1227), + [anon_sym___thiscall] = ACTIONS(1227), + [anon_sym___vectorcall] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(1229), + [anon_sym_RBRACE] = ACTIONS(1229), + [anon_sym_signed] = ACTIONS(1227), + [anon_sym_unsigned] = ACTIONS(1227), + [anon_sym_long] = ACTIONS(1227), + [anon_sym_short] = ACTIONS(1227), + [anon_sym_static] = ACTIONS(1227), + [anon_sym_auto] = ACTIONS(1227), + [anon_sym_register] = ACTIONS(1227), + [anon_sym_inline] = ACTIONS(1227), + [anon_sym___inline] = ACTIONS(1227), + [anon_sym___inline__] = ACTIONS(1227), + [anon_sym___forceinline] = ACTIONS(1227), + [anon_sym_thread_local] = ACTIONS(1227), + [anon_sym___thread] = ACTIONS(1227), + [anon_sym_const] = ACTIONS(1227), + [anon_sym_constexpr] = ACTIONS(1227), + [anon_sym_volatile] = ACTIONS(1227), + [anon_sym_restrict] = ACTIONS(1227), + [anon_sym___restrict__] = ACTIONS(1227), + [anon_sym__Atomic] = ACTIONS(1227), + [anon_sym__Noreturn] = ACTIONS(1227), + [anon_sym_noreturn] = ACTIONS(1227), + [anon_sym_alignas] = ACTIONS(1227), + [anon_sym__Alignas] = ACTIONS(1227), + [sym_primitive_type] = ACTIONS(1227), + [anon_sym_enum] = ACTIONS(1227), + [anon_sym_struct] = ACTIONS(1227), + [anon_sym_union] = ACTIONS(1227), + [anon_sym_if] = ACTIONS(1227), + [anon_sym_else] = ACTIONS(1227), + [anon_sym_switch] = ACTIONS(1227), + [anon_sym_case] = ACTIONS(1227), + [anon_sym_default] = ACTIONS(1227), + [anon_sym_while] = ACTIONS(1227), + [anon_sym_do] = ACTIONS(1227), + [anon_sym_for] = ACTIONS(1227), + [anon_sym_return] = ACTIONS(1227), + [anon_sym_break] = ACTIONS(1227), + [anon_sym_continue] = ACTIONS(1227), + [anon_sym_goto] = ACTIONS(1227), + [anon_sym___try] = ACTIONS(1227), + [anon_sym___leave] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1229), + [anon_sym_PLUS_PLUS] = ACTIONS(1229), + [anon_sym_sizeof] = ACTIONS(1227), + [anon_sym___alignof__] = ACTIONS(1227), + [anon_sym___alignof] = ACTIONS(1227), + [anon_sym__alignof] = ACTIONS(1227), + [anon_sym_alignof] = ACTIONS(1227), + [anon_sym__Alignof] = ACTIONS(1227), + [anon_sym_offsetof] = ACTIONS(1227), + [anon_sym__Generic] = ACTIONS(1227), + [anon_sym_asm] = ACTIONS(1227), + [anon_sym___asm__] = ACTIONS(1227), + [sym_number_literal] = ACTIONS(1229), + [anon_sym_L_SQUOTE] = ACTIONS(1229), + [anon_sym_u_SQUOTE] = ACTIONS(1229), + [anon_sym_U_SQUOTE] = ACTIONS(1229), + [anon_sym_u8_SQUOTE] = ACTIONS(1229), + [anon_sym_SQUOTE] = ACTIONS(1229), + [anon_sym_L_DQUOTE] = ACTIONS(1229), + [anon_sym_u_DQUOTE] = ACTIONS(1229), + [anon_sym_U_DQUOTE] = ACTIONS(1229), + [anon_sym_u8_DQUOTE] = ACTIONS(1229), + [anon_sym_DQUOTE] = ACTIONS(1229), + [sym_true] = ACTIONS(1227), + [sym_false] = ACTIONS(1227), + [anon_sym_NULL] = ACTIONS(1227), + [anon_sym_nullptr] = ACTIONS(1227), [sym_comment] = ACTIONS(3), }, - [168] = { - [sym_identifier] = ACTIONS(1187), - [aux_sym_preproc_include_token1] = ACTIONS(1187), - [aux_sym_preproc_def_token1] = ACTIONS(1187), - [aux_sym_preproc_if_token1] = ACTIONS(1187), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1187), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1187), - [sym_preproc_directive] = ACTIONS(1187), - [anon_sym_LPAREN2] = ACTIONS(1189), - [anon_sym_BANG] = ACTIONS(1189), - [anon_sym_TILDE] = ACTIONS(1189), - [anon_sym_DASH] = ACTIONS(1187), - [anon_sym_PLUS] = ACTIONS(1187), - [anon_sym_STAR] = ACTIONS(1189), - [anon_sym_AMP] = ACTIONS(1189), - [anon_sym_SEMI] = ACTIONS(1189), - [anon_sym___extension__] = ACTIONS(1187), - [anon_sym_typedef] = ACTIONS(1187), - [anon_sym_extern] = ACTIONS(1187), - [anon_sym___attribute__] = ACTIONS(1187), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1189), - [anon_sym___declspec] = ACTIONS(1187), - [anon_sym___cdecl] = ACTIONS(1187), - [anon_sym___clrcall] = ACTIONS(1187), - [anon_sym___stdcall] = ACTIONS(1187), - [anon_sym___fastcall] = ACTIONS(1187), - [anon_sym___thiscall] = ACTIONS(1187), - [anon_sym___vectorcall] = ACTIONS(1187), - [anon_sym_LBRACE] = ACTIONS(1189), - [anon_sym_RBRACE] = ACTIONS(1189), - [anon_sym_signed] = ACTIONS(1187), - [anon_sym_unsigned] = ACTIONS(1187), - [anon_sym_long] = ACTIONS(1187), - [anon_sym_short] = ACTIONS(1187), - [anon_sym_static] = ACTIONS(1187), - [anon_sym_auto] = ACTIONS(1187), - [anon_sym_register] = ACTIONS(1187), - [anon_sym_inline] = ACTIONS(1187), - [anon_sym___inline] = ACTIONS(1187), - [anon_sym___inline__] = ACTIONS(1187), - [anon_sym___forceinline] = ACTIONS(1187), - [anon_sym_thread_local] = ACTIONS(1187), - [anon_sym___thread] = ACTIONS(1187), - [anon_sym_const] = ACTIONS(1187), - [anon_sym_constexpr] = ACTIONS(1187), - [anon_sym_volatile] = ACTIONS(1187), - [anon_sym_restrict] = ACTIONS(1187), - [anon_sym___restrict__] = ACTIONS(1187), - [anon_sym__Atomic] = ACTIONS(1187), - [anon_sym__Noreturn] = ACTIONS(1187), - [anon_sym_noreturn] = ACTIONS(1187), - [anon_sym_alignas] = ACTIONS(1187), - [anon_sym__Alignas] = ACTIONS(1187), - [sym_primitive_type] = ACTIONS(1187), - [anon_sym_enum] = ACTIONS(1187), - [anon_sym_struct] = ACTIONS(1187), - [anon_sym_union] = ACTIONS(1187), - [anon_sym_if] = ACTIONS(1187), - [anon_sym_else] = ACTIONS(1187), - [anon_sym_switch] = ACTIONS(1187), - [anon_sym_case] = ACTIONS(1187), - [anon_sym_default] = ACTIONS(1187), - [anon_sym_while] = ACTIONS(1187), - [anon_sym_do] = ACTIONS(1187), - [anon_sym_for] = ACTIONS(1187), - [anon_sym_return] = ACTIONS(1187), - [anon_sym_break] = ACTIONS(1187), - [anon_sym_continue] = ACTIONS(1187), - [anon_sym_goto] = ACTIONS(1187), - [anon_sym___try] = ACTIONS(1187), - [anon_sym___leave] = ACTIONS(1187), - [anon_sym_DASH_DASH] = ACTIONS(1189), - [anon_sym_PLUS_PLUS] = ACTIONS(1189), - [anon_sym_sizeof] = ACTIONS(1187), - [anon_sym___alignof__] = ACTIONS(1187), - [anon_sym___alignof] = ACTIONS(1187), - [anon_sym__alignof] = ACTIONS(1187), - [anon_sym_alignof] = ACTIONS(1187), - [anon_sym__Alignof] = ACTIONS(1187), - [anon_sym_offsetof] = ACTIONS(1187), - [anon_sym__Generic] = ACTIONS(1187), - [anon_sym_asm] = ACTIONS(1187), - [anon_sym___asm__] = ACTIONS(1187), - [sym_number_literal] = ACTIONS(1189), - [anon_sym_L_SQUOTE] = ACTIONS(1189), - [anon_sym_u_SQUOTE] = ACTIONS(1189), - [anon_sym_U_SQUOTE] = ACTIONS(1189), - [anon_sym_u8_SQUOTE] = ACTIONS(1189), - [anon_sym_SQUOTE] = ACTIONS(1189), - [anon_sym_L_DQUOTE] = ACTIONS(1189), - [anon_sym_u_DQUOTE] = ACTIONS(1189), - [anon_sym_U_DQUOTE] = ACTIONS(1189), - [anon_sym_u8_DQUOTE] = ACTIONS(1189), - [anon_sym_DQUOTE] = ACTIONS(1189), - [sym_true] = ACTIONS(1187), - [sym_false] = ACTIONS(1187), - [anon_sym_NULL] = ACTIONS(1187), - [anon_sym_nullptr] = ACTIONS(1187), + [153] = { + [ts_builtin_sym_end] = ACTIONS(1181), + [sym_identifier] = ACTIONS(1179), + [aux_sym_preproc_include_token1] = ACTIONS(1179), + [aux_sym_preproc_def_token1] = ACTIONS(1179), + [aux_sym_preproc_if_token1] = ACTIONS(1179), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1179), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1179), + [sym_preproc_directive] = ACTIONS(1179), + [anon_sym_LPAREN2] = ACTIONS(1181), + [anon_sym_BANG] = ACTIONS(1181), + [anon_sym_TILDE] = ACTIONS(1181), + [anon_sym_DASH] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1181), + [anon_sym_AMP] = ACTIONS(1181), + [anon_sym_SEMI] = ACTIONS(1181), + [anon_sym___extension__] = ACTIONS(1179), + [anon_sym_typedef] = ACTIONS(1179), + [anon_sym_extern] = ACTIONS(1179), + [anon_sym___attribute__] = ACTIONS(1179), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1181), + [anon_sym___declspec] = ACTIONS(1179), + [anon_sym___cdecl] = ACTIONS(1179), + [anon_sym___clrcall] = ACTIONS(1179), + [anon_sym___stdcall] = ACTIONS(1179), + [anon_sym___fastcall] = ACTIONS(1179), + [anon_sym___thiscall] = ACTIONS(1179), + [anon_sym___vectorcall] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_signed] = ACTIONS(1179), + [anon_sym_unsigned] = ACTIONS(1179), + [anon_sym_long] = ACTIONS(1179), + [anon_sym_short] = ACTIONS(1179), + [anon_sym_static] = ACTIONS(1179), + [anon_sym_auto] = ACTIONS(1179), + [anon_sym_register] = ACTIONS(1179), + [anon_sym_inline] = ACTIONS(1179), + [anon_sym___inline] = ACTIONS(1179), + [anon_sym___inline__] = ACTIONS(1179), + [anon_sym___forceinline] = ACTIONS(1179), + [anon_sym_thread_local] = ACTIONS(1179), + [anon_sym___thread] = ACTIONS(1179), + [anon_sym_const] = ACTIONS(1179), + [anon_sym_constexpr] = ACTIONS(1179), + [anon_sym_volatile] = ACTIONS(1179), + [anon_sym_restrict] = ACTIONS(1179), + [anon_sym___restrict__] = ACTIONS(1179), + [anon_sym__Atomic] = ACTIONS(1179), + [anon_sym__Noreturn] = ACTIONS(1179), + [anon_sym_noreturn] = ACTIONS(1179), + [anon_sym_alignas] = ACTIONS(1179), + [anon_sym__Alignas] = ACTIONS(1179), + [sym_primitive_type] = ACTIONS(1179), + [anon_sym_enum] = ACTIONS(1179), + [anon_sym_struct] = ACTIONS(1179), + [anon_sym_union] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_else] = ACTIONS(1179), + [anon_sym_switch] = ACTIONS(1179), + [anon_sym_case] = ACTIONS(1179), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_goto] = ACTIONS(1179), + [anon_sym___try] = ACTIONS(1179), + [anon_sym___leave] = ACTIONS(1179), + [anon_sym_DASH_DASH] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(1181), + [anon_sym_sizeof] = ACTIONS(1179), + [anon_sym___alignof__] = ACTIONS(1179), + [anon_sym___alignof] = ACTIONS(1179), + [anon_sym__alignof] = ACTIONS(1179), + [anon_sym_alignof] = ACTIONS(1179), + [anon_sym__Alignof] = ACTIONS(1179), + [anon_sym_offsetof] = ACTIONS(1179), + [anon_sym__Generic] = ACTIONS(1179), + [anon_sym_asm] = ACTIONS(1179), + [anon_sym___asm__] = ACTIONS(1179), + [sym_number_literal] = ACTIONS(1181), + [anon_sym_L_SQUOTE] = ACTIONS(1181), + [anon_sym_u_SQUOTE] = ACTIONS(1181), + [anon_sym_U_SQUOTE] = ACTIONS(1181), + [anon_sym_u8_SQUOTE] = ACTIONS(1181), + [anon_sym_SQUOTE] = ACTIONS(1181), + [anon_sym_L_DQUOTE] = ACTIONS(1181), + [anon_sym_u_DQUOTE] = ACTIONS(1181), + [anon_sym_U_DQUOTE] = ACTIONS(1181), + [anon_sym_u8_DQUOTE] = ACTIONS(1181), + [anon_sym_DQUOTE] = ACTIONS(1181), + [sym_true] = ACTIONS(1179), + [sym_false] = ACTIONS(1179), + [anon_sym_NULL] = ACTIONS(1179), + [anon_sym_nullptr] = ACTIONS(1179), [sym_comment] = ACTIONS(3), }, - [169] = { + [154] = { + [sym_identifier] = ACTIONS(1235), + [aux_sym_preproc_include_token1] = ACTIONS(1235), + [aux_sym_preproc_def_token1] = ACTIONS(1235), + [aux_sym_preproc_if_token1] = ACTIONS(1235), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1235), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1235), + [sym_preproc_directive] = ACTIONS(1235), + [anon_sym_LPAREN2] = ACTIONS(1237), + [anon_sym_BANG] = ACTIONS(1237), + [anon_sym_TILDE] = ACTIONS(1237), + [anon_sym_DASH] = ACTIONS(1235), + [anon_sym_PLUS] = ACTIONS(1235), + [anon_sym_STAR] = ACTIONS(1237), + [anon_sym_AMP] = ACTIONS(1237), + [anon_sym_SEMI] = ACTIONS(1237), + [anon_sym___extension__] = ACTIONS(1235), + [anon_sym_typedef] = ACTIONS(1235), + [anon_sym_extern] = ACTIONS(1235), + [anon_sym___attribute__] = ACTIONS(1235), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1237), + [anon_sym___declspec] = ACTIONS(1235), + [anon_sym___cdecl] = ACTIONS(1235), + [anon_sym___clrcall] = ACTIONS(1235), + [anon_sym___stdcall] = ACTIONS(1235), + [anon_sym___fastcall] = ACTIONS(1235), + [anon_sym___thiscall] = ACTIONS(1235), + [anon_sym___vectorcall] = ACTIONS(1235), + [anon_sym_LBRACE] = ACTIONS(1237), + [anon_sym_RBRACE] = ACTIONS(1237), + [anon_sym_signed] = ACTIONS(1235), + [anon_sym_unsigned] = ACTIONS(1235), + [anon_sym_long] = ACTIONS(1235), + [anon_sym_short] = ACTIONS(1235), + [anon_sym_static] = ACTIONS(1235), + [anon_sym_auto] = ACTIONS(1235), + [anon_sym_register] = ACTIONS(1235), + [anon_sym_inline] = ACTIONS(1235), + [anon_sym___inline] = ACTIONS(1235), + [anon_sym___inline__] = ACTIONS(1235), + [anon_sym___forceinline] = ACTIONS(1235), + [anon_sym_thread_local] = ACTIONS(1235), + [anon_sym___thread] = ACTIONS(1235), + [anon_sym_const] = ACTIONS(1235), + [anon_sym_constexpr] = ACTIONS(1235), + [anon_sym_volatile] = ACTIONS(1235), + [anon_sym_restrict] = ACTIONS(1235), + [anon_sym___restrict__] = ACTIONS(1235), + [anon_sym__Atomic] = ACTIONS(1235), + [anon_sym__Noreturn] = ACTIONS(1235), + [anon_sym_noreturn] = ACTIONS(1235), + [anon_sym_alignas] = ACTIONS(1235), + [anon_sym__Alignas] = 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___try] = ACTIONS(1235), + [anon_sym___leave] = ACTIONS(1235), + [anon_sym_DASH_DASH] = ACTIONS(1237), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_sizeof] = ACTIONS(1235), + [anon_sym___alignof__] = ACTIONS(1235), + [anon_sym___alignof] = ACTIONS(1235), + [anon_sym__alignof] = ACTIONS(1235), + [anon_sym_alignof] = ACTIONS(1235), + [anon_sym__Alignof] = ACTIONS(1235), + [anon_sym_offsetof] = ACTIONS(1235), + [anon_sym__Generic] = ACTIONS(1235), + [anon_sym_asm] = ACTIONS(1235), + [anon_sym___asm__] = ACTIONS(1235), + [sym_number_literal] = ACTIONS(1237), + [anon_sym_L_SQUOTE] = ACTIONS(1237), + [anon_sym_u_SQUOTE] = ACTIONS(1237), + [anon_sym_U_SQUOTE] = ACTIONS(1237), + [anon_sym_u8_SQUOTE] = ACTIONS(1237), + [anon_sym_SQUOTE] = ACTIONS(1237), + [anon_sym_L_DQUOTE] = ACTIONS(1237), + [anon_sym_u_DQUOTE] = ACTIONS(1237), + [anon_sym_U_DQUOTE] = ACTIONS(1237), + [anon_sym_u8_DQUOTE] = ACTIONS(1237), + [anon_sym_DQUOTE] = ACTIONS(1237), + [sym_true] = ACTIONS(1235), + [sym_false] = ACTIONS(1235), + [anon_sym_NULL] = ACTIONS(1235), + [anon_sym_nullptr] = ACTIONS(1235), + [sym_comment] = ACTIONS(3), + }, + [155] = { + [sym_identifier] = ACTIONS(1179), + [aux_sym_preproc_include_token1] = ACTIONS(1179), + [aux_sym_preproc_def_token1] = ACTIONS(1179), + [aux_sym_preproc_if_token1] = ACTIONS(1179), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1179), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1179), + [sym_preproc_directive] = ACTIONS(1179), + [anon_sym_LPAREN2] = ACTIONS(1181), + [anon_sym_BANG] = ACTIONS(1181), + [anon_sym_TILDE] = ACTIONS(1181), + [anon_sym_DASH] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1181), + [anon_sym_AMP] = ACTIONS(1181), + [anon_sym_SEMI] = ACTIONS(1181), + [anon_sym___extension__] = ACTIONS(1179), + [anon_sym_typedef] = ACTIONS(1179), + [anon_sym_extern] = ACTIONS(1179), + [anon_sym___attribute__] = ACTIONS(1179), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1181), + [anon_sym___declspec] = ACTIONS(1179), + [anon_sym___cdecl] = ACTIONS(1179), + [anon_sym___clrcall] = ACTIONS(1179), + [anon_sym___stdcall] = ACTIONS(1179), + [anon_sym___fastcall] = ACTIONS(1179), + [anon_sym___thiscall] = ACTIONS(1179), + [anon_sym___vectorcall] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_RBRACE] = ACTIONS(1181), + [anon_sym_signed] = ACTIONS(1179), + [anon_sym_unsigned] = ACTIONS(1179), + [anon_sym_long] = ACTIONS(1179), + [anon_sym_short] = ACTIONS(1179), + [anon_sym_static] = ACTIONS(1179), + [anon_sym_auto] = ACTIONS(1179), + [anon_sym_register] = ACTIONS(1179), + [anon_sym_inline] = ACTIONS(1179), + [anon_sym___inline] = ACTIONS(1179), + [anon_sym___inline__] = ACTIONS(1179), + [anon_sym___forceinline] = ACTIONS(1179), + [anon_sym_thread_local] = ACTIONS(1179), + [anon_sym___thread] = ACTIONS(1179), + [anon_sym_const] = ACTIONS(1179), + [anon_sym_constexpr] = ACTIONS(1179), + [anon_sym_volatile] = ACTIONS(1179), + [anon_sym_restrict] = ACTIONS(1179), + [anon_sym___restrict__] = ACTIONS(1179), + [anon_sym__Atomic] = ACTIONS(1179), + [anon_sym__Noreturn] = ACTIONS(1179), + [anon_sym_noreturn] = ACTIONS(1179), + [anon_sym_alignas] = ACTIONS(1179), + [anon_sym__Alignas] = ACTIONS(1179), + [sym_primitive_type] = ACTIONS(1179), + [anon_sym_enum] = ACTIONS(1179), + [anon_sym_struct] = ACTIONS(1179), + [anon_sym_union] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_else] = ACTIONS(1179), + [anon_sym_switch] = ACTIONS(1179), + [anon_sym_case] = ACTIONS(1179), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_goto] = ACTIONS(1179), + [anon_sym___try] = ACTIONS(1179), + [anon_sym___leave] = ACTIONS(1179), + [anon_sym_DASH_DASH] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(1181), + [anon_sym_sizeof] = ACTIONS(1179), + [anon_sym___alignof__] = ACTIONS(1179), + [anon_sym___alignof] = ACTIONS(1179), + [anon_sym__alignof] = ACTIONS(1179), + [anon_sym_alignof] = ACTIONS(1179), + [anon_sym__Alignof] = ACTIONS(1179), + [anon_sym_offsetof] = ACTIONS(1179), + [anon_sym__Generic] = ACTIONS(1179), + [anon_sym_asm] = ACTIONS(1179), + [anon_sym___asm__] = ACTIONS(1179), + [sym_number_literal] = ACTIONS(1181), + [anon_sym_L_SQUOTE] = ACTIONS(1181), + [anon_sym_u_SQUOTE] = ACTIONS(1181), + [anon_sym_U_SQUOTE] = ACTIONS(1181), + [anon_sym_u8_SQUOTE] = ACTIONS(1181), + [anon_sym_SQUOTE] = ACTIONS(1181), + [anon_sym_L_DQUOTE] = ACTIONS(1181), + [anon_sym_u_DQUOTE] = ACTIONS(1181), + [anon_sym_U_DQUOTE] = ACTIONS(1181), + [anon_sym_u8_DQUOTE] = ACTIONS(1181), + [anon_sym_DQUOTE] = ACTIONS(1181), + [sym_true] = ACTIONS(1179), + [sym_false] = ACTIONS(1179), + [anon_sym_NULL] = ACTIONS(1179), + [anon_sym_nullptr] = ACTIONS(1179), + [sym_comment] = ACTIONS(3), + }, + [156] = { + [ts_builtin_sym_end] = ACTIONS(1213), [sym_identifier] = ACTIONS(1211), [aux_sym_preproc_include_token1] = ACTIONS(1211), [aux_sym_preproc_def_token1] = ACTIONS(1211), @@ -33506,7 +32090,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1211), [anon_sym___vectorcall] = ACTIONS(1211), [anon_sym_LBRACE] = ACTIONS(1213), - [anon_sym_RBRACE] = ACTIONS(1213), [anon_sym_signed] = ACTIONS(1211), [anon_sym_unsigned] = ACTIONS(1211), [anon_sym_long] = ACTIONS(1211), @@ -33577,812 +32160,412 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1211), [sym_comment] = ACTIONS(3), }, - [170] = { - [sym_identifier] = ACTIONS(1143), - [aux_sym_preproc_include_token1] = ACTIONS(1143), - [aux_sym_preproc_def_token1] = ACTIONS(1143), - [aux_sym_preproc_if_token1] = ACTIONS(1143), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1143), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1143), - [sym_preproc_directive] = ACTIONS(1143), - [anon_sym_LPAREN2] = ACTIONS(1145), - [anon_sym_BANG] = ACTIONS(1145), - [anon_sym_TILDE] = ACTIONS(1145), - [anon_sym_DASH] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_STAR] = ACTIONS(1145), - [anon_sym_AMP] = ACTIONS(1145), - [anon_sym_SEMI] = ACTIONS(1145), - [anon_sym___extension__] = ACTIONS(1143), - [anon_sym_typedef] = ACTIONS(1143), - [anon_sym_extern] = ACTIONS(1143), - [anon_sym___attribute__] = ACTIONS(1143), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), - [anon_sym___declspec] = ACTIONS(1143), - [anon_sym___cdecl] = ACTIONS(1143), - [anon_sym___clrcall] = ACTIONS(1143), - [anon_sym___stdcall] = ACTIONS(1143), - [anon_sym___fastcall] = ACTIONS(1143), - [anon_sym___thiscall] = ACTIONS(1143), - [anon_sym___vectorcall] = ACTIONS(1143), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_RBRACE] = ACTIONS(1145), - [anon_sym_signed] = ACTIONS(1143), - [anon_sym_unsigned] = ACTIONS(1143), - [anon_sym_long] = ACTIONS(1143), - [anon_sym_short] = ACTIONS(1143), - [anon_sym_static] = ACTIONS(1143), - [anon_sym_auto] = ACTIONS(1143), - [anon_sym_register] = ACTIONS(1143), - [anon_sym_inline] = ACTIONS(1143), - [anon_sym___inline] = ACTIONS(1143), - [anon_sym___inline__] = ACTIONS(1143), - [anon_sym___forceinline] = ACTIONS(1143), - [anon_sym_thread_local] = ACTIONS(1143), - [anon_sym___thread] = ACTIONS(1143), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_constexpr] = ACTIONS(1143), - [anon_sym_volatile] = ACTIONS(1143), - [anon_sym_restrict] = ACTIONS(1143), - [anon_sym___restrict__] = ACTIONS(1143), - [anon_sym__Atomic] = ACTIONS(1143), - [anon_sym__Noreturn] = ACTIONS(1143), - [anon_sym_noreturn] = ACTIONS(1143), - [anon_sym_alignas] = ACTIONS(1143), - [anon_sym__Alignas] = ACTIONS(1143), - [sym_primitive_type] = ACTIONS(1143), - [anon_sym_enum] = ACTIONS(1143), - [anon_sym_struct] = ACTIONS(1143), - [anon_sym_union] = ACTIONS(1143), - [anon_sym_if] = ACTIONS(1143), - [anon_sym_else] = ACTIONS(1143), - [anon_sym_switch] = ACTIONS(1143), - [anon_sym_case] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1143), - [anon_sym_while] = ACTIONS(1143), - [anon_sym_do] = ACTIONS(1143), - [anon_sym_for] = ACTIONS(1143), - [anon_sym_return] = ACTIONS(1143), - [anon_sym_break] = ACTIONS(1143), - [anon_sym_continue] = ACTIONS(1143), - [anon_sym_goto] = ACTIONS(1143), - [anon_sym___try] = ACTIONS(1143), - [anon_sym___leave] = ACTIONS(1143), - [anon_sym_DASH_DASH] = ACTIONS(1145), - [anon_sym_PLUS_PLUS] = ACTIONS(1145), - [anon_sym_sizeof] = ACTIONS(1143), - [anon_sym___alignof__] = ACTIONS(1143), - [anon_sym___alignof] = ACTIONS(1143), - [anon_sym__alignof] = ACTIONS(1143), - [anon_sym_alignof] = ACTIONS(1143), - [anon_sym__Alignof] = ACTIONS(1143), - [anon_sym_offsetof] = ACTIONS(1143), - [anon_sym__Generic] = ACTIONS(1143), - [anon_sym_asm] = ACTIONS(1143), - [anon_sym___asm__] = ACTIONS(1143), - [sym_number_literal] = ACTIONS(1145), - [anon_sym_L_SQUOTE] = ACTIONS(1145), - [anon_sym_u_SQUOTE] = ACTIONS(1145), - [anon_sym_U_SQUOTE] = ACTIONS(1145), - [anon_sym_u8_SQUOTE] = ACTIONS(1145), - [anon_sym_SQUOTE] = ACTIONS(1145), - [anon_sym_L_DQUOTE] = ACTIONS(1145), - [anon_sym_u_DQUOTE] = ACTIONS(1145), - [anon_sym_U_DQUOTE] = ACTIONS(1145), - [anon_sym_u8_DQUOTE] = ACTIONS(1145), - [anon_sym_DQUOTE] = ACTIONS(1145), - [sym_true] = ACTIONS(1143), - [sym_false] = ACTIONS(1143), - [anon_sym_NULL] = ACTIONS(1143), - [anon_sym_nullptr] = ACTIONS(1143), - [sym_comment] = ACTIONS(3), - }, - [171] = { - [ts_builtin_sym_end] = ACTIONS(1149), - [sym_identifier] = ACTIONS(1147), - [aux_sym_preproc_include_token1] = ACTIONS(1147), - [aux_sym_preproc_def_token1] = ACTIONS(1147), - [aux_sym_preproc_if_token1] = ACTIONS(1147), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1147), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1147), - [sym_preproc_directive] = ACTIONS(1147), - [anon_sym_LPAREN2] = ACTIONS(1149), - [anon_sym_BANG] = ACTIONS(1149), - [anon_sym_TILDE] = ACTIONS(1149), - [anon_sym_DASH] = ACTIONS(1147), - [anon_sym_PLUS] = ACTIONS(1147), - [anon_sym_STAR] = ACTIONS(1149), - [anon_sym_AMP] = ACTIONS(1149), - [anon_sym_SEMI] = ACTIONS(1149), - [anon_sym___extension__] = ACTIONS(1147), - [anon_sym_typedef] = ACTIONS(1147), - [anon_sym_extern] = ACTIONS(1147), - [anon_sym___attribute__] = ACTIONS(1147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1149), - [anon_sym___declspec] = ACTIONS(1147), - [anon_sym___cdecl] = ACTIONS(1147), - [anon_sym___clrcall] = ACTIONS(1147), - [anon_sym___stdcall] = ACTIONS(1147), - [anon_sym___fastcall] = ACTIONS(1147), - [anon_sym___thiscall] = ACTIONS(1147), - [anon_sym___vectorcall] = ACTIONS(1147), - [anon_sym_LBRACE] = ACTIONS(1149), - [anon_sym_signed] = ACTIONS(1147), - [anon_sym_unsigned] = ACTIONS(1147), - [anon_sym_long] = ACTIONS(1147), - [anon_sym_short] = ACTIONS(1147), - [anon_sym_static] = ACTIONS(1147), - [anon_sym_auto] = ACTIONS(1147), - [anon_sym_register] = ACTIONS(1147), - [anon_sym_inline] = ACTIONS(1147), - [anon_sym___inline] = ACTIONS(1147), - [anon_sym___inline__] = ACTIONS(1147), - [anon_sym___forceinline] = ACTIONS(1147), - [anon_sym_thread_local] = ACTIONS(1147), - [anon_sym___thread] = ACTIONS(1147), - [anon_sym_const] = ACTIONS(1147), - [anon_sym_constexpr] = ACTIONS(1147), - [anon_sym_volatile] = ACTIONS(1147), - [anon_sym_restrict] = ACTIONS(1147), - [anon_sym___restrict__] = ACTIONS(1147), - [anon_sym__Atomic] = ACTIONS(1147), - [anon_sym__Noreturn] = ACTIONS(1147), - [anon_sym_noreturn] = ACTIONS(1147), - [anon_sym_alignas] = ACTIONS(1147), - [anon_sym__Alignas] = ACTIONS(1147), - [sym_primitive_type] = ACTIONS(1147), - [anon_sym_enum] = ACTIONS(1147), - [anon_sym_struct] = ACTIONS(1147), - [anon_sym_union] = ACTIONS(1147), - [anon_sym_if] = ACTIONS(1147), - [anon_sym_else] = ACTIONS(1147), - [anon_sym_switch] = ACTIONS(1147), - [anon_sym_case] = ACTIONS(1147), - [anon_sym_default] = ACTIONS(1147), - [anon_sym_while] = ACTIONS(1147), - [anon_sym_do] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1147), - [anon_sym_return] = ACTIONS(1147), - [anon_sym_break] = ACTIONS(1147), - [anon_sym_continue] = ACTIONS(1147), - [anon_sym_goto] = ACTIONS(1147), - [anon_sym___try] = ACTIONS(1147), - [anon_sym___leave] = ACTIONS(1147), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_sizeof] = ACTIONS(1147), - [anon_sym___alignof__] = ACTIONS(1147), - [anon_sym___alignof] = ACTIONS(1147), - [anon_sym__alignof] = ACTIONS(1147), - [anon_sym_alignof] = ACTIONS(1147), - [anon_sym__Alignof] = ACTIONS(1147), - [anon_sym_offsetof] = ACTIONS(1147), - [anon_sym__Generic] = ACTIONS(1147), - [anon_sym_asm] = ACTIONS(1147), - [anon_sym___asm__] = ACTIONS(1147), - [sym_number_literal] = ACTIONS(1149), - [anon_sym_L_SQUOTE] = ACTIONS(1149), - [anon_sym_u_SQUOTE] = ACTIONS(1149), - [anon_sym_U_SQUOTE] = ACTIONS(1149), - [anon_sym_u8_SQUOTE] = ACTIONS(1149), - [anon_sym_SQUOTE] = ACTIONS(1149), - [anon_sym_L_DQUOTE] = ACTIONS(1149), - [anon_sym_u_DQUOTE] = ACTIONS(1149), - [anon_sym_U_DQUOTE] = ACTIONS(1149), - [anon_sym_u8_DQUOTE] = ACTIONS(1149), - [anon_sym_DQUOTE] = ACTIONS(1149), - [sym_true] = ACTIONS(1147), - [sym_false] = ACTIONS(1147), - [anon_sym_NULL] = ACTIONS(1147), - [anon_sym_nullptr] = ACTIONS(1147), - [sym_comment] = ACTIONS(3), - }, - [172] = { - [sym_identifier] = ACTIONS(1163), - [aux_sym_preproc_include_token1] = ACTIONS(1163), - [aux_sym_preproc_def_token1] = ACTIONS(1163), - [aux_sym_preproc_if_token1] = ACTIONS(1163), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1163), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1163), - [sym_preproc_directive] = ACTIONS(1163), - [anon_sym_LPAREN2] = ACTIONS(1165), - [anon_sym_BANG] = ACTIONS(1165), - [anon_sym_TILDE] = ACTIONS(1165), - [anon_sym_DASH] = ACTIONS(1163), - [anon_sym_PLUS] = ACTIONS(1163), - [anon_sym_STAR] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(1165), - [anon_sym_SEMI] = ACTIONS(1165), - [anon_sym___extension__] = ACTIONS(1163), - [anon_sym_typedef] = ACTIONS(1163), - [anon_sym_extern] = ACTIONS(1163), - [anon_sym___attribute__] = ACTIONS(1163), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1165), - [anon_sym___declspec] = ACTIONS(1163), - [anon_sym___cdecl] = ACTIONS(1163), - [anon_sym___clrcall] = ACTIONS(1163), - [anon_sym___stdcall] = ACTIONS(1163), - [anon_sym___fastcall] = ACTIONS(1163), - [anon_sym___thiscall] = ACTIONS(1163), - [anon_sym___vectorcall] = ACTIONS(1163), - [anon_sym_LBRACE] = ACTIONS(1165), - [anon_sym_RBRACE] = ACTIONS(1165), - [anon_sym_signed] = ACTIONS(1163), - [anon_sym_unsigned] = ACTIONS(1163), - [anon_sym_long] = ACTIONS(1163), - [anon_sym_short] = ACTIONS(1163), - [anon_sym_static] = ACTIONS(1163), - [anon_sym_auto] = ACTIONS(1163), - [anon_sym_register] = ACTIONS(1163), - [anon_sym_inline] = ACTIONS(1163), - [anon_sym___inline] = ACTIONS(1163), - [anon_sym___inline__] = ACTIONS(1163), - [anon_sym___forceinline] = ACTIONS(1163), - [anon_sym_thread_local] = ACTIONS(1163), - [anon_sym___thread] = ACTIONS(1163), - [anon_sym_const] = ACTIONS(1163), - [anon_sym_constexpr] = ACTIONS(1163), - [anon_sym_volatile] = ACTIONS(1163), - [anon_sym_restrict] = ACTIONS(1163), - [anon_sym___restrict__] = ACTIONS(1163), - [anon_sym__Atomic] = ACTIONS(1163), - [anon_sym__Noreturn] = ACTIONS(1163), - [anon_sym_noreturn] = ACTIONS(1163), - [anon_sym_alignas] = ACTIONS(1163), - [anon_sym__Alignas] = ACTIONS(1163), - [sym_primitive_type] = ACTIONS(1163), - [anon_sym_enum] = ACTIONS(1163), - [anon_sym_struct] = ACTIONS(1163), - [anon_sym_union] = ACTIONS(1163), - [anon_sym_if] = ACTIONS(1163), - [anon_sym_else] = ACTIONS(1163), - [anon_sym_switch] = ACTIONS(1163), - [anon_sym_case] = ACTIONS(1163), - [anon_sym_default] = ACTIONS(1163), - [anon_sym_while] = ACTIONS(1163), - [anon_sym_do] = ACTIONS(1163), - [anon_sym_for] = ACTIONS(1163), - [anon_sym_return] = ACTIONS(1163), - [anon_sym_break] = ACTIONS(1163), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_goto] = ACTIONS(1163), - [anon_sym___try] = ACTIONS(1163), - [anon_sym___leave] = ACTIONS(1163), - [anon_sym_DASH_DASH] = ACTIONS(1165), - [anon_sym_PLUS_PLUS] = ACTIONS(1165), - [anon_sym_sizeof] = ACTIONS(1163), - [anon_sym___alignof__] = ACTIONS(1163), - [anon_sym___alignof] = ACTIONS(1163), - [anon_sym__alignof] = ACTIONS(1163), - [anon_sym_alignof] = ACTIONS(1163), - [anon_sym__Alignof] = ACTIONS(1163), - [anon_sym_offsetof] = ACTIONS(1163), - [anon_sym__Generic] = ACTIONS(1163), - [anon_sym_asm] = ACTIONS(1163), - [anon_sym___asm__] = ACTIONS(1163), - [sym_number_literal] = ACTIONS(1165), - [anon_sym_L_SQUOTE] = ACTIONS(1165), - [anon_sym_u_SQUOTE] = ACTIONS(1165), - [anon_sym_U_SQUOTE] = ACTIONS(1165), - [anon_sym_u8_SQUOTE] = ACTIONS(1165), - [anon_sym_SQUOTE] = ACTIONS(1165), - [anon_sym_L_DQUOTE] = ACTIONS(1165), - [anon_sym_u_DQUOTE] = ACTIONS(1165), - [anon_sym_U_DQUOTE] = ACTIONS(1165), - [anon_sym_u8_DQUOTE] = ACTIONS(1165), - [anon_sym_DQUOTE] = ACTIONS(1165), - [sym_true] = ACTIONS(1163), - [sym_false] = ACTIONS(1163), - [anon_sym_NULL] = ACTIONS(1163), - [anon_sym_nullptr] = ACTIONS(1163), + [157] = { + [ts_builtin_sym_end] = ACTIONS(1221), + [sym_identifier] = ACTIONS(1219), + [aux_sym_preproc_include_token1] = ACTIONS(1219), + [aux_sym_preproc_def_token1] = ACTIONS(1219), + [aux_sym_preproc_if_token1] = ACTIONS(1219), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1219), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1219), + [sym_preproc_directive] = ACTIONS(1219), + [anon_sym_LPAREN2] = ACTIONS(1221), + [anon_sym_BANG] = ACTIONS(1221), + [anon_sym_TILDE] = ACTIONS(1221), + [anon_sym_DASH] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1219), + [anon_sym_STAR] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(1221), + [anon_sym_SEMI] = ACTIONS(1221), + [anon_sym___extension__] = ACTIONS(1219), + [anon_sym_typedef] = ACTIONS(1219), + [anon_sym_extern] = ACTIONS(1219), + [anon_sym___attribute__] = ACTIONS(1219), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1221), + [anon_sym___declspec] = ACTIONS(1219), + [anon_sym___cdecl] = ACTIONS(1219), + [anon_sym___clrcall] = ACTIONS(1219), + [anon_sym___stdcall] = ACTIONS(1219), + [anon_sym___fastcall] = ACTIONS(1219), + [anon_sym___thiscall] = ACTIONS(1219), + [anon_sym___vectorcall] = ACTIONS(1219), + [anon_sym_LBRACE] = ACTIONS(1221), + [anon_sym_signed] = ACTIONS(1219), + [anon_sym_unsigned] = ACTIONS(1219), + [anon_sym_long] = ACTIONS(1219), + [anon_sym_short] = ACTIONS(1219), + [anon_sym_static] = ACTIONS(1219), + [anon_sym_auto] = ACTIONS(1219), + [anon_sym_register] = ACTIONS(1219), + [anon_sym_inline] = ACTIONS(1219), + [anon_sym___inline] = ACTIONS(1219), + [anon_sym___inline__] = ACTIONS(1219), + [anon_sym___forceinline] = ACTIONS(1219), + [anon_sym_thread_local] = ACTIONS(1219), + [anon_sym___thread] = ACTIONS(1219), + [anon_sym_const] = ACTIONS(1219), + [anon_sym_constexpr] = ACTIONS(1219), + [anon_sym_volatile] = ACTIONS(1219), + [anon_sym_restrict] = ACTIONS(1219), + [anon_sym___restrict__] = ACTIONS(1219), + [anon_sym__Atomic] = ACTIONS(1219), + [anon_sym__Noreturn] = ACTIONS(1219), + [anon_sym_noreturn] = ACTIONS(1219), + [anon_sym_alignas] = ACTIONS(1219), + [anon_sym__Alignas] = ACTIONS(1219), + [sym_primitive_type] = ACTIONS(1219), + [anon_sym_enum] = ACTIONS(1219), + [anon_sym_struct] = ACTIONS(1219), + [anon_sym_union] = ACTIONS(1219), + [anon_sym_if] = ACTIONS(1219), + [anon_sym_else] = ACTIONS(1219), + [anon_sym_switch] = ACTIONS(1219), + [anon_sym_case] = ACTIONS(1219), + [anon_sym_default] = ACTIONS(1219), + [anon_sym_while] = ACTIONS(1219), + [anon_sym_do] = ACTIONS(1219), + [anon_sym_for] = ACTIONS(1219), + [anon_sym_return] = ACTIONS(1219), + [anon_sym_break] = ACTIONS(1219), + [anon_sym_continue] = ACTIONS(1219), + [anon_sym_goto] = ACTIONS(1219), + [anon_sym___try] = ACTIONS(1219), + [anon_sym___leave] = ACTIONS(1219), + [anon_sym_DASH_DASH] = ACTIONS(1221), + [anon_sym_PLUS_PLUS] = ACTIONS(1221), + [anon_sym_sizeof] = ACTIONS(1219), + [anon_sym___alignof__] = ACTIONS(1219), + [anon_sym___alignof] = ACTIONS(1219), + [anon_sym__alignof] = ACTIONS(1219), + [anon_sym_alignof] = ACTIONS(1219), + [anon_sym__Alignof] = ACTIONS(1219), + [anon_sym_offsetof] = ACTIONS(1219), + [anon_sym__Generic] = ACTIONS(1219), + [anon_sym_asm] = ACTIONS(1219), + [anon_sym___asm__] = ACTIONS(1219), + [sym_number_literal] = ACTIONS(1221), + [anon_sym_L_SQUOTE] = ACTIONS(1221), + [anon_sym_u_SQUOTE] = ACTIONS(1221), + [anon_sym_U_SQUOTE] = ACTIONS(1221), + [anon_sym_u8_SQUOTE] = ACTIONS(1221), + [anon_sym_SQUOTE] = ACTIONS(1221), + [anon_sym_L_DQUOTE] = ACTIONS(1221), + [anon_sym_u_DQUOTE] = ACTIONS(1221), + [anon_sym_U_DQUOTE] = ACTIONS(1221), + [anon_sym_u8_DQUOTE] = ACTIONS(1221), + [anon_sym_DQUOTE] = ACTIONS(1221), + [sym_true] = ACTIONS(1219), + [sym_false] = ACTIONS(1219), + [anon_sym_NULL] = ACTIONS(1219), + [anon_sym_nullptr] = ACTIONS(1219), [sym_comment] = ACTIONS(3), }, - [173] = { - [sym_identifier] = ACTIONS(1143), - [aux_sym_preproc_include_token1] = ACTIONS(1143), - [aux_sym_preproc_def_token1] = ACTIONS(1143), - [aux_sym_preproc_if_token1] = ACTIONS(1143), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1143), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1143), - [sym_preproc_directive] = ACTIONS(1143), - [anon_sym_LPAREN2] = ACTIONS(1145), - [anon_sym_BANG] = ACTIONS(1145), - [anon_sym_TILDE] = ACTIONS(1145), - [anon_sym_DASH] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_STAR] = ACTIONS(1145), - [anon_sym_AMP] = ACTIONS(1145), - [anon_sym_SEMI] = ACTIONS(1145), - [anon_sym___extension__] = ACTIONS(1143), - [anon_sym_typedef] = ACTIONS(1143), - [anon_sym_extern] = ACTIONS(1143), - [anon_sym___attribute__] = ACTIONS(1143), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), - [anon_sym___declspec] = ACTIONS(1143), - [anon_sym___cdecl] = ACTIONS(1143), - [anon_sym___clrcall] = ACTIONS(1143), - [anon_sym___stdcall] = ACTIONS(1143), - [anon_sym___fastcall] = ACTIONS(1143), - [anon_sym___thiscall] = ACTIONS(1143), - [anon_sym___vectorcall] = ACTIONS(1143), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_RBRACE] = ACTIONS(1145), - [anon_sym_signed] = ACTIONS(1143), - [anon_sym_unsigned] = ACTIONS(1143), - [anon_sym_long] = ACTIONS(1143), - [anon_sym_short] = ACTIONS(1143), - [anon_sym_static] = ACTIONS(1143), - [anon_sym_auto] = ACTIONS(1143), - [anon_sym_register] = ACTIONS(1143), - [anon_sym_inline] = ACTIONS(1143), - [anon_sym___inline] = ACTIONS(1143), - [anon_sym___inline__] = ACTIONS(1143), - [anon_sym___forceinline] = ACTIONS(1143), - [anon_sym_thread_local] = ACTIONS(1143), - [anon_sym___thread] = ACTIONS(1143), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_constexpr] = ACTIONS(1143), - [anon_sym_volatile] = ACTIONS(1143), - [anon_sym_restrict] = ACTIONS(1143), - [anon_sym___restrict__] = ACTIONS(1143), - [anon_sym__Atomic] = ACTIONS(1143), - [anon_sym__Noreturn] = ACTIONS(1143), - [anon_sym_noreturn] = ACTIONS(1143), - [anon_sym_alignas] = ACTIONS(1143), - [anon_sym__Alignas] = ACTIONS(1143), - [sym_primitive_type] = ACTIONS(1143), - [anon_sym_enum] = ACTIONS(1143), - [anon_sym_struct] = ACTIONS(1143), - [anon_sym_union] = ACTIONS(1143), - [anon_sym_if] = ACTIONS(1143), - [anon_sym_else] = ACTIONS(1143), - [anon_sym_switch] = ACTIONS(1143), - [anon_sym_case] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1143), - [anon_sym_while] = ACTIONS(1143), - [anon_sym_do] = ACTIONS(1143), - [anon_sym_for] = ACTIONS(1143), - [anon_sym_return] = ACTIONS(1143), - [anon_sym_break] = ACTIONS(1143), - [anon_sym_continue] = ACTIONS(1143), - [anon_sym_goto] = ACTIONS(1143), - [anon_sym___try] = ACTIONS(1143), - [anon_sym___leave] = ACTIONS(1143), - [anon_sym_DASH_DASH] = ACTIONS(1145), - [anon_sym_PLUS_PLUS] = ACTIONS(1145), - [anon_sym_sizeof] = ACTIONS(1143), - [anon_sym___alignof__] = ACTIONS(1143), - [anon_sym___alignof] = ACTIONS(1143), - [anon_sym__alignof] = ACTIONS(1143), - [anon_sym_alignof] = ACTIONS(1143), - [anon_sym__Alignof] = ACTIONS(1143), - [anon_sym_offsetof] = ACTIONS(1143), - [anon_sym__Generic] = ACTIONS(1143), - [anon_sym_asm] = ACTIONS(1143), - [anon_sym___asm__] = ACTIONS(1143), - [sym_number_literal] = ACTIONS(1145), - [anon_sym_L_SQUOTE] = ACTIONS(1145), - [anon_sym_u_SQUOTE] = ACTIONS(1145), - [anon_sym_U_SQUOTE] = ACTIONS(1145), - [anon_sym_u8_SQUOTE] = ACTIONS(1145), - [anon_sym_SQUOTE] = ACTIONS(1145), - [anon_sym_L_DQUOTE] = ACTIONS(1145), - [anon_sym_u_DQUOTE] = ACTIONS(1145), - [anon_sym_U_DQUOTE] = ACTIONS(1145), - [anon_sym_u8_DQUOTE] = ACTIONS(1145), - [anon_sym_DQUOTE] = ACTIONS(1145), - [sym_true] = ACTIONS(1143), - [sym_false] = ACTIONS(1143), - [anon_sym_NULL] = ACTIONS(1143), - [anon_sym_nullptr] = ACTIONS(1143), + [158] = { + [sym_identifier] = ACTIONS(1199), + [aux_sym_preproc_include_token1] = ACTIONS(1199), + [aux_sym_preproc_def_token1] = ACTIONS(1199), + [aux_sym_preproc_if_token1] = ACTIONS(1199), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1199), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1199), + [sym_preproc_directive] = ACTIONS(1199), + [anon_sym_LPAREN2] = ACTIONS(1201), + [anon_sym_BANG] = ACTIONS(1201), + [anon_sym_TILDE] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1199), + [anon_sym_STAR] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(1201), + [anon_sym_SEMI] = ACTIONS(1201), + [anon_sym___extension__] = ACTIONS(1199), + [anon_sym_typedef] = ACTIONS(1199), + [anon_sym_extern] = ACTIONS(1199), + [anon_sym___attribute__] = ACTIONS(1199), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1201), + [anon_sym___declspec] = ACTIONS(1199), + [anon_sym___cdecl] = ACTIONS(1199), + [anon_sym___clrcall] = ACTIONS(1199), + [anon_sym___stdcall] = ACTIONS(1199), + [anon_sym___fastcall] = ACTIONS(1199), + [anon_sym___thiscall] = ACTIONS(1199), + [anon_sym___vectorcall] = ACTIONS(1199), + [anon_sym_LBRACE] = ACTIONS(1201), + [anon_sym_RBRACE] = ACTIONS(1201), + [anon_sym_signed] = ACTIONS(1199), + [anon_sym_unsigned] = ACTIONS(1199), + [anon_sym_long] = ACTIONS(1199), + [anon_sym_short] = ACTIONS(1199), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_auto] = ACTIONS(1199), + [anon_sym_register] = ACTIONS(1199), + [anon_sym_inline] = ACTIONS(1199), + [anon_sym___inline] = ACTIONS(1199), + [anon_sym___inline__] = ACTIONS(1199), + [anon_sym___forceinline] = ACTIONS(1199), + [anon_sym_thread_local] = ACTIONS(1199), + [anon_sym___thread] = ACTIONS(1199), + [anon_sym_const] = ACTIONS(1199), + [anon_sym_constexpr] = ACTIONS(1199), + [anon_sym_volatile] = ACTIONS(1199), + [anon_sym_restrict] = ACTIONS(1199), + [anon_sym___restrict__] = ACTIONS(1199), + [anon_sym__Atomic] = ACTIONS(1199), + [anon_sym__Noreturn] = ACTIONS(1199), + [anon_sym_noreturn] = ACTIONS(1199), + [anon_sym_alignas] = ACTIONS(1199), + [anon_sym__Alignas] = ACTIONS(1199), + [sym_primitive_type] = ACTIONS(1199), + [anon_sym_enum] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1199), + [anon_sym_union] = ACTIONS(1199), + [anon_sym_if] = ACTIONS(1199), + [anon_sym_else] = ACTIONS(1199), + [anon_sym_switch] = ACTIONS(1199), + [anon_sym_case] = ACTIONS(1199), + [anon_sym_default] = ACTIONS(1199), + [anon_sym_while] = ACTIONS(1199), + [anon_sym_do] = ACTIONS(1199), + [anon_sym_for] = ACTIONS(1199), + [anon_sym_return] = ACTIONS(1199), + [anon_sym_break] = ACTIONS(1199), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_goto] = ACTIONS(1199), + [anon_sym___try] = ACTIONS(1199), + [anon_sym___leave] = ACTIONS(1199), + [anon_sym_DASH_DASH] = ACTIONS(1201), + [anon_sym_PLUS_PLUS] = ACTIONS(1201), + [anon_sym_sizeof] = ACTIONS(1199), + [anon_sym___alignof__] = ACTIONS(1199), + [anon_sym___alignof] = ACTIONS(1199), + [anon_sym__alignof] = ACTIONS(1199), + [anon_sym_alignof] = ACTIONS(1199), + [anon_sym__Alignof] = ACTIONS(1199), + [anon_sym_offsetof] = ACTIONS(1199), + [anon_sym__Generic] = ACTIONS(1199), + [anon_sym_asm] = ACTIONS(1199), + [anon_sym___asm__] = ACTIONS(1199), + [sym_number_literal] = ACTIONS(1201), + [anon_sym_L_SQUOTE] = ACTIONS(1201), + [anon_sym_u_SQUOTE] = ACTIONS(1201), + [anon_sym_U_SQUOTE] = ACTIONS(1201), + [anon_sym_u8_SQUOTE] = ACTIONS(1201), + [anon_sym_SQUOTE] = ACTIONS(1201), + [anon_sym_L_DQUOTE] = ACTIONS(1201), + [anon_sym_u_DQUOTE] = ACTIONS(1201), + [anon_sym_U_DQUOTE] = ACTIONS(1201), + [anon_sym_u8_DQUOTE] = ACTIONS(1201), + [anon_sym_DQUOTE] = ACTIONS(1201), + [sym_true] = ACTIONS(1199), + [sym_false] = ACTIONS(1199), + [anon_sym_NULL] = ACTIONS(1199), + [anon_sym_nullptr] = ACTIONS(1199), [sym_comment] = ACTIONS(3), }, - [174] = { - [ts_builtin_sym_end] = ACTIONS(1149), - [sym_identifier] = ACTIONS(1147), - [aux_sym_preproc_include_token1] = ACTIONS(1147), - [aux_sym_preproc_def_token1] = ACTIONS(1147), - [aux_sym_preproc_if_token1] = ACTIONS(1147), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1147), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1147), - [sym_preproc_directive] = ACTIONS(1147), - [anon_sym_LPAREN2] = ACTIONS(1149), - [anon_sym_BANG] = ACTIONS(1149), - [anon_sym_TILDE] = ACTIONS(1149), - [anon_sym_DASH] = ACTIONS(1147), - [anon_sym_PLUS] = ACTIONS(1147), - [anon_sym_STAR] = ACTIONS(1149), - [anon_sym_AMP] = ACTIONS(1149), - [anon_sym_SEMI] = ACTIONS(1149), - [anon_sym___extension__] = ACTIONS(1147), - [anon_sym_typedef] = ACTIONS(1147), - [anon_sym_extern] = ACTIONS(1147), - [anon_sym___attribute__] = ACTIONS(1147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1149), - [anon_sym___declspec] = ACTIONS(1147), - [anon_sym___cdecl] = ACTIONS(1147), - [anon_sym___clrcall] = ACTIONS(1147), - [anon_sym___stdcall] = ACTIONS(1147), - [anon_sym___fastcall] = ACTIONS(1147), - [anon_sym___thiscall] = ACTIONS(1147), - [anon_sym___vectorcall] = ACTIONS(1147), - [anon_sym_LBRACE] = ACTIONS(1149), - [anon_sym_signed] = ACTIONS(1147), - [anon_sym_unsigned] = ACTIONS(1147), - [anon_sym_long] = ACTIONS(1147), - [anon_sym_short] = ACTIONS(1147), - [anon_sym_static] = ACTIONS(1147), - [anon_sym_auto] = ACTIONS(1147), - [anon_sym_register] = ACTIONS(1147), - [anon_sym_inline] = ACTIONS(1147), - [anon_sym___inline] = ACTIONS(1147), - [anon_sym___inline__] = ACTIONS(1147), - [anon_sym___forceinline] = ACTIONS(1147), - [anon_sym_thread_local] = ACTIONS(1147), - [anon_sym___thread] = ACTIONS(1147), - [anon_sym_const] = ACTIONS(1147), - [anon_sym_constexpr] = ACTIONS(1147), - [anon_sym_volatile] = ACTIONS(1147), - [anon_sym_restrict] = ACTIONS(1147), - [anon_sym___restrict__] = ACTIONS(1147), - [anon_sym__Atomic] = ACTIONS(1147), - [anon_sym__Noreturn] = ACTIONS(1147), - [anon_sym_noreturn] = ACTIONS(1147), - [anon_sym_alignas] = ACTIONS(1147), - [anon_sym__Alignas] = ACTIONS(1147), - [sym_primitive_type] = ACTIONS(1147), - [anon_sym_enum] = ACTIONS(1147), - [anon_sym_struct] = ACTIONS(1147), - [anon_sym_union] = ACTIONS(1147), - [anon_sym_if] = ACTIONS(1147), - [anon_sym_else] = ACTIONS(1147), - [anon_sym_switch] = ACTIONS(1147), - [anon_sym_case] = ACTIONS(1147), - [anon_sym_default] = ACTIONS(1147), - [anon_sym_while] = ACTIONS(1147), - [anon_sym_do] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1147), - [anon_sym_return] = ACTIONS(1147), - [anon_sym_break] = ACTIONS(1147), - [anon_sym_continue] = ACTIONS(1147), - [anon_sym_goto] = ACTIONS(1147), - [anon_sym___try] = ACTIONS(1147), - [anon_sym___leave] = ACTIONS(1147), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_sizeof] = ACTIONS(1147), - [anon_sym___alignof__] = ACTIONS(1147), - [anon_sym___alignof] = ACTIONS(1147), - [anon_sym__alignof] = ACTIONS(1147), - [anon_sym_alignof] = ACTIONS(1147), - [anon_sym__Alignof] = ACTIONS(1147), - [anon_sym_offsetof] = ACTIONS(1147), - [anon_sym__Generic] = ACTIONS(1147), - [anon_sym_asm] = ACTIONS(1147), - [anon_sym___asm__] = ACTIONS(1147), - [sym_number_literal] = ACTIONS(1149), - [anon_sym_L_SQUOTE] = ACTIONS(1149), - [anon_sym_u_SQUOTE] = ACTIONS(1149), - [anon_sym_U_SQUOTE] = ACTIONS(1149), - [anon_sym_u8_SQUOTE] = ACTIONS(1149), - [anon_sym_SQUOTE] = ACTIONS(1149), - [anon_sym_L_DQUOTE] = ACTIONS(1149), - [anon_sym_u_DQUOTE] = ACTIONS(1149), - [anon_sym_U_DQUOTE] = ACTIONS(1149), - [anon_sym_u8_DQUOTE] = ACTIONS(1149), - [anon_sym_DQUOTE] = ACTIONS(1149), - [sym_true] = ACTIONS(1147), - [sym_false] = ACTIONS(1147), - [anon_sym_NULL] = ACTIONS(1147), - [anon_sym_nullptr] = ACTIONS(1147), - [sym_comment] = ACTIONS(3), - }, - [175] = { - [ts_builtin_sym_end] = ACTIONS(1237), - [sym_identifier] = ACTIONS(1235), - [aux_sym_preproc_include_token1] = ACTIONS(1235), - [aux_sym_preproc_def_token1] = ACTIONS(1235), - [aux_sym_preproc_if_token1] = ACTIONS(1235), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1235), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1235), - [sym_preproc_directive] = ACTIONS(1235), - [anon_sym_LPAREN2] = ACTIONS(1237), - [anon_sym_BANG] = ACTIONS(1237), - [anon_sym_TILDE] = ACTIONS(1237), - [anon_sym_DASH] = ACTIONS(1235), - [anon_sym_PLUS] = ACTIONS(1235), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_AMP] = ACTIONS(1237), - [anon_sym_SEMI] = ACTIONS(1237), - [anon_sym___extension__] = ACTIONS(1235), - [anon_sym_typedef] = ACTIONS(1235), - [anon_sym_extern] = ACTIONS(1235), - [anon_sym___attribute__] = ACTIONS(1235), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1237), - [anon_sym___declspec] = ACTIONS(1235), - [anon_sym___cdecl] = ACTIONS(1235), - [anon_sym___clrcall] = ACTIONS(1235), - [anon_sym___stdcall] = ACTIONS(1235), - [anon_sym___fastcall] = ACTIONS(1235), - [anon_sym___thiscall] = ACTIONS(1235), - [anon_sym___vectorcall] = ACTIONS(1235), - [anon_sym_LBRACE] = ACTIONS(1237), - [anon_sym_signed] = ACTIONS(1235), - [anon_sym_unsigned] = ACTIONS(1235), - [anon_sym_long] = ACTIONS(1235), - [anon_sym_short] = ACTIONS(1235), - [anon_sym_static] = ACTIONS(1235), - [anon_sym_auto] = ACTIONS(1235), - [anon_sym_register] = ACTIONS(1235), - [anon_sym_inline] = ACTIONS(1235), - [anon_sym___inline] = ACTIONS(1235), - [anon_sym___inline__] = ACTIONS(1235), - [anon_sym___forceinline] = ACTIONS(1235), - [anon_sym_thread_local] = ACTIONS(1235), - [anon_sym___thread] = ACTIONS(1235), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_constexpr] = ACTIONS(1235), - [anon_sym_volatile] = ACTIONS(1235), - [anon_sym_restrict] = ACTIONS(1235), - [anon_sym___restrict__] = ACTIONS(1235), - [anon_sym__Atomic] = ACTIONS(1235), - [anon_sym__Noreturn] = ACTIONS(1235), - [anon_sym_noreturn] = ACTIONS(1235), - [anon_sym_alignas] = ACTIONS(1235), - [anon_sym__Alignas] = 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___try] = ACTIONS(1235), - [anon_sym___leave] = ACTIONS(1235), - [anon_sym_DASH_DASH] = ACTIONS(1237), - [anon_sym_PLUS_PLUS] = ACTIONS(1237), - [anon_sym_sizeof] = ACTIONS(1235), - [anon_sym___alignof__] = ACTIONS(1235), - [anon_sym___alignof] = ACTIONS(1235), - [anon_sym__alignof] = ACTIONS(1235), - [anon_sym_alignof] = ACTIONS(1235), - [anon_sym__Alignof] = ACTIONS(1235), - [anon_sym_offsetof] = ACTIONS(1235), - [anon_sym__Generic] = ACTIONS(1235), - [anon_sym_asm] = ACTIONS(1235), - [anon_sym___asm__] = ACTIONS(1235), - [sym_number_literal] = ACTIONS(1237), - [anon_sym_L_SQUOTE] = ACTIONS(1237), - [anon_sym_u_SQUOTE] = ACTIONS(1237), - [anon_sym_U_SQUOTE] = ACTIONS(1237), - [anon_sym_u8_SQUOTE] = ACTIONS(1237), - [anon_sym_SQUOTE] = ACTIONS(1237), - [anon_sym_L_DQUOTE] = ACTIONS(1237), - [anon_sym_u_DQUOTE] = ACTIONS(1237), - [anon_sym_U_DQUOTE] = ACTIONS(1237), - [anon_sym_u8_DQUOTE] = ACTIONS(1237), - [anon_sym_DQUOTE] = ACTIONS(1237), - [sym_true] = ACTIONS(1235), - [sym_false] = ACTIONS(1235), - [anon_sym_NULL] = ACTIONS(1235), - [anon_sym_nullptr] = ACTIONS(1235), - [sym_comment] = ACTIONS(3), - }, - [176] = { - [ts_builtin_sym_end] = ACTIONS(1153), - [sym_identifier] = ACTIONS(1151), - [aux_sym_preproc_include_token1] = ACTIONS(1151), - [aux_sym_preproc_def_token1] = ACTIONS(1151), - [aux_sym_preproc_if_token1] = ACTIONS(1151), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1151), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1151), - [sym_preproc_directive] = ACTIONS(1151), - [anon_sym_LPAREN2] = ACTIONS(1153), - [anon_sym_BANG] = ACTIONS(1153), - [anon_sym_TILDE] = ACTIONS(1153), - [anon_sym_DASH] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1151), - [anon_sym_STAR] = ACTIONS(1153), - [anon_sym_AMP] = ACTIONS(1153), - [anon_sym_SEMI] = ACTIONS(1153), - [anon_sym___extension__] = ACTIONS(1151), - [anon_sym_typedef] = ACTIONS(1151), - [anon_sym_extern] = ACTIONS(1151), - [anon_sym___attribute__] = ACTIONS(1151), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1153), - [anon_sym___declspec] = ACTIONS(1151), - [anon_sym___cdecl] = ACTIONS(1151), - [anon_sym___clrcall] = ACTIONS(1151), - [anon_sym___stdcall] = ACTIONS(1151), - [anon_sym___fastcall] = ACTIONS(1151), - [anon_sym___thiscall] = ACTIONS(1151), - [anon_sym___vectorcall] = ACTIONS(1151), - [anon_sym_LBRACE] = ACTIONS(1153), - [anon_sym_signed] = ACTIONS(1151), - [anon_sym_unsigned] = ACTIONS(1151), - [anon_sym_long] = ACTIONS(1151), - [anon_sym_short] = ACTIONS(1151), - [anon_sym_static] = ACTIONS(1151), - [anon_sym_auto] = ACTIONS(1151), - [anon_sym_register] = ACTIONS(1151), - [anon_sym_inline] = ACTIONS(1151), - [anon_sym___inline] = ACTIONS(1151), - [anon_sym___inline__] = ACTIONS(1151), - [anon_sym___forceinline] = ACTIONS(1151), - [anon_sym_thread_local] = ACTIONS(1151), - [anon_sym___thread] = ACTIONS(1151), - [anon_sym_const] = ACTIONS(1151), - [anon_sym_constexpr] = ACTIONS(1151), - [anon_sym_volatile] = ACTIONS(1151), - [anon_sym_restrict] = ACTIONS(1151), - [anon_sym___restrict__] = ACTIONS(1151), - [anon_sym__Atomic] = ACTIONS(1151), - [anon_sym__Noreturn] = ACTIONS(1151), - [anon_sym_noreturn] = ACTIONS(1151), - [anon_sym_alignas] = ACTIONS(1151), - [anon_sym__Alignas] = ACTIONS(1151), - [sym_primitive_type] = ACTIONS(1151), - [anon_sym_enum] = ACTIONS(1151), - [anon_sym_struct] = ACTIONS(1151), - [anon_sym_union] = ACTIONS(1151), - [anon_sym_if] = ACTIONS(1151), - [anon_sym_else] = ACTIONS(1151), - [anon_sym_switch] = ACTIONS(1151), - [anon_sym_case] = ACTIONS(1151), - [anon_sym_default] = ACTIONS(1151), - [anon_sym_while] = ACTIONS(1151), - [anon_sym_do] = ACTIONS(1151), - [anon_sym_for] = ACTIONS(1151), - [anon_sym_return] = ACTIONS(1151), - [anon_sym_break] = ACTIONS(1151), - [anon_sym_continue] = ACTIONS(1151), - [anon_sym_goto] = ACTIONS(1151), - [anon_sym___try] = ACTIONS(1151), - [anon_sym___leave] = ACTIONS(1151), - [anon_sym_DASH_DASH] = ACTIONS(1153), - [anon_sym_PLUS_PLUS] = ACTIONS(1153), - [anon_sym_sizeof] = ACTIONS(1151), - [anon_sym___alignof__] = ACTIONS(1151), - [anon_sym___alignof] = ACTIONS(1151), - [anon_sym__alignof] = ACTIONS(1151), - [anon_sym_alignof] = ACTIONS(1151), - [anon_sym__Alignof] = ACTIONS(1151), - [anon_sym_offsetof] = ACTIONS(1151), - [anon_sym__Generic] = ACTIONS(1151), - [anon_sym_asm] = ACTIONS(1151), - [anon_sym___asm__] = ACTIONS(1151), - [sym_number_literal] = ACTIONS(1153), - [anon_sym_L_SQUOTE] = ACTIONS(1153), - [anon_sym_u_SQUOTE] = ACTIONS(1153), - [anon_sym_U_SQUOTE] = ACTIONS(1153), - [anon_sym_u8_SQUOTE] = ACTIONS(1153), - [anon_sym_SQUOTE] = ACTIONS(1153), - [anon_sym_L_DQUOTE] = ACTIONS(1153), - [anon_sym_u_DQUOTE] = ACTIONS(1153), - [anon_sym_U_DQUOTE] = ACTIONS(1153), - [anon_sym_u8_DQUOTE] = ACTIONS(1153), - [anon_sym_DQUOTE] = ACTIONS(1153), - [sym_true] = ACTIONS(1151), - [sym_false] = ACTIONS(1151), - [anon_sym_NULL] = ACTIONS(1151), - [anon_sym_nullptr] = ACTIONS(1151), + [159] = { + [ts_builtin_sym_end] = ACTIONS(1249), + [sym_identifier] = ACTIONS(1247), + [aux_sym_preproc_include_token1] = ACTIONS(1247), + [aux_sym_preproc_def_token1] = ACTIONS(1247), + [aux_sym_preproc_if_token1] = ACTIONS(1247), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1247), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1247), + [sym_preproc_directive] = ACTIONS(1247), + [anon_sym_LPAREN2] = ACTIONS(1249), + [anon_sym_BANG] = ACTIONS(1249), + [anon_sym_TILDE] = ACTIONS(1249), + [anon_sym_DASH] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(1247), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(1247), + [anon_sym_typedef] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1247), + [anon_sym___attribute__] = ACTIONS(1247), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1249), + [anon_sym___declspec] = ACTIONS(1247), + [anon_sym___cdecl] = ACTIONS(1247), + [anon_sym___clrcall] = ACTIONS(1247), + [anon_sym___stdcall] = ACTIONS(1247), + [anon_sym___fastcall] = ACTIONS(1247), + [anon_sym___thiscall] = ACTIONS(1247), + [anon_sym___vectorcall] = ACTIONS(1247), + [anon_sym_LBRACE] = ACTIONS(1249), + [anon_sym_signed] = ACTIONS(1247), + [anon_sym_unsigned] = ACTIONS(1247), + [anon_sym_long] = ACTIONS(1247), + [anon_sym_short] = ACTIONS(1247), + [anon_sym_static] = ACTIONS(1247), + [anon_sym_auto] = ACTIONS(1247), + [anon_sym_register] = ACTIONS(1247), + [anon_sym_inline] = ACTIONS(1247), + [anon_sym___inline] = ACTIONS(1247), + [anon_sym___inline__] = ACTIONS(1247), + [anon_sym___forceinline] = ACTIONS(1247), + [anon_sym_thread_local] = ACTIONS(1247), + [anon_sym___thread] = ACTIONS(1247), + [anon_sym_const] = ACTIONS(1247), + [anon_sym_constexpr] = ACTIONS(1247), + [anon_sym_volatile] = ACTIONS(1247), + [anon_sym_restrict] = ACTIONS(1247), + [anon_sym___restrict__] = ACTIONS(1247), + [anon_sym__Atomic] = ACTIONS(1247), + [anon_sym__Noreturn] = ACTIONS(1247), + [anon_sym_noreturn] = ACTIONS(1247), + [anon_sym_alignas] = ACTIONS(1247), + [anon_sym__Alignas] = ACTIONS(1247), + [sym_primitive_type] = ACTIONS(1247), + [anon_sym_enum] = ACTIONS(1247), + [anon_sym_struct] = ACTIONS(1247), + [anon_sym_union] = ACTIONS(1247), + [anon_sym_if] = ACTIONS(1247), + [anon_sym_else] = ACTIONS(1247), + [anon_sym_switch] = ACTIONS(1247), + [anon_sym_case] = ACTIONS(1247), + [anon_sym_default] = ACTIONS(1247), + [anon_sym_while] = ACTIONS(1247), + [anon_sym_do] = ACTIONS(1247), + [anon_sym_for] = ACTIONS(1247), + [anon_sym_return] = ACTIONS(1247), + [anon_sym_break] = ACTIONS(1247), + [anon_sym_continue] = ACTIONS(1247), + [anon_sym_goto] = ACTIONS(1247), + [anon_sym___try] = ACTIONS(1247), + [anon_sym___leave] = ACTIONS(1247), + [anon_sym_DASH_DASH] = ACTIONS(1249), + [anon_sym_PLUS_PLUS] = ACTIONS(1249), + [anon_sym_sizeof] = ACTIONS(1247), + [anon_sym___alignof__] = ACTIONS(1247), + [anon_sym___alignof] = ACTIONS(1247), + [anon_sym__alignof] = ACTIONS(1247), + [anon_sym_alignof] = ACTIONS(1247), + [anon_sym__Alignof] = ACTIONS(1247), + [anon_sym_offsetof] = ACTIONS(1247), + [anon_sym__Generic] = ACTIONS(1247), + [anon_sym_asm] = ACTIONS(1247), + [anon_sym___asm__] = ACTIONS(1247), + [sym_number_literal] = ACTIONS(1249), + [anon_sym_L_SQUOTE] = ACTIONS(1249), + [anon_sym_u_SQUOTE] = ACTIONS(1249), + [anon_sym_U_SQUOTE] = ACTIONS(1249), + [anon_sym_u8_SQUOTE] = ACTIONS(1249), + [anon_sym_SQUOTE] = ACTIONS(1249), + [anon_sym_L_DQUOTE] = ACTIONS(1249), + [anon_sym_u_DQUOTE] = ACTIONS(1249), + [anon_sym_U_DQUOTE] = ACTIONS(1249), + [anon_sym_u8_DQUOTE] = ACTIONS(1249), + [anon_sym_DQUOTE] = ACTIONS(1249), + [sym_true] = ACTIONS(1247), + [sym_false] = ACTIONS(1247), + [anon_sym_NULL] = ACTIONS(1247), + [anon_sym_nullptr] = ACTIONS(1247), [sym_comment] = ACTIONS(3), }, - [177] = { - [sym_identifier] = ACTIONS(1169), - [aux_sym_preproc_include_token1] = ACTIONS(1169), - [aux_sym_preproc_def_token1] = ACTIONS(1169), - [aux_sym_preproc_if_token1] = ACTIONS(1169), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1169), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1169), - [sym_preproc_directive] = ACTIONS(1169), - [anon_sym_LPAREN2] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1167), - [anon_sym_TILDE] = ACTIONS(1167), - [anon_sym_DASH] = ACTIONS(1169), - [anon_sym_PLUS] = ACTIONS(1169), - [anon_sym_STAR] = ACTIONS(1167), - [anon_sym_AMP] = ACTIONS(1167), - [anon_sym_SEMI] = ACTIONS(1167), - [anon_sym___extension__] = ACTIONS(1169), - [anon_sym_typedef] = ACTIONS(1169), - [anon_sym_extern] = ACTIONS(1169), - [anon_sym___attribute__] = ACTIONS(1169), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1167), - [anon_sym___declspec] = ACTIONS(1169), - [anon_sym___cdecl] = ACTIONS(1169), - [anon_sym___clrcall] = ACTIONS(1169), - [anon_sym___stdcall] = ACTIONS(1169), - [anon_sym___fastcall] = ACTIONS(1169), - [anon_sym___thiscall] = ACTIONS(1169), - [anon_sym___vectorcall] = ACTIONS(1169), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_RBRACE] = ACTIONS(1167), - [anon_sym_signed] = ACTIONS(1169), - [anon_sym_unsigned] = ACTIONS(1169), - [anon_sym_long] = ACTIONS(1169), - [anon_sym_short] = ACTIONS(1169), - [anon_sym_static] = ACTIONS(1169), - [anon_sym_auto] = ACTIONS(1169), - [anon_sym_register] = ACTIONS(1169), - [anon_sym_inline] = ACTIONS(1169), - [anon_sym___inline] = ACTIONS(1169), - [anon_sym___inline__] = ACTIONS(1169), - [anon_sym___forceinline] = ACTIONS(1169), - [anon_sym_thread_local] = ACTIONS(1169), - [anon_sym___thread] = ACTIONS(1169), - [anon_sym_const] = ACTIONS(1169), - [anon_sym_constexpr] = ACTIONS(1169), - [anon_sym_volatile] = ACTIONS(1169), - [anon_sym_restrict] = ACTIONS(1169), - [anon_sym___restrict__] = ACTIONS(1169), - [anon_sym__Atomic] = ACTIONS(1169), - [anon_sym__Noreturn] = ACTIONS(1169), - [anon_sym_noreturn] = ACTIONS(1169), - [anon_sym_alignas] = ACTIONS(1169), - [anon_sym__Alignas] = ACTIONS(1169), - [sym_primitive_type] = ACTIONS(1169), - [anon_sym_enum] = ACTIONS(1169), - [anon_sym_struct] = ACTIONS(1169), - [anon_sym_union] = ACTIONS(1169), - [anon_sym_if] = ACTIONS(1169), - [anon_sym_else] = ACTIONS(1169), - [anon_sym_switch] = ACTIONS(1169), - [anon_sym_case] = ACTIONS(1169), - [anon_sym_default] = ACTIONS(1169), - [anon_sym_while] = ACTIONS(1169), - [anon_sym_do] = ACTIONS(1169), - [anon_sym_for] = ACTIONS(1169), - [anon_sym_return] = ACTIONS(1169), - [anon_sym_break] = ACTIONS(1169), - [anon_sym_continue] = ACTIONS(1169), - [anon_sym_goto] = ACTIONS(1169), - [anon_sym___try] = ACTIONS(1169), - [anon_sym___leave] = ACTIONS(1169), - [anon_sym_DASH_DASH] = ACTIONS(1167), - [anon_sym_PLUS_PLUS] = ACTIONS(1167), - [anon_sym_sizeof] = ACTIONS(1169), - [anon_sym___alignof__] = ACTIONS(1169), - [anon_sym___alignof] = ACTIONS(1169), - [anon_sym__alignof] = ACTIONS(1169), - [anon_sym_alignof] = ACTIONS(1169), - [anon_sym__Alignof] = ACTIONS(1169), - [anon_sym_offsetof] = ACTIONS(1169), - [anon_sym__Generic] = ACTIONS(1169), - [anon_sym_asm] = ACTIONS(1169), - [anon_sym___asm__] = ACTIONS(1169), - [sym_number_literal] = ACTIONS(1167), - [anon_sym_L_SQUOTE] = ACTIONS(1167), - [anon_sym_u_SQUOTE] = ACTIONS(1167), - [anon_sym_U_SQUOTE] = ACTIONS(1167), - [anon_sym_u8_SQUOTE] = ACTIONS(1167), - [anon_sym_SQUOTE] = ACTIONS(1167), - [anon_sym_L_DQUOTE] = ACTIONS(1167), - [anon_sym_u_DQUOTE] = ACTIONS(1167), - [anon_sym_U_DQUOTE] = ACTIONS(1167), - [anon_sym_u8_DQUOTE] = ACTIONS(1167), - [anon_sym_DQUOTE] = ACTIONS(1167), - [sym_true] = ACTIONS(1169), - [sym_false] = ACTIONS(1169), - [anon_sym_NULL] = ACTIONS(1169), - [anon_sym_nullptr] = ACTIONS(1169), + [160] = { + [sym_identifier] = ACTIONS(1211), + [aux_sym_preproc_include_token1] = ACTIONS(1211), + [aux_sym_preproc_def_token1] = ACTIONS(1211), + [aux_sym_preproc_if_token1] = ACTIONS(1211), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1211), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1211), + [sym_preproc_directive] = ACTIONS(1211), + [anon_sym_LPAREN2] = ACTIONS(1213), + [anon_sym_BANG] = ACTIONS(1213), + [anon_sym_TILDE] = ACTIONS(1213), + [anon_sym_DASH] = ACTIONS(1211), + [anon_sym_PLUS] = ACTIONS(1211), + [anon_sym_STAR] = ACTIONS(1213), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_SEMI] = ACTIONS(1213), + [anon_sym___extension__] = ACTIONS(1211), + [anon_sym_typedef] = ACTIONS(1211), + [anon_sym_extern] = ACTIONS(1211), + [anon_sym___attribute__] = ACTIONS(1211), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1213), + [anon_sym___declspec] = ACTIONS(1211), + [anon_sym___cdecl] = ACTIONS(1211), + [anon_sym___clrcall] = ACTIONS(1211), + [anon_sym___stdcall] = ACTIONS(1211), + [anon_sym___fastcall] = ACTIONS(1211), + [anon_sym___thiscall] = ACTIONS(1211), + [anon_sym___vectorcall] = ACTIONS(1211), + [anon_sym_LBRACE] = ACTIONS(1213), + [anon_sym_RBRACE] = ACTIONS(1213), + [anon_sym_signed] = ACTIONS(1211), + [anon_sym_unsigned] = ACTIONS(1211), + [anon_sym_long] = ACTIONS(1211), + [anon_sym_short] = ACTIONS(1211), + [anon_sym_static] = ACTIONS(1211), + [anon_sym_auto] = ACTIONS(1211), + [anon_sym_register] = ACTIONS(1211), + [anon_sym_inline] = ACTIONS(1211), + [anon_sym___inline] = ACTIONS(1211), + [anon_sym___inline__] = ACTIONS(1211), + [anon_sym___forceinline] = ACTIONS(1211), + [anon_sym_thread_local] = ACTIONS(1211), + [anon_sym___thread] = ACTIONS(1211), + [anon_sym_const] = ACTIONS(1211), + [anon_sym_constexpr] = ACTIONS(1211), + [anon_sym_volatile] = ACTIONS(1211), + [anon_sym_restrict] = ACTIONS(1211), + [anon_sym___restrict__] = ACTIONS(1211), + [anon_sym__Atomic] = ACTIONS(1211), + [anon_sym__Noreturn] = ACTIONS(1211), + [anon_sym_noreturn] = ACTIONS(1211), + [anon_sym_alignas] = ACTIONS(1211), + [anon_sym__Alignas] = ACTIONS(1211), + [sym_primitive_type] = ACTIONS(1211), + [anon_sym_enum] = ACTIONS(1211), + [anon_sym_struct] = ACTIONS(1211), + [anon_sym_union] = ACTIONS(1211), + [anon_sym_if] = ACTIONS(1211), + [anon_sym_else] = ACTIONS(1211), + [anon_sym_switch] = ACTIONS(1211), + [anon_sym_case] = ACTIONS(1211), + [anon_sym_default] = ACTIONS(1211), + [anon_sym_while] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(1211), + [anon_sym_for] = ACTIONS(1211), + [anon_sym_return] = ACTIONS(1211), + [anon_sym_break] = ACTIONS(1211), + [anon_sym_continue] = ACTIONS(1211), + [anon_sym_goto] = ACTIONS(1211), + [anon_sym___try] = ACTIONS(1211), + [anon_sym___leave] = ACTIONS(1211), + [anon_sym_DASH_DASH] = ACTIONS(1213), + [anon_sym_PLUS_PLUS] = ACTIONS(1213), + [anon_sym_sizeof] = ACTIONS(1211), + [anon_sym___alignof__] = ACTIONS(1211), + [anon_sym___alignof] = ACTIONS(1211), + [anon_sym__alignof] = ACTIONS(1211), + [anon_sym_alignof] = ACTIONS(1211), + [anon_sym__Alignof] = ACTIONS(1211), + [anon_sym_offsetof] = ACTIONS(1211), + [anon_sym__Generic] = ACTIONS(1211), + [anon_sym_asm] = ACTIONS(1211), + [anon_sym___asm__] = ACTIONS(1211), + [sym_number_literal] = ACTIONS(1213), + [anon_sym_L_SQUOTE] = ACTIONS(1213), + [anon_sym_u_SQUOTE] = ACTIONS(1213), + [anon_sym_U_SQUOTE] = ACTIONS(1213), + [anon_sym_u8_SQUOTE] = ACTIONS(1213), + [anon_sym_SQUOTE] = ACTIONS(1213), + [anon_sym_L_DQUOTE] = ACTIONS(1213), + [anon_sym_u_DQUOTE] = ACTIONS(1213), + [anon_sym_U_DQUOTE] = ACTIONS(1213), + [anon_sym_u8_DQUOTE] = ACTIONS(1213), + [anon_sym_DQUOTE] = ACTIONS(1213), + [sym_true] = ACTIONS(1211), + [sym_false] = ACTIONS(1211), + [anon_sym_NULL] = ACTIONS(1211), + [anon_sym_nullptr] = ACTIONS(1211), [sym_comment] = ACTIONS(3), }, - [178] = { + [161] = { + [ts_builtin_sym_end] = ACTIONS(1173), [sym_identifier] = ACTIONS(1171), [aux_sym_preproc_include_token1] = ACTIONS(1171), [aux_sym_preproc_def_token1] = ACTIONS(1171), [aux_sym_preproc_if_token1] = ACTIONS(1171), - [aux_sym_preproc_if_token2] = ACTIONS(1171), [aux_sym_preproc_ifdef_token1] = ACTIONS(1171), [aux_sym_preproc_ifdef_token2] = ACTIONS(1171), [sym_preproc_directive] = ACTIONS(1171), @@ -34477,2412 +32660,1511 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1171), [sym_comment] = ACTIONS(3), }, - [179] = { - [sym_identifier] = ACTIONS(1231), - [aux_sym_preproc_include_token1] = ACTIONS(1231), - [aux_sym_preproc_def_token1] = ACTIONS(1231), - [aux_sym_preproc_if_token1] = ACTIONS(1231), - [aux_sym_preproc_if_token2] = ACTIONS(1231), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1231), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1231), - [sym_preproc_directive] = ACTIONS(1231), - [anon_sym_LPAREN2] = ACTIONS(1233), - [anon_sym_BANG] = ACTIONS(1233), - [anon_sym_TILDE] = ACTIONS(1233), - [anon_sym_DASH] = ACTIONS(1231), - [anon_sym_PLUS] = ACTIONS(1231), - [anon_sym_STAR] = ACTIONS(1233), - [anon_sym_AMP] = ACTIONS(1233), - [anon_sym_SEMI] = ACTIONS(1233), - [anon_sym___extension__] = ACTIONS(1231), - [anon_sym_typedef] = ACTIONS(1231), - [anon_sym_extern] = ACTIONS(1231), - [anon_sym___attribute__] = ACTIONS(1231), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1233), - [anon_sym___declspec] = ACTIONS(1231), - [anon_sym___cdecl] = ACTIONS(1231), - [anon_sym___clrcall] = ACTIONS(1231), - [anon_sym___stdcall] = ACTIONS(1231), - [anon_sym___fastcall] = ACTIONS(1231), - [anon_sym___thiscall] = ACTIONS(1231), - [anon_sym___vectorcall] = ACTIONS(1231), - [anon_sym_LBRACE] = ACTIONS(1233), - [anon_sym_signed] = ACTIONS(1231), - [anon_sym_unsigned] = ACTIONS(1231), - [anon_sym_long] = ACTIONS(1231), - [anon_sym_short] = ACTIONS(1231), - [anon_sym_static] = ACTIONS(1231), - [anon_sym_auto] = ACTIONS(1231), - [anon_sym_register] = ACTIONS(1231), - [anon_sym_inline] = ACTIONS(1231), - [anon_sym___inline] = ACTIONS(1231), - [anon_sym___inline__] = ACTIONS(1231), - [anon_sym___forceinline] = ACTIONS(1231), - [anon_sym_thread_local] = ACTIONS(1231), - [anon_sym___thread] = ACTIONS(1231), - [anon_sym_const] = ACTIONS(1231), - [anon_sym_constexpr] = ACTIONS(1231), - [anon_sym_volatile] = ACTIONS(1231), - [anon_sym_restrict] = ACTIONS(1231), - [anon_sym___restrict__] = ACTIONS(1231), - [anon_sym__Atomic] = ACTIONS(1231), - [anon_sym__Noreturn] = ACTIONS(1231), - [anon_sym_noreturn] = ACTIONS(1231), - [anon_sym_alignas] = ACTIONS(1231), - [anon_sym__Alignas] = ACTIONS(1231), - [sym_primitive_type] = ACTIONS(1231), - [anon_sym_enum] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1231), - [anon_sym_union] = ACTIONS(1231), - [anon_sym_if] = ACTIONS(1231), - [anon_sym_else] = ACTIONS(1231), - [anon_sym_switch] = ACTIONS(1231), - [anon_sym_case] = ACTIONS(1231), - [anon_sym_default] = ACTIONS(1231), - [anon_sym_while] = ACTIONS(1231), - [anon_sym_do] = ACTIONS(1231), - [anon_sym_for] = ACTIONS(1231), - [anon_sym_return] = ACTIONS(1231), - [anon_sym_break] = ACTIONS(1231), - [anon_sym_continue] = ACTIONS(1231), - [anon_sym_goto] = ACTIONS(1231), - [anon_sym___try] = ACTIONS(1231), - [anon_sym___leave] = ACTIONS(1231), - [anon_sym_DASH_DASH] = ACTIONS(1233), - [anon_sym_PLUS_PLUS] = ACTIONS(1233), - [anon_sym_sizeof] = ACTIONS(1231), - [anon_sym___alignof__] = ACTIONS(1231), - [anon_sym___alignof] = ACTIONS(1231), - [anon_sym__alignof] = ACTIONS(1231), - [anon_sym_alignof] = ACTIONS(1231), - [anon_sym__Alignof] = ACTIONS(1231), - [anon_sym_offsetof] = ACTIONS(1231), - [anon_sym__Generic] = ACTIONS(1231), - [anon_sym_asm] = ACTIONS(1231), - [anon_sym___asm__] = ACTIONS(1231), - [sym_number_literal] = ACTIONS(1233), - [anon_sym_L_SQUOTE] = ACTIONS(1233), - [anon_sym_u_SQUOTE] = ACTIONS(1233), - [anon_sym_U_SQUOTE] = ACTIONS(1233), - [anon_sym_u8_SQUOTE] = ACTIONS(1233), - [anon_sym_SQUOTE] = ACTIONS(1233), - [anon_sym_L_DQUOTE] = ACTIONS(1233), - [anon_sym_u_DQUOTE] = ACTIONS(1233), - [anon_sym_U_DQUOTE] = ACTIONS(1233), - [anon_sym_u8_DQUOTE] = ACTIONS(1233), - [anon_sym_DQUOTE] = ACTIONS(1233), - [sym_true] = ACTIONS(1231), - [sym_false] = ACTIONS(1231), - [anon_sym_NULL] = ACTIONS(1231), - [anon_sym_nullptr] = ACTIONS(1231), - [sym_comment] = ACTIONS(3), - }, - [180] = { - [ts_builtin_sym_end] = ACTIONS(1125), - [sym_identifier] = ACTIONS(1123), - [aux_sym_preproc_include_token1] = ACTIONS(1123), - [aux_sym_preproc_def_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), - [sym_preproc_directive] = ACTIONS(1123), - [anon_sym_LPAREN2] = ACTIONS(1125), - [anon_sym_BANG] = ACTIONS(1125), - [anon_sym_TILDE] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym___extension__] = ACTIONS(1123), - [anon_sym_typedef] = ACTIONS(1123), - [anon_sym_extern] = ACTIONS(1123), - [anon_sym___attribute__] = ACTIONS(1123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), - [anon_sym___declspec] = ACTIONS(1123), - [anon_sym___cdecl] = ACTIONS(1123), - [anon_sym___clrcall] = ACTIONS(1123), - [anon_sym___stdcall] = ACTIONS(1123), - [anon_sym___fastcall] = ACTIONS(1123), - [anon_sym___thiscall] = ACTIONS(1123), - [anon_sym___vectorcall] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_signed] = ACTIONS(1123), - [anon_sym_unsigned] = ACTIONS(1123), - [anon_sym_long] = ACTIONS(1123), - [anon_sym_short] = ACTIONS(1123), - [anon_sym_static] = ACTIONS(1123), - [anon_sym_auto] = ACTIONS(1123), - [anon_sym_register] = ACTIONS(1123), - [anon_sym_inline] = ACTIONS(1123), - [anon_sym___inline] = ACTIONS(1123), - [anon_sym___inline__] = ACTIONS(1123), - [anon_sym___forceinline] = ACTIONS(1123), - [anon_sym_thread_local] = ACTIONS(1123), - [anon_sym___thread] = ACTIONS(1123), - [anon_sym_const] = ACTIONS(1123), - [anon_sym_constexpr] = ACTIONS(1123), - [anon_sym_volatile] = ACTIONS(1123), - [anon_sym_restrict] = ACTIONS(1123), - [anon_sym___restrict__] = ACTIONS(1123), - [anon_sym__Atomic] = ACTIONS(1123), - [anon_sym__Noreturn] = ACTIONS(1123), - [anon_sym_noreturn] = ACTIONS(1123), - [anon_sym_alignas] = ACTIONS(1123), - [anon_sym__Alignas] = ACTIONS(1123), - [sym_primitive_type] = ACTIONS(1123), - [anon_sym_enum] = ACTIONS(1123), - [anon_sym_struct] = ACTIONS(1123), - [anon_sym_union] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1123), - [anon_sym_else] = ACTIONS(1123), - [anon_sym_switch] = ACTIONS(1123), - [anon_sym_case] = ACTIONS(1123), - [anon_sym_default] = ACTIONS(1123), - [anon_sym_while] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(1123), - [anon_sym_for] = ACTIONS(1123), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_break] = ACTIONS(1123), - [anon_sym_continue] = ACTIONS(1123), - [anon_sym_goto] = ACTIONS(1123), - [anon_sym___try] = ACTIONS(1123), - [anon_sym___leave] = ACTIONS(1123), - [anon_sym_DASH_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1125), - [anon_sym_sizeof] = ACTIONS(1123), - [anon_sym___alignof__] = ACTIONS(1123), - [anon_sym___alignof] = ACTIONS(1123), - [anon_sym__alignof] = ACTIONS(1123), - [anon_sym_alignof] = ACTIONS(1123), - [anon_sym__Alignof] = ACTIONS(1123), - [anon_sym_offsetof] = ACTIONS(1123), - [anon_sym__Generic] = ACTIONS(1123), - [anon_sym_asm] = ACTIONS(1123), - [anon_sym___asm__] = ACTIONS(1123), - [sym_number_literal] = ACTIONS(1125), - [anon_sym_L_SQUOTE] = ACTIONS(1125), - [anon_sym_u_SQUOTE] = ACTIONS(1125), - [anon_sym_U_SQUOTE] = ACTIONS(1125), - [anon_sym_u8_SQUOTE] = ACTIONS(1125), - [anon_sym_SQUOTE] = ACTIONS(1125), - [anon_sym_L_DQUOTE] = ACTIONS(1125), - [anon_sym_u_DQUOTE] = ACTIONS(1125), - [anon_sym_U_DQUOTE] = ACTIONS(1125), - [anon_sym_u8_DQUOTE] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(1125), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [anon_sym_NULL] = ACTIONS(1123), - [anon_sym_nullptr] = ACTIONS(1123), + [162] = { + [sym_identifier] = ACTIONS(1129), + [aux_sym_preproc_include_token1] = ACTIONS(1129), + [aux_sym_preproc_def_token1] = ACTIONS(1129), + [aux_sym_preproc_if_token1] = ACTIONS(1129), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1129), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1129), + [sym_preproc_directive] = ACTIONS(1129), + [anon_sym_LPAREN2] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_TILDE] = ACTIONS(1127), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_STAR] = ACTIONS(1127), + [anon_sym_AMP] = ACTIONS(1127), + [anon_sym_SEMI] = ACTIONS(1127), + [anon_sym___extension__] = ACTIONS(1129), + [anon_sym_typedef] = ACTIONS(1129), + [anon_sym_extern] = ACTIONS(1129), + [anon_sym___attribute__] = ACTIONS(1129), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1127), + [anon_sym___declspec] = ACTIONS(1129), + [anon_sym___cdecl] = ACTIONS(1129), + [anon_sym___clrcall] = ACTIONS(1129), + [anon_sym___stdcall] = ACTIONS(1129), + [anon_sym___fastcall] = ACTIONS(1129), + [anon_sym___thiscall] = ACTIONS(1129), + [anon_sym___vectorcall] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_RBRACE] = ACTIONS(1127), + [anon_sym_signed] = ACTIONS(1129), + [anon_sym_unsigned] = ACTIONS(1129), + [anon_sym_long] = ACTIONS(1129), + [anon_sym_short] = ACTIONS(1129), + [anon_sym_static] = ACTIONS(1129), + [anon_sym_auto] = ACTIONS(1129), + [anon_sym_register] = ACTIONS(1129), + [anon_sym_inline] = ACTIONS(1129), + [anon_sym___inline] = ACTIONS(1129), + [anon_sym___inline__] = ACTIONS(1129), + [anon_sym___forceinline] = ACTIONS(1129), + [anon_sym_thread_local] = ACTIONS(1129), + [anon_sym___thread] = ACTIONS(1129), + [anon_sym_const] = ACTIONS(1129), + [anon_sym_constexpr] = ACTIONS(1129), + [anon_sym_volatile] = ACTIONS(1129), + [anon_sym_restrict] = ACTIONS(1129), + [anon_sym___restrict__] = ACTIONS(1129), + [anon_sym__Atomic] = ACTIONS(1129), + [anon_sym__Noreturn] = ACTIONS(1129), + [anon_sym_noreturn] = ACTIONS(1129), + [anon_sym_alignas] = ACTIONS(1129), + [anon_sym__Alignas] = ACTIONS(1129), + [sym_primitive_type] = ACTIONS(1129), + [anon_sym_enum] = ACTIONS(1129), + [anon_sym_struct] = ACTIONS(1129), + [anon_sym_union] = ACTIONS(1129), + [anon_sym_if] = ACTIONS(1129), + [anon_sym_else] = ACTIONS(1129), + [anon_sym_switch] = ACTIONS(1129), + [anon_sym_case] = ACTIONS(1129), + [anon_sym_default] = ACTIONS(1129), + [anon_sym_while] = ACTIONS(1129), + [anon_sym_do] = ACTIONS(1129), + [anon_sym_for] = ACTIONS(1129), + [anon_sym_return] = ACTIONS(1129), + [anon_sym_break] = ACTIONS(1129), + [anon_sym_continue] = ACTIONS(1129), + [anon_sym_goto] = ACTIONS(1129), + [anon_sym___try] = ACTIONS(1129), + [anon_sym___leave] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1127), + [anon_sym_PLUS_PLUS] = ACTIONS(1127), + [anon_sym_sizeof] = ACTIONS(1129), + [anon_sym___alignof__] = ACTIONS(1129), + [anon_sym___alignof] = ACTIONS(1129), + [anon_sym__alignof] = ACTIONS(1129), + [anon_sym_alignof] = ACTIONS(1129), + [anon_sym__Alignof] = ACTIONS(1129), + [anon_sym_offsetof] = ACTIONS(1129), + [anon_sym__Generic] = ACTIONS(1129), + [anon_sym_asm] = ACTIONS(1129), + [anon_sym___asm__] = ACTIONS(1129), + [sym_number_literal] = ACTIONS(1127), + [anon_sym_L_SQUOTE] = ACTIONS(1127), + [anon_sym_u_SQUOTE] = ACTIONS(1127), + [anon_sym_U_SQUOTE] = ACTIONS(1127), + [anon_sym_u8_SQUOTE] = ACTIONS(1127), + [anon_sym_SQUOTE] = ACTIONS(1127), + [anon_sym_L_DQUOTE] = ACTIONS(1127), + [anon_sym_u_DQUOTE] = ACTIONS(1127), + [anon_sym_U_DQUOTE] = ACTIONS(1127), + [anon_sym_u8_DQUOTE] = ACTIONS(1127), + [anon_sym_DQUOTE] = ACTIONS(1127), + [sym_true] = ACTIONS(1129), + [sym_false] = ACTIONS(1129), + [anon_sym_NULL] = ACTIONS(1129), + [anon_sym_nullptr] = ACTIONS(1129), [sym_comment] = ACTIONS(3), }, - [181] = { - [ts_builtin_sym_end] = ACTIONS(1173), - [sym_identifier] = ACTIONS(1171), - [aux_sym_preproc_include_token1] = ACTIONS(1171), - [aux_sym_preproc_def_token1] = ACTIONS(1171), - [aux_sym_preproc_if_token1] = ACTIONS(1171), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1171), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1171), - [sym_preproc_directive] = ACTIONS(1171), - [anon_sym_LPAREN2] = ACTIONS(1173), - [anon_sym_BANG] = ACTIONS(1173), - [anon_sym_TILDE] = ACTIONS(1173), - [anon_sym_DASH] = ACTIONS(1171), - [anon_sym_PLUS] = ACTIONS(1171), - [anon_sym_STAR] = ACTIONS(1173), - [anon_sym_AMP] = ACTIONS(1173), - [anon_sym_SEMI] = ACTIONS(1173), - [anon_sym___extension__] = ACTIONS(1171), - [anon_sym_typedef] = ACTIONS(1171), - [anon_sym_extern] = ACTIONS(1171), - [anon_sym___attribute__] = ACTIONS(1171), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1173), - [anon_sym___declspec] = ACTIONS(1171), - [anon_sym___cdecl] = ACTIONS(1171), - [anon_sym___clrcall] = ACTIONS(1171), - [anon_sym___stdcall] = ACTIONS(1171), - [anon_sym___fastcall] = ACTIONS(1171), - [anon_sym___thiscall] = ACTIONS(1171), - [anon_sym___vectorcall] = ACTIONS(1171), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_signed] = ACTIONS(1171), - [anon_sym_unsigned] = ACTIONS(1171), - [anon_sym_long] = ACTIONS(1171), - [anon_sym_short] = ACTIONS(1171), - [anon_sym_static] = ACTIONS(1171), - [anon_sym_auto] = ACTIONS(1171), - [anon_sym_register] = ACTIONS(1171), - [anon_sym_inline] = ACTIONS(1171), - [anon_sym___inline] = ACTIONS(1171), - [anon_sym___inline__] = ACTIONS(1171), - [anon_sym___forceinline] = ACTIONS(1171), - [anon_sym_thread_local] = ACTIONS(1171), - [anon_sym___thread] = ACTIONS(1171), - [anon_sym_const] = ACTIONS(1171), - [anon_sym_constexpr] = ACTIONS(1171), - [anon_sym_volatile] = ACTIONS(1171), - [anon_sym_restrict] = ACTIONS(1171), - [anon_sym___restrict__] = ACTIONS(1171), - [anon_sym__Atomic] = ACTIONS(1171), - [anon_sym__Noreturn] = ACTIONS(1171), - [anon_sym_noreturn] = ACTIONS(1171), - [anon_sym_alignas] = ACTIONS(1171), - [anon_sym__Alignas] = ACTIONS(1171), - [sym_primitive_type] = ACTIONS(1171), - [anon_sym_enum] = ACTIONS(1171), - [anon_sym_struct] = ACTIONS(1171), - [anon_sym_union] = ACTIONS(1171), - [anon_sym_if] = ACTIONS(1171), - [anon_sym_else] = ACTIONS(1171), - [anon_sym_switch] = ACTIONS(1171), - [anon_sym_case] = ACTIONS(1171), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_while] = ACTIONS(1171), - [anon_sym_do] = ACTIONS(1171), - [anon_sym_for] = ACTIONS(1171), - [anon_sym_return] = ACTIONS(1171), - [anon_sym_break] = ACTIONS(1171), - [anon_sym_continue] = ACTIONS(1171), - [anon_sym_goto] = ACTIONS(1171), - [anon_sym___try] = ACTIONS(1171), - [anon_sym___leave] = ACTIONS(1171), - [anon_sym_DASH_DASH] = ACTIONS(1173), - [anon_sym_PLUS_PLUS] = ACTIONS(1173), - [anon_sym_sizeof] = ACTIONS(1171), - [anon_sym___alignof__] = ACTIONS(1171), - [anon_sym___alignof] = ACTIONS(1171), - [anon_sym__alignof] = ACTIONS(1171), - [anon_sym_alignof] = ACTIONS(1171), - [anon_sym__Alignof] = ACTIONS(1171), - [anon_sym_offsetof] = ACTIONS(1171), - [anon_sym__Generic] = ACTIONS(1171), - [anon_sym_asm] = ACTIONS(1171), - [anon_sym___asm__] = ACTIONS(1171), - [sym_number_literal] = ACTIONS(1173), - [anon_sym_L_SQUOTE] = ACTIONS(1173), - [anon_sym_u_SQUOTE] = ACTIONS(1173), - [anon_sym_U_SQUOTE] = ACTIONS(1173), - [anon_sym_u8_SQUOTE] = ACTIONS(1173), - [anon_sym_SQUOTE] = ACTIONS(1173), - [anon_sym_L_DQUOTE] = ACTIONS(1173), - [anon_sym_u_DQUOTE] = ACTIONS(1173), - [anon_sym_U_DQUOTE] = ACTIONS(1173), - [anon_sym_u8_DQUOTE] = ACTIONS(1173), - [anon_sym_DQUOTE] = ACTIONS(1173), - [sym_true] = ACTIONS(1171), - [sym_false] = ACTIONS(1171), - [anon_sym_NULL] = ACTIONS(1171), - [anon_sym_nullptr] = ACTIONS(1171), + [163] = { + [sym_identifier] = ACTIONS(1215), + [aux_sym_preproc_include_token1] = ACTIONS(1215), + [aux_sym_preproc_def_token1] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1215), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1215), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1215), + [sym_preproc_directive] = ACTIONS(1215), + [anon_sym_LPAREN2] = ACTIONS(1217), + [anon_sym_BANG] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1217), + [anon_sym_DASH] = ACTIONS(1215), + [anon_sym_PLUS] = ACTIONS(1215), + [anon_sym_STAR] = ACTIONS(1217), + [anon_sym_AMP] = ACTIONS(1217), + [anon_sym_SEMI] = ACTIONS(1217), + [anon_sym___extension__] = ACTIONS(1215), + [anon_sym_typedef] = ACTIONS(1215), + [anon_sym_extern] = ACTIONS(1215), + [anon_sym___attribute__] = ACTIONS(1215), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1217), + [anon_sym___declspec] = ACTIONS(1215), + [anon_sym___cdecl] = ACTIONS(1215), + [anon_sym___clrcall] = ACTIONS(1215), + [anon_sym___stdcall] = ACTIONS(1215), + [anon_sym___fastcall] = ACTIONS(1215), + [anon_sym___thiscall] = ACTIONS(1215), + [anon_sym___vectorcall] = ACTIONS(1215), + [anon_sym_LBRACE] = ACTIONS(1217), + [anon_sym_RBRACE] = ACTIONS(1217), + [anon_sym_signed] = ACTIONS(1215), + [anon_sym_unsigned] = ACTIONS(1215), + [anon_sym_long] = ACTIONS(1215), + [anon_sym_short] = ACTIONS(1215), + [anon_sym_static] = ACTIONS(1215), + [anon_sym_auto] = ACTIONS(1215), + [anon_sym_register] = ACTIONS(1215), + [anon_sym_inline] = ACTIONS(1215), + [anon_sym___inline] = ACTIONS(1215), + [anon_sym___inline__] = ACTIONS(1215), + [anon_sym___forceinline] = ACTIONS(1215), + [anon_sym_thread_local] = ACTIONS(1215), + [anon_sym___thread] = ACTIONS(1215), + [anon_sym_const] = ACTIONS(1215), + [anon_sym_constexpr] = ACTIONS(1215), + [anon_sym_volatile] = ACTIONS(1215), + [anon_sym_restrict] = ACTIONS(1215), + [anon_sym___restrict__] = ACTIONS(1215), + [anon_sym__Atomic] = ACTIONS(1215), + [anon_sym__Noreturn] = ACTIONS(1215), + [anon_sym_noreturn] = ACTIONS(1215), + [anon_sym_alignas] = ACTIONS(1215), + [anon_sym__Alignas] = 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(1215), + [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___try] = ACTIONS(1215), + [anon_sym___leave] = ACTIONS(1215), + [anon_sym_DASH_DASH] = ACTIONS(1217), + [anon_sym_PLUS_PLUS] = ACTIONS(1217), + [anon_sym_sizeof] = ACTIONS(1215), + [anon_sym___alignof__] = ACTIONS(1215), + [anon_sym___alignof] = ACTIONS(1215), + [anon_sym__alignof] = ACTIONS(1215), + [anon_sym_alignof] = ACTIONS(1215), + [anon_sym__Alignof] = ACTIONS(1215), + [anon_sym_offsetof] = ACTIONS(1215), + [anon_sym__Generic] = ACTIONS(1215), + [anon_sym_asm] = ACTIONS(1215), + [anon_sym___asm__] = ACTIONS(1215), + [sym_number_literal] = ACTIONS(1217), + [anon_sym_L_SQUOTE] = ACTIONS(1217), + [anon_sym_u_SQUOTE] = ACTIONS(1217), + [anon_sym_U_SQUOTE] = ACTIONS(1217), + [anon_sym_u8_SQUOTE] = ACTIONS(1217), + [anon_sym_SQUOTE] = ACTIONS(1217), + [anon_sym_L_DQUOTE] = ACTIONS(1217), + [anon_sym_u_DQUOTE] = ACTIONS(1217), + [anon_sym_U_DQUOTE] = ACTIONS(1217), + [anon_sym_u8_DQUOTE] = ACTIONS(1217), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_true] = ACTIONS(1215), + [sym_false] = ACTIONS(1215), + [anon_sym_NULL] = ACTIONS(1215), + [anon_sym_nullptr] = ACTIONS(1215), [sym_comment] = ACTIONS(3), }, - [182] = { - [ts_builtin_sym_end] = ACTIONS(1165), - [sym_identifier] = ACTIONS(1163), - [aux_sym_preproc_include_token1] = ACTIONS(1163), - [aux_sym_preproc_def_token1] = ACTIONS(1163), - [aux_sym_preproc_if_token1] = ACTIONS(1163), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1163), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1163), - [sym_preproc_directive] = ACTIONS(1163), - [anon_sym_LPAREN2] = ACTIONS(1165), - [anon_sym_BANG] = ACTIONS(1165), - [anon_sym_TILDE] = ACTIONS(1165), - [anon_sym_DASH] = ACTIONS(1163), - [anon_sym_PLUS] = ACTIONS(1163), - [anon_sym_STAR] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(1165), - [anon_sym_SEMI] = ACTIONS(1165), - [anon_sym___extension__] = ACTIONS(1163), - [anon_sym_typedef] = ACTIONS(1163), - [anon_sym_extern] = ACTIONS(1163), - [anon_sym___attribute__] = ACTIONS(1163), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1165), - [anon_sym___declspec] = ACTIONS(1163), - [anon_sym___cdecl] = ACTIONS(1163), - [anon_sym___clrcall] = ACTIONS(1163), - [anon_sym___stdcall] = ACTIONS(1163), - [anon_sym___fastcall] = ACTIONS(1163), - [anon_sym___thiscall] = ACTIONS(1163), - [anon_sym___vectorcall] = ACTIONS(1163), - [anon_sym_LBRACE] = ACTIONS(1165), - [anon_sym_signed] = ACTIONS(1163), - [anon_sym_unsigned] = ACTIONS(1163), - [anon_sym_long] = ACTIONS(1163), - [anon_sym_short] = ACTIONS(1163), - [anon_sym_static] = ACTIONS(1163), - [anon_sym_auto] = ACTIONS(1163), - [anon_sym_register] = ACTIONS(1163), - [anon_sym_inline] = ACTIONS(1163), - [anon_sym___inline] = ACTIONS(1163), - [anon_sym___inline__] = ACTIONS(1163), - [anon_sym___forceinline] = ACTIONS(1163), - [anon_sym_thread_local] = ACTIONS(1163), - [anon_sym___thread] = ACTIONS(1163), - [anon_sym_const] = ACTIONS(1163), - [anon_sym_constexpr] = ACTIONS(1163), - [anon_sym_volatile] = ACTIONS(1163), - [anon_sym_restrict] = ACTIONS(1163), - [anon_sym___restrict__] = ACTIONS(1163), - [anon_sym__Atomic] = ACTIONS(1163), - [anon_sym__Noreturn] = ACTIONS(1163), - [anon_sym_noreturn] = ACTIONS(1163), - [anon_sym_alignas] = ACTIONS(1163), - [anon_sym__Alignas] = ACTIONS(1163), - [sym_primitive_type] = ACTIONS(1163), - [anon_sym_enum] = ACTIONS(1163), - [anon_sym_struct] = ACTIONS(1163), - [anon_sym_union] = ACTIONS(1163), - [anon_sym_if] = ACTIONS(1163), - [anon_sym_else] = ACTIONS(1163), - [anon_sym_switch] = ACTIONS(1163), - [anon_sym_case] = ACTIONS(1163), - [anon_sym_default] = ACTIONS(1163), - [anon_sym_while] = ACTIONS(1163), - [anon_sym_do] = ACTIONS(1163), - [anon_sym_for] = ACTIONS(1163), - [anon_sym_return] = ACTIONS(1163), - [anon_sym_break] = ACTIONS(1163), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_goto] = ACTIONS(1163), - [anon_sym___try] = ACTIONS(1163), - [anon_sym___leave] = ACTIONS(1163), - [anon_sym_DASH_DASH] = ACTIONS(1165), - [anon_sym_PLUS_PLUS] = ACTIONS(1165), - [anon_sym_sizeof] = ACTIONS(1163), - [anon_sym___alignof__] = ACTIONS(1163), - [anon_sym___alignof] = ACTIONS(1163), - [anon_sym__alignof] = ACTIONS(1163), - [anon_sym_alignof] = ACTIONS(1163), - [anon_sym__Alignof] = ACTIONS(1163), - [anon_sym_offsetof] = ACTIONS(1163), - [anon_sym__Generic] = ACTIONS(1163), - [anon_sym_asm] = ACTIONS(1163), - [anon_sym___asm__] = ACTIONS(1163), - [sym_number_literal] = ACTIONS(1165), - [anon_sym_L_SQUOTE] = ACTIONS(1165), - [anon_sym_u_SQUOTE] = ACTIONS(1165), - [anon_sym_U_SQUOTE] = ACTIONS(1165), - [anon_sym_u8_SQUOTE] = ACTIONS(1165), - [anon_sym_SQUOTE] = ACTIONS(1165), - [anon_sym_L_DQUOTE] = ACTIONS(1165), - [anon_sym_u_DQUOTE] = ACTIONS(1165), - [anon_sym_U_DQUOTE] = ACTIONS(1165), - [anon_sym_u8_DQUOTE] = ACTIONS(1165), - [anon_sym_DQUOTE] = ACTIONS(1165), - [sym_true] = ACTIONS(1163), - [sym_false] = ACTIONS(1163), - [anon_sym_NULL] = ACTIONS(1163), - [anon_sym_nullptr] = ACTIONS(1163), + [164] = { + [ts_builtin_sym_end] = ACTIONS(1245), + [sym_identifier] = ACTIONS(1243), + [aux_sym_preproc_include_token1] = ACTIONS(1243), + [aux_sym_preproc_def_token1] = ACTIONS(1243), + [aux_sym_preproc_if_token1] = ACTIONS(1243), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1243), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1243), + [sym_preproc_directive] = ACTIONS(1243), + [anon_sym_LPAREN2] = ACTIONS(1245), + [anon_sym_BANG] = ACTIONS(1245), + [anon_sym_TILDE] = ACTIONS(1245), + [anon_sym_DASH] = ACTIONS(1243), + [anon_sym_PLUS] = ACTIONS(1243), + [anon_sym_STAR] = ACTIONS(1245), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_SEMI] = ACTIONS(1245), + [anon_sym___extension__] = ACTIONS(1243), + [anon_sym_typedef] = ACTIONS(1243), + [anon_sym_extern] = ACTIONS(1243), + [anon_sym___attribute__] = ACTIONS(1243), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1245), + [anon_sym___declspec] = ACTIONS(1243), + [anon_sym___cdecl] = ACTIONS(1243), + [anon_sym___clrcall] = ACTIONS(1243), + [anon_sym___stdcall] = ACTIONS(1243), + [anon_sym___fastcall] = ACTIONS(1243), + [anon_sym___thiscall] = ACTIONS(1243), + [anon_sym___vectorcall] = ACTIONS(1243), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_signed] = ACTIONS(1243), + [anon_sym_unsigned] = ACTIONS(1243), + [anon_sym_long] = ACTIONS(1243), + [anon_sym_short] = ACTIONS(1243), + [anon_sym_static] = ACTIONS(1243), + [anon_sym_auto] = ACTIONS(1243), + [anon_sym_register] = ACTIONS(1243), + [anon_sym_inline] = ACTIONS(1243), + [anon_sym___inline] = ACTIONS(1243), + [anon_sym___inline__] = ACTIONS(1243), + [anon_sym___forceinline] = ACTIONS(1243), + [anon_sym_thread_local] = ACTIONS(1243), + [anon_sym___thread] = ACTIONS(1243), + [anon_sym_const] = ACTIONS(1243), + [anon_sym_constexpr] = ACTIONS(1243), + [anon_sym_volatile] = ACTIONS(1243), + [anon_sym_restrict] = ACTIONS(1243), + [anon_sym___restrict__] = ACTIONS(1243), + [anon_sym__Atomic] = ACTIONS(1243), + [anon_sym__Noreturn] = ACTIONS(1243), + [anon_sym_noreturn] = ACTIONS(1243), + [anon_sym_alignas] = ACTIONS(1243), + [anon_sym__Alignas] = ACTIONS(1243), + [sym_primitive_type] = ACTIONS(1243), + [anon_sym_enum] = ACTIONS(1243), + [anon_sym_struct] = ACTIONS(1243), + [anon_sym_union] = ACTIONS(1243), + [anon_sym_if] = ACTIONS(1243), + [anon_sym_else] = ACTIONS(1243), + [anon_sym_switch] = ACTIONS(1243), + [anon_sym_case] = ACTIONS(1243), + [anon_sym_default] = ACTIONS(1243), + [anon_sym_while] = ACTIONS(1243), + [anon_sym_do] = ACTIONS(1243), + [anon_sym_for] = ACTIONS(1243), + [anon_sym_return] = ACTIONS(1243), + [anon_sym_break] = ACTIONS(1243), + [anon_sym_continue] = ACTIONS(1243), + [anon_sym_goto] = ACTIONS(1243), + [anon_sym___try] = ACTIONS(1243), + [anon_sym___leave] = ACTIONS(1243), + [anon_sym_DASH_DASH] = ACTIONS(1245), + [anon_sym_PLUS_PLUS] = ACTIONS(1245), + [anon_sym_sizeof] = ACTIONS(1243), + [anon_sym___alignof__] = ACTIONS(1243), + [anon_sym___alignof] = ACTIONS(1243), + [anon_sym__alignof] = ACTIONS(1243), + [anon_sym_alignof] = ACTIONS(1243), + [anon_sym__Alignof] = ACTIONS(1243), + [anon_sym_offsetof] = ACTIONS(1243), + [anon_sym__Generic] = ACTIONS(1243), + [anon_sym_asm] = ACTIONS(1243), + [anon_sym___asm__] = ACTIONS(1243), + [sym_number_literal] = ACTIONS(1245), + [anon_sym_L_SQUOTE] = ACTIONS(1245), + [anon_sym_u_SQUOTE] = ACTIONS(1245), + [anon_sym_U_SQUOTE] = ACTIONS(1245), + [anon_sym_u8_SQUOTE] = ACTIONS(1245), + [anon_sym_SQUOTE] = ACTIONS(1245), + [anon_sym_L_DQUOTE] = ACTIONS(1245), + [anon_sym_u_DQUOTE] = ACTIONS(1245), + [anon_sym_U_DQUOTE] = ACTIONS(1245), + [anon_sym_u8_DQUOTE] = ACTIONS(1245), + [anon_sym_DQUOTE] = ACTIONS(1245), + [sym_true] = ACTIONS(1243), + [sym_false] = ACTIONS(1243), + [anon_sym_NULL] = ACTIONS(1243), + [anon_sym_nullptr] = ACTIONS(1243), [sym_comment] = ACTIONS(3), }, - [183] = { - [ts_builtin_sym_end] = ACTIONS(1125), - [sym_identifier] = ACTIONS(1123), - [aux_sym_preproc_include_token1] = ACTIONS(1123), - [aux_sym_preproc_def_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), - [sym_preproc_directive] = ACTIONS(1123), - [anon_sym_LPAREN2] = ACTIONS(1125), - [anon_sym_BANG] = ACTIONS(1125), - [anon_sym_TILDE] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym___extension__] = ACTIONS(1123), - [anon_sym_typedef] = ACTIONS(1123), - [anon_sym_extern] = ACTIONS(1123), - [anon_sym___attribute__] = ACTIONS(1123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), - [anon_sym___declspec] = ACTIONS(1123), - [anon_sym___cdecl] = ACTIONS(1123), - [anon_sym___clrcall] = ACTIONS(1123), - [anon_sym___stdcall] = ACTIONS(1123), - [anon_sym___fastcall] = ACTIONS(1123), - [anon_sym___thiscall] = ACTIONS(1123), - [anon_sym___vectorcall] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_signed] = ACTIONS(1123), - [anon_sym_unsigned] = ACTIONS(1123), - [anon_sym_long] = ACTIONS(1123), - [anon_sym_short] = ACTIONS(1123), - [anon_sym_static] = ACTIONS(1123), - [anon_sym_auto] = ACTIONS(1123), - [anon_sym_register] = ACTIONS(1123), - [anon_sym_inline] = ACTIONS(1123), - [anon_sym___inline] = ACTIONS(1123), - [anon_sym___inline__] = ACTIONS(1123), - [anon_sym___forceinline] = ACTIONS(1123), - [anon_sym_thread_local] = ACTIONS(1123), - [anon_sym___thread] = ACTIONS(1123), - [anon_sym_const] = ACTIONS(1123), - [anon_sym_constexpr] = ACTIONS(1123), - [anon_sym_volatile] = ACTIONS(1123), - [anon_sym_restrict] = ACTIONS(1123), - [anon_sym___restrict__] = ACTIONS(1123), - [anon_sym__Atomic] = ACTIONS(1123), - [anon_sym__Noreturn] = ACTIONS(1123), - [anon_sym_noreturn] = ACTIONS(1123), - [anon_sym_alignas] = ACTIONS(1123), - [anon_sym__Alignas] = ACTIONS(1123), - [sym_primitive_type] = ACTIONS(1123), - [anon_sym_enum] = ACTIONS(1123), - [anon_sym_struct] = ACTIONS(1123), - [anon_sym_union] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1123), - [anon_sym_else] = ACTIONS(1123), - [anon_sym_switch] = ACTIONS(1123), - [anon_sym_case] = ACTIONS(1123), - [anon_sym_default] = ACTIONS(1123), - [anon_sym_while] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(1123), - [anon_sym_for] = ACTIONS(1123), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_break] = ACTIONS(1123), - [anon_sym_continue] = ACTIONS(1123), - [anon_sym_goto] = ACTIONS(1123), - [anon_sym___try] = ACTIONS(1123), - [anon_sym___leave] = ACTIONS(1123), - [anon_sym_DASH_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1125), - [anon_sym_sizeof] = ACTIONS(1123), - [anon_sym___alignof__] = ACTIONS(1123), - [anon_sym___alignof] = ACTIONS(1123), - [anon_sym__alignof] = ACTIONS(1123), - [anon_sym_alignof] = ACTIONS(1123), - [anon_sym__Alignof] = ACTIONS(1123), - [anon_sym_offsetof] = ACTIONS(1123), - [anon_sym__Generic] = ACTIONS(1123), - [anon_sym_asm] = ACTIONS(1123), - [anon_sym___asm__] = ACTIONS(1123), - [sym_number_literal] = ACTIONS(1125), - [anon_sym_L_SQUOTE] = ACTIONS(1125), - [anon_sym_u_SQUOTE] = ACTIONS(1125), - [anon_sym_U_SQUOTE] = ACTIONS(1125), - [anon_sym_u8_SQUOTE] = ACTIONS(1125), - [anon_sym_SQUOTE] = ACTIONS(1125), - [anon_sym_L_DQUOTE] = ACTIONS(1125), - [anon_sym_u_DQUOTE] = ACTIONS(1125), - [anon_sym_U_DQUOTE] = ACTIONS(1125), - [anon_sym_u8_DQUOTE] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(1125), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [anon_sym_NULL] = ACTIONS(1123), - [anon_sym_nullptr] = ACTIONS(1123), - [sym_comment] = ACTIONS(3), - }, - [184] = { - [ts_builtin_sym_end] = ACTIONS(1125), - [sym_identifier] = ACTIONS(1123), - [aux_sym_preproc_include_token1] = ACTIONS(1123), - [aux_sym_preproc_def_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), - [sym_preproc_directive] = ACTIONS(1123), - [anon_sym_LPAREN2] = ACTIONS(1125), - [anon_sym_BANG] = ACTIONS(1125), - [anon_sym_TILDE] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym___extension__] = ACTIONS(1123), - [anon_sym_typedef] = ACTIONS(1123), - [anon_sym_extern] = ACTIONS(1123), - [anon_sym___attribute__] = ACTIONS(1123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), - [anon_sym___declspec] = ACTIONS(1123), - [anon_sym___cdecl] = ACTIONS(1123), - [anon_sym___clrcall] = ACTIONS(1123), - [anon_sym___stdcall] = ACTIONS(1123), - [anon_sym___fastcall] = ACTIONS(1123), - [anon_sym___thiscall] = ACTIONS(1123), - [anon_sym___vectorcall] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_signed] = ACTIONS(1123), - [anon_sym_unsigned] = ACTIONS(1123), - [anon_sym_long] = ACTIONS(1123), - [anon_sym_short] = ACTIONS(1123), - [anon_sym_static] = ACTIONS(1123), - [anon_sym_auto] = ACTIONS(1123), - [anon_sym_register] = ACTIONS(1123), - [anon_sym_inline] = ACTIONS(1123), - [anon_sym___inline] = ACTIONS(1123), - [anon_sym___inline__] = ACTIONS(1123), - [anon_sym___forceinline] = ACTIONS(1123), - [anon_sym_thread_local] = ACTIONS(1123), - [anon_sym___thread] = ACTIONS(1123), - [anon_sym_const] = ACTIONS(1123), - [anon_sym_constexpr] = ACTIONS(1123), - [anon_sym_volatile] = ACTIONS(1123), - [anon_sym_restrict] = ACTIONS(1123), - [anon_sym___restrict__] = ACTIONS(1123), - [anon_sym__Atomic] = ACTIONS(1123), - [anon_sym__Noreturn] = ACTIONS(1123), - [anon_sym_noreturn] = ACTIONS(1123), - [anon_sym_alignas] = ACTIONS(1123), - [anon_sym__Alignas] = ACTIONS(1123), - [sym_primitive_type] = ACTIONS(1123), - [anon_sym_enum] = ACTIONS(1123), - [anon_sym_struct] = ACTIONS(1123), - [anon_sym_union] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1123), - [anon_sym_else] = ACTIONS(1123), - [anon_sym_switch] = ACTIONS(1123), - [anon_sym_case] = ACTIONS(1123), - [anon_sym_default] = ACTIONS(1123), - [anon_sym_while] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(1123), - [anon_sym_for] = ACTIONS(1123), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_break] = ACTIONS(1123), - [anon_sym_continue] = ACTIONS(1123), - [anon_sym_goto] = ACTIONS(1123), - [anon_sym___try] = ACTIONS(1123), - [anon_sym___leave] = ACTIONS(1123), - [anon_sym_DASH_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1125), - [anon_sym_sizeof] = ACTIONS(1123), - [anon_sym___alignof__] = ACTIONS(1123), - [anon_sym___alignof] = ACTIONS(1123), - [anon_sym__alignof] = ACTIONS(1123), - [anon_sym_alignof] = ACTIONS(1123), - [anon_sym__Alignof] = ACTIONS(1123), - [anon_sym_offsetof] = ACTIONS(1123), - [anon_sym__Generic] = ACTIONS(1123), - [anon_sym_asm] = ACTIONS(1123), - [anon_sym___asm__] = ACTIONS(1123), - [sym_number_literal] = ACTIONS(1125), - [anon_sym_L_SQUOTE] = ACTIONS(1125), - [anon_sym_u_SQUOTE] = ACTIONS(1125), - [anon_sym_U_SQUOTE] = ACTIONS(1125), - [anon_sym_u8_SQUOTE] = ACTIONS(1125), - [anon_sym_SQUOTE] = ACTIONS(1125), - [anon_sym_L_DQUOTE] = ACTIONS(1125), - [anon_sym_u_DQUOTE] = ACTIONS(1125), - [anon_sym_U_DQUOTE] = ACTIONS(1125), - [anon_sym_u8_DQUOTE] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(1125), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [anon_sym_NULL] = ACTIONS(1123), - [anon_sym_nullptr] = ACTIONS(1123), + [165] = { + [ts_builtin_sym_end] = ACTIONS(1205), + [sym_identifier] = ACTIONS(1203), + [aux_sym_preproc_include_token1] = ACTIONS(1203), + [aux_sym_preproc_def_token1] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1203), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1203), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1203), + [sym_preproc_directive] = ACTIONS(1203), + [anon_sym_LPAREN2] = ACTIONS(1205), + [anon_sym_BANG] = ACTIONS(1205), + [anon_sym_TILDE] = ACTIONS(1205), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_AMP] = ACTIONS(1205), + [anon_sym_SEMI] = ACTIONS(1205), + [anon_sym___extension__] = ACTIONS(1203), + [anon_sym_typedef] = ACTIONS(1203), + [anon_sym_extern] = ACTIONS(1203), + [anon_sym___attribute__] = ACTIONS(1203), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1205), + [anon_sym___declspec] = ACTIONS(1203), + [anon_sym___cdecl] = ACTIONS(1203), + [anon_sym___clrcall] = ACTIONS(1203), + [anon_sym___stdcall] = ACTIONS(1203), + [anon_sym___fastcall] = ACTIONS(1203), + [anon_sym___thiscall] = ACTIONS(1203), + [anon_sym___vectorcall] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [anon_sym_signed] = ACTIONS(1203), + [anon_sym_unsigned] = ACTIONS(1203), + [anon_sym_long] = ACTIONS(1203), + [anon_sym_short] = ACTIONS(1203), + [anon_sym_static] = ACTIONS(1203), + [anon_sym_auto] = ACTIONS(1203), + [anon_sym_register] = ACTIONS(1203), + [anon_sym_inline] = ACTIONS(1203), + [anon_sym___inline] = ACTIONS(1203), + [anon_sym___inline__] = ACTIONS(1203), + [anon_sym___forceinline] = ACTIONS(1203), + [anon_sym_thread_local] = ACTIONS(1203), + [anon_sym___thread] = ACTIONS(1203), + [anon_sym_const] = ACTIONS(1203), + [anon_sym_constexpr] = ACTIONS(1203), + [anon_sym_volatile] = ACTIONS(1203), + [anon_sym_restrict] = ACTIONS(1203), + [anon_sym___restrict__] = ACTIONS(1203), + [anon_sym__Atomic] = ACTIONS(1203), + [anon_sym__Noreturn] = ACTIONS(1203), + [anon_sym_noreturn] = ACTIONS(1203), + [anon_sym_alignas] = ACTIONS(1203), + [anon_sym__Alignas] = ACTIONS(1203), + [sym_primitive_type] = ACTIONS(1203), + [anon_sym_enum] = ACTIONS(1203), + [anon_sym_struct] = ACTIONS(1203), + [anon_sym_union] = ACTIONS(1203), + [anon_sym_if] = ACTIONS(1203), + [anon_sym_else] = ACTIONS(1203), + [anon_sym_switch] = ACTIONS(1203), + [anon_sym_case] = ACTIONS(1203), + [anon_sym_default] = ACTIONS(1203), + [anon_sym_while] = ACTIONS(1203), + [anon_sym_do] = ACTIONS(1203), + [anon_sym_for] = ACTIONS(1203), + [anon_sym_return] = ACTIONS(1203), + [anon_sym_break] = ACTIONS(1203), + [anon_sym_continue] = ACTIONS(1203), + [anon_sym_goto] = ACTIONS(1203), + [anon_sym___try] = ACTIONS(1203), + [anon_sym___leave] = ACTIONS(1203), + [anon_sym_DASH_DASH] = ACTIONS(1205), + [anon_sym_PLUS_PLUS] = ACTIONS(1205), + [anon_sym_sizeof] = ACTIONS(1203), + [anon_sym___alignof__] = ACTIONS(1203), + [anon_sym___alignof] = ACTIONS(1203), + [anon_sym__alignof] = ACTIONS(1203), + [anon_sym_alignof] = ACTIONS(1203), + [anon_sym__Alignof] = ACTIONS(1203), + [anon_sym_offsetof] = ACTIONS(1203), + [anon_sym__Generic] = ACTIONS(1203), + [anon_sym_asm] = ACTIONS(1203), + [anon_sym___asm__] = ACTIONS(1203), + [sym_number_literal] = ACTIONS(1205), + [anon_sym_L_SQUOTE] = ACTIONS(1205), + [anon_sym_u_SQUOTE] = ACTIONS(1205), + [anon_sym_U_SQUOTE] = ACTIONS(1205), + [anon_sym_u8_SQUOTE] = ACTIONS(1205), + [anon_sym_SQUOTE] = ACTIONS(1205), + [anon_sym_L_DQUOTE] = ACTIONS(1205), + [anon_sym_u_DQUOTE] = ACTIONS(1205), + [anon_sym_U_DQUOTE] = ACTIONS(1205), + [anon_sym_u8_DQUOTE] = ACTIONS(1205), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_true] = ACTIONS(1203), + [sym_false] = ACTIONS(1203), + [anon_sym_NULL] = ACTIONS(1203), + [anon_sym_nullptr] = ACTIONS(1203), [sym_comment] = ACTIONS(3), }, - [185] = { - [ts_builtin_sym_end] = ACTIONS(1125), - [sym_identifier] = ACTIONS(1123), - [aux_sym_preproc_include_token1] = ACTIONS(1123), - [aux_sym_preproc_def_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), - [sym_preproc_directive] = ACTIONS(1123), - [anon_sym_LPAREN2] = ACTIONS(1125), - [anon_sym_BANG] = ACTIONS(1125), - [anon_sym_TILDE] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym___extension__] = ACTIONS(1123), - [anon_sym_typedef] = ACTIONS(1123), - [anon_sym_extern] = ACTIONS(1123), - [anon_sym___attribute__] = ACTIONS(1123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), - [anon_sym___declspec] = ACTIONS(1123), - [anon_sym___cdecl] = ACTIONS(1123), - [anon_sym___clrcall] = ACTIONS(1123), - [anon_sym___stdcall] = ACTIONS(1123), - [anon_sym___fastcall] = ACTIONS(1123), - [anon_sym___thiscall] = ACTIONS(1123), - [anon_sym___vectorcall] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_signed] = ACTIONS(1123), - [anon_sym_unsigned] = ACTIONS(1123), - [anon_sym_long] = ACTIONS(1123), - [anon_sym_short] = ACTIONS(1123), - [anon_sym_static] = ACTIONS(1123), - [anon_sym_auto] = ACTIONS(1123), - [anon_sym_register] = ACTIONS(1123), - [anon_sym_inline] = ACTIONS(1123), - [anon_sym___inline] = ACTIONS(1123), - [anon_sym___inline__] = ACTIONS(1123), - [anon_sym___forceinline] = ACTIONS(1123), - [anon_sym_thread_local] = ACTIONS(1123), - [anon_sym___thread] = ACTIONS(1123), - [anon_sym_const] = ACTIONS(1123), - [anon_sym_constexpr] = ACTIONS(1123), - [anon_sym_volatile] = ACTIONS(1123), - [anon_sym_restrict] = ACTIONS(1123), - [anon_sym___restrict__] = ACTIONS(1123), - [anon_sym__Atomic] = ACTIONS(1123), - [anon_sym__Noreturn] = ACTIONS(1123), - [anon_sym_noreturn] = ACTIONS(1123), - [anon_sym_alignas] = ACTIONS(1123), - [anon_sym__Alignas] = ACTIONS(1123), - [sym_primitive_type] = ACTIONS(1123), - [anon_sym_enum] = ACTIONS(1123), - [anon_sym_struct] = ACTIONS(1123), - [anon_sym_union] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1123), - [anon_sym_else] = ACTIONS(1123), - [anon_sym_switch] = ACTIONS(1123), - [anon_sym_case] = ACTIONS(1123), - [anon_sym_default] = ACTIONS(1123), - [anon_sym_while] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(1123), - [anon_sym_for] = ACTIONS(1123), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_break] = ACTIONS(1123), - [anon_sym_continue] = ACTIONS(1123), - [anon_sym_goto] = ACTIONS(1123), - [anon_sym___try] = ACTIONS(1123), - [anon_sym___leave] = ACTIONS(1123), - [anon_sym_DASH_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1125), - [anon_sym_sizeof] = ACTIONS(1123), - [anon_sym___alignof__] = ACTIONS(1123), - [anon_sym___alignof] = ACTIONS(1123), - [anon_sym__alignof] = ACTIONS(1123), - [anon_sym_alignof] = ACTIONS(1123), - [anon_sym__Alignof] = ACTIONS(1123), - [anon_sym_offsetof] = ACTIONS(1123), - [anon_sym__Generic] = ACTIONS(1123), - [anon_sym_asm] = ACTIONS(1123), - [anon_sym___asm__] = ACTIONS(1123), - [sym_number_literal] = ACTIONS(1125), - [anon_sym_L_SQUOTE] = ACTIONS(1125), - [anon_sym_u_SQUOTE] = ACTIONS(1125), - [anon_sym_U_SQUOTE] = ACTIONS(1125), - [anon_sym_u8_SQUOTE] = ACTIONS(1125), - [anon_sym_SQUOTE] = ACTIONS(1125), - [anon_sym_L_DQUOTE] = ACTIONS(1125), - [anon_sym_u_DQUOTE] = ACTIONS(1125), - [anon_sym_U_DQUOTE] = ACTIONS(1125), - [anon_sym_u8_DQUOTE] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(1125), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [anon_sym_NULL] = ACTIONS(1123), - [anon_sym_nullptr] = ACTIONS(1123), + [166] = { + [sym_identifier] = ACTIONS(1211), + [aux_sym_preproc_include_token1] = ACTIONS(1211), + [aux_sym_preproc_def_token1] = ACTIONS(1211), + [aux_sym_preproc_if_token1] = ACTIONS(1211), + [aux_sym_preproc_if_token2] = ACTIONS(1211), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1211), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1211), + [sym_preproc_directive] = ACTIONS(1211), + [anon_sym_LPAREN2] = ACTIONS(1213), + [anon_sym_BANG] = ACTIONS(1213), + [anon_sym_TILDE] = ACTIONS(1213), + [anon_sym_DASH] = ACTIONS(1211), + [anon_sym_PLUS] = ACTIONS(1211), + [anon_sym_STAR] = ACTIONS(1213), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_SEMI] = ACTIONS(1213), + [anon_sym___extension__] = ACTIONS(1211), + [anon_sym_typedef] = ACTIONS(1211), + [anon_sym_extern] = ACTIONS(1211), + [anon_sym___attribute__] = ACTIONS(1211), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1213), + [anon_sym___declspec] = ACTIONS(1211), + [anon_sym___cdecl] = ACTIONS(1211), + [anon_sym___clrcall] = ACTIONS(1211), + [anon_sym___stdcall] = ACTIONS(1211), + [anon_sym___fastcall] = ACTIONS(1211), + [anon_sym___thiscall] = ACTIONS(1211), + [anon_sym___vectorcall] = ACTIONS(1211), + [anon_sym_LBRACE] = ACTIONS(1213), + [anon_sym_signed] = ACTIONS(1211), + [anon_sym_unsigned] = ACTIONS(1211), + [anon_sym_long] = ACTIONS(1211), + [anon_sym_short] = ACTIONS(1211), + [anon_sym_static] = ACTIONS(1211), + [anon_sym_auto] = ACTIONS(1211), + [anon_sym_register] = ACTIONS(1211), + [anon_sym_inline] = ACTIONS(1211), + [anon_sym___inline] = ACTIONS(1211), + [anon_sym___inline__] = ACTIONS(1211), + [anon_sym___forceinline] = ACTIONS(1211), + [anon_sym_thread_local] = ACTIONS(1211), + [anon_sym___thread] = ACTIONS(1211), + [anon_sym_const] = ACTIONS(1211), + [anon_sym_constexpr] = ACTIONS(1211), + [anon_sym_volatile] = ACTIONS(1211), + [anon_sym_restrict] = ACTIONS(1211), + [anon_sym___restrict__] = ACTIONS(1211), + [anon_sym__Atomic] = ACTIONS(1211), + [anon_sym__Noreturn] = ACTIONS(1211), + [anon_sym_noreturn] = ACTIONS(1211), + [anon_sym_alignas] = ACTIONS(1211), + [anon_sym__Alignas] = ACTIONS(1211), + [sym_primitive_type] = ACTIONS(1211), + [anon_sym_enum] = ACTIONS(1211), + [anon_sym_struct] = ACTIONS(1211), + [anon_sym_union] = ACTIONS(1211), + [anon_sym_if] = ACTIONS(1211), + [anon_sym_else] = ACTIONS(1211), + [anon_sym_switch] = ACTIONS(1211), + [anon_sym_case] = ACTIONS(1211), + [anon_sym_default] = ACTIONS(1211), + [anon_sym_while] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(1211), + [anon_sym_for] = ACTIONS(1211), + [anon_sym_return] = ACTIONS(1211), + [anon_sym_break] = ACTIONS(1211), + [anon_sym_continue] = ACTIONS(1211), + [anon_sym_goto] = ACTIONS(1211), + [anon_sym___try] = ACTIONS(1211), + [anon_sym___leave] = ACTIONS(1211), + [anon_sym_DASH_DASH] = ACTIONS(1213), + [anon_sym_PLUS_PLUS] = ACTIONS(1213), + [anon_sym_sizeof] = ACTIONS(1211), + [anon_sym___alignof__] = ACTIONS(1211), + [anon_sym___alignof] = ACTIONS(1211), + [anon_sym__alignof] = ACTIONS(1211), + [anon_sym_alignof] = ACTIONS(1211), + [anon_sym__Alignof] = ACTIONS(1211), + [anon_sym_offsetof] = ACTIONS(1211), + [anon_sym__Generic] = ACTIONS(1211), + [anon_sym_asm] = ACTIONS(1211), + [anon_sym___asm__] = ACTIONS(1211), + [sym_number_literal] = ACTIONS(1213), + [anon_sym_L_SQUOTE] = ACTIONS(1213), + [anon_sym_u_SQUOTE] = ACTIONS(1213), + [anon_sym_U_SQUOTE] = ACTIONS(1213), + [anon_sym_u8_SQUOTE] = ACTIONS(1213), + [anon_sym_SQUOTE] = ACTIONS(1213), + [anon_sym_L_DQUOTE] = ACTIONS(1213), + [anon_sym_u_DQUOTE] = ACTIONS(1213), + [anon_sym_U_DQUOTE] = ACTIONS(1213), + [anon_sym_u8_DQUOTE] = ACTIONS(1213), + [anon_sym_DQUOTE] = ACTIONS(1213), + [sym_true] = ACTIONS(1211), + [sym_false] = ACTIONS(1211), + [anon_sym_NULL] = ACTIONS(1211), + [anon_sym_nullptr] = ACTIONS(1211), [sym_comment] = ACTIONS(3), }, - [186] = { - [ts_builtin_sym_end] = ACTIONS(1125), - [sym_identifier] = ACTIONS(1123), - [aux_sym_preproc_include_token1] = ACTIONS(1123), - [aux_sym_preproc_def_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), - [sym_preproc_directive] = ACTIONS(1123), - [anon_sym_LPAREN2] = ACTIONS(1125), - [anon_sym_BANG] = ACTIONS(1125), - [anon_sym_TILDE] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym___extension__] = ACTIONS(1123), - [anon_sym_typedef] = ACTIONS(1123), - [anon_sym_extern] = ACTIONS(1123), - [anon_sym___attribute__] = ACTIONS(1123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), - [anon_sym___declspec] = ACTIONS(1123), - [anon_sym___cdecl] = ACTIONS(1123), - [anon_sym___clrcall] = ACTIONS(1123), - [anon_sym___stdcall] = ACTIONS(1123), - [anon_sym___fastcall] = ACTIONS(1123), - [anon_sym___thiscall] = ACTIONS(1123), - [anon_sym___vectorcall] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_signed] = ACTIONS(1123), - [anon_sym_unsigned] = ACTIONS(1123), - [anon_sym_long] = ACTIONS(1123), - [anon_sym_short] = ACTIONS(1123), - [anon_sym_static] = ACTIONS(1123), - [anon_sym_auto] = ACTIONS(1123), - [anon_sym_register] = ACTIONS(1123), - [anon_sym_inline] = ACTIONS(1123), - [anon_sym___inline] = ACTIONS(1123), - [anon_sym___inline__] = ACTIONS(1123), - [anon_sym___forceinline] = ACTIONS(1123), - [anon_sym_thread_local] = ACTIONS(1123), - [anon_sym___thread] = ACTIONS(1123), - [anon_sym_const] = ACTIONS(1123), - [anon_sym_constexpr] = ACTIONS(1123), - [anon_sym_volatile] = ACTIONS(1123), - [anon_sym_restrict] = ACTIONS(1123), - [anon_sym___restrict__] = ACTIONS(1123), - [anon_sym__Atomic] = ACTIONS(1123), - [anon_sym__Noreturn] = ACTIONS(1123), - [anon_sym_noreturn] = ACTIONS(1123), - [anon_sym_alignas] = ACTIONS(1123), - [anon_sym__Alignas] = ACTIONS(1123), - [sym_primitive_type] = ACTIONS(1123), - [anon_sym_enum] = ACTIONS(1123), - [anon_sym_struct] = ACTIONS(1123), - [anon_sym_union] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1123), - [anon_sym_else] = ACTIONS(1123), - [anon_sym_switch] = ACTIONS(1123), - [anon_sym_case] = ACTIONS(1123), - [anon_sym_default] = ACTIONS(1123), - [anon_sym_while] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(1123), - [anon_sym_for] = ACTIONS(1123), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_break] = ACTIONS(1123), - [anon_sym_continue] = ACTIONS(1123), - [anon_sym_goto] = ACTIONS(1123), - [anon_sym___try] = ACTIONS(1123), - [anon_sym___leave] = ACTIONS(1123), - [anon_sym_DASH_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1125), - [anon_sym_sizeof] = ACTIONS(1123), - [anon_sym___alignof__] = ACTIONS(1123), - [anon_sym___alignof] = ACTIONS(1123), - [anon_sym__alignof] = ACTIONS(1123), - [anon_sym_alignof] = ACTIONS(1123), - [anon_sym__Alignof] = ACTIONS(1123), - [anon_sym_offsetof] = ACTIONS(1123), - [anon_sym__Generic] = ACTIONS(1123), - [anon_sym_asm] = ACTIONS(1123), - [anon_sym___asm__] = ACTIONS(1123), - [sym_number_literal] = ACTIONS(1125), - [anon_sym_L_SQUOTE] = ACTIONS(1125), - [anon_sym_u_SQUOTE] = ACTIONS(1125), - [anon_sym_U_SQUOTE] = ACTIONS(1125), - [anon_sym_u8_SQUOTE] = ACTIONS(1125), - [anon_sym_SQUOTE] = ACTIONS(1125), - [anon_sym_L_DQUOTE] = ACTIONS(1125), - [anon_sym_u_DQUOTE] = ACTIONS(1125), - [anon_sym_U_DQUOTE] = ACTIONS(1125), - [anon_sym_u8_DQUOTE] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(1125), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [anon_sym_NULL] = ACTIONS(1123), - [anon_sym_nullptr] = ACTIONS(1123), + [167] = { + [sym_identifier] = ACTIONS(1131), + [aux_sym_preproc_include_token1] = ACTIONS(1131), + [aux_sym_preproc_def_token1] = ACTIONS(1131), + [aux_sym_preproc_if_token1] = ACTIONS(1131), + [aux_sym_preproc_if_token2] = ACTIONS(1131), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1131), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1131), + [sym_preproc_directive] = ACTIONS(1131), + [anon_sym_LPAREN2] = ACTIONS(1133), + [anon_sym_BANG] = ACTIONS(1133), + [anon_sym_TILDE] = ACTIONS(1133), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_AMP] = ACTIONS(1133), + [anon_sym_SEMI] = ACTIONS(1133), + [anon_sym___extension__] = ACTIONS(1131), + [anon_sym_typedef] = ACTIONS(1131), + [anon_sym_extern] = ACTIONS(1131), + [anon_sym___attribute__] = ACTIONS(1131), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1133), + [anon_sym___declspec] = ACTIONS(1131), + [anon_sym___cdecl] = ACTIONS(1131), + [anon_sym___clrcall] = ACTIONS(1131), + [anon_sym___stdcall] = ACTIONS(1131), + [anon_sym___fastcall] = ACTIONS(1131), + [anon_sym___thiscall] = ACTIONS(1131), + [anon_sym___vectorcall] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(1133), + [anon_sym_signed] = ACTIONS(1131), + [anon_sym_unsigned] = ACTIONS(1131), + [anon_sym_long] = ACTIONS(1131), + [anon_sym_short] = ACTIONS(1131), + [anon_sym_static] = ACTIONS(1131), + [anon_sym_auto] = ACTIONS(1131), + [anon_sym_register] = ACTIONS(1131), + [anon_sym_inline] = ACTIONS(1131), + [anon_sym___inline] = ACTIONS(1131), + [anon_sym___inline__] = ACTIONS(1131), + [anon_sym___forceinline] = ACTIONS(1131), + [anon_sym_thread_local] = ACTIONS(1131), + [anon_sym___thread] = ACTIONS(1131), + [anon_sym_const] = ACTIONS(1131), + [anon_sym_constexpr] = ACTIONS(1131), + [anon_sym_volatile] = ACTIONS(1131), + [anon_sym_restrict] = ACTIONS(1131), + [anon_sym___restrict__] = ACTIONS(1131), + [anon_sym__Atomic] = ACTIONS(1131), + [anon_sym__Noreturn] = ACTIONS(1131), + [anon_sym_noreturn] = ACTIONS(1131), + [anon_sym_alignas] = ACTIONS(1131), + [anon_sym__Alignas] = ACTIONS(1131), + [sym_primitive_type] = ACTIONS(1131), + [anon_sym_enum] = ACTIONS(1131), + [anon_sym_struct] = ACTIONS(1131), + [anon_sym_union] = ACTIONS(1131), + [anon_sym_if] = ACTIONS(1131), + [anon_sym_else] = ACTIONS(1131), + [anon_sym_switch] = ACTIONS(1131), + [anon_sym_case] = ACTIONS(1131), + [anon_sym_default] = ACTIONS(1131), + [anon_sym_while] = ACTIONS(1131), + [anon_sym_do] = ACTIONS(1131), + [anon_sym_for] = ACTIONS(1131), + [anon_sym_return] = ACTIONS(1131), + [anon_sym_break] = ACTIONS(1131), + [anon_sym_continue] = ACTIONS(1131), + [anon_sym_goto] = ACTIONS(1131), + [anon_sym___try] = ACTIONS(1131), + [anon_sym___leave] = ACTIONS(1131), + [anon_sym_DASH_DASH] = ACTIONS(1133), + [anon_sym_PLUS_PLUS] = ACTIONS(1133), + [anon_sym_sizeof] = ACTIONS(1131), + [anon_sym___alignof__] = ACTIONS(1131), + [anon_sym___alignof] = ACTIONS(1131), + [anon_sym__alignof] = ACTIONS(1131), + [anon_sym_alignof] = ACTIONS(1131), + [anon_sym__Alignof] = ACTIONS(1131), + [anon_sym_offsetof] = ACTIONS(1131), + [anon_sym__Generic] = ACTIONS(1131), + [anon_sym_asm] = ACTIONS(1131), + [anon_sym___asm__] = ACTIONS(1131), + [sym_number_literal] = ACTIONS(1133), + [anon_sym_L_SQUOTE] = ACTIONS(1133), + [anon_sym_u_SQUOTE] = ACTIONS(1133), + [anon_sym_U_SQUOTE] = ACTIONS(1133), + [anon_sym_u8_SQUOTE] = ACTIONS(1133), + [anon_sym_SQUOTE] = ACTIONS(1133), + [anon_sym_L_DQUOTE] = ACTIONS(1133), + [anon_sym_u_DQUOTE] = ACTIONS(1133), + [anon_sym_U_DQUOTE] = ACTIONS(1133), + [anon_sym_u8_DQUOTE] = ACTIONS(1133), + [anon_sym_DQUOTE] = ACTIONS(1133), + [sym_true] = ACTIONS(1131), + [sym_false] = ACTIONS(1131), + [anon_sym_NULL] = ACTIONS(1131), + [anon_sym_nullptr] = ACTIONS(1131), [sym_comment] = ACTIONS(3), }, - [187] = { - [sym_identifier] = ACTIONS(1235), - [aux_sym_preproc_include_token1] = ACTIONS(1235), - [aux_sym_preproc_def_token1] = ACTIONS(1235), - [aux_sym_preproc_if_token1] = ACTIONS(1235), - [aux_sym_preproc_if_token2] = ACTIONS(1235), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1235), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1235), - [sym_preproc_directive] = ACTIONS(1235), - [anon_sym_LPAREN2] = ACTIONS(1237), - [anon_sym_BANG] = ACTIONS(1237), - [anon_sym_TILDE] = ACTIONS(1237), - [anon_sym_DASH] = ACTIONS(1235), - [anon_sym_PLUS] = ACTIONS(1235), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_AMP] = ACTIONS(1237), - [anon_sym_SEMI] = ACTIONS(1237), - [anon_sym___extension__] = ACTIONS(1235), - [anon_sym_typedef] = ACTIONS(1235), - [anon_sym_extern] = ACTIONS(1235), - [anon_sym___attribute__] = ACTIONS(1235), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1237), - [anon_sym___declspec] = ACTIONS(1235), - [anon_sym___cdecl] = ACTIONS(1235), - [anon_sym___clrcall] = ACTIONS(1235), - [anon_sym___stdcall] = ACTIONS(1235), - [anon_sym___fastcall] = ACTIONS(1235), - [anon_sym___thiscall] = ACTIONS(1235), - [anon_sym___vectorcall] = ACTIONS(1235), - [anon_sym_LBRACE] = ACTIONS(1237), - [anon_sym_signed] = ACTIONS(1235), - [anon_sym_unsigned] = ACTIONS(1235), - [anon_sym_long] = ACTIONS(1235), - [anon_sym_short] = ACTIONS(1235), - [anon_sym_static] = ACTIONS(1235), - [anon_sym_auto] = ACTIONS(1235), - [anon_sym_register] = ACTIONS(1235), - [anon_sym_inline] = ACTIONS(1235), - [anon_sym___inline] = ACTIONS(1235), - [anon_sym___inline__] = ACTIONS(1235), - [anon_sym___forceinline] = ACTIONS(1235), - [anon_sym_thread_local] = ACTIONS(1235), - [anon_sym___thread] = ACTIONS(1235), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_constexpr] = ACTIONS(1235), - [anon_sym_volatile] = ACTIONS(1235), - [anon_sym_restrict] = ACTIONS(1235), - [anon_sym___restrict__] = ACTIONS(1235), - [anon_sym__Atomic] = ACTIONS(1235), - [anon_sym__Noreturn] = ACTIONS(1235), - [anon_sym_noreturn] = ACTIONS(1235), - [anon_sym_alignas] = ACTIONS(1235), - [anon_sym__Alignas] = 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___try] = ACTIONS(1235), - [anon_sym___leave] = ACTIONS(1235), - [anon_sym_DASH_DASH] = ACTIONS(1237), - [anon_sym_PLUS_PLUS] = ACTIONS(1237), - [anon_sym_sizeof] = ACTIONS(1235), - [anon_sym___alignof__] = ACTIONS(1235), - [anon_sym___alignof] = ACTIONS(1235), - [anon_sym__alignof] = ACTIONS(1235), - [anon_sym_alignof] = ACTIONS(1235), - [anon_sym__Alignof] = ACTIONS(1235), - [anon_sym_offsetof] = ACTIONS(1235), - [anon_sym__Generic] = ACTIONS(1235), - [anon_sym_asm] = ACTIONS(1235), - [anon_sym___asm__] = ACTIONS(1235), - [sym_number_literal] = ACTIONS(1237), - [anon_sym_L_SQUOTE] = ACTIONS(1237), - [anon_sym_u_SQUOTE] = ACTIONS(1237), - [anon_sym_U_SQUOTE] = ACTIONS(1237), - [anon_sym_u8_SQUOTE] = ACTIONS(1237), - [anon_sym_SQUOTE] = ACTIONS(1237), - [anon_sym_L_DQUOTE] = ACTIONS(1237), - [anon_sym_u_DQUOTE] = ACTIONS(1237), - [anon_sym_U_DQUOTE] = ACTIONS(1237), - [anon_sym_u8_DQUOTE] = ACTIONS(1237), - [anon_sym_DQUOTE] = ACTIONS(1237), - [sym_true] = ACTIONS(1235), - [sym_false] = ACTIONS(1235), - [anon_sym_NULL] = ACTIONS(1235), - [anon_sym_nullptr] = ACTIONS(1235), + [168] = { + [ts_builtin_sym_end] = ACTIONS(1205), + [sym_identifier] = ACTIONS(1203), + [aux_sym_preproc_include_token1] = ACTIONS(1203), + [aux_sym_preproc_def_token1] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1203), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1203), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1203), + [sym_preproc_directive] = ACTIONS(1203), + [anon_sym_LPAREN2] = ACTIONS(1205), + [anon_sym_BANG] = ACTIONS(1205), + [anon_sym_TILDE] = ACTIONS(1205), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_AMP] = ACTIONS(1205), + [anon_sym_SEMI] = ACTIONS(1205), + [anon_sym___extension__] = ACTIONS(1203), + [anon_sym_typedef] = ACTIONS(1203), + [anon_sym_extern] = ACTIONS(1203), + [anon_sym___attribute__] = ACTIONS(1203), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1205), + [anon_sym___declspec] = ACTIONS(1203), + [anon_sym___cdecl] = ACTIONS(1203), + [anon_sym___clrcall] = ACTIONS(1203), + [anon_sym___stdcall] = ACTIONS(1203), + [anon_sym___fastcall] = ACTIONS(1203), + [anon_sym___thiscall] = ACTIONS(1203), + [anon_sym___vectorcall] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [anon_sym_signed] = ACTIONS(1203), + [anon_sym_unsigned] = ACTIONS(1203), + [anon_sym_long] = ACTIONS(1203), + [anon_sym_short] = ACTIONS(1203), + [anon_sym_static] = ACTIONS(1203), + [anon_sym_auto] = ACTIONS(1203), + [anon_sym_register] = ACTIONS(1203), + [anon_sym_inline] = ACTIONS(1203), + [anon_sym___inline] = ACTIONS(1203), + [anon_sym___inline__] = ACTIONS(1203), + [anon_sym___forceinline] = ACTIONS(1203), + [anon_sym_thread_local] = ACTIONS(1203), + [anon_sym___thread] = ACTIONS(1203), + [anon_sym_const] = ACTIONS(1203), + [anon_sym_constexpr] = ACTIONS(1203), + [anon_sym_volatile] = ACTIONS(1203), + [anon_sym_restrict] = ACTIONS(1203), + [anon_sym___restrict__] = ACTIONS(1203), + [anon_sym__Atomic] = ACTIONS(1203), + [anon_sym__Noreturn] = ACTIONS(1203), + [anon_sym_noreturn] = ACTIONS(1203), + [anon_sym_alignas] = ACTIONS(1203), + [anon_sym__Alignas] = ACTIONS(1203), + [sym_primitive_type] = ACTIONS(1203), + [anon_sym_enum] = ACTIONS(1203), + [anon_sym_struct] = ACTIONS(1203), + [anon_sym_union] = ACTIONS(1203), + [anon_sym_if] = ACTIONS(1203), + [anon_sym_else] = ACTIONS(1203), + [anon_sym_switch] = ACTIONS(1203), + [anon_sym_case] = ACTIONS(1203), + [anon_sym_default] = ACTIONS(1203), + [anon_sym_while] = ACTIONS(1203), + [anon_sym_do] = ACTIONS(1203), + [anon_sym_for] = ACTIONS(1203), + [anon_sym_return] = ACTIONS(1203), + [anon_sym_break] = ACTIONS(1203), + [anon_sym_continue] = ACTIONS(1203), + [anon_sym_goto] = ACTIONS(1203), + [anon_sym___try] = ACTIONS(1203), + [anon_sym___leave] = ACTIONS(1203), + [anon_sym_DASH_DASH] = ACTIONS(1205), + [anon_sym_PLUS_PLUS] = ACTIONS(1205), + [anon_sym_sizeof] = ACTIONS(1203), + [anon_sym___alignof__] = ACTIONS(1203), + [anon_sym___alignof] = ACTIONS(1203), + [anon_sym__alignof] = ACTIONS(1203), + [anon_sym_alignof] = ACTIONS(1203), + [anon_sym__Alignof] = ACTIONS(1203), + [anon_sym_offsetof] = ACTIONS(1203), + [anon_sym__Generic] = ACTIONS(1203), + [anon_sym_asm] = ACTIONS(1203), + [anon_sym___asm__] = ACTIONS(1203), + [sym_number_literal] = ACTIONS(1205), + [anon_sym_L_SQUOTE] = ACTIONS(1205), + [anon_sym_u_SQUOTE] = ACTIONS(1205), + [anon_sym_U_SQUOTE] = ACTIONS(1205), + [anon_sym_u8_SQUOTE] = ACTIONS(1205), + [anon_sym_SQUOTE] = ACTIONS(1205), + [anon_sym_L_DQUOTE] = ACTIONS(1205), + [anon_sym_u_DQUOTE] = ACTIONS(1205), + [anon_sym_U_DQUOTE] = ACTIONS(1205), + [anon_sym_u8_DQUOTE] = ACTIONS(1205), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_true] = ACTIONS(1203), + [sym_false] = ACTIONS(1203), + [anon_sym_NULL] = ACTIONS(1203), + [anon_sym_nullptr] = ACTIONS(1203), [sym_comment] = ACTIONS(3), }, - [188] = { - [sym_identifier] = ACTIONS(1169), - [aux_sym_preproc_include_token1] = ACTIONS(1169), - [aux_sym_preproc_def_token1] = ACTIONS(1169), - [aux_sym_preproc_if_token1] = ACTIONS(1169), - [aux_sym_preproc_if_token2] = ACTIONS(1169), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1169), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1169), - [sym_preproc_directive] = ACTIONS(1169), - [anon_sym_LPAREN2] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1167), - [anon_sym_TILDE] = ACTIONS(1167), - [anon_sym_DASH] = ACTIONS(1169), - [anon_sym_PLUS] = ACTIONS(1169), - [anon_sym_STAR] = ACTIONS(1167), - [anon_sym_AMP] = ACTIONS(1167), - [anon_sym_SEMI] = ACTIONS(1167), - [anon_sym___extension__] = ACTIONS(1169), - [anon_sym_typedef] = ACTIONS(1169), - [anon_sym_extern] = ACTIONS(1169), - [anon_sym___attribute__] = ACTIONS(1169), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1167), - [anon_sym___declspec] = ACTIONS(1169), - [anon_sym___cdecl] = ACTIONS(1169), - [anon_sym___clrcall] = ACTIONS(1169), - [anon_sym___stdcall] = ACTIONS(1169), - [anon_sym___fastcall] = ACTIONS(1169), - [anon_sym___thiscall] = ACTIONS(1169), - [anon_sym___vectorcall] = ACTIONS(1169), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_signed] = ACTIONS(1169), - [anon_sym_unsigned] = ACTIONS(1169), - [anon_sym_long] = ACTIONS(1169), - [anon_sym_short] = ACTIONS(1169), - [anon_sym_static] = ACTIONS(1169), - [anon_sym_auto] = ACTIONS(1169), - [anon_sym_register] = ACTIONS(1169), - [anon_sym_inline] = ACTIONS(1169), - [anon_sym___inline] = ACTIONS(1169), - [anon_sym___inline__] = ACTIONS(1169), - [anon_sym___forceinline] = ACTIONS(1169), - [anon_sym_thread_local] = ACTIONS(1169), - [anon_sym___thread] = ACTIONS(1169), - [anon_sym_const] = ACTIONS(1169), - [anon_sym_constexpr] = ACTIONS(1169), - [anon_sym_volatile] = ACTIONS(1169), - [anon_sym_restrict] = ACTIONS(1169), - [anon_sym___restrict__] = ACTIONS(1169), - [anon_sym__Atomic] = ACTIONS(1169), - [anon_sym__Noreturn] = ACTIONS(1169), - [anon_sym_noreturn] = ACTIONS(1169), - [anon_sym_alignas] = ACTIONS(1169), - [anon_sym__Alignas] = ACTIONS(1169), - [sym_primitive_type] = ACTIONS(1169), - [anon_sym_enum] = ACTIONS(1169), - [anon_sym_struct] = ACTIONS(1169), - [anon_sym_union] = ACTIONS(1169), - [anon_sym_if] = ACTIONS(1169), - [anon_sym_else] = ACTIONS(1169), - [anon_sym_switch] = ACTIONS(1169), - [anon_sym_case] = ACTIONS(1169), - [anon_sym_default] = ACTIONS(1169), - [anon_sym_while] = ACTIONS(1169), - [anon_sym_do] = ACTIONS(1169), - [anon_sym_for] = ACTIONS(1169), - [anon_sym_return] = ACTIONS(1169), - [anon_sym_break] = ACTIONS(1169), - [anon_sym_continue] = ACTIONS(1169), - [anon_sym_goto] = ACTIONS(1169), - [anon_sym___try] = ACTIONS(1169), - [anon_sym___leave] = ACTIONS(1169), - [anon_sym_DASH_DASH] = ACTIONS(1167), - [anon_sym_PLUS_PLUS] = ACTIONS(1167), - [anon_sym_sizeof] = ACTIONS(1169), - [anon_sym___alignof__] = ACTIONS(1169), - [anon_sym___alignof] = ACTIONS(1169), - [anon_sym__alignof] = ACTIONS(1169), - [anon_sym_alignof] = ACTIONS(1169), - [anon_sym__Alignof] = ACTIONS(1169), - [anon_sym_offsetof] = ACTIONS(1169), - [anon_sym__Generic] = ACTIONS(1169), - [anon_sym_asm] = ACTIONS(1169), - [anon_sym___asm__] = ACTIONS(1169), - [sym_number_literal] = ACTIONS(1167), - [anon_sym_L_SQUOTE] = ACTIONS(1167), - [anon_sym_u_SQUOTE] = ACTIONS(1167), - [anon_sym_U_SQUOTE] = ACTIONS(1167), - [anon_sym_u8_SQUOTE] = ACTIONS(1167), - [anon_sym_SQUOTE] = ACTIONS(1167), - [anon_sym_L_DQUOTE] = ACTIONS(1167), - [anon_sym_u_DQUOTE] = ACTIONS(1167), - [anon_sym_U_DQUOTE] = ACTIONS(1167), - [anon_sym_u8_DQUOTE] = ACTIONS(1167), - [anon_sym_DQUOTE] = ACTIONS(1167), - [sym_true] = ACTIONS(1169), - [sym_false] = ACTIONS(1169), - [anon_sym_NULL] = ACTIONS(1169), - [anon_sym_nullptr] = ACTIONS(1169), + [169] = { + [sym_identifier] = ACTIONS(1131), + [aux_sym_preproc_include_token1] = ACTIONS(1131), + [aux_sym_preproc_def_token1] = ACTIONS(1131), + [aux_sym_preproc_if_token1] = ACTIONS(1131), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1131), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1131), + [sym_preproc_directive] = ACTIONS(1131), + [anon_sym_LPAREN2] = ACTIONS(1133), + [anon_sym_BANG] = ACTIONS(1133), + [anon_sym_TILDE] = ACTIONS(1133), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_AMP] = ACTIONS(1133), + [anon_sym_SEMI] = ACTIONS(1133), + [anon_sym___extension__] = ACTIONS(1131), + [anon_sym_typedef] = ACTIONS(1131), + [anon_sym_extern] = ACTIONS(1131), + [anon_sym___attribute__] = ACTIONS(1131), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1133), + [anon_sym___declspec] = ACTIONS(1131), + [anon_sym___cdecl] = ACTIONS(1131), + [anon_sym___clrcall] = ACTIONS(1131), + [anon_sym___stdcall] = ACTIONS(1131), + [anon_sym___fastcall] = ACTIONS(1131), + [anon_sym___thiscall] = ACTIONS(1131), + [anon_sym___vectorcall] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(1133), + [anon_sym_RBRACE] = ACTIONS(1133), + [anon_sym_signed] = ACTIONS(1131), + [anon_sym_unsigned] = ACTIONS(1131), + [anon_sym_long] = ACTIONS(1131), + [anon_sym_short] = ACTIONS(1131), + [anon_sym_static] = ACTIONS(1131), + [anon_sym_auto] = ACTIONS(1131), + [anon_sym_register] = ACTIONS(1131), + [anon_sym_inline] = ACTIONS(1131), + [anon_sym___inline] = ACTIONS(1131), + [anon_sym___inline__] = ACTIONS(1131), + [anon_sym___forceinline] = ACTIONS(1131), + [anon_sym_thread_local] = ACTIONS(1131), + [anon_sym___thread] = ACTIONS(1131), + [anon_sym_const] = ACTIONS(1131), + [anon_sym_constexpr] = ACTIONS(1131), + [anon_sym_volatile] = ACTIONS(1131), + [anon_sym_restrict] = ACTIONS(1131), + [anon_sym___restrict__] = ACTIONS(1131), + [anon_sym__Atomic] = ACTIONS(1131), + [anon_sym__Noreturn] = ACTIONS(1131), + [anon_sym_noreturn] = ACTIONS(1131), + [anon_sym_alignas] = ACTIONS(1131), + [anon_sym__Alignas] = ACTIONS(1131), + [sym_primitive_type] = ACTIONS(1131), + [anon_sym_enum] = ACTIONS(1131), + [anon_sym_struct] = ACTIONS(1131), + [anon_sym_union] = ACTIONS(1131), + [anon_sym_if] = ACTIONS(1131), + [anon_sym_else] = ACTIONS(1131), + [anon_sym_switch] = ACTIONS(1131), + [anon_sym_case] = ACTIONS(1131), + [anon_sym_default] = ACTIONS(1131), + [anon_sym_while] = ACTIONS(1131), + [anon_sym_do] = ACTIONS(1131), + [anon_sym_for] = ACTIONS(1131), + [anon_sym_return] = ACTIONS(1131), + [anon_sym_break] = ACTIONS(1131), + [anon_sym_continue] = ACTIONS(1131), + [anon_sym_goto] = ACTIONS(1131), + [anon_sym___try] = ACTIONS(1131), + [anon_sym___leave] = ACTIONS(1131), + [anon_sym_DASH_DASH] = ACTIONS(1133), + [anon_sym_PLUS_PLUS] = ACTIONS(1133), + [anon_sym_sizeof] = ACTIONS(1131), + [anon_sym___alignof__] = ACTIONS(1131), + [anon_sym___alignof] = ACTIONS(1131), + [anon_sym__alignof] = ACTIONS(1131), + [anon_sym_alignof] = ACTIONS(1131), + [anon_sym__Alignof] = ACTIONS(1131), + [anon_sym_offsetof] = ACTIONS(1131), + [anon_sym__Generic] = ACTIONS(1131), + [anon_sym_asm] = ACTIONS(1131), + [anon_sym___asm__] = ACTIONS(1131), + [sym_number_literal] = ACTIONS(1133), + [anon_sym_L_SQUOTE] = ACTIONS(1133), + [anon_sym_u_SQUOTE] = ACTIONS(1133), + [anon_sym_U_SQUOTE] = ACTIONS(1133), + [anon_sym_u8_SQUOTE] = ACTIONS(1133), + [anon_sym_SQUOTE] = ACTIONS(1133), + [anon_sym_L_DQUOTE] = ACTIONS(1133), + [anon_sym_u_DQUOTE] = ACTIONS(1133), + [anon_sym_U_DQUOTE] = ACTIONS(1133), + [anon_sym_u8_DQUOTE] = ACTIONS(1133), + [anon_sym_DQUOTE] = ACTIONS(1133), + [sym_true] = ACTIONS(1131), + [sym_false] = ACTIONS(1131), + [anon_sym_NULL] = ACTIONS(1131), + [anon_sym_nullptr] = ACTIONS(1131), [sym_comment] = ACTIONS(3), }, - [189] = { - [ts_builtin_sym_end] = ACTIONS(1125), - [sym_identifier] = ACTIONS(1123), - [aux_sym_preproc_include_token1] = ACTIONS(1123), - [aux_sym_preproc_def_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), - [sym_preproc_directive] = ACTIONS(1123), - [anon_sym_LPAREN2] = ACTIONS(1125), - [anon_sym_BANG] = ACTIONS(1125), - [anon_sym_TILDE] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym___extension__] = ACTIONS(1123), - [anon_sym_typedef] = ACTIONS(1123), - [anon_sym_extern] = ACTIONS(1123), - [anon_sym___attribute__] = ACTIONS(1123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), - [anon_sym___declspec] = ACTIONS(1123), - [anon_sym___cdecl] = ACTIONS(1123), - [anon_sym___clrcall] = ACTIONS(1123), - [anon_sym___stdcall] = ACTIONS(1123), - [anon_sym___fastcall] = ACTIONS(1123), - [anon_sym___thiscall] = ACTIONS(1123), - [anon_sym___vectorcall] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_signed] = ACTIONS(1123), - [anon_sym_unsigned] = ACTIONS(1123), - [anon_sym_long] = ACTIONS(1123), - [anon_sym_short] = ACTIONS(1123), - [anon_sym_static] = ACTIONS(1123), - [anon_sym_auto] = ACTIONS(1123), - [anon_sym_register] = ACTIONS(1123), - [anon_sym_inline] = ACTIONS(1123), - [anon_sym___inline] = ACTIONS(1123), - [anon_sym___inline__] = ACTIONS(1123), - [anon_sym___forceinline] = ACTIONS(1123), - [anon_sym_thread_local] = ACTIONS(1123), - [anon_sym___thread] = ACTIONS(1123), - [anon_sym_const] = ACTIONS(1123), - [anon_sym_constexpr] = ACTIONS(1123), - [anon_sym_volatile] = ACTIONS(1123), - [anon_sym_restrict] = ACTIONS(1123), - [anon_sym___restrict__] = ACTIONS(1123), - [anon_sym__Atomic] = ACTIONS(1123), - [anon_sym__Noreturn] = ACTIONS(1123), - [anon_sym_noreturn] = ACTIONS(1123), - [anon_sym_alignas] = ACTIONS(1123), - [anon_sym__Alignas] = ACTIONS(1123), - [sym_primitive_type] = ACTIONS(1123), - [anon_sym_enum] = ACTIONS(1123), - [anon_sym_struct] = ACTIONS(1123), - [anon_sym_union] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1123), - [anon_sym_else] = ACTIONS(1123), - [anon_sym_switch] = ACTIONS(1123), - [anon_sym_case] = ACTIONS(1123), - [anon_sym_default] = ACTIONS(1123), - [anon_sym_while] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(1123), - [anon_sym_for] = ACTIONS(1123), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_break] = ACTIONS(1123), - [anon_sym_continue] = ACTIONS(1123), - [anon_sym_goto] = ACTIONS(1123), - [anon_sym___try] = ACTIONS(1123), - [anon_sym___leave] = ACTIONS(1123), - [anon_sym_DASH_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1125), - [anon_sym_sizeof] = ACTIONS(1123), - [anon_sym___alignof__] = ACTIONS(1123), - [anon_sym___alignof] = ACTIONS(1123), - [anon_sym__alignof] = ACTIONS(1123), - [anon_sym_alignof] = ACTIONS(1123), - [anon_sym__Alignof] = ACTIONS(1123), - [anon_sym_offsetof] = ACTIONS(1123), - [anon_sym__Generic] = ACTIONS(1123), - [anon_sym_asm] = ACTIONS(1123), - [anon_sym___asm__] = ACTIONS(1123), - [sym_number_literal] = ACTIONS(1125), - [anon_sym_L_SQUOTE] = ACTIONS(1125), - [anon_sym_u_SQUOTE] = ACTIONS(1125), - [anon_sym_U_SQUOTE] = ACTIONS(1125), - [anon_sym_u8_SQUOTE] = ACTIONS(1125), - [anon_sym_SQUOTE] = ACTIONS(1125), - [anon_sym_L_DQUOTE] = ACTIONS(1125), - [anon_sym_u_DQUOTE] = ACTIONS(1125), - [anon_sym_U_DQUOTE] = ACTIONS(1125), - [anon_sym_u8_DQUOTE] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(1125), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [anon_sym_NULL] = ACTIONS(1123), - [anon_sym_nullptr] = ACTIONS(1123), - [sym_comment] = ACTIONS(3), - }, - [190] = { - [ts_builtin_sym_end] = ACTIONS(1233), - [sym_identifier] = ACTIONS(1231), - [aux_sym_preproc_include_token1] = ACTIONS(1231), - [aux_sym_preproc_def_token1] = ACTIONS(1231), - [aux_sym_preproc_if_token1] = ACTIONS(1231), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1231), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1231), - [sym_preproc_directive] = ACTIONS(1231), - [anon_sym_LPAREN2] = ACTIONS(1233), - [anon_sym_BANG] = ACTIONS(1233), - [anon_sym_TILDE] = ACTIONS(1233), - [anon_sym_DASH] = ACTIONS(1231), - [anon_sym_PLUS] = ACTIONS(1231), - [anon_sym_STAR] = ACTIONS(1233), - [anon_sym_AMP] = ACTIONS(1233), - [anon_sym_SEMI] = ACTIONS(1233), - [anon_sym___extension__] = ACTIONS(1231), - [anon_sym_typedef] = ACTIONS(1231), - [anon_sym_extern] = ACTIONS(1231), - [anon_sym___attribute__] = ACTIONS(1231), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1233), - [anon_sym___declspec] = ACTIONS(1231), - [anon_sym___cdecl] = ACTIONS(1231), - [anon_sym___clrcall] = ACTIONS(1231), - [anon_sym___stdcall] = ACTIONS(1231), - [anon_sym___fastcall] = ACTIONS(1231), - [anon_sym___thiscall] = ACTIONS(1231), - [anon_sym___vectorcall] = ACTIONS(1231), - [anon_sym_LBRACE] = ACTIONS(1233), - [anon_sym_signed] = ACTIONS(1231), - [anon_sym_unsigned] = ACTIONS(1231), - [anon_sym_long] = ACTIONS(1231), - [anon_sym_short] = ACTIONS(1231), - [anon_sym_static] = ACTIONS(1231), - [anon_sym_auto] = ACTIONS(1231), - [anon_sym_register] = ACTIONS(1231), - [anon_sym_inline] = ACTIONS(1231), - [anon_sym___inline] = ACTIONS(1231), - [anon_sym___inline__] = ACTIONS(1231), - [anon_sym___forceinline] = ACTIONS(1231), - [anon_sym_thread_local] = ACTIONS(1231), - [anon_sym___thread] = ACTIONS(1231), - [anon_sym_const] = ACTIONS(1231), - [anon_sym_constexpr] = ACTIONS(1231), - [anon_sym_volatile] = ACTIONS(1231), - [anon_sym_restrict] = ACTIONS(1231), - [anon_sym___restrict__] = ACTIONS(1231), - [anon_sym__Atomic] = ACTIONS(1231), - [anon_sym__Noreturn] = ACTIONS(1231), - [anon_sym_noreturn] = ACTIONS(1231), - [anon_sym_alignas] = ACTIONS(1231), - [anon_sym__Alignas] = ACTIONS(1231), - [sym_primitive_type] = ACTIONS(1231), - [anon_sym_enum] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1231), - [anon_sym_union] = ACTIONS(1231), - [anon_sym_if] = ACTIONS(1231), - [anon_sym_else] = ACTIONS(1231), - [anon_sym_switch] = ACTIONS(1231), - [anon_sym_case] = ACTIONS(1231), - [anon_sym_default] = ACTIONS(1231), - [anon_sym_while] = ACTIONS(1231), - [anon_sym_do] = ACTIONS(1231), - [anon_sym_for] = ACTIONS(1231), - [anon_sym_return] = ACTIONS(1231), - [anon_sym_break] = ACTIONS(1231), - [anon_sym_continue] = ACTIONS(1231), - [anon_sym_goto] = ACTIONS(1231), - [anon_sym___try] = ACTIONS(1231), - [anon_sym___leave] = ACTIONS(1231), - [anon_sym_DASH_DASH] = ACTIONS(1233), - [anon_sym_PLUS_PLUS] = ACTIONS(1233), - [anon_sym_sizeof] = ACTIONS(1231), - [anon_sym___alignof__] = ACTIONS(1231), - [anon_sym___alignof] = ACTIONS(1231), - [anon_sym__alignof] = ACTIONS(1231), - [anon_sym_alignof] = ACTIONS(1231), - [anon_sym__Alignof] = ACTIONS(1231), - [anon_sym_offsetof] = ACTIONS(1231), - [anon_sym__Generic] = ACTIONS(1231), - [anon_sym_asm] = ACTIONS(1231), - [anon_sym___asm__] = ACTIONS(1231), - [sym_number_literal] = ACTIONS(1233), - [anon_sym_L_SQUOTE] = ACTIONS(1233), - [anon_sym_u_SQUOTE] = ACTIONS(1233), - [anon_sym_U_SQUOTE] = ACTIONS(1233), - [anon_sym_u8_SQUOTE] = ACTIONS(1233), - [anon_sym_SQUOTE] = ACTIONS(1233), - [anon_sym_L_DQUOTE] = ACTIONS(1233), - [anon_sym_u_DQUOTE] = ACTIONS(1233), - [anon_sym_U_DQUOTE] = ACTIONS(1233), - [anon_sym_u8_DQUOTE] = ACTIONS(1233), - [anon_sym_DQUOTE] = ACTIONS(1233), - [sym_true] = ACTIONS(1231), - [sym_false] = ACTIONS(1231), - [anon_sym_NULL] = ACTIONS(1231), - [anon_sym_nullptr] = ACTIONS(1231), + [170] = { + [sym_identifier] = ACTIONS(1131), + [aux_sym_preproc_include_token1] = ACTIONS(1131), + [aux_sym_preproc_def_token1] = ACTIONS(1131), + [aux_sym_preproc_if_token1] = ACTIONS(1131), + [aux_sym_preproc_if_token2] = ACTIONS(1131), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1131), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1131), + [sym_preproc_directive] = ACTIONS(1131), + [anon_sym_LPAREN2] = ACTIONS(1133), + [anon_sym_BANG] = ACTIONS(1133), + [anon_sym_TILDE] = ACTIONS(1133), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_AMP] = ACTIONS(1133), + [anon_sym_SEMI] = ACTIONS(1133), + [anon_sym___extension__] = ACTIONS(1131), + [anon_sym_typedef] = ACTIONS(1131), + [anon_sym_extern] = ACTIONS(1131), + [anon_sym___attribute__] = ACTIONS(1131), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1133), + [anon_sym___declspec] = ACTIONS(1131), + [anon_sym___cdecl] = ACTIONS(1131), + [anon_sym___clrcall] = ACTIONS(1131), + [anon_sym___stdcall] = ACTIONS(1131), + [anon_sym___fastcall] = ACTIONS(1131), + [anon_sym___thiscall] = ACTIONS(1131), + [anon_sym___vectorcall] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(1133), + [anon_sym_signed] = ACTIONS(1131), + [anon_sym_unsigned] = ACTIONS(1131), + [anon_sym_long] = ACTIONS(1131), + [anon_sym_short] = ACTIONS(1131), + [anon_sym_static] = ACTIONS(1131), + [anon_sym_auto] = ACTIONS(1131), + [anon_sym_register] = ACTIONS(1131), + [anon_sym_inline] = ACTIONS(1131), + [anon_sym___inline] = ACTIONS(1131), + [anon_sym___inline__] = ACTIONS(1131), + [anon_sym___forceinline] = ACTIONS(1131), + [anon_sym_thread_local] = ACTIONS(1131), + [anon_sym___thread] = ACTIONS(1131), + [anon_sym_const] = ACTIONS(1131), + [anon_sym_constexpr] = ACTIONS(1131), + [anon_sym_volatile] = ACTIONS(1131), + [anon_sym_restrict] = ACTIONS(1131), + [anon_sym___restrict__] = ACTIONS(1131), + [anon_sym__Atomic] = ACTIONS(1131), + [anon_sym__Noreturn] = ACTIONS(1131), + [anon_sym_noreturn] = ACTIONS(1131), + [anon_sym_alignas] = ACTIONS(1131), + [anon_sym__Alignas] = ACTIONS(1131), + [sym_primitive_type] = ACTIONS(1131), + [anon_sym_enum] = ACTIONS(1131), + [anon_sym_struct] = ACTIONS(1131), + [anon_sym_union] = ACTIONS(1131), + [anon_sym_if] = ACTIONS(1131), + [anon_sym_else] = ACTIONS(1131), + [anon_sym_switch] = ACTIONS(1131), + [anon_sym_case] = ACTIONS(1131), + [anon_sym_default] = ACTIONS(1131), + [anon_sym_while] = ACTIONS(1131), + [anon_sym_do] = ACTIONS(1131), + [anon_sym_for] = ACTIONS(1131), + [anon_sym_return] = ACTIONS(1131), + [anon_sym_break] = ACTIONS(1131), + [anon_sym_continue] = ACTIONS(1131), + [anon_sym_goto] = ACTIONS(1131), + [anon_sym___try] = ACTIONS(1131), + [anon_sym___leave] = ACTIONS(1131), + [anon_sym_DASH_DASH] = ACTIONS(1133), + [anon_sym_PLUS_PLUS] = ACTIONS(1133), + [anon_sym_sizeof] = ACTIONS(1131), + [anon_sym___alignof__] = ACTIONS(1131), + [anon_sym___alignof] = ACTIONS(1131), + [anon_sym__alignof] = ACTIONS(1131), + [anon_sym_alignof] = ACTIONS(1131), + [anon_sym__Alignof] = ACTIONS(1131), + [anon_sym_offsetof] = ACTIONS(1131), + [anon_sym__Generic] = ACTIONS(1131), + [anon_sym_asm] = ACTIONS(1131), + [anon_sym___asm__] = ACTIONS(1131), + [sym_number_literal] = ACTIONS(1133), + [anon_sym_L_SQUOTE] = ACTIONS(1133), + [anon_sym_u_SQUOTE] = ACTIONS(1133), + [anon_sym_U_SQUOTE] = ACTIONS(1133), + [anon_sym_u8_SQUOTE] = ACTIONS(1133), + [anon_sym_SQUOTE] = ACTIONS(1133), + [anon_sym_L_DQUOTE] = ACTIONS(1133), + [anon_sym_u_DQUOTE] = ACTIONS(1133), + [anon_sym_U_DQUOTE] = ACTIONS(1133), + [anon_sym_u8_DQUOTE] = ACTIONS(1133), + [anon_sym_DQUOTE] = ACTIONS(1133), + [sym_true] = ACTIONS(1131), + [sym_false] = ACTIONS(1131), + [anon_sym_NULL] = ACTIONS(1131), + [anon_sym_nullptr] = ACTIONS(1131), [sym_comment] = ACTIONS(3), }, - [191] = { - [ts_builtin_sym_end] = ACTIONS(1125), - [sym_identifier] = ACTIONS(1123), - [aux_sym_preproc_include_token1] = ACTIONS(1123), - [aux_sym_preproc_def_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), - [sym_preproc_directive] = ACTIONS(1123), - [anon_sym_LPAREN2] = ACTIONS(1125), - [anon_sym_BANG] = ACTIONS(1125), - [anon_sym_TILDE] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym___extension__] = ACTIONS(1123), - [anon_sym_typedef] = ACTIONS(1123), - [anon_sym_extern] = ACTIONS(1123), - [anon_sym___attribute__] = ACTIONS(1123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), - [anon_sym___declspec] = ACTIONS(1123), - [anon_sym___cdecl] = ACTIONS(1123), - [anon_sym___clrcall] = ACTIONS(1123), - [anon_sym___stdcall] = ACTIONS(1123), - [anon_sym___fastcall] = ACTIONS(1123), - [anon_sym___thiscall] = ACTIONS(1123), - [anon_sym___vectorcall] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_signed] = ACTIONS(1123), - [anon_sym_unsigned] = ACTIONS(1123), - [anon_sym_long] = ACTIONS(1123), - [anon_sym_short] = ACTIONS(1123), - [anon_sym_static] = ACTIONS(1123), - [anon_sym_auto] = ACTIONS(1123), - [anon_sym_register] = ACTIONS(1123), - [anon_sym_inline] = ACTIONS(1123), - [anon_sym___inline] = ACTIONS(1123), - [anon_sym___inline__] = ACTIONS(1123), - [anon_sym___forceinline] = ACTIONS(1123), - [anon_sym_thread_local] = ACTIONS(1123), - [anon_sym___thread] = ACTIONS(1123), - [anon_sym_const] = ACTIONS(1123), - [anon_sym_constexpr] = ACTIONS(1123), - [anon_sym_volatile] = ACTIONS(1123), - [anon_sym_restrict] = ACTIONS(1123), - [anon_sym___restrict__] = ACTIONS(1123), - [anon_sym__Atomic] = ACTIONS(1123), - [anon_sym__Noreturn] = ACTIONS(1123), - [anon_sym_noreturn] = ACTIONS(1123), - [anon_sym_alignas] = ACTIONS(1123), - [anon_sym__Alignas] = ACTIONS(1123), - [sym_primitive_type] = ACTIONS(1123), - [anon_sym_enum] = ACTIONS(1123), - [anon_sym_struct] = ACTIONS(1123), - [anon_sym_union] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1123), - [anon_sym_else] = ACTIONS(1123), - [anon_sym_switch] = ACTIONS(1123), - [anon_sym_case] = ACTIONS(1123), - [anon_sym_default] = ACTIONS(1123), - [anon_sym_while] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(1123), - [anon_sym_for] = ACTIONS(1123), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_break] = ACTIONS(1123), - [anon_sym_continue] = ACTIONS(1123), - [anon_sym_goto] = ACTIONS(1123), - [anon_sym___try] = ACTIONS(1123), - [anon_sym___leave] = ACTIONS(1123), - [anon_sym_DASH_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1125), - [anon_sym_sizeof] = ACTIONS(1123), - [anon_sym___alignof__] = ACTIONS(1123), - [anon_sym___alignof] = ACTIONS(1123), - [anon_sym__alignof] = ACTIONS(1123), - [anon_sym_alignof] = ACTIONS(1123), - [anon_sym__Alignof] = ACTIONS(1123), - [anon_sym_offsetof] = ACTIONS(1123), - [anon_sym__Generic] = ACTIONS(1123), - [anon_sym_asm] = ACTIONS(1123), - [anon_sym___asm__] = ACTIONS(1123), - [sym_number_literal] = ACTIONS(1125), - [anon_sym_L_SQUOTE] = ACTIONS(1125), - [anon_sym_u_SQUOTE] = ACTIONS(1125), - [anon_sym_U_SQUOTE] = ACTIONS(1125), - [anon_sym_u8_SQUOTE] = ACTIONS(1125), - [anon_sym_SQUOTE] = ACTIONS(1125), - [anon_sym_L_DQUOTE] = ACTIONS(1125), - [anon_sym_u_DQUOTE] = ACTIONS(1125), - [anon_sym_U_DQUOTE] = ACTIONS(1125), - [anon_sym_u8_DQUOTE] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(1125), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [anon_sym_NULL] = ACTIONS(1123), - [anon_sym_nullptr] = ACTIONS(1123), + [171] = { + [ts_builtin_sym_end] = ACTIONS(1193), + [sym_identifier] = ACTIONS(1191), + [aux_sym_preproc_include_token1] = ACTIONS(1191), + [aux_sym_preproc_def_token1] = ACTIONS(1191), + [aux_sym_preproc_if_token1] = ACTIONS(1191), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1191), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1191), + [sym_preproc_directive] = ACTIONS(1191), + [anon_sym_LPAREN2] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(1193), + [anon_sym_TILDE] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1191), + [anon_sym_STAR] = ACTIONS(1193), + [anon_sym_AMP] = ACTIONS(1193), + [anon_sym_SEMI] = ACTIONS(1193), + [anon_sym___extension__] = ACTIONS(1191), + [anon_sym_typedef] = ACTIONS(1191), + [anon_sym_extern] = ACTIONS(1191), + [anon_sym___attribute__] = ACTIONS(1191), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1193), + [anon_sym___declspec] = ACTIONS(1191), + [anon_sym___cdecl] = ACTIONS(1191), + [anon_sym___clrcall] = ACTIONS(1191), + [anon_sym___stdcall] = ACTIONS(1191), + [anon_sym___fastcall] = ACTIONS(1191), + [anon_sym___thiscall] = ACTIONS(1191), + [anon_sym___vectorcall] = ACTIONS(1191), + [anon_sym_LBRACE] = ACTIONS(1193), + [anon_sym_signed] = ACTIONS(1191), + [anon_sym_unsigned] = ACTIONS(1191), + [anon_sym_long] = ACTIONS(1191), + [anon_sym_short] = ACTIONS(1191), + [anon_sym_static] = ACTIONS(1191), + [anon_sym_auto] = ACTIONS(1191), + [anon_sym_register] = ACTIONS(1191), + [anon_sym_inline] = ACTIONS(1191), + [anon_sym___inline] = ACTIONS(1191), + [anon_sym___inline__] = ACTIONS(1191), + [anon_sym___forceinline] = ACTIONS(1191), + [anon_sym_thread_local] = ACTIONS(1191), + [anon_sym___thread] = ACTIONS(1191), + [anon_sym_const] = ACTIONS(1191), + [anon_sym_constexpr] = ACTIONS(1191), + [anon_sym_volatile] = ACTIONS(1191), + [anon_sym_restrict] = ACTIONS(1191), + [anon_sym___restrict__] = ACTIONS(1191), + [anon_sym__Atomic] = ACTIONS(1191), + [anon_sym__Noreturn] = ACTIONS(1191), + [anon_sym_noreturn] = ACTIONS(1191), + [anon_sym_alignas] = ACTIONS(1191), + [anon_sym__Alignas] = ACTIONS(1191), + [sym_primitive_type] = ACTIONS(1191), + [anon_sym_enum] = ACTIONS(1191), + [anon_sym_struct] = ACTIONS(1191), + [anon_sym_union] = ACTIONS(1191), + [anon_sym_if] = ACTIONS(1191), + [anon_sym_else] = ACTIONS(1191), + [anon_sym_switch] = ACTIONS(1191), + [anon_sym_case] = ACTIONS(1191), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_while] = ACTIONS(1191), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1191), + [anon_sym_return] = ACTIONS(1191), + [anon_sym_break] = ACTIONS(1191), + [anon_sym_continue] = ACTIONS(1191), + [anon_sym_goto] = ACTIONS(1191), + [anon_sym___try] = ACTIONS(1191), + [anon_sym___leave] = ACTIONS(1191), + [anon_sym_DASH_DASH] = ACTIONS(1193), + [anon_sym_PLUS_PLUS] = ACTIONS(1193), + [anon_sym_sizeof] = ACTIONS(1191), + [anon_sym___alignof__] = ACTIONS(1191), + [anon_sym___alignof] = ACTIONS(1191), + [anon_sym__alignof] = ACTIONS(1191), + [anon_sym_alignof] = ACTIONS(1191), + [anon_sym__Alignof] = ACTIONS(1191), + [anon_sym_offsetof] = ACTIONS(1191), + [anon_sym__Generic] = ACTIONS(1191), + [anon_sym_asm] = ACTIONS(1191), + [anon_sym___asm__] = ACTIONS(1191), + [sym_number_literal] = ACTIONS(1193), + [anon_sym_L_SQUOTE] = ACTIONS(1193), + [anon_sym_u_SQUOTE] = ACTIONS(1193), + [anon_sym_U_SQUOTE] = ACTIONS(1193), + [anon_sym_u8_SQUOTE] = ACTIONS(1193), + [anon_sym_SQUOTE] = ACTIONS(1193), + [anon_sym_L_DQUOTE] = ACTIONS(1193), + [anon_sym_u_DQUOTE] = ACTIONS(1193), + [anon_sym_U_DQUOTE] = ACTIONS(1193), + [anon_sym_u8_DQUOTE] = ACTIONS(1193), + [anon_sym_DQUOTE] = ACTIONS(1193), + [sym_true] = ACTIONS(1191), + [sym_false] = ACTIONS(1191), + [anon_sym_NULL] = ACTIONS(1191), + [anon_sym_nullptr] = ACTIONS(1191), [sym_comment] = ACTIONS(3), }, - [192] = { - [ts_builtin_sym_end] = ACTIONS(1125), - [sym_identifier] = ACTIONS(1123), - [aux_sym_preproc_include_token1] = ACTIONS(1123), - [aux_sym_preproc_def_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), - [sym_preproc_directive] = ACTIONS(1123), - [anon_sym_LPAREN2] = ACTIONS(1125), - [anon_sym_BANG] = ACTIONS(1125), - [anon_sym_TILDE] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym___extension__] = ACTIONS(1123), - [anon_sym_typedef] = ACTIONS(1123), - [anon_sym_extern] = ACTIONS(1123), - [anon_sym___attribute__] = ACTIONS(1123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), - [anon_sym___declspec] = ACTIONS(1123), - [anon_sym___cdecl] = ACTIONS(1123), - [anon_sym___clrcall] = ACTIONS(1123), - [anon_sym___stdcall] = ACTIONS(1123), - [anon_sym___fastcall] = ACTIONS(1123), - [anon_sym___thiscall] = ACTIONS(1123), - [anon_sym___vectorcall] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_signed] = ACTIONS(1123), - [anon_sym_unsigned] = ACTIONS(1123), - [anon_sym_long] = ACTIONS(1123), - [anon_sym_short] = ACTIONS(1123), - [anon_sym_static] = ACTIONS(1123), - [anon_sym_auto] = ACTIONS(1123), - [anon_sym_register] = ACTIONS(1123), - [anon_sym_inline] = ACTIONS(1123), - [anon_sym___inline] = ACTIONS(1123), - [anon_sym___inline__] = ACTIONS(1123), - [anon_sym___forceinline] = ACTIONS(1123), - [anon_sym_thread_local] = ACTIONS(1123), - [anon_sym___thread] = ACTIONS(1123), - [anon_sym_const] = ACTIONS(1123), - [anon_sym_constexpr] = ACTIONS(1123), - [anon_sym_volatile] = ACTIONS(1123), - [anon_sym_restrict] = ACTIONS(1123), - [anon_sym___restrict__] = ACTIONS(1123), - [anon_sym__Atomic] = ACTIONS(1123), - [anon_sym__Noreturn] = ACTIONS(1123), - [anon_sym_noreturn] = ACTIONS(1123), - [anon_sym_alignas] = ACTIONS(1123), - [anon_sym__Alignas] = ACTIONS(1123), - [sym_primitive_type] = ACTIONS(1123), - [anon_sym_enum] = ACTIONS(1123), - [anon_sym_struct] = ACTIONS(1123), - [anon_sym_union] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1123), - [anon_sym_else] = ACTIONS(1123), - [anon_sym_switch] = ACTIONS(1123), - [anon_sym_case] = ACTIONS(1123), - [anon_sym_default] = ACTIONS(1123), - [anon_sym_while] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(1123), - [anon_sym_for] = ACTIONS(1123), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_break] = ACTIONS(1123), - [anon_sym_continue] = ACTIONS(1123), - [anon_sym_goto] = ACTIONS(1123), - [anon_sym___try] = ACTIONS(1123), - [anon_sym___leave] = ACTIONS(1123), - [anon_sym_DASH_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1125), - [anon_sym_sizeof] = ACTIONS(1123), - [anon_sym___alignof__] = ACTIONS(1123), - [anon_sym___alignof] = ACTIONS(1123), - [anon_sym__alignof] = ACTIONS(1123), - [anon_sym_alignof] = ACTIONS(1123), - [anon_sym__Alignof] = ACTIONS(1123), - [anon_sym_offsetof] = ACTIONS(1123), - [anon_sym__Generic] = ACTIONS(1123), - [anon_sym_asm] = ACTIONS(1123), - [anon_sym___asm__] = ACTIONS(1123), - [sym_number_literal] = ACTIONS(1125), - [anon_sym_L_SQUOTE] = ACTIONS(1125), - [anon_sym_u_SQUOTE] = ACTIONS(1125), - [anon_sym_U_SQUOTE] = ACTIONS(1125), - [anon_sym_u8_SQUOTE] = ACTIONS(1125), - [anon_sym_SQUOTE] = ACTIONS(1125), - [anon_sym_L_DQUOTE] = ACTIONS(1125), - [anon_sym_u_DQUOTE] = ACTIONS(1125), - [anon_sym_U_DQUOTE] = ACTIONS(1125), - [anon_sym_u8_DQUOTE] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(1125), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [anon_sym_NULL] = ACTIONS(1123), - [anon_sym_nullptr] = ACTIONS(1123), - [sym_comment] = ACTIONS(3), - }, - [193] = { - [sym_identifier] = ACTIONS(1179), - [aux_sym_preproc_include_token1] = ACTIONS(1179), - [aux_sym_preproc_def_token1] = ACTIONS(1179), - [aux_sym_preproc_if_token1] = ACTIONS(1179), - [aux_sym_preproc_if_token2] = ACTIONS(1179), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1179), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1179), - [sym_preproc_directive] = ACTIONS(1179), - [anon_sym_LPAREN2] = ACTIONS(1181), - [anon_sym_BANG] = ACTIONS(1181), - [anon_sym_TILDE] = ACTIONS(1181), - [anon_sym_DASH] = ACTIONS(1179), - [anon_sym_PLUS] = ACTIONS(1179), - [anon_sym_STAR] = ACTIONS(1181), - [anon_sym_AMP] = ACTIONS(1181), - [anon_sym_SEMI] = ACTIONS(1181), - [anon_sym___extension__] = ACTIONS(1179), - [anon_sym_typedef] = ACTIONS(1179), - [anon_sym_extern] = ACTIONS(1179), - [anon_sym___attribute__] = ACTIONS(1179), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1181), - [anon_sym___declspec] = ACTIONS(1179), - [anon_sym___cdecl] = ACTIONS(1179), - [anon_sym___clrcall] = ACTIONS(1179), - [anon_sym___stdcall] = ACTIONS(1179), - [anon_sym___fastcall] = ACTIONS(1179), - [anon_sym___thiscall] = ACTIONS(1179), - [anon_sym___vectorcall] = ACTIONS(1179), - [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_signed] = ACTIONS(1179), - [anon_sym_unsigned] = ACTIONS(1179), - [anon_sym_long] = ACTIONS(1179), - [anon_sym_short] = ACTIONS(1179), - [anon_sym_static] = ACTIONS(1179), - [anon_sym_auto] = ACTIONS(1179), - [anon_sym_register] = ACTIONS(1179), - [anon_sym_inline] = ACTIONS(1179), - [anon_sym___inline] = ACTIONS(1179), - [anon_sym___inline__] = ACTIONS(1179), - [anon_sym___forceinline] = ACTIONS(1179), - [anon_sym_thread_local] = ACTIONS(1179), - [anon_sym___thread] = ACTIONS(1179), - [anon_sym_const] = ACTIONS(1179), - [anon_sym_constexpr] = ACTIONS(1179), - [anon_sym_volatile] = ACTIONS(1179), - [anon_sym_restrict] = ACTIONS(1179), - [anon_sym___restrict__] = ACTIONS(1179), - [anon_sym__Atomic] = ACTIONS(1179), - [anon_sym__Noreturn] = ACTIONS(1179), - [anon_sym_noreturn] = ACTIONS(1179), - [anon_sym_alignas] = ACTIONS(1179), - [anon_sym__Alignas] = ACTIONS(1179), - [sym_primitive_type] = ACTIONS(1179), - [anon_sym_enum] = ACTIONS(1179), - [anon_sym_struct] = ACTIONS(1179), - [anon_sym_union] = ACTIONS(1179), - [anon_sym_if] = ACTIONS(1179), - [anon_sym_else] = ACTIONS(1179), - [anon_sym_switch] = ACTIONS(1179), - [anon_sym_case] = ACTIONS(1179), - [anon_sym_default] = ACTIONS(1179), - [anon_sym_while] = ACTIONS(1179), - [anon_sym_do] = ACTIONS(1179), - [anon_sym_for] = ACTIONS(1179), - [anon_sym_return] = ACTIONS(1179), - [anon_sym_break] = ACTIONS(1179), - [anon_sym_continue] = ACTIONS(1179), - [anon_sym_goto] = ACTIONS(1179), - [anon_sym___try] = ACTIONS(1179), - [anon_sym___leave] = ACTIONS(1179), - [anon_sym_DASH_DASH] = ACTIONS(1181), - [anon_sym_PLUS_PLUS] = ACTIONS(1181), - [anon_sym_sizeof] = ACTIONS(1179), - [anon_sym___alignof__] = ACTIONS(1179), - [anon_sym___alignof] = ACTIONS(1179), - [anon_sym__alignof] = ACTIONS(1179), - [anon_sym_alignof] = ACTIONS(1179), - [anon_sym__Alignof] = ACTIONS(1179), - [anon_sym_offsetof] = ACTIONS(1179), - [anon_sym__Generic] = ACTIONS(1179), - [anon_sym_asm] = ACTIONS(1179), - [anon_sym___asm__] = ACTIONS(1179), - [sym_number_literal] = ACTIONS(1181), - [anon_sym_L_SQUOTE] = ACTIONS(1181), - [anon_sym_u_SQUOTE] = ACTIONS(1181), - [anon_sym_U_SQUOTE] = ACTIONS(1181), - [anon_sym_u8_SQUOTE] = ACTIONS(1181), - [anon_sym_SQUOTE] = ACTIONS(1181), - [anon_sym_L_DQUOTE] = ACTIONS(1181), - [anon_sym_u_DQUOTE] = ACTIONS(1181), - [anon_sym_U_DQUOTE] = ACTIONS(1181), - [anon_sym_u8_DQUOTE] = ACTIONS(1181), - [anon_sym_DQUOTE] = ACTIONS(1181), - [sym_true] = ACTIONS(1179), - [sym_false] = ACTIONS(1179), - [anon_sym_NULL] = ACTIONS(1179), - [anon_sym_nullptr] = ACTIONS(1179), + [172] = { + [sym_identifier] = ACTIONS(1247), + [aux_sym_preproc_include_token1] = ACTIONS(1247), + [aux_sym_preproc_def_token1] = ACTIONS(1247), + [aux_sym_preproc_if_token1] = ACTIONS(1247), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1247), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1247), + [sym_preproc_directive] = ACTIONS(1247), + [anon_sym_LPAREN2] = ACTIONS(1249), + [anon_sym_BANG] = ACTIONS(1249), + [anon_sym_TILDE] = ACTIONS(1249), + [anon_sym_DASH] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(1247), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(1247), + [anon_sym_typedef] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1247), + [anon_sym___attribute__] = ACTIONS(1247), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1249), + [anon_sym___declspec] = ACTIONS(1247), + [anon_sym___cdecl] = ACTIONS(1247), + [anon_sym___clrcall] = ACTIONS(1247), + [anon_sym___stdcall] = ACTIONS(1247), + [anon_sym___fastcall] = ACTIONS(1247), + [anon_sym___thiscall] = ACTIONS(1247), + [anon_sym___vectorcall] = ACTIONS(1247), + [anon_sym_LBRACE] = ACTIONS(1249), + [anon_sym_RBRACE] = ACTIONS(1249), + [anon_sym_signed] = ACTIONS(1247), + [anon_sym_unsigned] = ACTIONS(1247), + [anon_sym_long] = ACTIONS(1247), + [anon_sym_short] = ACTIONS(1247), + [anon_sym_static] = ACTIONS(1247), + [anon_sym_auto] = ACTIONS(1247), + [anon_sym_register] = ACTIONS(1247), + [anon_sym_inline] = ACTIONS(1247), + [anon_sym___inline] = ACTIONS(1247), + [anon_sym___inline__] = ACTIONS(1247), + [anon_sym___forceinline] = ACTIONS(1247), + [anon_sym_thread_local] = ACTIONS(1247), + [anon_sym___thread] = ACTIONS(1247), + [anon_sym_const] = ACTIONS(1247), + [anon_sym_constexpr] = ACTIONS(1247), + [anon_sym_volatile] = ACTIONS(1247), + [anon_sym_restrict] = ACTIONS(1247), + [anon_sym___restrict__] = ACTIONS(1247), + [anon_sym__Atomic] = ACTIONS(1247), + [anon_sym__Noreturn] = ACTIONS(1247), + [anon_sym_noreturn] = ACTIONS(1247), + [anon_sym_alignas] = ACTIONS(1247), + [anon_sym__Alignas] = ACTIONS(1247), + [sym_primitive_type] = ACTIONS(1247), + [anon_sym_enum] = ACTIONS(1247), + [anon_sym_struct] = ACTIONS(1247), + [anon_sym_union] = ACTIONS(1247), + [anon_sym_if] = ACTIONS(1247), + [anon_sym_else] = ACTIONS(1247), + [anon_sym_switch] = ACTIONS(1247), + [anon_sym_case] = ACTIONS(1247), + [anon_sym_default] = ACTIONS(1247), + [anon_sym_while] = ACTIONS(1247), + [anon_sym_do] = ACTIONS(1247), + [anon_sym_for] = ACTIONS(1247), + [anon_sym_return] = ACTIONS(1247), + [anon_sym_break] = ACTIONS(1247), + [anon_sym_continue] = ACTIONS(1247), + [anon_sym_goto] = ACTIONS(1247), + [anon_sym___try] = ACTIONS(1247), + [anon_sym___leave] = ACTIONS(1247), + [anon_sym_DASH_DASH] = ACTIONS(1249), + [anon_sym_PLUS_PLUS] = ACTIONS(1249), + [anon_sym_sizeof] = ACTIONS(1247), + [anon_sym___alignof__] = ACTIONS(1247), + [anon_sym___alignof] = ACTIONS(1247), + [anon_sym__alignof] = ACTIONS(1247), + [anon_sym_alignof] = ACTIONS(1247), + [anon_sym__Alignof] = ACTIONS(1247), + [anon_sym_offsetof] = ACTIONS(1247), + [anon_sym__Generic] = ACTIONS(1247), + [anon_sym_asm] = ACTIONS(1247), + [anon_sym___asm__] = ACTIONS(1247), + [sym_number_literal] = ACTIONS(1249), + [anon_sym_L_SQUOTE] = ACTIONS(1249), + [anon_sym_u_SQUOTE] = ACTIONS(1249), + [anon_sym_U_SQUOTE] = ACTIONS(1249), + [anon_sym_u8_SQUOTE] = ACTIONS(1249), + [anon_sym_SQUOTE] = ACTIONS(1249), + [anon_sym_L_DQUOTE] = ACTIONS(1249), + [anon_sym_u_DQUOTE] = ACTIONS(1249), + [anon_sym_U_DQUOTE] = ACTIONS(1249), + [anon_sym_u8_DQUOTE] = ACTIONS(1249), + [anon_sym_DQUOTE] = ACTIONS(1249), + [sym_true] = ACTIONS(1247), + [sym_false] = ACTIONS(1247), + [anon_sym_NULL] = ACTIONS(1247), + [anon_sym_nullptr] = ACTIONS(1247), [sym_comment] = ACTIONS(3), }, - [194] = { - [ts_builtin_sym_end] = ACTIONS(1125), - [sym_identifier] = ACTIONS(1123), - [aux_sym_preproc_include_token1] = ACTIONS(1123), - [aux_sym_preproc_def_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), - [sym_preproc_directive] = ACTIONS(1123), - [anon_sym_LPAREN2] = ACTIONS(1125), - [anon_sym_BANG] = ACTIONS(1125), - [anon_sym_TILDE] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym___extension__] = ACTIONS(1123), - [anon_sym_typedef] = ACTIONS(1123), - [anon_sym_extern] = ACTIONS(1123), - [anon_sym___attribute__] = ACTIONS(1123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), - [anon_sym___declspec] = ACTIONS(1123), - [anon_sym___cdecl] = ACTIONS(1123), - [anon_sym___clrcall] = ACTIONS(1123), - [anon_sym___stdcall] = ACTIONS(1123), - [anon_sym___fastcall] = ACTIONS(1123), - [anon_sym___thiscall] = ACTIONS(1123), - [anon_sym___vectorcall] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_signed] = ACTIONS(1123), - [anon_sym_unsigned] = ACTIONS(1123), - [anon_sym_long] = ACTIONS(1123), - [anon_sym_short] = ACTIONS(1123), - [anon_sym_static] = ACTIONS(1123), - [anon_sym_auto] = ACTIONS(1123), - [anon_sym_register] = ACTIONS(1123), - [anon_sym_inline] = ACTIONS(1123), - [anon_sym___inline] = ACTIONS(1123), - [anon_sym___inline__] = ACTIONS(1123), - [anon_sym___forceinline] = ACTIONS(1123), - [anon_sym_thread_local] = ACTIONS(1123), - [anon_sym___thread] = ACTIONS(1123), - [anon_sym_const] = ACTIONS(1123), - [anon_sym_constexpr] = ACTIONS(1123), - [anon_sym_volatile] = ACTIONS(1123), - [anon_sym_restrict] = ACTIONS(1123), - [anon_sym___restrict__] = ACTIONS(1123), - [anon_sym__Atomic] = ACTIONS(1123), - [anon_sym__Noreturn] = ACTIONS(1123), - [anon_sym_noreturn] = ACTIONS(1123), - [anon_sym_alignas] = ACTIONS(1123), - [anon_sym__Alignas] = ACTIONS(1123), - [sym_primitive_type] = ACTIONS(1123), - [anon_sym_enum] = ACTIONS(1123), - [anon_sym_struct] = ACTIONS(1123), - [anon_sym_union] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1123), - [anon_sym_else] = ACTIONS(1123), - [anon_sym_switch] = ACTIONS(1123), - [anon_sym_case] = ACTIONS(1123), - [anon_sym_default] = ACTIONS(1123), - [anon_sym_while] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(1123), - [anon_sym_for] = ACTIONS(1123), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_break] = ACTIONS(1123), - [anon_sym_continue] = ACTIONS(1123), - [anon_sym_goto] = ACTIONS(1123), - [anon_sym___try] = ACTIONS(1123), - [anon_sym___leave] = ACTIONS(1123), - [anon_sym_DASH_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1125), - [anon_sym_sizeof] = ACTIONS(1123), - [anon_sym___alignof__] = ACTIONS(1123), - [anon_sym___alignof] = ACTIONS(1123), - [anon_sym__alignof] = ACTIONS(1123), - [anon_sym_alignof] = ACTIONS(1123), - [anon_sym__Alignof] = ACTIONS(1123), - [anon_sym_offsetof] = ACTIONS(1123), - [anon_sym__Generic] = ACTIONS(1123), - [anon_sym_asm] = ACTIONS(1123), - [anon_sym___asm__] = ACTIONS(1123), - [sym_number_literal] = ACTIONS(1125), - [anon_sym_L_SQUOTE] = ACTIONS(1125), - [anon_sym_u_SQUOTE] = ACTIONS(1125), - [anon_sym_U_SQUOTE] = ACTIONS(1125), - [anon_sym_u8_SQUOTE] = ACTIONS(1125), - [anon_sym_SQUOTE] = ACTIONS(1125), - [anon_sym_L_DQUOTE] = ACTIONS(1125), - [anon_sym_u_DQUOTE] = ACTIONS(1125), - [anon_sym_U_DQUOTE] = ACTIONS(1125), - [anon_sym_u8_DQUOTE] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(1125), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [anon_sym_NULL] = ACTIONS(1123), - [anon_sym_nullptr] = ACTIONS(1123), + [173] = { + [sym_identifier] = ACTIONS(1135), + [aux_sym_preproc_include_token1] = ACTIONS(1135), + [aux_sym_preproc_def_token1] = ACTIONS(1135), + [aux_sym_preproc_if_token1] = ACTIONS(1135), + [aux_sym_preproc_if_token2] = ACTIONS(1135), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1135), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1135), + [sym_preproc_directive] = ACTIONS(1135), + [anon_sym_LPAREN2] = ACTIONS(1137), + [anon_sym_BANG] = ACTIONS(1137), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_STAR] = ACTIONS(1137), + [anon_sym_AMP] = ACTIONS(1137), + [anon_sym_SEMI] = ACTIONS(1137), + [anon_sym___extension__] = ACTIONS(1135), + [anon_sym_typedef] = ACTIONS(1135), + [anon_sym_extern] = ACTIONS(1135), + [anon_sym___attribute__] = ACTIONS(1135), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1137), + [anon_sym___declspec] = ACTIONS(1135), + [anon_sym___cdecl] = ACTIONS(1135), + [anon_sym___clrcall] = ACTIONS(1135), + [anon_sym___stdcall] = ACTIONS(1135), + [anon_sym___fastcall] = ACTIONS(1135), + [anon_sym___thiscall] = ACTIONS(1135), + [anon_sym___vectorcall] = ACTIONS(1135), + [anon_sym_LBRACE] = ACTIONS(1137), + [anon_sym_signed] = ACTIONS(1135), + [anon_sym_unsigned] = ACTIONS(1135), + [anon_sym_long] = ACTIONS(1135), + [anon_sym_short] = ACTIONS(1135), + [anon_sym_static] = ACTIONS(1135), + [anon_sym_auto] = ACTIONS(1135), + [anon_sym_register] = ACTIONS(1135), + [anon_sym_inline] = ACTIONS(1135), + [anon_sym___inline] = ACTIONS(1135), + [anon_sym___inline__] = ACTIONS(1135), + [anon_sym___forceinline] = ACTIONS(1135), + [anon_sym_thread_local] = ACTIONS(1135), + [anon_sym___thread] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_constexpr] = ACTIONS(1135), + [anon_sym_volatile] = ACTIONS(1135), + [anon_sym_restrict] = ACTIONS(1135), + [anon_sym___restrict__] = ACTIONS(1135), + [anon_sym__Atomic] = ACTIONS(1135), + [anon_sym__Noreturn] = ACTIONS(1135), + [anon_sym_noreturn] = ACTIONS(1135), + [anon_sym_alignas] = ACTIONS(1135), + [anon_sym__Alignas] = ACTIONS(1135), + [sym_primitive_type] = ACTIONS(1135), + [anon_sym_enum] = ACTIONS(1135), + [anon_sym_struct] = ACTIONS(1135), + [anon_sym_union] = ACTIONS(1135), + [anon_sym_if] = ACTIONS(1135), + [anon_sym_else] = ACTIONS(1135), + [anon_sym_switch] = ACTIONS(1135), + [anon_sym_case] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(1135), + [anon_sym_while] = ACTIONS(1135), + [anon_sym_do] = ACTIONS(1135), + [anon_sym_for] = ACTIONS(1135), + [anon_sym_return] = ACTIONS(1135), + [anon_sym_break] = ACTIONS(1135), + [anon_sym_continue] = ACTIONS(1135), + [anon_sym_goto] = ACTIONS(1135), + [anon_sym___try] = ACTIONS(1135), + [anon_sym___leave] = ACTIONS(1135), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [anon_sym_PLUS_PLUS] = ACTIONS(1137), + [anon_sym_sizeof] = ACTIONS(1135), + [anon_sym___alignof__] = ACTIONS(1135), + [anon_sym___alignof] = ACTIONS(1135), + [anon_sym__alignof] = ACTIONS(1135), + [anon_sym_alignof] = ACTIONS(1135), + [anon_sym__Alignof] = ACTIONS(1135), + [anon_sym_offsetof] = ACTIONS(1135), + [anon_sym__Generic] = ACTIONS(1135), + [anon_sym_asm] = ACTIONS(1135), + [anon_sym___asm__] = ACTIONS(1135), + [sym_number_literal] = ACTIONS(1137), + [anon_sym_L_SQUOTE] = ACTIONS(1137), + [anon_sym_u_SQUOTE] = ACTIONS(1137), + [anon_sym_U_SQUOTE] = ACTIONS(1137), + [anon_sym_u8_SQUOTE] = ACTIONS(1137), + [anon_sym_SQUOTE] = ACTIONS(1137), + [anon_sym_L_DQUOTE] = ACTIONS(1137), + [anon_sym_u_DQUOTE] = ACTIONS(1137), + [anon_sym_U_DQUOTE] = ACTIONS(1137), + [anon_sym_u8_DQUOTE] = ACTIONS(1137), + [anon_sym_DQUOTE] = ACTIONS(1137), + [sym_true] = ACTIONS(1135), + [sym_false] = ACTIONS(1135), + [anon_sym_NULL] = ACTIONS(1135), + [anon_sym_nullptr] = ACTIONS(1135), [sym_comment] = ACTIONS(3), }, - [195] = { - [sym_identifier] = ACTIONS(1211), - [aux_sym_preproc_include_token1] = ACTIONS(1211), - [aux_sym_preproc_def_token1] = ACTIONS(1211), - [aux_sym_preproc_if_token1] = ACTIONS(1211), - [aux_sym_preproc_if_token2] = ACTIONS(1211), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1211), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1211), - [sym_preproc_directive] = ACTIONS(1211), - [anon_sym_LPAREN2] = ACTIONS(1213), - [anon_sym_BANG] = ACTIONS(1213), - [anon_sym_TILDE] = ACTIONS(1213), - [anon_sym_DASH] = ACTIONS(1211), - [anon_sym_PLUS] = ACTIONS(1211), - [anon_sym_STAR] = ACTIONS(1213), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_SEMI] = ACTIONS(1213), - [anon_sym___extension__] = ACTIONS(1211), - [anon_sym_typedef] = ACTIONS(1211), - [anon_sym_extern] = ACTIONS(1211), - [anon_sym___attribute__] = ACTIONS(1211), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1213), - [anon_sym___declspec] = ACTIONS(1211), - [anon_sym___cdecl] = ACTIONS(1211), - [anon_sym___clrcall] = ACTIONS(1211), - [anon_sym___stdcall] = ACTIONS(1211), - [anon_sym___fastcall] = ACTIONS(1211), - [anon_sym___thiscall] = ACTIONS(1211), - [anon_sym___vectorcall] = ACTIONS(1211), - [anon_sym_LBRACE] = ACTIONS(1213), - [anon_sym_signed] = ACTIONS(1211), - [anon_sym_unsigned] = ACTIONS(1211), - [anon_sym_long] = ACTIONS(1211), - [anon_sym_short] = ACTIONS(1211), - [anon_sym_static] = ACTIONS(1211), - [anon_sym_auto] = ACTIONS(1211), - [anon_sym_register] = ACTIONS(1211), - [anon_sym_inline] = ACTIONS(1211), - [anon_sym___inline] = ACTIONS(1211), - [anon_sym___inline__] = ACTIONS(1211), - [anon_sym___forceinline] = ACTIONS(1211), - [anon_sym_thread_local] = ACTIONS(1211), - [anon_sym___thread] = ACTIONS(1211), - [anon_sym_const] = ACTIONS(1211), - [anon_sym_constexpr] = ACTIONS(1211), - [anon_sym_volatile] = ACTIONS(1211), - [anon_sym_restrict] = ACTIONS(1211), - [anon_sym___restrict__] = ACTIONS(1211), - [anon_sym__Atomic] = ACTIONS(1211), - [anon_sym__Noreturn] = ACTIONS(1211), - [anon_sym_noreturn] = ACTIONS(1211), - [anon_sym_alignas] = ACTIONS(1211), - [anon_sym__Alignas] = ACTIONS(1211), - [sym_primitive_type] = ACTIONS(1211), - [anon_sym_enum] = ACTIONS(1211), - [anon_sym_struct] = ACTIONS(1211), - [anon_sym_union] = ACTIONS(1211), - [anon_sym_if] = ACTIONS(1211), - [anon_sym_else] = ACTIONS(1211), - [anon_sym_switch] = ACTIONS(1211), - [anon_sym_case] = ACTIONS(1211), - [anon_sym_default] = ACTIONS(1211), - [anon_sym_while] = ACTIONS(1211), - [anon_sym_do] = ACTIONS(1211), - [anon_sym_for] = ACTIONS(1211), - [anon_sym_return] = ACTIONS(1211), - [anon_sym_break] = ACTIONS(1211), - [anon_sym_continue] = ACTIONS(1211), - [anon_sym_goto] = ACTIONS(1211), - [anon_sym___try] = ACTIONS(1211), - [anon_sym___leave] = ACTIONS(1211), - [anon_sym_DASH_DASH] = ACTIONS(1213), - [anon_sym_PLUS_PLUS] = ACTIONS(1213), - [anon_sym_sizeof] = ACTIONS(1211), - [anon_sym___alignof__] = ACTIONS(1211), - [anon_sym___alignof] = ACTIONS(1211), - [anon_sym__alignof] = ACTIONS(1211), - [anon_sym_alignof] = ACTIONS(1211), - [anon_sym__Alignof] = ACTIONS(1211), - [anon_sym_offsetof] = ACTIONS(1211), - [anon_sym__Generic] = ACTIONS(1211), - [anon_sym_asm] = ACTIONS(1211), - [anon_sym___asm__] = ACTIONS(1211), - [sym_number_literal] = ACTIONS(1213), - [anon_sym_L_SQUOTE] = ACTIONS(1213), - [anon_sym_u_SQUOTE] = ACTIONS(1213), - [anon_sym_U_SQUOTE] = ACTIONS(1213), - [anon_sym_u8_SQUOTE] = ACTIONS(1213), - [anon_sym_SQUOTE] = ACTIONS(1213), - [anon_sym_L_DQUOTE] = ACTIONS(1213), - [anon_sym_u_DQUOTE] = ACTIONS(1213), - [anon_sym_U_DQUOTE] = ACTIONS(1213), - [anon_sym_u8_DQUOTE] = ACTIONS(1213), - [anon_sym_DQUOTE] = ACTIONS(1213), - [sym_true] = ACTIONS(1211), - [sym_false] = ACTIONS(1211), - [anon_sym_NULL] = ACTIONS(1211), - [anon_sym_nullptr] = ACTIONS(1211), + [174] = { + [sym_identifier] = ACTIONS(1131), + [aux_sym_preproc_include_token1] = ACTIONS(1131), + [aux_sym_preproc_def_token1] = ACTIONS(1131), + [aux_sym_preproc_if_token1] = ACTIONS(1131), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1131), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1131), + [sym_preproc_directive] = ACTIONS(1131), + [anon_sym_LPAREN2] = ACTIONS(1133), + [anon_sym_BANG] = ACTIONS(1133), + [anon_sym_TILDE] = ACTIONS(1133), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_AMP] = ACTIONS(1133), + [anon_sym_SEMI] = ACTIONS(1133), + [anon_sym___extension__] = ACTIONS(1131), + [anon_sym_typedef] = ACTIONS(1131), + [anon_sym_extern] = ACTIONS(1131), + [anon_sym___attribute__] = ACTIONS(1131), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1133), + [anon_sym___declspec] = ACTIONS(1131), + [anon_sym___cdecl] = ACTIONS(1131), + [anon_sym___clrcall] = ACTIONS(1131), + [anon_sym___stdcall] = ACTIONS(1131), + [anon_sym___fastcall] = ACTIONS(1131), + [anon_sym___thiscall] = ACTIONS(1131), + [anon_sym___vectorcall] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(1133), + [anon_sym_RBRACE] = ACTIONS(1133), + [anon_sym_signed] = ACTIONS(1131), + [anon_sym_unsigned] = ACTIONS(1131), + [anon_sym_long] = ACTIONS(1131), + [anon_sym_short] = ACTIONS(1131), + [anon_sym_static] = ACTIONS(1131), + [anon_sym_auto] = ACTIONS(1131), + [anon_sym_register] = ACTIONS(1131), + [anon_sym_inline] = ACTIONS(1131), + [anon_sym___inline] = ACTIONS(1131), + [anon_sym___inline__] = ACTIONS(1131), + [anon_sym___forceinline] = ACTIONS(1131), + [anon_sym_thread_local] = ACTIONS(1131), + [anon_sym___thread] = ACTIONS(1131), + [anon_sym_const] = ACTIONS(1131), + [anon_sym_constexpr] = ACTIONS(1131), + [anon_sym_volatile] = ACTIONS(1131), + [anon_sym_restrict] = ACTIONS(1131), + [anon_sym___restrict__] = ACTIONS(1131), + [anon_sym__Atomic] = ACTIONS(1131), + [anon_sym__Noreturn] = ACTIONS(1131), + [anon_sym_noreturn] = ACTIONS(1131), + [anon_sym_alignas] = ACTIONS(1131), + [anon_sym__Alignas] = ACTIONS(1131), + [sym_primitive_type] = ACTIONS(1131), + [anon_sym_enum] = ACTIONS(1131), + [anon_sym_struct] = ACTIONS(1131), + [anon_sym_union] = ACTIONS(1131), + [anon_sym_if] = ACTIONS(1131), + [anon_sym_else] = ACTIONS(1131), + [anon_sym_switch] = ACTIONS(1131), + [anon_sym_case] = ACTIONS(1131), + [anon_sym_default] = ACTIONS(1131), + [anon_sym_while] = ACTIONS(1131), + [anon_sym_do] = ACTIONS(1131), + [anon_sym_for] = ACTIONS(1131), + [anon_sym_return] = ACTIONS(1131), + [anon_sym_break] = ACTIONS(1131), + [anon_sym_continue] = ACTIONS(1131), + [anon_sym_goto] = ACTIONS(1131), + [anon_sym___try] = ACTIONS(1131), + [anon_sym___leave] = ACTIONS(1131), + [anon_sym_DASH_DASH] = ACTIONS(1133), + [anon_sym_PLUS_PLUS] = ACTIONS(1133), + [anon_sym_sizeof] = ACTIONS(1131), + [anon_sym___alignof__] = ACTIONS(1131), + [anon_sym___alignof] = ACTIONS(1131), + [anon_sym__alignof] = ACTIONS(1131), + [anon_sym_alignof] = ACTIONS(1131), + [anon_sym__Alignof] = ACTIONS(1131), + [anon_sym_offsetof] = ACTIONS(1131), + [anon_sym__Generic] = ACTIONS(1131), + [anon_sym_asm] = ACTIONS(1131), + [anon_sym___asm__] = ACTIONS(1131), + [sym_number_literal] = ACTIONS(1133), + [anon_sym_L_SQUOTE] = ACTIONS(1133), + [anon_sym_u_SQUOTE] = ACTIONS(1133), + [anon_sym_U_SQUOTE] = ACTIONS(1133), + [anon_sym_u8_SQUOTE] = ACTIONS(1133), + [anon_sym_SQUOTE] = ACTIONS(1133), + [anon_sym_L_DQUOTE] = ACTIONS(1133), + [anon_sym_u_DQUOTE] = ACTIONS(1133), + [anon_sym_U_DQUOTE] = ACTIONS(1133), + [anon_sym_u8_DQUOTE] = ACTIONS(1133), + [anon_sym_DQUOTE] = ACTIONS(1133), + [sym_true] = ACTIONS(1131), + [sym_false] = ACTIONS(1131), + [anon_sym_NULL] = ACTIONS(1131), + [anon_sym_nullptr] = ACTIONS(1131), [sym_comment] = ACTIONS(3), }, - [196] = { - [sym_identifier] = ACTIONS(1147), - [aux_sym_preproc_include_token1] = ACTIONS(1147), - [aux_sym_preproc_def_token1] = ACTIONS(1147), - [aux_sym_preproc_if_token1] = ACTIONS(1147), - [aux_sym_preproc_if_token2] = ACTIONS(1147), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1147), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1147), - [sym_preproc_directive] = ACTIONS(1147), - [anon_sym_LPAREN2] = ACTIONS(1149), - [anon_sym_BANG] = ACTIONS(1149), - [anon_sym_TILDE] = ACTIONS(1149), - [anon_sym_DASH] = ACTIONS(1147), - [anon_sym_PLUS] = ACTIONS(1147), - [anon_sym_STAR] = ACTIONS(1149), - [anon_sym_AMP] = ACTIONS(1149), - [anon_sym_SEMI] = ACTIONS(1149), - [anon_sym___extension__] = ACTIONS(1147), - [anon_sym_typedef] = ACTIONS(1147), - [anon_sym_extern] = ACTIONS(1147), - [anon_sym___attribute__] = ACTIONS(1147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1149), - [anon_sym___declspec] = ACTIONS(1147), - [anon_sym___cdecl] = ACTIONS(1147), - [anon_sym___clrcall] = ACTIONS(1147), - [anon_sym___stdcall] = ACTIONS(1147), - [anon_sym___fastcall] = ACTIONS(1147), - [anon_sym___thiscall] = ACTIONS(1147), - [anon_sym___vectorcall] = ACTIONS(1147), - [anon_sym_LBRACE] = ACTIONS(1149), - [anon_sym_signed] = ACTIONS(1147), - [anon_sym_unsigned] = ACTIONS(1147), - [anon_sym_long] = ACTIONS(1147), - [anon_sym_short] = ACTIONS(1147), - [anon_sym_static] = ACTIONS(1147), - [anon_sym_auto] = ACTIONS(1147), - [anon_sym_register] = ACTIONS(1147), - [anon_sym_inline] = ACTIONS(1147), - [anon_sym___inline] = ACTIONS(1147), - [anon_sym___inline__] = ACTIONS(1147), - [anon_sym___forceinline] = ACTIONS(1147), - [anon_sym_thread_local] = ACTIONS(1147), - [anon_sym___thread] = ACTIONS(1147), - [anon_sym_const] = ACTIONS(1147), - [anon_sym_constexpr] = ACTIONS(1147), - [anon_sym_volatile] = ACTIONS(1147), - [anon_sym_restrict] = ACTIONS(1147), - [anon_sym___restrict__] = ACTIONS(1147), - [anon_sym__Atomic] = ACTIONS(1147), - [anon_sym__Noreturn] = ACTIONS(1147), - [anon_sym_noreturn] = ACTIONS(1147), - [anon_sym_alignas] = ACTIONS(1147), - [anon_sym__Alignas] = ACTIONS(1147), - [sym_primitive_type] = ACTIONS(1147), - [anon_sym_enum] = ACTIONS(1147), - [anon_sym_struct] = ACTIONS(1147), - [anon_sym_union] = ACTIONS(1147), - [anon_sym_if] = ACTIONS(1147), - [anon_sym_else] = ACTIONS(1147), - [anon_sym_switch] = ACTIONS(1147), - [anon_sym_case] = ACTIONS(1147), - [anon_sym_default] = ACTIONS(1147), - [anon_sym_while] = ACTIONS(1147), - [anon_sym_do] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1147), - [anon_sym_return] = ACTIONS(1147), - [anon_sym_break] = ACTIONS(1147), - [anon_sym_continue] = ACTIONS(1147), - [anon_sym_goto] = ACTIONS(1147), - [anon_sym___try] = ACTIONS(1147), - [anon_sym___leave] = ACTIONS(1147), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_sizeof] = ACTIONS(1147), - [anon_sym___alignof__] = ACTIONS(1147), - [anon_sym___alignof] = ACTIONS(1147), - [anon_sym__alignof] = ACTIONS(1147), - [anon_sym_alignof] = ACTIONS(1147), - [anon_sym__Alignof] = ACTIONS(1147), - [anon_sym_offsetof] = ACTIONS(1147), - [anon_sym__Generic] = ACTIONS(1147), - [anon_sym_asm] = ACTIONS(1147), - [anon_sym___asm__] = ACTIONS(1147), - [sym_number_literal] = ACTIONS(1149), - [anon_sym_L_SQUOTE] = ACTIONS(1149), - [anon_sym_u_SQUOTE] = ACTIONS(1149), - [anon_sym_U_SQUOTE] = ACTIONS(1149), - [anon_sym_u8_SQUOTE] = ACTIONS(1149), - [anon_sym_SQUOTE] = ACTIONS(1149), - [anon_sym_L_DQUOTE] = ACTIONS(1149), - [anon_sym_u_DQUOTE] = ACTIONS(1149), - [anon_sym_U_DQUOTE] = ACTIONS(1149), - [anon_sym_u8_DQUOTE] = ACTIONS(1149), - [anon_sym_DQUOTE] = ACTIONS(1149), - [sym_true] = ACTIONS(1147), - [sym_false] = ACTIONS(1147), - [anon_sym_NULL] = ACTIONS(1147), - [anon_sym_nullptr] = ACTIONS(1147), + [175] = { + [sym_identifier] = ACTIONS(1135), + [aux_sym_preproc_include_token1] = ACTIONS(1135), + [aux_sym_preproc_def_token1] = ACTIONS(1135), + [aux_sym_preproc_if_token1] = ACTIONS(1135), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1135), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1135), + [sym_preproc_directive] = ACTIONS(1135), + [anon_sym_LPAREN2] = ACTIONS(1137), + [anon_sym_BANG] = ACTIONS(1137), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_STAR] = ACTIONS(1137), + [anon_sym_AMP] = ACTIONS(1137), + [anon_sym_SEMI] = ACTIONS(1137), + [anon_sym___extension__] = ACTIONS(1135), + [anon_sym_typedef] = ACTIONS(1135), + [anon_sym_extern] = ACTIONS(1135), + [anon_sym___attribute__] = ACTIONS(1135), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1137), + [anon_sym___declspec] = ACTIONS(1135), + [anon_sym___cdecl] = ACTIONS(1135), + [anon_sym___clrcall] = ACTIONS(1135), + [anon_sym___stdcall] = ACTIONS(1135), + [anon_sym___fastcall] = ACTIONS(1135), + [anon_sym___thiscall] = ACTIONS(1135), + [anon_sym___vectorcall] = ACTIONS(1135), + [anon_sym_LBRACE] = ACTIONS(1137), + [anon_sym_RBRACE] = ACTIONS(1137), + [anon_sym_signed] = ACTIONS(1135), + [anon_sym_unsigned] = ACTIONS(1135), + [anon_sym_long] = ACTIONS(1135), + [anon_sym_short] = ACTIONS(1135), + [anon_sym_static] = ACTIONS(1135), + [anon_sym_auto] = ACTIONS(1135), + [anon_sym_register] = ACTIONS(1135), + [anon_sym_inline] = ACTIONS(1135), + [anon_sym___inline] = ACTIONS(1135), + [anon_sym___inline__] = ACTIONS(1135), + [anon_sym___forceinline] = ACTIONS(1135), + [anon_sym_thread_local] = ACTIONS(1135), + [anon_sym___thread] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_constexpr] = ACTIONS(1135), + [anon_sym_volatile] = ACTIONS(1135), + [anon_sym_restrict] = ACTIONS(1135), + [anon_sym___restrict__] = ACTIONS(1135), + [anon_sym__Atomic] = ACTIONS(1135), + [anon_sym__Noreturn] = ACTIONS(1135), + [anon_sym_noreturn] = ACTIONS(1135), + [anon_sym_alignas] = ACTIONS(1135), + [anon_sym__Alignas] = ACTIONS(1135), + [sym_primitive_type] = ACTIONS(1135), + [anon_sym_enum] = ACTIONS(1135), + [anon_sym_struct] = ACTIONS(1135), + [anon_sym_union] = ACTIONS(1135), + [anon_sym_if] = ACTIONS(1135), + [anon_sym_else] = ACTIONS(1135), + [anon_sym_switch] = ACTIONS(1135), + [anon_sym_case] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(1135), + [anon_sym_while] = ACTIONS(1135), + [anon_sym_do] = ACTIONS(1135), + [anon_sym_for] = ACTIONS(1135), + [anon_sym_return] = ACTIONS(1135), + [anon_sym_break] = ACTIONS(1135), + [anon_sym_continue] = ACTIONS(1135), + [anon_sym_goto] = ACTIONS(1135), + [anon_sym___try] = ACTIONS(1135), + [anon_sym___leave] = ACTIONS(1135), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [anon_sym_PLUS_PLUS] = ACTIONS(1137), + [anon_sym_sizeof] = ACTIONS(1135), + [anon_sym___alignof__] = ACTIONS(1135), + [anon_sym___alignof] = ACTIONS(1135), + [anon_sym__alignof] = ACTIONS(1135), + [anon_sym_alignof] = ACTIONS(1135), + [anon_sym__Alignof] = ACTIONS(1135), + [anon_sym_offsetof] = ACTIONS(1135), + [anon_sym__Generic] = ACTIONS(1135), + [anon_sym_asm] = ACTIONS(1135), + [anon_sym___asm__] = ACTIONS(1135), + [sym_number_literal] = ACTIONS(1137), + [anon_sym_L_SQUOTE] = ACTIONS(1137), + [anon_sym_u_SQUOTE] = ACTIONS(1137), + [anon_sym_U_SQUOTE] = ACTIONS(1137), + [anon_sym_u8_SQUOTE] = ACTIONS(1137), + [anon_sym_SQUOTE] = ACTIONS(1137), + [anon_sym_L_DQUOTE] = ACTIONS(1137), + [anon_sym_u_DQUOTE] = ACTIONS(1137), + [anon_sym_U_DQUOTE] = ACTIONS(1137), + [anon_sym_u8_DQUOTE] = ACTIONS(1137), + [anon_sym_DQUOTE] = ACTIONS(1137), + [sym_true] = ACTIONS(1135), + [sym_false] = ACTIONS(1135), + [anon_sym_NULL] = ACTIONS(1135), + [anon_sym_nullptr] = ACTIONS(1135), [sym_comment] = ACTIONS(3), }, - [197] = { - [sym_identifier] = ACTIONS(1147), - [aux_sym_preproc_include_token1] = ACTIONS(1147), - [aux_sym_preproc_def_token1] = ACTIONS(1147), - [aux_sym_preproc_if_token1] = ACTIONS(1147), - [aux_sym_preproc_if_token2] = ACTIONS(1147), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1147), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1147), - [sym_preproc_directive] = ACTIONS(1147), - [anon_sym_LPAREN2] = ACTIONS(1149), - [anon_sym_BANG] = ACTIONS(1149), - [anon_sym_TILDE] = ACTIONS(1149), - [anon_sym_DASH] = ACTIONS(1147), - [anon_sym_PLUS] = ACTIONS(1147), - [anon_sym_STAR] = ACTIONS(1149), - [anon_sym_AMP] = ACTIONS(1149), - [anon_sym_SEMI] = ACTIONS(1149), - [anon_sym___extension__] = ACTIONS(1147), - [anon_sym_typedef] = ACTIONS(1147), - [anon_sym_extern] = ACTIONS(1147), - [anon_sym___attribute__] = ACTIONS(1147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1149), - [anon_sym___declspec] = ACTIONS(1147), - [anon_sym___cdecl] = ACTIONS(1147), - [anon_sym___clrcall] = ACTIONS(1147), - [anon_sym___stdcall] = ACTIONS(1147), - [anon_sym___fastcall] = ACTIONS(1147), - [anon_sym___thiscall] = ACTIONS(1147), - [anon_sym___vectorcall] = ACTIONS(1147), - [anon_sym_LBRACE] = ACTIONS(1149), - [anon_sym_signed] = ACTIONS(1147), - [anon_sym_unsigned] = ACTIONS(1147), - [anon_sym_long] = ACTIONS(1147), - [anon_sym_short] = ACTIONS(1147), - [anon_sym_static] = ACTIONS(1147), - [anon_sym_auto] = ACTIONS(1147), - [anon_sym_register] = ACTIONS(1147), - [anon_sym_inline] = ACTIONS(1147), - [anon_sym___inline] = ACTIONS(1147), - [anon_sym___inline__] = ACTIONS(1147), - [anon_sym___forceinline] = ACTIONS(1147), - [anon_sym_thread_local] = ACTIONS(1147), - [anon_sym___thread] = ACTIONS(1147), - [anon_sym_const] = ACTIONS(1147), - [anon_sym_constexpr] = ACTIONS(1147), - [anon_sym_volatile] = ACTIONS(1147), - [anon_sym_restrict] = ACTIONS(1147), - [anon_sym___restrict__] = ACTIONS(1147), - [anon_sym__Atomic] = ACTIONS(1147), - [anon_sym__Noreturn] = ACTIONS(1147), - [anon_sym_noreturn] = ACTIONS(1147), - [anon_sym_alignas] = ACTIONS(1147), - [anon_sym__Alignas] = ACTIONS(1147), - [sym_primitive_type] = ACTIONS(1147), - [anon_sym_enum] = ACTIONS(1147), - [anon_sym_struct] = ACTIONS(1147), - [anon_sym_union] = ACTIONS(1147), - [anon_sym_if] = ACTIONS(1147), - [anon_sym_else] = ACTIONS(1147), - [anon_sym_switch] = ACTIONS(1147), - [anon_sym_case] = ACTIONS(1147), - [anon_sym_default] = ACTIONS(1147), - [anon_sym_while] = ACTIONS(1147), - [anon_sym_do] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1147), - [anon_sym_return] = ACTIONS(1147), - [anon_sym_break] = ACTIONS(1147), - [anon_sym_continue] = ACTIONS(1147), - [anon_sym_goto] = ACTIONS(1147), - [anon_sym___try] = ACTIONS(1147), - [anon_sym___leave] = ACTIONS(1147), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_sizeof] = ACTIONS(1147), - [anon_sym___alignof__] = ACTIONS(1147), - [anon_sym___alignof] = ACTIONS(1147), - [anon_sym__alignof] = ACTIONS(1147), - [anon_sym_alignof] = ACTIONS(1147), - [anon_sym__Alignof] = ACTIONS(1147), - [anon_sym_offsetof] = ACTIONS(1147), - [anon_sym__Generic] = ACTIONS(1147), - [anon_sym_asm] = ACTIONS(1147), - [anon_sym___asm__] = ACTIONS(1147), - [sym_number_literal] = ACTIONS(1149), - [anon_sym_L_SQUOTE] = ACTIONS(1149), - [anon_sym_u_SQUOTE] = ACTIONS(1149), - [anon_sym_U_SQUOTE] = ACTIONS(1149), - [anon_sym_u8_SQUOTE] = ACTIONS(1149), - [anon_sym_SQUOTE] = ACTIONS(1149), - [anon_sym_L_DQUOTE] = ACTIONS(1149), - [anon_sym_u_DQUOTE] = ACTIONS(1149), - [anon_sym_U_DQUOTE] = ACTIONS(1149), - [anon_sym_u8_DQUOTE] = ACTIONS(1149), - [anon_sym_DQUOTE] = ACTIONS(1149), - [sym_true] = ACTIONS(1147), - [sym_false] = ACTIONS(1147), - [anon_sym_NULL] = ACTIONS(1147), - [anon_sym_nullptr] = ACTIONS(1147), + [176] = { + [sym_identifier] = ACTIONS(1139), + [aux_sym_preproc_include_token1] = ACTIONS(1139), + [aux_sym_preproc_def_token1] = ACTIONS(1139), + [aux_sym_preproc_if_token1] = ACTIONS(1139), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1139), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1139), + [sym_preproc_directive] = ACTIONS(1139), + [anon_sym_LPAREN2] = ACTIONS(1141), + [anon_sym_BANG] = ACTIONS(1141), + [anon_sym_TILDE] = ACTIONS(1141), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_PLUS] = ACTIONS(1139), + [anon_sym_STAR] = ACTIONS(1141), + [anon_sym_AMP] = ACTIONS(1141), + [anon_sym_SEMI] = ACTIONS(1141), + [anon_sym___extension__] = ACTIONS(1139), + [anon_sym_typedef] = ACTIONS(1139), + [anon_sym_extern] = ACTIONS(1139), + [anon_sym___attribute__] = ACTIONS(1139), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1141), + [anon_sym___declspec] = ACTIONS(1139), + [anon_sym___cdecl] = ACTIONS(1139), + [anon_sym___clrcall] = ACTIONS(1139), + [anon_sym___stdcall] = ACTIONS(1139), + [anon_sym___fastcall] = ACTIONS(1139), + [anon_sym___thiscall] = ACTIONS(1139), + [anon_sym___vectorcall] = ACTIONS(1139), + [anon_sym_LBRACE] = ACTIONS(1141), + [anon_sym_RBRACE] = ACTIONS(1141), + [anon_sym_signed] = ACTIONS(1139), + [anon_sym_unsigned] = ACTIONS(1139), + [anon_sym_long] = ACTIONS(1139), + [anon_sym_short] = ACTIONS(1139), + [anon_sym_static] = ACTIONS(1139), + [anon_sym_auto] = ACTIONS(1139), + [anon_sym_register] = ACTIONS(1139), + [anon_sym_inline] = ACTIONS(1139), + [anon_sym___inline] = ACTIONS(1139), + [anon_sym___inline__] = ACTIONS(1139), + [anon_sym___forceinline] = ACTIONS(1139), + [anon_sym_thread_local] = ACTIONS(1139), + [anon_sym___thread] = ACTIONS(1139), + [anon_sym_const] = ACTIONS(1139), + [anon_sym_constexpr] = ACTIONS(1139), + [anon_sym_volatile] = ACTIONS(1139), + [anon_sym_restrict] = ACTIONS(1139), + [anon_sym___restrict__] = ACTIONS(1139), + [anon_sym__Atomic] = ACTIONS(1139), + [anon_sym__Noreturn] = ACTIONS(1139), + [anon_sym_noreturn] = ACTIONS(1139), + [anon_sym_alignas] = ACTIONS(1139), + [anon_sym__Alignas] = ACTIONS(1139), + [sym_primitive_type] = ACTIONS(1139), + [anon_sym_enum] = ACTIONS(1139), + [anon_sym_struct] = ACTIONS(1139), + [anon_sym_union] = ACTIONS(1139), + [anon_sym_if] = ACTIONS(1139), + [anon_sym_else] = ACTIONS(1139), + [anon_sym_switch] = ACTIONS(1139), + [anon_sym_case] = ACTIONS(1139), + [anon_sym_default] = ACTIONS(1139), + [anon_sym_while] = ACTIONS(1139), + [anon_sym_do] = ACTIONS(1139), + [anon_sym_for] = ACTIONS(1139), + [anon_sym_return] = ACTIONS(1139), + [anon_sym_break] = ACTIONS(1139), + [anon_sym_continue] = ACTIONS(1139), + [anon_sym_goto] = ACTIONS(1139), + [anon_sym___try] = ACTIONS(1139), + [anon_sym___leave] = ACTIONS(1139), + [anon_sym_DASH_DASH] = ACTIONS(1141), + [anon_sym_PLUS_PLUS] = ACTIONS(1141), + [anon_sym_sizeof] = ACTIONS(1139), + [anon_sym___alignof__] = ACTIONS(1139), + [anon_sym___alignof] = ACTIONS(1139), + [anon_sym__alignof] = ACTIONS(1139), + [anon_sym_alignof] = ACTIONS(1139), + [anon_sym__Alignof] = ACTIONS(1139), + [anon_sym_offsetof] = ACTIONS(1139), + [anon_sym__Generic] = ACTIONS(1139), + [anon_sym_asm] = ACTIONS(1139), + [anon_sym___asm__] = ACTIONS(1139), + [sym_number_literal] = ACTIONS(1141), + [anon_sym_L_SQUOTE] = ACTIONS(1141), + [anon_sym_u_SQUOTE] = ACTIONS(1141), + [anon_sym_U_SQUOTE] = ACTIONS(1141), + [anon_sym_u8_SQUOTE] = ACTIONS(1141), + [anon_sym_SQUOTE] = ACTIONS(1141), + [anon_sym_L_DQUOTE] = ACTIONS(1141), + [anon_sym_u_DQUOTE] = ACTIONS(1141), + [anon_sym_U_DQUOTE] = ACTIONS(1141), + [anon_sym_u8_DQUOTE] = ACTIONS(1141), + [anon_sym_DQUOTE] = ACTIONS(1141), + [sym_true] = ACTIONS(1139), + [sym_false] = ACTIONS(1139), + [anon_sym_NULL] = ACTIONS(1139), + [anon_sym_nullptr] = ACTIONS(1139), [sym_comment] = ACTIONS(3), }, - [198] = { - [ts_builtin_sym_end] = ACTIONS(1161), - [sym_identifier] = ACTIONS(1159), - [aux_sym_preproc_include_token1] = ACTIONS(1159), - [aux_sym_preproc_def_token1] = ACTIONS(1159), - [aux_sym_preproc_if_token1] = ACTIONS(1159), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1159), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1159), - [sym_preproc_directive] = ACTIONS(1159), - [anon_sym_LPAREN2] = ACTIONS(1161), - [anon_sym_BANG] = ACTIONS(1161), - [anon_sym_TILDE] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1159), - [anon_sym_PLUS] = ACTIONS(1159), - [anon_sym_STAR] = ACTIONS(1161), - [anon_sym_AMP] = ACTIONS(1161), - [anon_sym_SEMI] = ACTIONS(1161), - [anon_sym___extension__] = ACTIONS(1159), - [anon_sym_typedef] = ACTIONS(1159), - [anon_sym_extern] = ACTIONS(1159), - [anon_sym___attribute__] = ACTIONS(1159), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1161), - [anon_sym___declspec] = ACTIONS(1159), - [anon_sym___cdecl] = ACTIONS(1159), - [anon_sym___clrcall] = ACTIONS(1159), - [anon_sym___stdcall] = ACTIONS(1159), - [anon_sym___fastcall] = ACTIONS(1159), - [anon_sym___thiscall] = ACTIONS(1159), - [anon_sym___vectorcall] = ACTIONS(1159), - [anon_sym_LBRACE] = ACTIONS(1161), - [anon_sym_signed] = ACTIONS(1159), - [anon_sym_unsigned] = ACTIONS(1159), - [anon_sym_long] = ACTIONS(1159), - [anon_sym_short] = ACTIONS(1159), - [anon_sym_static] = ACTIONS(1159), - [anon_sym_auto] = ACTIONS(1159), - [anon_sym_register] = ACTIONS(1159), - [anon_sym_inline] = ACTIONS(1159), - [anon_sym___inline] = ACTIONS(1159), - [anon_sym___inline__] = ACTIONS(1159), - [anon_sym___forceinline] = ACTIONS(1159), - [anon_sym_thread_local] = ACTIONS(1159), - [anon_sym___thread] = ACTIONS(1159), - [anon_sym_const] = ACTIONS(1159), - [anon_sym_constexpr] = ACTIONS(1159), - [anon_sym_volatile] = ACTIONS(1159), - [anon_sym_restrict] = ACTIONS(1159), - [anon_sym___restrict__] = ACTIONS(1159), - [anon_sym__Atomic] = ACTIONS(1159), - [anon_sym__Noreturn] = ACTIONS(1159), - [anon_sym_noreturn] = ACTIONS(1159), - [anon_sym_alignas] = ACTIONS(1159), - [anon_sym__Alignas] = ACTIONS(1159), - [sym_primitive_type] = ACTIONS(1159), - [anon_sym_enum] = ACTIONS(1159), - [anon_sym_struct] = ACTIONS(1159), - [anon_sym_union] = ACTIONS(1159), - [anon_sym_if] = ACTIONS(1159), - [anon_sym_else] = ACTIONS(1159), - [anon_sym_switch] = ACTIONS(1159), - [anon_sym_case] = ACTIONS(1159), - [anon_sym_default] = ACTIONS(1159), - [anon_sym_while] = ACTIONS(1159), - [anon_sym_do] = ACTIONS(1159), - [anon_sym_for] = ACTIONS(1159), - [anon_sym_return] = ACTIONS(1159), - [anon_sym_break] = ACTIONS(1159), - [anon_sym_continue] = ACTIONS(1159), - [anon_sym_goto] = ACTIONS(1159), - [anon_sym___try] = ACTIONS(1159), - [anon_sym___leave] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1161), - [anon_sym_PLUS_PLUS] = ACTIONS(1161), - [anon_sym_sizeof] = ACTIONS(1159), - [anon_sym___alignof__] = ACTIONS(1159), - [anon_sym___alignof] = ACTIONS(1159), - [anon_sym__alignof] = ACTIONS(1159), - [anon_sym_alignof] = ACTIONS(1159), - [anon_sym__Alignof] = ACTIONS(1159), - [anon_sym_offsetof] = ACTIONS(1159), - [anon_sym__Generic] = ACTIONS(1159), - [anon_sym_asm] = ACTIONS(1159), - [anon_sym___asm__] = ACTIONS(1159), - [sym_number_literal] = ACTIONS(1161), - [anon_sym_L_SQUOTE] = ACTIONS(1161), - [anon_sym_u_SQUOTE] = ACTIONS(1161), - [anon_sym_U_SQUOTE] = ACTIONS(1161), - [anon_sym_u8_SQUOTE] = ACTIONS(1161), - [anon_sym_SQUOTE] = ACTIONS(1161), - [anon_sym_L_DQUOTE] = ACTIONS(1161), - [anon_sym_u_DQUOTE] = ACTIONS(1161), - [anon_sym_U_DQUOTE] = ACTIONS(1161), - [anon_sym_u8_DQUOTE] = ACTIONS(1161), - [anon_sym_DQUOTE] = ACTIONS(1161), - [sym_true] = ACTIONS(1159), - [sym_false] = ACTIONS(1159), - [anon_sym_NULL] = ACTIONS(1159), - [anon_sym_nullptr] = ACTIONS(1159), - [sym_comment] = ACTIONS(3), - }, - [199] = { - [ts_builtin_sym_end] = ACTIONS(1157), - [sym_identifier] = ACTIONS(1155), - [aux_sym_preproc_include_token1] = ACTIONS(1155), - [aux_sym_preproc_def_token1] = ACTIONS(1155), - [aux_sym_preproc_if_token1] = ACTIONS(1155), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1155), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1155), - [sym_preproc_directive] = ACTIONS(1155), - [anon_sym_LPAREN2] = ACTIONS(1157), - [anon_sym_BANG] = ACTIONS(1157), - [anon_sym_TILDE] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(1155), - [anon_sym_STAR] = ACTIONS(1157), - [anon_sym_AMP] = ACTIONS(1157), - [anon_sym_SEMI] = ACTIONS(1157), - [anon_sym___extension__] = ACTIONS(1155), - [anon_sym_typedef] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1155), - [anon_sym___attribute__] = ACTIONS(1155), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1157), - [anon_sym___declspec] = ACTIONS(1155), - [anon_sym___cdecl] = ACTIONS(1155), - [anon_sym___clrcall] = ACTIONS(1155), - [anon_sym___stdcall] = ACTIONS(1155), - [anon_sym___fastcall] = ACTIONS(1155), - [anon_sym___thiscall] = ACTIONS(1155), - [anon_sym___vectorcall] = ACTIONS(1155), - [anon_sym_LBRACE] = ACTIONS(1157), - [anon_sym_signed] = ACTIONS(1155), - [anon_sym_unsigned] = ACTIONS(1155), - [anon_sym_long] = ACTIONS(1155), - [anon_sym_short] = ACTIONS(1155), - [anon_sym_static] = ACTIONS(1155), - [anon_sym_auto] = ACTIONS(1155), - [anon_sym_register] = ACTIONS(1155), - [anon_sym_inline] = ACTIONS(1155), - [anon_sym___inline] = ACTIONS(1155), - [anon_sym___inline__] = ACTIONS(1155), - [anon_sym___forceinline] = ACTIONS(1155), - [anon_sym_thread_local] = ACTIONS(1155), - [anon_sym___thread] = ACTIONS(1155), - [anon_sym_const] = ACTIONS(1155), - [anon_sym_constexpr] = ACTIONS(1155), - [anon_sym_volatile] = ACTIONS(1155), - [anon_sym_restrict] = ACTIONS(1155), - [anon_sym___restrict__] = ACTIONS(1155), - [anon_sym__Atomic] = ACTIONS(1155), - [anon_sym__Noreturn] = ACTIONS(1155), - [anon_sym_noreturn] = ACTIONS(1155), - [anon_sym_alignas] = ACTIONS(1155), - [anon_sym__Alignas] = ACTIONS(1155), - [sym_primitive_type] = ACTIONS(1155), - [anon_sym_enum] = ACTIONS(1155), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1155), - [anon_sym_if] = ACTIONS(1155), - [anon_sym_else] = ACTIONS(1155), - [anon_sym_switch] = ACTIONS(1155), - [anon_sym_case] = ACTIONS(1155), - [anon_sym_default] = ACTIONS(1155), - [anon_sym_while] = ACTIONS(1155), - [anon_sym_do] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1155), - [anon_sym_return] = ACTIONS(1155), - [anon_sym_break] = ACTIONS(1155), - [anon_sym_continue] = ACTIONS(1155), - [anon_sym_goto] = ACTIONS(1155), - [anon_sym___try] = ACTIONS(1155), - [anon_sym___leave] = ACTIONS(1155), - [anon_sym_DASH_DASH] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1157), - [anon_sym_sizeof] = ACTIONS(1155), - [anon_sym___alignof__] = ACTIONS(1155), - [anon_sym___alignof] = ACTIONS(1155), - [anon_sym__alignof] = ACTIONS(1155), - [anon_sym_alignof] = ACTIONS(1155), - [anon_sym__Alignof] = ACTIONS(1155), - [anon_sym_offsetof] = ACTIONS(1155), - [anon_sym__Generic] = ACTIONS(1155), - [anon_sym_asm] = ACTIONS(1155), - [anon_sym___asm__] = ACTIONS(1155), - [sym_number_literal] = ACTIONS(1157), - [anon_sym_L_SQUOTE] = ACTIONS(1157), - [anon_sym_u_SQUOTE] = ACTIONS(1157), - [anon_sym_U_SQUOTE] = ACTIONS(1157), - [anon_sym_u8_SQUOTE] = ACTIONS(1157), - [anon_sym_SQUOTE] = ACTIONS(1157), - [anon_sym_L_DQUOTE] = ACTIONS(1157), - [anon_sym_u_DQUOTE] = ACTIONS(1157), - [anon_sym_U_DQUOTE] = ACTIONS(1157), - [anon_sym_u8_DQUOTE] = ACTIONS(1157), - [anon_sym_DQUOTE] = ACTIONS(1157), - [sym_true] = ACTIONS(1155), - [sym_false] = ACTIONS(1155), - [anon_sym_NULL] = ACTIONS(1155), - [anon_sym_nullptr] = ACTIONS(1155), - [sym_comment] = ACTIONS(3), - }, - [200] = { - [sym_identifier] = ACTIONS(1151), - [aux_sym_preproc_include_token1] = ACTIONS(1151), - [aux_sym_preproc_def_token1] = ACTIONS(1151), - [aux_sym_preproc_if_token1] = ACTIONS(1151), - [aux_sym_preproc_if_token2] = ACTIONS(1151), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1151), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1151), - [sym_preproc_directive] = ACTIONS(1151), - [anon_sym_LPAREN2] = ACTIONS(1153), - [anon_sym_BANG] = ACTIONS(1153), - [anon_sym_TILDE] = ACTIONS(1153), - [anon_sym_DASH] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1151), - [anon_sym_STAR] = ACTIONS(1153), - [anon_sym_AMP] = ACTIONS(1153), - [anon_sym_SEMI] = ACTIONS(1153), - [anon_sym___extension__] = ACTIONS(1151), - [anon_sym_typedef] = ACTIONS(1151), - [anon_sym_extern] = ACTIONS(1151), - [anon_sym___attribute__] = ACTIONS(1151), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1153), - [anon_sym___declspec] = ACTIONS(1151), - [anon_sym___cdecl] = ACTIONS(1151), - [anon_sym___clrcall] = ACTIONS(1151), - [anon_sym___stdcall] = ACTIONS(1151), - [anon_sym___fastcall] = ACTIONS(1151), - [anon_sym___thiscall] = ACTIONS(1151), - [anon_sym___vectorcall] = ACTIONS(1151), - [anon_sym_LBRACE] = ACTIONS(1153), - [anon_sym_signed] = ACTIONS(1151), - [anon_sym_unsigned] = ACTIONS(1151), - [anon_sym_long] = ACTIONS(1151), - [anon_sym_short] = ACTIONS(1151), - [anon_sym_static] = ACTIONS(1151), - [anon_sym_auto] = ACTIONS(1151), - [anon_sym_register] = ACTIONS(1151), - [anon_sym_inline] = ACTIONS(1151), - [anon_sym___inline] = ACTIONS(1151), - [anon_sym___inline__] = ACTIONS(1151), - [anon_sym___forceinline] = ACTIONS(1151), - [anon_sym_thread_local] = ACTIONS(1151), - [anon_sym___thread] = ACTIONS(1151), - [anon_sym_const] = ACTIONS(1151), - [anon_sym_constexpr] = ACTIONS(1151), - [anon_sym_volatile] = ACTIONS(1151), - [anon_sym_restrict] = ACTIONS(1151), - [anon_sym___restrict__] = ACTIONS(1151), - [anon_sym__Atomic] = ACTIONS(1151), - [anon_sym__Noreturn] = ACTIONS(1151), - [anon_sym_noreturn] = ACTIONS(1151), - [anon_sym_alignas] = ACTIONS(1151), - [anon_sym__Alignas] = ACTIONS(1151), - [sym_primitive_type] = ACTIONS(1151), - [anon_sym_enum] = ACTIONS(1151), - [anon_sym_struct] = ACTIONS(1151), - [anon_sym_union] = ACTIONS(1151), - [anon_sym_if] = ACTIONS(1151), - [anon_sym_else] = ACTIONS(1151), - [anon_sym_switch] = ACTIONS(1151), - [anon_sym_case] = ACTIONS(1151), - [anon_sym_default] = ACTIONS(1151), - [anon_sym_while] = ACTIONS(1151), - [anon_sym_do] = ACTIONS(1151), - [anon_sym_for] = ACTIONS(1151), - [anon_sym_return] = ACTIONS(1151), - [anon_sym_break] = ACTIONS(1151), - [anon_sym_continue] = ACTIONS(1151), - [anon_sym_goto] = ACTIONS(1151), - [anon_sym___try] = ACTIONS(1151), - [anon_sym___leave] = ACTIONS(1151), - [anon_sym_DASH_DASH] = ACTIONS(1153), - [anon_sym_PLUS_PLUS] = ACTIONS(1153), - [anon_sym_sizeof] = ACTIONS(1151), - [anon_sym___alignof__] = ACTIONS(1151), - [anon_sym___alignof] = ACTIONS(1151), - [anon_sym__alignof] = ACTIONS(1151), - [anon_sym_alignof] = ACTIONS(1151), - [anon_sym__Alignof] = ACTIONS(1151), - [anon_sym_offsetof] = ACTIONS(1151), - [anon_sym__Generic] = ACTIONS(1151), - [anon_sym_asm] = ACTIONS(1151), - [anon_sym___asm__] = ACTIONS(1151), - [sym_number_literal] = ACTIONS(1153), - [anon_sym_L_SQUOTE] = ACTIONS(1153), - [anon_sym_u_SQUOTE] = ACTIONS(1153), - [anon_sym_U_SQUOTE] = ACTIONS(1153), - [anon_sym_u8_SQUOTE] = ACTIONS(1153), - [anon_sym_SQUOTE] = ACTIONS(1153), - [anon_sym_L_DQUOTE] = ACTIONS(1153), - [anon_sym_u_DQUOTE] = ACTIONS(1153), - [anon_sym_U_DQUOTE] = ACTIONS(1153), - [anon_sym_u8_DQUOTE] = ACTIONS(1153), - [anon_sym_DQUOTE] = ACTIONS(1153), - [sym_true] = ACTIONS(1151), - [sym_false] = ACTIONS(1151), - [anon_sym_NULL] = ACTIONS(1151), - [anon_sym_nullptr] = ACTIONS(1151), - [sym_comment] = ACTIONS(3), - }, - [201] = { - [ts_builtin_sym_end] = ACTIONS(1141), - [sym_identifier] = ACTIONS(1139), - [aux_sym_preproc_include_token1] = ACTIONS(1139), - [aux_sym_preproc_def_token1] = ACTIONS(1139), - [aux_sym_preproc_if_token1] = ACTIONS(1139), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1139), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1139), - [sym_preproc_directive] = ACTIONS(1139), - [anon_sym_LPAREN2] = ACTIONS(1141), - [anon_sym_BANG] = ACTIONS(1141), - [anon_sym_TILDE] = ACTIONS(1141), - [anon_sym_DASH] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(1139), - [anon_sym_STAR] = ACTIONS(1141), - [anon_sym_AMP] = ACTIONS(1141), - [anon_sym_SEMI] = ACTIONS(1141), - [anon_sym___extension__] = ACTIONS(1139), - [anon_sym_typedef] = ACTIONS(1139), - [anon_sym_extern] = ACTIONS(1139), - [anon_sym___attribute__] = ACTIONS(1139), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1141), - [anon_sym___declspec] = ACTIONS(1139), - [anon_sym___cdecl] = ACTIONS(1139), - [anon_sym___clrcall] = ACTIONS(1139), - [anon_sym___stdcall] = ACTIONS(1139), - [anon_sym___fastcall] = ACTIONS(1139), - [anon_sym___thiscall] = ACTIONS(1139), - [anon_sym___vectorcall] = ACTIONS(1139), - [anon_sym_LBRACE] = ACTIONS(1141), - [anon_sym_signed] = ACTIONS(1139), - [anon_sym_unsigned] = ACTIONS(1139), - [anon_sym_long] = ACTIONS(1139), - [anon_sym_short] = ACTIONS(1139), - [anon_sym_static] = ACTIONS(1139), - [anon_sym_auto] = ACTIONS(1139), - [anon_sym_register] = ACTIONS(1139), - [anon_sym_inline] = ACTIONS(1139), - [anon_sym___inline] = ACTIONS(1139), - [anon_sym___inline__] = ACTIONS(1139), - [anon_sym___forceinline] = ACTIONS(1139), - [anon_sym_thread_local] = ACTIONS(1139), - [anon_sym___thread] = ACTIONS(1139), - [anon_sym_const] = ACTIONS(1139), - [anon_sym_constexpr] = ACTIONS(1139), - [anon_sym_volatile] = ACTIONS(1139), - [anon_sym_restrict] = ACTIONS(1139), - [anon_sym___restrict__] = ACTIONS(1139), - [anon_sym__Atomic] = ACTIONS(1139), - [anon_sym__Noreturn] = ACTIONS(1139), - [anon_sym_noreturn] = ACTIONS(1139), - [anon_sym_alignas] = ACTIONS(1139), - [anon_sym__Alignas] = ACTIONS(1139), - [sym_primitive_type] = ACTIONS(1139), - [anon_sym_enum] = ACTIONS(1139), - [anon_sym_struct] = ACTIONS(1139), - [anon_sym_union] = ACTIONS(1139), - [anon_sym_if] = ACTIONS(1139), - [anon_sym_else] = ACTIONS(1139), - [anon_sym_switch] = ACTIONS(1139), - [anon_sym_case] = ACTIONS(1139), - [anon_sym_default] = ACTIONS(1139), - [anon_sym_while] = ACTIONS(1139), - [anon_sym_do] = ACTIONS(1139), - [anon_sym_for] = ACTIONS(1139), - [anon_sym_return] = ACTIONS(1139), - [anon_sym_break] = ACTIONS(1139), - [anon_sym_continue] = ACTIONS(1139), - [anon_sym_goto] = ACTIONS(1139), - [anon_sym___try] = ACTIONS(1139), - [anon_sym___leave] = ACTIONS(1139), - [anon_sym_DASH_DASH] = ACTIONS(1141), - [anon_sym_PLUS_PLUS] = ACTIONS(1141), - [anon_sym_sizeof] = ACTIONS(1139), - [anon_sym___alignof__] = ACTIONS(1139), - [anon_sym___alignof] = ACTIONS(1139), - [anon_sym__alignof] = ACTIONS(1139), - [anon_sym_alignof] = ACTIONS(1139), - [anon_sym__Alignof] = ACTIONS(1139), - [anon_sym_offsetof] = ACTIONS(1139), - [anon_sym__Generic] = ACTIONS(1139), - [anon_sym_asm] = ACTIONS(1139), - [anon_sym___asm__] = ACTIONS(1139), - [sym_number_literal] = ACTIONS(1141), - [anon_sym_L_SQUOTE] = ACTIONS(1141), - [anon_sym_u_SQUOTE] = ACTIONS(1141), - [anon_sym_U_SQUOTE] = ACTIONS(1141), - [anon_sym_u8_SQUOTE] = ACTIONS(1141), - [anon_sym_SQUOTE] = ACTIONS(1141), - [anon_sym_L_DQUOTE] = ACTIONS(1141), - [anon_sym_u_DQUOTE] = ACTIONS(1141), - [anon_sym_U_DQUOTE] = ACTIONS(1141), - [anon_sym_u8_DQUOTE] = ACTIONS(1141), - [anon_sym_DQUOTE] = ACTIONS(1141), - [sym_true] = ACTIONS(1139), - [sym_false] = ACTIONS(1139), - [anon_sym_NULL] = ACTIONS(1139), - [anon_sym_nullptr] = ACTIONS(1139), - [sym_comment] = ACTIONS(3), - }, - [202] = { - [ts_builtin_sym_end] = ACTIONS(1125), - [sym_identifier] = ACTIONS(1123), - [aux_sym_preproc_include_token1] = ACTIONS(1123), - [aux_sym_preproc_def_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), - [sym_preproc_directive] = ACTIONS(1123), - [anon_sym_LPAREN2] = ACTIONS(1125), - [anon_sym_BANG] = ACTIONS(1125), - [anon_sym_TILDE] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym___extension__] = ACTIONS(1123), - [anon_sym_typedef] = ACTIONS(1123), - [anon_sym_extern] = ACTIONS(1123), - [anon_sym___attribute__] = ACTIONS(1123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), - [anon_sym___declspec] = ACTIONS(1123), - [anon_sym___cdecl] = ACTIONS(1123), - [anon_sym___clrcall] = ACTIONS(1123), - [anon_sym___stdcall] = ACTIONS(1123), - [anon_sym___fastcall] = ACTIONS(1123), - [anon_sym___thiscall] = ACTIONS(1123), - [anon_sym___vectorcall] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_signed] = ACTIONS(1123), - [anon_sym_unsigned] = ACTIONS(1123), - [anon_sym_long] = ACTIONS(1123), - [anon_sym_short] = ACTIONS(1123), - [anon_sym_static] = ACTIONS(1123), - [anon_sym_auto] = ACTIONS(1123), - [anon_sym_register] = ACTIONS(1123), - [anon_sym_inline] = ACTIONS(1123), - [anon_sym___inline] = ACTIONS(1123), - [anon_sym___inline__] = ACTIONS(1123), - [anon_sym___forceinline] = ACTIONS(1123), - [anon_sym_thread_local] = ACTIONS(1123), - [anon_sym___thread] = ACTIONS(1123), - [anon_sym_const] = ACTIONS(1123), - [anon_sym_constexpr] = ACTIONS(1123), - [anon_sym_volatile] = ACTIONS(1123), - [anon_sym_restrict] = ACTIONS(1123), - [anon_sym___restrict__] = ACTIONS(1123), - [anon_sym__Atomic] = ACTIONS(1123), - [anon_sym__Noreturn] = ACTIONS(1123), - [anon_sym_noreturn] = ACTIONS(1123), - [anon_sym_alignas] = ACTIONS(1123), - [anon_sym__Alignas] = ACTIONS(1123), - [sym_primitive_type] = ACTIONS(1123), - [anon_sym_enum] = ACTIONS(1123), - [anon_sym_struct] = ACTIONS(1123), - [anon_sym_union] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1123), - [anon_sym_else] = ACTIONS(1123), - [anon_sym_switch] = ACTIONS(1123), - [anon_sym_case] = ACTIONS(1123), - [anon_sym_default] = ACTIONS(1123), - [anon_sym_while] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(1123), - [anon_sym_for] = ACTIONS(1123), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_break] = ACTIONS(1123), - [anon_sym_continue] = ACTIONS(1123), - [anon_sym_goto] = ACTIONS(1123), - [anon_sym___try] = ACTIONS(1123), - [anon_sym___leave] = ACTIONS(1123), - [anon_sym_DASH_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1125), - [anon_sym_sizeof] = ACTIONS(1123), - [anon_sym___alignof__] = ACTIONS(1123), - [anon_sym___alignof] = ACTIONS(1123), - [anon_sym__alignof] = ACTIONS(1123), - [anon_sym_alignof] = ACTIONS(1123), - [anon_sym__Alignof] = ACTIONS(1123), - [anon_sym_offsetof] = ACTIONS(1123), - [anon_sym__Generic] = ACTIONS(1123), - [anon_sym_asm] = ACTIONS(1123), - [anon_sym___asm__] = ACTIONS(1123), - [sym_number_literal] = ACTIONS(1125), - [anon_sym_L_SQUOTE] = ACTIONS(1125), - [anon_sym_u_SQUOTE] = ACTIONS(1125), - [anon_sym_U_SQUOTE] = ACTIONS(1125), - [anon_sym_u8_SQUOTE] = ACTIONS(1125), - [anon_sym_SQUOTE] = ACTIONS(1125), - [anon_sym_L_DQUOTE] = ACTIONS(1125), - [anon_sym_u_DQUOTE] = ACTIONS(1125), - [anon_sym_U_DQUOTE] = ACTIONS(1125), - [anon_sym_u8_DQUOTE] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(1125), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [anon_sym_NULL] = ACTIONS(1123), - [anon_sym_nullptr] = ACTIONS(1123), - [sym_comment] = ACTIONS(3), - }, - [203] = { + [177] = { [sym_identifier] = ACTIONS(1243), [aux_sym_preproc_include_token1] = ACTIONS(1243), [aux_sym_preproc_def_token1] = ACTIONS(1243), [aux_sym_preproc_if_token1] = ACTIONS(1243), - [aux_sym_preproc_if_token2] = ACTIONS(1243), [aux_sym_preproc_ifdef_token1] = ACTIONS(1243), [aux_sym_preproc_ifdef_token2] = ACTIONS(1243), [sym_preproc_directive] = ACTIONS(1243), @@ -36907,6 +34189,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1243), [anon_sym___vectorcall] = ACTIONS(1243), [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_RBRACE] = ACTIONS(1245), [anon_sym_signed] = ACTIONS(1243), [anon_sym_unsigned] = ACTIONS(1243), [anon_sym_long] = ACTIONS(1243), @@ -36977,1307 +34260,707 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1243), [sym_comment] = ACTIONS(3), }, - [204] = { - [sym_identifier] = ACTIONS(1243), - [aux_sym_preproc_include_token1] = ACTIONS(1243), - [aux_sym_preproc_def_token1] = ACTIONS(1243), - [aux_sym_preproc_if_token1] = ACTIONS(1243), - [aux_sym_preproc_if_token2] = ACTIONS(1243), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1243), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1243), - [sym_preproc_directive] = ACTIONS(1243), - [anon_sym_LPAREN2] = ACTIONS(1245), - [anon_sym_BANG] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1243), - [anon_sym_PLUS] = ACTIONS(1243), - [anon_sym_STAR] = ACTIONS(1245), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_SEMI] = ACTIONS(1245), - [anon_sym___extension__] = ACTIONS(1243), - [anon_sym_typedef] = ACTIONS(1243), - [anon_sym_extern] = ACTIONS(1243), - [anon_sym___attribute__] = ACTIONS(1243), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1245), - [anon_sym___declspec] = ACTIONS(1243), - [anon_sym___cdecl] = ACTIONS(1243), - [anon_sym___clrcall] = ACTIONS(1243), - [anon_sym___stdcall] = ACTIONS(1243), - [anon_sym___fastcall] = ACTIONS(1243), - [anon_sym___thiscall] = ACTIONS(1243), - [anon_sym___vectorcall] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_signed] = ACTIONS(1243), - [anon_sym_unsigned] = ACTIONS(1243), - [anon_sym_long] = ACTIONS(1243), - [anon_sym_short] = ACTIONS(1243), - [anon_sym_static] = ACTIONS(1243), - [anon_sym_auto] = ACTIONS(1243), - [anon_sym_register] = ACTIONS(1243), - [anon_sym_inline] = ACTIONS(1243), - [anon_sym___inline] = ACTIONS(1243), - [anon_sym___inline__] = ACTIONS(1243), - [anon_sym___forceinline] = ACTIONS(1243), - [anon_sym_thread_local] = ACTIONS(1243), - [anon_sym___thread] = ACTIONS(1243), - [anon_sym_const] = ACTIONS(1243), - [anon_sym_constexpr] = ACTIONS(1243), - [anon_sym_volatile] = ACTIONS(1243), - [anon_sym_restrict] = ACTIONS(1243), - [anon_sym___restrict__] = ACTIONS(1243), - [anon_sym__Atomic] = ACTIONS(1243), - [anon_sym__Noreturn] = ACTIONS(1243), - [anon_sym_noreturn] = ACTIONS(1243), - [anon_sym_alignas] = ACTIONS(1243), - [anon_sym__Alignas] = ACTIONS(1243), - [sym_primitive_type] = ACTIONS(1243), - [anon_sym_enum] = ACTIONS(1243), - [anon_sym_struct] = ACTIONS(1243), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1243), - [anon_sym_else] = ACTIONS(1243), - [anon_sym_switch] = ACTIONS(1243), - [anon_sym_case] = ACTIONS(1243), - [anon_sym_default] = ACTIONS(1243), - [anon_sym_while] = ACTIONS(1243), - [anon_sym_do] = ACTIONS(1243), - [anon_sym_for] = ACTIONS(1243), - [anon_sym_return] = ACTIONS(1243), - [anon_sym_break] = ACTIONS(1243), - [anon_sym_continue] = ACTIONS(1243), - [anon_sym_goto] = ACTIONS(1243), - [anon_sym___try] = ACTIONS(1243), - [anon_sym___leave] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1245), - [anon_sym_sizeof] = ACTIONS(1243), - [anon_sym___alignof__] = ACTIONS(1243), - [anon_sym___alignof] = ACTIONS(1243), - [anon_sym__alignof] = ACTIONS(1243), - [anon_sym_alignof] = ACTIONS(1243), - [anon_sym__Alignof] = ACTIONS(1243), - [anon_sym_offsetof] = ACTIONS(1243), - [anon_sym__Generic] = ACTIONS(1243), - [anon_sym_asm] = ACTIONS(1243), - [anon_sym___asm__] = ACTIONS(1243), - [sym_number_literal] = ACTIONS(1245), - [anon_sym_L_SQUOTE] = ACTIONS(1245), - [anon_sym_u_SQUOTE] = ACTIONS(1245), - [anon_sym_U_SQUOTE] = ACTIONS(1245), - [anon_sym_u8_SQUOTE] = ACTIONS(1245), - [anon_sym_SQUOTE] = ACTIONS(1245), - [anon_sym_L_DQUOTE] = ACTIONS(1245), - [anon_sym_u_DQUOTE] = ACTIONS(1245), - [anon_sym_U_DQUOTE] = ACTIONS(1245), - [anon_sym_u8_DQUOTE] = ACTIONS(1245), - [anon_sym_DQUOTE] = ACTIONS(1245), - [sym_true] = ACTIONS(1243), - [sym_false] = ACTIONS(1243), - [anon_sym_NULL] = ACTIONS(1243), - [anon_sym_nullptr] = ACTIONS(1243), - [sym_comment] = ACTIONS(3), - }, - [205] = { - [sym_identifier] = ACTIONS(1239), - [aux_sym_preproc_include_token1] = ACTIONS(1239), - [aux_sym_preproc_def_token1] = ACTIONS(1239), - [aux_sym_preproc_if_token1] = ACTIONS(1239), - [aux_sym_preproc_if_token2] = ACTIONS(1239), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1239), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1239), - [sym_preproc_directive] = ACTIONS(1239), - [anon_sym_LPAREN2] = ACTIONS(1241), - [anon_sym_BANG] = ACTIONS(1241), - [anon_sym_TILDE] = ACTIONS(1241), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1241), - [anon_sym_SEMI] = ACTIONS(1241), - [anon_sym___extension__] = ACTIONS(1239), - [anon_sym_typedef] = ACTIONS(1239), - [anon_sym_extern] = ACTIONS(1239), - [anon_sym___attribute__] = ACTIONS(1239), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1241), - [anon_sym___declspec] = ACTIONS(1239), - [anon_sym___cdecl] = ACTIONS(1239), - [anon_sym___clrcall] = ACTIONS(1239), - [anon_sym___stdcall] = ACTIONS(1239), - [anon_sym___fastcall] = ACTIONS(1239), - [anon_sym___thiscall] = ACTIONS(1239), - [anon_sym___vectorcall] = ACTIONS(1239), - [anon_sym_LBRACE] = ACTIONS(1241), - [anon_sym_signed] = ACTIONS(1239), - [anon_sym_unsigned] = ACTIONS(1239), - [anon_sym_long] = ACTIONS(1239), - [anon_sym_short] = ACTIONS(1239), - [anon_sym_static] = ACTIONS(1239), - [anon_sym_auto] = ACTIONS(1239), - [anon_sym_register] = ACTIONS(1239), - [anon_sym_inline] = ACTIONS(1239), - [anon_sym___inline] = ACTIONS(1239), - [anon_sym___inline__] = ACTIONS(1239), - [anon_sym___forceinline] = ACTIONS(1239), - [anon_sym_thread_local] = ACTIONS(1239), - [anon_sym___thread] = ACTIONS(1239), - [anon_sym_const] = ACTIONS(1239), - [anon_sym_constexpr] = ACTIONS(1239), - [anon_sym_volatile] = ACTIONS(1239), - [anon_sym_restrict] = ACTIONS(1239), - [anon_sym___restrict__] = ACTIONS(1239), - [anon_sym__Atomic] = ACTIONS(1239), - [anon_sym__Noreturn] = ACTIONS(1239), - [anon_sym_noreturn] = ACTIONS(1239), - [anon_sym_alignas] = ACTIONS(1239), - [anon_sym__Alignas] = 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___try] = ACTIONS(1239), - [anon_sym___leave] = ACTIONS(1239), - [anon_sym_DASH_DASH] = ACTIONS(1241), - [anon_sym_PLUS_PLUS] = ACTIONS(1241), - [anon_sym_sizeof] = ACTIONS(1239), - [anon_sym___alignof__] = ACTIONS(1239), - [anon_sym___alignof] = ACTIONS(1239), - [anon_sym__alignof] = ACTIONS(1239), - [anon_sym_alignof] = ACTIONS(1239), - [anon_sym__Alignof] = ACTIONS(1239), - [anon_sym_offsetof] = ACTIONS(1239), - [anon_sym__Generic] = ACTIONS(1239), - [anon_sym_asm] = ACTIONS(1239), - [anon_sym___asm__] = ACTIONS(1239), - [sym_number_literal] = ACTIONS(1241), - [anon_sym_L_SQUOTE] = ACTIONS(1241), - [anon_sym_u_SQUOTE] = ACTIONS(1241), - [anon_sym_U_SQUOTE] = ACTIONS(1241), - [anon_sym_u8_SQUOTE] = ACTIONS(1241), - [anon_sym_SQUOTE] = ACTIONS(1241), - [anon_sym_L_DQUOTE] = ACTIONS(1241), - [anon_sym_u_DQUOTE] = ACTIONS(1241), - [anon_sym_U_DQUOTE] = ACTIONS(1241), - [anon_sym_u8_DQUOTE] = ACTIONS(1241), - [anon_sym_DQUOTE] = ACTIONS(1241), - [sym_true] = ACTIONS(1239), - [sym_false] = ACTIONS(1239), - [anon_sym_NULL] = ACTIONS(1239), - [anon_sym_nullptr] = ACTIONS(1239), + [178] = { + [sym_identifier] = ACTIONS(1143), + [aux_sym_preproc_include_token1] = ACTIONS(1143), + [aux_sym_preproc_def_token1] = ACTIONS(1143), + [aux_sym_preproc_if_token1] = ACTIONS(1143), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1143), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1143), + [sym_preproc_directive] = ACTIONS(1143), + [anon_sym_LPAREN2] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_TILDE] = ACTIONS(1145), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_STAR] = ACTIONS(1145), + [anon_sym_AMP] = ACTIONS(1145), + [anon_sym_SEMI] = ACTIONS(1145), + [anon_sym___extension__] = ACTIONS(1143), + [anon_sym_typedef] = ACTIONS(1143), + [anon_sym_extern] = ACTIONS(1143), + [anon_sym___attribute__] = ACTIONS(1143), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), + [anon_sym___declspec] = ACTIONS(1143), + [anon_sym___cdecl] = ACTIONS(1143), + [anon_sym___clrcall] = ACTIONS(1143), + [anon_sym___stdcall] = ACTIONS(1143), + [anon_sym___fastcall] = ACTIONS(1143), + [anon_sym___thiscall] = ACTIONS(1143), + [anon_sym___vectorcall] = ACTIONS(1143), + [anon_sym_LBRACE] = ACTIONS(1145), + [anon_sym_RBRACE] = ACTIONS(1145), + [anon_sym_signed] = ACTIONS(1143), + [anon_sym_unsigned] = ACTIONS(1143), + [anon_sym_long] = ACTIONS(1143), + [anon_sym_short] = ACTIONS(1143), + [anon_sym_static] = ACTIONS(1143), + [anon_sym_auto] = ACTIONS(1143), + [anon_sym_register] = ACTIONS(1143), + [anon_sym_inline] = ACTIONS(1143), + [anon_sym___inline] = ACTIONS(1143), + [anon_sym___inline__] = ACTIONS(1143), + [anon_sym___forceinline] = ACTIONS(1143), + [anon_sym_thread_local] = ACTIONS(1143), + [anon_sym___thread] = ACTIONS(1143), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_constexpr] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym___restrict__] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1143), + [anon_sym__Noreturn] = ACTIONS(1143), + [anon_sym_noreturn] = ACTIONS(1143), + [anon_sym_alignas] = ACTIONS(1143), + [anon_sym__Alignas] = ACTIONS(1143), + [sym_primitive_type] = ACTIONS(1143), + [anon_sym_enum] = ACTIONS(1143), + [anon_sym_struct] = ACTIONS(1143), + [anon_sym_union] = ACTIONS(1143), + [anon_sym_if] = ACTIONS(1143), + [anon_sym_else] = ACTIONS(1143), + [anon_sym_switch] = ACTIONS(1143), + [anon_sym_case] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(1143), + [anon_sym_do] = ACTIONS(1143), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_return] = ACTIONS(1143), + [anon_sym_break] = ACTIONS(1143), + [anon_sym_continue] = ACTIONS(1143), + [anon_sym_goto] = ACTIONS(1143), + [anon_sym___try] = ACTIONS(1143), + [anon_sym___leave] = ACTIONS(1143), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_sizeof] = ACTIONS(1143), + [anon_sym___alignof__] = ACTIONS(1143), + [anon_sym___alignof] = ACTIONS(1143), + [anon_sym__alignof] = ACTIONS(1143), + [anon_sym_alignof] = ACTIONS(1143), + [anon_sym__Alignof] = ACTIONS(1143), + [anon_sym_offsetof] = ACTIONS(1143), + [anon_sym__Generic] = ACTIONS(1143), + [anon_sym_asm] = ACTIONS(1143), + [anon_sym___asm__] = ACTIONS(1143), + [sym_number_literal] = ACTIONS(1145), + [anon_sym_L_SQUOTE] = ACTIONS(1145), + [anon_sym_u_SQUOTE] = ACTIONS(1145), + [anon_sym_U_SQUOTE] = ACTIONS(1145), + [anon_sym_u8_SQUOTE] = ACTIONS(1145), + [anon_sym_SQUOTE] = ACTIONS(1145), + [anon_sym_L_DQUOTE] = ACTIONS(1145), + [anon_sym_u_DQUOTE] = ACTIONS(1145), + [anon_sym_U_DQUOTE] = ACTIONS(1145), + [anon_sym_u8_DQUOTE] = ACTIONS(1145), + [anon_sym_DQUOTE] = ACTIONS(1145), + [sym_true] = ACTIONS(1143), + [sym_false] = ACTIONS(1143), + [anon_sym_NULL] = ACTIONS(1143), + [anon_sym_nullptr] = ACTIONS(1143), [sym_comment] = ACTIONS(3), }, - [206] = { - [ts_builtin_sym_end] = ACTIONS(1125), - [sym_identifier] = ACTIONS(1123), - [aux_sym_preproc_include_token1] = ACTIONS(1123), - [aux_sym_preproc_def_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), - [sym_preproc_directive] = ACTIONS(1123), - [anon_sym_LPAREN2] = ACTIONS(1125), - [anon_sym_BANG] = ACTIONS(1125), - [anon_sym_TILDE] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym___extension__] = ACTIONS(1123), - [anon_sym_typedef] = ACTIONS(1123), - [anon_sym_extern] = ACTIONS(1123), - [anon_sym___attribute__] = ACTIONS(1123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), - [anon_sym___declspec] = ACTIONS(1123), - [anon_sym___cdecl] = ACTIONS(1123), - [anon_sym___clrcall] = ACTIONS(1123), - [anon_sym___stdcall] = ACTIONS(1123), - [anon_sym___fastcall] = ACTIONS(1123), - [anon_sym___thiscall] = ACTIONS(1123), - [anon_sym___vectorcall] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_signed] = ACTIONS(1123), - [anon_sym_unsigned] = ACTIONS(1123), - [anon_sym_long] = ACTIONS(1123), - [anon_sym_short] = ACTIONS(1123), - [anon_sym_static] = ACTIONS(1123), - [anon_sym_auto] = ACTIONS(1123), - [anon_sym_register] = ACTIONS(1123), - [anon_sym_inline] = ACTIONS(1123), - [anon_sym___inline] = ACTIONS(1123), - [anon_sym___inline__] = ACTIONS(1123), - [anon_sym___forceinline] = ACTIONS(1123), - [anon_sym_thread_local] = ACTIONS(1123), - [anon_sym___thread] = ACTIONS(1123), - [anon_sym_const] = ACTIONS(1123), - [anon_sym_constexpr] = ACTIONS(1123), - [anon_sym_volatile] = ACTIONS(1123), - [anon_sym_restrict] = ACTIONS(1123), - [anon_sym___restrict__] = ACTIONS(1123), - [anon_sym__Atomic] = ACTIONS(1123), - [anon_sym__Noreturn] = ACTIONS(1123), - [anon_sym_noreturn] = ACTIONS(1123), - [anon_sym_alignas] = ACTIONS(1123), - [anon_sym__Alignas] = ACTIONS(1123), - [sym_primitive_type] = ACTIONS(1123), - [anon_sym_enum] = ACTIONS(1123), - [anon_sym_struct] = ACTIONS(1123), - [anon_sym_union] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1123), - [anon_sym_else] = ACTIONS(1123), - [anon_sym_switch] = ACTIONS(1123), - [anon_sym_case] = ACTIONS(1123), - [anon_sym_default] = ACTIONS(1123), - [anon_sym_while] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(1123), - [anon_sym_for] = ACTIONS(1123), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_break] = ACTIONS(1123), - [anon_sym_continue] = ACTIONS(1123), - [anon_sym_goto] = ACTIONS(1123), - [anon_sym___try] = ACTIONS(1123), - [anon_sym___leave] = ACTIONS(1123), - [anon_sym_DASH_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1125), - [anon_sym_sizeof] = ACTIONS(1123), - [anon_sym___alignof__] = ACTIONS(1123), - [anon_sym___alignof] = ACTIONS(1123), - [anon_sym__alignof] = ACTIONS(1123), - [anon_sym_alignof] = ACTIONS(1123), - [anon_sym__Alignof] = ACTIONS(1123), - [anon_sym_offsetof] = ACTIONS(1123), - [anon_sym__Generic] = ACTIONS(1123), - [anon_sym_asm] = ACTIONS(1123), - [anon_sym___asm__] = ACTIONS(1123), - [sym_number_literal] = ACTIONS(1125), - [anon_sym_L_SQUOTE] = ACTIONS(1125), - [anon_sym_u_SQUOTE] = ACTIONS(1125), - [anon_sym_U_SQUOTE] = ACTIONS(1125), - [anon_sym_u8_SQUOTE] = ACTIONS(1125), - [anon_sym_SQUOTE] = ACTIONS(1125), - [anon_sym_L_DQUOTE] = ACTIONS(1125), - [anon_sym_u_DQUOTE] = ACTIONS(1125), - [anon_sym_U_DQUOTE] = ACTIONS(1125), - [anon_sym_u8_DQUOTE] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(1125), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [anon_sym_NULL] = ACTIONS(1123), - [anon_sym_nullptr] = ACTIONS(1123), + [179] = { + [sym_identifier] = ACTIONS(1171), + [aux_sym_preproc_include_token1] = ACTIONS(1171), + [aux_sym_preproc_def_token1] = ACTIONS(1171), + [aux_sym_preproc_if_token1] = ACTIONS(1171), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1171), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1171), + [sym_preproc_directive] = ACTIONS(1171), + [anon_sym_LPAREN2] = ACTIONS(1173), + [anon_sym_BANG] = ACTIONS(1173), + [anon_sym_TILDE] = ACTIONS(1173), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1173), + [anon_sym_AMP] = ACTIONS(1173), + [anon_sym_SEMI] = ACTIONS(1173), + [anon_sym___extension__] = ACTIONS(1171), + [anon_sym_typedef] = ACTIONS(1171), + [anon_sym_extern] = ACTIONS(1171), + [anon_sym___attribute__] = ACTIONS(1171), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1173), + [anon_sym___declspec] = ACTIONS(1171), + [anon_sym___cdecl] = ACTIONS(1171), + [anon_sym___clrcall] = ACTIONS(1171), + [anon_sym___stdcall] = ACTIONS(1171), + [anon_sym___fastcall] = ACTIONS(1171), + [anon_sym___thiscall] = ACTIONS(1171), + [anon_sym___vectorcall] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_RBRACE] = ACTIONS(1173), + [anon_sym_signed] = ACTIONS(1171), + [anon_sym_unsigned] = ACTIONS(1171), + [anon_sym_long] = ACTIONS(1171), + [anon_sym_short] = ACTIONS(1171), + [anon_sym_static] = ACTIONS(1171), + [anon_sym_auto] = ACTIONS(1171), + [anon_sym_register] = ACTIONS(1171), + [anon_sym_inline] = ACTIONS(1171), + [anon_sym___inline] = ACTIONS(1171), + [anon_sym___inline__] = ACTIONS(1171), + [anon_sym___forceinline] = ACTIONS(1171), + [anon_sym_thread_local] = ACTIONS(1171), + [anon_sym___thread] = ACTIONS(1171), + [anon_sym_const] = ACTIONS(1171), + [anon_sym_constexpr] = ACTIONS(1171), + [anon_sym_volatile] = ACTIONS(1171), + [anon_sym_restrict] = ACTIONS(1171), + [anon_sym___restrict__] = ACTIONS(1171), + [anon_sym__Atomic] = ACTIONS(1171), + [anon_sym__Noreturn] = ACTIONS(1171), + [anon_sym_noreturn] = ACTIONS(1171), + [anon_sym_alignas] = ACTIONS(1171), + [anon_sym__Alignas] = ACTIONS(1171), + [sym_primitive_type] = ACTIONS(1171), + [anon_sym_enum] = ACTIONS(1171), + [anon_sym_struct] = ACTIONS(1171), + [anon_sym_union] = ACTIONS(1171), + [anon_sym_if] = ACTIONS(1171), + [anon_sym_else] = ACTIONS(1171), + [anon_sym_switch] = ACTIONS(1171), + [anon_sym_case] = ACTIONS(1171), + [anon_sym_default] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1171), + [anon_sym_for] = ACTIONS(1171), + [anon_sym_return] = ACTIONS(1171), + [anon_sym_break] = ACTIONS(1171), + [anon_sym_continue] = ACTIONS(1171), + [anon_sym_goto] = ACTIONS(1171), + [anon_sym___try] = ACTIONS(1171), + [anon_sym___leave] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1173), + [anon_sym_PLUS_PLUS] = ACTIONS(1173), + [anon_sym_sizeof] = ACTIONS(1171), + [anon_sym___alignof__] = ACTIONS(1171), + [anon_sym___alignof] = ACTIONS(1171), + [anon_sym__alignof] = ACTIONS(1171), + [anon_sym_alignof] = ACTIONS(1171), + [anon_sym__Alignof] = ACTIONS(1171), + [anon_sym_offsetof] = ACTIONS(1171), + [anon_sym__Generic] = ACTIONS(1171), + [anon_sym_asm] = ACTIONS(1171), + [anon_sym___asm__] = ACTIONS(1171), + [sym_number_literal] = ACTIONS(1173), + [anon_sym_L_SQUOTE] = ACTIONS(1173), + [anon_sym_u_SQUOTE] = ACTIONS(1173), + [anon_sym_U_SQUOTE] = ACTIONS(1173), + [anon_sym_u8_SQUOTE] = ACTIONS(1173), + [anon_sym_SQUOTE] = ACTIONS(1173), + [anon_sym_L_DQUOTE] = ACTIONS(1173), + [anon_sym_u_DQUOTE] = ACTIONS(1173), + [anon_sym_U_DQUOTE] = ACTIONS(1173), + [anon_sym_u8_DQUOTE] = ACTIONS(1173), + [anon_sym_DQUOTE] = ACTIONS(1173), + [sym_true] = ACTIONS(1171), + [sym_false] = ACTIONS(1171), + [anon_sym_NULL] = ACTIONS(1171), + [anon_sym_nullptr] = ACTIONS(1171), [sym_comment] = ACTIONS(3), }, - [207] = { - [ts_builtin_sym_end] = ACTIONS(1125), - [sym_identifier] = ACTIONS(1123), - [aux_sym_preproc_include_token1] = ACTIONS(1123), - [aux_sym_preproc_def_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), - [sym_preproc_directive] = ACTIONS(1123), - [anon_sym_LPAREN2] = ACTIONS(1125), - [anon_sym_BANG] = ACTIONS(1125), - [anon_sym_TILDE] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym___extension__] = ACTIONS(1123), - [anon_sym_typedef] = ACTIONS(1123), - [anon_sym_extern] = ACTIONS(1123), - [anon_sym___attribute__] = ACTIONS(1123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), - [anon_sym___declspec] = ACTIONS(1123), - [anon_sym___cdecl] = ACTIONS(1123), - [anon_sym___clrcall] = ACTIONS(1123), - [anon_sym___stdcall] = ACTIONS(1123), - [anon_sym___fastcall] = ACTIONS(1123), - [anon_sym___thiscall] = ACTIONS(1123), - [anon_sym___vectorcall] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_signed] = ACTIONS(1123), - [anon_sym_unsigned] = ACTIONS(1123), - [anon_sym_long] = ACTIONS(1123), - [anon_sym_short] = ACTIONS(1123), - [anon_sym_static] = ACTIONS(1123), - [anon_sym_auto] = ACTIONS(1123), - [anon_sym_register] = ACTIONS(1123), - [anon_sym_inline] = ACTIONS(1123), - [anon_sym___inline] = ACTIONS(1123), - [anon_sym___inline__] = ACTIONS(1123), - [anon_sym___forceinline] = ACTIONS(1123), - [anon_sym_thread_local] = ACTIONS(1123), - [anon_sym___thread] = ACTIONS(1123), - [anon_sym_const] = ACTIONS(1123), - [anon_sym_constexpr] = ACTIONS(1123), - [anon_sym_volatile] = ACTIONS(1123), - [anon_sym_restrict] = ACTIONS(1123), - [anon_sym___restrict__] = ACTIONS(1123), - [anon_sym__Atomic] = ACTIONS(1123), - [anon_sym__Noreturn] = ACTIONS(1123), - [anon_sym_noreturn] = ACTIONS(1123), - [anon_sym_alignas] = ACTIONS(1123), - [anon_sym__Alignas] = ACTIONS(1123), - [sym_primitive_type] = ACTIONS(1123), - [anon_sym_enum] = ACTIONS(1123), - [anon_sym_struct] = ACTIONS(1123), - [anon_sym_union] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1123), - [anon_sym_else] = ACTIONS(1123), - [anon_sym_switch] = ACTIONS(1123), - [anon_sym_case] = ACTIONS(1123), - [anon_sym_default] = ACTIONS(1123), - [anon_sym_while] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(1123), - [anon_sym_for] = ACTIONS(1123), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_break] = ACTIONS(1123), - [anon_sym_continue] = ACTIONS(1123), - [anon_sym_goto] = ACTIONS(1123), - [anon_sym___try] = ACTIONS(1123), - [anon_sym___leave] = ACTIONS(1123), - [anon_sym_DASH_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1125), - [anon_sym_sizeof] = ACTIONS(1123), - [anon_sym___alignof__] = ACTIONS(1123), - [anon_sym___alignof] = ACTIONS(1123), - [anon_sym__alignof] = ACTIONS(1123), - [anon_sym_alignof] = ACTIONS(1123), - [anon_sym__Alignof] = ACTIONS(1123), - [anon_sym_offsetof] = ACTIONS(1123), - [anon_sym__Generic] = ACTIONS(1123), - [anon_sym_asm] = ACTIONS(1123), - [anon_sym___asm__] = ACTIONS(1123), - [sym_number_literal] = ACTIONS(1125), - [anon_sym_L_SQUOTE] = ACTIONS(1125), - [anon_sym_u_SQUOTE] = ACTIONS(1125), - [anon_sym_U_SQUOTE] = ACTIONS(1125), - [anon_sym_u8_SQUOTE] = ACTIONS(1125), - [anon_sym_SQUOTE] = ACTIONS(1125), - [anon_sym_L_DQUOTE] = ACTIONS(1125), - [anon_sym_u_DQUOTE] = ACTIONS(1125), - [anon_sym_U_DQUOTE] = ACTIONS(1125), - [anon_sym_u8_DQUOTE] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(1125), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [anon_sym_NULL] = ACTIONS(1123), - [anon_sym_nullptr] = ACTIONS(1123), - [sym_comment] = ACTIONS(3), - }, - [208] = { - [ts_builtin_sym_end] = ACTIONS(1125), - [sym_identifier] = ACTIONS(1123), - [aux_sym_preproc_include_token1] = ACTIONS(1123), - [aux_sym_preproc_def_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), - [sym_preproc_directive] = ACTIONS(1123), - [anon_sym_LPAREN2] = ACTIONS(1125), - [anon_sym_BANG] = ACTIONS(1125), - [anon_sym_TILDE] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym___extension__] = ACTIONS(1123), - [anon_sym_typedef] = ACTIONS(1123), - [anon_sym_extern] = ACTIONS(1123), - [anon_sym___attribute__] = ACTIONS(1123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), - [anon_sym___declspec] = ACTIONS(1123), - [anon_sym___cdecl] = ACTIONS(1123), - [anon_sym___clrcall] = ACTIONS(1123), - [anon_sym___stdcall] = ACTIONS(1123), - [anon_sym___fastcall] = ACTIONS(1123), - [anon_sym___thiscall] = ACTIONS(1123), - [anon_sym___vectorcall] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_signed] = ACTIONS(1123), - [anon_sym_unsigned] = ACTIONS(1123), - [anon_sym_long] = ACTIONS(1123), - [anon_sym_short] = ACTIONS(1123), - [anon_sym_static] = ACTIONS(1123), - [anon_sym_auto] = ACTIONS(1123), - [anon_sym_register] = ACTIONS(1123), - [anon_sym_inline] = ACTIONS(1123), - [anon_sym___inline] = ACTIONS(1123), - [anon_sym___inline__] = ACTIONS(1123), - [anon_sym___forceinline] = ACTIONS(1123), - [anon_sym_thread_local] = ACTIONS(1123), - [anon_sym___thread] = ACTIONS(1123), - [anon_sym_const] = ACTIONS(1123), - [anon_sym_constexpr] = ACTIONS(1123), - [anon_sym_volatile] = ACTIONS(1123), - [anon_sym_restrict] = ACTIONS(1123), - [anon_sym___restrict__] = ACTIONS(1123), - [anon_sym__Atomic] = ACTIONS(1123), - [anon_sym__Noreturn] = ACTIONS(1123), - [anon_sym_noreturn] = ACTIONS(1123), - [anon_sym_alignas] = ACTIONS(1123), - [anon_sym__Alignas] = ACTIONS(1123), - [sym_primitive_type] = ACTIONS(1123), - [anon_sym_enum] = ACTIONS(1123), - [anon_sym_struct] = ACTIONS(1123), - [anon_sym_union] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1123), - [anon_sym_else] = ACTIONS(1123), - [anon_sym_switch] = ACTIONS(1123), - [anon_sym_case] = ACTIONS(1123), - [anon_sym_default] = ACTIONS(1123), - [anon_sym_while] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(1123), - [anon_sym_for] = ACTIONS(1123), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_break] = ACTIONS(1123), - [anon_sym_continue] = ACTIONS(1123), - [anon_sym_goto] = ACTIONS(1123), - [anon_sym___try] = ACTIONS(1123), - [anon_sym___leave] = ACTIONS(1123), - [anon_sym_DASH_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1125), - [anon_sym_sizeof] = ACTIONS(1123), - [anon_sym___alignof__] = ACTIONS(1123), - [anon_sym___alignof] = ACTIONS(1123), - [anon_sym__alignof] = ACTIONS(1123), - [anon_sym_alignof] = ACTIONS(1123), - [anon_sym__Alignof] = ACTIONS(1123), - [anon_sym_offsetof] = ACTIONS(1123), - [anon_sym__Generic] = ACTIONS(1123), - [anon_sym_asm] = ACTIONS(1123), - [anon_sym___asm__] = ACTIONS(1123), - [sym_number_literal] = ACTIONS(1125), - [anon_sym_L_SQUOTE] = ACTIONS(1125), - [anon_sym_u_SQUOTE] = ACTIONS(1125), - [anon_sym_U_SQUOTE] = ACTIONS(1125), - [anon_sym_u8_SQUOTE] = ACTIONS(1125), - [anon_sym_SQUOTE] = ACTIONS(1125), - [anon_sym_L_DQUOTE] = ACTIONS(1125), - [anon_sym_u_DQUOTE] = ACTIONS(1125), - [anon_sym_U_DQUOTE] = ACTIONS(1125), - [anon_sym_u8_DQUOTE] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(1125), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [anon_sym_NULL] = ACTIONS(1123), - [anon_sym_nullptr] = ACTIONS(1123), + [180] = { + [sym_identifier] = ACTIONS(1147), + [aux_sym_preproc_include_token1] = ACTIONS(1147), + [aux_sym_preproc_def_token1] = ACTIONS(1147), + [aux_sym_preproc_if_token1] = ACTIONS(1147), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1147), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1147), + [sym_preproc_directive] = ACTIONS(1147), + [anon_sym_LPAREN2] = ACTIONS(1149), + [anon_sym_BANG] = ACTIONS(1149), + [anon_sym_TILDE] = ACTIONS(1149), + [anon_sym_DASH] = ACTIONS(1147), + [anon_sym_PLUS] = ACTIONS(1147), + [anon_sym_STAR] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(1149), + [anon_sym_SEMI] = ACTIONS(1149), + [anon_sym___extension__] = ACTIONS(1147), + [anon_sym_typedef] = ACTIONS(1147), + [anon_sym_extern] = ACTIONS(1147), + [anon_sym___attribute__] = ACTIONS(1147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1149), + [anon_sym___declspec] = ACTIONS(1147), + [anon_sym___cdecl] = ACTIONS(1147), + [anon_sym___clrcall] = ACTIONS(1147), + [anon_sym___stdcall] = ACTIONS(1147), + [anon_sym___fastcall] = ACTIONS(1147), + [anon_sym___thiscall] = ACTIONS(1147), + [anon_sym___vectorcall] = ACTIONS(1147), + [anon_sym_LBRACE] = ACTIONS(1149), + [anon_sym_RBRACE] = ACTIONS(1149), + [anon_sym_signed] = ACTIONS(1147), + [anon_sym_unsigned] = ACTIONS(1147), + [anon_sym_long] = ACTIONS(1147), + [anon_sym_short] = ACTIONS(1147), + [anon_sym_static] = ACTIONS(1147), + [anon_sym_auto] = ACTIONS(1147), + [anon_sym_register] = ACTIONS(1147), + [anon_sym_inline] = ACTIONS(1147), + [anon_sym___inline] = ACTIONS(1147), + [anon_sym___inline__] = ACTIONS(1147), + [anon_sym___forceinline] = ACTIONS(1147), + [anon_sym_thread_local] = ACTIONS(1147), + [anon_sym___thread] = ACTIONS(1147), + [anon_sym_const] = ACTIONS(1147), + [anon_sym_constexpr] = ACTIONS(1147), + [anon_sym_volatile] = ACTIONS(1147), + [anon_sym_restrict] = ACTIONS(1147), + [anon_sym___restrict__] = ACTIONS(1147), + [anon_sym__Atomic] = ACTIONS(1147), + [anon_sym__Noreturn] = ACTIONS(1147), + [anon_sym_noreturn] = ACTIONS(1147), + [anon_sym_alignas] = ACTIONS(1147), + [anon_sym__Alignas] = ACTIONS(1147), + [sym_primitive_type] = ACTIONS(1147), + [anon_sym_enum] = ACTIONS(1147), + [anon_sym_struct] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1147), + [anon_sym_if] = ACTIONS(1147), + [anon_sym_else] = ACTIONS(1147), + [anon_sym_switch] = ACTIONS(1147), + [anon_sym_case] = ACTIONS(1147), + [anon_sym_default] = ACTIONS(1147), + [anon_sym_while] = ACTIONS(1147), + [anon_sym_do] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1147), + [anon_sym_return] = ACTIONS(1147), + [anon_sym_break] = ACTIONS(1147), + [anon_sym_continue] = ACTIONS(1147), + [anon_sym_goto] = ACTIONS(1147), + [anon_sym___try] = ACTIONS(1147), + [anon_sym___leave] = ACTIONS(1147), + [anon_sym_DASH_DASH] = ACTIONS(1149), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_sizeof] = ACTIONS(1147), + [anon_sym___alignof__] = ACTIONS(1147), + [anon_sym___alignof] = ACTIONS(1147), + [anon_sym__alignof] = ACTIONS(1147), + [anon_sym_alignof] = ACTIONS(1147), + [anon_sym__Alignof] = ACTIONS(1147), + [anon_sym_offsetof] = ACTIONS(1147), + [anon_sym__Generic] = ACTIONS(1147), + [anon_sym_asm] = ACTIONS(1147), + [anon_sym___asm__] = ACTIONS(1147), + [sym_number_literal] = ACTIONS(1149), + [anon_sym_L_SQUOTE] = ACTIONS(1149), + [anon_sym_u_SQUOTE] = ACTIONS(1149), + [anon_sym_U_SQUOTE] = ACTIONS(1149), + [anon_sym_u8_SQUOTE] = ACTIONS(1149), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_L_DQUOTE] = ACTIONS(1149), + [anon_sym_u_DQUOTE] = ACTIONS(1149), + [anon_sym_U_DQUOTE] = ACTIONS(1149), + [anon_sym_u8_DQUOTE] = ACTIONS(1149), + [anon_sym_DQUOTE] = ACTIONS(1149), + [sym_true] = ACTIONS(1147), + [sym_false] = ACTIONS(1147), + [anon_sym_NULL] = ACTIONS(1147), + [anon_sym_nullptr] = ACTIONS(1147), [sym_comment] = ACTIONS(3), }, - [209] = { - [sym_identifier] = ACTIONS(1239), - [aux_sym_preproc_include_token1] = ACTIONS(1239), - [aux_sym_preproc_def_token1] = ACTIONS(1239), - [aux_sym_preproc_if_token1] = ACTIONS(1239), - [aux_sym_preproc_if_token2] = ACTIONS(1239), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1239), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1239), - [sym_preproc_directive] = ACTIONS(1239), - [anon_sym_LPAREN2] = ACTIONS(1241), - [anon_sym_BANG] = ACTIONS(1241), - [anon_sym_TILDE] = ACTIONS(1241), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1241), - [anon_sym_SEMI] = ACTIONS(1241), - [anon_sym___extension__] = ACTIONS(1239), - [anon_sym_typedef] = ACTIONS(1239), - [anon_sym_extern] = ACTIONS(1239), - [anon_sym___attribute__] = ACTIONS(1239), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1241), - [anon_sym___declspec] = ACTIONS(1239), - [anon_sym___cdecl] = ACTIONS(1239), - [anon_sym___clrcall] = ACTIONS(1239), - [anon_sym___stdcall] = ACTIONS(1239), - [anon_sym___fastcall] = ACTIONS(1239), - [anon_sym___thiscall] = ACTIONS(1239), - [anon_sym___vectorcall] = ACTIONS(1239), - [anon_sym_LBRACE] = ACTIONS(1241), - [anon_sym_signed] = ACTIONS(1239), - [anon_sym_unsigned] = ACTIONS(1239), - [anon_sym_long] = ACTIONS(1239), - [anon_sym_short] = ACTIONS(1239), - [anon_sym_static] = ACTIONS(1239), - [anon_sym_auto] = ACTIONS(1239), - [anon_sym_register] = ACTIONS(1239), - [anon_sym_inline] = ACTIONS(1239), - [anon_sym___inline] = ACTIONS(1239), - [anon_sym___inline__] = ACTIONS(1239), - [anon_sym___forceinline] = ACTIONS(1239), - [anon_sym_thread_local] = ACTIONS(1239), - [anon_sym___thread] = ACTIONS(1239), - [anon_sym_const] = ACTIONS(1239), - [anon_sym_constexpr] = ACTIONS(1239), - [anon_sym_volatile] = ACTIONS(1239), - [anon_sym_restrict] = ACTIONS(1239), - [anon_sym___restrict__] = ACTIONS(1239), - [anon_sym__Atomic] = ACTIONS(1239), - [anon_sym__Noreturn] = ACTIONS(1239), - [anon_sym_noreturn] = ACTIONS(1239), - [anon_sym_alignas] = ACTIONS(1239), - [anon_sym__Alignas] = 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___try] = ACTIONS(1239), - [anon_sym___leave] = ACTIONS(1239), - [anon_sym_DASH_DASH] = ACTIONS(1241), - [anon_sym_PLUS_PLUS] = ACTIONS(1241), - [anon_sym_sizeof] = ACTIONS(1239), - [anon_sym___alignof__] = ACTIONS(1239), - [anon_sym___alignof] = ACTIONS(1239), - [anon_sym__alignof] = ACTIONS(1239), - [anon_sym_alignof] = ACTIONS(1239), - [anon_sym__Alignof] = ACTIONS(1239), - [anon_sym_offsetof] = ACTIONS(1239), - [anon_sym__Generic] = ACTIONS(1239), - [anon_sym_asm] = ACTIONS(1239), - [anon_sym___asm__] = ACTIONS(1239), - [sym_number_literal] = ACTIONS(1241), - [anon_sym_L_SQUOTE] = ACTIONS(1241), - [anon_sym_u_SQUOTE] = ACTIONS(1241), - [anon_sym_U_SQUOTE] = ACTIONS(1241), - [anon_sym_u8_SQUOTE] = ACTIONS(1241), - [anon_sym_SQUOTE] = ACTIONS(1241), - [anon_sym_L_DQUOTE] = ACTIONS(1241), - [anon_sym_u_DQUOTE] = ACTIONS(1241), - [anon_sym_U_DQUOTE] = ACTIONS(1241), - [anon_sym_u8_DQUOTE] = ACTIONS(1241), - [anon_sym_DQUOTE] = ACTIONS(1241), - [sym_true] = ACTIONS(1239), - [sym_false] = ACTIONS(1239), - [anon_sym_NULL] = ACTIONS(1239), - [anon_sym_nullptr] = ACTIONS(1239), + [181] = { + [ts_builtin_sym_end] = ACTIONS(1153), + [sym_identifier] = ACTIONS(1151), + [aux_sym_preproc_include_token1] = ACTIONS(1151), + [aux_sym_preproc_def_token1] = ACTIONS(1151), + [aux_sym_preproc_if_token1] = ACTIONS(1151), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1151), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1151), + [sym_preproc_directive] = ACTIONS(1151), + [anon_sym_LPAREN2] = ACTIONS(1153), + [anon_sym_BANG] = ACTIONS(1153), + [anon_sym_TILDE] = ACTIONS(1153), + [anon_sym_DASH] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1151), + [anon_sym_STAR] = ACTIONS(1153), + [anon_sym_AMP] = ACTIONS(1153), + [anon_sym_SEMI] = ACTIONS(1153), + [anon_sym___extension__] = ACTIONS(1151), + [anon_sym_typedef] = ACTIONS(1151), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym___attribute__] = ACTIONS(1151), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1153), + [anon_sym___declspec] = ACTIONS(1151), + [anon_sym___cdecl] = ACTIONS(1151), + [anon_sym___clrcall] = ACTIONS(1151), + [anon_sym___stdcall] = ACTIONS(1151), + [anon_sym___fastcall] = ACTIONS(1151), + [anon_sym___thiscall] = ACTIONS(1151), + [anon_sym___vectorcall] = ACTIONS(1151), + [anon_sym_LBRACE] = ACTIONS(1153), + [anon_sym_signed] = ACTIONS(1151), + [anon_sym_unsigned] = ACTIONS(1151), + [anon_sym_long] = ACTIONS(1151), + [anon_sym_short] = ACTIONS(1151), + [anon_sym_static] = ACTIONS(1151), + [anon_sym_auto] = ACTIONS(1151), + [anon_sym_register] = ACTIONS(1151), + [anon_sym_inline] = ACTIONS(1151), + [anon_sym___inline] = ACTIONS(1151), + [anon_sym___inline__] = ACTIONS(1151), + [anon_sym___forceinline] = ACTIONS(1151), + [anon_sym_thread_local] = ACTIONS(1151), + [anon_sym___thread] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_constexpr] = ACTIONS(1151), + [anon_sym_volatile] = ACTIONS(1151), + [anon_sym_restrict] = ACTIONS(1151), + [anon_sym___restrict__] = ACTIONS(1151), + [anon_sym__Atomic] = ACTIONS(1151), + [anon_sym__Noreturn] = ACTIONS(1151), + [anon_sym_noreturn] = ACTIONS(1151), + [anon_sym_alignas] = ACTIONS(1151), + [anon_sym__Alignas] = ACTIONS(1151), + [sym_primitive_type] = ACTIONS(1151), + [anon_sym_enum] = ACTIONS(1151), + [anon_sym_struct] = ACTIONS(1151), + [anon_sym_union] = ACTIONS(1151), + [anon_sym_if] = ACTIONS(1151), + [anon_sym_else] = ACTIONS(1151), + [anon_sym_switch] = ACTIONS(1151), + [anon_sym_case] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1151), + [anon_sym_while] = ACTIONS(1151), + [anon_sym_do] = ACTIONS(1151), + [anon_sym_for] = ACTIONS(1151), + [anon_sym_return] = ACTIONS(1151), + [anon_sym_break] = ACTIONS(1151), + [anon_sym_continue] = ACTIONS(1151), + [anon_sym_goto] = ACTIONS(1151), + [anon_sym___try] = ACTIONS(1151), + [anon_sym___leave] = ACTIONS(1151), + [anon_sym_DASH_DASH] = ACTIONS(1153), + [anon_sym_PLUS_PLUS] = ACTIONS(1153), + [anon_sym_sizeof] = ACTIONS(1151), + [anon_sym___alignof__] = ACTIONS(1151), + [anon_sym___alignof] = ACTIONS(1151), + [anon_sym__alignof] = ACTIONS(1151), + [anon_sym_alignof] = ACTIONS(1151), + [anon_sym__Alignof] = ACTIONS(1151), + [anon_sym_offsetof] = ACTIONS(1151), + [anon_sym__Generic] = ACTIONS(1151), + [anon_sym_asm] = ACTIONS(1151), + [anon_sym___asm__] = ACTIONS(1151), + [sym_number_literal] = ACTIONS(1153), + [anon_sym_L_SQUOTE] = ACTIONS(1153), + [anon_sym_u_SQUOTE] = ACTIONS(1153), + [anon_sym_U_SQUOTE] = ACTIONS(1153), + [anon_sym_u8_SQUOTE] = ACTIONS(1153), + [anon_sym_SQUOTE] = ACTIONS(1153), + [anon_sym_L_DQUOTE] = ACTIONS(1153), + [anon_sym_u_DQUOTE] = ACTIONS(1153), + [anon_sym_U_DQUOTE] = ACTIONS(1153), + [anon_sym_u8_DQUOTE] = ACTIONS(1153), + [anon_sym_DQUOTE] = ACTIONS(1153), + [sym_true] = ACTIONS(1151), + [sym_false] = ACTIONS(1151), + [anon_sym_NULL] = ACTIONS(1151), + [anon_sym_nullptr] = ACTIONS(1151), [sym_comment] = ACTIONS(3), }, - [210] = { - [ts_builtin_sym_end] = ACTIONS(1213), - [sym_identifier] = ACTIONS(1211), - [aux_sym_preproc_include_token1] = ACTIONS(1211), - [aux_sym_preproc_def_token1] = ACTIONS(1211), - [aux_sym_preproc_if_token1] = ACTIONS(1211), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1211), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1211), - [sym_preproc_directive] = ACTIONS(1211), - [anon_sym_LPAREN2] = ACTIONS(1213), - [anon_sym_BANG] = ACTIONS(1213), - [anon_sym_TILDE] = ACTIONS(1213), - [anon_sym_DASH] = ACTIONS(1211), - [anon_sym_PLUS] = ACTIONS(1211), - [anon_sym_STAR] = ACTIONS(1213), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_SEMI] = ACTIONS(1213), - [anon_sym___extension__] = ACTIONS(1211), - [anon_sym_typedef] = ACTIONS(1211), - [anon_sym_extern] = ACTIONS(1211), - [anon_sym___attribute__] = ACTIONS(1211), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1213), - [anon_sym___declspec] = ACTIONS(1211), - [anon_sym___cdecl] = ACTIONS(1211), - [anon_sym___clrcall] = ACTIONS(1211), - [anon_sym___stdcall] = ACTIONS(1211), - [anon_sym___fastcall] = ACTIONS(1211), - [anon_sym___thiscall] = ACTIONS(1211), - [anon_sym___vectorcall] = ACTIONS(1211), - [anon_sym_LBRACE] = ACTIONS(1213), - [anon_sym_signed] = ACTIONS(1211), - [anon_sym_unsigned] = ACTIONS(1211), - [anon_sym_long] = ACTIONS(1211), - [anon_sym_short] = ACTIONS(1211), - [anon_sym_static] = ACTIONS(1211), - [anon_sym_auto] = ACTIONS(1211), - [anon_sym_register] = ACTIONS(1211), - [anon_sym_inline] = ACTIONS(1211), - [anon_sym___inline] = ACTIONS(1211), - [anon_sym___inline__] = ACTIONS(1211), - [anon_sym___forceinline] = ACTIONS(1211), - [anon_sym_thread_local] = ACTIONS(1211), - [anon_sym___thread] = ACTIONS(1211), - [anon_sym_const] = ACTIONS(1211), - [anon_sym_constexpr] = ACTIONS(1211), - [anon_sym_volatile] = ACTIONS(1211), - [anon_sym_restrict] = ACTIONS(1211), - [anon_sym___restrict__] = ACTIONS(1211), - [anon_sym__Atomic] = ACTIONS(1211), - [anon_sym__Noreturn] = ACTIONS(1211), - [anon_sym_noreturn] = ACTIONS(1211), - [anon_sym_alignas] = ACTIONS(1211), - [anon_sym__Alignas] = ACTIONS(1211), - [sym_primitive_type] = ACTIONS(1211), - [anon_sym_enum] = ACTIONS(1211), - [anon_sym_struct] = ACTIONS(1211), - [anon_sym_union] = ACTIONS(1211), - [anon_sym_if] = ACTIONS(1211), - [anon_sym_else] = ACTIONS(1211), - [anon_sym_switch] = ACTIONS(1211), - [anon_sym_case] = ACTIONS(1211), - [anon_sym_default] = ACTIONS(1211), - [anon_sym_while] = ACTIONS(1211), - [anon_sym_do] = ACTIONS(1211), - [anon_sym_for] = ACTIONS(1211), - [anon_sym_return] = ACTIONS(1211), - [anon_sym_break] = ACTIONS(1211), - [anon_sym_continue] = ACTIONS(1211), - [anon_sym_goto] = ACTIONS(1211), - [anon_sym___try] = ACTIONS(1211), - [anon_sym___leave] = ACTIONS(1211), - [anon_sym_DASH_DASH] = ACTIONS(1213), - [anon_sym_PLUS_PLUS] = ACTIONS(1213), - [anon_sym_sizeof] = ACTIONS(1211), - [anon_sym___alignof__] = ACTIONS(1211), - [anon_sym___alignof] = ACTIONS(1211), - [anon_sym__alignof] = ACTIONS(1211), - [anon_sym_alignof] = ACTIONS(1211), - [anon_sym__Alignof] = ACTIONS(1211), - [anon_sym_offsetof] = ACTIONS(1211), - [anon_sym__Generic] = ACTIONS(1211), - [anon_sym_asm] = ACTIONS(1211), - [anon_sym___asm__] = ACTIONS(1211), - [sym_number_literal] = ACTIONS(1213), - [anon_sym_L_SQUOTE] = ACTIONS(1213), - [anon_sym_u_SQUOTE] = ACTIONS(1213), - [anon_sym_U_SQUOTE] = ACTIONS(1213), - [anon_sym_u8_SQUOTE] = ACTIONS(1213), - [anon_sym_SQUOTE] = ACTIONS(1213), - [anon_sym_L_DQUOTE] = ACTIONS(1213), - [anon_sym_u_DQUOTE] = ACTIONS(1213), - [anon_sym_U_DQUOTE] = ACTIONS(1213), - [anon_sym_u8_DQUOTE] = ACTIONS(1213), - [anon_sym_DQUOTE] = ACTIONS(1213), - [sym_true] = ACTIONS(1211), - [sym_false] = ACTIONS(1211), - [anon_sym_NULL] = ACTIONS(1211), - [anon_sym_nullptr] = ACTIONS(1211), - [sym_comment] = ACTIONS(3), - }, - [211] = { - [ts_builtin_sym_end] = ACTIONS(1125), - [sym_identifier] = ACTIONS(1123), - [aux_sym_preproc_include_token1] = ACTIONS(1123), - [aux_sym_preproc_def_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), - [sym_preproc_directive] = ACTIONS(1123), - [anon_sym_LPAREN2] = ACTIONS(1125), - [anon_sym_BANG] = ACTIONS(1125), - [anon_sym_TILDE] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym___extension__] = ACTIONS(1123), - [anon_sym_typedef] = ACTIONS(1123), - [anon_sym_extern] = ACTIONS(1123), - [anon_sym___attribute__] = ACTIONS(1123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), - [anon_sym___declspec] = ACTIONS(1123), - [anon_sym___cdecl] = ACTIONS(1123), - [anon_sym___clrcall] = ACTIONS(1123), - [anon_sym___stdcall] = ACTIONS(1123), - [anon_sym___fastcall] = ACTIONS(1123), - [anon_sym___thiscall] = ACTIONS(1123), - [anon_sym___vectorcall] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_signed] = ACTIONS(1123), - [anon_sym_unsigned] = ACTIONS(1123), - [anon_sym_long] = ACTIONS(1123), - [anon_sym_short] = ACTIONS(1123), - [anon_sym_static] = ACTIONS(1123), - [anon_sym_auto] = ACTIONS(1123), - [anon_sym_register] = ACTIONS(1123), - [anon_sym_inline] = ACTIONS(1123), - [anon_sym___inline] = ACTIONS(1123), - [anon_sym___inline__] = ACTIONS(1123), - [anon_sym___forceinline] = ACTIONS(1123), - [anon_sym_thread_local] = ACTIONS(1123), - [anon_sym___thread] = ACTIONS(1123), - [anon_sym_const] = ACTIONS(1123), - [anon_sym_constexpr] = ACTIONS(1123), - [anon_sym_volatile] = ACTIONS(1123), - [anon_sym_restrict] = ACTIONS(1123), - [anon_sym___restrict__] = ACTIONS(1123), - [anon_sym__Atomic] = ACTIONS(1123), - [anon_sym__Noreturn] = ACTIONS(1123), - [anon_sym_noreturn] = ACTIONS(1123), - [anon_sym_alignas] = ACTIONS(1123), - [anon_sym__Alignas] = ACTIONS(1123), - [sym_primitive_type] = ACTIONS(1123), - [anon_sym_enum] = ACTIONS(1123), - [anon_sym_struct] = ACTIONS(1123), - [anon_sym_union] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1123), - [anon_sym_else] = ACTIONS(1123), - [anon_sym_switch] = ACTIONS(1123), - [anon_sym_case] = ACTIONS(1123), - [anon_sym_default] = ACTIONS(1123), - [anon_sym_while] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(1123), - [anon_sym_for] = ACTIONS(1123), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_break] = ACTIONS(1123), - [anon_sym_continue] = ACTIONS(1123), - [anon_sym_goto] = ACTIONS(1123), - [anon_sym___try] = ACTIONS(1123), - [anon_sym___leave] = ACTIONS(1123), - [anon_sym_DASH_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1125), - [anon_sym_sizeof] = ACTIONS(1123), - [anon_sym___alignof__] = ACTIONS(1123), - [anon_sym___alignof] = ACTIONS(1123), - [anon_sym__alignof] = ACTIONS(1123), - [anon_sym_alignof] = ACTIONS(1123), - [anon_sym__Alignof] = ACTIONS(1123), - [anon_sym_offsetof] = ACTIONS(1123), - [anon_sym__Generic] = ACTIONS(1123), - [anon_sym_asm] = ACTIONS(1123), - [anon_sym___asm__] = ACTIONS(1123), - [sym_number_literal] = ACTIONS(1125), - [anon_sym_L_SQUOTE] = ACTIONS(1125), - [anon_sym_u_SQUOTE] = ACTIONS(1125), - [anon_sym_U_SQUOTE] = ACTIONS(1125), - [anon_sym_u8_SQUOTE] = ACTIONS(1125), - [anon_sym_SQUOTE] = ACTIONS(1125), - [anon_sym_L_DQUOTE] = ACTIONS(1125), - [anon_sym_u_DQUOTE] = ACTIONS(1125), - [anon_sym_U_DQUOTE] = ACTIONS(1125), - [anon_sym_u8_DQUOTE] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(1125), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [anon_sym_NULL] = ACTIONS(1123), - [anon_sym_nullptr] = ACTIONS(1123), + [182] = { + [ts_builtin_sym_end] = ACTIONS(1193), + [sym_identifier] = ACTIONS(1191), + [aux_sym_preproc_include_token1] = ACTIONS(1191), + [aux_sym_preproc_def_token1] = ACTIONS(1191), + [aux_sym_preproc_if_token1] = ACTIONS(1191), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1191), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1191), + [sym_preproc_directive] = ACTIONS(1191), + [anon_sym_LPAREN2] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(1193), + [anon_sym_TILDE] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1191), + [anon_sym_STAR] = ACTIONS(1193), + [anon_sym_AMP] = ACTIONS(1193), + [anon_sym_SEMI] = ACTIONS(1193), + [anon_sym___extension__] = ACTIONS(1191), + [anon_sym_typedef] = ACTIONS(1191), + [anon_sym_extern] = ACTIONS(1191), + [anon_sym___attribute__] = ACTIONS(1191), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1193), + [anon_sym___declspec] = ACTIONS(1191), + [anon_sym___cdecl] = ACTIONS(1191), + [anon_sym___clrcall] = ACTIONS(1191), + [anon_sym___stdcall] = ACTIONS(1191), + [anon_sym___fastcall] = ACTIONS(1191), + [anon_sym___thiscall] = ACTIONS(1191), + [anon_sym___vectorcall] = ACTIONS(1191), + [anon_sym_LBRACE] = ACTIONS(1193), + [anon_sym_signed] = ACTIONS(1191), + [anon_sym_unsigned] = ACTIONS(1191), + [anon_sym_long] = ACTIONS(1191), + [anon_sym_short] = ACTIONS(1191), + [anon_sym_static] = ACTIONS(1191), + [anon_sym_auto] = ACTIONS(1191), + [anon_sym_register] = ACTIONS(1191), + [anon_sym_inline] = ACTIONS(1191), + [anon_sym___inline] = ACTIONS(1191), + [anon_sym___inline__] = ACTIONS(1191), + [anon_sym___forceinline] = ACTIONS(1191), + [anon_sym_thread_local] = ACTIONS(1191), + [anon_sym___thread] = ACTIONS(1191), + [anon_sym_const] = ACTIONS(1191), + [anon_sym_constexpr] = ACTIONS(1191), + [anon_sym_volatile] = ACTIONS(1191), + [anon_sym_restrict] = ACTIONS(1191), + [anon_sym___restrict__] = ACTIONS(1191), + [anon_sym__Atomic] = ACTIONS(1191), + [anon_sym__Noreturn] = ACTIONS(1191), + [anon_sym_noreturn] = ACTIONS(1191), + [anon_sym_alignas] = ACTIONS(1191), + [anon_sym__Alignas] = ACTIONS(1191), + [sym_primitive_type] = ACTIONS(1191), + [anon_sym_enum] = ACTIONS(1191), + [anon_sym_struct] = ACTIONS(1191), + [anon_sym_union] = ACTIONS(1191), + [anon_sym_if] = ACTIONS(1191), + [anon_sym_else] = ACTIONS(1191), + [anon_sym_switch] = ACTIONS(1191), + [anon_sym_case] = ACTIONS(1191), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_while] = ACTIONS(1191), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1191), + [anon_sym_return] = ACTIONS(1191), + [anon_sym_break] = ACTIONS(1191), + [anon_sym_continue] = ACTIONS(1191), + [anon_sym_goto] = ACTIONS(1191), + [anon_sym___try] = ACTIONS(1191), + [anon_sym___leave] = ACTIONS(1191), + [anon_sym_DASH_DASH] = ACTIONS(1193), + [anon_sym_PLUS_PLUS] = ACTIONS(1193), + [anon_sym_sizeof] = ACTIONS(1191), + [anon_sym___alignof__] = ACTIONS(1191), + [anon_sym___alignof] = ACTIONS(1191), + [anon_sym__alignof] = ACTIONS(1191), + [anon_sym_alignof] = ACTIONS(1191), + [anon_sym__Alignof] = ACTIONS(1191), + [anon_sym_offsetof] = ACTIONS(1191), + [anon_sym__Generic] = ACTIONS(1191), + [anon_sym_asm] = ACTIONS(1191), + [anon_sym___asm__] = ACTIONS(1191), + [sym_number_literal] = ACTIONS(1193), + [anon_sym_L_SQUOTE] = ACTIONS(1193), + [anon_sym_u_SQUOTE] = ACTIONS(1193), + [anon_sym_U_SQUOTE] = ACTIONS(1193), + [anon_sym_u8_SQUOTE] = ACTIONS(1193), + [anon_sym_SQUOTE] = ACTIONS(1193), + [anon_sym_L_DQUOTE] = ACTIONS(1193), + [anon_sym_u_DQUOTE] = ACTIONS(1193), + [anon_sym_U_DQUOTE] = ACTIONS(1193), + [anon_sym_u8_DQUOTE] = ACTIONS(1193), + [anon_sym_DQUOTE] = ACTIONS(1193), + [sym_true] = ACTIONS(1191), + [sym_false] = ACTIONS(1191), + [anon_sym_NULL] = ACTIONS(1191), + [anon_sym_nullptr] = ACTIONS(1191), [sym_comment] = ACTIONS(3), }, - [212] = { - [ts_builtin_sym_end] = ACTIONS(1125), - [sym_identifier] = ACTIONS(1123), - [aux_sym_preproc_include_token1] = ACTIONS(1123), - [aux_sym_preproc_def_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), - [sym_preproc_directive] = ACTIONS(1123), - [anon_sym_LPAREN2] = ACTIONS(1125), - [anon_sym_BANG] = ACTIONS(1125), - [anon_sym_TILDE] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym___extension__] = ACTIONS(1123), - [anon_sym_typedef] = ACTIONS(1123), - [anon_sym_extern] = ACTIONS(1123), - [anon_sym___attribute__] = ACTIONS(1123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), - [anon_sym___declspec] = ACTIONS(1123), - [anon_sym___cdecl] = ACTIONS(1123), - [anon_sym___clrcall] = ACTIONS(1123), - [anon_sym___stdcall] = ACTIONS(1123), - [anon_sym___fastcall] = ACTIONS(1123), - [anon_sym___thiscall] = ACTIONS(1123), - [anon_sym___vectorcall] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_signed] = ACTIONS(1123), - [anon_sym_unsigned] = ACTIONS(1123), - [anon_sym_long] = ACTIONS(1123), - [anon_sym_short] = ACTIONS(1123), - [anon_sym_static] = ACTIONS(1123), - [anon_sym_auto] = ACTIONS(1123), - [anon_sym_register] = ACTIONS(1123), - [anon_sym_inline] = ACTIONS(1123), - [anon_sym___inline] = ACTIONS(1123), - [anon_sym___inline__] = ACTIONS(1123), - [anon_sym___forceinline] = ACTIONS(1123), - [anon_sym_thread_local] = ACTIONS(1123), - [anon_sym___thread] = ACTIONS(1123), - [anon_sym_const] = ACTIONS(1123), - [anon_sym_constexpr] = ACTIONS(1123), - [anon_sym_volatile] = ACTIONS(1123), - [anon_sym_restrict] = ACTIONS(1123), - [anon_sym___restrict__] = ACTIONS(1123), - [anon_sym__Atomic] = ACTIONS(1123), - [anon_sym__Noreturn] = ACTIONS(1123), - [anon_sym_noreturn] = ACTIONS(1123), - [anon_sym_alignas] = ACTIONS(1123), - [anon_sym__Alignas] = ACTIONS(1123), - [sym_primitive_type] = ACTIONS(1123), - [anon_sym_enum] = ACTIONS(1123), - [anon_sym_struct] = ACTIONS(1123), - [anon_sym_union] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1123), - [anon_sym_else] = ACTIONS(1123), - [anon_sym_switch] = ACTIONS(1123), - [anon_sym_case] = ACTIONS(1123), - [anon_sym_default] = ACTIONS(1123), - [anon_sym_while] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(1123), - [anon_sym_for] = ACTIONS(1123), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_break] = ACTIONS(1123), - [anon_sym_continue] = ACTIONS(1123), - [anon_sym_goto] = ACTIONS(1123), - [anon_sym___try] = ACTIONS(1123), - [anon_sym___leave] = ACTIONS(1123), - [anon_sym_DASH_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1125), - [anon_sym_sizeof] = ACTIONS(1123), - [anon_sym___alignof__] = ACTIONS(1123), - [anon_sym___alignof] = ACTIONS(1123), - [anon_sym__alignof] = ACTIONS(1123), - [anon_sym_alignof] = ACTIONS(1123), - [anon_sym__Alignof] = ACTIONS(1123), - [anon_sym_offsetof] = ACTIONS(1123), - [anon_sym__Generic] = ACTIONS(1123), - [anon_sym_asm] = ACTIONS(1123), - [anon_sym___asm__] = ACTIONS(1123), - [sym_number_literal] = ACTIONS(1125), - [anon_sym_L_SQUOTE] = ACTIONS(1125), - [anon_sym_u_SQUOTE] = ACTIONS(1125), - [anon_sym_U_SQUOTE] = ACTIONS(1125), - [anon_sym_u8_SQUOTE] = ACTIONS(1125), - [anon_sym_SQUOTE] = ACTIONS(1125), - [anon_sym_L_DQUOTE] = ACTIONS(1125), - [anon_sym_u_DQUOTE] = ACTIONS(1125), - [anon_sym_U_DQUOTE] = ACTIONS(1125), - [anon_sym_u8_DQUOTE] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(1125), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [anon_sym_NULL] = ACTIONS(1123), - [anon_sym_nullptr] = ACTIONS(1123), + [183] = { + [sym_identifier] = ACTIONS(1155), + [aux_sym_preproc_include_token1] = ACTIONS(1155), + [aux_sym_preproc_def_token1] = ACTIONS(1155), + [aux_sym_preproc_if_token1] = ACTIONS(1155), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1155), + [sym_preproc_directive] = ACTIONS(1155), + [anon_sym_LPAREN2] = ACTIONS(1157), + [anon_sym_BANG] = ACTIONS(1157), + [anon_sym_TILDE] = ACTIONS(1157), + [anon_sym_DASH] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(1155), + [anon_sym_STAR] = ACTIONS(1157), + [anon_sym_AMP] = ACTIONS(1157), + [anon_sym_SEMI] = ACTIONS(1157), + [anon_sym___extension__] = ACTIONS(1155), + [anon_sym_typedef] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1155), + [anon_sym___attribute__] = ACTIONS(1155), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1157), + [anon_sym___declspec] = ACTIONS(1155), + [anon_sym___cdecl] = ACTIONS(1155), + [anon_sym___clrcall] = ACTIONS(1155), + [anon_sym___stdcall] = ACTIONS(1155), + [anon_sym___fastcall] = ACTIONS(1155), + [anon_sym___thiscall] = ACTIONS(1155), + [anon_sym___vectorcall] = ACTIONS(1155), + [anon_sym_LBRACE] = ACTIONS(1157), + [anon_sym_RBRACE] = ACTIONS(1157), + [anon_sym_signed] = ACTIONS(1155), + [anon_sym_unsigned] = ACTIONS(1155), + [anon_sym_long] = ACTIONS(1155), + [anon_sym_short] = ACTIONS(1155), + [anon_sym_static] = ACTIONS(1155), + [anon_sym_auto] = ACTIONS(1155), + [anon_sym_register] = ACTIONS(1155), + [anon_sym_inline] = ACTIONS(1155), + [anon_sym___inline] = ACTIONS(1155), + [anon_sym___inline__] = ACTIONS(1155), + [anon_sym___forceinline] = ACTIONS(1155), + [anon_sym_thread_local] = ACTIONS(1155), + [anon_sym___thread] = ACTIONS(1155), + [anon_sym_const] = ACTIONS(1155), + [anon_sym_constexpr] = ACTIONS(1155), + [anon_sym_volatile] = ACTIONS(1155), + [anon_sym_restrict] = ACTIONS(1155), + [anon_sym___restrict__] = ACTIONS(1155), + [anon_sym__Atomic] = ACTIONS(1155), + [anon_sym__Noreturn] = ACTIONS(1155), + [anon_sym_noreturn] = ACTIONS(1155), + [anon_sym_alignas] = ACTIONS(1155), + [anon_sym__Alignas] = ACTIONS(1155), + [sym_primitive_type] = ACTIONS(1155), + [anon_sym_enum] = ACTIONS(1155), + [anon_sym_struct] = ACTIONS(1155), + [anon_sym_union] = ACTIONS(1155), + [anon_sym_if] = ACTIONS(1155), + [anon_sym_else] = ACTIONS(1155), + [anon_sym_switch] = ACTIONS(1155), + [anon_sym_case] = ACTIONS(1155), + [anon_sym_default] = ACTIONS(1155), + [anon_sym_while] = ACTIONS(1155), + [anon_sym_do] = ACTIONS(1155), + [anon_sym_for] = ACTIONS(1155), + [anon_sym_return] = ACTIONS(1155), + [anon_sym_break] = ACTIONS(1155), + [anon_sym_continue] = ACTIONS(1155), + [anon_sym_goto] = ACTIONS(1155), + [anon_sym___try] = ACTIONS(1155), + [anon_sym___leave] = ACTIONS(1155), + [anon_sym_DASH_DASH] = ACTIONS(1157), + [anon_sym_PLUS_PLUS] = ACTIONS(1157), + [anon_sym_sizeof] = ACTIONS(1155), + [anon_sym___alignof__] = ACTIONS(1155), + [anon_sym___alignof] = ACTIONS(1155), + [anon_sym__alignof] = ACTIONS(1155), + [anon_sym_alignof] = ACTIONS(1155), + [anon_sym__Alignof] = ACTIONS(1155), + [anon_sym_offsetof] = ACTIONS(1155), + [anon_sym__Generic] = ACTIONS(1155), + [anon_sym_asm] = ACTIONS(1155), + [anon_sym___asm__] = ACTIONS(1155), + [sym_number_literal] = ACTIONS(1157), + [anon_sym_L_SQUOTE] = ACTIONS(1157), + [anon_sym_u_SQUOTE] = ACTIONS(1157), + [anon_sym_U_SQUOTE] = ACTIONS(1157), + [anon_sym_u8_SQUOTE] = ACTIONS(1157), + [anon_sym_SQUOTE] = ACTIONS(1157), + [anon_sym_L_DQUOTE] = ACTIONS(1157), + [anon_sym_u_DQUOTE] = ACTIONS(1157), + [anon_sym_U_DQUOTE] = ACTIONS(1157), + [anon_sym_u8_DQUOTE] = ACTIONS(1157), + [anon_sym_DQUOTE] = ACTIONS(1157), + [sym_true] = ACTIONS(1155), + [sym_false] = ACTIONS(1155), + [anon_sym_NULL] = ACTIONS(1155), + [anon_sym_nullptr] = ACTIONS(1155), [sym_comment] = ACTIONS(3), }, - [213] = { - [sym_identifier] = ACTIONS(1143), - [aux_sym_preproc_include_token1] = ACTIONS(1143), - [aux_sym_preproc_def_token1] = ACTIONS(1143), - [aux_sym_preproc_if_token1] = ACTIONS(1143), - [aux_sym_preproc_if_token2] = ACTIONS(1143), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1143), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1143), - [sym_preproc_directive] = ACTIONS(1143), - [anon_sym_LPAREN2] = ACTIONS(1145), - [anon_sym_BANG] = ACTIONS(1145), - [anon_sym_TILDE] = ACTIONS(1145), - [anon_sym_DASH] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_STAR] = ACTIONS(1145), - [anon_sym_AMP] = ACTIONS(1145), - [anon_sym_SEMI] = ACTIONS(1145), - [anon_sym___extension__] = ACTIONS(1143), - [anon_sym_typedef] = ACTIONS(1143), - [anon_sym_extern] = ACTIONS(1143), - [anon_sym___attribute__] = ACTIONS(1143), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), - [anon_sym___declspec] = ACTIONS(1143), - [anon_sym___cdecl] = ACTIONS(1143), - [anon_sym___clrcall] = ACTIONS(1143), - [anon_sym___stdcall] = ACTIONS(1143), - [anon_sym___fastcall] = ACTIONS(1143), - [anon_sym___thiscall] = ACTIONS(1143), - [anon_sym___vectorcall] = ACTIONS(1143), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_signed] = ACTIONS(1143), - [anon_sym_unsigned] = ACTIONS(1143), - [anon_sym_long] = ACTIONS(1143), - [anon_sym_short] = ACTIONS(1143), - [anon_sym_static] = ACTIONS(1143), - [anon_sym_auto] = ACTIONS(1143), - [anon_sym_register] = ACTIONS(1143), - [anon_sym_inline] = ACTIONS(1143), - [anon_sym___inline] = ACTIONS(1143), - [anon_sym___inline__] = ACTIONS(1143), - [anon_sym___forceinline] = ACTIONS(1143), - [anon_sym_thread_local] = ACTIONS(1143), - [anon_sym___thread] = ACTIONS(1143), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_constexpr] = ACTIONS(1143), - [anon_sym_volatile] = ACTIONS(1143), - [anon_sym_restrict] = ACTIONS(1143), - [anon_sym___restrict__] = ACTIONS(1143), - [anon_sym__Atomic] = ACTIONS(1143), - [anon_sym__Noreturn] = ACTIONS(1143), - [anon_sym_noreturn] = ACTIONS(1143), - [anon_sym_alignas] = ACTIONS(1143), - [anon_sym__Alignas] = ACTIONS(1143), - [sym_primitive_type] = ACTIONS(1143), - [anon_sym_enum] = ACTIONS(1143), - [anon_sym_struct] = ACTIONS(1143), - [anon_sym_union] = ACTIONS(1143), - [anon_sym_if] = ACTIONS(1143), - [anon_sym_else] = ACTIONS(1143), - [anon_sym_switch] = ACTIONS(1143), - [anon_sym_case] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1143), - [anon_sym_while] = ACTIONS(1143), - [anon_sym_do] = ACTIONS(1143), - [anon_sym_for] = ACTIONS(1143), - [anon_sym_return] = ACTIONS(1143), - [anon_sym_break] = ACTIONS(1143), - [anon_sym_continue] = ACTIONS(1143), - [anon_sym_goto] = ACTIONS(1143), - [anon_sym___try] = ACTIONS(1143), - [anon_sym___leave] = ACTIONS(1143), - [anon_sym_DASH_DASH] = ACTIONS(1145), - [anon_sym_PLUS_PLUS] = ACTIONS(1145), - [anon_sym_sizeof] = ACTIONS(1143), - [anon_sym___alignof__] = ACTIONS(1143), - [anon_sym___alignof] = ACTIONS(1143), - [anon_sym__alignof] = ACTIONS(1143), - [anon_sym_alignof] = ACTIONS(1143), - [anon_sym__Alignof] = ACTIONS(1143), - [anon_sym_offsetof] = ACTIONS(1143), - [anon_sym__Generic] = ACTIONS(1143), - [anon_sym_asm] = ACTIONS(1143), - [anon_sym___asm__] = ACTIONS(1143), - [sym_number_literal] = ACTIONS(1145), - [anon_sym_L_SQUOTE] = ACTIONS(1145), - [anon_sym_u_SQUOTE] = ACTIONS(1145), - [anon_sym_U_SQUOTE] = ACTIONS(1145), - [anon_sym_u8_SQUOTE] = ACTIONS(1145), - [anon_sym_SQUOTE] = ACTIONS(1145), - [anon_sym_L_DQUOTE] = ACTIONS(1145), - [anon_sym_u_DQUOTE] = ACTIONS(1145), - [anon_sym_U_DQUOTE] = ACTIONS(1145), - [anon_sym_u8_DQUOTE] = ACTIONS(1145), - [anon_sym_DQUOTE] = ACTIONS(1145), - [sym_true] = ACTIONS(1143), - [sym_false] = ACTIONS(1143), - [anon_sym_NULL] = ACTIONS(1143), - [anon_sym_nullptr] = ACTIONS(1143), - [sym_comment] = ACTIONS(3), - }, - [214] = { - [sym_identifier] = ACTIONS(1127), - [aux_sym_preproc_include_token1] = ACTIONS(1127), - [aux_sym_preproc_def_token1] = ACTIONS(1127), - [aux_sym_preproc_if_token1] = ACTIONS(1127), - [aux_sym_preproc_if_token2] = ACTIONS(1127), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1127), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1127), - [sym_preproc_directive] = ACTIONS(1127), - [anon_sym_LPAREN2] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_STAR] = ACTIONS(1129), - [anon_sym_AMP] = ACTIONS(1129), - [anon_sym_SEMI] = ACTIONS(1129), - [anon_sym___extension__] = ACTIONS(1127), - [anon_sym_typedef] = ACTIONS(1127), - [anon_sym_extern] = ACTIONS(1127), - [anon_sym___attribute__] = ACTIONS(1127), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1129), - [anon_sym___declspec] = ACTIONS(1127), - [anon_sym___cdecl] = ACTIONS(1127), - [anon_sym___clrcall] = ACTIONS(1127), - [anon_sym___stdcall] = ACTIONS(1127), - [anon_sym___fastcall] = ACTIONS(1127), - [anon_sym___thiscall] = ACTIONS(1127), - [anon_sym___vectorcall] = ACTIONS(1127), - [anon_sym_LBRACE] = ACTIONS(1129), - [anon_sym_signed] = ACTIONS(1127), - [anon_sym_unsigned] = ACTIONS(1127), - [anon_sym_long] = ACTIONS(1127), - [anon_sym_short] = ACTIONS(1127), - [anon_sym_static] = ACTIONS(1127), - [anon_sym_auto] = ACTIONS(1127), - [anon_sym_register] = ACTIONS(1127), - [anon_sym_inline] = ACTIONS(1127), - [anon_sym___inline] = ACTIONS(1127), - [anon_sym___inline__] = ACTIONS(1127), - [anon_sym___forceinline] = ACTIONS(1127), - [anon_sym_thread_local] = ACTIONS(1127), - [anon_sym___thread] = ACTIONS(1127), - [anon_sym_const] = ACTIONS(1127), - [anon_sym_constexpr] = ACTIONS(1127), - [anon_sym_volatile] = ACTIONS(1127), - [anon_sym_restrict] = ACTIONS(1127), - [anon_sym___restrict__] = ACTIONS(1127), - [anon_sym__Atomic] = ACTIONS(1127), - [anon_sym__Noreturn] = ACTIONS(1127), - [anon_sym_noreturn] = ACTIONS(1127), - [anon_sym_alignas] = ACTIONS(1127), - [anon_sym__Alignas] = ACTIONS(1127), - [sym_primitive_type] = ACTIONS(1127), - [anon_sym_enum] = ACTIONS(1127), - [anon_sym_struct] = ACTIONS(1127), - [anon_sym_union] = ACTIONS(1127), - [anon_sym_if] = ACTIONS(1127), - [anon_sym_else] = ACTIONS(1127), - [anon_sym_switch] = ACTIONS(1127), - [anon_sym_case] = ACTIONS(1127), - [anon_sym_default] = ACTIONS(1127), - [anon_sym_while] = ACTIONS(1127), - [anon_sym_do] = ACTIONS(1127), - [anon_sym_for] = ACTIONS(1127), - [anon_sym_return] = ACTIONS(1127), - [anon_sym_break] = ACTIONS(1127), - [anon_sym_continue] = ACTIONS(1127), - [anon_sym_goto] = ACTIONS(1127), - [anon_sym___try] = ACTIONS(1127), - [anon_sym___leave] = ACTIONS(1127), - [anon_sym_DASH_DASH] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1129), - [anon_sym_sizeof] = ACTIONS(1127), - [anon_sym___alignof__] = ACTIONS(1127), - [anon_sym___alignof] = ACTIONS(1127), - [anon_sym__alignof] = ACTIONS(1127), - [anon_sym_alignof] = ACTIONS(1127), - [anon_sym__Alignof] = ACTIONS(1127), - [anon_sym_offsetof] = ACTIONS(1127), - [anon_sym__Generic] = ACTIONS(1127), - [anon_sym_asm] = ACTIONS(1127), - [anon_sym___asm__] = ACTIONS(1127), - [sym_number_literal] = ACTIONS(1129), - [anon_sym_L_SQUOTE] = ACTIONS(1129), - [anon_sym_u_SQUOTE] = ACTIONS(1129), - [anon_sym_U_SQUOTE] = ACTIONS(1129), - [anon_sym_u8_SQUOTE] = ACTIONS(1129), - [anon_sym_SQUOTE] = ACTIONS(1129), - [anon_sym_L_DQUOTE] = ACTIONS(1129), - [anon_sym_u_DQUOTE] = ACTIONS(1129), - [anon_sym_U_DQUOTE] = ACTIONS(1129), - [anon_sym_u8_DQUOTE] = ACTIONS(1129), - [anon_sym_DQUOTE] = ACTIONS(1129), - [sym_true] = ACTIONS(1127), - [sym_false] = ACTIONS(1127), - [anon_sym_NULL] = ACTIONS(1127), - [anon_sym_nullptr] = ACTIONS(1127), - [sym_comment] = ACTIONS(3), - }, - [215] = { - [sym_identifier] = ACTIONS(1227), - [aux_sym_preproc_include_token1] = ACTIONS(1227), - [aux_sym_preproc_def_token1] = ACTIONS(1227), - [aux_sym_preproc_if_token1] = ACTIONS(1227), - [aux_sym_preproc_if_token2] = ACTIONS(1227), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1227), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1227), - [sym_preproc_directive] = ACTIONS(1227), - [anon_sym_LPAREN2] = ACTIONS(1229), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1227), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1229), - [anon_sym_SEMI] = ACTIONS(1229), - [anon_sym___extension__] = ACTIONS(1227), - [anon_sym_typedef] = ACTIONS(1227), - [anon_sym_extern] = ACTIONS(1227), - [anon_sym___attribute__] = ACTIONS(1227), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1229), - [anon_sym___declspec] = ACTIONS(1227), - [anon_sym___cdecl] = ACTIONS(1227), - [anon_sym___clrcall] = ACTIONS(1227), - [anon_sym___stdcall] = ACTIONS(1227), - [anon_sym___fastcall] = ACTIONS(1227), - [anon_sym___thiscall] = ACTIONS(1227), - [anon_sym___vectorcall] = ACTIONS(1227), - [anon_sym_LBRACE] = ACTIONS(1229), - [anon_sym_signed] = ACTIONS(1227), - [anon_sym_unsigned] = ACTIONS(1227), - [anon_sym_long] = ACTIONS(1227), - [anon_sym_short] = ACTIONS(1227), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_auto] = ACTIONS(1227), - [anon_sym_register] = ACTIONS(1227), - [anon_sym_inline] = ACTIONS(1227), - [anon_sym___inline] = ACTIONS(1227), - [anon_sym___inline__] = ACTIONS(1227), - [anon_sym___forceinline] = ACTIONS(1227), - [anon_sym_thread_local] = ACTIONS(1227), - [anon_sym___thread] = ACTIONS(1227), - [anon_sym_const] = ACTIONS(1227), - [anon_sym_constexpr] = ACTIONS(1227), - [anon_sym_volatile] = ACTIONS(1227), - [anon_sym_restrict] = ACTIONS(1227), - [anon_sym___restrict__] = ACTIONS(1227), - [anon_sym__Atomic] = ACTIONS(1227), - [anon_sym__Noreturn] = ACTIONS(1227), - [anon_sym_noreturn] = ACTIONS(1227), - [anon_sym_alignas] = ACTIONS(1227), - [anon_sym__Alignas] = ACTIONS(1227), - [sym_primitive_type] = ACTIONS(1227), - [anon_sym_enum] = ACTIONS(1227), - [anon_sym_struct] = ACTIONS(1227), - [anon_sym_union] = ACTIONS(1227), - [anon_sym_if] = ACTIONS(1227), - [anon_sym_else] = ACTIONS(1227), - [anon_sym_switch] = ACTIONS(1227), - [anon_sym_case] = ACTIONS(1227), - [anon_sym_default] = ACTIONS(1227), - [anon_sym_while] = ACTIONS(1227), - [anon_sym_do] = ACTIONS(1227), - [anon_sym_for] = ACTIONS(1227), - [anon_sym_return] = ACTIONS(1227), - [anon_sym_break] = ACTIONS(1227), - [anon_sym_continue] = ACTIONS(1227), - [anon_sym_goto] = ACTIONS(1227), - [anon_sym___try] = ACTIONS(1227), - [anon_sym___leave] = ACTIONS(1227), - [anon_sym_DASH_DASH] = ACTIONS(1229), - [anon_sym_PLUS_PLUS] = ACTIONS(1229), - [anon_sym_sizeof] = ACTIONS(1227), - [anon_sym___alignof__] = ACTIONS(1227), - [anon_sym___alignof] = ACTIONS(1227), - [anon_sym__alignof] = ACTIONS(1227), - [anon_sym_alignof] = ACTIONS(1227), - [anon_sym__Alignof] = ACTIONS(1227), - [anon_sym_offsetof] = ACTIONS(1227), - [anon_sym__Generic] = ACTIONS(1227), - [anon_sym_asm] = ACTIONS(1227), - [anon_sym___asm__] = ACTIONS(1227), - [sym_number_literal] = ACTIONS(1229), - [anon_sym_L_SQUOTE] = ACTIONS(1229), - [anon_sym_u_SQUOTE] = ACTIONS(1229), - [anon_sym_U_SQUOTE] = ACTIONS(1229), - [anon_sym_u8_SQUOTE] = ACTIONS(1229), - [anon_sym_SQUOTE] = ACTIONS(1229), - [anon_sym_L_DQUOTE] = ACTIONS(1229), - [anon_sym_u_DQUOTE] = ACTIONS(1229), - [anon_sym_U_DQUOTE] = ACTIONS(1229), - [anon_sym_u8_DQUOTE] = ACTIONS(1229), - [anon_sym_DQUOTE] = ACTIONS(1229), - [sym_true] = ACTIONS(1227), - [sym_false] = ACTIONS(1227), - [anon_sym_NULL] = ACTIONS(1227), - [anon_sym_nullptr] = ACTIONS(1227), - [sym_comment] = ACTIONS(3), - }, - [216] = { - [sym_identifier] = ACTIONS(1219), - [aux_sym_preproc_include_token1] = ACTIONS(1219), - [aux_sym_preproc_def_token1] = ACTIONS(1219), - [aux_sym_preproc_if_token1] = ACTIONS(1219), - [aux_sym_preproc_if_token2] = ACTIONS(1219), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1219), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1219), - [sym_preproc_directive] = ACTIONS(1219), - [anon_sym_LPAREN2] = ACTIONS(1221), - [anon_sym_BANG] = ACTIONS(1221), - [anon_sym_TILDE] = ACTIONS(1221), - [anon_sym_DASH] = ACTIONS(1219), - [anon_sym_PLUS] = ACTIONS(1219), - [anon_sym_STAR] = ACTIONS(1221), - [anon_sym_AMP] = ACTIONS(1221), - [anon_sym_SEMI] = ACTIONS(1221), - [anon_sym___extension__] = ACTIONS(1219), - [anon_sym_typedef] = ACTIONS(1219), - [anon_sym_extern] = ACTIONS(1219), - [anon_sym___attribute__] = ACTIONS(1219), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1221), - [anon_sym___declspec] = ACTIONS(1219), - [anon_sym___cdecl] = ACTIONS(1219), - [anon_sym___clrcall] = ACTIONS(1219), - [anon_sym___stdcall] = ACTIONS(1219), - [anon_sym___fastcall] = ACTIONS(1219), - [anon_sym___thiscall] = ACTIONS(1219), - [anon_sym___vectorcall] = ACTIONS(1219), - [anon_sym_LBRACE] = ACTIONS(1221), - [anon_sym_signed] = ACTIONS(1219), - [anon_sym_unsigned] = ACTIONS(1219), - [anon_sym_long] = ACTIONS(1219), - [anon_sym_short] = ACTIONS(1219), - [anon_sym_static] = ACTIONS(1219), - [anon_sym_auto] = ACTIONS(1219), - [anon_sym_register] = ACTIONS(1219), - [anon_sym_inline] = ACTIONS(1219), - [anon_sym___inline] = ACTIONS(1219), - [anon_sym___inline__] = ACTIONS(1219), - [anon_sym___forceinline] = ACTIONS(1219), - [anon_sym_thread_local] = ACTIONS(1219), - [anon_sym___thread] = ACTIONS(1219), - [anon_sym_const] = ACTIONS(1219), - [anon_sym_constexpr] = ACTIONS(1219), - [anon_sym_volatile] = ACTIONS(1219), - [anon_sym_restrict] = ACTIONS(1219), - [anon_sym___restrict__] = ACTIONS(1219), - [anon_sym__Atomic] = ACTIONS(1219), - [anon_sym__Noreturn] = ACTIONS(1219), - [anon_sym_noreturn] = ACTIONS(1219), - [anon_sym_alignas] = ACTIONS(1219), - [anon_sym__Alignas] = ACTIONS(1219), - [sym_primitive_type] = ACTIONS(1219), - [anon_sym_enum] = ACTIONS(1219), - [anon_sym_struct] = ACTIONS(1219), - [anon_sym_union] = ACTIONS(1219), - [anon_sym_if] = ACTIONS(1219), - [anon_sym_else] = ACTIONS(1219), - [anon_sym_switch] = ACTIONS(1219), - [anon_sym_case] = ACTIONS(1219), - [anon_sym_default] = ACTIONS(1219), - [anon_sym_while] = ACTIONS(1219), - [anon_sym_do] = ACTIONS(1219), - [anon_sym_for] = ACTIONS(1219), - [anon_sym_return] = ACTIONS(1219), - [anon_sym_break] = ACTIONS(1219), - [anon_sym_continue] = ACTIONS(1219), - [anon_sym_goto] = ACTIONS(1219), - [anon_sym___try] = ACTIONS(1219), - [anon_sym___leave] = ACTIONS(1219), - [anon_sym_DASH_DASH] = ACTIONS(1221), - [anon_sym_PLUS_PLUS] = ACTIONS(1221), - [anon_sym_sizeof] = ACTIONS(1219), - [anon_sym___alignof__] = ACTIONS(1219), - [anon_sym___alignof] = ACTIONS(1219), - [anon_sym__alignof] = ACTIONS(1219), - [anon_sym_alignof] = ACTIONS(1219), - [anon_sym__Alignof] = ACTIONS(1219), - [anon_sym_offsetof] = ACTIONS(1219), - [anon_sym__Generic] = ACTIONS(1219), - [anon_sym_asm] = ACTIONS(1219), - [anon_sym___asm__] = ACTIONS(1219), - [sym_number_literal] = ACTIONS(1221), - [anon_sym_L_SQUOTE] = ACTIONS(1221), - [anon_sym_u_SQUOTE] = ACTIONS(1221), - [anon_sym_U_SQUOTE] = ACTIONS(1221), - [anon_sym_u8_SQUOTE] = ACTIONS(1221), - [anon_sym_SQUOTE] = ACTIONS(1221), - [anon_sym_L_DQUOTE] = ACTIONS(1221), - [anon_sym_u_DQUOTE] = ACTIONS(1221), - [anon_sym_U_DQUOTE] = ACTIONS(1221), - [anon_sym_u8_DQUOTE] = ACTIONS(1221), - [anon_sym_DQUOTE] = ACTIONS(1221), - [sym_true] = ACTIONS(1219), - [sym_false] = ACTIONS(1219), - [anon_sym_NULL] = ACTIONS(1219), - [anon_sym_nullptr] = ACTIONS(1219), + [184] = { + [sym_identifier] = ACTIONS(1159), + [aux_sym_preproc_include_token1] = ACTIONS(1159), + [aux_sym_preproc_def_token1] = ACTIONS(1159), + [aux_sym_preproc_if_token1] = ACTIONS(1159), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1159), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1159), + [sym_preproc_directive] = ACTIONS(1159), + [anon_sym_LPAREN2] = ACTIONS(1161), + [anon_sym_BANG] = ACTIONS(1161), + [anon_sym_TILDE] = ACTIONS(1161), + [anon_sym_DASH] = ACTIONS(1159), + [anon_sym_PLUS] = ACTIONS(1159), + [anon_sym_STAR] = ACTIONS(1161), + [anon_sym_AMP] = ACTIONS(1161), + [anon_sym_SEMI] = ACTIONS(1161), + [anon_sym___extension__] = ACTIONS(1159), + [anon_sym_typedef] = ACTIONS(1159), + [anon_sym_extern] = ACTIONS(1159), + [anon_sym___attribute__] = ACTIONS(1159), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1161), + [anon_sym___declspec] = ACTIONS(1159), + [anon_sym___cdecl] = ACTIONS(1159), + [anon_sym___clrcall] = ACTIONS(1159), + [anon_sym___stdcall] = ACTIONS(1159), + [anon_sym___fastcall] = ACTIONS(1159), + [anon_sym___thiscall] = ACTIONS(1159), + [anon_sym___vectorcall] = ACTIONS(1159), + [anon_sym_LBRACE] = ACTIONS(1161), + [anon_sym_RBRACE] = ACTIONS(1161), + [anon_sym_signed] = ACTIONS(1159), + [anon_sym_unsigned] = ACTIONS(1159), + [anon_sym_long] = ACTIONS(1159), + [anon_sym_short] = ACTIONS(1159), + [anon_sym_static] = ACTIONS(1159), + [anon_sym_auto] = ACTIONS(1159), + [anon_sym_register] = ACTIONS(1159), + [anon_sym_inline] = ACTIONS(1159), + [anon_sym___inline] = ACTIONS(1159), + [anon_sym___inline__] = ACTIONS(1159), + [anon_sym___forceinline] = ACTIONS(1159), + [anon_sym_thread_local] = ACTIONS(1159), + [anon_sym___thread] = ACTIONS(1159), + [anon_sym_const] = ACTIONS(1159), + [anon_sym_constexpr] = ACTIONS(1159), + [anon_sym_volatile] = ACTIONS(1159), + [anon_sym_restrict] = ACTIONS(1159), + [anon_sym___restrict__] = ACTIONS(1159), + [anon_sym__Atomic] = ACTIONS(1159), + [anon_sym__Noreturn] = ACTIONS(1159), + [anon_sym_noreturn] = ACTIONS(1159), + [anon_sym_alignas] = ACTIONS(1159), + [anon_sym__Alignas] = ACTIONS(1159), + [sym_primitive_type] = ACTIONS(1159), + [anon_sym_enum] = ACTIONS(1159), + [anon_sym_struct] = ACTIONS(1159), + [anon_sym_union] = ACTIONS(1159), + [anon_sym_if] = ACTIONS(1159), + [anon_sym_else] = ACTIONS(1159), + [anon_sym_switch] = ACTIONS(1159), + [anon_sym_case] = ACTIONS(1159), + [anon_sym_default] = ACTIONS(1159), + [anon_sym_while] = ACTIONS(1159), + [anon_sym_do] = ACTIONS(1159), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_return] = ACTIONS(1159), + [anon_sym_break] = ACTIONS(1159), + [anon_sym_continue] = ACTIONS(1159), + [anon_sym_goto] = ACTIONS(1159), + [anon_sym___try] = ACTIONS(1159), + [anon_sym___leave] = ACTIONS(1159), + [anon_sym_DASH_DASH] = ACTIONS(1161), + [anon_sym_PLUS_PLUS] = ACTIONS(1161), + [anon_sym_sizeof] = ACTIONS(1159), + [anon_sym___alignof__] = ACTIONS(1159), + [anon_sym___alignof] = ACTIONS(1159), + [anon_sym__alignof] = ACTIONS(1159), + [anon_sym_alignof] = ACTIONS(1159), + [anon_sym__Alignof] = ACTIONS(1159), + [anon_sym_offsetof] = ACTIONS(1159), + [anon_sym__Generic] = ACTIONS(1159), + [anon_sym_asm] = ACTIONS(1159), + [anon_sym___asm__] = ACTIONS(1159), + [sym_number_literal] = ACTIONS(1161), + [anon_sym_L_SQUOTE] = ACTIONS(1161), + [anon_sym_u_SQUOTE] = ACTIONS(1161), + [anon_sym_U_SQUOTE] = ACTIONS(1161), + [anon_sym_u8_SQUOTE] = ACTIONS(1161), + [anon_sym_SQUOTE] = ACTIONS(1161), + [anon_sym_L_DQUOTE] = ACTIONS(1161), + [anon_sym_u_DQUOTE] = ACTIONS(1161), + [anon_sym_U_DQUOTE] = ACTIONS(1161), + [anon_sym_u8_DQUOTE] = ACTIONS(1161), + [anon_sym_DQUOTE] = ACTIONS(1161), + [sym_true] = ACTIONS(1159), + [sym_false] = ACTIONS(1159), + [anon_sym_NULL] = ACTIONS(1159), + [anon_sym_nullptr] = ACTIONS(1159), [sym_comment] = ACTIONS(3), }, - [217] = { + [185] = { [ts_builtin_sym_end] = ACTIONS(1209), [sym_identifier] = ACTIONS(1207), [aux_sym_preproc_include_token1] = ACTIONS(1207), @@ -38377,107 +35060,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1207), [sym_comment] = ACTIONS(3), }, - [218] = { - [sym_identifier] = ACTIONS(1191), - [aux_sym_preproc_include_token1] = ACTIONS(1191), - [aux_sym_preproc_def_token1] = ACTIONS(1191), - [aux_sym_preproc_if_token1] = ACTIONS(1191), - [aux_sym_preproc_if_token2] = ACTIONS(1191), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1191), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1191), - [sym_preproc_directive] = ACTIONS(1191), - [anon_sym_LPAREN2] = ACTIONS(1193), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_TILDE] = ACTIONS(1193), - [anon_sym_DASH] = ACTIONS(1191), - [anon_sym_PLUS] = ACTIONS(1191), - [anon_sym_STAR] = ACTIONS(1193), - [anon_sym_AMP] = ACTIONS(1193), - [anon_sym_SEMI] = ACTIONS(1193), - [anon_sym___extension__] = ACTIONS(1191), - [anon_sym_typedef] = ACTIONS(1191), - [anon_sym_extern] = ACTIONS(1191), - [anon_sym___attribute__] = ACTIONS(1191), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1193), - [anon_sym___declspec] = ACTIONS(1191), - [anon_sym___cdecl] = ACTIONS(1191), - [anon_sym___clrcall] = ACTIONS(1191), - [anon_sym___stdcall] = ACTIONS(1191), - [anon_sym___fastcall] = ACTIONS(1191), - [anon_sym___thiscall] = ACTIONS(1191), - [anon_sym___vectorcall] = ACTIONS(1191), - [anon_sym_LBRACE] = ACTIONS(1193), - [anon_sym_signed] = ACTIONS(1191), - [anon_sym_unsigned] = ACTIONS(1191), - [anon_sym_long] = ACTIONS(1191), - [anon_sym_short] = ACTIONS(1191), - [anon_sym_static] = ACTIONS(1191), - [anon_sym_auto] = ACTIONS(1191), - [anon_sym_register] = ACTIONS(1191), - [anon_sym_inline] = ACTIONS(1191), - [anon_sym___inline] = ACTIONS(1191), - [anon_sym___inline__] = ACTIONS(1191), - [anon_sym___forceinline] = ACTIONS(1191), - [anon_sym_thread_local] = ACTIONS(1191), - [anon_sym___thread] = ACTIONS(1191), - [anon_sym_const] = ACTIONS(1191), - [anon_sym_constexpr] = ACTIONS(1191), - [anon_sym_volatile] = ACTIONS(1191), - [anon_sym_restrict] = ACTIONS(1191), - [anon_sym___restrict__] = ACTIONS(1191), - [anon_sym__Atomic] = ACTIONS(1191), - [anon_sym__Noreturn] = ACTIONS(1191), - [anon_sym_noreturn] = ACTIONS(1191), - [anon_sym_alignas] = ACTIONS(1191), - [anon_sym__Alignas] = ACTIONS(1191), - [sym_primitive_type] = ACTIONS(1191), - [anon_sym_enum] = ACTIONS(1191), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_union] = ACTIONS(1191), - [anon_sym_if] = ACTIONS(1191), - [anon_sym_else] = ACTIONS(1191), - [anon_sym_switch] = ACTIONS(1191), - [anon_sym_case] = ACTIONS(1191), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_while] = ACTIONS(1191), - [anon_sym_do] = ACTIONS(1191), - [anon_sym_for] = ACTIONS(1191), - [anon_sym_return] = ACTIONS(1191), - [anon_sym_break] = ACTIONS(1191), - [anon_sym_continue] = ACTIONS(1191), - [anon_sym_goto] = ACTIONS(1191), - [anon_sym___try] = ACTIONS(1191), - [anon_sym___leave] = ACTIONS(1191), - [anon_sym_DASH_DASH] = ACTIONS(1193), - [anon_sym_PLUS_PLUS] = ACTIONS(1193), - [anon_sym_sizeof] = ACTIONS(1191), - [anon_sym___alignof__] = ACTIONS(1191), - [anon_sym___alignof] = ACTIONS(1191), - [anon_sym__alignof] = ACTIONS(1191), - [anon_sym_alignof] = ACTIONS(1191), - [anon_sym__Alignof] = ACTIONS(1191), - [anon_sym_offsetof] = ACTIONS(1191), - [anon_sym__Generic] = ACTIONS(1191), - [anon_sym_asm] = ACTIONS(1191), - [anon_sym___asm__] = ACTIONS(1191), - [sym_number_literal] = ACTIONS(1193), - [anon_sym_L_SQUOTE] = ACTIONS(1193), - [anon_sym_u_SQUOTE] = ACTIONS(1193), - [anon_sym_U_SQUOTE] = ACTIONS(1193), - [anon_sym_u8_SQUOTE] = ACTIONS(1193), - [anon_sym_SQUOTE] = ACTIONS(1193), - [anon_sym_L_DQUOTE] = ACTIONS(1193), - [anon_sym_u_DQUOTE] = ACTIONS(1193), - [anon_sym_U_DQUOTE] = ACTIONS(1193), - [anon_sym_u8_DQUOTE] = ACTIONS(1193), - [anon_sym_DQUOTE] = ACTIONS(1193), - [sym_true] = ACTIONS(1191), - [sym_false] = ACTIONS(1191), - [anon_sym_NULL] = ACTIONS(1191), - [anon_sym_nullptr] = ACTIONS(1191), - [sym_comment] = ACTIONS(3), - }, - [219] = { + [186] = { [ts_builtin_sym_end] = ACTIONS(1201), [sym_identifier] = ACTIONS(1199), [aux_sym_preproc_include_token1] = ACTIONS(1199), @@ -38577,311 +35160,312 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1199), [sym_comment] = ACTIONS(3), }, - [220] = { - [sym_identifier] = ACTIONS(1143), - [aux_sym_preproc_include_token1] = ACTIONS(1143), - [aux_sym_preproc_def_token1] = ACTIONS(1143), - [aux_sym_preproc_if_token1] = ACTIONS(1143), - [aux_sym_preproc_if_token2] = ACTIONS(1143), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1143), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1143), - [sym_preproc_directive] = ACTIONS(1143), - [anon_sym_LPAREN2] = ACTIONS(1145), - [anon_sym_BANG] = ACTIONS(1145), - [anon_sym_TILDE] = ACTIONS(1145), - [anon_sym_DASH] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_STAR] = ACTIONS(1145), - [anon_sym_AMP] = ACTIONS(1145), - [anon_sym_SEMI] = ACTIONS(1145), - [anon_sym___extension__] = ACTIONS(1143), - [anon_sym_typedef] = ACTIONS(1143), - [anon_sym_extern] = ACTIONS(1143), - [anon_sym___attribute__] = ACTIONS(1143), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), - [anon_sym___declspec] = ACTIONS(1143), - [anon_sym___cdecl] = ACTIONS(1143), - [anon_sym___clrcall] = ACTIONS(1143), - [anon_sym___stdcall] = ACTIONS(1143), - [anon_sym___fastcall] = ACTIONS(1143), - [anon_sym___thiscall] = ACTIONS(1143), - [anon_sym___vectorcall] = ACTIONS(1143), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_signed] = ACTIONS(1143), - [anon_sym_unsigned] = ACTIONS(1143), - [anon_sym_long] = ACTIONS(1143), - [anon_sym_short] = ACTIONS(1143), - [anon_sym_static] = ACTIONS(1143), - [anon_sym_auto] = ACTIONS(1143), - [anon_sym_register] = ACTIONS(1143), - [anon_sym_inline] = ACTIONS(1143), - [anon_sym___inline] = ACTIONS(1143), - [anon_sym___inline__] = ACTIONS(1143), - [anon_sym___forceinline] = ACTIONS(1143), - [anon_sym_thread_local] = ACTIONS(1143), - [anon_sym___thread] = ACTIONS(1143), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_constexpr] = ACTIONS(1143), - [anon_sym_volatile] = ACTIONS(1143), - [anon_sym_restrict] = ACTIONS(1143), - [anon_sym___restrict__] = ACTIONS(1143), - [anon_sym__Atomic] = ACTIONS(1143), - [anon_sym__Noreturn] = ACTIONS(1143), - [anon_sym_noreturn] = ACTIONS(1143), - [anon_sym_alignas] = ACTIONS(1143), - [anon_sym__Alignas] = ACTIONS(1143), - [sym_primitive_type] = ACTIONS(1143), - [anon_sym_enum] = ACTIONS(1143), - [anon_sym_struct] = ACTIONS(1143), - [anon_sym_union] = ACTIONS(1143), - [anon_sym_if] = ACTIONS(1143), - [anon_sym_else] = ACTIONS(1143), - [anon_sym_switch] = ACTIONS(1143), - [anon_sym_case] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1143), - [anon_sym_while] = ACTIONS(1143), - [anon_sym_do] = ACTIONS(1143), - [anon_sym_for] = ACTIONS(1143), - [anon_sym_return] = ACTIONS(1143), - [anon_sym_break] = ACTIONS(1143), - [anon_sym_continue] = ACTIONS(1143), - [anon_sym_goto] = ACTIONS(1143), - [anon_sym___try] = ACTIONS(1143), - [anon_sym___leave] = ACTIONS(1143), - [anon_sym_DASH_DASH] = ACTIONS(1145), - [anon_sym_PLUS_PLUS] = ACTIONS(1145), - [anon_sym_sizeof] = ACTIONS(1143), - [anon_sym___alignof__] = ACTIONS(1143), - [anon_sym___alignof] = ACTIONS(1143), - [anon_sym__alignof] = ACTIONS(1143), - [anon_sym_alignof] = ACTIONS(1143), - [anon_sym__Alignof] = ACTIONS(1143), - [anon_sym_offsetof] = ACTIONS(1143), - [anon_sym__Generic] = ACTIONS(1143), - [anon_sym_asm] = ACTIONS(1143), - [anon_sym___asm__] = ACTIONS(1143), - [sym_number_literal] = ACTIONS(1145), - [anon_sym_L_SQUOTE] = ACTIONS(1145), - [anon_sym_u_SQUOTE] = ACTIONS(1145), - [anon_sym_U_SQUOTE] = ACTIONS(1145), - [anon_sym_u8_SQUOTE] = ACTIONS(1145), - [anon_sym_SQUOTE] = ACTIONS(1145), - [anon_sym_L_DQUOTE] = ACTIONS(1145), - [anon_sym_u_DQUOTE] = ACTIONS(1145), - [anon_sym_U_DQUOTE] = ACTIONS(1145), - [anon_sym_u8_DQUOTE] = ACTIONS(1145), - [anon_sym_DQUOTE] = ACTIONS(1145), - [sym_true] = ACTIONS(1143), - [sym_false] = ACTIONS(1143), - [anon_sym_NULL] = ACTIONS(1143), - [anon_sym_nullptr] = ACTIONS(1143), + [187] = { + [ts_builtin_sym_end] = ACTIONS(1209), + [sym_identifier] = ACTIONS(1207), + [aux_sym_preproc_include_token1] = ACTIONS(1207), + [aux_sym_preproc_def_token1] = ACTIONS(1207), + [aux_sym_preproc_if_token1] = ACTIONS(1207), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1207), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1207), + [sym_preproc_directive] = ACTIONS(1207), + [anon_sym_LPAREN2] = ACTIONS(1209), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_TILDE] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1207), + [anon_sym_PLUS] = ACTIONS(1207), + [anon_sym_STAR] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1209), + [anon_sym_SEMI] = ACTIONS(1209), + [anon_sym___extension__] = ACTIONS(1207), + [anon_sym_typedef] = ACTIONS(1207), + [anon_sym_extern] = ACTIONS(1207), + [anon_sym___attribute__] = ACTIONS(1207), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1209), + [anon_sym___declspec] = ACTIONS(1207), + [anon_sym___cdecl] = ACTIONS(1207), + [anon_sym___clrcall] = ACTIONS(1207), + [anon_sym___stdcall] = ACTIONS(1207), + [anon_sym___fastcall] = ACTIONS(1207), + [anon_sym___thiscall] = ACTIONS(1207), + [anon_sym___vectorcall] = ACTIONS(1207), + [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_signed] = ACTIONS(1207), + [anon_sym_unsigned] = ACTIONS(1207), + [anon_sym_long] = ACTIONS(1207), + [anon_sym_short] = ACTIONS(1207), + [anon_sym_static] = ACTIONS(1207), + [anon_sym_auto] = ACTIONS(1207), + [anon_sym_register] = ACTIONS(1207), + [anon_sym_inline] = ACTIONS(1207), + [anon_sym___inline] = ACTIONS(1207), + [anon_sym___inline__] = ACTIONS(1207), + [anon_sym___forceinline] = ACTIONS(1207), + [anon_sym_thread_local] = ACTIONS(1207), + [anon_sym___thread] = ACTIONS(1207), + [anon_sym_const] = ACTIONS(1207), + [anon_sym_constexpr] = ACTIONS(1207), + [anon_sym_volatile] = ACTIONS(1207), + [anon_sym_restrict] = ACTIONS(1207), + [anon_sym___restrict__] = ACTIONS(1207), + [anon_sym__Atomic] = ACTIONS(1207), + [anon_sym__Noreturn] = ACTIONS(1207), + [anon_sym_noreturn] = ACTIONS(1207), + [anon_sym_alignas] = ACTIONS(1207), + [anon_sym__Alignas] = ACTIONS(1207), + [sym_primitive_type] = ACTIONS(1207), + [anon_sym_enum] = ACTIONS(1207), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_union] = ACTIONS(1207), + [anon_sym_if] = ACTIONS(1207), + [anon_sym_else] = ACTIONS(1207), + [anon_sym_switch] = ACTIONS(1207), + [anon_sym_case] = ACTIONS(1207), + [anon_sym_default] = ACTIONS(1207), + [anon_sym_while] = ACTIONS(1207), + [anon_sym_do] = ACTIONS(1207), + [anon_sym_for] = ACTIONS(1207), + [anon_sym_return] = ACTIONS(1207), + [anon_sym_break] = ACTIONS(1207), + [anon_sym_continue] = ACTIONS(1207), + [anon_sym_goto] = ACTIONS(1207), + [anon_sym___try] = ACTIONS(1207), + [anon_sym___leave] = ACTIONS(1207), + [anon_sym_DASH_DASH] = ACTIONS(1209), + [anon_sym_PLUS_PLUS] = ACTIONS(1209), + [anon_sym_sizeof] = ACTIONS(1207), + [anon_sym___alignof__] = ACTIONS(1207), + [anon_sym___alignof] = ACTIONS(1207), + [anon_sym__alignof] = ACTIONS(1207), + [anon_sym_alignof] = ACTIONS(1207), + [anon_sym__Alignof] = ACTIONS(1207), + [anon_sym_offsetof] = ACTIONS(1207), + [anon_sym__Generic] = ACTIONS(1207), + [anon_sym_asm] = ACTIONS(1207), + [anon_sym___asm__] = ACTIONS(1207), + [sym_number_literal] = ACTIONS(1209), + [anon_sym_L_SQUOTE] = ACTIONS(1209), + [anon_sym_u_SQUOTE] = ACTIONS(1209), + [anon_sym_U_SQUOTE] = ACTIONS(1209), + [anon_sym_u8_SQUOTE] = ACTIONS(1209), + [anon_sym_SQUOTE] = ACTIONS(1209), + [anon_sym_L_DQUOTE] = ACTIONS(1209), + [anon_sym_u_DQUOTE] = ACTIONS(1209), + [anon_sym_U_DQUOTE] = ACTIONS(1209), + [anon_sym_u8_DQUOTE] = ACTIONS(1209), + [anon_sym_DQUOTE] = ACTIONS(1209), + [sym_true] = ACTIONS(1207), + [sym_false] = ACTIONS(1207), + [anon_sym_NULL] = ACTIONS(1207), + [anon_sym_nullptr] = ACTIONS(1207), [sym_comment] = ACTIONS(3), }, - [221] = { - [sym_identifier] = ACTIONS(1187), - [aux_sym_preproc_include_token1] = ACTIONS(1187), - [aux_sym_preproc_def_token1] = ACTIONS(1187), - [aux_sym_preproc_if_token1] = ACTIONS(1187), - [aux_sym_preproc_if_token2] = ACTIONS(1187), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1187), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1187), - [sym_preproc_directive] = ACTIONS(1187), - [anon_sym_LPAREN2] = ACTIONS(1189), - [anon_sym_BANG] = ACTIONS(1189), - [anon_sym_TILDE] = ACTIONS(1189), - [anon_sym_DASH] = ACTIONS(1187), - [anon_sym_PLUS] = ACTIONS(1187), - [anon_sym_STAR] = ACTIONS(1189), - [anon_sym_AMP] = ACTIONS(1189), - [anon_sym_SEMI] = ACTIONS(1189), - [anon_sym___extension__] = ACTIONS(1187), - [anon_sym_typedef] = ACTIONS(1187), - [anon_sym_extern] = ACTIONS(1187), - [anon_sym___attribute__] = ACTIONS(1187), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1189), - [anon_sym___declspec] = ACTIONS(1187), - [anon_sym___cdecl] = ACTIONS(1187), - [anon_sym___clrcall] = ACTIONS(1187), - [anon_sym___stdcall] = ACTIONS(1187), - [anon_sym___fastcall] = ACTIONS(1187), - [anon_sym___thiscall] = ACTIONS(1187), - [anon_sym___vectorcall] = ACTIONS(1187), - [anon_sym_LBRACE] = ACTIONS(1189), - [anon_sym_signed] = ACTIONS(1187), - [anon_sym_unsigned] = ACTIONS(1187), - [anon_sym_long] = ACTIONS(1187), - [anon_sym_short] = ACTIONS(1187), - [anon_sym_static] = ACTIONS(1187), - [anon_sym_auto] = ACTIONS(1187), - [anon_sym_register] = ACTIONS(1187), - [anon_sym_inline] = ACTIONS(1187), - [anon_sym___inline] = ACTIONS(1187), - [anon_sym___inline__] = ACTIONS(1187), - [anon_sym___forceinline] = ACTIONS(1187), - [anon_sym_thread_local] = ACTIONS(1187), - [anon_sym___thread] = ACTIONS(1187), - [anon_sym_const] = ACTIONS(1187), - [anon_sym_constexpr] = ACTIONS(1187), - [anon_sym_volatile] = ACTIONS(1187), - [anon_sym_restrict] = ACTIONS(1187), - [anon_sym___restrict__] = ACTIONS(1187), - [anon_sym__Atomic] = ACTIONS(1187), - [anon_sym__Noreturn] = ACTIONS(1187), - [anon_sym_noreturn] = ACTIONS(1187), - [anon_sym_alignas] = ACTIONS(1187), - [anon_sym__Alignas] = ACTIONS(1187), - [sym_primitive_type] = ACTIONS(1187), - [anon_sym_enum] = ACTIONS(1187), - [anon_sym_struct] = ACTIONS(1187), - [anon_sym_union] = ACTIONS(1187), - [anon_sym_if] = ACTIONS(1187), - [anon_sym_else] = ACTIONS(1187), - [anon_sym_switch] = ACTIONS(1187), - [anon_sym_case] = ACTIONS(1187), - [anon_sym_default] = ACTIONS(1187), - [anon_sym_while] = ACTIONS(1187), - [anon_sym_do] = ACTIONS(1187), - [anon_sym_for] = ACTIONS(1187), - [anon_sym_return] = ACTIONS(1187), - [anon_sym_break] = ACTIONS(1187), - [anon_sym_continue] = ACTIONS(1187), - [anon_sym_goto] = ACTIONS(1187), - [anon_sym___try] = ACTIONS(1187), - [anon_sym___leave] = ACTIONS(1187), - [anon_sym_DASH_DASH] = ACTIONS(1189), - [anon_sym_PLUS_PLUS] = ACTIONS(1189), - [anon_sym_sizeof] = ACTIONS(1187), - [anon_sym___alignof__] = ACTIONS(1187), - [anon_sym___alignof] = ACTIONS(1187), - [anon_sym__alignof] = ACTIONS(1187), - [anon_sym_alignof] = ACTIONS(1187), - [anon_sym__Alignof] = ACTIONS(1187), - [anon_sym_offsetof] = ACTIONS(1187), - [anon_sym__Generic] = ACTIONS(1187), - [anon_sym_asm] = ACTIONS(1187), - [anon_sym___asm__] = ACTIONS(1187), - [sym_number_literal] = ACTIONS(1189), - [anon_sym_L_SQUOTE] = ACTIONS(1189), - [anon_sym_u_SQUOTE] = ACTIONS(1189), - [anon_sym_U_SQUOTE] = ACTIONS(1189), - [anon_sym_u8_SQUOTE] = ACTIONS(1189), - [anon_sym_SQUOTE] = ACTIONS(1189), - [anon_sym_L_DQUOTE] = ACTIONS(1189), - [anon_sym_u_DQUOTE] = ACTIONS(1189), - [anon_sym_U_DQUOTE] = ACTIONS(1189), - [anon_sym_u8_DQUOTE] = ACTIONS(1189), - [anon_sym_DQUOTE] = ACTIONS(1189), - [sym_true] = ACTIONS(1187), - [sym_false] = ACTIONS(1187), - [anon_sym_NULL] = ACTIONS(1187), - [anon_sym_nullptr] = ACTIONS(1187), + [188] = { + [ts_builtin_sym_end] = ACTIONS(1217), + [sym_identifier] = ACTIONS(1215), + [aux_sym_preproc_include_token1] = ACTIONS(1215), + [aux_sym_preproc_def_token1] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1215), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1215), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1215), + [sym_preproc_directive] = ACTIONS(1215), + [anon_sym_LPAREN2] = ACTIONS(1217), + [anon_sym_BANG] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1217), + [anon_sym_DASH] = ACTIONS(1215), + [anon_sym_PLUS] = ACTIONS(1215), + [anon_sym_STAR] = ACTIONS(1217), + [anon_sym_AMP] = ACTIONS(1217), + [anon_sym_SEMI] = ACTIONS(1217), + [anon_sym___extension__] = ACTIONS(1215), + [anon_sym_typedef] = ACTIONS(1215), + [anon_sym_extern] = ACTIONS(1215), + [anon_sym___attribute__] = ACTIONS(1215), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1217), + [anon_sym___declspec] = ACTIONS(1215), + [anon_sym___cdecl] = ACTIONS(1215), + [anon_sym___clrcall] = ACTIONS(1215), + [anon_sym___stdcall] = ACTIONS(1215), + [anon_sym___fastcall] = ACTIONS(1215), + [anon_sym___thiscall] = ACTIONS(1215), + [anon_sym___vectorcall] = ACTIONS(1215), + [anon_sym_LBRACE] = ACTIONS(1217), + [anon_sym_signed] = ACTIONS(1215), + [anon_sym_unsigned] = ACTIONS(1215), + [anon_sym_long] = ACTIONS(1215), + [anon_sym_short] = ACTIONS(1215), + [anon_sym_static] = ACTIONS(1215), + [anon_sym_auto] = ACTIONS(1215), + [anon_sym_register] = ACTIONS(1215), + [anon_sym_inline] = ACTIONS(1215), + [anon_sym___inline] = ACTIONS(1215), + [anon_sym___inline__] = ACTIONS(1215), + [anon_sym___forceinline] = ACTIONS(1215), + [anon_sym_thread_local] = ACTIONS(1215), + [anon_sym___thread] = ACTIONS(1215), + [anon_sym_const] = ACTIONS(1215), + [anon_sym_constexpr] = ACTIONS(1215), + [anon_sym_volatile] = ACTIONS(1215), + [anon_sym_restrict] = ACTIONS(1215), + [anon_sym___restrict__] = ACTIONS(1215), + [anon_sym__Atomic] = ACTIONS(1215), + [anon_sym__Noreturn] = ACTIONS(1215), + [anon_sym_noreturn] = ACTIONS(1215), + [anon_sym_alignas] = ACTIONS(1215), + [anon_sym__Alignas] = 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(1215), + [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___try] = ACTIONS(1215), + [anon_sym___leave] = ACTIONS(1215), + [anon_sym_DASH_DASH] = ACTIONS(1217), + [anon_sym_PLUS_PLUS] = ACTIONS(1217), + [anon_sym_sizeof] = ACTIONS(1215), + [anon_sym___alignof__] = ACTIONS(1215), + [anon_sym___alignof] = ACTIONS(1215), + [anon_sym__alignof] = ACTIONS(1215), + [anon_sym_alignof] = ACTIONS(1215), + [anon_sym__Alignof] = ACTIONS(1215), + [anon_sym_offsetof] = ACTIONS(1215), + [anon_sym__Generic] = ACTIONS(1215), + [anon_sym_asm] = ACTIONS(1215), + [anon_sym___asm__] = ACTIONS(1215), + [sym_number_literal] = ACTIONS(1217), + [anon_sym_L_SQUOTE] = ACTIONS(1217), + [anon_sym_u_SQUOTE] = ACTIONS(1217), + [anon_sym_U_SQUOTE] = ACTIONS(1217), + [anon_sym_u8_SQUOTE] = ACTIONS(1217), + [anon_sym_SQUOTE] = ACTIONS(1217), + [anon_sym_L_DQUOTE] = ACTIONS(1217), + [anon_sym_u_DQUOTE] = ACTIONS(1217), + [anon_sym_U_DQUOTE] = ACTIONS(1217), + [anon_sym_u8_DQUOTE] = ACTIONS(1217), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_true] = ACTIONS(1215), + [sym_false] = ACTIONS(1215), + [anon_sym_NULL] = ACTIONS(1215), + [anon_sym_nullptr] = ACTIONS(1215), [sym_comment] = ACTIONS(3), }, - [222] = { - [sym_identifier] = ACTIONS(1147), - [aux_sym_preproc_include_token1] = ACTIONS(1147), - [aux_sym_preproc_def_token1] = ACTIONS(1147), - [aux_sym_preproc_if_token1] = ACTIONS(1147), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1147), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1147), - [sym_preproc_directive] = ACTIONS(1147), - [anon_sym_LPAREN2] = ACTIONS(1149), - [anon_sym_BANG] = ACTIONS(1149), - [anon_sym_TILDE] = ACTIONS(1149), - [anon_sym_DASH] = ACTIONS(1147), - [anon_sym_PLUS] = ACTIONS(1147), - [anon_sym_STAR] = ACTIONS(1149), - [anon_sym_AMP] = ACTIONS(1149), - [anon_sym_SEMI] = ACTIONS(1149), - [anon_sym___extension__] = ACTIONS(1147), - [anon_sym_typedef] = ACTIONS(1147), - [anon_sym_extern] = ACTIONS(1147), - [anon_sym___attribute__] = ACTIONS(1147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1149), - [anon_sym___declspec] = ACTIONS(1147), - [anon_sym___cdecl] = ACTIONS(1147), - [anon_sym___clrcall] = ACTIONS(1147), - [anon_sym___stdcall] = ACTIONS(1147), - [anon_sym___fastcall] = ACTIONS(1147), - [anon_sym___thiscall] = ACTIONS(1147), - [anon_sym___vectorcall] = ACTIONS(1147), - [anon_sym_LBRACE] = ACTIONS(1149), - [anon_sym_RBRACE] = ACTIONS(1149), - [anon_sym_signed] = ACTIONS(1147), - [anon_sym_unsigned] = ACTIONS(1147), - [anon_sym_long] = ACTIONS(1147), - [anon_sym_short] = ACTIONS(1147), - [anon_sym_static] = ACTIONS(1147), - [anon_sym_auto] = ACTIONS(1147), - [anon_sym_register] = ACTIONS(1147), - [anon_sym_inline] = ACTIONS(1147), - [anon_sym___inline] = ACTIONS(1147), - [anon_sym___inline__] = ACTIONS(1147), - [anon_sym___forceinline] = ACTIONS(1147), - [anon_sym_thread_local] = ACTIONS(1147), - [anon_sym___thread] = ACTIONS(1147), - [anon_sym_const] = ACTIONS(1147), - [anon_sym_constexpr] = ACTIONS(1147), - [anon_sym_volatile] = ACTIONS(1147), - [anon_sym_restrict] = ACTIONS(1147), - [anon_sym___restrict__] = ACTIONS(1147), - [anon_sym__Atomic] = ACTIONS(1147), - [anon_sym__Noreturn] = ACTIONS(1147), - [anon_sym_noreturn] = ACTIONS(1147), - [anon_sym_alignas] = ACTIONS(1147), - [anon_sym__Alignas] = ACTIONS(1147), - [sym_primitive_type] = ACTIONS(1147), - [anon_sym_enum] = ACTIONS(1147), - [anon_sym_struct] = ACTIONS(1147), - [anon_sym_union] = ACTIONS(1147), - [anon_sym_if] = ACTIONS(1147), - [anon_sym_else] = ACTIONS(1147), - [anon_sym_switch] = ACTIONS(1147), - [anon_sym_case] = ACTIONS(1147), - [anon_sym_default] = ACTIONS(1147), - [anon_sym_while] = ACTIONS(1147), - [anon_sym_do] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1147), - [anon_sym_return] = ACTIONS(1147), - [anon_sym_break] = ACTIONS(1147), - [anon_sym_continue] = ACTIONS(1147), - [anon_sym_goto] = ACTIONS(1147), - [anon_sym___try] = ACTIONS(1147), - [anon_sym___leave] = ACTIONS(1147), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_sizeof] = ACTIONS(1147), - [anon_sym___alignof__] = ACTIONS(1147), - [anon_sym___alignof] = ACTIONS(1147), - [anon_sym__alignof] = ACTIONS(1147), - [anon_sym_alignof] = ACTIONS(1147), - [anon_sym__Alignof] = ACTIONS(1147), - [anon_sym_offsetof] = ACTIONS(1147), - [anon_sym__Generic] = ACTIONS(1147), - [anon_sym_asm] = ACTIONS(1147), - [anon_sym___asm__] = ACTIONS(1147), - [sym_number_literal] = ACTIONS(1149), - [anon_sym_L_SQUOTE] = ACTIONS(1149), - [anon_sym_u_SQUOTE] = ACTIONS(1149), - [anon_sym_U_SQUOTE] = ACTIONS(1149), - [anon_sym_u8_SQUOTE] = ACTIONS(1149), - [anon_sym_SQUOTE] = ACTIONS(1149), - [anon_sym_L_DQUOTE] = ACTIONS(1149), - [anon_sym_u_DQUOTE] = ACTIONS(1149), - [anon_sym_U_DQUOTE] = ACTIONS(1149), - [anon_sym_u8_DQUOTE] = ACTIONS(1149), - [anon_sym_DQUOTE] = ACTIONS(1149), - [sym_true] = ACTIONS(1147), - [sym_false] = ACTIONS(1147), - [anon_sym_NULL] = ACTIONS(1147), - [anon_sym_nullptr] = ACTIONS(1147), + [189] = { + [sym_identifier] = ACTIONS(1191), + [aux_sym_preproc_include_token1] = ACTIONS(1191), + [aux_sym_preproc_def_token1] = ACTIONS(1191), + [aux_sym_preproc_if_token1] = ACTIONS(1191), + [aux_sym_preproc_if_token2] = ACTIONS(1191), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1191), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1191), + [sym_preproc_directive] = ACTIONS(1191), + [anon_sym_LPAREN2] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(1193), + [anon_sym_TILDE] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1191), + [anon_sym_STAR] = ACTIONS(1193), + [anon_sym_AMP] = ACTIONS(1193), + [anon_sym_SEMI] = ACTIONS(1193), + [anon_sym___extension__] = ACTIONS(1191), + [anon_sym_typedef] = ACTIONS(1191), + [anon_sym_extern] = ACTIONS(1191), + [anon_sym___attribute__] = ACTIONS(1191), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1193), + [anon_sym___declspec] = ACTIONS(1191), + [anon_sym___cdecl] = ACTIONS(1191), + [anon_sym___clrcall] = ACTIONS(1191), + [anon_sym___stdcall] = ACTIONS(1191), + [anon_sym___fastcall] = ACTIONS(1191), + [anon_sym___thiscall] = ACTIONS(1191), + [anon_sym___vectorcall] = ACTIONS(1191), + [anon_sym_LBRACE] = ACTIONS(1193), + [anon_sym_signed] = ACTIONS(1191), + [anon_sym_unsigned] = ACTIONS(1191), + [anon_sym_long] = ACTIONS(1191), + [anon_sym_short] = ACTIONS(1191), + [anon_sym_static] = ACTIONS(1191), + [anon_sym_auto] = ACTIONS(1191), + [anon_sym_register] = ACTIONS(1191), + [anon_sym_inline] = ACTIONS(1191), + [anon_sym___inline] = ACTIONS(1191), + [anon_sym___inline__] = ACTIONS(1191), + [anon_sym___forceinline] = ACTIONS(1191), + [anon_sym_thread_local] = ACTIONS(1191), + [anon_sym___thread] = ACTIONS(1191), + [anon_sym_const] = ACTIONS(1191), + [anon_sym_constexpr] = ACTIONS(1191), + [anon_sym_volatile] = ACTIONS(1191), + [anon_sym_restrict] = ACTIONS(1191), + [anon_sym___restrict__] = ACTIONS(1191), + [anon_sym__Atomic] = ACTIONS(1191), + [anon_sym__Noreturn] = ACTIONS(1191), + [anon_sym_noreturn] = ACTIONS(1191), + [anon_sym_alignas] = ACTIONS(1191), + [anon_sym__Alignas] = ACTIONS(1191), + [sym_primitive_type] = ACTIONS(1191), + [anon_sym_enum] = ACTIONS(1191), + [anon_sym_struct] = ACTIONS(1191), + [anon_sym_union] = ACTIONS(1191), + [anon_sym_if] = ACTIONS(1191), + [anon_sym_else] = ACTIONS(1191), + [anon_sym_switch] = ACTIONS(1191), + [anon_sym_case] = ACTIONS(1191), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_while] = ACTIONS(1191), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1191), + [anon_sym_return] = ACTIONS(1191), + [anon_sym_break] = ACTIONS(1191), + [anon_sym_continue] = ACTIONS(1191), + [anon_sym_goto] = ACTIONS(1191), + [anon_sym___try] = ACTIONS(1191), + [anon_sym___leave] = ACTIONS(1191), + [anon_sym_DASH_DASH] = ACTIONS(1193), + [anon_sym_PLUS_PLUS] = ACTIONS(1193), + [anon_sym_sizeof] = ACTIONS(1191), + [anon_sym___alignof__] = ACTIONS(1191), + [anon_sym___alignof] = ACTIONS(1191), + [anon_sym__alignof] = ACTIONS(1191), + [anon_sym_alignof] = ACTIONS(1191), + [anon_sym__Alignof] = ACTIONS(1191), + [anon_sym_offsetof] = ACTIONS(1191), + [anon_sym__Generic] = ACTIONS(1191), + [anon_sym_asm] = ACTIONS(1191), + [anon_sym___asm__] = ACTIONS(1191), + [sym_number_literal] = ACTIONS(1193), + [anon_sym_L_SQUOTE] = ACTIONS(1193), + [anon_sym_u_SQUOTE] = ACTIONS(1193), + [anon_sym_U_SQUOTE] = ACTIONS(1193), + [anon_sym_u8_SQUOTE] = ACTIONS(1193), + [anon_sym_SQUOTE] = ACTIONS(1193), + [anon_sym_L_DQUOTE] = ACTIONS(1193), + [anon_sym_u_DQUOTE] = ACTIONS(1193), + [anon_sym_U_DQUOTE] = ACTIONS(1193), + [anon_sym_u8_DQUOTE] = ACTIONS(1193), + [anon_sym_DQUOTE] = ACTIONS(1193), + [sym_true] = ACTIONS(1191), + [sym_false] = ACTIONS(1191), + [anon_sym_NULL] = ACTIONS(1191), + [anon_sym_nullptr] = ACTIONS(1191), [sym_comment] = ACTIONS(3), }, - [223] = { + [190] = { [sym_identifier] = ACTIONS(1203), [aux_sym_preproc_include_token1] = ACTIONS(1203), [aux_sym_preproc_def_token1] = ACTIONS(1203), [aux_sym_preproc_if_token1] = ACTIONS(1203), + [aux_sym_preproc_if_token2] = ACTIONS(1203), [aux_sym_preproc_ifdef_token1] = ACTIONS(1203), [aux_sym_preproc_ifdef_token2] = ACTIONS(1203), [sym_preproc_directive] = ACTIONS(1203), @@ -38906,7 +35490,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1203), [anon_sym___vectorcall] = ACTIONS(1203), [anon_sym_LBRACE] = ACTIONS(1205), - [anon_sym_RBRACE] = ACTIONS(1205), [anon_sym_signed] = ACTIONS(1203), [anon_sym_unsigned] = ACTIONS(1203), [anon_sym_long] = ACTIONS(1203), @@ -38977,707 +35560,308 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1203), [sym_comment] = ACTIONS(3), }, - [224] = { - [sym_identifier] = ACTIONS(1159), - [aux_sym_preproc_include_token1] = ACTIONS(1159), - [aux_sym_preproc_def_token1] = ACTIONS(1159), - [aux_sym_preproc_if_token1] = ACTIONS(1159), - [aux_sym_preproc_if_token2] = ACTIONS(1159), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1159), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1159), - [sym_preproc_directive] = ACTIONS(1159), - [anon_sym_LPAREN2] = ACTIONS(1161), - [anon_sym_BANG] = ACTIONS(1161), - [anon_sym_TILDE] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1159), - [anon_sym_PLUS] = ACTIONS(1159), - [anon_sym_STAR] = ACTIONS(1161), - [anon_sym_AMP] = ACTIONS(1161), - [anon_sym_SEMI] = ACTIONS(1161), - [anon_sym___extension__] = ACTIONS(1159), - [anon_sym_typedef] = ACTIONS(1159), - [anon_sym_extern] = ACTIONS(1159), - [anon_sym___attribute__] = ACTIONS(1159), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1161), - [anon_sym___declspec] = ACTIONS(1159), - [anon_sym___cdecl] = ACTIONS(1159), - [anon_sym___clrcall] = ACTIONS(1159), - [anon_sym___stdcall] = ACTIONS(1159), - [anon_sym___fastcall] = ACTIONS(1159), - [anon_sym___thiscall] = ACTIONS(1159), - [anon_sym___vectorcall] = ACTIONS(1159), - [anon_sym_LBRACE] = ACTIONS(1161), - [anon_sym_signed] = ACTIONS(1159), - [anon_sym_unsigned] = ACTIONS(1159), - [anon_sym_long] = ACTIONS(1159), - [anon_sym_short] = ACTIONS(1159), - [anon_sym_static] = ACTIONS(1159), - [anon_sym_auto] = ACTIONS(1159), - [anon_sym_register] = ACTIONS(1159), - [anon_sym_inline] = ACTIONS(1159), - [anon_sym___inline] = ACTIONS(1159), - [anon_sym___inline__] = ACTIONS(1159), - [anon_sym___forceinline] = ACTIONS(1159), - [anon_sym_thread_local] = ACTIONS(1159), - [anon_sym___thread] = ACTIONS(1159), - [anon_sym_const] = ACTIONS(1159), - [anon_sym_constexpr] = ACTIONS(1159), - [anon_sym_volatile] = ACTIONS(1159), - [anon_sym_restrict] = ACTIONS(1159), - [anon_sym___restrict__] = ACTIONS(1159), - [anon_sym__Atomic] = ACTIONS(1159), - [anon_sym__Noreturn] = ACTIONS(1159), - [anon_sym_noreturn] = ACTIONS(1159), - [anon_sym_alignas] = ACTIONS(1159), - [anon_sym__Alignas] = ACTIONS(1159), - [sym_primitive_type] = ACTIONS(1159), - [anon_sym_enum] = ACTIONS(1159), - [anon_sym_struct] = ACTIONS(1159), - [anon_sym_union] = ACTIONS(1159), - [anon_sym_if] = ACTIONS(1159), - [anon_sym_else] = ACTIONS(1159), - [anon_sym_switch] = ACTIONS(1159), - [anon_sym_case] = ACTIONS(1159), - [anon_sym_default] = ACTIONS(1159), - [anon_sym_while] = ACTIONS(1159), - [anon_sym_do] = ACTIONS(1159), - [anon_sym_for] = ACTIONS(1159), - [anon_sym_return] = ACTIONS(1159), - [anon_sym_break] = ACTIONS(1159), - [anon_sym_continue] = ACTIONS(1159), - [anon_sym_goto] = ACTIONS(1159), - [anon_sym___try] = ACTIONS(1159), - [anon_sym___leave] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1161), - [anon_sym_PLUS_PLUS] = ACTIONS(1161), - [anon_sym_sizeof] = ACTIONS(1159), - [anon_sym___alignof__] = ACTIONS(1159), - [anon_sym___alignof] = ACTIONS(1159), - [anon_sym__alignof] = ACTIONS(1159), - [anon_sym_alignof] = ACTIONS(1159), - [anon_sym__Alignof] = ACTIONS(1159), - [anon_sym_offsetof] = ACTIONS(1159), - [anon_sym__Generic] = ACTIONS(1159), - [anon_sym_asm] = ACTIONS(1159), - [anon_sym___asm__] = ACTIONS(1159), - [sym_number_literal] = ACTIONS(1161), - [anon_sym_L_SQUOTE] = ACTIONS(1161), - [anon_sym_u_SQUOTE] = ACTIONS(1161), - [anon_sym_U_SQUOTE] = ACTIONS(1161), - [anon_sym_u8_SQUOTE] = ACTIONS(1161), - [anon_sym_SQUOTE] = ACTIONS(1161), - [anon_sym_L_DQUOTE] = ACTIONS(1161), - [anon_sym_u_DQUOTE] = ACTIONS(1161), - [anon_sym_U_DQUOTE] = ACTIONS(1161), - [anon_sym_u8_DQUOTE] = ACTIONS(1161), - [anon_sym_DQUOTE] = ACTIONS(1161), - [sym_true] = ACTIONS(1159), - [sym_false] = ACTIONS(1159), - [anon_sym_NULL] = ACTIONS(1159), - [anon_sym_nullptr] = ACTIONS(1159), - [sym_comment] = ACTIONS(3), - }, - [225] = { - [sym_identifier] = ACTIONS(1147), - [aux_sym_preproc_include_token1] = ACTIONS(1147), - [aux_sym_preproc_def_token1] = ACTIONS(1147), - [aux_sym_preproc_if_token1] = ACTIONS(1147), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1147), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1147), - [sym_preproc_directive] = ACTIONS(1147), - [anon_sym_LPAREN2] = ACTIONS(1149), - [anon_sym_BANG] = ACTIONS(1149), - [anon_sym_TILDE] = ACTIONS(1149), - [anon_sym_DASH] = ACTIONS(1147), - [anon_sym_PLUS] = ACTIONS(1147), - [anon_sym_STAR] = ACTIONS(1149), - [anon_sym_AMP] = ACTIONS(1149), - [anon_sym_SEMI] = ACTIONS(1149), - [anon_sym___extension__] = ACTIONS(1147), - [anon_sym_typedef] = ACTIONS(1147), - [anon_sym_extern] = ACTIONS(1147), - [anon_sym___attribute__] = ACTIONS(1147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1149), - [anon_sym___declspec] = ACTIONS(1147), - [anon_sym___cdecl] = ACTIONS(1147), - [anon_sym___clrcall] = ACTIONS(1147), - [anon_sym___stdcall] = ACTIONS(1147), - [anon_sym___fastcall] = ACTIONS(1147), - [anon_sym___thiscall] = ACTIONS(1147), - [anon_sym___vectorcall] = ACTIONS(1147), - [anon_sym_LBRACE] = ACTIONS(1149), - [anon_sym_RBRACE] = ACTIONS(1149), - [anon_sym_signed] = ACTIONS(1147), - [anon_sym_unsigned] = ACTIONS(1147), - [anon_sym_long] = ACTIONS(1147), - [anon_sym_short] = ACTIONS(1147), - [anon_sym_static] = ACTIONS(1147), - [anon_sym_auto] = ACTIONS(1147), - [anon_sym_register] = ACTIONS(1147), - [anon_sym_inline] = ACTIONS(1147), - [anon_sym___inline] = ACTIONS(1147), - [anon_sym___inline__] = ACTIONS(1147), - [anon_sym___forceinline] = ACTIONS(1147), - [anon_sym_thread_local] = ACTIONS(1147), - [anon_sym___thread] = ACTIONS(1147), - [anon_sym_const] = ACTIONS(1147), - [anon_sym_constexpr] = ACTIONS(1147), - [anon_sym_volatile] = ACTIONS(1147), - [anon_sym_restrict] = ACTIONS(1147), - [anon_sym___restrict__] = ACTIONS(1147), - [anon_sym__Atomic] = ACTIONS(1147), - [anon_sym__Noreturn] = ACTIONS(1147), - [anon_sym_noreturn] = ACTIONS(1147), - [anon_sym_alignas] = ACTIONS(1147), - [anon_sym__Alignas] = ACTIONS(1147), - [sym_primitive_type] = ACTIONS(1147), - [anon_sym_enum] = ACTIONS(1147), - [anon_sym_struct] = ACTIONS(1147), - [anon_sym_union] = ACTIONS(1147), - [anon_sym_if] = ACTIONS(1147), - [anon_sym_else] = ACTIONS(1147), - [anon_sym_switch] = ACTIONS(1147), - [anon_sym_case] = ACTIONS(1147), - [anon_sym_default] = ACTIONS(1147), - [anon_sym_while] = ACTIONS(1147), - [anon_sym_do] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1147), - [anon_sym_return] = ACTIONS(1147), - [anon_sym_break] = ACTIONS(1147), - [anon_sym_continue] = ACTIONS(1147), - [anon_sym_goto] = ACTIONS(1147), - [anon_sym___try] = ACTIONS(1147), - [anon_sym___leave] = ACTIONS(1147), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_sizeof] = ACTIONS(1147), - [anon_sym___alignof__] = ACTIONS(1147), - [anon_sym___alignof] = ACTIONS(1147), - [anon_sym__alignof] = ACTIONS(1147), - [anon_sym_alignof] = ACTIONS(1147), - [anon_sym__Alignof] = ACTIONS(1147), - [anon_sym_offsetof] = ACTIONS(1147), - [anon_sym__Generic] = ACTIONS(1147), - [anon_sym_asm] = ACTIONS(1147), - [anon_sym___asm__] = ACTIONS(1147), - [sym_number_literal] = ACTIONS(1149), - [anon_sym_L_SQUOTE] = ACTIONS(1149), - [anon_sym_u_SQUOTE] = ACTIONS(1149), - [anon_sym_U_SQUOTE] = ACTIONS(1149), - [anon_sym_u8_SQUOTE] = ACTIONS(1149), - [anon_sym_SQUOTE] = ACTIONS(1149), - [anon_sym_L_DQUOTE] = ACTIONS(1149), - [anon_sym_u_DQUOTE] = ACTIONS(1149), - [anon_sym_U_DQUOTE] = ACTIONS(1149), - [anon_sym_u8_DQUOTE] = ACTIONS(1149), - [anon_sym_DQUOTE] = ACTIONS(1149), - [sym_true] = ACTIONS(1147), - [sym_false] = ACTIONS(1147), - [anon_sym_NULL] = ACTIONS(1147), - [anon_sym_nullptr] = ACTIONS(1147), + [191] = { + [sym_identifier] = ACTIONS(1203), + [aux_sym_preproc_include_token1] = ACTIONS(1203), + [aux_sym_preproc_def_token1] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1203), + [aux_sym_preproc_if_token2] = ACTIONS(1203), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1203), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1203), + [sym_preproc_directive] = ACTIONS(1203), + [anon_sym_LPAREN2] = ACTIONS(1205), + [anon_sym_BANG] = ACTIONS(1205), + [anon_sym_TILDE] = ACTIONS(1205), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_AMP] = ACTIONS(1205), + [anon_sym_SEMI] = ACTIONS(1205), + [anon_sym___extension__] = ACTIONS(1203), + [anon_sym_typedef] = ACTIONS(1203), + [anon_sym_extern] = ACTIONS(1203), + [anon_sym___attribute__] = ACTIONS(1203), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1205), + [anon_sym___declspec] = ACTIONS(1203), + [anon_sym___cdecl] = ACTIONS(1203), + [anon_sym___clrcall] = ACTIONS(1203), + [anon_sym___stdcall] = ACTIONS(1203), + [anon_sym___fastcall] = ACTIONS(1203), + [anon_sym___thiscall] = ACTIONS(1203), + [anon_sym___vectorcall] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [anon_sym_signed] = ACTIONS(1203), + [anon_sym_unsigned] = ACTIONS(1203), + [anon_sym_long] = ACTIONS(1203), + [anon_sym_short] = ACTIONS(1203), + [anon_sym_static] = ACTIONS(1203), + [anon_sym_auto] = ACTIONS(1203), + [anon_sym_register] = ACTIONS(1203), + [anon_sym_inline] = ACTIONS(1203), + [anon_sym___inline] = ACTIONS(1203), + [anon_sym___inline__] = ACTIONS(1203), + [anon_sym___forceinline] = ACTIONS(1203), + [anon_sym_thread_local] = ACTIONS(1203), + [anon_sym___thread] = ACTIONS(1203), + [anon_sym_const] = ACTIONS(1203), + [anon_sym_constexpr] = ACTIONS(1203), + [anon_sym_volatile] = ACTIONS(1203), + [anon_sym_restrict] = ACTIONS(1203), + [anon_sym___restrict__] = ACTIONS(1203), + [anon_sym__Atomic] = ACTIONS(1203), + [anon_sym__Noreturn] = ACTIONS(1203), + [anon_sym_noreturn] = ACTIONS(1203), + [anon_sym_alignas] = ACTIONS(1203), + [anon_sym__Alignas] = ACTIONS(1203), + [sym_primitive_type] = ACTIONS(1203), + [anon_sym_enum] = ACTIONS(1203), + [anon_sym_struct] = ACTIONS(1203), + [anon_sym_union] = ACTIONS(1203), + [anon_sym_if] = ACTIONS(1203), + [anon_sym_else] = ACTIONS(1203), + [anon_sym_switch] = ACTIONS(1203), + [anon_sym_case] = ACTIONS(1203), + [anon_sym_default] = ACTIONS(1203), + [anon_sym_while] = ACTIONS(1203), + [anon_sym_do] = ACTIONS(1203), + [anon_sym_for] = ACTIONS(1203), + [anon_sym_return] = ACTIONS(1203), + [anon_sym_break] = ACTIONS(1203), + [anon_sym_continue] = ACTIONS(1203), + [anon_sym_goto] = ACTIONS(1203), + [anon_sym___try] = ACTIONS(1203), + [anon_sym___leave] = ACTIONS(1203), + [anon_sym_DASH_DASH] = ACTIONS(1205), + [anon_sym_PLUS_PLUS] = ACTIONS(1205), + [anon_sym_sizeof] = ACTIONS(1203), + [anon_sym___alignof__] = ACTIONS(1203), + [anon_sym___alignof] = ACTIONS(1203), + [anon_sym__alignof] = ACTIONS(1203), + [anon_sym_alignof] = ACTIONS(1203), + [anon_sym__Alignof] = ACTIONS(1203), + [anon_sym_offsetof] = ACTIONS(1203), + [anon_sym__Generic] = ACTIONS(1203), + [anon_sym_asm] = ACTIONS(1203), + [anon_sym___asm__] = ACTIONS(1203), + [sym_number_literal] = ACTIONS(1205), + [anon_sym_L_SQUOTE] = ACTIONS(1205), + [anon_sym_u_SQUOTE] = ACTIONS(1205), + [anon_sym_U_SQUOTE] = ACTIONS(1205), + [anon_sym_u8_SQUOTE] = ACTIONS(1205), + [anon_sym_SQUOTE] = ACTIONS(1205), + [anon_sym_L_DQUOTE] = ACTIONS(1205), + [anon_sym_u_DQUOTE] = ACTIONS(1205), + [anon_sym_U_DQUOTE] = ACTIONS(1205), + [anon_sym_u8_DQUOTE] = ACTIONS(1205), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_true] = ACTIONS(1203), + [sym_false] = ACTIONS(1203), + [anon_sym_NULL] = ACTIONS(1203), + [anon_sym_nullptr] = ACTIONS(1203), [sym_comment] = ACTIONS(3), }, - [226] = { - [sym_identifier] = ACTIONS(1151), - [aux_sym_preproc_include_token1] = ACTIONS(1151), - [aux_sym_preproc_def_token1] = ACTIONS(1151), - [aux_sym_preproc_if_token1] = ACTIONS(1151), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1151), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1151), - [sym_preproc_directive] = ACTIONS(1151), - [anon_sym_LPAREN2] = ACTIONS(1153), - [anon_sym_BANG] = ACTIONS(1153), - [anon_sym_TILDE] = ACTIONS(1153), - [anon_sym_DASH] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1151), - [anon_sym_STAR] = ACTIONS(1153), - [anon_sym_AMP] = ACTIONS(1153), - [anon_sym_SEMI] = ACTIONS(1153), - [anon_sym___extension__] = ACTIONS(1151), - [anon_sym_typedef] = ACTIONS(1151), - [anon_sym_extern] = ACTIONS(1151), - [anon_sym___attribute__] = ACTIONS(1151), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1153), - [anon_sym___declspec] = ACTIONS(1151), - [anon_sym___cdecl] = ACTIONS(1151), - [anon_sym___clrcall] = ACTIONS(1151), - [anon_sym___stdcall] = ACTIONS(1151), - [anon_sym___fastcall] = ACTIONS(1151), - [anon_sym___thiscall] = ACTIONS(1151), - [anon_sym___vectorcall] = ACTIONS(1151), - [anon_sym_LBRACE] = ACTIONS(1153), - [anon_sym_RBRACE] = ACTIONS(1153), - [anon_sym_signed] = ACTIONS(1151), - [anon_sym_unsigned] = ACTIONS(1151), - [anon_sym_long] = ACTIONS(1151), - [anon_sym_short] = ACTIONS(1151), - [anon_sym_static] = ACTIONS(1151), - [anon_sym_auto] = ACTIONS(1151), - [anon_sym_register] = ACTIONS(1151), - [anon_sym_inline] = ACTIONS(1151), - [anon_sym___inline] = ACTIONS(1151), - [anon_sym___inline__] = ACTIONS(1151), - [anon_sym___forceinline] = ACTIONS(1151), - [anon_sym_thread_local] = ACTIONS(1151), - [anon_sym___thread] = ACTIONS(1151), - [anon_sym_const] = ACTIONS(1151), - [anon_sym_constexpr] = ACTIONS(1151), - [anon_sym_volatile] = ACTIONS(1151), - [anon_sym_restrict] = ACTIONS(1151), - [anon_sym___restrict__] = ACTIONS(1151), - [anon_sym__Atomic] = ACTIONS(1151), - [anon_sym__Noreturn] = ACTIONS(1151), - [anon_sym_noreturn] = ACTIONS(1151), - [anon_sym_alignas] = ACTIONS(1151), - [anon_sym__Alignas] = ACTIONS(1151), - [sym_primitive_type] = ACTIONS(1151), - [anon_sym_enum] = ACTIONS(1151), - [anon_sym_struct] = ACTIONS(1151), - [anon_sym_union] = ACTIONS(1151), - [anon_sym_if] = ACTIONS(1151), - [anon_sym_else] = ACTIONS(1151), - [anon_sym_switch] = ACTIONS(1151), - [anon_sym_case] = ACTIONS(1151), - [anon_sym_default] = ACTIONS(1151), - [anon_sym_while] = ACTIONS(1151), - [anon_sym_do] = ACTIONS(1151), - [anon_sym_for] = ACTIONS(1151), - [anon_sym_return] = ACTIONS(1151), - [anon_sym_break] = ACTIONS(1151), - [anon_sym_continue] = ACTIONS(1151), - [anon_sym_goto] = ACTIONS(1151), - [anon_sym___try] = ACTIONS(1151), - [anon_sym___leave] = ACTIONS(1151), - [anon_sym_DASH_DASH] = ACTIONS(1153), - [anon_sym_PLUS_PLUS] = ACTIONS(1153), - [anon_sym_sizeof] = ACTIONS(1151), - [anon_sym___alignof__] = ACTIONS(1151), - [anon_sym___alignof] = ACTIONS(1151), - [anon_sym__alignof] = ACTIONS(1151), - [anon_sym_alignof] = ACTIONS(1151), - [anon_sym__Alignof] = ACTIONS(1151), - [anon_sym_offsetof] = ACTIONS(1151), - [anon_sym__Generic] = ACTIONS(1151), - [anon_sym_asm] = ACTIONS(1151), - [anon_sym___asm__] = ACTIONS(1151), - [sym_number_literal] = ACTIONS(1153), - [anon_sym_L_SQUOTE] = ACTIONS(1153), - [anon_sym_u_SQUOTE] = ACTIONS(1153), - [anon_sym_U_SQUOTE] = ACTIONS(1153), - [anon_sym_u8_SQUOTE] = ACTIONS(1153), - [anon_sym_SQUOTE] = ACTIONS(1153), - [anon_sym_L_DQUOTE] = ACTIONS(1153), - [anon_sym_u_DQUOTE] = ACTIONS(1153), - [anon_sym_U_DQUOTE] = ACTIONS(1153), - [anon_sym_u8_DQUOTE] = ACTIONS(1153), - [anon_sym_DQUOTE] = ACTIONS(1153), - [sym_true] = ACTIONS(1151), - [sym_false] = ACTIONS(1151), - [anon_sym_NULL] = ACTIONS(1151), - [anon_sym_nullptr] = ACTIONS(1151), + [192] = { + [sym_identifier] = ACTIONS(1207), + [aux_sym_preproc_include_token1] = ACTIONS(1207), + [aux_sym_preproc_def_token1] = ACTIONS(1207), + [aux_sym_preproc_if_token1] = ACTIONS(1207), + [aux_sym_preproc_if_token2] = ACTIONS(1207), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1207), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1207), + [sym_preproc_directive] = ACTIONS(1207), + [anon_sym_LPAREN2] = ACTIONS(1209), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_TILDE] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1207), + [anon_sym_PLUS] = ACTIONS(1207), + [anon_sym_STAR] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1209), + [anon_sym_SEMI] = ACTIONS(1209), + [anon_sym___extension__] = ACTIONS(1207), + [anon_sym_typedef] = ACTIONS(1207), + [anon_sym_extern] = ACTIONS(1207), + [anon_sym___attribute__] = ACTIONS(1207), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1209), + [anon_sym___declspec] = ACTIONS(1207), + [anon_sym___cdecl] = ACTIONS(1207), + [anon_sym___clrcall] = ACTIONS(1207), + [anon_sym___stdcall] = ACTIONS(1207), + [anon_sym___fastcall] = ACTIONS(1207), + [anon_sym___thiscall] = ACTIONS(1207), + [anon_sym___vectorcall] = ACTIONS(1207), + [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_signed] = ACTIONS(1207), + [anon_sym_unsigned] = ACTIONS(1207), + [anon_sym_long] = ACTIONS(1207), + [anon_sym_short] = ACTIONS(1207), + [anon_sym_static] = ACTIONS(1207), + [anon_sym_auto] = ACTIONS(1207), + [anon_sym_register] = ACTIONS(1207), + [anon_sym_inline] = ACTIONS(1207), + [anon_sym___inline] = ACTIONS(1207), + [anon_sym___inline__] = ACTIONS(1207), + [anon_sym___forceinline] = ACTIONS(1207), + [anon_sym_thread_local] = ACTIONS(1207), + [anon_sym___thread] = ACTIONS(1207), + [anon_sym_const] = ACTIONS(1207), + [anon_sym_constexpr] = ACTIONS(1207), + [anon_sym_volatile] = ACTIONS(1207), + [anon_sym_restrict] = ACTIONS(1207), + [anon_sym___restrict__] = ACTIONS(1207), + [anon_sym__Atomic] = ACTIONS(1207), + [anon_sym__Noreturn] = ACTIONS(1207), + [anon_sym_noreturn] = ACTIONS(1207), + [anon_sym_alignas] = ACTIONS(1207), + [anon_sym__Alignas] = ACTIONS(1207), + [sym_primitive_type] = ACTIONS(1207), + [anon_sym_enum] = ACTIONS(1207), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_union] = ACTIONS(1207), + [anon_sym_if] = ACTIONS(1207), + [anon_sym_else] = ACTIONS(1207), + [anon_sym_switch] = ACTIONS(1207), + [anon_sym_case] = ACTIONS(1207), + [anon_sym_default] = ACTIONS(1207), + [anon_sym_while] = ACTIONS(1207), + [anon_sym_do] = ACTIONS(1207), + [anon_sym_for] = ACTIONS(1207), + [anon_sym_return] = ACTIONS(1207), + [anon_sym_break] = ACTIONS(1207), + [anon_sym_continue] = ACTIONS(1207), + [anon_sym_goto] = ACTIONS(1207), + [anon_sym___try] = ACTIONS(1207), + [anon_sym___leave] = ACTIONS(1207), + [anon_sym_DASH_DASH] = ACTIONS(1209), + [anon_sym_PLUS_PLUS] = ACTIONS(1209), + [anon_sym_sizeof] = ACTIONS(1207), + [anon_sym___alignof__] = ACTIONS(1207), + [anon_sym___alignof] = ACTIONS(1207), + [anon_sym__alignof] = ACTIONS(1207), + [anon_sym_alignof] = ACTIONS(1207), + [anon_sym__Alignof] = ACTIONS(1207), + [anon_sym_offsetof] = ACTIONS(1207), + [anon_sym__Generic] = ACTIONS(1207), + [anon_sym_asm] = ACTIONS(1207), + [anon_sym___asm__] = ACTIONS(1207), + [sym_number_literal] = ACTIONS(1209), + [anon_sym_L_SQUOTE] = ACTIONS(1209), + [anon_sym_u_SQUOTE] = ACTIONS(1209), + [anon_sym_U_SQUOTE] = ACTIONS(1209), + [anon_sym_u8_SQUOTE] = ACTIONS(1209), + [anon_sym_SQUOTE] = ACTIONS(1209), + [anon_sym_L_DQUOTE] = ACTIONS(1209), + [anon_sym_u_DQUOTE] = ACTIONS(1209), + [anon_sym_U_DQUOTE] = ACTIONS(1209), + [anon_sym_u8_DQUOTE] = ACTIONS(1209), + [anon_sym_DQUOTE] = ACTIONS(1209), + [sym_true] = ACTIONS(1207), + [sym_false] = ACTIONS(1207), + [anon_sym_NULL] = ACTIONS(1207), + [anon_sym_nullptr] = ACTIONS(1207), [sym_comment] = ACTIONS(3), }, - [227] = { - [sym_identifier] = ACTIONS(1123), - [aux_sym_preproc_include_token1] = ACTIONS(1123), - [aux_sym_preproc_def_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), - [sym_preproc_directive] = ACTIONS(1123), - [anon_sym_LPAREN2] = ACTIONS(1125), - [anon_sym_BANG] = ACTIONS(1125), - [anon_sym_TILDE] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym___extension__] = ACTIONS(1123), - [anon_sym_typedef] = ACTIONS(1123), - [anon_sym_extern] = ACTIONS(1123), - [anon_sym___attribute__] = ACTIONS(1123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), - [anon_sym___declspec] = ACTIONS(1123), - [anon_sym___cdecl] = ACTIONS(1123), - [anon_sym___clrcall] = ACTIONS(1123), - [anon_sym___stdcall] = ACTIONS(1123), - [anon_sym___fastcall] = ACTIONS(1123), - [anon_sym___thiscall] = ACTIONS(1123), - [anon_sym___vectorcall] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_RBRACE] = ACTIONS(1125), - [anon_sym_signed] = ACTIONS(1123), - [anon_sym_unsigned] = ACTIONS(1123), - [anon_sym_long] = ACTIONS(1123), - [anon_sym_short] = ACTIONS(1123), - [anon_sym_static] = ACTIONS(1123), - [anon_sym_auto] = ACTIONS(1123), - [anon_sym_register] = ACTIONS(1123), - [anon_sym_inline] = ACTIONS(1123), - [anon_sym___inline] = ACTIONS(1123), - [anon_sym___inline__] = ACTIONS(1123), - [anon_sym___forceinline] = ACTIONS(1123), - [anon_sym_thread_local] = ACTIONS(1123), - [anon_sym___thread] = ACTIONS(1123), - [anon_sym_const] = ACTIONS(1123), - [anon_sym_constexpr] = ACTIONS(1123), - [anon_sym_volatile] = ACTIONS(1123), - [anon_sym_restrict] = ACTIONS(1123), - [anon_sym___restrict__] = ACTIONS(1123), - [anon_sym__Atomic] = ACTIONS(1123), - [anon_sym__Noreturn] = ACTIONS(1123), - [anon_sym_noreturn] = ACTIONS(1123), - [anon_sym_alignas] = ACTIONS(1123), - [anon_sym__Alignas] = ACTIONS(1123), - [sym_primitive_type] = ACTIONS(1123), - [anon_sym_enum] = ACTIONS(1123), - [anon_sym_struct] = ACTIONS(1123), - [anon_sym_union] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1123), - [anon_sym_else] = ACTIONS(1123), - [anon_sym_switch] = ACTIONS(1123), - [anon_sym_case] = ACTIONS(1123), - [anon_sym_default] = ACTIONS(1123), - [anon_sym_while] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(1123), - [anon_sym_for] = ACTIONS(1123), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_break] = ACTIONS(1123), - [anon_sym_continue] = ACTIONS(1123), - [anon_sym_goto] = ACTIONS(1123), - [anon_sym___try] = ACTIONS(1123), - [anon_sym___leave] = ACTIONS(1123), - [anon_sym_DASH_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1125), - [anon_sym_sizeof] = ACTIONS(1123), - [anon_sym___alignof__] = ACTIONS(1123), - [anon_sym___alignof] = ACTIONS(1123), - [anon_sym__alignof] = ACTIONS(1123), - [anon_sym_alignof] = ACTIONS(1123), - [anon_sym__Alignof] = ACTIONS(1123), - [anon_sym_offsetof] = ACTIONS(1123), - [anon_sym__Generic] = ACTIONS(1123), - [anon_sym_asm] = ACTIONS(1123), - [anon_sym___asm__] = ACTIONS(1123), - [sym_number_literal] = ACTIONS(1125), - [anon_sym_L_SQUOTE] = ACTIONS(1125), - [anon_sym_u_SQUOTE] = ACTIONS(1125), - [anon_sym_U_SQUOTE] = ACTIONS(1125), - [anon_sym_u8_SQUOTE] = ACTIONS(1125), - [anon_sym_SQUOTE] = ACTIONS(1125), - [anon_sym_L_DQUOTE] = ACTIONS(1125), - [anon_sym_u_DQUOTE] = ACTIONS(1125), - [anon_sym_U_DQUOTE] = ACTIONS(1125), - [anon_sym_u8_DQUOTE] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(1125), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [anon_sym_NULL] = ACTIONS(1123), - [anon_sym_nullptr] = ACTIONS(1123), - [sym_comment] = ACTIONS(3), - }, - [228] = { - [ts_builtin_sym_end] = ACTIONS(1145), - [sym_identifier] = ACTIONS(1143), - [aux_sym_preproc_include_token1] = ACTIONS(1143), - [aux_sym_preproc_def_token1] = ACTIONS(1143), - [aux_sym_preproc_if_token1] = ACTIONS(1143), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1143), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1143), - [sym_preproc_directive] = ACTIONS(1143), - [anon_sym_LPAREN2] = ACTIONS(1145), - [anon_sym_BANG] = ACTIONS(1145), - [anon_sym_TILDE] = ACTIONS(1145), - [anon_sym_DASH] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_STAR] = ACTIONS(1145), - [anon_sym_AMP] = ACTIONS(1145), - [anon_sym_SEMI] = ACTIONS(1145), - [anon_sym___extension__] = ACTIONS(1143), - [anon_sym_typedef] = ACTIONS(1143), - [anon_sym_extern] = ACTIONS(1143), - [anon_sym___attribute__] = ACTIONS(1143), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), - [anon_sym___declspec] = ACTIONS(1143), - [anon_sym___cdecl] = ACTIONS(1143), - [anon_sym___clrcall] = ACTIONS(1143), - [anon_sym___stdcall] = ACTIONS(1143), - [anon_sym___fastcall] = ACTIONS(1143), - [anon_sym___thiscall] = ACTIONS(1143), - [anon_sym___vectorcall] = ACTIONS(1143), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_signed] = ACTIONS(1143), - [anon_sym_unsigned] = ACTIONS(1143), - [anon_sym_long] = ACTIONS(1143), - [anon_sym_short] = ACTIONS(1143), - [anon_sym_static] = ACTIONS(1143), - [anon_sym_auto] = ACTIONS(1143), - [anon_sym_register] = ACTIONS(1143), - [anon_sym_inline] = ACTIONS(1143), - [anon_sym___inline] = ACTIONS(1143), - [anon_sym___inline__] = ACTIONS(1143), - [anon_sym___forceinline] = ACTIONS(1143), - [anon_sym_thread_local] = ACTIONS(1143), - [anon_sym___thread] = ACTIONS(1143), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_constexpr] = ACTIONS(1143), - [anon_sym_volatile] = ACTIONS(1143), - [anon_sym_restrict] = ACTIONS(1143), - [anon_sym___restrict__] = ACTIONS(1143), - [anon_sym__Atomic] = ACTIONS(1143), - [anon_sym__Noreturn] = ACTIONS(1143), - [anon_sym_noreturn] = ACTIONS(1143), - [anon_sym_alignas] = ACTIONS(1143), - [anon_sym__Alignas] = ACTIONS(1143), - [sym_primitive_type] = ACTIONS(1143), - [anon_sym_enum] = ACTIONS(1143), - [anon_sym_struct] = ACTIONS(1143), - [anon_sym_union] = ACTIONS(1143), - [anon_sym_if] = ACTIONS(1143), - [anon_sym_else] = ACTIONS(1143), - [anon_sym_switch] = ACTIONS(1143), - [anon_sym_case] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1143), - [anon_sym_while] = ACTIONS(1143), - [anon_sym_do] = ACTIONS(1143), - [anon_sym_for] = ACTIONS(1143), - [anon_sym_return] = ACTIONS(1143), - [anon_sym_break] = ACTIONS(1143), - [anon_sym_continue] = ACTIONS(1143), - [anon_sym_goto] = ACTIONS(1143), - [anon_sym___try] = ACTIONS(1143), - [anon_sym___leave] = ACTIONS(1143), - [anon_sym_DASH_DASH] = ACTIONS(1145), - [anon_sym_PLUS_PLUS] = ACTIONS(1145), - [anon_sym_sizeof] = ACTIONS(1143), - [anon_sym___alignof__] = ACTIONS(1143), - [anon_sym___alignof] = ACTIONS(1143), - [anon_sym__alignof] = ACTIONS(1143), - [anon_sym_alignof] = ACTIONS(1143), - [anon_sym__Alignof] = ACTIONS(1143), - [anon_sym_offsetof] = ACTIONS(1143), - [anon_sym__Generic] = ACTIONS(1143), - [anon_sym_asm] = ACTIONS(1143), - [anon_sym___asm__] = ACTIONS(1143), - [sym_number_literal] = ACTIONS(1145), - [anon_sym_L_SQUOTE] = ACTIONS(1145), - [anon_sym_u_SQUOTE] = ACTIONS(1145), - [anon_sym_U_SQUOTE] = ACTIONS(1145), - [anon_sym_u8_SQUOTE] = ACTIONS(1145), - [anon_sym_SQUOTE] = ACTIONS(1145), - [anon_sym_L_DQUOTE] = ACTIONS(1145), - [anon_sym_u_DQUOTE] = ACTIONS(1145), - [anon_sym_U_DQUOTE] = ACTIONS(1145), - [anon_sym_u8_DQUOTE] = ACTIONS(1145), - [anon_sym_DQUOTE] = ACTIONS(1145), - [sym_true] = ACTIONS(1143), - [sym_false] = ACTIONS(1143), - [anon_sym_NULL] = ACTIONS(1143), - [anon_sym_nullptr] = ACTIONS(1143), - [sym_comment] = ACTIONS(3), - }, - [229] = { - [ts_builtin_sym_end] = ACTIONS(1217), - [sym_identifier] = ACTIONS(1215), - [aux_sym_preproc_include_token1] = ACTIONS(1215), - [aux_sym_preproc_def_token1] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1215), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1215), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1215), - [sym_preproc_directive] = ACTIONS(1215), - [anon_sym_LPAREN2] = ACTIONS(1217), - [anon_sym_BANG] = ACTIONS(1217), - [anon_sym_TILDE] = ACTIONS(1217), - [anon_sym_DASH] = ACTIONS(1215), - [anon_sym_PLUS] = ACTIONS(1215), - [anon_sym_STAR] = ACTIONS(1217), - [anon_sym_AMP] = ACTIONS(1217), - [anon_sym_SEMI] = ACTIONS(1217), - [anon_sym___extension__] = ACTIONS(1215), - [anon_sym_typedef] = ACTIONS(1215), - [anon_sym_extern] = ACTIONS(1215), - [anon_sym___attribute__] = ACTIONS(1215), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1217), - [anon_sym___declspec] = ACTIONS(1215), - [anon_sym___cdecl] = ACTIONS(1215), - [anon_sym___clrcall] = ACTIONS(1215), - [anon_sym___stdcall] = ACTIONS(1215), - [anon_sym___fastcall] = ACTIONS(1215), - [anon_sym___thiscall] = ACTIONS(1215), - [anon_sym___vectorcall] = ACTIONS(1215), - [anon_sym_LBRACE] = ACTIONS(1217), - [anon_sym_signed] = ACTIONS(1215), - [anon_sym_unsigned] = ACTIONS(1215), - [anon_sym_long] = ACTIONS(1215), - [anon_sym_short] = ACTIONS(1215), - [anon_sym_static] = ACTIONS(1215), - [anon_sym_auto] = ACTIONS(1215), - [anon_sym_register] = ACTIONS(1215), - [anon_sym_inline] = ACTIONS(1215), - [anon_sym___inline] = ACTIONS(1215), - [anon_sym___inline__] = ACTIONS(1215), - [anon_sym___forceinline] = ACTIONS(1215), - [anon_sym_thread_local] = ACTIONS(1215), - [anon_sym___thread] = ACTIONS(1215), - [anon_sym_const] = ACTIONS(1215), - [anon_sym_constexpr] = ACTIONS(1215), - [anon_sym_volatile] = ACTIONS(1215), - [anon_sym_restrict] = ACTIONS(1215), - [anon_sym___restrict__] = ACTIONS(1215), - [anon_sym__Atomic] = ACTIONS(1215), - [anon_sym__Noreturn] = ACTIONS(1215), - [anon_sym_noreturn] = ACTIONS(1215), - [anon_sym_alignas] = ACTIONS(1215), - [anon_sym__Alignas] = 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(1215), - [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___try] = ACTIONS(1215), - [anon_sym___leave] = ACTIONS(1215), - [anon_sym_DASH_DASH] = ACTIONS(1217), - [anon_sym_PLUS_PLUS] = ACTIONS(1217), - [anon_sym_sizeof] = ACTIONS(1215), - [anon_sym___alignof__] = ACTIONS(1215), - [anon_sym___alignof] = ACTIONS(1215), - [anon_sym__alignof] = ACTIONS(1215), - [anon_sym_alignof] = ACTIONS(1215), - [anon_sym__Alignof] = ACTIONS(1215), - [anon_sym_offsetof] = ACTIONS(1215), - [anon_sym__Generic] = ACTIONS(1215), - [anon_sym_asm] = ACTIONS(1215), - [anon_sym___asm__] = ACTIONS(1215), - [sym_number_literal] = ACTIONS(1217), - [anon_sym_L_SQUOTE] = ACTIONS(1217), - [anon_sym_u_SQUOTE] = ACTIONS(1217), - [anon_sym_U_SQUOTE] = ACTIONS(1217), - [anon_sym_u8_SQUOTE] = ACTIONS(1217), - [anon_sym_SQUOTE] = ACTIONS(1217), - [anon_sym_L_DQUOTE] = ACTIONS(1217), - [anon_sym_u_DQUOTE] = ACTIONS(1217), - [anon_sym_U_DQUOTE] = ACTIONS(1217), - [anon_sym_u8_DQUOTE] = ACTIONS(1217), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_true] = ACTIONS(1215), - [sym_false] = ACTIONS(1215), - [anon_sym_NULL] = ACTIONS(1215), - [anon_sym_nullptr] = ACTIONS(1215), - [sym_comment] = ACTIONS(3), - }, - [230] = { - [sym_identifier] = ACTIONS(1155), - [aux_sym_preproc_include_token1] = ACTIONS(1155), - [aux_sym_preproc_def_token1] = ACTIONS(1155), - [aux_sym_preproc_if_token1] = ACTIONS(1155), - [aux_sym_preproc_if_token2] = ACTIONS(1155), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1155), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1155), - [sym_preproc_directive] = ACTIONS(1155), - [anon_sym_LPAREN2] = ACTIONS(1157), - [anon_sym_BANG] = ACTIONS(1157), - [anon_sym_TILDE] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(1155), - [anon_sym_STAR] = ACTIONS(1157), - [anon_sym_AMP] = ACTIONS(1157), - [anon_sym_SEMI] = ACTIONS(1157), - [anon_sym___extension__] = ACTIONS(1155), - [anon_sym_typedef] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1155), - [anon_sym___attribute__] = ACTIONS(1155), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1157), - [anon_sym___declspec] = ACTIONS(1155), - [anon_sym___cdecl] = ACTIONS(1155), - [anon_sym___clrcall] = ACTIONS(1155), - [anon_sym___stdcall] = ACTIONS(1155), - [anon_sym___fastcall] = ACTIONS(1155), - [anon_sym___thiscall] = ACTIONS(1155), - [anon_sym___vectorcall] = ACTIONS(1155), - [anon_sym_LBRACE] = ACTIONS(1157), - [anon_sym_signed] = ACTIONS(1155), - [anon_sym_unsigned] = ACTIONS(1155), - [anon_sym_long] = ACTIONS(1155), - [anon_sym_short] = ACTIONS(1155), - [anon_sym_static] = ACTIONS(1155), - [anon_sym_auto] = ACTIONS(1155), - [anon_sym_register] = ACTIONS(1155), - [anon_sym_inline] = ACTIONS(1155), - [anon_sym___inline] = ACTIONS(1155), - [anon_sym___inline__] = ACTIONS(1155), - [anon_sym___forceinline] = ACTIONS(1155), - [anon_sym_thread_local] = ACTIONS(1155), - [anon_sym___thread] = ACTIONS(1155), - [anon_sym_const] = ACTIONS(1155), - [anon_sym_constexpr] = ACTIONS(1155), - [anon_sym_volatile] = ACTIONS(1155), - [anon_sym_restrict] = ACTIONS(1155), - [anon_sym___restrict__] = ACTIONS(1155), - [anon_sym__Atomic] = ACTIONS(1155), - [anon_sym__Noreturn] = ACTIONS(1155), - [anon_sym_noreturn] = ACTIONS(1155), - [anon_sym_alignas] = ACTIONS(1155), - [anon_sym__Alignas] = ACTIONS(1155), - [sym_primitive_type] = ACTIONS(1155), - [anon_sym_enum] = ACTIONS(1155), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1155), - [anon_sym_if] = ACTIONS(1155), - [anon_sym_else] = ACTIONS(1155), - [anon_sym_switch] = ACTIONS(1155), - [anon_sym_case] = ACTIONS(1155), - [anon_sym_default] = ACTIONS(1155), - [anon_sym_while] = ACTIONS(1155), - [anon_sym_do] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1155), - [anon_sym_return] = ACTIONS(1155), - [anon_sym_break] = ACTIONS(1155), - [anon_sym_continue] = ACTIONS(1155), - [anon_sym_goto] = ACTIONS(1155), - [anon_sym___try] = ACTIONS(1155), - [anon_sym___leave] = ACTIONS(1155), - [anon_sym_DASH_DASH] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1157), - [anon_sym_sizeof] = ACTIONS(1155), - [anon_sym___alignof__] = ACTIONS(1155), - [anon_sym___alignof] = ACTIONS(1155), - [anon_sym__alignof] = ACTIONS(1155), - [anon_sym_alignof] = ACTIONS(1155), - [anon_sym__Alignof] = ACTIONS(1155), - [anon_sym_offsetof] = ACTIONS(1155), - [anon_sym__Generic] = ACTIONS(1155), - [anon_sym_asm] = ACTIONS(1155), - [anon_sym___asm__] = ACTIONS(1155), - [sym_number_literal] = ACTIONS(1157), - [anon_sym_L_SQUOTE] = ACTIONS(1157), - [anon_sym_u_SQUOTE] = ACTIONS(1157), - [anon_sym_U_SQUOTE] = ACTIONS(1157), - [anon_sym_u8_SQUOTE] = ACTIONS(1157), - [anon_sym_SQUOTE] = ACTIONS(1157), - [anon_sym_L_DQUOTE] = ACTIONS(1157), - [anon_sym_u_DQUOTE] = ACTIONS(1157), - [anon_sym_U_DQUOTE] = ACTIONS(1157), - [anon_sym_u8_DQUOTE] = ACTIONS(1157), - [anon_sym_DQUOTE] = ACTIONS(1157), - [sym_true] = ACTIONS(1155), - [sym_false] = ACTIONS(1155), - [anon_sym_NULL] = ACTIONS(1155), - [anon_sym_nullptr] = ACTIONS(1155), + [193] = { + [sym_identifier] = ACTIONS(1207), + [aux_sym_preproc_include_token1] = ACTIONS(1207), + [aux_sym_preproc_def_token1] = ACTIONS(1207), + [aux_sym_preproc_if_token1] = ACTIONS(1207), + [aux_sym_preproc_if_token2] = ACTIONS(1207), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1207), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1207), + [sym_preproc_directive] = ACTIONS(1207), + [anon_sym_LPAREN2] = ACTIONS(1209), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_TILDE] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1207), + [anon_sym_PLUS] = ACTIONS(1207), + [anon_sym_STAR] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1209), + [anon_sym_SEMI] = ACTIONS(1209), + [anon_sym___extension__] = ACTIONS(1207), + [anon_sym_typedef] = ACTIONS(1207), + [anon_sym_extern] = ACTIONS(1207), + [anon_sym___attribute__] = ACTIONS(1207), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1209), + [anon_sym___declspec] = ACTIONS(1207), + [anon_sym___cdecl] = ACTIONS(1207), + [anon_sym___clrcall] = ACTIONS(1207), + [anon_sym___stdcall] = ACTIONS(1207), + [anon_sym___fastcall] = ACTIONS(1207), + [anon_sym___thiscall] = ACTIONS(1207), + [anon_sym___vectorcall] = ACTIONS(1207), + [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_signed] = ACTIONS(1207), + [anon_sym_unsigned] = ACTIONS(1207), + [anon_sym_long] = ACTIONS(1207), + [anon_sym_short] = ACTIONS(1207), + [anon_sym_static] = ACTIONS(1207), + [anon_sym_auto] = ACTIONS(1207), + [anon_sym_register] = ACTIONS(1207), + [anon_sym_inline] = ACTIONS(1207), + [anon_sym___inline] = ACTIONS(1207), + [anon_sym___inline__] = ACTIONS(1207), + [anon_sym___forceinline] = ACTIONS(1207), + [anon_sym_thread_local] = ACTIONS(1207), + [anon_sym___thread] = ACTIONS(1207), + [anon_sym_const] = ACTIONS(1207), + [anon_sym_constexpr] = ACTIONS(1207), + [anon_sym_volatile] = ACTIONS(1207), + [anon_sym_restrict] = ACTIONS(1207), + [anon_sym___restrict__] = ACTIONS(1207), + [anon_sym__Atomic] = ACTIONS(1207), + [anon_sym__Noreturn] = ACTIONS(1207), + [anon_sym_noreturn] = ACTIONS(1207), + [anon_sym_alignas] = ACTIONS(1207), + [anon_sym__Alignas] = ACTIONS(1207), + [sym_primitive_type] = ACTIONS(1207), + [anon_sym_enum] = ACTIONS(1207), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_union] = ACTIONS(1207), + [anon_sym_if] = ACTIONS(1207), + [anon_sym_else] = ACTIONS(1207), + [anon_sym_switch] = ACTIONS(1207), + [anon_sym_case] = ACTIONS(1207), + [anon_sym_default] = ACTIONS(1207), + [anon_sym_while] = ACTIONS(1207), + [anon_sym_do] = ACTIONS(1207), + [anon_sym_for] = ACTIONS(1207), + [anon_sym_return] = ACTIONS(1207), + [anon_sym_break] = ACTIONS(1207), + [anon_sym_continue] = ACTIONS(1207), + [anon_sym_goto] = ACTIONS(1207), + [anon_sym___try] = ACTIONS(1207), + [anon_sym___leave] = ACTIONS(1207), + [anon_sym_DASH_DASH] = ACTIONS(1209), + [anon_sym_PLUS_PLUS] = ACTIONS(1209), + [anon_sym_sizeof] = ACTIONS(1207), + [anon_sym___alignof__] = ACTIONS(1207), + [anon_sym___alignof] = ACTIONS(1207), + [anon_sym__alignof] = ACTIONS(1207), + [anon_sym_alignof] = ACTIONS(1207), + [anon_sym__Alignof] = ACTIONS(1207), + [anon_sym_offsetof] = ACTIONS(1207), + [anon_sym__Generic] = ACTIONS(1207), + [anon_sym_asm] = ACTIONS(1207), + [anon_sym___asm__] = ACTIONS(1207), + [sym_number_literal] = ACTIONS(1209), + [anon_sym_L_SQUOTE] = ACTIONS(1209), + [anon_sym_u_SQUOTE] = ACTIONS(1209), + [anon_sym_U_SQUOTE] = ACTIONS(1209), + [anon_sym_u8_SQUOTE] = ACTIONS(1209), + [anon_sym_SQUOTE] = ACTIONS(1209), + [anon_sym_L_DQUOTE] = ACTIONS(1209), + [anon_sym_u_DQUOTE] = ACTIONS(1209), + [anon_sym_U_DQUOTE] = ACTIONS(1209), + [anon_sym_u8_DQUOTE] = ACTIONS(1209), + [anon_sym_DQUOTE] = ACTIONS(1209), + [sym_true] = ACTIONS(1207), + [sym_false] = ACTIONS(1207), + [anon_sym_NULL] = ACTIONS(1207), + [anon_sym_nullptr] = ACTIONS(1207), [sym_comment] = ACTIONS(3), }, - [231] = { + [194] = { + [ts_builtin_sym_end] = ACTIONS(1125), [sym_identifier] = ACTIONS(1123), [aux_sym_preproc_include_token1] = ACTIONS(1123), [aux_sym_preproc_def_token1] = ACTIONS(1123), @@ -39706,7 +35890,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1123), [anon_sym___vectorcall] = ACTIONS(1123), [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_RBRACE] = ACTIONS(1125), [anon_sym_signed] = ACTIONS(1123), [anon_sym_unsigned] = ACTIONS(1123), [anon_sym_long] = ACTIONS(1123), @@ -39777,371 +35960,471 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1123), [sym_comment] = ACTIONS(3), }, - [232] = { - [sym_identifier] = ACTIONS(1195), - [aux_sym_preproc_include_token1] = ACTIONS(1195), - [aux_sym_preproc_def_token1] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1195), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1195), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1195), - [sym_preproc_directive] = ACTIONS(1195), - [anon_sym_LPAREN2] = ACTIONS(1197), - [anon_sym_BANG] = ACTIONS(1197), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1195), - [anon_sym_STAR] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1197), - [anon_sym_SEMI] = ACTIONS(1197), - [anon_sym___extension__] = ACTIONS(1195), - [anon_sym_typedef] = ACTIONS(1195), - [anon_sym_extern] = ACTIONS(1195), - [anon_sym___attribute__] = ACTIONS(1195), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1197), - [anon_sym___declspec] = ACTIONS(1195), - [anon_sym___cdecl] = ACTIONS(1195), - [anon_sym___clrcall] = ACTIONS(1195), - [anon_sym___stdcall] = ACTIONS(1195), - [anon_sym___fastcall] = ACTIONS(1195), - [anon_sym___thiscall] = ACTIONS(1195), - [anon_sym___vectorcall] = ACTIONS(1195), - [anon_sym_LBRACE] = ACTIONS(1197), - [anon_sym_RBRACE] = ACTIONS(1197), - [anon_sym_signed] = ACTIONS(1195), - [anon_sym_unsigned] = ACTIONS(1195), - [anon_sym_long] = ACTIONS(1195), - [anon_sym_short] = ACTIONS(1195), - [anon_sym_static] = ACTIONS(1195), - [anon_sym_auto] = ACTIONS(1195), - [anon_sym_register] = ACTIONS(1195), - [anon_sym_inline] = ACTIONS(1195), - [anon_sym___inline] = ACTIONS(1195), - [anon_sym___inline__] = ACTIONS(1195), - [anon_sym___forceinline] = ACTIONS(1195), - [anon_sym_thread_local] = ACTIONS(1195), - [anon_sym___thread] = ACTIONS(1195), - [anon_sym_const] = ACTIONS(1195), - [anon_sym_constexpr] = ACTIONS(1195), - [anon_sym_volatile] = ACTIONS(1195), - [anon_sym_restrict] = ACTIONS(1195), - [anon_sym___restrict__] = ACTIONS(1195), - [anon_sym__Atomic] = ACTIONS(1195), - [anon_sym__Noreturn] = ACTIONS(1195), - [anon_sym_noreturn] = ACTIONS(1195), - [anon_sym_alignas] = ACTIONS(1195), - [anon_sym__Alignas] = ACTIONS(1195), - [sym_primitive_type] = ACTIONS(1195), - [anon_sym_enum] = ACTIONS(1195), - [anon_sym_struct] = ACTIONS(1195), - [anon_sym_union] = ACTIONS(1195), - [anon_sym_if] = ACTIONS(1195), - [anon_sym_else] = ACTIONS(1195), - [anon_sym_switch] = ACTIONS(1195), - [anon_sym_case] = ACTIONS(1195), - [anon_sym_default] = ACTIONS(1195), - [anon_sym_while] = ACTIONS(1195), - [anon_sym_do] = ACTIONS(1195), - [anon_sym_for] = ACTIONS(1195), - [anon_sym_return] = ACTIONS(1195), - [anon_sym_break] = ACTIONS(1195), - [anon_sym_continue] = ACTIONS(1195), - [anon_sym_goto] = ACTIONS(1195), - [anon_sym___try] = ACTIONS(1195), - [anon_sym___leave] = ACTIONS(1195), - [anon_sym_DASH_DASH] = ACTIONS(1197), - [anon_sym_PLUS_PLUS] = ACTIONS(1197), - [anon_sym_sizeof] = ACTIONS(1195), - [anon_sym___alignof__] = ACTIONS(1195), - [anon_sym___alignof] = ACTIONS(1195), - [anon_sym__alignof] = ACTIONS(1195), - [anon_sym_alignof] = ACTIONS(1195), - [anon_sym__Alignof] = ACTIONS(1195), - [anon_sym_offsetof] = ACTIONS(1195), - [anon_sym__Generic] = ACTIONS(1195), - [anon_sym_asm] = ACTIONS(1195), - [anon_sym___asm__] = ACTIONS(1195), - [sym_number_literal] = ACTIONS(1197), - [anon_sym_L_SQUOTE] = ACTIONS(1197), - [anon_sym_u_SQUOTE] = ACTIONS(1197), - [anon_sym_U_SQUOTE] = ACTIONS(1197), - [anon_sym_u8_SQUOTE] = ACTIONS(1197), - [anon_sym_SQUOTE] = ACTIONS(1197), - [anon_sym_L_DQUOTE] = ACTIONS(1197), - [anon_sym_u_DQUOTE] = ACTIONS(1197), - [anon_sym_U_DQUOTE] = ACTIONS(1197), - [anon_sym_u8_DQUOTE] = ACTIONS(1197), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_true] = ACTIONS(1195), - [sym_false] = ACTIONS(1195), - [anon_sym_NULL] = ACTIONS(1195), - [anon_sym_nullptr] = ACTIONS(1195), - [sym_comment] = ACTIONS(3), - }, - [233] = { - [ts_builtin_sym_end] = ACTIONS(1185), - [sym_identifier] = ACTIONS(1183), - [aux_sym_preproc_include_token1] = ACTIONS(1183), - [aux_sym_preproc_def_token1] = ACTIONS(1183), - [aux_sym_preproc_if_token1] = ACTIONS(1183), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1183), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1183), - [sym_preproc_directive] = ACTIONS(1183), - [anon_sym_LPAREN2] = ACTIONS(1185), - [anon_sym_BANG] = ACTIONS(1185), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1183), - [anon_sym_STAR] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1185), - [anon_sym_SEMI] = ACTIONS(1185), - [anon_sym___extension__] = ACTIONS(1183), - [anon_sym_typedef] = ACTIONS(1183), - [anon_sym_extern] = ACTIONS(1183), - [anon_sym___attribute__] = ACTIONS(1183), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1185), - [anon_sym___declspec] = ACTIONS(1183), - [anon_sym___cdecl] = ACTIONS(1183), - [anon_sym___clrcall] = ACTIONS(1183), - [anon_sym___stdcall] = ACTIONS(1183), - [anon_sym___fastcall] = ACTIONS(1183), - [anon_sym___thiscall] = ACTIONS(1183), - [anon_sym___vectorcall] = ACTIONS(1183), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_signed] = ACTIONS(1183), - [anon_sym_unsigned] = ACTIONS(1183), - [anon_sym_long] = ACTIONS(1183), - [anon_sym_short] = ACTIONS(1183), - [anon_sym_static] = ACTIONS(1183), - [anon_sym_auto] = ACTIONS(1183), - [anon_sym_register] = ACTIONS(1183), - [anon_sym_inline] = ACTIONS(1183), - [anon_sym___inline] = ACTIONS(1183), - [anon_sym___inline__] = ACTIONS(1183), - [anon_sym___forceinline] = ACTIONS(1183), - [anon_sym_thread_local] = ACTIONS(1183), - [anon_sym___thread] = ACTIONS(1183), - [anon_sym_const] = ACTIONS(1183), - [anon_sym_constexpr] = ACTIONS(1183), - [anon_sym_volatile] = ACTIONS(1183), - [anon_sym_restrict] = ACTIONS(1183), - [anon_sym___restrict__] = ACTIONS(1183), - [anon_sym__Atomic] = ACTIONS(1183), - [anon_sym__Noreturn] = ACTIONS(1183), - [anon_sym_noreturn] = ACTIONS(1183), - [anon_sym_alignas] = ACTIONS(1183), - [anon_sym__Alignas] = ACTIONS(1183), - [sym_primitive_type] = ACTIONS(1183), - [anon_sym_enum] = ACTIONS(1183), - [anon_sym_struct] = ACTIONS(1183), - [anon_sym_union] = ACTIONS(1183), - [anon_sym_if] = ACTIONS(1183), - [anon_sym_else] = ACTIONS(1183), - [anon_sym_switch] = ACTIONS(1183), - [anon_sym_case] = ACTIONS(1183), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_while] = ACTIONS(1183), - [anon_sym_do] = ACTIONS(1183), - [anon_sym_for] = ACTIONS(1183), - [anon_sym_return] = ACTIONS(1183), - [anon_sym_break] = ACTIONS(1183), - [anon_sym_continue] = ACTIONS(1183), - [anon_sym_goto] = ACTIONS(1183), - [anon_sym___try] = ACTIONS(1183), - [anon_sym___leave] = ACTIONS(1183), - [anon_sym_DASH_DASH] = ACTIONS(1185), - [anon_sym_PLUS_PLUS] = ACTIONS(1185), - [anon_sym_sizeof] = ACTIONS(1183), - [anon_sym___alignof__] = ACTIONS(1183), - [anon_sym___alignof] = ACTIONS(1183), - [anon_sym__alignof] = ACTIONS(1183), - [anon_sym_alignof] = ACTIONS(1183), - [anon_sym__Alignof] = ACTIONS(1183), - [anon_sym_offsetof] = ACTIONS(1183), - [anon_sym__Generic] = ACTIONS(1183), - [anon_sym_asm] = ACTIONS(1183), - [anon_sym___asm__] = ACTIONS(1183), - [sym_number_literal] = ACTIONS(1185), - [anon_sym_L_SQUOTE] = ACTIONS(1185), - [anon_sym_u_SQUOTE] = ACTIONS(1185), - [anon_sym_U_SQUOTE] = ACTIONS(1185), - [anon_sym_u8_SQUOTE] = ACTIONS(1185), - [anon_sym_SQUOTE] = ACTIONS(1185), - [anon_sym_L_DQUOTE] = ACTIONS(1185), - [anon_sym_u_DQUOTE] = ACTIONS(1185), - [anon_sym_U_DQUOTE] = ACTIONS(1185), - [anon_sym_u8_DQUOTE] = ACTIONS(1185), - [anon_sym_DQUOTE] = ACTIONS(1185), - [sym_true] = ACTIONS(1183), - [sym_false] = ACTIONS(1183), - [anon_sym_NULL] = ACTIONS(1183), - [anon_sym_nullptr] = ACTIONS(1183), + [195] = { + [ts_builtin_sym_end] = ACTIONS(1189), + [sym_identifier] = ACTIONS(1187), + [aux_sym_preproc_include_token1] = ACTIONS(1187), + [aux_sym_preproc_def_token1] = ACTIONS(1187), + [aux_sym_preproc_if_token1] = ACTIONS(1187), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1187), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1187), + [sym_preproc_directive] = ACTIONS(1187), + [anon_sym_LPAREN2] = ACTIONS(1189), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1189), + [anon_sym_DASH] = ACTIONS(1187), + [anon_sym_PLUS] = ACTIONS(1187), + [anon_sym_STAR] = ACTIONS(1189), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_SEMI] = ACTIONS(1189), + [anon_sym___extension__] = ACTIONS(1187), + [anon_sym_typedef] = ACTIONS(1187), + [anon_sym_extern] = ACTIONS(1187), + [anon_sym___attribute__] = ACTIONS(1187), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1189), + [anon_sym___declspec] = ACTIONS(1187), + [anon_sym___cdecl] = ACTIONS(1187), + [anon_sym___clrcall] = ACTIONS(1187), + [anon_sym___stdcall] = ACTIONS(1187), + [anon_sym___fastcall] = ACTIONS(1187), + [anon_sym___thiscall] = ACTIONS(1187), + [anon_sym___vectorcall] = ACTIONS(1187), + [anon_sym_LBRACE] = ACTIONS(1189), + [anon_sym_signed] = ACTIONS(1187), + [anon_sym_unsigned] = ACTIONS(1187), + [anon_sym_long] = ACTIONS(1187), + [anon_sym_short] = ACTIONS(1187), + [anon_sym_static] = ACTIONS(1187), + [anon_sym_auto] = ACTIONS(1187), + [anon_sym_register] = ACTIONS(1187), + [anon_sym_inline] = ACTIONS(1187), + [anon_sym___inline] = ACTIONS(1187), + [anon_sym___inline__] = ACTIONS(1187), + [anon_sym___forceinline] = ACTIONS(1187), + [anon_sym_thread_local] = ACTIONS(1187), + [anon_sym___thread] = ACTIONS(1187), + [anon_sym_const] = ACTIONS(1187), + [anon_sym_constexpr] = ACTIONS(1187), + [anon_sym_volatile] = ACTIONS(1187), + [anon_sym_restrict] = ACTIONS(1187), + [anon_sym___restrict__] = ACTIONS(1187), + [anon_sym__Atomic] = ACTIONS(1187), + [anon_sym__Noreturn] = ACTIONS(1187), + [anon_sym_noreturn] = ACTIONS(1187), + [anon_sym_alignas] = ACTIONS(1187), + [anon_sym__Alignas] = ACTIONS(1187), + [sym_primitive_type] = ACTIONS(1187), + [anon_sym_enum] = ACTIONS(1187), + [anon_sym_struct] = ACTIONS(1187), + [anon_sym_union] = ACTIONS(1187), + [anon_sym_if] = ACTIONS(1187), + [anon_sym_else] = ACTIONS(1187), + [anon_sym_switch] = ACTIONS(1187), + [anon_sym_case] = ACTIONS(1187), + [anon_sym_default] = ACTIONS(1187), + [anon_sym_while] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(1187), + [anon_sym_for] = ACTIONS(1187), + [anon_sym_return] = ACTIONS(1187), + [anon_sym_break] = ACTIONS(1187), + [anon_sym_continue] = ACTIONS(1187), + [anon_sym_goto] = ACTIONS(1187), + [anon_sym___try] = ACTIONS(1187), + [anon_sym___leave] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1189), + [anon_sym_PLUS_PLUS] = ACTIONS(1189), + [anon_sym_sizeof] = ACTIONS(1187), + [anon_sym___alignof__] = ACTIONS(1187), + [anon_sym___alignof] = ACTIONS(1187), + [anon_sym__alignof] = ACTIONS(1187), + [anon_sym_alignof] = ACTIONS(1187), + [anon_sym__Alignof] = ACTIONS(1187), + [anon_sym_offsetof] = ACTIONS(1187), + [anon_sym__Generic] = ACTIONS(1187), + [anon_sym_asm] = ACTIONS(1187), + [anon_sym___asm__] = ACTIONS(1187), + [sym_number_literal] = ACTIONS(1189), + [anon_sym_L_SQUOTE] = ACTIONS(1189), + [anon_sym_u_SQUOTE] = ACTIONS(1189), + [anon_sym_U_SQUOTE] = ACTIONS(1189), + [anon_sym_u8_SQUOTE] = ACTIONS(1189), + [anon_sym_SQUOTE] = ACTIONS(1189), + [anon_sym_L_DQUOTE] = ACTIONS(1189), + [anon_sym_u_DQUOTE] = ACTIONS(1189), + [anon_sym_U_DQUOTE] = ACTIONS(1189), + [anon_sym_u8_DQUOTE] = ACTIONS(1189), + [anon_sym_DQUOTE] = ACTIONS(1189), + [sym_true] = ACTIONS(1187), + [sym_false] = ACTIONS(1187), + [anon_sym_NULL] = ACTIONS(1187), + [anon_sym_nullptr] = ACTIONS(1187), [sym_comment] = ACTIONS(3), }, - [234] = { - [sym_identifier] = ACTIONS(1123), - [aux_sym_preproc_include_token1] = ACTIONS(1123), - [aux_sym_preproc_def_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), - [sym_preproc_directive] = ACTIONS(1123), - [anon_sym_LPAREN2] = ACTIONS(1125), - [anon_sym_BANG] = ACTIONS(1125), - [anon_sym_TILDE] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym___extension__] = ACTIONS(1123), - [anon_sym_typedef] = ACTIONS(1123), - [anon_sym_extern] = ACTIONS(1123), - [anon_sym___attribute__] = ACTIONS(1123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), - [anon_sym___declspec] = ACTIONS(1123), - [anon_sym___cdecl] = ACTIONS(1123), - [anon_sym___clrcall] = ACTIONS(1123), - [anon_sym___stdcall] = ACTIONS(1123), - [anon_sym___fastcall] = ACTIONS(1123), - [anon_sym___thiscall] = ACTIONS(1123), - [anon_sym___vectorcall] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_RBRACE] = ACTIONS(1125), - [anon_sym_signed] = ACTIONS(1123), - [anon_sym_unsigned] = ACTIONS(1123), - [anon_sym_long] = ACTIONS(1123), - [anon_sym_short] = ACTIONS(1123), - [anon_sym_static] = ACTIONS(1123), - [anon_sym_auto] = ACTIONS(1123), - [anon_sym_register] = ACTIONS(1123), - [anon_sym_inline] = ACTIONS(1123), - [anon_sym___inline] = ACTIONS(1123), - [anon_sym___inline__] = ACTIONS(1123), - [anon_sym___forceinline] = ACTIONS(1123), - [anon_sym_thread_local] = ACTIONS(1123), - [anon_sym___thread] = ACTIONS(1123), - [anon_sym_const] = ACTIONS(1123), - [anon_sym_constexpr] = ACTIONS(1123), - [anon_sym_volatile] = ACTIONS(1123), - [anon_sym_restrict] = ACTIONS(1123), - [anon_sym___restrict__] = ACTIONS(1123), - [anon_sym__Atomic] = ACTIONS(1123), - [anon_sym__Noreturn] = ACTIONS(1123), - [anon_sym_noreturn] = ACTIONS(1123), - [anon_sym_alignas] = ACTIONS(1123), - [anon_sym__Alignas] = ACTIONS(1123), - [sym_primitive_type] = ACTIONS(1123), - [anon_sym_enum] = ACTIONS(1123), - [anon_sym_struct] = ACTIONS(1123), - [anon_sym_union] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1123), - [anon_sym_else] = ACTIONS(1123), - [anon_sym_switch] = ACTIONS(1123), - [anon_sym_case] = ACTIONS(1123), - [anon_sym_default] = ACTIONS(1123), - [anon_sym_while] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(1123), - [anon_sym_for] = ACTIONS(1123), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_break] = ACTIONS(1123), - [anon_sym_continue] = ACTIONS(1123), - [anon_sym_goto] = ACTIONS(1123), - [anon_sym___try] = ACTIONS(1123), - [anon_sym___leave] = ACTIONS(1123), - [anon_sym_DASH_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1125), - [anon_sym_sizeof] = ACTIONS(1123), - [anon_sym___alignof__] = ACTIONS(1123), - [anon_sym___alignof] = ACTIONS(1123), - [anon_sym__alignof] = ACTIONS(1123), - [anon_sym_alignof] = ACTIONS(1123), - [anon_sym__Alignof] = ACTIONS(1123), - [anon_sym_offsetof] = ACTIONS(1123), - [anon_sym__Generic] = ACTIONS(1123), - [anon_sym_asm] = ACTIONS(1123), - [anon_sym___asm__] = ACTIONS(1123), - [sym_number_literal] = ACTIONS(1125), - [anon_sym_L_SQUOTE] = ACTIONS(1125), - [anon_sym_u_SQUOTE] = ACTIONS(1125), - [anon_sym_U_SQUOTE] = ACTIONS(1125), - [anon_sym_u8_SQUOTE] = ACTIONS(1125), - [anon_sym_SQUOTE] = ACTIONS(1125), - [anon_sym_L_DQUOTE] = ACTIONS(1125), - [anon_sym_u_DQUOTE] = ACTIONS(1125), - [anon_sym_U_DQUOTE] = ACTIONS(1125), - [anon_sym_u8_DQUOTE] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(1125), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [anon_sym_NULL] = ACTIONS(1123), - [anon_sym_nullptr] = ACTIONS(1123), + [196] = { + [sym_identifier] = ACTIONS(1191), + [aux_sym_preproc_include_token1] = ACTIONS(1191), + [aux_sym_preproc_def_token1] = ACTIONS(1191), + [aux_sym_preproc_if_token1] = ACTIONS(1191), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1191), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1191), + [sym_preproc_directive] = ACTIONS(1191), + [anon_sym_LPAREN2] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(1193), + [anon_sym_TILDE] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1191), + [anon_sym_STAR] = ACTIONS(1193), + [anon_sym_AMP] = ACTIONS(1193), + [anon_sym_SEMI] = ACTIONS(1193), + [anon_sym___extension__] = ACTIONS(1191), + [anon_sym_typedef] = ACTIONS(1191), + [anon_sym_extern] = ACTIONS(1191), + [anon_sym___attribute__] = ACTIONS(1191), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1193), + [anon_sym___declspec] = ACTIONS(1191), + [anon_sym___cdecl] = ACTIONS(1191), + [anon_sym___clrcall] = ACTIONS(1191), + [anon_sym___stdcall] = ACTIONS(1191), + [anon_sym___fastcall] = ACTIONS(1191), + [anon_sym___thiscall] = ACTIONS(1191), + [anon_sym___vectorcall] = ACTIONS(1191), + [anon_sym_LBRACE] = ACTIONS(1193), + [anon_sym_RBRACE] = ACTIONS(1193), + [anon_sym_signed] = ACTIONS(1191), + [anon_sym_unsigned] = ACTIONS(1191), + [anon_sym_long] = ACTIONS(1191), + [anon_sym_short] = ACTIONS(1191), + [anon_sym_static] = ACTIONS(1191), + [anon_sym_auto] = ACTIONS(1191), + [anon_sym_register] = ACTIONS(1191), + [anon_sym_inline] = ACTIONS(1191), + [anon_sym___inline] = ACTIONS(1191), + [anon_sym___inline__] = ACTIONS(1191), + [anon_sym___forceinline] = ACTIONS(1191), + [anon_sym_thread_local] = ACTIONS(1191), + [anon_sym___thread] = ACTIONS(1191), + [anon_sym_const] = ACTIONS(1191), + [anon_sym_constexpr] = ACTIONS(1191), + [anon_sym_volatile] = ACTIONS(1191), + [anon_sym_restrict] = ACTIONS(1191), + [anon_sym___restrict__] = ACTIONS(1191), + [anon_sym__Atomic] = ACTIONS(1191), + [anon_sym__Noreturn] = ACTIONS(1191), + [anon_sym_noreturn] = ACTIONS(1191), + [anon_sym_alignas] = ACTIONS(1191), + [anon_sym__Alignas] = ACTIONS(1191), + [sym_primitive_type] = ACTIONS(1191), + [anon_sym_enum] = ACTIONS(1191), + [anon_sym_struct] = ACTIONS(1191), + [anon_sym_union] = ACTIONS(1191), + [anon_sym_if] = ACTIONS(1191), + [anon_sym_else] = ACTIONS(1191), + [anon_sym_switch] = ACTIONS(1191), + [anon_sym_case] = ACTIONS(1191), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_while] = ACTIONS(1191), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1191), + [anon_sym_return] = ACTIONS(1191), + [anon_sym_break] = ACTIONS(1191), + [anon_sym_continue] = ACTIONS(1191), + [anon_sym_goto] = ACTIONS(1191), + [anon_sym___try] = ACTIONS(1191), + [anon_sym___leave] = ACTIONS(1191), + [anon_sym_DASH_DASH] = ACTIONS(1193), + [anon_sym_PLUS_PLUS] = ACTIONS(1193), + [anon_sym_sizeof] = ACTIONS(1191), + [anon_sym___alignof__] = ACTIONS(1191), + [anon_sym___alignof] = ACTIONS(1191), + [anon_sym__alignof] = ACTIONS(1191), + [anon_sym_alignof] = ACTIONS(1191), + [anon_sym__Alignof] = ACTIONS(1191), + [anon_sym_offsetof] = ACTIONS(1191), + [anon_sym__Generic] = ACTIONS(1191), + [anon_sym_asm] = ACTIONS(1191), + [anon_sym___asm__] = ACTIONS(1191), + [sym_number_literal] = ACTIONS(1193), + [anon_sym_L_SQUOTE] = ACTIONS(1193), + [anon_sym_u_SQUOTE] = ACTIONS(1193), + [anon_sym_U_SQUOTE] = ACTIONS(1193), + [anon_sym_u8_SQUOTE] = ACTIONS(1193), + [anon_sym_SQUOTE] = ACTIONS(1193), + [anon_sym_L_DQUOTE] = ACTIONS(1193), + [anon_sym_u_DQUOTE] = ACTIONS(1193), + [anon_sym_U_DQUOTE] = ACTIONS(1193), + [anon_sym_u8_DQUOTE] = ACTIONS(1193), + [anon_sym_DQUOTE] = ACTIONS(1193), + [sym_true] = ACTIONS(1191), + [sym_false] = ACTIONS(1191), + [anon_sym_NULL] = ACTIONS(1191), + [anon_sym_nullptr] = ACTIONS(1191), [sym_comment] = ACTIONS(3), }, - [235] = { - [ts_builtin_sym_end] = ACTIONS(1177), - [sym_identifier] = ACTIONS(1175), - [aux_sym_preproc_include_token1] = ACTIONS(1175), - [aux_sym_preproc_def_token1] = ACTIONS(1175), - [aux_sym_preproc_if_token1] = ACTIONS(1175), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1175), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1175), - [sym_preproc_directive] = ACTIONS(1175), - [anon_sym_LPAREN2] = ACTIONS(1177), - [anon_sym_BANG] = ACTIONS(1177), - [anon_sym_TILDE] = ACTIONS(1177), - [anon_sym_DASH] = ACTIONS(1175), - [anon_sym_PLUS] = ACTIONS(1175), - [anon_sym_STAR] = ACTIONS(1177), - [anon_sym_AMP] = ACTIONS(1177), - [anon_sym_SEMI] = ACTIONS(1177), - [anon_sym___extension__] = ACTIONS(1175), - [anon_sym_typedef] = ACTIONS(1175), - [anon_sym_extern] = ACTIONS(1175), - [anon_sym___attribute__] = ACTIONS(1175), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1177), - [anon_sym___declspec] = ACTIONS(1175), - [anon_sym___cdecl] = ACTIONS(1175), - [anon_sym___clrcall] = ACTIONS(1175), - [anon_sym___stdcall] = ACTIONS(1175), - [anon_sym___fastcall] = ACTIONS(1175), - [anon_sym___thiscall] = ACTIONS(1175), - [anon_sym___vectorcall] = ACTIONS(1175), - [anon_sym_LBRACE] = ACTIONS(1177), - [anon_sym_signed] = ACTIONS(1175), - [anon_sym_unsigned] = ACTIONS(1175), - [anon_sym_long] = ACTIONS(1175), - [anon_sym_short] = ACTIONS(1175), - [anon_sym_static] = ACTIONS(1175), - [anon_sym_auto] = ACTIONS(1175), - [anon_sym_register] = ACTIONS(1175), - [anon_sym_inline] = ACTIONS(1175), - [anon_sym___inline] = ACTIONS(1175), - [anon_sym___inline__] = ACTIONS(1175), - [anon_sym___forceinline] = ACTIONS(1175), - [anon_sym_thread_local] = ACTIONS(1175), - [anon_sym___thread] = ACTIONS(1175), - [anon_sym_const] = ACTIONS(1175), - [anon_sym_constexpr] = ACTIONS(1175), - [anon_sym_volatile] = ACTIONS(1175), - [anon_sym_restrict] = ACTIONS(1175), - [anon_sym___restrict__] = ACTIONS(1175), - [anon_sym__Atomic] = ACTIONS(1175), - [anon_sym__Noreturn] = ACTIONS(1175), - [anon_sym_noreturn] = ACTIONS(1175), - [anon_sym_alignas] = ACTIONS(1175), - [anon_sym__Alignas] = ACTIONS(1175), - [sym_primitive_type] = ACTIONS(1175), - [anon_sym_enum] = ACTIONS(1175), - [anon_sym_struct] = ACTIONS(1175), - [anon_sym_union] = ACTIONS(1175), - [anon_sym_if] = ACTIONS(1175), - [anon_sym_else] = ACTIONS(1175), - [anon_sym_switch] = ACTIONS(1175), - [anon_sym_case] = ACTIONS(1175), - [anon_sym_default] = ACTIONS(1175), - [anon_sym_while] = ACTIONS(1175), - [anon_sym_do] = ACTIONS(1175), - [anon_sym_for] = ACTIONS(1175), + [197] = { + [ts_builtin_sym_end] = ACTIONS(1161), + [sym_identifier] = ACTIONS(1159), + [aux_sym_preproc_include_token1] = ACTIONS(1159), + [aux_sym_preproc_def_token1] = ACTIONS(1159), + [aux_sym_preproc_if_token1] = ACTIONS(1159), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1159), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1159), + [sym_preproc_directive] = ACTIONS(1159), + [anon_sym_LPAREN2] = ACTIONS(1161), + [anon_sym_BANG] = ACTIONS(1161), + [anon_sym_TILDE] = ACTIONS(1161), + [anon_sym_DASH] = ACTIONS(1159), + [anon_sym_PLUS] = ACTIONS(1159), + [anon_sym_STAR] = ACTIONS(1161), + [anon_sym_AMP] = ACTIONS(1161), + [anon_sym_SEMI] = ACTIONS(1161), + [anon_sym___extension__] = ACTIONS(1159), + [anon_sym_typedef] = ACTIONS(1159), + [anon_sym_extern] = ACTIONS(1159), + [anon_sym___attribute__] = ACTIONS(1159), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1161), + [anon_sym___declspec] = ACTIONS(1159), + [anon_sym___cdecl] = ACTIONS(1159), + [anon_sym___clrcall] = ACTIONS(1159), + [anon_sym___stdcall] = ACTIONS(1159), + [anon_sym___fastcall] = ACTIONS(1159), + [anon_sym___thiscall] = ACTIONS(1159), + [anon_sym___vectorcall] = ACTIONS(1159), + [anon_sym_LBRACE] = ACTIONS(1161), + [anon_sym_signed] = ACTIONS(1159), + [anon_sym_unsigned] = ACTIONS(1159), + [anon_sym_long] = ACTIONS(1159), + [anon_sym_short] = ACTIONS(1159), + [anon_sym_static] = ACTIONS(1159), + [anon_sym_auto] = ACTIONS(1159), + [anon_sym_register] = ACTIONS(1159), + [anon_sym_inline] = ACTIONS(1159), + [anon_sym___inline] = ACTIONS(1159), + [anon_sym___inline__] = ACTIONS(1159), + [anon_sym___forceinline] = ACTIONS(1159), + [anon_sym_thread_local] = ACTIONS(1159), + [anon_sym___thread] = ACTIONS(1159), + [anon_sym_const] = ACTIONS(1159), + [anon_sym_constexpr] = ACTIONS(1159), + [anon_sym_volatile] = ACTIONS(1159), + [anon_sym_restrict] = ACTIONS(1159), + [anon_sym___restrict__] = ACTIONS(1159), + [anon_sym__Atomic] = ACTIONS(1159), + [anon_sym__Noreturn] = ACTIONS(1159), + [anon_sym_noreturn] = ACTIONS(1159), + [anon_sym_alignas] = ACTIONS(1159), + [anon_sym__Alignas] = ACTIONS(1159), + [sym_primitive_type] = ACTIONS(1159), + [anon_sym_enum] = ACTIONS(1159), + [anon_sym_struct] = ACTIONS(1159), + [anon_sym_union] = ACTIONS(1159), + [anon_sym_if] = ACTIONS(1159), + [anon_sym_else] = ACTIONS(1159), + [anon_sym_switch] = ACTIONS(1159), + [anon_sym_case] = ACTIONS(1159), + [anon_sym_default] = ACTIONS(1159), + [anon_sym_while] = ACTIONS(1159), + [anon_sym_do] = ACTIONS(1159), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_return] = ACTIONS(1159), + [anon_sym_break] = ACTIONS(1159), + [anon_sym_continue] = ACTIONS(1159), + [anon_sym_goto] = ACTIONS(1159), + [anon_sym___try] = ACTIONS(1159), + [anon_sym___leave] = ACTIONS(1159), + [anon_sym_DASH_DASH] = ACTIONS(1161), + [anon_sym_PLUS_PLUS] = ACTIONS(1161), + [anon_sym_sizeof] = ACTIONS(1159), + [anon_sym___alignof__] = ACTIONS(1159), + [anon_sym___alignof] = ACTIONS(1159), + [anon_sym__alignof] = ACTIONS(1159), + [anon_sym_alignof] = ACTIONS(1159), + [anon_sym__Alignof] = ACTIONS(1159), + [anon_sym_offsetof] = ACTIONS(1159), + [anon_sym__Generic] = ACTIONS(1159), + [anon_sym_asm] = ACTIONS(1159), + [anon_sym___asm__] = ACTIONS(1159), + [sym_number_literal] = ACTIONS(1161), + [anon_sym_L_SQUOTE] = ACTIONS(1161), + [anon_sym_u_SQUOTE] = ACTIONS(1161), + [anon_sym_U_SQUOTE] = ACTIONS(1161), + [anon_sym_u8_SQUOTE] = ACTIONS(1161), + [anon_sym_SQUOTE] = ACTIONS(1161), + [anon_sym_L_DQUOTE] = ACTIONS(1161), + [anon_sym_u_DQUOTE] = ACTIONS(1161), + [anon_sym_U_DQUOTE] = ACTIONS(1161), + [anon_sym_u8_DQUOTE] = ACTIONS(1161), + [anon_sym_DQUOTE] = ACTIONS(1161), + [sym_true] = ACTIONS(1159), + [sym_false] = ACTIONS(1159), + [anon_sym_NULL] = ACTIONS(1159), + [anon_sym_nullptr] = ACTIONS(1159), + [sym_comment] = ACTIONS(3), + }, + [198] = { + [sym_identifier] = ACTIONS(1171), + [aux_sym_preproc_include_token1] = ACTIONS(1171), + [aux_sym_preproc_def_token1] = ACTIONS(1171), + [aux_sym_preproc_if_token1] = ACTIONS(1171), + [aux_sym_preproc_if_token2] = ACTIONS(1171), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1171), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1171), + [sym_preproc_directive] = ACTIONS(1171), + [anon_sym_LPAREN2] = ACTIONS(1173), + [anon_sym_BANG] = ACTIONS(1173), + [anon_sym_TILDE] = ACTIONS(1173), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1173), + [anon_sym_AMP] = ACTIONS(1173), + [anon_sym_SEMI] = ACTIONS(1173), + [anon_sym___extension__] = ACTIONS(1171), + [anon_sym_typedef] = ACTIONS(1171), + [anon_sym_extern] = ACTIONS(1171), + [anon_sym___attribute__] = ACTIONS(1171), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1173), + [anon_sym___declspec] = ACTIONS(1171), + [anon_sym___cdecl] = ACTIONS(1171), + [anon_sym___clrcall] = ACTIONS(1171), + [anon_sym___stdcall] = ACTIONS(1171), + [anon_sym___fastcall] = ACTIONS(1171), + [anon_sym___thiscall] = ACTIONS(1171), + [anon_sym___vectorcall] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_signed] = ACTIONS(1171), + [anon_sym_unsigned] = ACTIONS(1171), + [anon_sym_long] = ACTIONS(1171), + [anon_sym_short] = ACTIONS(1171), + [anon_sym_static] = ACTIONS(1171), + [anon_sym_auto] = ACTIONS(1171), + [anon_sym_register] = ACTIONS(1171), + [anon_sym_inline] = ACTIONS(1171), + [anon_sym___inline] = ACTIONS(1171), + [anon_sym___inline__] = ACTIONS(1171), + [anon_sym___forceinline] = ACTIONS(1171), + [anon_sym_thread_local] = ACTIONS(1171), + [anon_sym___thread] = ACTIONS(1171), + [anon_sym_const] = ACTIONS(1171), + [anon_sym_constexpr] = ACTIONS(1171), + [anon_sym_volatile] = ACTIONS(1171), + [anon_sym_restrict] = ACTIONS(1171), + [anon_sym___restrict__] = ACTIONS(1171), + [anon_sym__Atomic] = ACTIONS(1171), + [anon_sym__Noreturn] = ACTIONS(1171), + [anon_sym_noreturn] = ACTIONS(1171), + [anon_sym_alignas] = ACTIONS(1171), + [anon_sym__Alignas] = ACTIONS(1171), + [sym_primitive_type] = ACTIONS(1171), + [anon_sym_enum] = ACTIONS(1171), + [anon_sym_struct] = ACTIONS(1171), + [anon_sym_union] = ACTIONS(1171), + [anon_sym_if] = ACTIONS(1171), + [anon_sym_else] = ACTIONS(1171), + [anon_sym_switch] = ACTIONS(1171), + [anon_sym_case] = ACTIONS(1171), + [anon_sym_default] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1171), + [anon_sym_for] = ACTIONS(1171), + [anon_sym_return] = ACTIONS(1171), + [anon_sym_break] = ACTIONS(1171), + [anon_sym_continue] = ACTIONS(1171), + [anon_sym_goto] = ACTIONS(1171), + [anon_sym___try] = ACTIONS(1171), + [anon_sym___leave] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1173), + [anon_sym_PLUS_PLUS] = ACTIONS(1173), + [anon_sym_sizeof] = ACTIONS(1171), + [anon_sym___alignof__] = ACTIONS(1171), + [anon_sym___alignof] = ACTIONS(1171), + [anon_sym__alignof] = ACTIONS(1171), + [anon_sym_alignof] = ACTIONS(1171), + [anon_sym__Alignof] = ACTIONS(1171), + [anon_sym_offsetof] = ACTIONS(1171), + [anon_sym__Generic] = ACTIONS(1171), + [anon_sym_asm] = ACTIONS(1171), + [anon_sym___asm__] = ACTIONS(1171), + [sym_number_literal] = ACTIONS(1173), + [anon_sym_L_SQUOTE] = ACTIONS(1173), + [anon_sym_u_SQUOTE] = ACTIONS(1173), + [anon_sym_U_SQUOTE] = ACTIONS(1173), + [anon_sym_u8_SQUOTE] = ACTIONS(1173), + [anon_sym_SQUOTE] = ACTIONS(1173), + [anon_sym_L_DQUOTE] = ACTIONS(1173), + [anon_sym_u_DQUOTE] = ACTIONS(1173), + [anon_sym_U_DQUOTE] = ACTIONS(1173), + [anon_sym_u8_DQUOTE] = ACTIONS(1173), + [anon_sym_DQUOTE] = ACTIONS(1173), + [sym_true] = ACTIONS(1171), + [sym_false] = ACTIONS(1171), + [anon_sym_NULL] = ACTIONS(1171), + [anon_sym_nullptr] = ACTIONS(1171), + [sym_comment] = ACTIONS(3), + }, + [199] = { + [ts_builtin_sym_end] = ACTIONS(1177), + [sym_identifier] = ACTIONS(1175), + [aux_sym_preproc_include_token1] = ACTIONS(1175), + [aux_sym_preproc_def_token1] = ACTIONS(1175), + [aux_sym_preproc_if_token1] = ACTIONS(1175), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1175), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1175), + [sym_preproc_directive] = ACTIONS(1175), + [anon_sym_LPAREN2] = ACTIONS(1177), + [anon_sym_BANG] = ACTIONS(1177), + [anon_sym_TILDE] = ACTIONS(1177), + [anon_sym_DASH] = ACTIONS(1175), + [anon_sym_PLUS] = ACTIONS(1175), + [anon_sym_STAR] = ACTIONS(1177), + [anon_sym_AMP] = ACTIONS(1177), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym___extension__] = ACTIONS(1175), + [anon_sym_typedef] = ACTIONS(1175), + [anon_sym_extern] = ACTIONS(1175), + [anon_sym___attribute__] = ACTIONS(1175), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1177), + [anon_sym___declspec] = ACTIONS(1175), + [anon_sym___cdecl] = ACTIONS(1175), + [anon_sym___clrcall] = ACTIONS(1175), + [anon_sym___stdcall] = ACTIONS(1175), + [anon_sym___fastcall] = ACTIONS(1175), + [anon_sym___thiscall] = ACTIONS(1175), + [anon_sym___vectorcall] = ACTIONS(1175), + [anon_sym_LBRACE] = ACTIONS(1177), + [anon_sym_signed] = ACTIONS(1175), + [anon_sym_unsigned] = ACTIONS(1175), + [anon_sym_long] = ACTIONS(1175), + [anon_sym_short] = ACTIONS(1175), + [anon_sym_static] = ACTIONS(1175), + [anon_sym_auto] = ACTIONS(1175), + [anon_sym_register] = ACTIONS(1175), + [anon_sym_inline] = ACTIONS(1175), + [anon_sym___inline] = ACTIONS(1175), + [anon_sym___inline__] = ACTIONS(1175), + [anon_sym___forceinline] = ACTIONS(1175), + [anon_sym_thread_local] = ACTIONS(1175), + [anon_sym___thread] = ACTIONS(1175), + [anon_sym_const] = ACTIONS(1175), + [anon_sym_constexpr] = ACTIONS(1175), + [anon_sym_volatile] = ACTIONS(1175), + [anon_sym_restrict] = ACTIONS(1175), + [anon_sym___restrict__] = ACTIONS(1175), + [anon_sym__Atomic] = ACTIONS(1175), + [anon_sym__Noreturn] = ACTIONS(1175), + [anon_sym_noreturn] = ACTIONS(1175), + [anon_sym_alignas] = ACTIONS(1175), + [anon_sym__Alignas] = ACTIONS(1175), + [sym_primitive_type] = ACTIONS(1175), + [anon_sym_enum] = ACTIONS(1175), + [anon_sym_struct] = ACTIONS(1175), + [anon_sym_union] = ACTIONS(1175), + [anon_sym_if] = ACTIONS(1175), + [anon_sym_else] = ACTIONS(1175), + [anon_sym_switch] = ACTIONS(1175), + [anon_sym_case] = ACTIONS(1175), + [anon_sym_default] = ACTIONS(1175), + [anon_sym_while] = ACTIONS(1175), + [anon_sym_do] = ACTIONS(1175), + [anon_sym_for] = ACTIONS(1175), [anon_sym_return] = ACTIONS(1175), [anon_sym_break] = ACTIONS(1175), [anon_sym_continue] = ACTIONS(1175), @@ -40177,1007 +36460,708 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1175), [sym_comment] = ACTIONS(3), }, - [236] = { - [sym_identifier] = ACTIONS(1139), - [aux_sym_preproc_include_token1] = ACTIONS(1139), - [aux_sym_preproc_def_token1] = ACTIONS(1139), - [aux_sym_preproc_if_token1] = ACTIONS(1139), - [aux_sym_preproc_if_token2] = ACTIONS(1139), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1139), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1139), - [sym_preproc_directive] = ACTIONS(1139), - [anon_sym_LPAREN2] = ACTIONS(1141), - [anon_sym_BANG] = ACTIONS(1141), - [anon_sym_TILDE] = ACTIONS(1141), - [anon_sym_DASH] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(1139), - [anon_sym_STAR] = ACTIONS(1141), - [anon_sym_AMP] = ACTIONS(1141), - [anon_sym_SEMI] = ACTIONS(1141), - [anon_sym___extension__] = ACTIONS(1139), - [anon_sym_typedef] = ACTIONS(1139), - [anon_sym_extern] = ACTIONS(1139), - [anon_sym___attribute__] = ACTIONS(1139), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1141), - [anon_sym___declspec] = ACTIONS(1139), - [anon_sym___cdecl] = ACTIONS(1139), - [anon_sym___clrcall] = ACTIONS(1139), - [anon_sym___stdcall] = ACTIONS(1139), - [anon_sym___fastcall] = ACTIONS(1139), - [anon_sym___thiscall] = ACTIONS(1139), - [anon_sym___vectorcall] = ACTIONS(1139), - [anon_sym_LBRACE] = ACTIONS(1141), - [anon_sym_signed] = ACTIONS(1139), - [anon_sym_unsigned] = ACTIONS(1139), - [anon_sym_long] = ACTIONS(1139), - [anon_sym_short] = ACTIONS(1139), - [anon_sym_static] = ACTIONS(1139), - [anon_sym_auto] = ACTIONS(1139), - [anon_sym_register] = ACTIONS(1139), - [anon_sym_inline] = ACTIONS(1139), - [anon_sym___inline] = ACTIONS(1139), - [anon_sym___inline__] = ACTIONS(1139), - [anon_sym___forceinline] = ACTIONS(1139), - [anon_sym_thread_local] = ACTIONS(1139), - [anon_sym___thread] = ACTIONS(1139), - [anon_sym_const] = ACTIONS(1139), - [anon_sym_constexpr] = ACTIONS(1139), - [anon_sym_volatile] = ACTIONS(1139), - [anon_sym_restrict] = ACTIONS(1139), - [anon_sym___restrict__] = ACTIONS(1139), - [anon_sym__Atomic] = ACTIONS(1139), - [anon_sym__Noreturn] = ACTIONS(1139), - [anon_sym_noreturn] = ACTIONS(1139), - [anon_sym_alignas] = ACTIONS(1139), - [anon_sym__Alignas] = ACTIONS(1139), - [sym_primitive_type] = ACTIONS(1139), - [anon_sym_enum] = ACTIONS(1139), - [anon_sym_struct] = ACTIONS(1139), - [anon_sym_union] = ACTIONS(1139), - [anon_sym_if] = ACTIONS(1139), - [anon_sym_else] = ACTIONS(1139), - [anon_sym_switch] = ACTIONS(1139), - [anon_sym_case] = ACTIONS(1139), - [anon_sym_default] = ACTIONS(1139), - [anon_sym_while] = ACTIONS(1139), - [anon_sym_do] = ACTIONS(1139), - [anon_sym_for] = ACTIONS(1139), - [anon_sym_return] = ACTIONS(1139), - [anon_sym_break] = ACTIONS(1139), - [anon_sym_continue] = ACTIONS(1139), - [anon_sym_goto] = ACTIONS(1139), - [anon_sym___try] = ACTIONS(1139), - [anon_sym___leave] = ACTIONS(1139), - [anon_sym_DASH_DASH] = ACTIONS(1141), - [anon_sym_PLUS_PLUS] = ACTIONS(1141), - [anon_sym_sizeof] = ACTIONS(1139), - [anon_sym___alignof__] = ACTIONS(1139), - [anon_sym___alignof] = ACTIONS(1139), - [anon_sym__alignof] = ACTIONS(1139), - [anon_sym_alignof] = ACTIONS(1139), - [anon_sym__Alignof] = ACTIONS(1139), - [anon_sym_offsetof] = ACTIONS(1139), - [anon_sym__Generic] = ACTIONS(1139), - [anon_sym_asm] = ACTIONS(1139), - [anon_sym___asm__] = ACTIONS(1139), - [sym_number_literal] = ACTIONS(1141), - [anon_sym_L_SQUOTE] = ACTIONS(1141), - [anon_sym_u_SQUOTE] = ACTIONS(1141), - [anon_sym_U_SQUOTE] = ACTIONS(1141), - [anon_sym_u8_SQUOTE] = ACTIONS(1141), - [anon_sym_SQUOTE] = ACTIONS(1141), - [anon_sym_L_DQUOTE] = ACTIONS(1141), - [anon_sym_u_DQUOTE] = ACTIONS(1141), - [anon_sym_U_DQUOTE] = ACTIONS(1141), - [anon_sym_u8_DQUOTE] = ACTIONS(1141), - [anon_sym_DQUOTE] = ACTIONS(1141), - [sym_true] = ACTIONS(1139), - [sym_false] = ACTIONS(1139), - [anon_sym_NULL] = ACTIONS(1139), - [anon_sym_nullptr] = ACTIONS(1139), + [200] = { + [sym_identifier] = ACTIONS(1191), + [aux_sym_preproc_include_token1] = ACTIONS(1191), + [aux_sym_preproc_def_token1] = ACTIONS(1191), + [aux_sym_preproc_if_token1] = ACTIONS(1191), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1191), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1191), + [sym_preproc_directive] = ACTIONS(1191), + [anon_sym_LPAREN2] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(1193), + [anon_sym_TILDE] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1191), + [anon_sym_STAR] = ACTIONS(1193), + [anon_sym_AMP] = ACTIONS(1193), + [anon_sym_SEMI] = ACTIONS(1193), + [anon_sym___extension__] = ACTIONS(1191), + [anon_sym_typedef] = ACTIONS(1191), + [anon_sym_extern] = ACTIONS(1191), + [anon_sym___attribute__] = ACTIONS(1191), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1193), + [anon_sym___declspec] = ACTIONS(1191), + [anon_sym___cdecl] = ACTIONS(1191), + [anon_sym___clrcall] = ACTIONS(1191), + [anon_sym___stdcall] = ACTIONS(1191), + [anon_sym___fastcall] = ACTIONS(1191), + [anon_sym___thiscall] = ACTIONS(1191), + [anon_sym___vectorcall] = ACTIONS(1191), + [anon_sym_LBRACE] = ACTIONS(1193), + [anon_sym_RBRACE] = ACTIONS(1193), + [anon_sym_signed] = ACTIONS(1191), + [anon_sym_unsigned] = ACTIONS(1191), + [anon_sym_long] = ACTIONS(1191), + [anon_sym_short] = ACTIONS(1191), + [anon_sym_static] = ACTIONS(1191), + [anon_sym_auto] = ACTIONS(1191), + [anon_sym_register] = ACTIONS(1191), + [anon_sym_inline] = ACTIONS(1191), + [anon_sym___inline] = ACTIONS(1191), + [anon_sym___inline__] = ACTIONS(1191), + [anon_sym___forceinline] = ACTIONS(1191), + [anon_sym_thread_local] = ACTIONS(1191), + [anon_sym___thread] = ACTIONS(1191), + [anon_sym_const] = ACTIONS(1191), + [anon_sym_constexpr] = ACTIONS(1191), + [anon_sym_volatile] = ACTIONS(1191), + [anon_sym_restrict] = ACTIONS(1191), + [anon_sym___restrict__] = ACTIONS(1191), + [anon_sym__Atomic] = ACTIONS(1191), + [anon_sym__Noreturn] = ACTIONS(1191), + [anon_sym_noreturn] = ACTIONS(1191), + [anon_sym_alignas] = ACTIONS(1191), + [anon_sym__Alignas] = ACTIONS(1191), + [sym_primitive_type] = ACTIONS(1191), + [anon_sym_enum] = ACTIONS(1191), + [anon_sym_struct] = ACTIONS(1191), + [anon_sym_union] = ACTIONS(1191), + [anon_sym_if] = ACTIONS(1191), + [anon_sym_else] = ACTIONS(1191), + [anon_sym_switch] = ACTIONS(1191), + [anon_sym_case] = ACTIONS(1191), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_while] = ACTIONS(1191), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1191), + [anon_sym_return] = ACTIONS(1191), + [anon_sym_break] = ACTIONS(1191), + [anon_sym_continue] = ACTIONS(1191), + [anon_sym_goto] = ACTIONS(1191), + [anon_sym___try] = ACTIONS(1191), + [anon_sym___leave] = ACTIONS(1191), + [anon_sym_DASH_DASH] = ACTIONS(1193), + [anon_sym_PLUS_PLUS] = ACTIONS(1193), + [anon_sym_sizeof] = ACTIONS(1191), + [anon_sym___alignof__] = ACTIONS(1191), + [anon_sym___alignof] = ACTIONS(1191), + [anon_sym__alignof] = ACTIONS(1191), + [anon_sym_alignof] = ACTIONS(1191), + [anon_sym__Alignof] = ACTIONS(1191), + [anon_sym_offsetof] = ACTIONS(1191), + [anon_sym__Generic] = ACTIONS(1191), + [anon_sym_asm] = ACTIONS(1191), + [anon_sym___asm__] = ACTIONS(1191), + [sym_number_literal] = ACTIONS(1193), + [anon_sym_L_SQUOTE] = ACTIONS(1193), + [anon_sym_u_SQUOTE] = ACTIONS(1193), + [anon_sym_U_SQUOTE] = ACTIONS(1193), + [anon_sym_u8_SQUOTE] = ACTIONS(1193), + [anon_sym_SQUOTE] = ACTIONS(1193), + [anon_sym_L_DQUOTE] = ACTIONS(1193), + [anon_sym_u_DQUOTE] = ACTIONS(1193), + [anon_sym_U_DQUOTE] = ACTIONS(1193), + [anon_sym_u8_DQUOTE] = ACTIONS(1193), + [anon_sym_DQUOTE] = ACTIONS(1193), + [sym_true] = ACTIONS(1191), + [sym_false] = ACTIONS(1191), + [anon_sym_NULL] = ACTIONS(1191), + [anon_sym_nullptr] = ACTIONS(1191), [sym_comment] = ACTIONS(3), }, - [237] = { - [ts_builtin_sym_end] = ACTIONS(1145), - [sym_identifier] = ACTIONS(1143), - [aux_sym_preproc_include_token1] = ACTIONS(1143), - [aux_sym_preproc_def_token1] = ACTIONS(1143), - [aux_sym_preproc_if_token1] = ACTIONS(1143), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1143), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1143), - [sym_preproc_directive] = ACTIONS(1143), - [anon_sym_LPAREN2] = ACTIONS(1145), - [anon_sym_BANG] = ACTIONS(1145), - [anon_sym_TILDE] = ACTIONS(1145), - [anon_sym_DASH] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_STAR] = ACTIONS(1145), - [anon_sym_AMP] = ACTIONS(1145), - [anon_sym_SEMI] = ACTIONS(1145), - [anon_sym___extension__] = ACTIONS(1143), - [anon_sym_typedef] = ACTIONS(1143), - [anon_sym_extern] = ACTIONS(1143), - [anon_sym___attribute__] = ACTIONS(1143), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), - [anon_sym___declspec] = ACTIONS(1143), - [anon_sym___cdecl] = ACTIONS(1143), - [anon_sym___clrcall] = ACTIONS(1143), - [anon_sym___stdcall] = ACTIONS(1143), - [anon_sym___fastcall] = ACTIONS(1143), - [anon_sym___thiscall] = ACTIONS(1143), - [anon_sym___vectorcall] = ACTIONS(1143), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_signed] = ACTIONS(1143), - [anon_sym_unsigned] = ACTIONS(1143), - [anon_sym_long] = ACTIONS(1143), - [anon_sym_short] = ACTIONS(1143), - [anon_sym_static] = ACTIONS(1143), - [anon_sym_auto] = ACTIONS(1143), - [anon_sym_register] = ACTIONS(1143), - [anon_sym_inline] = ACTIONS(1143), - [anon_sym___inline] = ACTIONS(1143), - [anon_sym___inline__] = ACTIONS(1143), - [anon_sym___forceinline] = ACTIONS(1143), - [anon_sym_thread_local] = ACTIONS(1143), - [anon_sym___thread] = ACTIONS(1143), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_constexpr] = ACTIONS(1143), - [anon_sym_volatile] = ACTIONS(1143), - [anon_sym_restrict] = ACTIONS(1143), - [anon_sym___restrict__] = ACTIONS(1143), - [anon_sym__Atomic] = ACTIONS(1143), - [anon_sym__Noreturn] = ACTIONS(1143), - [anon_sym_noreturn] = ACTIONS(1143), - [anon_sym_alignas] = ACTIONS(1143), - [anon_sym__Alignas] = ACTIONS(1143), - [sym_primitive_type] = ACTIONS(1143), - [anon_sym_enum] = ACTIONS(1143), - [anon_sym_struct] = ACTIONS(1143), - [anon_sym_union] = ACTIONS(1143), - [anon_sym_if] = ACTIONS(1143), - [anon_sym_else] = ACTIONS(1143), - [anon_sym_switch] = ACTIONS(1143), - [anon_sym_case] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1143), - [anon_sym_while] = ACTIONS(1143), - [anon_sym_do] = ACTIONS(1143), - [anon_sym_for] = ACTIONS(1143), - [anon_sym_return] = ACTIONS(1143), - [anon_sym_break] = ACTIONS(1143), - [anon_sym_continue] = ACTIONS(1143), - [anon_sym_goto] = ACTIONS(1143), - [anon_sym___try] = ACTIONS(1143), - [anon_sym___leave] = ACTIONS(1143), - [anon_sym_DASH_DASH] = ACTIONS(1145), - [anon_sym_PLUS_PLUS] = ACTIONS(1145), - [anon_sym_sizeof] = ACTIONS(1143), - [anon_sym___alignof__] = ACTIONS(1143), - [anon_sym___alignof] = ACTIONS(1143), - [anon_sym__alignof] = ACTIONS(1143), - [anon_sym_alignof] = ACTIONS(1143), - [anon_sym__Alignof] = ACTIONS(1143), - [anon_sym_offsetof] = ACTIONS(1143), - [anon_sym__Generic] = ACTIONS(1143), - [anon_sym_asm] = ACTIONS(1143), - [anon_sym___asm__] = ACTIONS(1143), - [sym_number_literal] = ACTIONS(1145), - [anon_sym_L_SQUOTE] = ACTIONS(1145), - [anon_sym_u_SQUOTE] = ACTIONS(1145), - [anon_sym_U_SQUOTE] = ACTIONS(1145), - [anon_sym_u8_SQUOTE] = ACTIONS(1145), - [anon_sym_SQUOTE] = ACTIONS(1145), - [anon_sym_L_DQUOTE] = ACTIONS(1145), - [anon_sym_u_DQUOTE] = ACTIONS(1145), - [anon_sym_U_DQUOTE] = ACTIONS(1145), - [anon_sym_u8_DQUOTE] = ACTIONS(1145), - [anon_sym_DQUOTE] = ACTIONS(1145), - [sym_true] = ACTIONS(1143), - [sym_false] = ACTIONS(1143), - [anon_sym_NULL] = ACTIONS(1143), - [anon_sym_nullptr] = ACTIONS(1143), + [201] = { + [sym_identifier] = ACTIONS(1203), + [aux_sym_preproc_include_token1] = ACTIONS(1203), + [aux_sym_preproc_def_token1] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1203), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1203), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1203), + [sym_preproc_directive] = ACTIONS(1203), + [anon_sym_LPAREN2] = ACTIONS(1205), + [anon_sym_BANG] = ACTIONS(1205), + [anon_sym_TILDE] = ACTIONS(1205), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_AMP] = ACTIONS(1205), + [anon_sym_SEMI] = ACTIONS(1205), + [anon_sym___extension__] = ACTIONS(1203), + [anon_sym_typedef] = ACTIONS(1203), + [anon_sym_extern] = ACTIONS(1203), + [anon_sym___attribute__] = ACTIONS(1203), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1205), + [anon_sym___declspec] = ACTIONS(1203), + [anon_sym___cdecl] = ACTIONS(1203), + [anon_sym___clrcall] = ACTIONS(1203), + [anon_sym___stdcall] = ACTIONS(1203), + [anon_sym___fastcall] = ACTIONS(1203), + [anon_sym___thiscall] = ACTIONS(1203), + [anon_sym___vectorcall] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [anon_sym_RBRACE] = ACTIONS(1205), + [anon_sym_signed] = ACTIONS(1203), + [anon_sym_unsigned] = ACTIONS(1203), + [anon_sym_long] = ACTIONS(1203), + [anon_sym_short] = ACTIONS(1203), + [anon_sym_static] = ACTIONS(1203), + [anon_sym_auto] = ACTIONS(1203), + [anon_sym_register] = ACTIONS(1203), + [anon_sym_inline] = ACTIONS(1203), + [anon_sym___inline] = ACTIONS(1203), + [anon_sym___inline__] = ACTIONS(1203), + [anon_sym___forceinline] = ACTIONS(1203), + [anon_sym_thread_local] = ACTIONS(1203), + [anon_sym___thread] = ACTIONS(1203), + [anon_sym_const] = ACTIONS(1203), + [anon_sym_constexpr] = ACTIONS(1203), + [anon_sym_volatile] = ACTIONS(1203), + [anon_sym_restrict] = ACTIONS(1203), + [anon_sym___restrict__] = ACTIONS(1203), + [anon_sym__Atomic] = ACTIONS(1203), + [anon_sym__Noreturn] = ACTIONS(1203), + [anon_sym_noreturn] = ACTIONS(1203), + [anon_sym_alignas] = ACTIONS(1203), + [anon_sym__Alignas] = ACTIONS(1203), + [sym_primitive_type] = ACTIONS(1203), + [anon_sym_enum] = ACTIONS(1203), + [anon_sym_struct] = ACTIONS(1203), + [anon_sym_union] = ACTIONS(1203), + [anon_sym_if] = ACTIONS(1203), + [anon_sym_else] = ACTIONS(1203), + [anon_sym_switch] = ACTIONS(1203), + [anon_sym_case] = ACTIONS(1203), + [anon_sym_default] = ACTIONS(1203), + [anon_sym_while] = ACTIONS(1203), + [anon_sym_do] = ACTIONS(1203), + [anon_sym_for] = ACTIONS(1203), + [anon_sym_return] = ACTIONS(1203), + [anon_sym_break] = ACTIONS(1203), + [anon_sym_continue] = ACTIONS(1203), + [anon_sym_goto] = ACTIONS(1203), + [anon_sym___try] = ACTIONS(1203), + [anon_sym___leave] = ACTIONS(1203), + [anon_sym_DASH_DASH] = ACTIONS(1205), + [anon_sym_PLUS_PLUS] = ACTIONS(1205), + [anon_sym_sizeof] = ACTIONS(1203), + [anon_sym___alignof__] = ACTIONS(1203), + [anon_sym___alignof] = ACTIONS(1203), + [anon_sym__alignof] = ACTIONS(1203), + [anon_sym_alignof] = ACTIONS(1203), + [anon_sym__Alignof] = ACTIONS(1203), + [anon_sym_offsetof] = ACTIONS(1203), + [anon_sym__Generic] = ACTIONS(1203), + [anon_sym_asm] = ACTIONS(1203), + [anon_sym___asm__] = ACTIONS(1203), + [sym_number_literal] = ACTIONS(1205), + [anon_sym_L_SQUOTE] = ACTIONS(1205), + [anon_sym_u_SQUOTE] = ACTIONS(1205), + [anon_sym_U_SQUOTE] = ACTIONS(1205), + [anon_sym_u8_SQUOTE] = ACTIONS(1205), + [anon_sym_SQUOTE] = ACTIONS(1205), + [anon_sym_L_DQUOTE] = ACTIONS(1205), + [anon_sym_u_DQUOTE] = ACTIONS(1205), + [anon_sym_U_DQUOTE] = ACTIONS(1205), + [anon_sym_u8_DQUOTE] = ACTIONS(1205), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_true] = ACTIONS(1203), + [sym_false] = ACTIONS(1203), + [anon_sym_NULL] = ACTIONS(1203), + [anon_sym_nullptr] = ACTIONS(1203), [sym_comment] = ACTIONS(3), }, - [238] = { - [sym_identifier] = ACTIONS(1131), - [aux_sym_preproc_include_token1] = ACTIONS(1131), - [aux_sym_preproc_def_token1] = ACTIONS(1131), - [aux_sym_preproc_if_token1] = ACTIONS(1131), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1131), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1131), - [sym_preproc_directive] = ACTIONS(1131), - [anon_sym_LPAREN2] = ACTIONS(1133), - [anon_sym_BANG] = ACTIONS(1133), - [anon_sym_TILDE] = ACTIONS(1133), - [anon_sym_DASH] = ACTIONS(1131), - [anon_sym_PLUS] = ACTIONS(1131), - [anon_sym_STAR] = ACTIONS(1133), - [anon_sym_AMP] = ACTIONS(1133), - [anon_sym_SEMI] = ACTIONS(1133), - [anon_sym___extension__] = ACTIONS(1131), - [anon_sym_typedef] = ACTIONS(1131), - [anon_sym_extern] = ACTIONS(1131), - [anon_sym___attribute__] = ACTIONS(1131), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1133), - [anon_sym___declspec] = ACTIONS(1131), - [anon_sym___cdecl] = ACTIONS(1131), - [anon_sym___clrcall] = ACTIONS(1131), - [anon_sym___stdcall] = ACTIONS(1131), - [anon_sym___fastcall] = ACTIONS(1131), - [anon_sym___thiscall] = ACTIONS(1131), - [anon_sym___vectorcall] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(1133), - [anon_sym_RBRACE] = ACTIONS(1133), - [anon_sym_signed] = ACTIONS(1131), - [anon_sym_unsigned] = ACTIONS(1131), - [anon_sym_long] = ACTIONS(1131), - [anon_sym_short] = ACTIONS(1131), - [anon_sym_static] = ACTIONS(1131), - [anon_sym_auto] = ACTIONS(1131), - [anon_sym_register] = ACTIONS(1131), - [anon_sym_inline] = ACTIONS(1131), - [anon_sym___inline] = ACTIONS(1131), - [anon_sym___inline__] = ACTIONS(1131), - [anon_sym___forceinline] = ACTIONS(1131), - [anon_sym_thread_local] = ACTIONS(1131), - [anon_sym___thread] = ACTIONS(1131), - [anon_sym_const] = ACTIONS(1131), - [anon_sym_constexpr] = ACTIONS(1131), - [anon_sym_volatile] = ACTIONS(1131), - [anon_sym_restrict] = ACTIONS(1131), - [anon_sym___restrict__] = ACTIONS(1131), - [anon_sym__Atomic] = ACTIONS(1131), - [anon_sym__Noreturn] = ACTIONS(1131), - [anon_sym_noreturn] = ACTIONS(1131), - [anon_sym_alignas] = ACTIONS(1131), - [anon_sym__Alignas] = ACTIONS(1131), - [sym_primitive_type] = ACTIONS(1131), - [anon_sym_enum] = ACTIONS(1131), - [anon_sym_struct] = ACTIONS(1131), - [anon_sym_union] = ACTIONS(1131), - [anon_sym_if] = ACTIONS(1131), - [anon_sym_else] = ACTIONS(1131), - [anon_sym_switch] = ACTIONS(1131), - [anon_sym_case] = ACTIONS(1131), - [anon_sym_default] = ACTIONS(1131), - [anon_sym_while] = ACTIONS(1131), - [anon_sym_do] = ACTIONS(1131), - [anon_sym_for] = ACTIONS(1131), - [anon_sym_return] = ACTIONS(1131), - [anon_sym_break] = ACTIONS(1131), - [anon_sym_continue] = ACTIONS(1131), - [anon_sym_goto] = ACTIONS(1131), - [anon_sym___try] = ACTIONS(1131), - [anon_sym___leave] = ACTIONS(1131), - [anon_sym_DASH_DASH] = ACTIONS(1133), - [anon_sym_PLUS_PLUS] = ACTIONS(1133), - [anon_sym_sizeof] = ACTIONS(1131), - [anon_sym___alignof__] = ACTIONS(1131), - [anon_sym___alignof] = ACTIONS(1131), - [anon_sym__alignof] = ACTIONS(1131), - [anon_sym_alignof] = ACTIONS(1131), - [anon_sym__Alignof] = ACTIONS(1131), - [anon_sym_offsetof] = ACTIONS(1131), - [anon_sym__Generic] = ACTIONS(1131), - [anon_sym_asm] = ACTIONS(1131), - [anon_sym___asm__] = ACTIONS(1131), - [sym_number_literal] = ACTIONS(1133), - [anon_sym_L_SQUOTE] = ACTIONS(1133), - [anon_sym_u_SQUOTE] = ACTIONS(1133), - [anon_sym_U_SQUOTE] = ACTIONS(1133), - [anon_sym_u8_SQUOTE] = ACTIONS(1133), - [anon_sym_SQUOTE] = ACTIONS(1133), - [anon_sym_L_DQUOTE] = ACTIONS(1133), - [anon_sym_u_DQUOTE] = ACTIONS(1133), - [anon_sym_U_DQUOTE] = ACTIONS(1133), - [anon_sym_u8_DQUOTE] = ACTIONS(1133), - [anon_sym_DQUOTE] = ACTIONS(1133), - [sym_true] = ACTIONS(1131), - [sym_false] = ACTIONS(1131), - [anon_sym_NULL] = ACTIONS(1131), - [anon_sym_nullptr] = ACTIONS(1131), + [202] = { + [sym_identifier] = ACTIONS(1203), + [aux_sym_preproc_include_token1] = ACTIONS(1203), + [aux_sym_preproc_def_token1] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1203), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1203), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1203), + [sym_preproc_directive] = ACTIONS(1203), + [anon_sym_LPAREN2] = ACTIONS(1205), + [anon_sym_BANG] = ACTIONS(1205), + [anon_sym_TILDE] = ACTIONS(1205), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_AMP] = ACTIONS(1205), + [anon_sym_SEMI] = ACTIONS(1205), + [anon_sym___extension__] = ACTIONS(1203), + [anon_sym_typedef] = ACTIONS(1203), + [anon_sym_extern] = ACTIONS(1203), + [anon_sym___attribute__] = ACTIONS(1203), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1205), + [anon_sym___declspec] = ACTIONS(1203), + [anon_sym___cdecl] = ACTIONS(1203), + [anon_sym___clrcall] = ACTIONS(1203), + [anon_sym___stdcall] = ACTIONS(1203), + [anon_sym___fastcall] = ACTIONS(1203), + [anon_sym___thiscall] = ACTIONS(1203), + [anon_sym___vectorcall] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [anon_sym_RBRACE] = ACTIONS(1205), + [anon_sym_signed] = ACTIONS(1203), + [anon_sym_unsigned] = ACTIONS(1203), + [anon_sym_long] = ACTIONS(1203), + [anon_sym_short] = ACTIONS(1203), + [anon_sym_static] = ACTIONS(1203), + [anon_sym_auto] = ACTIONS(1203), + [anon_sym_register] = ACTIONS(1203), + [anon_sym_inline] = ACTIONS(1203), + [anon_sym___inline] = ACTIONS(1203), + [anon_sym___inline__] = ACTIONS(1203), + [anon_sym___forceinline] = ACTIONS(1203), + [anon_sym_thread_local] = ACTIONS(1203), + [anon_sym___thread] = ACTIONS(1203), + [anon_sym_const] = ACTIONS(1203), + [anon_sym_constexpr] = ACTIONS(1203), + [anon_sym_volatile] = ACTIONS(1203), + [anon_sym_restrict] = ACTIONS(1203), + [anon_sym___restrict__] = ACTIONS(1203), + [anon_sym__Atomic] = ACTIONS(1203), + [anon_sym__Noreturn] = ACTIONS(1203), + [anon_sym_noreturn] = ACTIONS(1203), + [anon_sym_alignas] = ACTIONS(1203), + [anon_sym__Alignas] = ACTIONS(1203), + [sym_primitive_type] = ACTIONS(1203), + [anon_sym_enum] = ACTIONS(1203), + [anon_sym_struct] = ACTIONS(1203), + [anon_sym_union] = ACTIONS(1203), + [anon_sym_if] = ACTIONS(1203), + [anon_sym_else] = ACTIONS(1203), + [anon_sym_switch] = ACTIONS(1203), + [anon_sym_case] = ACTIONS(1203), + [anon_sym_default] = ACTIONS(1203), + [anon_sym_while] = ACTIONS(1203), + [anon_sym_do] = ACTIONS(1203), + [anon_sym_for] = ACTIONS(1203), + [anon_sym_return] = ACTIONS(1203), + [anon_sym_break] = ACTIONS(1203), + [anon_sym_continue] = ACTIONS(1203), + [anon_sym_goto] = ACTIONS(1203), + [anon_sym___try] = ACTIONS(1203), + [anon_sym___leave] = ACTIONS(1203), + [anon_sym_DASH_DASH] = ACTIONS(1205), + [anon_sym_PLUS_PLUS] = ACTIONS(1205), + [anon_sym_sizeof] = ACTIONS(1203), + [anon_sym___alignof__] = ACTIONS(1203), + [anon_sym___alignof] = ACTIONS(1203), + [anon_sym__alignof] = ACTIONS(1203), + [anon_sym_alignof] = ACTIONS(1203), + [anon_sym__Alignof] = ACTIONS(1203), + [anon_sym_offsetof] = ACTIONS(1203), + [anon_sym__Generic] = ACTIONS(1203), + [anon_sym_asm] = ACTIONS(1203), + [anon_sym___asm__] = ACTIONS(1203), + [sym_number_literal] = ACTIONS(1205), + [anon_sym_L_SQUOTE] = ACTIONS(1205), + [anon_sym_u_SQUOTE] = ACTIONS(1205), + [anon_sym_U_SQUOTE] = ACTIONS(1205), + [anon_sym_u8_SQUOTE] = ACTIONS(1205), + [anon_sym_SQUOTE] = ACTIONS(1205), + [anon_sym_L_DQUOTE] = ACTIONS(1205), + [anon_sym_u_DQUOTE] = ACTIONS(1205), + [anon_sym_U_DQUOTE] = ACTIONS(1205), + [anon_sym_u8_DQUOTE] = ACTIONS(1205), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_true] = ACTIONS(1203), + [sym_false] = ACTIONS(1203), + [anon_sym_NULL] = ACTIONS(1203), + [anon_sym_nullptr] = ACTIONS(1203), [sym_comment] = ACTIONS(3), }, - [239] = { - [ts_builtin_sym_end] = ACTIONS(1181), - [sym_identifier] = ACTIONS(1179), - [aux_sym_preproc_include_token1] = ACTIONS(1179), - [aux_sym_preproc_def_token1] = ACTIONS(1179), - [aux_sym_preproc_if_token1] = ACTIONS(1179), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1179), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1179), - [sym_preproc_directive] = ACTIONS(1179), - [anon_sym_LPAREN2] = ACTIONS(1181), - [anon_sym_BANG] = ACTIONS(1181), - [anon_sym_TILDE] = ACTIONS(1181), - [anon_sym_DASH] = ACTIONS(1179), - [anon_sym_PLUS] = ACTIONS(1179), - [anon_sym_STAR] = ACTIONS(1181), - [anon_sym_AMP] = ACTIONS(1181), - [anon_sym_SEMI] = ACTIONS(1181), - [anon_sym___extension__] = ACTIONS(1179), - [anon_sym_typedef] = ACTIONS(1179), - [anon_sym_extern] = ACTIONS(1179), - [anon_sym___attribute__] = ACTIONS(1179), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1181), - [anon_sym___declspec] = ACTIONS(1179), - [anon_sym___cdecl] = ACTIONS(1179), - [anon_sym___clrcall] = ACTIONS(1179), - [anon_sym___stdcall] = ACTIONS(1179), - [anon_sym___fastcall] = ACTIONS(1179), - [anon_sym___thiscall] = ACTIONS(1179), - [anon_sym___vectorcall] = ACTIONS(1179), - [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_signed] = ACTIONS(1179), - [anon_sym_unsigned] = ACTIONS(1179), - [anon_sym_long] = ACTIONS(1179), - [anon_sym_short] = ACTIONS(1179), - [anon_sym_static] = ACTIONS(1179), - [anon_sym_auto] = ACTIONS(1179), - [anon_sym_register] = ACTIONS(1179), - [anon_sym_inline] = ACTIONS(1179), - [anon_sym___inline] = ACTIONS(1179), - [anon_sym___inline__] = ACTIONS(1179), - [anon_sym___forceinline] = ACTIONS(1179), - [anon_sym_thread_local] = ACTIONS(1179), - [anon_sym___thread] = ACTIONS(1179), - [anon_sym_const] = ACTIONS(1179), - [anon_sym_constexpr] = ACTIONS(1179), - [anon_sym_volatile] = ACTIONS(1179), - [anon_sym_restrict] = ACTIONS(1179), - [anon_sym___restrict__] = ACTIONS(1179), - [anon_sym__Atomic] = ACTIONS(1179), - [anon_sym__Noreturn] = ACTIONS(1179), - [anon_sym_noreturn] = ACTIONS(1179), - [anon_sym_alignas] = ACTIONS(1179), - [anon_sym__Alignas] = ACTIONS(1179), - [sym_primitive_type] = ACTIONS(1179), - [anon_sym_enum] = ACTIONS(1179), - [anon_sym_struct] = ACTIONS(1179), - [anon_sym_union] = ACTIONS(1179), - [anon_sym_if] = ACTIONS(1179), - [anon_sym_else] = ACTIONS(1179), - [anon_sym_switch] = ACTIONS(1179), - [anon_sym_case] = ACTIONS(1179), - [anon_sym_default] = ACTIONS(1179), - [anon_sym_while] = ACTIONS(1179), - [anon_sym_do] = ACTIONS(1179), - [anon_sym_for] = ACTIONS(1179), - [anon_sym_return] = ACTIONS(1179), - [anon_sym_break] = ACTIONS(1179), - [anon_sym_continue] = ACTIONS(1179), - [anon_sym_goto] = ACTIONS(1179), - [anon_sym___try] = ACTIONS(1179), - [anon_sym___leave] = ACTIONS(1179), - [anon_sym_DASH_DASH] = ACTIONS(1181), - [anon_sym_PLUS_PLUS] = ACTIONS(1181), - [anon_sym_sizeof] = ACTIONS(1179), - [anon_sym___alignof__] = ACTIONS(1179), - [anon_sym___alignof] = ACTIONS(1179), - [anon_sym__alignof] = ACTIONS(1179), - [anon_sym_alignof] = ACTIONS(1179), - [anon_sym__Alignof] = ACTIONS(1179), - [anon_sym_offsetof] = ACTIONS(1179), - [anon_sym__Generic] = ACTIONS(1179), - [anon_sym_asm] = ACTIONS(1179), - [anon_sym___asm__] = ACTIONS(1179), - [sym_number_literal] = ACTIONS(1181), - [anon_sym_L_SQUOTE] = ACTIONS(1181), - [anon_sym_u_SQUOTE] = ACTIONS(1181), - [anon_sym_U_SQUOTE] = ACTIONS(1181), - [anon_sym_u8_SQUOTE] = ACTIONS(1181), - [anon_sym_SQUOTE] = ACTIONS(1181), - [anon_sym_L_DQUOTE] = ACTIONS(1181), - [anon_sym_u_DQUOTE] = ACTIONS(1181), - [anon_sym_U_DQUOTE] = ACTIONS(1181), - [anon_sym_u8_DQUOTE] = ACTIONS(1181), - [anon_sym_DQUOTE] = ACTIONS(1181), - [sym_true] = ACTIONS(1179), - [sym_false] = ACTIONS(1179), - [anon_sym_NULL] = ACTIONS(1179), - [anon_sym_nullptr] = ACTIONS(1179), + [203] = { + [sym_identifier] = ACTIONS(1167), + [aux_sym_preproc_include_token1] = ACTIONS(1167), + [aux_sym_preproc_def_token1] = ACTIONS(1167), + [aux_sym_preproc_if_token1] = ACTIONS(1167), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1167), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1167), + [sym_preproc_directive] = ACTIONS(1167), + [anon_sym_LPAREN2] = ACTIONS(1169), + [anon_sym_BANG] = ACTIONS(1169), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_DASH] = ACTIONS(1167), + [anon_sym_PLUS] = ACTIONS(1167), + [anon_sym_STAR] = ACTIONS(1169), + [anon_sym_AMP] = ACTIONS(1169), + [anon_sym_SEMI] = ACTIONS(1169), + [anon_sym___extension__] = ACTIONS(1167), + [anon_sym_typedef] = ACTIONS(1167), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym___attribute__] = ACTIONS(1167), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1169), + [anon_sym___declspec] = ACTIONS(1167), + [anon_sym___cdecl] = ACTIONS(1167), + [anon_sym___clrcall] = ACTIONS(1167), + [anon_sym___stdcall] = ACTIONS(1167), + [anon_sym___fastcall] = ACTIONS(1167), + [anon_sym___thiscall] = ACTIONS(1167), + [anon_sym___vectorcall] = ACTIONS(1167), + [anon_sym_LBRACE] = ACTIONS(1169), + [anon_sym_RBRACE] = ACTIONS(1169), + [anon_sym_signed] = ACTIONS(1167), + [anon_sym_unsigned] = ACTIONS(1167), + [anon_sym_long] = ACTIONS(1167), + [anon_sym_short] = ACTIONS(1167), + [anon_sym_static] = ACTIONS(1167), + [anon_sym_auto] = ACTIONS(1167), + [anon_sym_register] = ACTIONS(1167), + [anon_sym_inline] = ACTIONS(1167), + [anon_sym___inline] = ACTIONS(1167), + [anon_sym___inline__] = ACTIONS(1167), + [anon_sym___forceinline] = ACTIONS(1167), + [anon_sym_thread_local] = ACTIONS(1167), + [anon_sym___thread] = ACTIONS(1167), + [anon_sym_const] = ACTIONS(1167), + [anon_sym_constexpr] = ACTIONS(1167), + [anon_sym_volatile] = ACTIONS(1167), + [anon_sym_restrict] = ACTIONS(1167), + [anon_sym___restrict__] = ACTIONS(1167), + [anon_sym__Atomic] = ACTIONS(1167), + [anon_sym__Noreturn] = ACTIONS(1167), + [anon_sym_noreturn] = ACTIONS(1167), + [anon_sym_alignas] = ACTIONS(1167), + [anon_sym__Alignas] = ACTIONS(1167), + [sym_primitive_type] = ACTIONS(1167), + [anon_sym_enum] = ACTIONS(1167), + [anon_sym_struct] = ACTIONS(1167), + [anon_sym_union] = ACTIONS(1167), + [anon_sym_if] = ACTIONS(1167), + [anon_sym_else] = ACTIONS(1167), + [anon_sym_switch] = ACTIONS(1167), + [anon_sym_case] = ACTIONS(1167), + [anon_sym_default] = ACTIONS(1167), + [anon_sym_while] = ACTIONS(1167), + [anon_sym_do] = ACTIONS(1167), + [anon_sym_for] = ACTIONS(1167), + [anon_sym_return] = ACTIONS(1167), + [anon_sym_break] = ACTIONS(1167), + [anon_sym_continue] = ACTIONS(1167), + [anon_sym_goto] = ACTIONS(1167), + [anon_sym___try] = ACTIONS(1167), + [anon_sym___leave] = ACTIONS(1167), + [anon_sym_DASH_DASH] = ACTIONS(1169), + [anon_sym_PLUS_PLUS] = ACTIONS(1169), + [anon_sym_sizeof] = ACTIONS(1167), + [anon_sym___alignof__] = ACTIONS(1167), + [anon_sym___alignof] = ACTIONS(1167), + [anon_sym__alignof] = ACTIONS(1167), + [anon_sym_alignof] = ACTIONS(1167), + [anon_sym__Alignof] = ACTIONS(1167), + [anon_sym_offsetof] = ACTIONS(1167), + [anon_sym__Generic] = ACTIONS(1167), + [anon_sym_asm] = ACTIONS(1167), + [anon_sym___asm__] = ACTIONS(1167), + [sym_number_literal] = ACTIONS(1169), + [anon_sym_L_SQUOTE] = ACTIONS(1169), + [anon_sym_u_SQUOTE] = ACTIONS(1169), + [anon_sym_U_SQUOTE] = ACTIONS(1169), + [anon_sym_u8_SQUOTE] = ACTIONS(1169), + [anon_sym_SQUOTE] = ACTIONS(1169), + [anon_sym_L_DQUOTE] = ACTIONS(1169), + [anon_sym_u_DQUOTE] = ACTIONS(1169), + [anon_sym_U_DQUOTE] = ACTIONS(1169), + [anon_sym_u8_DQUOTE] = ACTIONS(1169), + [anon_sym_DQUOTE] = ACTIONS(1169), + [sym_true] = ACTIONS(1167), + [sym_false] = ACTIONS(1167), + [anon_sym_NULL] = ACTIONS(1167), + [anon_sym_nullptr] = ACTIONS(1167), [sym_comment] = ACTIONS(3), }, - [240] = { - [sym_identifier] = ACTIONS(1163), - [aux_sym_preproc_include_token1] = ACTIONS(1163), - [aux_sym_preproc_def_token1] = ACTIONS(1163), - [aux_sym_preproc_if_token1] = ACTIONS(1163), - [aux_sym_preproc_if_token2] = ACTIONS(1163), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1163), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1163), - [sym_preproc_directive] = ACTIONS(1163), - [anon_sym_LPAREN2] = ACTIONS(1165), - [anon_sym_BANG] = ACTIONS(1165), - [anon_sym_TILDE] = ACTIONS(1165), - [anon_sym_DASH] = ACTIONS(1163), - [anon_sym_PLUS] = ACTIONS(1163), - [anon_sym_STAR] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(1165), - [anon_sym_SEMI] = ACTIONS(1165), - [anon_sym___extension__] = ACTIONS(1163), - [anon_sym_typedef] = ACTIONS(1163), - [anon_sym_extern] = ACTIONS(1163), - [anon_sym___attribute__] = ACTIONS(1163), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1165), - [anon_sym___declspec] = ACTIONS(1163), - [anon_sym___cdecl] = ACTIONS(1163), - [anon_sym___clrcall] = ACTIONS(1163), - [anon_sym___stdcall] = ACTIONS(1163), - [anon_sym___fastcall] = ACTIONS(1163), - [anon_sym___thiscall] = ACTIONS(1163), - [anon_sym___vectorcall] = ACTIONS(1163), - [anon_sym_LBRACE] = ACTIONS(1165), - [anon_sym_signed] = ACTIONS(1163), - [anon_sym_unsigned] = ACTIONS(1163), - [anon_sym_long] = ACTIONS(1163), - [anon_sym_short] = ACTIONS(1163), - [anon_sym_static] = ACTIONS(1163), - [anon_sym_auto] = ACTIONS(1163), - [anon_sym_register] = ACTIONS(1163), - [anon_sym_inline] = ACTIONS(1163), - [anon_sym___inline] = ACTIONS(1163), - [anon_sym___inline__] = ACTIONS(1163), - [anon_sym___forceinline] = ACTIONS(1163), - [anon_sym_thread_local] = ACTIONS(1163), - [anon_sym___thread] = ACTIONS(1163), - [anon_sym_const] = ACTIONS(1163), - [anon_sym_constexpr] = ACTIONS(1163), - [anon_sym_volatile] = ACTIONS(1163), - [anon_sym_restrict] = ACTIONS(1163), - [anon_sym___restrict__] = ACTIONS(1163), - [anon_sym__Atomic] = ACTIONS(1163), - [anon_sym__Noreturn] = ACTIONS(1163), - [anon_sym_noreturn] = ACTIONS(1163), - [anon_sym_alignas] = ACTIONS(1163), - [anon_sym__Alignas] = ACTIONS(1163), - [sym_primitive_type] = ACTIONS(1163), - [anon_sym_enum] = ACTIONS(1163), - [anon_sym_struct] = ACTIONS(1163), - [anon_sym_union] = ACTIONS(1163), - [anon_sym_if] = ACTIONS(1163), - [anon_sym_else] = ACTIONS(1163), - [anon_sym_switch] = ACTIONS(1163), - [anon_sym_case] = ACTIONS(1163), - [anon_sym_default] = ACTIONS(1163), - [anon_sym_while] = ACTIONS(1163), - [anon_sym_do] = ACTIONS(1163), - [anon_sym_for] = ACTIONS(1163), - [anon_sym_return] = ACTIONS(1163), - [anon_sym_break] = ACTIONS(1163), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_goto] = ACTIONS(1163), - [anon_sym___try] = ACTIONS(1163), - [anon_sym___leave] = ACTIONS(1163), - [anon_sym_DASH_DASH] = ACTIONS(1165), - [anon_sym_PLUS_PLUS] = ACTIONS(1165), - [anon_sym_sizeof] = ACTIONS(1163), - [anon_sym___alignof__] = ACTIONS(1163), - [anon_sym___alignof] = ACTIONS(1163), - [anon_sym__alignof] = ACTIONS(1163), - [anon_sym_alignof] = ACTIONS(1163), - [anon_sym__Alignof] = ACTIONS(1163), - [anon_sym_offsetof] = ACTIONS(1163), - [anon_sym__Generic] = ACTIONS(1163), - [anon_sym_asm] = ACTIONS(1163), - [anon_sym___asm__] = ACTIONS(1163), - [sym_number_literal] = ACTIONS(1165), - [anon_sym_L_SQUOTE] = ACTIONS(1165), - [anon_sym_u_SQUOTE] = ACTIONS(1165), - [anon_sym_U_SQUOTE] = ACTIONS(1165), - [anon_sym_u8_SQUOTE] = ACTIONS(1165), - [anon_sym_SQUOTE] = ACTIONS(1165), - [anon_sym_L_DQUOTE] = ACTIONS(1165), - [anon_sym_u_DQUOTE] = ACTIONS(1165), - [anon_sym_U_DQUOTE] = ACTIONS(1165), - [anon_sym_u8_DQUOTE] = ACTIONS(1165), - [anon_sym_DQUOTE] = ACTIONS(1165), - [sym_true] = ACTIONS(1163), - [sym_false] = ACTIONS(1163), - [anon_sym_NULL] = ACTIONS(1163), - [anon_sym_nullptr] = ACTIONS(1163), - [sym_comment] = ACTIONS(3), - }, - [241] = { - [sym_identifier] = ACTIONS(1223), - [aux_sym_preproc_include_token1] = ACTIONS(1223), - [aux_sym_preproc_def_token1] = ACTIONS(1223), - [aux_sym_preproc_if_token1] = ACTIONS(1223), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1223), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1223), - [sym_preproc_directive] = ACTIONS(1223), - [anon_sym_LPAREN2] = ACTIONS(1225), - [anon_sym_BANG] = ACTIONS(1225), - [anon_sym_TILDE] = ACTIONS(1225), - [anon_sym_DASH] = ACTIONS(1223), - [anon_sym_PLUS] = ACTIONS(1223), - [anon_sym_STAR] = ACTIONS(1225), - [anon_sym_AMP] = ACTIONS(1225), - [anon_sym_SEMI] = ACTIONS(1225), - [anon_sym___extension__] = ACTIONS(1223), - [anon_sym_typedef] = ACTIONS(1223), - [anon_sym_extern] = ACTIONS(1223), - [anon_sym___attribute__] = ACTIONS(1223), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1225), - [anon_sym___declspec] = ACTIONS(1223), - [anon_sym___cdecl] = ACTIONS(1223), - [anon_sym___clrcall] = ACTIONS(1223), - [anon_sym___stdcall] = ACTIONS(1223), - [anon_sym___fastcall] = ACTIONS(1223), - [anon_sym___thiscall] = ACTIONS(1223), - [anon_sym___vectorcall] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_RBRACE] = ACTIONS(1225), - [anon_sym_signed] = ACTIONS(1223), - [anon_sym_unsigned] = ACTIONS(1223), - [anon_sym_long] = ACTIONS(1223), - [anon_sym_short] = ACTIONS(1223), - [anon_sym_static] = ACTIONS(1223), - [anon_sym_auto] = ACTIONS(1223), - [anon_sym_register] = ACTIONS(1223), - [anon_sym_inline] = ACTIONS(1223), - [anon_sym___inline] = ACTIONS(1223), - [anon_sym___inline__] = ACTIONS(1223), - [anon_sym___forceinline] = ACTIONS(1223), - [anon_sym_thread_local] = ACTIONS(1223), - [anon_sym___thread] = ACTIONS(1223), - [anon_sym_const] = ACTIONS(1223), - [anon_sym_constexpr] = ACTIONS(1223), - [anon_sym_volatile] = ACTIONS(1223), - [anon_sym_restrict] = ACTIONS(1223), - [anon_sym___restrict__] = ACTIONS(1223), - [anon_sym__Atomic] = ACTIONS(1223), - [anon_sym__Noreturn] = ACTIONS(1223), - [anon_sym_noreturn] = ACTIONS(1223), - [anon_sym_alignas] = ACTIONS(1223), - [anon_sym__Alignas] = ACTIONS(1223), - [sym_primitive_type] = ACTIONS(1223), - [anon_sym_enum] = ACTIONS(1223), - [anon_sym_struct] = ACTIONS(1223), - [anon_sym_union] = ACTIONS(1223), - [anon_sym_if] = ACTIONS(1223), - [anon_sym_else] = ACTIONS(1223), - [anon_sym_switch] = ACTIONS(1223), - [anon_sym_case] = ACTIONS(1223), - [anon_sym_default] = ACTIONS(1223), - [anon_sym_while] = ACTIONS(1223), - [anon_sym_do] = ACTIONS(1223), - [anon_sym_for] = ACTIONS(1223), - [anon_sym_return] = ACTIONS(1223), - [anon_sym_break] = ACTIONS(1223), - [anon_sym_continue] = ACTIONS(1223), - [anon_sym_goto] = ACTIONS(1223), - [anon_sym___try] = ACTIONS(1223), - [anon_sym___leave] = ACTIONS(1223), - [anon_sym_DASH_DASH] = ACTIONS(1225), - [anon_sym_PLUS_PLUS] = ACTIONS(1225), - [anon_sym_sizeof] = ACTIONS(1223), - [anon_sym___alignof__] = ACTIONS(1223), - [anon_sym___alignof] = ACTIONS(1223), - [anon_sym__alignof] = ACTIONS(1223), - [anon_sym_alignof] = ACTIONS(1223), - [anon_sym__Alignof] = ACTIONS(1223), - [anon_sym_offsetof] = ACTIONS(1223), - [anon_sym__Generic] = ACTIONS(1223), - [anon_sym_asm] = ACTIONS(1223), - [anon_sym___asm__] = ACTIONS(1223), - [sym_number_literal] = ACTIONS(1225), - [anon_sym_L_SQUOTE] = ACTIONS(1225), - [anon_sym_u_SQUOTE] = ACTIONS(1225), - [anon_sym_U_SQUOTE] = ACTIONS(1225), - [anon_sym_u8_SQUOTE] = ACTIONS(1225), - [anon_sym_SQUOTE] = ACTIONS(1225), - [anon_sym_L_DQUOTE] = ACTIONS(1225), - [anon_sym_u_DQUOTE] = ACTIONS(1225), - [anon_sym_U_DQUOTE] = ACTIONS(1225), - [anon_sym_u8_DQUOTE] = ACTIONS(1225), - [anon_sym_DQUOTE] = ACTIONS(1225), - [sym_true] = ACTIONS(1223), - [sym_false] = ACTIONS(1223), - [anon_sym_NULL] = ACTIONS(1223), - [anon_sym_nullptr] = ACTIONS(1223), + [204] = { + [sym_identifier] = ACTIONS(1215), + [aux_sym_preproc_include_token1] = ACTIONS(1215), + [aux_sym_preproc_def_token1] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1215), + [aux_sym_preproc_if_token2] = ACTIONS(1215), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1215), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1215), + [sym_preproc_directive] = ACTIONS(1215), + [anon_sym_LPAREN2] = ACTIONS(1217), + [anon_sym_BANG] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1217), + [anon_sym_DASH] = ACTIONS(1215), + [anon_sym_PLUS] = ACTIONS(1215), + [anon_sym_STAR] = ACTIONS(1217), + [anon_sym_AMP] = ACTIONS(1217), + [anon_sym_SEMI] = ACTIONS(1217), + [anon_sym___extension__] = ACTIONS(1215), + [anon_sym_typedef] = ACTIONS(1215), + [anon_sym_extern] = ACTIONS(1215), + [anon_sym___attribute__] = ACTIONS(1215), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1217), + [anon_sym___declspec] = ACTIONS(1215), + [anon_sym___cdecl] = ACTIONS(1215), + [anon_sym___clrcall] = ACTIONS(1215), + [anon_sym___stdcall] = ACTIONS(1215), + [anon_sym___fastcall] = ACTIONS(1215), + [anon_sym___thiscall] = ACTIONS(1215), + [anon_sym___vectorcall] = ACTIONS(1215), + [anon_sym_LBRACE] = ACTIONS(1217), + [anon_sym_signed] = ACTIONS(1215), + [anon_sym_unsigned] = ACTIONS(1215), + [anon_sym_long] = ACTIONS(1215), + [anon_sym_short] = ACTIONS(1215), + [anon_sym_static] = ACTIONS(1215), + [anon_sym_auto] = ACTIONS(1215), + [anon_sym_register] = ACTIONS(1215), + [anon_sym_inline] = ACTIONS(1215), + [anon_sym___inline] = ACTIONS(1215), + [anon_sym___inline__] = ACTIONS(1215), + [anon_sym___forceinline] = ACTIONS(1215), + [anon_sym_thread_local] = ACTIONS(1215), + [anon_sym___thread] = ACTIONS(1215), + [anon_sym_const] = ACTIONS(1215), + [anon_sym_constexpr] = ACTIONS(1215), + [anon_sym_volatile] = ACTIONS(1215), + [anon_sym_restrict] = ACTIONS(1215), + [anon_sym___restrict__] = ACTIONS(1215), + [anon_sym__Atomic] = ACTIONS(1215), + [anon_sym__Noreturn] = ACTIONS(1215), + [anon_sym_noreturn] = ACTIONS(1215), + [anon_sym_alignas] = ACTIONS(1215), + [anon_sym__Alignas] = 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(1215), + [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___try] = ACTIONS(1215), + [anon_sym___leave] = ACTIONS(1215), + [anon_sym_DASH_DASH] = ACTIONS(1217), + [anon_sym_PLUS_PLUS] = ACTIONS(1217), + [anon_sym_sizeof] = ACTIONS(1215), + [anon_sym___alignof__] = ACTIONS(1215), + [anon_sym___alignof] = ACTIONS(1215), + [anon_sym__alignof] = ACTIONS(1215), + [anon_sym_alignof] = ACTIONS(1215), + [anon_sym__Alignof] = ACTIONS(1215), + [anon_sym_offsetof] = ACTIONS(1215), + [anon_sym__Generic] = ACTIONS(1215), + [anon_sym_asm] = ACTIONS(1215), + [anon_sym___asm__] = ACTIONS(1215), + [sym_number_literal] = ACTIONS(1217), + [anon_sym_L_SQUOTE] = ACTIONS(1217), + [anon_sym_u_SQUOTE] = ACTIONS(1217), + [anon_sym_U_SQUOTE] = ACTIONS(1217), + [anon_sym_u8_SQUOTE] = ACTIONS(1217), + [anon_sym_SQUOTE] = ACTIONS(1217), + [anon_sym_L_DQUOTE] = ACTIONS(1217), + [anon_sym_u_DQUOTE] = ACTIONS(1217), + [anon_sym_U_DQUOTE] = ACTIONS(1217), + [anon_sym_u8_DQUOTE] = ACTIONS(1217), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_true] = ACTIONS(1215), + [sym_false] = ACTIONS(1215), + [anon_sym_NULL] = ACTIONS(1215), + [anon_sym_nullptr] = ACTIONS(1215), [sym_comment] = ACTIONS(3), }, - [242] = { - [sym_identifier] = ACTIONS(1159), - [aux_sym_preproc_include_token1] = ACTIONS(1159), - [aux_sym_preproc_def_token1] = ACTIONS(1159), - [aux_sym_preproc_if_token1] = ACTIONS(1159), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1159), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1159), - [sym_preproc_directive] = ACTIONS(1159), - [anon_sym_LPAREN2] = ACTIONS(1161), - [anon_sym_BANG] = ACTIONS(1161), - [anon_sym_TILDE] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1159), - [anon_sym_PLUS] = ACTIONS(1159), - [anon_sym_STAR] = ACTIONS(1161), - [anon_sym_AMP] = ACTIONS(1161), - [anon_sym_SEMI] = ACTIONS(1161), - [anon_sym___extension__] = ACTIONS(1159), - [anon_sym_typedef] = ACTIONS(1159), - [anon_sym_extern] = ACTIONS(1159), - [anon_sym___attribute__] = ACTIONS(1159), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1161), - [anon_sym___declspec] = ACTIONS(1159), - [anon_sym___cdecl] = ACTIONS(1159), - [anon_sym___clrcall] = ACTIONS(1159), - [anon_sym___stdcall] = ACTIONS(1159), - [anon_sym___fastcall] = ACTIONS(1159), - [anon_sym___thiscall] = ACTIONS(1159), - [anon_sym___vectorcall] = ACTIONS(1159), - [anon_sym_LBRACE] = ACTIONS(1161), - [anon_sym_RBRACE] = ACTIONS(1161), - [anon_sym_signed] = ACTIONS(1159), - [anon_sym_unsigned] = ACTIONS(1159), - [anon_sym_long] = ACTIONS(1159), - [anon_sym_short] = ACTIONS(1159), - [anon_sym_static] = ACTIONS(1159), - [anon_sym_auto] = ACTIONS(1159), - [anon_sym_register] = ACTIONS(1159), - [anon_sym_inline] = ACTIONS(1159), - [anon_sym___inline] = ACTIONS(1159), - [anon_sym___inline__] = ACTIONS(1159), - [anon_sym___forceinline] = ACTIONS(1159), - [anon_sym_thread_local] = ACTIONS(1159), - [anon_sym___thread] = ACTIONS(1159), - [anon_sym_const] = ACTIONS(1159), - [anon_sym_constexpr] = ACTIONS(1159), - [anon_sym_volatile] = ACTIONS(1159), - [anon_sym_restrict] = ACTIONS(1159), - [anon_sym___restrict__] = ACTIONS(1159), - [anon_sym__Atomic] = ACTIONS(1159), - [anon_sym__Noreturn] = ACTIONS(1159), - [anon_sym_noreturn] = ACTIONS(1159), - [anon_sym_alignas] = ACTIONS(1159), - [anon_sym__Alignas] = ACTIONS(1159), - [sym_primitive_type] = ACTIONS(1159), - [anon_sym_enum] = ACTIONS(1159), - [anon_sym_struct] = ACTIONS(1159), - [anon_sym_union] = ACTIONS(1159), - [anon_sym_if] = ACTIONS(1159), - [anon_sym_else] = ACTIONS(1159), - [anon_sym_switch] = ACTIONS(1159), - [anon_sym_case] = ACTIONS(1159), - [anon_sym_default] = ACTIONS(1159), - [anon_sym_while] = ACTIONS(1159), - [anon_sym_do] = ACTIONS(1159), - [anon_sym_for] = ACTIONS(1159), - [anon_sym_return] = ACTIONS(1159), - [anon_sym_break] = ACTIONS(1159), - [anon_sym_continue] = ACTIONS(1159), - [anon_sym_goto] = ACTIONS(1159), - [anon_sym___try] = ACTIONS(1159), - [anon_sym___leave] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1161), - [anon_sym_PLUS_PLUS] = ACTIONS(1161), - [anon_sym_sizeof] = ACTIONS(1159), - [anon_sym___alignof__] = ACTIONS(1159), - [anon_sym___alignof] = ACTIONS(1159), - [anon_sym__alignof] = ACTIONS(1159), - [anon_sym_alignof] = ACTIONS(1159), - [anon_sym__Alignof] = ACTIONS(1159), - [anon_sym_offsetof] = ACTIONS(1159), - [anon_sym__Generic] = ACTIONS(1159), - [anon_sym_asm] = ACTIONS(1159), - [anon_sym___asm__] = ACTIONS(1159), - [sym_number_literal] = ACTIONS(1161), - [anon_sym_L_SQUOTE] = ACTIONS(1161), - [anon_sym_u_SQUOTE] = ACTIONS(1161), - [anon_sym_U_SQUOTE] = ACTIONS(1161), - [anon_sym_u8_SQUOTE] = ACTIONS(1161), - [anon_sym_SQUOTE] = ACTIONS(1161), - [anon_sym_L_DQUOTE] = ACTIONS(1161), - [anon_sym_u_DQUOTE] = ACTIONS(1161), - [anon_sym_U_DQUOTE] = ACTIONS(1161), - [anon_sym_u8_DQUOTE] = ACTIONS(1161), - [anon_sym_DQUOTE] = ACTIONS(1161), - [sym_true] = ACTIONS(1159), - [sym_false] = ACTIONS(1159), - [anon_sym_NULL] = ACTIONS(1159), - [anon_sym_nullptr] = ACTIONS(1159), + [205] = { + [ts_builtin_sym_end] = ACTIONS(1185), + [sym_identifier] = ACTIONS(1183), + [aux_sym_preproc_include_token1] = ACTIONS(1183), + [aux_sym_preproc_def_token1] = ACTIONS(1183), + [aux_sym_preproc_if_token1] = ACTIONS(1183), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1183), + [sym_preproc_directive] = ACTIONS(1183), + [anon_sym_LPAREN2] = ACTIONS(1185), + [anon_sym_BANG] = ACTIONS(1185), + [anon_sym_TILDE] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1183), + [anon_sym_PLUS] = ACTIONS(1183), + [anon_sym_STAR] = ACTIONS(1185), + [anon_sym_AMP] = ACTIONS(1185), + [anon_sym_SEMI] = ACTIONS(1185), + [anon_sym___extension__] = ACTIONS(1183), + [anon_sym_typedef] = ACTIONS(1183), + [anon_sym_extern] = ACTIONS(1183), + [anon_sym___attribute__] = ACTIONS(1183), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1185), + [anon_sym___declspec] = ACTIONS(1183), + [anon_sym___cdecl] = ACTIONS(1183), + [anon_sym___clrcall] = ACTIONS(1183), + [anon_sym___stdcall] = ACTIONS(1183), + [anon_sym___fastcall] = ACTIONS(1183), + [anon_sym___thiscall] = ACTIONS(1183), + [anon_sym___vectorcall] = ACTIONS(1183), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_signed] = ACTIONS(1183), + [anon_sym_unsigned] = ACTIONS(1183), + [anon_sym_long] = ACTIONS(1183), + [anon_sym_short] = ACTIONS(1183), + [anon_sym_static] = ACTIONS(1183), + [anon_sym_auto] = ACTIONS(1183), + [anon_sym_register] = ACTIONS(1183), + [anon_sym_inline] = ACTIONS(1183), + [anon_sym___inline] = ACTIONS(1183), + [anon_sym___inline__] = ACTIONS(1183), + [anon_sym___forceinline] = ACTIONS(1183), + [anon_sym_thread_local] = ACTIONS(1183), + [anon_sym___thread] = ACTIONS(1183), + [anon_sym_const] = ACTIONS(1183), + [anon_sym_constexpr] = ACTIONS(1183), + [anon_sym_volatile] = ACTIONS(1183), + [anon_sym_restrict] = ACTIONS(1183), + [anon_sym___restrict__] = ACTIONS(1183), + [anon_sym__Atomic] = ACTIONS(1183), + [anon_sym__Noreturn] = ACTIONS(1183), + [anon_sym_noreturn] = ACTIONS(1183), + [anon_sym_alignas] = ACTIONS(1183), + [anon_sym__Alignas] = ACTIONS(1183), + [sym_primitive_type] = ACTIONS(1183), + [anon_sym_enum] = ACTIONS(1183), + [anon_sym_struct] = ACTIONS(1183), + [anon_sym_union] = ACTIONS(1183), + [anon_sym_if] = ACTIONS(1183), + [anon_sym_else] = ACTIONS(1183), + [anon_sym_switch] = ACTIONS(1183), + [anon_sym_case] = ACTIONS(1183), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_while] = ACTIONS(1183), + [anon_sym_do] = ACTIONS(1183), + [anon_sym_for] = ACTIONS(1183), + [anon_sym_return] = ACTIONS(1183), + [anon_sym_break] = ACTIONS(1183), + [anon_sym_continue] = ACTIONS(1183), + [anon_sym_goto] = ACTIONS(1183), + [anon_sym___try] = ACTIONS(1183), + [anon_sym___leave] = ACTIONS(1183), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_sizeof] = ACTIONS(1183), + [anon_sym___alignof__] = ACTIONS(1183), + [anon_sym___alignof] = ACTIONS(1183), + [anon_sym__alignof] = ACTIONS(1183), + [anon_sym_alignof] = ACTIONS(1183), + [anon_sym__Alignof] = ACTIONS(1183), + [anon_sym_offsetof] = ACTIONS(1183), + [anon_sym__Generic] = ACTIONS(1183), + [anon_sym_asm] = ACTIONS(1183), + [anon_sym___asm__] = ACTIONS(1183), + [sym_number_literal] = ACTIONS(1185), + [anon_sym_L_SQUOTE] = ACTIONS(1185), + [anon_sym_u_SQUOTE] = ACTIONS(1185), + [anon_sym_U_SQUOTE] = ACTIONS(1185), + [anon_sym_u8_SQUOTE] = ACTIONS(1185), + [anon_sym_SQUOTE] = ACTIONS(1185), + [anon_sym_L_DQUOTE] = ACTIONS(1185), + [anon_sym_u_DQUOTE] = ACTIONS(1185), + [anon_sym_U_DQUOTE] = ACTIONS(1185), + [anon_sym_u8_DQUOTE] = ACTIONS(1185), + [anon_sym_DQUOTE] = ACTIONS(1185), + [sym_true] = ACTIONS(1183), + [sym_false] = ACTIONS(1183), + [anon_sym_NULL] = ACTIONS(1183), + [anon_sym_nullptr] = ACTIONS(1183), [sym_comment] = ACTIONS(3), }, - [243] = { - [sym_identifier] = ACTIONS(1123), - [aux_sym_preproc_include_token1] = ACTIONS(1123), - [aux_sym_preproc_def_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), - [sym_preproc_directive] = ACTIONS(1123), - [anon_sym_LPAREN2] = ACTIONS(1125), - [anon_sym_BANG] = ACTIONS(1125), - [anon_sym_TILDE] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym___extension__] = ACTIONS(1123), - [anon_sym_typedef] = ACTIONS(1123), - [anon_sym_extern] = ACTIONS(1123), - [anon_sym___attribute__] = ACTIONS(1123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), - [anon_sym___declspec] = ACTIONS(1123), - [anon_sym___cdecl] = ACTIONS(1123), - [anon_sym___clrcall] = ACTIONS(1123), - [anon_sym___stdcall] = ACTIONS(1123), - [anon_sym___fastcall] = ACTIONS(1123), - [anon_sym___thiscall] = ACTIONS(1123), - [anon_sym___vectorcall] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_RBRACE] = ACTIONS(1125), - [anon_sym_signed] = ACTIONS(1123), - [anon_sym_unsigned] = ACTIONS(1123), - [anon_sym_long] = ACTIONS(1123), - [anon_sym_short] = ACTIONS(1123), - [anon_sym_static] = ACTIONS(1123), - [anon_sym_auto] = ACTIONS(1123), - [anon_sym_register] = ACTIONS(1123), - [anon_sym_inline] = ACTIONS(1123), - [anon_sym___inline] = ACTIONS(1123), - [anon_sym___inline__] = ACTIONS(1123), - [anon_sym___forceinline] = ACTIONS(1123), - [anon_sym_thread_local] = ACTIONS(1123), - [anon_sym___thread] = ACTIONS(1123), - [anon_sym_const] = ACTIONS(1123), - [anon_sym_constexpr] = ACTIONS(1123), - [anon_sym_volatile] = ACTIONS(1123), - [anon_sym_restrict] = ACTIONS(1123), - [anon_sym___restrict__] = ACTIONS(1123), - [anon_sym__Atomic] = ACTIONS(1123), - [anon_sym__Noreturn] = ACTIONS(1123), - [anon_sym_noreturn] = ACTIONS(1123), - [anon_sym_alignas] = ACTIONS(1123), - [anon_sym__Alignas] = ACTIONS(1123), - [sym_primitive_type] = ACTIONS(1123), - [anon_sym_enum] = ACTIONS(1123), - [anon_sym_struct] = ACTIONS(1123), - [anon_sym_union] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1123), - [anon_sym_else] = ACTIONS(1123), - [anon_sym_switch] = ACTIONS(1123), - [anon_sym_case] = ACTIONS(1123), - [anon_sym_default] = ACTIONS(1123), - [anon_sym_while] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(1123), - [anon_sym_for] = ACTIONS(1123), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_break] = ACTIONS(1123), - [anon_sym_continue] = ACTIONS(1123), - [anon_sym_goto] = ACTIONS(1123), - [anon_sym___try] = ACTIONS(1123), - [anon_sym___leave] = ACTIONS(1123), - [anon_sym_DASH_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1125), - [anon_sym_sizeof] = ACTIONS(1123), - [anon_sym___alignof__] = ACTIONS(1123), - [anon_sym___alignof] = ACTIONS(1123), - [anon_sym__alignof] = ACTIONS(1123), - [anon_sym_alignof] = ACTIONS(1123), - [anon_sym__Alignof] = ACTIONS(1123), - [anon_sym_offsetof] = ACTIONS(1123), - [anon_sym__Generic] = ACTIONS(1123), - [anon_sym_asm] = ACTIONS(1123), - [anon_sym___asm__] = ACTIONS(1123), - [sym_number_literal] = ACTIONS(1125), - [anon_sym_L_SQUOTE] = ACTIONS(1125), - [anon_sym_u_SQUOTE] = ACTIONS(1125), - [anon_sym_U_SQUOTE] = ACTIONS(1125), - [anon_sym_u8_SQUOTE] = ACTIONS(1125), - [anon_sym_SQUOTE] = ACTIONS(1125), - [anon_sym_L_DQUOTE] = ACTIONS(1125), - [anon_sym_u_DQUOTE] = ACTIONS(1125), - [anon_sym_U_DQUOTE] = ACTIONS(1125), - [anon_sym_u8_DQUOTE] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(1125), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [anon_sym_NULL] = ACTIONS(1123), - [anon_sym_nullptr] = ACTIONS(1123), - [sym_comment] = ACTIONS(3), - }, - [244] = { - [ts_builtin_sym_end] = ACTIONS(1205), - [sym_identifier] = ACTIONS(1203), - [aux_sym_preproc_include_token1] = ACTIONS(1203), - [aux_sym_preproc_def_token1] = ACTIONS(1203), - [aux_sym_preproc_if_token1] = ACTIONS(1203), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1203), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1203), - [sym_preproc_directive] = ACTIONS(1203), - [anon_sym_LPAREN2] = ACTIONS(1205), - [anon_sym_BANG] = ACTIONS(1205), - [anon_sym_TILDE] = ACTIONS(1205), - [anon_sym_DASH] = ACTIONS(1203), - [anon_sym_PLUS] = ACTIONS(1203), - [anon_sym_STAR] = ACTIONS(1205), - [anon_sym_AMP] = ACTIONS(1205), - [anon_sym_SEMI] = ACTIONS(1205), - [anon_sym___extension__] = ACTIONS(1203), - [anon_sym_typedef] = ACTIONS(1203), - [anon_sym_extern] = ACTIONS(1203), - [anon_sym___attribute__] = ACTIONS(1203), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1205), - [anon_sym___declspec] = ACTIONS(1203), - [anon_sym___cdecl] = ACTIONS(1203), - [anon_sym___clrcall] = ACTIONS(1203), - [anon_sym___stdcall] = ACTIONS(1203), - [anon_sym___fastcall] = ACTIONS(1203), - [anon_sym___thiscall] = ACTIONS(1203), - [anon_sym___vectorcall] = ACTIONS(1203), - [anon_sym_LBRACE] = ACTIONS(1205), - [anon_sym_signed] = ACTIONS(1203), - [anon_sym_unsigned] = ACTIONS(1203), - [anon_sym_long] = ACTIONS(1203), - [anon_sym_short] = ACTIONS(1203), - [anon_sym_static] = ACTIONS(1203), - [anon_sym_auto] = ACTIONS(1203), - [anon_sym_register] = ACTIONS(1203), - [anon_sym_inline] = ACTIONS(1203), - [anon_sym___inline] = ACTIONS(1203), - [anon_sym___inline__] = ACTIONS(1203), - [anon_sym___forceinline] = ACTIONS(1203), - [anon_sym_thread_local] = ACTIONS(1203), - [anon_sym___thread] = ACTIONS(1203), - [anon_sym_const] = ACTIONS(1203), - [anon_sym_constexpr] = ACTIONS(1203), - [anon_sym_volatile] = ACTIONS(1203), - [anon_sym_restrict] = ACTIONS(1203), - [anon_sym___restrict__] = ACTIONS(1203), - [anon_sym__Atomic] = ACTIONS(1203), - [anon_sym__Noreturn] = ACTIONS(1203), - [anon_sym_noreturn] = ACTIONS(1203), - [anon_sym_alignas] = ACTIONS(1203), - [anon_sym__Alignas] = ACTIONS(1203), - [sym_primitive_type] = ACTIONS(1203), - [anon_sym_enum] = ACTIONS(1203), - [anon_sym_struct] = ACTIONS(1203), - [anon_sym_union] = ACTIONS(1203), - [anon_sym_if] = ACTIONS(1203), - [anon_sym_else] = ACTIONS(1203), - [anon_sym_switch] = ACTIONS(1203), - [anon_sym_case] = ACTIONS(1203), - [anon_sym_default] = ACTIONS(1203), - [anon_sym_while] = ACTIONS(1203), - [anon_sym_do] = ACTIONS(1203), - [anon_sym_for] = ACTIONS(1203), - [anon_sym_return] = ACTIONS(1203), - [anon_sym_break] = ACTIONS(1203), - [anon_sym_continue] = ACTIONS(1203), - [anon_sym_goto] = ACTIONS(1203), - [anon_sym___try] = ACTIONS(1203), - [anon_sym___leave] = ACTIONS(1203), - [anon_sym_DASH_DASH] = ACTIONS(1205), - [anon_sym_PLUS_PLUS] = ACTIONS(1205), - [anon_sym_sizeof] = ACTIONS(1203), - [anon_sym___alignof__] = ACTIONS(1203), - [anon_sym___alignof] = ACTIONS(1203), - [anon_sym__alignof] = ACTIONS(1203), - [anon_sym_alignof] = ACTIONS(1203), - [anon_sym__Alignof] = ACTIONS(1203), - [anon_sym_offsetof] = ACTIONS(1203), - [anon_sym__Generic] = ACTIONS(1203), - [anon_sym_asm] = ACTIONS(1203), - [anon_sym___asm__] = ACTIONS(1203), - [sym_number_literal] = ACTIONS(1205), - [anon_sym_L_SQUOTE] = ACTIONS(1205), - [anon_sym_u_SQUOTE] = ACTIONS(1205), - [anon_sym_U_SQUOTE] = ACTIONS(1205), - [anon_sym_u8_SQUOTE] = ACTIONS(1205), - [anon_sym_SQUOTE] = ACTIONS(1205), - [anon_sym_L_DQUOTE] = ACTIONS(1205), - [anon_sym_u_DQUOTE] = ACTIONS(1205), - [anon_sym_U_DQUOTE] = ACTIONS(1205), - [anon_sym_u8_DQUOTE] = ACTIONS(1205), - [anon_sym_DQUOTE] = ACTIONS(1205), - [sym_true] = ACTIONS(1203), - [sym_false] = ACTIONS(1203), - [anon_sym_NULL] = ACTIONS(1203), - [anon_sym_nullptr] = ACTIONS(1203), - [sym_comment] = ACTIONS(3), - }, - [245] = { - [sym_identifier] = ACTIONS(1123), - [aux_sym_preproc_include_token1] = ACTIONS(1123), - [aux_sym_preproc_def_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), - [sym_preproc_directive] = ACTIONS(1123), - [anon_sym_LPAREN2] = ACTIONS(1125), - [anon_sym_BANG] = ACTIONS(1125), - [anon_sym_TILDE] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym___extension__] = ACTIONS(1123), - [anon_sym_typedef] = ACTIONS(1123), - [anon_sym_extern] = ACTIONS(1123), - [anon_sym___attribute__] = ACTIONS(1123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), - [anon_sym___declspec] = ACTIONS(1123), - [anon_sym___cdecl] = ACTIONS(1123), - [anon_sym___clrcall] = ACTIONS(1123), - [anon_sym___stdcall] = ACTIONS(1123), - [anon_sym___fastcall] = ACTIONS(1123), - [anon_sym___thiscall] = ACTIONS(1123), - [anon_sym___vectorcall] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_RBRACE] = ACTIONS(1125), - [anon_sym_signed] = ACTIONS(1123), - [anon_sym_unsigned] = ACTIONS(1123), - [anon_sym_long] = ACTIONS(1123), - [anon_sym_short] = ACTIONS(1123), - [anon_sym_static] = ACTIONS(1123), - [anon_sym_auto] = ACTIONS(1123), - [anon_sym_register] = ACTIONS(1123), - [anon_sym_inline] = ACTIONS(1123), - [anon_sym___inline] = ACTIONS(1123), - [anon_sym___inline__] = ACTIONS(1123), - [anon_sym___forceinline] = ACTIONS(1123), - [anon_sym_thread_local] = ACTIONS(1123), - [anon_sym___thread] = ACTIONS(1123), - [anon_sym_const] = ACTIONS(1123), - [anon_sym_constexpr] = ACTIONS(1123), - [anon_sym_volatile] = ACTIONS(1123), - [anon_sym_restrict] = ACTIONS(1123), - [anon_sym___restrict__] = ACTIONS(1123), - [anon_sym__Atomic] = ACTIONS(1123), - [anon_sym__Noreturn] = ACTIONS(1123), - [anon_sym_noreturn] = ACTIONS(1123), - [anon_sym_alignas] = ACTIONS(1123), - [anon_sym__Alignas] = ACTIONS(1123), - [sym_primitive_type] = ACTIONS(1123), - [anon_sym_enum] = ACTIONS(1123), - [anon_sym_struct] = ACTIONS(1123), - [anon_sym_union] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1123), - [anon_sym_else] = ACTIONS(1123), - [anon_sym_switch] = ACTIONS(1123), - [anon_sym_case] = ACTIONS(1123), - [anon_sym_default] = ACTIONS(1123), - [anon_sym_while] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(1123), - [anon_sym_for] = ACTIONS(1123), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_break] = ACTIONS(1123), - [anon_sym_continue] = ACTIONS(1123), - [anon_sym_goto] = ACTIONS(1123), - [anon_sym___try] = ACTIONS(1123), - [anon_sym___leave] = ACTIONS(1123), - [anon_sym_DASH_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1125), - [anon_sym_sizeof] = ACTIONS(1123), - [anon_sym___alignof__] = ACTIONS(1123), - [anon_sym___alignof] = ACTIONS(1123), - [anon_sym__alignof] = ACTIONS(1123), - [anon_sym_alignof] = ACTIONS(1123), - [anon_sym__Alignof] = ACTIONS(1123), - [anon_sym_offsetof] = ACTIONS(1123), - [anon_sym__Generic] = ACTIONS(1123), - [anon_sym_asm] = ACTIONS(1123), - [anon_sym___asm__] = ACTIONS(1123), - [sym_number_literal] = ACTIONS(1125), - [anon_sym_L_SQUOTE] = ACTIONS(1125), - [anon_sym_u_SQUOTE] = ACTIONS(1125), - [anon_sym_U_SQUOTE] = ACTIONS(1125), - [anon_sym_u8_SQUOTE] = ACTIONS(1125), - [anon_sym_SQUOTE] = ACTIONS(1125), - [anon_sym_L_DQUOTE] = ACTIONS(1125), - [anon_sym_u_DQUOTE] = ACTIONS(1125), - [anon_sym_U_DQUOTE] = ACTIONS(1125), - [anon_sym_u8_DQUOTE] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(1125), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [anon_sym_NULL] = ACTIONS(1123), - [anon_sym_nullptr] = ACTIONS(1123), + [206] = { + [sym_identifier] = ACTIONS(1195), + [aux_sym_preproc_include_token1] = ACTIONS(1195), + [aux_sym_preproc_def_token1] = ACTIONS(1195), + [aux_sym_preproc_if_token1] = ACTIONS(1195), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1195), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1195), + [sym_preproc_directive] = ACTIONS(1195), + [anon_sym_LPAREN2] = ACTIONS(1197), + [anon_sym_BANG] = ACTIONS(1197), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1197), + [anon_sym_SEMI] = ACTIONS(1197), + [anon_sym___extension__] = ACTIONS(1195), + [anon_sym_typedef] = ACTIONS(1195), + [anon_sym_extern] = ACTIONS(1195), + [anon_sym___attribute__] = ACTIONS(1195), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1197), + [anon_sym___declspec] = ACTIONS(1195), + [anon_sym___cdecl] = ACTIONS(1195), + [anon_sym___clrcall] = ACTIONS(1195), + [anon_sym___stdcall] = ACTIONS(1195), + [anon_sym___fastcall] = ACTIONS(1195), + [anon_sym___thiscall] = ACTIONS(1195), + [anon_sym___vectorcall] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_RBRACE] = ACTIONS(1197), + [anon_sym_signed] = ACTIONS(1195), + [anon_sym_unsigned] = ACTIONS(1195), + [anon_sym_long] = ACTIONS(1195), + [anon_sym_short] = ACTIONS(1195), + [anon_sym_static] = ACTIONS(1195), + [anon_sym_auto] = ACTIONS(1195), + [anon_sym_register] = ACTIONS(1195), + [anon_sym_inline] = ACTIONS(1195), + [anon_sym___inline] = ACTIONS(1195), + [anon_sym___inline__] = ACTIONS(1195), + [anon_sym___forceinline] = ACTIONS(1195), + [anon_sym_thread_local] = ACTIONS(1195), + [anon_sym___thread] = ACTIONS(1195), + [anon_sym_const] = ACTIONS(1195), + [anon_sym_constexpr] = ACTIONS(1195), + [anon_sym_volatile] = ACTIONS(1195), + [anon_sym_restrict] = ACTIONS(1195), + [anon_sym___restrict__] = ACTIONS(1195), + [anon_sym__Atomic] = ACTIONS(1195), + [anon_sym__Noreturn] = ACTIONS(1195), + [anon_sym_noreturn] = ACTIONS(1195), + [anon_sym_alignas] = ACTIONS(1195), + [anon_sym__Alignas] = ACTIONS(1195), + [sym_primitive_type] = ACTIONS(1195), + [anon_sym_enum] = ACTIONS(1195), + [anon_sym_struct] = ACTIONS(1195), + [anon_sym_union] = ACTIONS(1195), + [anon_sym_if] = ACTIONS(1195), + [anon_sym_else] = ACTIONS(1195), + [anon_sym_switch] = ACTIONS(1195), + [anon_sym_case] = ACTIONS(1195), + [anon_sym_default] = ACTIONS(1195), + [anon_sym_while] = ACTIONS(1195), + [anon_sym_do] = ACTIONS(1195), + [anon_sym_for] = ACTIONS(1195), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1195), + [anon_sym_continue] = ACTIONS(1195), + [anon_sym_goto] = ACTIONS(1195), + [anon_sym___try] = ACTIONS(1195), + [anon_sym___leave] = ACTIONS(1195), + [anon_sym_DASH_DASH] = ACTIONS(1197), + [anon_sym_PLUS_PLUS] = ACTIONS(1197), + [anon_sym_sizeof] = ACTIONS(1195), + [anon_sym___alignof__] = ACTIONS(1195), + [anon_sym___alignof] = ACTIONS(1195), + [anon_sym__alignof] = ACTIONS(1195), + [anon_sym_alignof] = ACTIONS(1195), + [anon_sym__Alignof] = ACTIONS(1195), + [anon_sym_offsetof] = ACTIONS(1195), + [anon_sym__Generic] = ACTIONS(1195), + [anon_sym_asm] = ACTIONS(1195), + [anon_sym___asm__] = ACTIONS(1195), + [sym_number_literal] = ACTIONS(1197), + [anon_sym_L_SQUOTE] = ACTIONS(1197), + [anon_sym_u_SQUOTE] = ACTIONS(1197), + [anon_sym_U_SQUOTE] = ACTIONS(1197), + [anon_sym_u8_SQUOTE] = ACTIONS(1197), + [anon_sym_SQUOTE] = ACTIONS(1197), + [anon_sym_L_DQUOTE] = ACTIONS(1197), + [anon_sym_u_DQUOTE] = ACTIONS(1197), + [anon_sym_U_DQUOTE] = ACTIONS(1197), + [anon_sym_u8_DQUOTE] = ACTIONS(1197), + [anon_sym_DQUOTE] = ACTIONS(1197), + [sym_true] = ACTIONS(1195), + [sym_false] = ACTIONS(1195), + [anon_sym_NULL] = ACTIONS(1195), + [anon_sym_nullptr] = ACTIONS(1195), [sym_comment] = ACTIONS(3), }, - [246] = { + [207] = { + [ts_builtin_sym_end] = ACTIONS(1157), [sym_identifier] = ACTIONS(1155), [aux_sym_preproc_include_token1] = ACTIONS(1155), [aux_sym_preproc_def_token1] = ACTIONS(1155), @@ -41206,7 +37190,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1155), [anon_sym___vectorcall] = ACTIONS(1155), [anon_sym_LBRACE] = ACTIONS(1157), - [anon_sym_RBRACE] = ACTIONS(1157), [anon_sym_signed] = ACTIONS(1155), [anon_sym_unsigned] = ACTIONS(1155), [anon_sym_long] = ACTIONS(1155), @@ -41277,2258 +37260,1958 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1155), [sym_comment] = ACTIONS(3), }, - [247] = { - [sym_identifier] = ACTIONS(1203), - [aux_sym_preproc_include_token1] = ACTIONS(1203), - [aux_sym_preproc_def_token1] = ACTIONS(1203), - [aux_sym_preproc_if_token1] = ACTIONS(1203), - [aux_sym_preproc_if_token2] = ACTIONS(1203), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1203), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1203), - [sym_preproc_directive] = ACTIONS(1203), - [anon_sym_LPAREN2] = ACTIONS(1205), - [anon_sym_BANG] = ACTIONS(1205), - [anon_sym_TILDE] = ACTIONS(1205), - [anon_sym_DASH] = ACTIONS(1203), - [anon_sym_PLUS] = ACTIONS(1203), - [anon_sym_STAR] = ACTIONS(1205), - [anon_sym_AMP] = ACTIONS(1205), - [anon_sym_SEMI] = ACTIONS(1205), - [anon_sym___extension__] = ACTIONS(1203), - [anon_sym_typedef] = ACTIONS(1203), - [anon_sym_extern] = ACTIONS(1203), - [anon_sym___attribute__] = ACTIONS(1203), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1205), - [anon_sym___declspec] = ACTIONS(1203), - [anon_sym___cdecl] = ACTIONS(1203), - [anon_sym___clrcall] = ACTIONS(1203), - [anon_sym___stdcall] = ACTIONS(1203), - [anon_sym___fastcall] = ACTIONS(1203), - [anon_sym___thiscall] = ACTIONS(1203), - [anon_sym___vectorcall] = ACTIONS(1203), - [anon_sym_LBRACE] = ACTIONS(1205), - [anon_sym_signed] = ACTIONS(1203), - [anon_sym_unsigned] = ACTIONS(1203), - [anon_sym_long] = ACTIONS(1203), - [anon_sym_short] = ACTIONS(1203), - [anon_sym_static] = ACTIONS(1203), - [anon_sym_auto] = ACTIONS(1203), - [anon_sym_register] = ACTIONS(1203), - [anon_sym_inline] = ACTIONS(1203), - [anon_sym___inline] = ACTIONS(1203), - [anon_sym___inline__] = ACTIONS(1203), - [anon_sym___forceinline] = ACTIONS(1203), - [anon_sym_thread_local] = ACTIONS(1203), - [anon_sym___thread] = ACTIONS(1203), - [anon_sym_const] = ACTIONS(1203), - [anon_sym_constexpr] = ACTIONS(1203), - [anon_sym_volatile] = ACTIONS(1203), - [anon_sym_restrict] = ACTIONS(1203), - [anon_sym___restrict__] = ACTIONS(1203), - [anon_sym__Atomic] = ACTIONS(1203), - [anon_sym__Noreturn] = ACTIONS(1203), - [anon_sym_noreturn] = ACTIONS(1203), - [anon_sym_alignas] = ACTIONS(1203), - [anon_sym__Alignas] = ACTIONS(1203), - [sym_primitive_type] = ACTIONS(1203), - [anon_sym_enum] = ACTIONS(1203), - [anon_sym_struct] = ACTIONS(1203), - [anon_sym_union] = ACTIONS(1203), - [anon_sym_if] = ACTIONS(1203), - [anon_sym_else] = ACTIONS(1203), - [anon_sym_switch] = ACTIONS(1203), - [anon_sym_case] = ACTIONS(1203), - [anon_sym_default] = ACTIONS(1203), - [anon_sym_while] = ACTIONS(1203), - [anon_sym_do] = ACTIONS(1203), - [anon_sym_for] = ACTIONS(1203), - [anon_sym_return] = ACTIONS(1203), - [anon_sym_break] = ACTIONS(1203), - [anon_sym_continue] = ACTIONS(1203), - [anon_sym_goto] = ACTIONS(1203), - [anon_sym___try] = ACTIONS(1203), - [anon_sym___leave] = ACTIONS(1203), - [anon_sym_DASH_DASH] = ACTIONS(1205), - [anon_sym_PLUS_PLUS] = ACTIONS(1205), - [anon_sym_sizeof] = ACTIONS(1203), - [anon_sym___alignof__] = ACTIONS(1203), - [anon_sym___alignof] = ACTIONS(1203), - [anon_sym__alignof] = ACTIONS(1203), - [anon_sym_alignof] = ACTIONS(1203), - [anon_sym__Alignof] = ACTIONS(1203), - [anon_sym_offsetof] = ACTIONS(1203), - [anon_sym__Generic] = ACTIONS(1203), - [anon_sym_asm] = ACTIONS(1203), - [anon_sym___asm__] = ACTIONS(1203), - [sym_number_literal] = ACTIONS(1205), - [anon_sym_L_SQUOTE] = ACTIONS(1205), - [anon_sym_u_SQUOTE] = ACTIONS(1205), - [anon_sym_U_SQUOTE] = ACTIONS(1205), - [anon_sym_u8_SQUOTE] = ACTIONS(1205), - [anon_sym_SQUOTE] = ACTIONS(1205), - [anon_sym_L_DQUOTE] = ACTIONS(1205), - [anon_sym_u_DQUOTE] = ACTIONS(1205), - [anon_sym_U_DQUOTE] = ACTIONS(1205), - [anon_sym_u8_DQUOTE] = ACTIONS(1205), - [anon_sym_DQUOTE] = ACTIONS(1205), - [sym_true] = ACTIONS(1203), - [sym_false] = ACTIONS(1203), - [anon_sym_NULL] = ACTIONS(1203), - [anon_sym_nullptr] = ACTIONS(1203), + [208] = { + [sym_identifier] = ACTIONS(1139), + [aux_sym_preproc_include_token1] = ACTIONS(1139), + [aux_sym_preproc_def_token1] = ACTIONS(1139), + [aux_sym_preproc_if_token1] = ACTIONS(1139), + [aux_sym_preproc_if_token2] = ACTIONS(1139), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1139), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1139), + [sym_preproc_directive] = ACTIONS(1139), + [anon_sym_LPAREN2] = ACTIONS(1141), + [anon_sym_BANG] = ACTIONS(1141), + [anon_sym_TILDE] = ACTIONS(1141), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_PLUS] = ACTIONS(1139), + [anon_sym_STAR] = ACTIONS(1141), + [anon_sym_AMP] = ACTIONS(1141), + [anon_sym_SEMI] = ACTIONS(1141), + [anon_sym___extension__] = ACTIONS(1139), + [anon_sym_typedef] = ACTIONS(1139), + [anon_sym_extern] = ACTIONS(1139), + [anon_sym___attribute__] = ACTIONS(1139), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1141), + [anon_sym___declspec] = ACTIONS(1139), + [anon_sym___cdecl] = ACTIONS(1139), + [anon_sym___clrcall] = ACTIONS(1139), + [anon_sym___stdcall] = ACTIONS(1139), + [anon_sym___fastcall] = ACTIONS(1139), + [anon_sym___thiscall] = ACTIONS(1139), + [anon_sym___vectorcall] = ACTIONS(1139), + [anon_sym_LBRACE] = ACTIONS(1141), + [anon_sym_signed] = ACTIONS(1139), + [anon_sym_unsigned] = ACTIONS(1139), + [anon_sym_long] = ACTIONS(1139), + [anon_sym_short] = ACTIONS(1139), + [anon_sym_static] = ACTIONS(1139), + [anon_sym_auto] = ACTIONS(1139), + [anon_sym_register] = ACTIONS(1139), + [anon_sym_inline] = ACTIONS(1139), + [anon_sym___inline] = ACTIONS(1139), + [anon_sym___inline__] = ACTIONS(1139), + [anon_sym___forceinline] = ACTIONS(1139), + [anon_sym_thread_local] = ACTIONS(1139), + [anon_sym___thread] = ACTIONS(1139), + [anon_sym_const] = ACTIONS(1139), + [anon_sym_constexpr] = ACTIONS(1139), + [anon_sym_volatile] = ACTIONS(1139), + [anon_sym_restrict] = ACTIONS(1139), + [anon_sym___restrict__] = ACTIONS(1139), + [anon_sym__Atomic] = ACTIONS(1139), + [anon_sym__Noreturn] = ACTIONS(1139), + [anon_sym_noreturn] = ACTIONS(1139), + [anon_sym_alignas] = ACTIONS(1139), + [anon_sym__Alignas] = ACTIONS(1139), + [sym_primitive_type] = ACTIONS(1139), + [anon_sym_enum] = ACTIONS(1139), + [anon_sym_struct] = ACTIONS(1139), + [anon_sym_union] = ACTIONS(1139), + [anon_sym_if] = ACTIONS(1139), + [anon_sym_else] = ACTIONS(1139), + [anon_sym_switch] = ACTIONS(1139), + [anon_sym_case] = ACTIONS(1139), + [anon_sym_default] = ACTIONS(1139), + [anon_sym_while] = ACTIONS(1139), + [anon_sym_do] = ACTIONS(1139), + [anon_sym_for] = ACTIONS(1139), + [anon_sym_return] = ACTIONS(1139), + [anon_sym_break] = ACTIONS(1139), + [anon_sym_continue] = ACTIONS(1139), + [anon_sym_goto] = ACTIONS(1139), + [anon_sym___try] = ACTIONS(1139), + [anon_sym___leave] = ACTIONS(1139), + [anon_sym_DASH_DASH] = ACTIONS(1141), + [anon_sym_PLUS_PLUS] = ACTIONS(1141), + [anon_sym_sizeof] = ACTIONS(1139), + [anon_sym___alignof__] = ACTIONS(1139), + [anon_sym___alignof] = ACTIONS(1139), + [anon_sym__alignof] = ACTIONS(1139), + [anon_sym_alignof] = ACTIONS(1139), + [anon_sym__Alignof] = ACTIONS(1139), + [anon_sym_offsetof] = ACTIONS(1139), + [anon_sym__Generic] = ACTIONS(1139), + [anon_sym_asm] = ACTIONS(1139), + [anon_sym___asm__] = ACTIONS(1139), + [sym_number_literal] = ACTIONS(1141), + [anon_sym_L_SQUOTE] = ACTIONS(1141), + [anon_sym_u_SQUOTE] = ACTIONS(1141), + [anon_sym_U_SQUOTE] = ACTIONS(1141), + [anon_sym_u8_SQUOTE] = ACTIONS(1141), + [anon_sym_SQUOTE] = ACTIONS(1141), + [anon_sym_L_DQUOTE] = ACTIONS(1141), + [anon_sym_u_DQUOTE] = ACTIONS(1141), + [anon_sym_U_DQUOTE] = ACTIONS(1141), + [anon_sym_u8_DQUOTE] = ACTIONS(1141), + [anon_sym_DQUOTE] = ACTIONS(1141), + [sym_true] = ACTIONS(1139), + [sym_false] = ACTIONS(1139), + [anon_sym_NULL] = ACTIONS(1139), + [anon_sym_nullptr] = ACTIONS(1139), [sym_comment] = ACTIONS(3), }, - [248] = { - [sym_identifier] = ACTIONS(1123), - [aux_sym_preproc_include_token1] = ACTIONS(1123), - [aux_sym_preproc_def_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token2] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), - [sym_preproc_directive] = ACTIONS(1123), - [anon_sym_LPAREN2] = ACTIONS(1125), - [anon_sym_BANG] = ACTIONS(1125), - [anon_sym_TILDE] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym___extension__] = ACTIONS(1123), - [anon_sym_typedef] = ACTIONS(1123), - [anon_sym_extern] = ACTIONS(1123), - [anon_sym___attribute__] = ACTIONS(1123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), - [anon_sym___declspec] = ACTIONS(1123), - [anon_sym___cdecl] = ACTIONS(1123), - [anon_sym___clrcall] = ACTIONS(1123), - [anon_sym___stdcall] = ACTIONS(1123), - [anon_sym___fastcall] = ACTIONS(1123), - [anon_sym___thiscall] = ACTIONS(1123), - [anon_sym___vectorcall] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_signed] = ACTIONS(1123), - [anon_sym_unsigned] = ACTIONS(1123), - [anon_sym_long] = ACTIONS(1123), - [anon_sym_short] = ACTIONS(1123), - [anon_sym_static] = ACTIONS(1123), - [anon_sym_auto] = ACTIONS(1123), - [anon_sym_register] = ACTIONS(1123), - [anon_sym_inline] = ACTIONS(1123), - [anon_sym___inline] = ACTIONS(1123), - [anon_sym___inline__] = ACTIONS(1123), - [anon_sym___forceinline] = ACTIONS(1123), - [anon_sym_thread_local] = ACTIONS(1123), - [anon_sym___thread] = ACTIONS(1123), - [anon_sym_const] = ACTIONS(1123), - [anon_sym_constexpr] = ACTIONS(1123), - [anon_sym_volatile] = ACTIONS(1123), - [anon_sym_restrict] = ACTIONS(1123), - [anon_sym___restrict__] = ACTIONS(1123), - [anon_sym__Atomic] = ACTIONS(1123), - [anon_sym__Noreturn] = ACTIONS(1123), - [anon_sym_noreturn] = ACTIONS(1123), - [anon_sym_alignas] = ACTIONS(1123), - [anon_sym__Alignas] = ACTIONS(1123), - [sym_primitive_type] = ACTIONS(1123), - [anon_sym_enum] = ACTIONS(1123), - [anon_sym_struct] = ACTIONS(1123), - [anon_sym_union] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1123), - [anon_sym_else] = ACTIONS(1123), - [anon_sym_switch] = ACTIONS(1123), - [anon_sym_case] = ACTIONS(1123), - [anon_sym_default] = ACTIONS(1123), - [anon_sym_while] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(1123), - [anon_sym_for] = ACTIONS(1123), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_break] = ACTIONS(1123), - [anon_sym_continue] = ACTIONS(1123), - [anon_sym_goto] = ACTIONS(1123), - [anon_sym___try] = ACTIONS(1123), - [anon_sym___leave] = ACTIONS(1123), - [anon_sym_DASH_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1125), - [anon_sym_sizeof] = ACTIONS(1123), - [anon_sym___alignof__] = ACTIONS(1123), - [anon_sym___alignof] = ACTIONS(1123), - [anon_sym__alignof] = ACTIONS(1123), - [anon_sym_alignof] = ACTIONS(1123), - [anon_sym__Alignof] = ACTIONS(1123), - [anon_sym_offsetof] = ACTIONS(1123), - [anon_sym__Generic] = ACTIONS(1123), - [anon_sym_asm] = ACTIONS(1123), - [anon_sym___asm__] = ACTIONS(1123), - [sym_number_literal] = ACTIONS(1125), - [anon_sym_L_SQUOTE] = ACTIONS(1125), - [anon_sym_u_SQUOTE] = ACTIONS(1125), - [anon_sym_U_SQUOTE] = ACTIONS(1125), - [anon_sym_u8_SQUOTE] = ACTIONS(1125), - [anon_sym_SQUOTE] = ACTIONS(1125), - [anon_sym_L_DQUOTE] = ACTIONS(1125), - [anon_sym_u_DQUOTE] = ACTIONS(1125), - [anon_sym_U_DQUOTE] = ACTIONS(1125), - [anon_sym_u8_DQUOTE] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(1125), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [anon_sym_NULL] = ACTIONS(1123), - [anon_sym_nullptr] = ACTIONS(1123), - [sym_comment] = ACTIONS(3), - }, - [249] = { - [sym_identifier] = ACTIONS(1123), - [aux_sym_preproc_include_token1] = ACTIONS(1123), - [aux_sym_preproc_def_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token2] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), - [sym_preproc_directive] = ACTIONS(1123), - [anon_sym_LPAREN2] = ACTIONS(1125), - [anon_sym_BANG] = ACTIONS(1125), - [anon_sym_TILDE] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym___extension__] = ACTIONS(1123), - [anon_sym_typedef] = ACTIONS(1123), - [anon_sym_extern] = ACTIONS(1123), - [anon_sym___attribute__] = ACTIONS(1123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), - [anon_sym___declspec] = ACTIONS(1123), - [anon_sym___cdecl] = ACTIONS(1123), - [anon_sym___clrcall] = ACTIONS(1123), - [anon_sym___stdcall] = ACTIONS(1123), - [anon_sym___fastcall] = ACTIONS(1123), - [anon_sym___thiscall] = ACTIONS(1123), - [anon_sym___vectorcall] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_signed] = ACTIONS(1123), - [anon_sym_unsigned] = ACTIONS(1123), - [anon_sym_long] = ACTIONS(1123), - [anon_sym_short] = ACTIONS(1123), - [anon_sym_static] = ACTIONS(1123), - [anon_sym_auto] = ACTIONS(1123), - [anon_sym_register] = ACTIONS(1123), - [anon_sym_inline] = ACTIONS(1123), - [anon_sym___inline] = ACTIONS(1123), - [anon_sym___inline__] = ACTIONS(1123), - [anon_sym___forceinline] = ACTIONS(1123), - [anon_sym_thread_local] = ACTIONS(1123), - [anon_sym___thread] = ACTIONS(1123), - [anon_sym_const] = ACTIONS(1123), - [anon_sym_constexpr] = ACTIONS(1123), - [anon_sym_volatile] = ACTIONS(1123), - [anon_sym_restrict] = ACTIONS(1123), - [anon_sym___restrict__] = ACTIONS(1123), - [anon_sym__Atomic] = ACTIONS(1123), - [anon_sym__Noreturn] = ACTIONS(1123), - [anon_sym_noreturn] = ACTIONS(1123), - [anon_sym_alignas] = ACTIONS(1123), - [anon_sym__Alignas] = ACTIONS(1123), - [sym_primitive_type] = ACTIONS(1123), - [anon_sym_enum] = ACTIONS(1123), - [anon_sym_struct] = ACTIONS(1123), - [anon_sym_union] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1123), - [anon_sym_else] = ACTIONS(1123), - [anon_sym_switch] = ACTIONS(1123), - [anon_sym_case] = ACTIONS(1123), - [anon_sym_default] = ACTIONS(1123), - [anon_sym_while] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(1123), - [anon_sym_for] = ACTIONS(1123), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_break] = ACTIONS(1123), - [anon_sym_continue] = ACTIONS(1123), - [anon_sym_goto] = ACTIONS(1123), - [anon_sym___try] = ACTIONS(1123), - [anon_sym___leave] = ACTIONS(1123), - [anon_sym_DASH_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1125), - [anon_sym_sizeof] = ACTIONS(1123), - [anon_sym___alignof__] = ACTIONS(1123), - [anon_sym___alignof] = ACTIONS(1123), - [anon_sym__alignof] = ACTIONS(1123), - [anon_sym_alignof] = ACTIONS(1123), - [anon_sym__Alignof] = ACTIONS(1123), - [anon_sym_offsetof] = ACTIONS(1123), - [anon_sym__Generic] = ACTIONS(1123), - [anon_sym_asm] = ACTIONS(1123), - [anon_sym___asm__] = ACTIONS(1123), - [sym_number_literal] = ACTIONS(1125), - [anon_sym_L_SQUOTE] = ACTIONS(1125), - [anon_sym_u_SQUOTE] = ACTIONS(1125), - [anon_sym_U_SQUOTE] = ACTIONS(1125), - [anon_sym_u8_SQUOTE] = ACTIONS(1125), - [anon_sym_SQUOTE] = ACTIONS(1125), - [anon_sym_L_DQUOTE] = ACTIONS(1125), - [anon_sym_u_DQUOTE] = ACTIONS(1125), - [anon_sym_U_DQUOTE] = ACTIONS(1125), - [anon_sym_u8_DQUOTE] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(1125), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [anon_sym_NULL] = ACTIONS(1123), - [anon_sym_nullptr] = ACTIONS(1123), + [209] = { + [sym_identifier] = ACTIONS(1143), + [aux_sym_preproc_include_token1] = ACTIONS(1143), + [aux_sym_preproc_def_token1] = ACTIONS(1143), + [aux_sym_preproc_if_token1] = ACTIONS(1143), + [aux_sym_preproc_if_token2] = ACTIONS(1143), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1143), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1143), + [sym_preproc_directive] = ACTIONS(1143), + [anon_sym_LPAREN2] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_TILDE] = ACTIONS(1145), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_STAR] = ACTIONS(1145), + [anon_sym_AMP] = ACTIONS(1145), + [anon_sym_SEMI] = ACTIONS(1145), + [anon_sym___extension__] = ACTIONS(1143), + [anon_sym_typedef] = ACTIONS(1143), + [anon_sym_extern] = ACTIONS(1143), + [anon_sym___attribute__] = ACTIONS(1143), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), + [anon_sym___declspec] = ACTIONS(1143), + [anon_sym___cdecl] = ACTIONS(1143), + [anon_sym___clrcall] = ACTIONS(1143), + [anon_sym___stdcall] = ACTIONS(1143), + [anon_sym___fastcall] = ACTIONS(1143), + [anon_sym___thiscall] = ACTIONS(1143), + [anon_sym___vectorcall] = ACTIONS(1143), + [anon_sym_LBRACE] = ACTIONS(1145), + [anon_sym_signed] = ACTIONS(1143), + [anon_sym_unsigned] = ACTIONS(1143), + [anon_sym_long] = ACTIONS(1143), + [anon_sym_short] = ACTIONS(1143), + [anon_sym_static] = ACTIONS(1143), + [anon_sym_auto] = ACTIONS(1143), + [anon_sym_register] = ACTIONS(1143), + [anon_sym_inline] = ACTIONS(1143), + [anon_sym___inline] = ACTIONS(1143), + [anon_sym___inline__] = ACTIONS(1143), + [anon_sym___forceinline] = ACTIONS(1143), + [anon_sym_thread_local] = ACTIONS(1143), + [anon_sym___thread] = ACTIONS(1143), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_constexpr] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym___restrict__] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1143), + [anon_sym__Noreturn] = ACTIONS(1143), + [anon_sym_noreturn] = ACTIONS(1143), + [anon_sym_alignas] = ACTIONS(1143), + [anon_sym__Alignas] = ACTIONS(1143), + [sym_primitive_type] = ACTIONS(1143), + [anon_sym_enum] = ACTIONS(1143), + [anon_sym_struct] = ACTIONS(1143), + [anon_sym_union] = ACTIONS(1143), + [anon_sym_if] = ACTIONS(1143), + [anon_sym_else] = ACTIONS(1143), + [anon_sym_switch] = ACTIONS(1143), + [anon_sym_case] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(1143), + [anon_sym_do] = ACTIONS(1143), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_return] = ACTIONS(1143), + [anon_sym_break] = ACTIONS(1143), + [anon_sym_continue] = ACTIONS(1143), + [anon_sym_goto] = ACTIONS(1143), + [anon_sym___try] = ACTIONS(1143), + [anon_sym___leave] = ACTIONS(1143), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_sizeof] = ACTIONS(1143), + [anon_sym___alignof__] = ACTIONS(1143), + [anon_sym___alignof] = ACTIONS(1143), + [anon_sym__alignof] = ACTIONS(1143), + [anon_sym_alignof] = ACTIONS(1143), + [anon_sym__Alignof] = ACTIONS(1143), + [anon_sym_offsetof] = ACTIONS(1143), + [anon_sym__Generic] = ACTIONS(1143), + [anon_sym_asm] = ACTIONS(1143), + [anon_sym___asm__] = ACTIONS(1143), + [sym_number_literal] = ACTIONS(1145), + [anon_sym_L_SQUOTE] = ACTIONS(1145), + [anon_sym_u_SQUOTE] = ACTIONS(1145), + [anon_sym_U_SQUOTE] = ACTIONS(1145), + [anon_sym_u8_SQUOTE] = ACTIONS(1145), + [anon_sym_SQUOTE] = ACTIONS(1145), + [anon_sym_L_DQUOTE] = ACTIONS(1145), + [anon_sym_u_DQUOTE] = ACTIONS(1145), + [anon_sym_U_DQUOTE] = ACTIONS(1145), + [anon_sym_u8_DQUOTE] = ACTIONS(1145), + [anon_sym_DQUOTE] = ACTIONS(1145), + [sym_true] = ACTIONS(1143), + [sym_false] = ACTIONS(1143), + [anon_sym_NULL] = ACTIONS(1143), + [anon_sym_nullptr] = ACTIONS(1143), [sym_comment] = ACTIONS(3), }, - [250] = { - [sym_identifier] = ACTIONS(1231), - [aux_sym_preproc_include_token1] = ACTIONS(1231), - [aux_sym_preproc_def_token1] = ACTIONS(1231), - [aux_sym_preproc_if_token1] = ACTIONS(1231), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1231), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1231), - [sym_preproc_directive] = ACTIONS(1231), - [anon_sym_LPAREN2] = ACTIONS(1233), - [anon_sym_BANG] = ACTIONS(1233), - [anon_sym_TILDE] = ACTIONS(1233), - [anon_sym_DASH] = ACTIONS(1231), - [anon_sym_PLUS] = ACTIONS(1231), - [anon_sym_STAR] = ACTIONS(1233), - [anon_sym_AMP] = ACTIONS(1233), - [anon_sym_SEMI] = ACTIONS(1233), - [anon_sym___extension__] = ACTIONS(1231), - [anon_sym_typedef] = ACTIONS(1231), - [anon_sym_extern] = ACTIONS(1231), - [anon_sym___attribute__] = ACTIONS(1231), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1233), - [anon_sym___declspec] = ACTIONS(1231), - [anon_sym___cdecl] = ACTIONS(1231), - [anon_sym___clrcall] = ACTIONS(1231), - [anon_sym___stdcall] = ACTIONS(1231), - [anon_sym___fastcall] = ACTIONS(1231), - [anon_sym___thiscall] = ACTIONS(1231), - [anon_sym___vectorcall] = ACTIONS(1231), - [anon_sym_LBRACE] = ACTIONS(1233), - [anon_sym_RBRACE] = ACTIONS(1233), - [anon_sym_signed] = ACTIONS(1231), - [anon_sym_unsigned] = ACTIONS(1231), - [anon_sym_long] = ACTIONS(1231), - [anon_sym_short] = ACTIONS(1231), - [anon_sym_static] = ACTIONS(1231), - [anon_sym_auto] = ACTIONS(1231), - [anon_sym_register] = ACTIONS(1231), - [anon_sym_inline] = ACTIONS(1231), - [anon_sym___inline] = ACTIONS(1231), - [anon_sym___inline__] = ACTIONS(1231), - [anon_sym___forceinline] = ACTIONS(1231), - [anon_sym_thread_local] = ACTIONS(1231), - [anon_sym___thread] = ACTIONS(1231), - [anon_sym_const] = ACTIONS(1231), - [anon_sym_constexpr] = ACTIONS(1231), - [anon_sym_volatile] = ACTIONS(1231), - [anon_sym_restrict] = ACTIONS(1231), - [anon_sym___restrict__] = ACTIONS(1231), - [anon_sym__Atomic] = ACTIONS(1231), - [anon_sym__Noreturn] = ACTIONS(1231), - [anon_sym_noreturn] = ACTIONS(1231), - [anon_sym_alignas] = ACTIONS(1231), - [anon_sym__Alignas] = ACTIONS(1231), - [sym_primitive_type] = ACTIONS(1231), - [anon_sym_enum] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1231), - [anon_sym_union] = ACTIONS(1231), - [anon_sym_if] = ACTIONS(1231), - [anon_sym_else] = ACTIONS(1231), - [anon_sym_switch] = ACTIONS(1231), - [anon_sym_case] = ACTIONS(1231), - [anon_sym_default] = ACTIONS(1231), - [anon_sym_while] = ACTIONS(1231), - [anon_sym_do] = ACTIONS(1231), - [anon_sym_for] = ACTIONS(1231), - [anon_sym_return] = ACTIONS(1231), - [anon_sym_break] = ACTIONS(1231), - [anon_sym_continue] = ACTIONS(1231), - [anon_sym_goto] = ACTIONS(1231), - [anon_sym___try] = ACTIONS(1231), - [anon_sym___leave] = ACTIONS(1231), - [anon_sym_DASH_DASH] = ACTIONS(1233), - [anon_sym_PLUS_PLUS] = ACTIONS(1233), - [anon_sym_sizeof] = ACTIONS(1231), - [anon_sym___alignof__] = ACTIONS(1231), - [anon_sym___alignof] = ACTIONS(1231), - [anon_sym__alignof] = ACTIONS(1231), - [anon_sym_alignof] = ACTIONS(1231), - [anon_sym__Alignof] = ACTIONS(1231), - [anon_sym_offsetof] = ACTIONS(1231), - [anon_sym__Generic] = ACTIONS(1231), - [anon_sym_asm] = ACTIONS(1231), - [anon_sym___asm__] = ACTIONS(1231), - [sym_number_literal] = ACTIONS(1233), - [anon_sym_L_SQUOTE] = ACTIONS(1233), - [anon_sym_u_SQUOTE] = ACTIONS(1233), - [anon_sym_U_SQUOTE] = ACTIONS(1233), - [anon_sym_u8_SQUOTE] = ACTIONS(1233), - [anon_sym_SQUOTE] = ACTIONS(1233), - [anon_sym_L_DQUOTE] = ACTIONS(1233), - [anon_sym_u_DQUOTE] = ACTIONS(1233), - [anon_sym_U_DQUOTE] = ACTIONS(1233), - [anon_sym_u8_DQUOTE] = ACTIONS(1233), - [anon_sym_DQUOTE] = ACTIONS(1233), - [sym_true] = ACTIONS(1231), - [sym_false] = ACTIONS(1231), - [anon_sym_NULL] = ACTIONS(1231), - [anon_sym_nullptr] = ACTIONS(1231), + [210] = { + [ts_builtin_sym_end] = ACTIONS(1241), + [sym_identifier] = ACTIONS(1239), + [aux_sym_preproc_include_token1] = ACTIONS(1239), + [aux_sym_preproc_def_token1] = ACTIONS(1239), + [aux_sym_preproc_if_token1] = ACTIONS(1239), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1239), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1239), + [sym_preproc_directive] = ACTIONS(1239), + [anon_sym_LPAREN2] = ACTIONS(1241), + [anon_sym_BANG] = ACTIONS(1241), + [anon_sym_TILDE] = ACTIONS(1241), + [anon_sym_DASH] = ACTIONS(1239), + [anon_sym_PLUS] = ACTIONS(1239), + [anon_sym_STAR] = ACTIONS(1241), + [anon_sym_AMP] = ACTIONS(1241), + [anon_sym_SEMI] = ACTIONS(1241), + [anon_sym___extension__] = ACTIONS(1239), + [anon_sym_typedef] = ACTIONS(1239), + [anon_sym_extern] = ACTIONS(1239), + [anon_sym___attribute__] = ACTIONS(1239), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1241), + [anon_sym___declspec] = ACTIONS(1239), + [anon_sym___cdecl] = ACTIONS(1239), + [anon_sym___clrcall] = ACTIONS(1239), + [anon_sym___stdcall] = ACTIONS(1239), + [anon_sym___fastcall] = ACTIONS(1239), + [anon_sym___thiscall] = ACTIONS(1239), + [anon_sym___vectorcall] = ACTIONS(1239), + [anon_sym_LBRACE] = ACTIONS(1241), + [anon_sym_signed] = ACTIONS(1239), + [anon_sym_unsigned] = ACTIONS(1239), + [anon_sym_long] = ACTIONS(1239), + [anon_sym_short] = ACTIONS(1239), + [anon_sym_static] = ACTIONS(1239), + [anon_sym_auto] = ACTIONS(1239), + [anon_sym_register] = ACTIONS(1239), + [anon_sym_inline] = ACTIONS(1239), + [anon_sym___inline] = ACTIONS(1239), + [anon_sym___inline__] = ACTIONS(1239), + [anon_sym___forceinline] = ACTIONS(1239), + [anon_sym_thread_local] = ACTIONS(1239), + [anon_sym___thread] = ACTIONS(1239), + [anon_sym_const] = ACTIONS(1239), + [anon_sym_constexpr] = ACTIONS(1239), + [anon_sym_volatile] = ACTIONS(1239), + [anon_sym_restrict] = ACTIONS(1239), + [anon_sym___restrict__] = ACTIONS(1239), + [anon_sym__Atomic] = ACTIONS(1239), + [anon_sym__Noreturn] = ACTIONS(1239), + [anon_sym_noreturn] = ACTIONS(1239), + [anon_sym_alignas] = ACTIONS(1239), + [anon_sym__Alignas] = 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___try] = ACTIONS(1239), + [anon_sym___leave] = ACTIONS(1239), + [anon_sym_DASH_DASH] = ACTIONS(1241), + [anon_sym_PLUS_PLUS] = ACTIONS(1241), + [anon_sym_sizeof] = ACTIONS(1239), + [anon_sym___alignof__] = ACTIONS(1239), + [anon_sym___alignof] = ACTIONS(1239), + [anon_sym__alignof] = ACTIONS(1239), + [anon_sym_alignof] = ACTIONS(1239), + [anon_sym__Alignof] = ACTIONS(1239), + [anon_sym_offsetof] = ACTIONS(1239), + [anon_sym__Generic] = ACTIONS(1239), + [anon_sym_asm] = ACTIONS(1239), + [anon_sym___asm__] = ACTIONS(1239), + [sym_number_literal] = ACTIONS(1241), + [anon_sym_L_SQUOTE] = ACTIONS(1241), + [anon_sym_u_SQUOTE] = ACTIONS(1241), + [anon_sym_U_SQUOTE] = ACTIONS(1241), + [anon_sym_u8_SQUOTE] = ACTIONS(1241), + [anon_sym_SQUOTE] = ACTIONS(1241), + [anon_sym_L_DQUOTE] = ACTIONS(1241), + [anon_sym_u_DQUOTE] = ACTIONS(1241), + [anon_sym_U_DQUOTE] = ACTIONS(1241), + [anon_sym_u8_DQUOTE] = ACTIONS(1241), + [anon_sym_DQUOTE] = ACTIONS(1241), + [sym_true] = ACTIONS(1239), + [sym_false] = ACTIONS(1239), + [anon_sym_NULL] = ACTIONS(1239), + [anon_sym_nullptr] = ACTIONS(1239), [sym_comment] = ACTIONS(3), }, - [251] = { - [sym_identifier] = ACTIONS(1235), - [aux_sym_preproc_include_token1] = ACTIONS(1235), - [aux_sym_preproc_def_token1] = ACTIONS(1235), - [aux_sym_preproc_if_token1] = ACTIONS(1235), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1235), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1235), - [sym_preproc_directive] = ACTIONS(1235), - [anon_sym_LPAREN2] = ACTIONS(1237), - [anon_sym_BANG] = ACTIONS(1237), - [anon_sym_TILDE] = ACTIONS(1237), - [anon_sym_DASH] = ACTIONS(1235), - [anon_sym_PLUS] = ACTIONS(1235), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_AMP] = ACTIONS(1237), - [anon_sym_SEMI] = ACTIONS(1237), - [anon_sym___extension__] = ACTIONS(1235), - [anon_sym_typedef] = ACTIONS(1235), - [anon_sym_extern] = ACTIONS(1235), - [anon_sym___attribute__] = ACTIONS(1235), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1237), - [anon_sym___declspec] = ACTIONS(1235), - [anon_sym___cdecl] = ACTIONS(1235), - [anon_sym___clrcall] = ACTIONS(1235), - [anon_sym___stdcall] = ACTIONS(1235), - [anon_sym___fastcall] = ACTIONS(1235), - [anon_sym___thiscall] = ACTIONS(1235), - [anon_sym___vectorcall] = ACTIONS(1235), - [anon_sym_LBRACE] = ACTIONS(1237), - [anon_sym_RBRACE] = ACTIONS(1237), - [anon_sym_signed] = ACTIONS(1235), - [anon_sym_unsigned] = ACTIONS(1235), - [anon_sym_long] = ACTIONS(1235), - [anon_sym_short] = ACTIONS(1235), - [anon_sym_static] = ACTIONS(1235), - [anon_sym_auto] = ACTIONS(1235), - [anon_sym_register] = ACTIONS(1235), - [anon_sym_inline] = ACTIONS(1235), - [anon_sym___inline] = ACTIONS(1235), - [anon_sym___inline__] = ACTIONS(1235), - [anon_sym___forceinline] = ACTIONS(1235), - [anon_sym_thread_local] = ACTIONS(1235), - [anon_sym___thread] = ACTIONS(1235), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_constexpr] = ACTIONS(1235), - [anon_sym_volatile] = ACTIONS(1235), - [anon_sym_restrict] = ACTIONS(1235), - [anon_sym___restrict__] = ACTIONS(1235), - [anon_sym__Atomic] = ACTIONS(1235), - [anon_sym__Noreturn] = ACTIONS(1235), - [anon_sym_noreturn] = ACTIONS(1235), - [anon_sym_alignas] = ACTIONS(1235), - [anon_sym__Alignas] = 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___try] = ACTIONS(1235), - [anon_sym___leave] = ACTIONS(1235), - [anon_sym_DASH_DASH] = ACTIONS(1237), - [anon_sym_PLUS_PLUS] = ACTIONS(1237), - [anon_sym_sizeof] = ACTIONS(1235), - [anon_sym___alignof__] = ACTIONS(1235), - [anon_sym___alignof] = ACTIONS(1235), - [anon_sym__alignof] = ACTIONS(1235), - [anon_sym_alignof] = ACTIONS(1235), - [anon_sym__Alignof] = ACTIONS(1235), - [anon_sym_offsetof] = ACTIONS(1235), - [anon_sym__Generic] = ACTIONS(1235), - [anon_sym_asm] = ACTIONS(1235), - [anon_sym___asm__] = ACTIONS(1235), - [sym_number_literal] = ACTIONS(1237), - [anon_sym_L_SQUOTE] = ACTIONS(1237), - [anon_sym_u_SQUOTE] = ACTIONS(1237), - [anon_sym_U_SQUOTE] = ACTIONS(1237), - [anon_sym_u8_SQUOTE] = ACTIONS(1237), - [anon_sym_SQUOTE] = ACTIONS(1237), - [anon_sym_L_DQUOTE] = ACTIONS(1237), - [anon_sym_u_DQUOTE] = ACTIONS(1237), - [anon_sym_U_DQUOTE] = ACTIONS(1237), - [anon_sym_u8_DQUOTE] = ACTIONS(1237), - [anon_sym_DQUOTE] = ACTIONS(1237), - [sym_true] = ACTIONS(1235), - [sym_false] = ACTIONS(1235), - [anon_sym_NULL] = ACTIONS(1235), - [anon_sym_nullptr] = ACTIONS(1235), - [sym_comment] = ACTIONS(3), - }, - [252] = { - [sym_identifier] = ACTIONS(1123), - [aux_sym_preproc_include_token1] = ACTIONS(1123), - [aux_sym_preproc_def_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token2] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), - [sym_preproc_directive] = ACTIONS(1123), - [anon_sym_LPAREN2] = ACTIONS(1125), - [anon_sym_BANG] = ACTIONS(1125), - [anon_sym_TILDE] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym___extension__] = ACTIONS(1123), - [anon_sym_typedef] = ACTIONS(1123), - [anon_sym_extern] = ACTIONS(1123), - [anon_sym___attribute__] = ACTIONS(1123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), - [anon_sym___declspec] = ACTIONS(1123), - [anon_sym___cdecl] = ACTIONS(1123), - [anon_sym___clrcall] = ACTIONS(1123), - [anon_sym___stdcall] = ACTIONS(1123), - [anon_sym___fastcall] = ACTIONS(1123), - [anon_sym___thiscall] = ACTIONS(1123), - [anon_sym___vectorcall] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_signed] = ACTIONS(1123), - [anon_sym_unsigned] = ACTIONS(1123), - [anon_sym_long] = ACTIONS(1123), - [anon_sym_short] = ACTIONS(1123), - [anon_sym_static] = ACTIONS(1123), - [anon_sym_auto] = ACTIONS(1123), - [anon_sym_register] = ACTIONS(1123), - [anon_sym_inline] = ACTIONS(1123), - [anon_sym___inline] = ACTIONS(1123), - [anon_sym___inline__] = ACTIONS(1123), - [anon_sym___forceinline] = ACTIONS(1123), - [anon_sym_thread_local] = ACTIONS(1123), - [anon_sym___thread] = ACTIONS(1123), - [anon_sym_const] = ACTIONS(1123), - [anon_sym_constexpr] = ACTIONS(1123), - [anon_sym_volatile] = ACTIONS(1123), - [anon_sym_restrict] = ACTIONS(1123), - [anon_sym___restrict__] = ACTIONS(1123), - [anon_sym__Atomic] = ACTIONS(1123), - [anon_sym__Noreturn] = ACTIONS(1123), - [anon_sym_noreturn] = ACTIONS(1123), - [anon_sym_alignas] = ACTIONS(1123), - [anon_sym__Alignas] = ACTIONS(1123), - [sym_primitive_type] = ACTIONS(1123), - [anon_sym_enum] = ACTIONS(1123), - [anon_sym_struct] = ACTIONS(1123), - [anon_sym_union] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1123), - [anon_sym_else] = ACTIONS(1123), - [anon_sym_switch] = ACTIONS(1123), - [anon_sym_case] = ACTIONS(1123), - [anon_sym_default] = ACTIONS(1123), - [anon_sym_while] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(1123), - [anon_sym_for] = ACTIONS(1123), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_break] = ACTIONS(1123), - [anon_sym_continue] = ACTIONS(1123), - [anon_sym_goto] = ACTIONS(1123), - [anon_sym___try] = ACTIONS(1123), - [anon_sym___leave] = ACTIONS(1123), - [anon_sym_DASH_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1125), - [anon_sym_sizeof] = ACTIONS(1123), - [anon_sym___alignof__] = ACTIONS(1123), - [anon_sym___alignof] = ACTIONS(1123), - [anon_sym__alignof] = ACTIONS(1123), - [anon_sym_alignof] = ACTIONS(1123), - [anon_sym__Alignof] = ACTIONS(1123), - [anon_sym_offsetof] = ACTIONS(1123), - [anon_sym__Generic] = ACTIONS(1123), - [anon_sym_asm] = ACTIONS(1123), - [anon_sym___asm__] = ACTIONS(1123), - [sym_number_literal] = ACTIONS(1125), - [anon_sym_L_SQUOTE] = ACTIONS(1125), - [anon_sym_u_SQUOTE] = ACTIONS(1125), - [anon_sym_U_SQUOTE] = ACTIONS(1125), - [anon_sym_u8_SQUOTE] = ACTIONS(1125), - [anon_sym_SQUOTE] = ACTIONS(1125), - [anon_sym_L_DQUOTE] = ACTIONS(1125), - [anon_sym_u_DQUOTE] = ACTIONS(1125), - [anon_sym_U_DQUOTE] = ACTIONS(1125), - [anon_sym_u8_DQUOTE] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(1125), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [anon_sym_NULL] = ACTIONS(1123), - [anon_sym_nullptr] = ACTIONS(1123), + [211] = { + [sym_identifier] = ACTIONS(1219), + [aux_sym_preproc_include_token1] = ACTIONS(1219), + [aux_sym_preproc_def_token1] = ACTIONS(1219), + [aux_sym_preproc_if_token1] = ACTIONS(1219), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1219), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1219), + [sym_preproc_directive] = ACTIONS(1219), + [anon_sym_LPAREN2] = ACTIONS(1221), + [anon_sym_BANG] = ACTIONS(1221), + [anon_sym_TILDE] = ACTIONS(1221), + [anon_sym_DASH] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1219), + [anon_sym_STAR] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(1221), + [anon_sym_SEMI] = ACTIONS(1221), + [anon_sym___extension__] = ACTIONS(1219), + [anon_sym_typedef] = ACTIONS(1219), + [anon_sym_extern] = ACTIONS(1219), + [anon_sym___attribute__] = ACTIONS(1219), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1221), + [anon_sym___declspec] = ACTIONS(1219), + [anon_sym___cdecl] = ACTIONS(1219), + [anon_sym___clrcall] = ACTIONS(1219), + [anon_sym___stdcall] = ACTIONS(1219), + [anon_sym___fastcall] = ACTIONS(1219), + [anon_sym___thiscall] = ACTIONS(1219), + [anon_sym___vectorcall] = ACTIONS(1219), + [anon_sym_LBRACE] = ACTIONS(1221), + [anon_sym_RBRACE] = ACTIONS(1221), + [anon_sym_signed] = ACTIONS(1219), + [anon_sym_unsigned] = ACTIONS(1219), + [anon_sym_long] = ACTIONS(1219), + [anon_sym_short] = ACTIONS(1219), + [anon_sym_static] = ACTIONS(1219), + [anon_sym_auto] = ACTIONS(1219), + [anon_sym_register] = ACTIONS(1219), + [anon_sym_inline] = ACTIONS(1219), + [anon_sym___inline] = ACTIONS(1219), + [anon_sym___inline__] = ACTIONS(1219), + [anon_sym___forceinline] = ACTIONS(1219), + [anon_sym_thread_local] = ACTIONS(1219), + [anon_sym___thread] = ACTIONS(1219), + [anon_sym_const] = ACTIONS(1219), + [anon_sym_constexpr] = ACTIONS(1219), + [anon_sym_volatile] = ACTIONS(1219), + [anon_sym_restrict] = ACTIONS(1219), + [anon_sym___restrict__] = ACTIONS(1219), + [anon_sym__Atomic] = ACTIONS(1219), + [anon_sym__Noreturn] = ACTIONS(1219), + [anon_sym_noreturn] = ACTIONS(1219), + [anon_sym_alignas] = ACTIONS(1219), + [anon_sym__Alignas] = ACTIONS(1219), + [sym_primitive_type] = ACTIONS(1219), + [anon_sym_enum] = ACTIONS(1219), + [anon_sym_struct] = ACTIONS(1219), + [anon_sym_union] = ACTIONS(1219), + [anon_sym_if] = ACTIONS(1219), + [anon_sym_else] = ACTIONS(1219), + [anon_sym_switch] = ACTIONS(1219), + [anon_sym_case] = ACTIONS(1219), + [anon_sym_default] = ACTIONS(1219), + [anon_sym_while] = ACTIONS(1219), + [anon_sym_do] = ACTIONS(1219), + [anon_sym_for] = ACTIONS(1219), + [anon_sym_return] = ACTIONS(1219), + [anon_sym_break] = ACTIONS(1219), + [anon_sym_continue] = ACTIONS(1219), + [anon_sym_goto] = ACTIONS(1219), + [anon_sym___try] = ACTIONS(1219), + [anon_sym___leave] = ACTIONS(1219), + [anon_sym_DASH_DASH] = ACTIONS(1221), + [anon_sym_PLUS_PLUS] = ACTIONS(1221), + [anon_sym_sizeof] = ACTIONS(1219), + [anon_sym___alignof__] = ACTIONS(1219), + [anon_sym___alignof] = ACTIONS(1219), + [anon_sym__alignof] = ACTIONS(1219), + [anon_sym_alignof] = ACTIONS(1219), + [anon_sym__Alignof] = ACTIONS(1219), + [anon_sym_offsetof] = ACTIONS(1219), + [anon_sym__Generic] = ACTIONS(1219), + [anon_sym_asm] = ACTIONS(1219), + [anon_sym___asm__] = ACTIONS(1219), + [sym_number_literal] = ACTIONS(1221), + [anon_sym_L_SQUOTE] = ACTIONS(1221), + [anon_sym_u_SQUOTE] = ACTIONS(1221), + [anon_sym_U_SQUOTE] = ACTIONS(1221), + [anon_sym_u8_SQUOTE] = ACTIONS(1221), + [anon_sym_SQUOTE] = ACTIONS(1221), + [anon_sym_L_DQUOTE] = ACTIONS(1221), + [anon_sym_u_DQUOTE] = ACTIONS(1221), + [anon_sym_U_DQUOTE] = ACTIONS(1221), + [anon_sym_u8_DQUOTE] = ACTIONS(1221), + [anon_sym_DQUOTE] = ACTIONS(1221), + [sym_true] = ACTIONS(1219), + [sym_false] = ACTIONS(1219), + [anon_sym_NULL] = ACTIONS(1219), + [anon_sym_nullptr] = ACTIONS(1219), [sym_comment] = ACTIONS(3), }, - [253] = { - [sym_identifier] = ACTIONS(1123), - [aux_sym_preproc_include_token1] = ACTIONS(1123), - [aux_sym_preproc_def_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), - [sym_preproc_directive] = ACTIONS(1123), - [anon_sym_LPAREN2] = ACTIONS(1125), - [anon_sym_BANG] = ACTIONS(1125), - [anon_sym_TILDE] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym___extension__] = ACTIONS(1123), - [anon_sym_typedef] = ACTIONS(1123), - [anon_sym_extern] = ACTIONS(1123), - [anon_sym___attribute__] = ACTIONS(1123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), - [anon_sym___declspec] = ACTIONS(1123), - [anon_sym___cdecl] = ACTIONS(1123), - [anon_sym___clrcall] = ACTIONS(1123), - [anon_sym___stdcall] = ACTIONS(1123), - [anon_sym___fastcall] = ACTIONS(1123), - [anon_sym___thiscall] = ACTIONS(1123), - [anon_sym___vectorcall] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_RBRACE] = ACTIONS(1125), - [anon_sym_signed] = ACTIONS(1123), - [anon_sym_unsigned] = ACTIONS(1123), - [anon_sym_long] = ACTIONS(1123), - [anon_sym_short] = ACTIONS(1123), - [anon_sym_static] = ACTIONS(1123), - [anon_sym_auto] = ACTIONS(1123), - [anon_sym_register] = ACTIONS(1123), - [anon_sym_inline] = ACTIONS(1123), - [anon_sym___inline] = ACTIONS(1123), - [anon_sym___inline__] = ACTIONS(1123), - [anon_sym___forceinline] = ACTIONS(1123), - [anon_sym_thread_local] = ACTIONS(1123), - [anon_sym___thread] = ACTIONS(1123), - [anon_sym_const] = ACTIONS(1123), - [anon_sym_constexpr] = ACTIONS(1123), - [anon_sym_volatile] = ACTIONS(1123), - [anon_sym_restrict] = ACTIONS(1123), - [anon_sym___restrict__] = ACTIONS(1123), - [anon_sym__Atomic] = ACTIONS(1123), - [anon_sym__Noreturn] = ACTIONS(1123), - [anon_sym_noreturn] = ACTIONS(1123), - [anon_sym_alignas] = ACTIONS(1123), - [anon_sym__Alignas] = ACTIONS(1123), - [sym_primitive_type] = ACTIONS(1123), - [anon_sym_enum] = ACTIONS(1123), - [anon_sym_struct] = ACTIONS(1123), - [anon_sym_union] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1123), - [anon_sym_else] = ACTIONS(1123), - [anon_sym_switch] = ACTIONS(1123), - [anon_sym_case] = ACTIONS(1123), - [anon_sym_default] = ACTIONS(1123), - [anon_sym_while] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(1123), - [anon_sym_for] = ACTIONS(1123), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_break] = ACTIONS(1123), - [anon_sym_continue] = ACTIONS(1123), - [anon_sym_goto] = ACTIONS(1123), - [anon_sym___try] = ACTIONS(1123), - [anon_sym___leave] = ACTIONS(1123), - [anon_sym_DASH_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1125), - [anon_sym_sizeof] = ACTIONS(1123), - [anon_sym___alignof__] = ACTIONS(1123), - [anon_sym___alignof] = ACTIONS(1123), - [anon_sym__alignof] = ACTIONS(1123), - [anon_sym_alignof] = ACTIONS(1123), - [anon_sym__Alignof] = ACTIONS(1123), - [anon_sym_offsetof] = ACTIONS(1123), - [anon_sym__Generic] = ACTIONS(1123), - [anon_sym_asm] = ACTIONS(1123), - [anon_sym___asm__] = ACTIONS(1123), - [sym_number_literal] = ACTIONS(1125), - [anon_sym_L_SQUOTE] = ACTIONS(1125), - [anon_sym_u_SQUOTE] = ACTIONS(1125), - [anon_sym_U_SQUOTE] = ACTIONS(1125), - [anon_sym_u8_SQUOTE] = ACTIONS(1125), - [anon_sym_SQUOTE] = ACTIONS(1125), - [anon_sym_L_DQUOTE] = ACTIONS(1125), - [anon_sym_u_DQUOTE] = ACTIONS(1125), - [anon_sym_U_DQUOTE] = ACTIONS(1125), - [anon_sym_u8_DQUOTE] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(1125), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [anon_sym_NULL] = ACTIONS(1123), - [anon_sym_nullptr] = ACTIONS(1123), + [212] = { + [sym_identifier] = ACTIONS(1239), + [aux_sym_preproc_include_token1] = ACTIONS(1239), + [aux_sym_preproc_def_token1] = ACTIONS(1239), + [aux_sym_preproc_if_token1] = ACTIONS(1239), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1239), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1239), + [sym_preproc_directive] = ACTIONS(1239), + [anon_sym_LPAREN2] = ACTIONS(1241), + [anon_sym_BANG] = ACTIONS(1241), + [anon_sym_TILDE] = ACTIONS(1241), + [anon_sym_DASH] = ACTIONS(1239), + [anon_sym_PLUS] = ACTIONS(1239), + [anon_sym_STAR] = ACTIONS(1241), + [anon_sym_AMP] = ACTIONS(1241), + [anon_sym_SEMI] = ACTIONS(1241), + [anon_sym___extension__] = ACTIONS(1239), + [anon_sym_typedef] = ACTIONS(1239), + [anon_sym_extern] = ACTIONS(1239), + [anon_sym___attribute__] = ACTIONS(1239), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1241), + [anon_sym___declspec] = ACTIONS(1239), + [anon_sym___cdecl] = ACTIONS(1239), + [anon_sym___clrcall] = ACTIONS(1239), + [anon_sym___stdcall] = ACTIONS(1239), + [anon_sym___fastcall] = ACTIONS(1239), + [anon_sym___thiscall] = ACTIONS(1239), + [anon_sym___vectorcall] = ACTIONS(1239), + [anon_sym_LBRACE] = ACTIONS(1241), + [anon_sym_RBRACE] = ACTIONS(1241), + [anon_sym_signed] = ACTIONS(1239), + [anon_sym_unsigned] = ACTIONS(1239), + [anon_sym_long] = ACTIONS(1239), + [anon_sym_short] = ACTIONS(1239), + [anon_sym_static] = ACTIONS(1239), + [anon_sym_auto] = ACTIONS(1239), + [anon_sym_register] = ACTIONS(1239), + [anon_sym_inline] = ACTIONS(1239), + [anon_sym___inline] = ACTIONS(1239), + [anon_sym___inline__] = ACTIONS(1239), + [anon_sym___forceinline] = ACTIONS(1239), + [anon_sym_thread_local] = ACTIONS(1239), + [anon_sym___thread] = ACTIONS(1239), + [anon_sym_const] = ACTIONS(1239), + [anon_sym_constexpr] = ACTIONS(1239), + [anon_sym_volatile] = ACTIONS(1239), + [anon_sym_restrict] = ACTIONS(1239), + [anon_sym___restrict__] = ACTIONS(1239), + [anon_sym__Atomic] = ACTIONS(1239), + [anon_sym__Noreturn] = ACTIONS(1239), + [anon_sym_noreturn] = ACTIONS(1239), + [anon_sym_alignas] = ACTIONS(1239), + [anon_sym__Alignas] = 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___try] = ACTIONS(1239), + [anon_sym___leave] = ACTIONS(1239), + [anon_sym_DASH_DASH] = ACTIONS(1241), + [anon_sym_PLUS_PLUS] = ACTIONS(1241), + [anon_sym_sizeof] = ACTIONS(1239), + [anon_sym___alignof__] = ACTIONS(1239), + [anon_sym___alignof] = ACTIONS(1239), + [anon_sym__alignof] = ACTIONS(1239), + [anon_sym_alignof] = ACTIONS(1239), + [anon_sym__Alignof] = ACTIONS(1239), + [anon_sym_offsetof] = ACTIONS(1239), + [anon_sym__Generic] = ACTIONS(1239), + [anon_sym_asm] = ACTIONS(1239), + [anon_sym___asm__] = ACTIONS(1239), + [sym_number_literal] = ACTIONS(1241), + [anon_sym_L_SQUOTE] = ACTIONS(1241), + [anon_sym_u_SQUOTE] = ACTIONS(1241), + [anon_sym_U_SQUOTE] = ACTIONS(1241), + [anon_sym_u8_SQUOTE] = ACTIONS(1241), + [anon_sym_SQUOTE] = ACTIONS(1241), + [anon_sym_L_DQUOTE] = ACTIONS(1241), + [anon_sym_u_DQUOTE] = ACTIONS(1241), + [anon_sym_U_DQUOTE] = ACTIONS(1241), + [anon_sym_u8_DQUOTE] = ACTIONS(1241), + [anon_sym_DQUOTE] = ACTIONS(1241), + [sym_true] = ACTIONS(1239), + [sym_false] = ACTIONS(1239), + [anon_sym_NULL] = ACTIONS(1239), + [anon_sym_nullptr] = ACTIONS(1239), [sym_comment] = ACTIONS(3), }, - [254] = { - [sym_identifier] = ACTIONS(1123), - [aux_sym_preproc_include_token1] = ACTIONS(1123), - [aux_sym_preproc_def_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token2] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), - [sym_preproc_directive] = ACTIONS(1123), - [anon_sym_LPAREN2] = ACTIONS(1125), - [anon_sym_BANG] = ACTIONS(1125), - [anon_sym_TILDE] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym___extension__] = ACTIONS(1123), - [anon_sym_typedef] = ACTIONS(1123), - [anon_sym_extern] = ACTIONS(1123), - [anon_sym___attribute__] = ACTIONS(1123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), - [anon_sym___declspec] = ACTIONS(1123), - [anon_sym___cdecl] = ACTIONS(1123), - [anon_sym___clrcall] = ACTIONS(1123), - [anon_sym___stdcall] = ACTIONS(1123), - [anon_sym___fastcall] = ACTIONS(1123), - [anon_sym___thiscall] = ACTIONS(1123), - [anon_sym___vectorcall] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_signed] = ACTIONS(1123), - [anon_sym_unsigned] = ACTIONS(1123), - [anon_sym_long] = ACTIONS(1123), - [anon_sym_short] = ACTIONS(1123), - [anon_sym_static] = ACTIONS(1123), - [anon_sym_auto] = ACTIONS(1123), - [anon_sym_register] = ACTIONS(1123), - [anon_sym_inline] = ACTIONS(1123), - [anon_sym___inline] = ACTIONS(1123), - [anon_sym___inline__] = ACTIONS(1123), - [anon_sym___forceinline] = ACTIONS(1123), - [anon_sym_thread_local] = ACTIONS(1123), - [anon_sym___thread] = ACTIONS(1123), - [anon_sym_const] = ACTIONS(1123), - [anon_sym_constexpr] = ACTIONS(1123), - [anon_sym_volatile] = ACTIONS(1123), - [anon_sym_restrict] = ACTIONS(1123), - [anon_sym___restrict__] = ACTIONS(1123), - [anon_sym__Atomic] = ACTIONS(1123), - [anon_sym__Noreturn] = ACTIONS(1123), - [anon_sym_noreturn] = ACTIONS(1123), - [anon_sym_alignas] = ACTIONS(1123), - [anon_sym__Alignas] = ACTIONS(1123), - [sym_primitive_type] = ACTIONS(1123), - [anon_sym_enum] = ACTIONS(1123), - [anon_sym_struct] = ACTIONS(1123), - [anon_sym_union] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1123), - [anon_sym_else] = ACTIONS(1123), - [anon_sym_switch] = ACTIONS(1123), - [anon_sym_case] = ACTIONS(1123), - [anon_sym_default] = ACTIONS(1123), - [anon_sym_while] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(1123), - [anon_sym_for] = ACTIONS(1123), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_break] = ACTIONS(1123), - [anon_sym_continue] = ACTIONS(1123), - [anon_sym_goto] = ACTIONS(1123), - [anon_sym___try] = ACTIONS(1123), - [anon_sym___leave] = ACTIONS(1123), - [anon_sym_DASH_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1125), - [anon_sym_sizeof] = ACTIONS(1123), - [anon_sym___alignof__] = ACTIONS(1123), - [anon_sym___alignof] = ACTIONS(1123), - [anon_sym__alignof] = ACTIONS(1123), - [anon_sym_alignof] = ACTIONS(1123), - [anon_sym__Alignof] = ACTIONS(1123), - [anon_sym_offsetof] = ACTIONS(1123), - [anon_sym__Generic] = ACTIONS(1123), - [anon_sym_asm] = ACTIONS(1123), - [anon_sym___asm__] = ACTIONS(1123), - [sym_number_literal] = ACTIONS(1125), - [anon_sym_L_SQUOTE] = ACTIONS(1125), - [anon_sym_u_SQUOTE] = ACTIONS(1125), - [anon_sym_U_SQUOTE] = ACTIONS(1125), - [anon_sym_u8_SQUOTE] = ACTIONS(1125), - [anon_sym_SQUOTE] = ACTIONS(1125), - [anon_sym_L_DQUOTE] = ACTIONS(1125), - [anon_sym_u_DQUOTE] = ACTIONS(1125), - [anon_sym_U_DQUOTE] = ACTIONS(1125), - [anon_sym_u8_DQUOTE] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(1125), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [anon_sym_NULL] = ACTIONS(1123), - [anon_sym_nullptr] = ACTIONS(1123), - [sym_comment] = ACTIONS(3), - }, - [255] = { - [sym_identifier] = ACTIONS(1139), - [aux_sym_preproc_include_token1] = ACTIONS(1139), - [aux_sym_preproc_def_token1] = ACTIONS(1139), - [aux_sym_preproc_if_token1] = ACTIONS(1139), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1139), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1139), - [sym_preproc_directive] = ACTIONS(1139), - [anon_sym_LPAREN2] = ACTIONS(1141), - [anon_sym_BANG] = ACTIONS(1141), - [anon_sym_TILDE] = ACTIONS(1141), - [anon_sym_DASH] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(1139), - [anon_sym_STAR] = ACTIONS(1141), - [anon_sym_AMP] = ACTIONS(1141), - [anon_sym_SEMI] = ACTIONS(1141), - [anon_sym___extension__] = ACTIONS(1139), - [anon_sym_typedef] = ACTIONS(1139), - [anon_sym_extern] = ACTIONS(1139), - [anon_sym___attribute__] = ACTIONS(1139), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1141), - [anon_sym___declspec] = ACTIONS(1139), - [anon_sym___cdecl] = ACTIONS(1139), - [anon_sym___clrcall] = ACTIONS(1139), - [anon_sym___stdcall] = ACTIONS(1139), - [anon_sym___fastcall] = ACTIONS(1139), - [anon_sym___thiscall] = ACTIONS(1139), - [anon_sym___vectorcall] = ACTIONS(1139), - [anon_sym_LBRACE] = ACTIONS(1141), - [anon_sym_RBRACE] = ACTIONS(1141), - [anon_sym_signed] = ACTIONS(1139), - [anon_sym_unsigned] = ACTIONS(1139), - [anon_sym_long] = ACTIONS(1139), - [anon_sym_short] = ACTIONS(1139), - [anon_sym_static] = ACTIONS(1139), - [anon_sym_auto] = ACTIONS(1139), - [anon_sym_register] = ACTIONS(1139), - [anon_sym_inline] = ACTIONS(1139), - [anon_sym___inline] = ACTIONS(1139), - [anon_sym___inline__] = ACTIONS(1139), - [anon_sym___forceinline] = ACTIONS(1139), - [anon_sym_thread_local] = ACTIONS(1139), - [anon_sym___thread] = ACTIONS(1139), - [anon_sym_const] = ACTIONS(1139), - [anon_sym_constexpr] = ACTIONS(1139), - [anon_sym_volatile] = ACTIONS(1139), - [anon_sym_restrict] = ACTIONS(1139), - [anon_sym___restrict__] = ACTIONS(1139), - [anon_sym__Atomic] = ACTIONS(1139), - [anon_sym__Noreturn] = ACTIONS(1139), - [anon_sym_noreturn] = ACTIONS(1139), - [anon_sym_alignas] = ACTIONS(1139), - [anon_sym__Alignas] = ACTIONS(1139), - [sym_primitive_type] = ACTIONS(1139), - [anon_sym_enum] = ACTIONS(1139), - [anon_sym_struct] = ACTIONS(1139), - [anon_sym_union] = ACTIONS(1139), - [anon_sym_if] = ACTIONS(1139), - [anon_sym_else] = ACTIONS(1139), - [anon_sym_switch] = ACTIONS(1139), - [anon_sym_case] = ACTIONS(1139), - [anon_sym_default] = ACTIONS(1139), - [anon_sym_while] = ACTIONS(1139), - [anon_sym_do] = ACTIONS(1139), - [anon_sym_for] = ACTIONS(1139), - [anon_sym_return] = ACTIONS(1139), - [anon_sym_break] = ACTIONS(1139), - [anon_sym_continue] = ACTIONS(1139), - [anon_sym_goto] = ACTIONS(1139), - [anon_sym___try] = ACTIONS(1139), - [anon_sym___leave] = ACTIONS(1139), - [anon_sym_DASH_DASH] = ACTIONS(1141), - [anon_sym_PLUS_PLUS] = ACTIONS(1141), - [anon_sym_sizeof] = ACTIONS(1139), - [anon_sym___alignof__] = ACTIONS(1139), - [anon_sym___alignof] = ACTIONS(1139), - [anon_sym__alignof] = ACTIONS(1139), - [anon_sym_alignof] = ACTIONS(1139), - [anon_sym__Alignof] = ACTIONS(1139), - [anon_sym_offsetof] = ACTIONS(1139), - [anon_sym__Generic] = ACTIONS(1139), - [anon_sym_asm] = ACTIONS(1139), - [anon_sym___asm__] = ACTIONS(1139), - [sym_number_literal] = ACTIONS(1141), - [anon_sym_L_SQUOTE] = ACTIONS(1141), - [anon_sym_u_SQUOTE] = ACTIONS(1141), - [anon_sym_U_SQUOTE] = ACTIONS(1141), - [anon_sym_u8_SQUOTE] = ACTIONS(1141), - [anon_sym_SQUOTE] = ACTIONS(1141), - [anon_sym_L_DQUOTE] = ACTIONS(1141), - [anon_sym_u_DQUOTE] = ACTIONS(1141), - [anon_sym_U_DQUOTE] = ACTIONS(1141), - [anon_sym_u8_DQUOTE] = ACTIONS(1141), - [anon_sym_DQUOTE] = ACTIONS(1141), - [sym_true] = ACTIONS(1139), - [sym_false] = ACTIONS(1139), - [anon_sym_NULL] = ACTIONS(1139), - [anon_sym_nullptr] = ACTIONS(1139), + [213] = { + [sym_identifier] = ACTIONS(1147), + [aux_sym_preproc_include_token1] = ACTIONS(1147), + [aux_sym_preproc_def_token1] = ACTIONS(1147), + [aux_sym_preproc_if_token1] = ACTIONS(1147), + [aux_sym_preproc_if_token2] = ACTIONS(1147), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1147), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1147), + [sym_preproc_directive] = ACTIONS(1147), + [anon_sym_LPAREN2] = ACTIONS(1149), + [anon_sym_BANG] = ACTIONS(1149), + [anon_sym_TILDE] = ACTIONS(1149), + [anon_sym_DASH] = ACTIONS(1147), + [anon_sym_PLUS] = ACTIONS(1147), + [anon_sym_STAR] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(1149), + [anon_sym_SEMI] = ACTIONS(1149), + [anon_sym___extension__] = ACTIONS(1147), + [anon_sym_typedef] = ACTIONS(1147), + [anon_sym_extern] = ACTIONS(1147), + [anon_sym___attribute__] = ACTIONS(1147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1149), + [anon_sym___declspec] = ACTIONS(1147), + [anon_sym___cdecl] = ACTIONS(1147), + [anon_sym___clrcall] = ACTIONS(1147), + [anon_sym___stdcall] = ACTIONS(1147), + [anon_sym___fastcall] = ACTIONS(1147), + [anon_sym___thiscall] = ACTIONS(1147), + [anon_sym___vectorcall] = ACTIONS(1147), + [anon_sym_LBRACE] = ACTIONS(1149), + [anon_sym_signed] = ACTIONS(1147), + [anon_sym_unsigned] = ACTIONS(1147), + [anon_sym_long] = ACTIONS(1147), + [anon_sym_short] = ACTIONS(1147), + [anon_sym_static] = ACTIONS(1147), + [anon_sym_auto] = ACTIONS(1147), + [anon_sym_register] = ACTIONS(1147), + [anon_sym_inline] = ACTIONS(1147), + [anon_sym___inline] = ACTIONS(1147), + [anon_sym___inline__] = ACTIONS(1147), + [anon_sym___forceinline] = ACTIONS(1147), + [anon_sym_thread_local] = ACTIONS(1147), + [anon_sym___thread] = ACTIONS(1147), + [anon_sym_const] = ACTIONS(1147), + [anon_sym_constexpr] = ACTIONS(1147), + [anon_sym_volatile] = ACTIONS(1147), + [anon_sym_restrict] = ACTIONS(1147), + [anon_sym___restrict__] = ACTIONS(1147), + [anon_sym__Atomic] = ACTIONS(1147), + [anon_sym__Noreturn] = ACTIONS(1147), + [anon_sym_noreturn] = ACTIONS(1147), + [anon_sym_alignas] = ACTIONS(1147), + [anon_sym__Alignas] = ACTIONS(1147), + [sym_primitive_type] = ACTIONS(1147), + [anon_sym_enum] = ACTIONS(1147), + [anon_sym_struct] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1147), + [anon_sym_if] = ACTIONS(1147), + [anon_sym_else] = ACTIONS(1147), + [anon_sym_switch] = ACTIONS(1147), + [anon_sym_case] = ACTIONS(1147), + [anon_sym_default] = ACTIONS(1147), + [anon_sym_while] = ACTIONS(1147), + [anon_sym_do] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1147), + [anon_sym_return] = ACTIONS(1147), + [anon_sym_break] = ACTIONS(1147), + [anon_sym_continue] = ACTIONS(1147), + [anon_sym_goto] = ACTIONS(1147), + [anon_sym___try] = ACTIONS(1147), + [anon_sym___leave] = ACTIONS(1147), + [anon_sym_DASH_DASH] = ACTIONS(1149), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_sizeof] = ACTIONS(1147), + [anon_sym___alignof__] = ACTIONS(1147), + [anon_sym___alignof] = ACTIONS(1147), + [anon_sym__alignof] = ACTIONS(1147), + [anon_sym_alignof] = ACTIONS(1147), + [anon_sym__Alignof] = ACTIONS(1147), + [anon_sym_offsetof] = ACTIONS(1147), + [anon_sym__Generic] = ACTIONS(1147), + [anon_sym_asm] = ACTIONS(1147), + [anon_sym___asm__] = ACTIONS(1147), + [sym_number_literal] = ACTIONS(1149), + [anon_sym_L_SQUOTE] = ACTIONS(1149), + [anon_sym_u_SQUOTE] = ACTIONS(1149), + [anon_sym_U_SQUOTE] = ACTIONS(1149), + [anon_sym_u8_SQUOTE] = ACTIONS(1149), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_L_DQUOTE] = ACTIONS(1149), + [anon_sym_u_DQUOTE] = ACTIONS(1149), + [anon_sym_U_DQUOTE] = ACTIONS(1149), + [anon_sym_u8_DQUOTE] = ACTIONS(1149), + [anon_sym_DQUOTE] = ACTIONS(1149), + [sym_true] = ACTIONS(1147), + [sym_false] = ACTIONS(1147), + [anon_sym_NULL] = ACTIONS(1147), + [anon_sym_nullptr] = ACTIONS(1147), [sym_comment] = ACTIONS(3), }, - [256] = { - [sym_identifier] = ACTIONS(1123), - [aux_sym_preproc_include_token1] = ACTIONS(1123), - [aux_sym_preproc_def_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token2] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), - [sym_preproc_directive] = ACTIONS(1123), - [anon_sym_LPAREN2] = ACTIONS(1125), - [anon_sym_BANG] = ACTIONS(1125), - [anon_sym_TILDE] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym___extension__] = ACTIONS(1123), - [anon_sym_typedef] = ACTIONS(1123), - [anon_sym_extern] = ACTIONS(1123), - [anon_sym___attribute__] = ACTIONS(1123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), - [anon_sym___declspec] = ACTIONS(1123), - [anon_sym___cdecl] = ACTIONS(1123), - [anon_sym___clrcall] = ACTIONS(1123), - [anon_sym___stdcall] = ACTIONS(1123), - [anon_sym___fastcall] = ACTIONS(1123), - [anon_sym___thiscall] = ACTIONS(1123), - [anon_sym___vectorcall] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_signed] = ACTIONS(1123), - [anon_sym_unsigned] = ACTIONS(1123), - [anon_sym_long] = ACTIONS(1123), - [anon_sym_short] = ACTIONS(1123), - [anon_sym_static] = ACTIONS(1123), - [anon_sym_auto] = ACTIONS(1123), - [anon_sym_register] = ACTIONS(1123), - [anon_sym_inline] = ACTIONS(1123), - [anon_sym___inline] = ACTIONS(1123), - [anon_sym___inline__] = ACTIONS(1123), - [anon_sym___forceinline] = ACTIONS(1123), - [anon_sym_thread_local] = ACTIONS(1123), - [anon_sym___thread] = ACTIONS(1123), - [anon_sym_const] = ACTIONS(1123), - [anon_sym_constexpr] = ACTIONS(1123), - [anon_sym_volatile] = ACTIONS(1123), - [anon_sym_restrict] = ACTIONS(1123), - [anon_sym___restrict__] = ACTIONS(1123), - [anon_sym__Atomic] = ACTIONS(1123), - [anon_sym__Noreturn] = ACTIONS(1123), - [anon_sym_noreturn] = ACTIONS(1123), - [anon_sym_alignas] = ACTIONS(1123), - [anon_sym__Alignas] = ACTIONS(1123), - [sym_primitive_type] = ACTIONS(1123), - [anon_sym_enum] = ACTIONS(1123), - [anon_sym_struct] = ACTIONS(1123), - [anon_sym_union] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1123), - [anon_sym_else] = ACTIONS(1123), - [anon_sym_switch] = ACTIONS(1123), - [anon_sym_case] = ACTIONS(1123), - [anon_sym_default] = ACTIONS(1123), - [anon_sym_while] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(1123), - [anon_sym_for] = ACTIONS(1123), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_break] = ACTIONS(1123), - [anon_sym_continue] = ACTIONS(1123), - [anon_sym_goto] = ACTIONS(1123), - [anon_sym___try] = ACTIONS(1123), - [anon_sym___leave] = ACTIONS(1123), - [anon_sym_DASH_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1125), - [anon_sym_sizeof] = ACTIONS(1123), - [anon_sym___alignof__] = ACTIONS(1123), - [anon_sym___alignof] = ACTIONS(1123), - [anon_sym__alignof] = ACTIONS(1123), - [anon_sym_alignof] = ACTIONS(1123), - [anon_sym__Alignof] = ACTIONS(1123), - [anon_sym_offsetof] = ACTIONS(1123), - [anon_sym__Generic] = ACTIONS(1123), - [anon_sym_asm] = ACTIONS(1123), - [anon_sym___asm__] = ACTIONS(1123), - [sym_number_literal] = ACTIONS(1125), - [anon_sym_L_SQUOTE] = ACTIONS(1125), - [anon_sym_u_SQUOTE] = ACTIONS(1125), - [anon_sym_U_SQUOTE] = ACTIONS(1125), - [anon_sym_u8_SQUOTE] = ACTIONS(1125), - [anon_sym_SQUOTE] = ACTIONS(1125), - [anon_sym_L_DQUOTE] = ACTIONS(1125), - [anon_sym_u_DQUOTE] = ACTIONS(1125), - [anon_sym_U_DQUOTE] = ACTIONS(1125), - [anon_sym_u8_DQUOTE] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(1125), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [anon_sym_NULL] = ACTIONS(1123), - [anon_sym_nullptr] = ACTIONS(1123), + [214] = { + [sym_identifier] = ACTIONS(1163), + [aux_sym_preproc_include_token1] = ACTIONS(1163), + [aux_sym_preproc_def_token1] = ACTIONS(1163), + [aux_sym_preproc_if_token1] = ACTIONS(1163), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1163), + [sym_preproc_directive] = ACTIONS(1163), + [anon_sym_LPAREN2] = ACTIONS(1165), + [anon_sym_BANG] = ACTIONS(1165), + [anon_sym_TILDE] = ACTIONS(1165), + [anon_sym_DASH] = ACTIONS(1163), + [anon_sym_PLUS] = ACTIONS(1163), + [anon_sym_STAR] = ACTIONS(1165), + [anon_sym_AMP] = ACTIONS(1165), + [anon_sym_SEMI] = ACTIONS(1165), + [anon_sym___extension__] = ACTIONS(1163), + [anon_sym_typedef] = ACTIONS(1163), + [anon_sym_extern] = ACTIONS(1163), + [anon_sym___attribute__] = ACTIONS(1163), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1165), + [anon_sym___declspec] = ACTIONS(1163), + [anon_sym___cdecl] = ACTIONS(1163), + [anon_sym___clrcall] = ACTIONS(1163), + [anon_sym___stdcall] = ACTIONS(1163), + [anon_sym___fastcall] = ACTIONS(1163), + [anon_sym___thiscall] = ACTIONS(1163), + [anon_sym___vectorcall] = ACTIONS(1163), + [anon_sym_LBRACE] = ACTIONS(1165), + [anon_sym_RBRACE] = ACTIONS(1165), + [anon_sym_signed] = ACTIONS(1163), + [anon_sym_unsigned] = ACTIONS(1163), + [anon_sym_long] = ACTIONS(1163), + [anon_sym_short] = ACTIONS(1163), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_auto] = ACTIONS(1163), + [anon_sym_register] = ACTIONS(1163), + [anon_sym_inline] = ACTIONS(1163), + [anon_sym___inline] = ACTIONS(1163), + [anon_sym___inline__] = ACTIONS(1163), + [anon_sym___forceinline] = ACTIONS(1163), + [anon_sym_thread_local] = ACTIONS(1163), + [anon_sym___thread] = ACTIONS(1163), + [anon_sym_const] = ACTIONS(1163), + [anon_sym_constexpr] = ACTIONS(1163), + [anon_sym_volatile] = ACTIONS(1163), + [anon_sym_restrict] = ACTIONS(1163), + [anon_sym___restrict__] = ACTIONS(1163), + [anon_sym__Atomic] = ACTIONS(1163), + [anon_sym__Noreturn] = ACTIONS(1163), + [anon_sym_noreturn] = ACTIONS(1163), + [anon_sym_alignas] = ACTIONS(1163), + [anon_sym__Alignas] = ACTIONS(1163), + [sym_primitive_type] = ACTIONS(1163), + [anon_sym_enum] = ACTIONS(1163), + [anon_sym_struct] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1163), + [anon_sym_if] = ACTIONS(1163), + [anon_sym_else] = ACTIONS(1163), + [anon_sym_switch] = ACTIONS(1163), + [anon_sym_case] = ACTIONS(1163), + [anon_sym_default] = ACTIONS(1163), + [anon_sym_while] = ACTIONS(1163), + [anon_sym_do] = ACTIONS(1163), + [anon_sym_for] = ACTIONS(1163), + [anon_sym_return] = ACTIONS(1163), + [anon_sym_break] = ACTIONS(1163), + [anon_sym_continue] = ACTIONS(1163), + [anon_sym_goto] = ACTIONS(1163), + [anon_sym___try] = ACTIONS(1163), + [anon_sym___leave] = ACTIONS(1163), + [anon_sym_DASH_DASH] = ACTIONS(1165), + [anon_sym_PLUS_PLUS] = ACTIONS(1165), + [anon_sym_sizeof] = ACTIONS(1163), + [anon_sym___alignof__] = ACTIONS(1163), + [anon_sym___alignof] = ACTIONS(1163), + [anon_sym__alignof] = ACTIONS(1163), + [anon_sym_alignof] = ACTIONS(1163), + [anon_sym__Alignof] = ACTIONS(1163), + [anon_sym_offsetof] = ACTIONS(1163), + [anon_sym__Generic] = ACTIONS(1163), + [anon_sym_asm] = ACTIONS(1163), + [anon_sym___asm__] = ACTIONS(1163), + [sym_number_literal] = ACTIONS(1165), + [anon_sym_L_SQUOTE] = ACTIONS(1165), + [anon_sym_u_SQUOTE] = ACTIONS(1165), + [anon_sym_U_SQUOTE] = ACTIONS(1165), + [anon_sym_u8_SQUOTE] = ACTIONS(1165), + [anon_sym_SQUOTE] = ACTIONS(1165), + [anon_sym_L_DQUOTE] = ACTIONS(1165), + [anon_sym_u_DQUOTE] = ACTIONS(1165), + [anon_sym_U_DQUOTE] = ACTIONS(1165), + [anon_sym_u8_DQUOTE] = ACTIONS(1165), + [anon_sym_DQUOTE] = ACTIONS(1165), + [sym_true] = ACTIONS(1163), + [sym_false] = ACTIONS(1163), + [anon_sym_NULL] = ACTIONS(1163), + [anon_sym_nullptr] = ACTIONS(1163), [sym_comment] = ACTIONS(3), }, - [257] = { - [sym_identifier] = ACTIONS(1123), - [aux_sym_preproc_include_token1] = ACTIONS(1123), - [aux_sym_preproc_def_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token2] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), - [sym_preproc_directive] = ACTIONS(1123), - [anon_sym_LPAREN2] = ACTIONS(1125), - [anon_sym_BANG] = ACTIONS(1125), - [anon_sym_TILDE] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym___extension__] = ACTIONS(1123), - [anon_sym_typedef] = ACTIONS(1123), - [anon_sym_extern] = ACTIONS(1123), - [anon_sym___attribute__] = ACTIONS(1123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), - [anon_sym___declspec] = ACTIONS(1123), - [anon_sym___cdecl] = ACTIONS(1123), - [anon_sym___clrcall] = ACTIONS(1123), - [anon_sym___stdcall] = ACTIONS(1123), - [anon_sym___fastcall] = ACTIONS(1123), - [anon_sym___thiscall] = ACTIONS(1123), - [anon_sym___vectorcall] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_signed] = ACTIONS(1123), - [anon_sym_unsigned] = ACTIONS(1123), - [anon_sym_long] = ACTIONS(1123), - [anon_sym_short] = ACTIONS(1123), - [anon_sym_static] = ACTIONS(1123), - [anon_sym_auto] = ACTIONS(1123), - [anon_sym_register] = ACTIONS(1123), - [anon_sym_inline] = ACTIONS(1123), - [anon_sym___inline] = ACTIONS(1123), - [anon_sym___inline__] = ACTIONS(1123), - [anon_sym___forceinline] = ACTIONS(1123), - [anon_sym_thread_local] = ACTIONS(1123), - [anon_sym___thread] = ACTIONS(1123), - [anon_sym_const] = ACTIONS(1123), - [anon_sym_constexpr] = ACTIONS(1123), - [anon_sym_volatile] = ACTIONS(1123), - [anon_sym_restrict] = ACTIONS(1123), - [anon_sym___restrict__] = ACTIONS(1123), - [anon_sym__Atomic] = ACTIONS(1123), - [anon_sym__Noreturn] = ACTIONS(1123), - [anon_sym_noreturn] = ACTIONS(1123), - [anon_sym_alignas] = ACTIONS(1123), - [anon_sym__Alignas] = ACTIONS(1123), - [sym_primitive_type] = ACTIONS(1123), - [anon_sym_enum] = ACTIONS(1123), - [anon_sym_struct] = ACTIONS(1123), - [anon_sym_union] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1123), - [anon_sym_else] = ACTIONS(1123), - [anon_sym_switch] = ACTIONS(1123), - [anon_sym_case] = ACTIONS(1123), - [anon_sym_default] = ACTIONS(1123), - [anon_sym_while] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(1123), - [anon_sym_for] = ACTIONS(1123), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_break] = ACTIONS(1123), - [anon_sym_continue] = ACTIONS(1123), - [anon_sym_goto] = ACTIONS(1123), - [anon_sym___try] = ACTIONS(1123), - [anon_sym___leave] = ACTIONS(1123), - [anon_sym_DASH_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1125), - [anon_sym_sizeof] = ACTIONS(1123), - [anon_sym___alignof__] = ACTIONS(1123), - [anon_sym___alignof] = ACTIONS(1123), - [anon_sym__alignof] = ACTIONS(1123), - [anon_sym_alignof] = ACTIONS(1123), - [anon_sym__Alignof] = ACTIONS(1123), - [anon_sym_offsetof] = ACTIONS(1123), - [anon_sym__Generic] = ACTIONS(1123), - [anon_sym_asm] = ACTIONS(1123), - [anon_sym___asm__] = ACTIONS(1123), - [sym_number_literal] = ACTIONS(1125), - [anon_sym_L_SQUOTE] = ACTIONS(1125), - [anon_sym_u_SQUOTE] = ACTIONS(1125), - [anon_sym_U_SQUOTE] = ACTIONS(1125), - [anon_sym_u8_SQUOTE] = ACTIONS(1125), - [anon_sym_SQUOTE] = ACTIONS(1125), - [anon_sym_L_DQUOTE] = ACTIONS(1125), - [anon_sym_u_DQUOTE] = ACTIONS(1125), - [anon_sym_U_DQUOTE] = ACTIONS(1125), - [anon_sym_u8_DQUOTE] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(1125), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [anon_sym_NULL] = ACTIONS(1123), - [anon_sym_nullptr] = ACTIONS(1123), - [sym_comment] = ACTIONS(3), - }, - [258] = { - [sym_identifier] = ACTIONS(1215), - [aux_sym_preproc_include_token1] = ACTIONS(1215), - [aux_sym_preproc_def_token1] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1215), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1215), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1215), - [sym_preproc_directive] = ACTIONS(1215), - [anon_sym_LPAREN2] = ACTIONS(1217), - [anon_sym_BANG] = ACTIONS(1217), - [anon_sym_TILDE] = ACTIONS(1217), - [anon_sym_DASH] = ACTIONS(1215), - [anon_sym_PLUS] = ACTIONS(1215), - [anon_sym_STAR] = ACTIONS(1217), - [anon_sym_AMP] = ACTIONS(1217), - [anon_sym_SEMI] = ACTIONS(1217), - [anon_sym___extension__] = ACTIONS(1215), - [anon_sym_typedef] = ACTIONS(1215), - [anon_sym_extern] = ACTIONS(1215), - [anon_sym___attribute__] = ACTIONS(1215), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1217), - [anon_sym___declspec] = ACTIONS(1215), - [anon_sym___cdecl] = ACTIONS(1215), - [anon_sym___clrcall] = ACTIONS(1215), - [anon_sym___stdcall] = ACTIONS(1215), - [anon_sym___fastcall] = ACTIONS(1215), - [anon_sym___thiscall] = ACTIONS(1215), - [anon_sym___vectorcall] = ACTIONS(1215), - [anon_sym_LBRACE] = ACTIONS(1217), - [anon_sym_RBRACE] = ACTIONS(1217), - [anon_sym_signed] = ACTIONS(1215), - [anon_sym_unsigned] = ACTIONS(1215), - [anon_sym_long] = ACTIONS(1215), - [anon_sym_short] = ACTIONS(1215), - [anon_sym_static] = ACTIONS(1215), - [anon_sym_auto] = ACTIONS(1215), - [anon_sym_register] = ACTIONS(1215), - [anon_sym_inline] = ACTIONS(1215), - [anon_sym___inline] = ACTIONS(1215), - [anon_sym___inline__] = ACTIONS(1215), - [anon_sym___forceinline] = ACTIONS(1215), - [anon_sym_thread_local] = ACTIONS(1215), - [anon_sym___thread] = ACTIONS(1215), - [anon_sym_const] = ACTIONS(1215), - [anon_sym_constexpr] = ACTIONS(1215), - [anon_sym_volatile] = ACTIONS(1215), - [anon_sym_restrict] = ACTIONS(1215), - [anon_sym___restrict__] = ACTIONS(1215), - [anon_sym__Atomic] = ACTIONS(1215), - [anon_sym__Noreturn] = ACTIONS(1215), - [anon_sym_noreturn] = ACTIONS(1215), - [anon_sym_alignas] = ACTIONS(1215), - [anon_sym__Alignas] = 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(1215), - [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___try] = ACTIONS(1215), - [anon_sym___leave] = ACTIONS(1215), - [anon_sym_DASH_DASH] = ACTIONS(1217), - [anon_sym_PLUS_PLUS] = ACTIONS(1217), - [anon_sym_sizeof] = ACTIONS(1215), - [anon_sym___alignof__] = ACTIONS(1215), - [anon_sym___alignof] = ACTIONS(1215), - [anon_sym__alignof] = ACTIONS(1215), - [anon_sym_alignof] = ACTIONS(1215), - [anon_sym__Alignof] = ACTIONS(1215), - [anon_sym_offsetof] = ACTIONS(1215), - [anon_sym__Generic] = ACTIONS(1215), - [anon_sym_asm] = ACTIONS(1215), - [anon_sym___asm__] = ACTIONS(1215), - [sym_number_literal] = ACTIONS(1217), - [anon_sym_L_SQUOTE] = ACTIONS(1217), - [anon_sym_u_SQUOTE] = ACTIONS(1217), - [anon_sym_U_SQUOTE] = ACTIONS(1217), - [anon_sym_u8_SQUOTE] = ACTIONS(1217), - [anon_sym_SQUOTE] = ACTIONS(1217), - [anon_sym_L_DQUOTE] = ACTIONS(1217), - [anon_sym_u_DQUOTE] = ACTIONS(1217), - [anon_sym_U_DQUOTE] = ACTIONS(1217), - [anon_sym_u8_DQUOTE] = ACTIONS(1217), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_true] = ACTIONS(1215), - [sym_false] = ACTIONS(1215), - [anon_sym_NULL] = ACTIONS(1215), - [anon_sym_nullptr] = ACTIONS(1215), + [215] = { + [ts_builtin_sym_end] = ACTIONS(1197), + [sym_identifier] = ACTIONS(1195), + [aux_sym_preproc_include_token1] = ACTIONS(1195), + [aux_sym_preproc_def_token1] = ACTIONS(1195), + [aux_sym_preproc_if_token1] = ACTIONS(1195), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1195), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1195), + [sym_preproc_directive] = ACTIONS(1195), + [anon_sym_LPAREN2] = ACTIONS(1197), + [anon_sym_BANG] = ACTIONS(1197), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1197), + [anon_sym_SEMI] = ACTIONS(1197), + [anon_sym___extension__] = ACTIONS(1195), + [anon_sym_typedef] = ACTIONS(1195), + [anon_sym_extern] = ACTIONS(1195), + [anon_sym___attribute__] = ACTIONS(1195), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1197), + [anon_sym___declspec] = ACTIONS(1195), + [anon_sym___cdecl] = ACTIONS(1195), + [anon_sym___clrcall] = ACTIONS(1195), + [anon_sym___stdcall] = ACTIONS(1195), + [anon_sym___fastcall] = ACTIONS(1195), + [anon_sym___thiscall] = ACTIONS(1195), + [anon_sym___vectorcall] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_signed] = ACTIONS(1195), + [anon_sym_unsigned] = ACTIONS(1195), + [anon_sym_long] = ACTIONS(1195), + [anon_sym_short] = ACTIONS(1195), + [anon_sym_static] = ACTIONS(1195), + [anon_sym_auto] = ACTIONS(1195), + [anon_sym_register] = ACTIONS(1195), + [anon_sym_inline] = ACTIONS(1195), + [anon_sym___inline] = ACTIONS(1195), + [anon_sym___inline__] = ACTIONS(1195), + [anon_sym___forceinline] = ACTIONS(1195), + [anon_sym_thread_local] = ACTIONS(1195), + [anon_sym___thread] = ACTIONS(1195), + [anon_sym_const] = ACTIONS(1195), + [anon_sym_constexpr] = ACTIONS(1195), + [anon_sym_volatile] = ACTIONS(1195), + [anon_sym_restrict] = ACTIONS(1195), + [anon_sym___restrict__] = ACTIONS(1195), + [anon_sym__Atomic] = ACTIONS(1195), + [anon_sym__Noreturn] = ACTIONS(1195), + [anon_sym_noreturn] = ACTIONS(1195), + [anon_sym_alignas] = ACTIONS(1195), + [anon_sym__Alignas] = ACTIONS(1195), + [sym_primitive_type] = ACTIONS(1195), + [anon_sym_enum] = ACTIONS(1195), + [anon_sym_struct] = ACTIONS(1195), + [anon_sym_union] = ACTIONS(1195), + [anon_sym_if] = ACTIONS(1195), + [anon_sym_else] = ACTIONS(1195), + [anon_sym_switch] = ACTIONS(1195), + [anon_sym_case] = ACTIONS(1195), + [anon_sym_default] = ACTIONS(1195), + [anon_sym_while] = ACTIONS(1195), + [anon_sym_do] = ACTIONS(1195), + [anon_sym_for] = ACTIONS(1195), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1195), + [anon_sym_continue] = ACTIONS(1195), + [anon_sym_goto] = ACTIONS(1195), + [anon_sym___try] = ACTIONS(1195), + [anon_sym___leave] = ACTIONS(1195), + [anon_sym_DASH_DASH] = ACTIONS(1197), + [anon_sym_PLUS_PLUS] = ACTIONS(1197), + [anon_sym_sizeof] = ACTIONS(1195), + [anon_sym___alignof__] = ACTIONS(1195), + [anon_sym___alignof] = ACTIONS(1195), + [anon_sym__alignof] = ACTIONS(1195), + [anon_sym_alignof] = ACTIONS(1195), + [anon_sym__Alignof] = ACTIONS(1195), + [anon_sym_offsetof] = ACTIONS(1195), + [anon_sym__Generic] = ACTIONS(1195), + [anon_sym_asm] = ACTIONS(1195), + [anon_sym___asm__] = ACTIONS(1195), + [sym_number_literal] = ACTIONS(1197), + [anon_sym_L_SQUOTE] = ACTIONS(1197), + [anon_sym_u_SQUOTE] = ACTIONS(1197), + [anon_sym_U_SQUOTE] = ACTIONS(1197), + [anon_sym_u8_SQUOTE] = ACTIONS(1197), + [anon_sym_SQUOTE] = ACTIONS(1197), + [anon_sym_L_DQUOTE] = ACTIONS(1197), + [anon_sym_u_DQUOTE] = ACTIONS(1197), + [anon_sym_U_DQUOTE] = ACTIONS(1197), + [anon_sym_u8_DQUOTE] = ACTIONS(1197), + [anon_sym_DQUOTE] = ACTIONS(1197), + [sym_true] = ACTIONS(1195), + [sym_false] = ACTIONS(1195), + [anon_sym_NULL] = ACTIONS(1195), + [anon_sym_nullptr] = ACTIONS(1195), [sym_comment] = ACTIONS(3), }, - [259] = { - [sym_identifier] = ACTIONS(1123), - [aux_sym_preproc_include_token1] = ACTIONS(1123), - [aux_sym_preproc_def_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token2] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), - [sym_preproc_directive] = ACTIONS(1123), - [anon_sym_LPAREN2] = ACTIONS(1125), - [anon_sym_BANG] = ACTIONS(1125), - [anon_sym_TILDE] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym___extension__] = ACTIONS(1123), - [anon_sym_typedef] = ACTIONS(1123), - [anon_sym_extern] = ACTIONS(1123), - [anon_sym___attribute__] = ACTIONS(1123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), - [anon_sym___declspec] = ACTIONS(1123), - [anon_sym___cdecl] = ACTIONS(1123), - [anon_sym___clrcall] = ACTIONS(1123), - [anon_sym___stdcall] = ACTIONS(1123), - [anon_sym___fastcall] = ACTIONS(1123), - [anon_sym___thiscall] = ACTIONS(1123), - [anon_sym___vectorcall] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_signed] = ACTIONS(1123), - [anon_sym_unsigned] = ACTIONS(1123), - [anon_sym_long] = ACTIONS(1123), - [anon_sym_short] = ACTIONS(1123), - [anon_sym_static] = ACTIONS(1123), - [anon_sym_auto] = ACTIONS(1123), - [anon_sym_register] = ACTIONS(1123), - [anon_sym_inline] = ACTIONS(1123), - [anon_sym___inline] = ACTIONS(1123), - [anon_sym___inline__] = ACTIONS(1123), - [anon_sym___forceinline] = ACTIONS(1123), - [anon_sym_thread_local] = ACTIONS(1123), - [anon_sym___thread] = ACTIONS(1123), - [anon_sym_const] = ACTIONS(1123), - [anon_sym_constexpr] = ACTIONS(1123), - [anon_sym_volatile] = ACTIONS(1123), - [anon_sym_restrict] = ACTIONS(1123), - [anon_sym___restrict__] = ACTIONS(1123), - [anon_sym__Atomic] = ACTIONS(1123), - [anon_sym__Noreturn] = ACTIONS(1123), - [anon_sym_noreturn] = ACTIONS(1123), - [anon_sym_alignas] = ACTIONS(1123), - [anon_sym__Alignas] = ACTIONS(1123), - [sym_primitive_type] = ACTIONS(1123), - [anon_sym_enum] = ACTIONS(1123), - [anon_sym_struct] = ACTIONS(1123), - [anon_sym_union] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1123), - [anon_sym_else] = ACTIONS(1123), - [anon_sym_switch] = ACTIONS(1123), - [anon_sym_case] = ACTIONS(1123), - [anon_sym_default] = ACTIONS(1123), - [anon_sym_while] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(1123), - [anon_sym_for] = ACTIONS(1123), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_break] = ACTIONS(1123), - [anon_sym_continue] = ACTIONS(1123), - [anon_sym_goto] = ACTIONS(1123), - [anon_sym___try] = ACTIONS(1123), - [anon_sym___leave] = ACTIONS(1123), - [anon_sym_DASH_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1125), - [anon_sym_sizeof] = ACTIONS(1123), - [anon_sym___alignof__] = ACTIONS(1123), - [anon_sym___alignof] = ACTIONS(1123), - [anon_sym__alignof] = ACTIONS(1123), - [anon_sym_alignof] = ACTIONS(1123), - [anon_sym__Alignof] = ACTIONS(1123), - [anon_sym_offsetof] = ACTIONS(1123), - [anon_sym__Generic] = ACTIONS(1123), - [anon_sym_asm] = ACTIONS(1123), - [anon_sym___asm__] = ACTIONS(1123), - [sym_number_literal] = ACTIONS(1125), - [anon_sym_L_SQUOTE] = ACTIONS(1125), - [anon_sym_u_SQUOTE] = ACTIONS(1125), - [anon_sym_U_SQUOTE] = ACTIONS(1125), - [anon_sym_u8_SQUOTE] = ACTIONS(1125), - [anon_sym_SQUOTE] = ACTIONS(1125), - [anon_sym_L_DQUOTE] = ACTIONS(1125), - [anon_sym_u_DQUOTE] = ACTIONS(1125), - [anon_sym_U_DQUOTE] = ACTIONS(1125), - [anon_sym_u8_DQUOTE] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(1125), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [anon_sym_NULL] = ACTIONS(1123), - [anon_sym_nullptr] = ACTIONS(1123), + [216] = { + [sym_identifier] = ACTIONS(1183), + [aux_sym_preproc_include_token1] = ACTIONS(1183), + [aux_sym_preproc_def_token1] = ACTIONS(1183), + [aux_sym_preproc_if_token1] = ACTIONS(1183), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1183), + [sym_preproc_directive] = ACTIONS(1183), + [anon_sym_LPAREN2] = ACTIONS(1185), + [anon_sym_BANG] = ACTIONS(1185), + [anon_sym_TILDE] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1183), + [anon_sym_PLUS] = ACTIONS(1183), + [anon_sym_STAR] = ACTIONS(1185), + [anon_sym_AMP] = ACTIONS(1185), + [anon_sym_SEMI] = ACTIONS(1185), + [anon_sym___extension__] = ACTIONS(1183), + [anon_sym_typedef] = ACTIONS(1183), + [anon_sym_extern] = ACTIONS(1183), + [anon_sym___attribute__] = ACTIONS(1183), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1185), + [anon_sym___declspec] = ACTIONS(1183), + [anon_sym___cdecl] = ACTIONS(1183), + [anon_sym___clrcall] = ACTIONS(1183), + [anon_sym___stdcall] = ACTIONS(1183), + [anon_sym___fastcall] = ACTIONS(1183), + [anon_sym___thiscall] = ACTIONS(1183), + [anon_sym___vectorcall] = ACTIONS(1183), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_RBRACE] = ACTIONS(1185), + [anon_sym_signed] = ACTIONS(1183), + [anon_sym_unsigned] = ACTIONS(1183), + [anon_sym_long] = ACTIONS(1183), + [anon_sym_short] = ACTIONS(1183), + [anon_sym_static] = ACTIONS(1183), + [anon_sym_auto] = ACTIONS(1183), + [anon_sym_register] = ACTIONS(1183), + [anon_sym_inline] = ACTIONS(1183), + [anon_sym___inline] = ACTIONS(1183), + [anon_sym___inline__] = ACTIONS(1183), + [anon_sym___forceinline] = ACTIONS(1183), + [anon_sym_thread_local] = ACTIONS(1183), + [anon_sym___thread] = ACTIONS(1183), + [anon_sym_const] = ACTIONS(1183), + [anon_sym_constexpr] = ACTIONS(1183), + [anon_sym_volatile] = ACTIONS(1183), + [anon_sym_restrict] = ACTIONS(1183), + [anon_sym___restrict__] = ACTIONS(1183), + [anon_sym__Atomic] = ACTIONS(1183), + [anon_sym__Noreturn] = ACTIONS(1183), + [anon_sym_noreturn] = ACTIONS(1183), + [anon_sym_alignas] = ACTIONS(1183), + [anon_sym__Alignas] = ACTIONS(1183), + [sym_primitive_type] = ACTIONS(1183), + [anon_sym_enum] = ACTIONS(1183), + [anon_sym_struct] = ACTIONS(1183), + [anon_sym_union] = ACTIONS(1183), + [anon_sym_if] = ACTIONS(1183), + [anon_sym_else] = ACTIONS(1183), + [anon_sym_switch] = ACTIONS(1183), + [anon_sym_case] = ACTIONS(1183), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_while] = ACTIONS(1183), + [anon_sym_do] = ACTIONS(1183), + [anon_sym_for] = ACTIONS(1183), + [anon_sym_return] = ACTIONS(1183), + [anon_sym_break] = ACTIONS(1183), + [anon_sym_continue] = ACTIONS(1183), + [anon_sym_goto] = ACTIONS(1183), + [anon_sym___try] = ACTIONS(1183), + [anon_sym___leave] = ACTIONS(1183), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_sizeof] = ACTIONS(1183), + [anon_sym___alignof__] = ACTIONS(1183), + [anon_sym___alignof] = ACTIONS(1183), + [anon_sym__alignof] = ACTIONS(1183), + [anon_sym_alignof] = ACTIONS(1183), + [anon_sym__Alignof] = ACTIONS(1183), + [anon_sym_offsetof] = ACTIONS(1183), + [anon_sym__Generic] = ACTIONS(1183), + [anon_sym_asm] = ACTIONS(1183), + [anon_sym___asm__] = ACTIONS(1183), + [sym_number_literal] = ACTIONS(1185), + [anon_sym_L_SQUOTE] = ACTIONS(1185), + [anon_sym_u_SQUOTE] = ACTIONS(1185), + [anon_sym_U_SQUOTE] = ACTIONS(1185), + [anon_sym_u8_SQUOTE] = ACTIONS(1185), + [anon_sym_SQUOTE] = ACTIONS(1185), + [anon_sym_L_DQUOTE] = ACTIONS(1185), + [anon_sym_u_DQUOTE] = ACTIONS(1185), + [anon_sym_U_DQUOTE] = ACTIONS(1185), + [anon_sym_u8_DQUOTE] = ACTIONS(1185), + [anon_sym_DQUOTE] = ACTIONS(1185), + [sym_true] = ACTIONS(1183), + [sym_false] = ACTIONS(1183), + [anon_sym_NULL] = ACTIONS(1183), + [anon_sym_nullptr] = ACTIONS(1183), [sym_comment] = ACTIONS(3), }, - [260] = { - [sym_identifier] = ACTIONS(1123), - [aux_sym_preproc_include_token1] = ACTIONS(1123), - [aux_sym_preproc_def_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), - [sym_preproc_directive] = ACTIONS(1123), - [anon_sym_LPAREN2] = ACTIONS(1125), - [anon_sym_BANG] = ACTIONS(1125), - [anon_sym_TILDE] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym___extension__] = ACTIONS(1123), - [anon_sym_typedef] = ACTIONS(1123), - [anon_sym_extern] = ACTIONS(1123), - [anon_sym___attribute__] = ACTIONS(1123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), - [anon_sym___declspec] = ACTIONS(1123), - [anon_sym___cdecl] = ACTIONS(1123), - [anon_sym___clrcall] = ACTIONS(1123), - [anon_sym___stdcall] = ACTIONS(1123), - [anon_sym___fastcall] = ACTIONS(1123), - [anon_sym___thiscall] = ACTIONS(1123), - [anon_sym___vectorcall] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_RBRACE] = ACTIONS(1125), - [anon_sym_signed] = ACTIONS(1123), - [anon_sym_unsigned] = ACTIONS(1123), - [anon_sym_long] = ACTIONS(1123), - [anon_sym_short] = ACTIONS(1123), - [anon_sym_static] = ACTIONS(1123), - [anon_sym_auto] = ACTIONS(1123), - [anon_sym_register] = ACTIONS(1123), - [anon_sym_inline] = ACTIONS(1123), - [anon_sym___inline] = ACTIONS(1123), - [anon_sym___inline__] = ACTIONS(1123), - [anon_sym___forceinline] = ACTIONS(1123), - [anon_sym_thread_local] = ACTIONS(1123), - [anon_sym___thread] = ACTIONS(1123), - [anon_sym_const] = ACTIONS(1123), - [anon_sym_constexpr] = ACTIONS(1123), - [anon_sym_volatile] = ACTIONS(1123), - [anon_sym_restrict] = ACTIONS(1123), - [anon_sym___restrict__] = ACTIONS(1123), - [anon_sym__Atomic] = ACTIONS(1123), - [anon_sym__Noreturn] = ACTIONS(1123), - [anon_sym_noreturn] = ACTIONS(1123), - [anon_sym_alignas] = ACTIONS(1123), - [anon_sym__Alignas] = ACTIONS(1123), - [sym_primitive_type] = ACTIONS(1123), - [anon_sym_enum] = ACTIONS(1123), - [anon_sym_struct] = ACTIONS(1123), - [anon_sym_union] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1123), - [anon_sym_else] = ACTIONS(1123), - [anon_sym_switch] = ACTIONS(1123), - [anon_sym_case] = ACTIONS(1123), - [anon_sym_default] = ACTIONS(1123), - [anon_sym_while] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(1123), - [anon_sym_for] = ACTIONS(1123), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_break] = ACTIONS(1123), - [anon_sym_continue] = ACTIONS(1123), - [anon_sym_goto] = ACTIONS(1123), - [anon_sym___try] = ACTIONS(1123), - [anon_sym___leave] = ACTIONS(1123), - [anon_sym_DASH_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1125), - [anon_sym_sizeof] = ACTIONS(1123), - [anon_sym___alignof__] = ACTIONS(1123), - [anon_sym___alignof] = ACTIONS(1123), - [anon_sym__alignof] = ACTIONS(1123), - [anon_sym_alignof] = ACTIONS(1123), - [anon_sym__Alignof] = ACTIONS(1123), - [anon_sym_offsetof] = ACTIONS(1123), - [anon_sym__Generic] = ACTIONS(1123), - [anon_sym_asm] = ACTIONS(1123), - [anon_sym___asm__] = ACTIONS(1123), - [sym_number_literal] = ACTIONS(1125), - [anon_sym_L_SQUOTE] = ACTIONS(1125), - [anon_sym_u_SQUOTE] = ACTIONS(1125), - [anon_sym_U_SQUOTE] = ACTIONS(1125), - [anon_sym_u8_SQUOTE] = ACTIONS(1125), - [anon_sym_SQUOTE] = ACTIONS(1125), - [anon_sym_L_DQUOTE] = ACTIONS(1125), - [anon_sym_u_DQUOTE] = ACTIONS(1125), - [anon_sym_U_DQUOTE] = ACTIONS(1125), - [anon_sym_u8_DQUOTE] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(1125), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [anon_sym_NULL] = ACTIONS(1123), - [anon_sym_nullptr] = ACTIONS(1123), + [217] = { + [sym_identifier] = ACTIONS(1151), + [aux_sym_preproc_include_token1] = ACTIONS(1151), + [aux_sym_preproc_def_token1] = ACTIONS(1151), + [aux_sym_preproc_if_token1] = ACTIONS(1151), + [aux_sym_preproc_if_token2] = ACTIONS(1151), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1151), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1151), + [sym_preproc_directive] = ACTIONS(1151), + [anon_sym_LPAREN2] = ACTIONS(1153), + [anon_sym_BANG] = ACTIONS(1153), + [anon_sym_TILDE] = ACTIONS(1153), + [anon_sym_DASH] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1151), + [anon_sym_STAR] = ACTIONS(1153), + [anon_sym_AMP] = ACTIONS(1153), + [anon_sym_SEMI] = ACTIONS(1153), + [anon_sym___extension__] = ACTIONS(1151), + [anon_sym_typedef] = ACTIONS(1151), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym___attribute__] = ACTIONS(1151), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1153), + [anon_sym___declspec] = ACTIONS(1151), + [anon_sym___cdecl] = ACTIONS(1151), + [anon_sym___clrcall] = ACTIONS(1151), + [anon_sym___stdcall] = ACTIONS(1151), + [anon_sym___fastcall] = ACTIONS(1151), + [anon_sym___thiscall] = ACTIONS(1151), + [anon_sym___vectorcall] = ACTIONS(1151), + [anon_sym_LBRACE] = ACTIONS(1153), + [anon_sym_signed] = ACTIONS(1151), + [anon_sym_unsigned] = ACTIONS(1151), + [anon_sym_long] = ACTIONS(1151), + [anon_sym_short] = ACTIONS(1151), + [anon_sym_static] = ACTIONS(1151), + [anon_sym_auto] = ACTIONS(1151), + [anon_sym_register] = ACTIONS(1151), + [anon_sym_inline] = ACTIONS(1151), + [anon_sym___inline] = ACTIONS(1151), + [anon_sym___inline__] = ACTIONS(1151), + [anon_sym___forceinline] = ACTIONS(1151), + [anon_sym_thread_local] = ACTIONS(1151), + [anon_sym___thread] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_constexpr] = ACTIONS(1151), + [anon_sym_volatile] = ACTIONS(1151), + [anon_sym_restrict] = ACTIONS(1151), + [anon_sym___restrict__] = ACTIONS(1151), + [anon_sym__Atomic] = ACTIONS(1151), + [anon_sym__Noreturn] = ACTIONS(1151), + [anon_sym_noreturn] = ACTIONS(1151), + [anon_sym_alignas] = ACTIONS(1151), + [anon_sym__Alignas] = ACTIONS(1151), + [sym_primitive_type] = ACTIONS(1151), + [anon_sym_enum] = ACTIONS(1151), + [anon_sym_struct] = ACTIONS(1151), + [anon_sym_union] = ACTIONS(1151), + [anon_sym_if] = ACTIONS(1151), + [anon_sym_else] = ACTIONS(1151), + [anon_sym_switch] = ACTIONS(1151), + [anon_sym_case] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1151), + [anon_sym_while] = ACTIONS(1151), + [anon_sym_do] = ACTIONS(1151), + [anon_sym_for] = ACTIONS(1151), + [anon_sym_return] = ACTIONS(1151), + [anon_sym_break] = ACTIONS(1151), + [anon_sym_continue] = ACTIONS(1151), + [anon_sym_goto] = ACTIONS(1151), + [anon_sym___try] = ACTIONS(1151), + [anon_sym___leave] = ACTIONS(1151), + [anon_sym_DASH_DASH] = ACTIONS(1153), + [anon_sym_PLUS_PLUS] = ACTIONS(1153), + [anon_sym_sizeof] = ACTIONS(1151), + [anon_sym___alignof__] = ACTIONS(1151), + [anon_sym___alignof] = ACTIONS(1151), + [anon_sym__alignof] = ACTIONS(1151), + [anon_sym_alignof] = ACTIONS(1151), + [anon_sym__Alignof] = ACTIONS(1151), + [anon_sym_offsetof] = ACTIONS(1151), + [anon_sym__Generic] = ACTIONS(1151), + [anon_sym_asm] = ACTIONS(1151), + [anon_sym___asm__] = ACTIONS(1151), + [sym_number_literal] = ACTIONS(1153), + [anon_sym_L_SQUOTE] = ACTIONS(1153), + [anon_sym_u_SQUOTE] = ACTIONS(1153), + [anon_sym_U_SQUOTE] = ACTIONS(1153), + [anon_sym_u8_SQUOTE] = ACTIONS(1153), + [anon_sym_SQUOTE] = ACTIONS(1153), + [anon_sym_L_DQUOTE] = ACTIONS(1153), + [anon_sym_u_DQUOTE] = ACTIONS(1153), + [anon_sym_U_DQUOTE] = ACTIONS(1153), + [anon_sym_u8_DQUOTE] = ACTIONS(1153), + [anon_sym_DQUOTE] = ACTIONS(1153), + [sym_true] = ACTIONS(1151), + [sym_false] = ACTIONS(1151), + [anon_sym_NULL] = ACTIONS(1151), + [anon_sym_nullptr] = ACTIONS(1151), [sym_comment] = ACTIONS(3), }, - [261] = { - [sym_identifier] = ACTIONS(1239), - [aux_sym_preproc_include_token1] = ACTIONS(1239), - [aux_sym_preproc_def_token1] = ACTIONS(1239), - [aux_sym_preproc_if_token1] = ACTIONS(1239), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1239), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1239), - [sym_preproc_directive] = ACTIONS(1239), - [anon_sym_LPAREN2] = ACTIONS(1241), - [anon_sym_BANG] = ACTIONS(1241), - [anon_sym_TILDE] = ACTIONS(1241), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1241), - [anon_sym_SEMI] = ACTIONS(1241), - [anon_sym___extension__] = ACTIONS(1239), - [anon_sym_typedef] = ACTIONS(1239), - [anon_sym_extern] = ACTIONS(1239), - [anon_sym___attribute__] = ACTIONS(1239), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1241), - [anon_sym___declspec] = ACTIONS(1239), - [anon_sym___cdecl] = ACTIONS(1239), - [anon_sym___clrcall] = ACTIONS(1239), - [anon_sym___stdcall] = ACTIONS(1239), - [anon_sym___fastcall] = ACTIONS(1239), - [anon_sym___thiscall] = ACTIONS(1239), - [anon_sym___vectorcall] = ACTIONS(1239), - [anon_sym_LBRACE] = ACTIONS(1241), - [anon_sym_RBRACE] = ACTIONS(1241), - [anon_sym_signed] = ACTIONS(1239), - [anon_sym_unsigned] = ACTIONS(1239), - [anon_sym_long] = ACTIONS(1239), - [anon_sym_short] = ACTIONS(1239), - [anon_sym_static] = ACTIONS(1239), - [anon_sym_auto] = ACTIONS(1239), - [anon_sym_register] = ACTIONS(1239), - [anon_sym_inline] = ACTIONS(1239), - [anon_sym___inline] = ACTIONS(1239), - [anon_sym___inline__] = ACTIONS(1239), - [anon_sym___forceinline] = ACTIONS(1239), - [anon_sym_thread_local] = ACTIONS(1239), - [anon_sym___thread] = ACTIONS(1239), - [anon_sym_const] = ACTIONS(1239), - [anon_sym_constexpr] = ACTIONS(1239), - [anon_sym_volatile] = ACTIONS(1239), - [anon_sym_restrict] = ACTIONS(1239), - [anon_sym___restrict__] = ACTIONS(1239), - [anon_sym__Atomic] = ACTIONS(1239), - [anon_sym__Noreturn] = ACTIONS(1239), - [anon_sym_noreturn] = ACTIONS(1239), - [anon_sym_alignas] = ACTIONS(1239), - [anon_sym__Alignas] = 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___try] = ACTIONS(1239), - [anon_sym___leave] = ACTIONS(1239), - [anon_sym_DASH_DASH] = ACTIONS(1241), - [anon_sym_PLUS_PLUS] = ACTIONS(1241), - [anon_sym_sizeof] = ACTIONS(1239), - [anon_sym___alignof__] = ACTIONS(1239), - [anon_sym___alignof] = ACTIONS(1239), - [anon_sym__alignof] = ACTIONS(1239), - [anon_sym_alignof] = ACTIONS(1239), - [anon_sym__Alignof] = ACTIONS(1239), - [anon_sym_offsetof] = ACTIONS(1239), - [anon_sym__Generic] = ACTIONS(1239), - [anon_sym_asm] = ACTIONS(1239), - [anon_sym___asm__] = ACTIONS(1239), - [sym_number_literal] = ACTIONS(1241), - [anon_sym_L_SQUOTE] = ACTIONS(1241), - [anon_sym_u_SQUOTE] = ACTIONS(1241), - [anon_sym_U_SQUOTE] = ACTIONS(1241), - [anon_sym_u8_SQUOTE] = ACTIONS(1241), - [anon_sym_SQUOTE] = ACTIONS(1241), - [anon_sym_L_DQUOTE] = ACTIONS(1241), - [anon_sym_u_DQUOTE] = ACTIONS(1241), - [anon_sym_U_DQUOTE] = ACTIONS(1241), - [anon_sym_u8_DQUOTE] = ACTIONS(1241), - [anon_sym_DQUOTE] = ACTIONS(1241), - [sym_true] = ACTIONS(1239), - [sym_false] = ACTIONS(1239), - [anon_sym_NULL] = ACTIONS(1239), - [anon_sym_nullptr] = ACTIONS(1239), + [218] = { + [ts_builtin_sym_end] = ACTIONS(1225), + [sym_identifier] = ACTIONS(1223), + [aux_sym_preproc_include_token1] = ACTIONS(1223), + [aux_sym_preproc_def_token1] = ACTIONS(1223), + [aux_sym_preproc_if_token1] = ACTIONS(1223), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1223), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1223), + [sym_preproc_directive] = ACTIONS(1223), + [anon_sym_LPAREN2] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1225), + [anon_sym_TILDE] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1223), + [anon_sym_PLUS] = ACTIONS(1223), + [anon_sym_STAR] = ACTIONS(1225), + [anon_sym_AMP] = ACTIONS(1225), + [anon_sym_SEMI] = ACTIONS(1225), + [anon_sym___extension__] = ACTIONS(1223), + [anon_sym_typedef] = ACTIONS(1223), + [anon_sym_extern] = ACTIONS(1223), + [anon_sym___attribute__] = ACTIONS(1223), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1225), + [anon_sym___declspec] = ACTIONS(1223), + [anon_sym___cdecl] = ACTIONS(1223), + [anon_sym___clrcall] = ACTIONS(1223), + [anon_sym___stdcall] = ACTIONS(1223), + [anon_sym___fastcall] = ACTIONS(1223), + [anon_sym___thiscall] = ACTIONS(1223), + [anon_sym___vectorcall] = ACTIONS(1223), + [anon_sym_LBRACE] = ACTIONS(1225), + [anon_sym_signed] = ACTIONS(1223), + [anon_sym_unsigned] = ACTIONS(1223), + [anon_sym_long] = ACTIONS(1223), + [anon_sym_short] = ACTIONS(1223), + [anon_sym_static] = ACTIONS(1223), + [anon_sym_auto] = ACTIONS(1223), + [anon_sym_register] = ACTIONS(1223), + [anon_sym_inline] = ACTIONS(1223), + [anon_sym___inline] = ACTIONS(1223), + [anon_sym___inline__] = ACTIONS(1223), + [anon_sym___forceinline] = ACTIONS(1223), + [anon_sym_thread_local] = ACTIONS(1223), + [anon_sym___thread] = ACTIONS(1223), + [anon_sym_const] = ACTIONS(1223), + [anon_sym_constexpr] = ACTIONS(1223), + [anon_sym_volatile] = ACTIONS(1223), + [anon_sym_restrict] = ACTIONS(1223), + [anon_sym___restrict__] = ACTIONS(1223), + [anon_sym__Atomic] = ACTIONS(1223), + [anon_sym__Noreturn] = ACTIONS(1223), + [anon_sym_noreturn] = ACTIONS(1223), + [anon_sym_alignas] = ACTIONS(1223), + [anon_sym__Alignas] = ACTIONS(1223), + [sym_primitive_type] = ACTIONS(1223), + [anon_sym_enum] = ACTIONS(1223), + [anon_sym_struct] = ACTIONS(1223), + [anon_sym_union] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1223), + [anon_sym_else] = ACTIONS(1223), + [anon_sym_switch] = ACTIONS(1223), + [anon_sym_case] = ACTIONS(1223), + [anon_sym_default] = ACTIONS(1223), + [anon_sym_while] = ACTIONS(1223), + [anon_sym_do] = ACTIONS(1223), + [anon_sym_for] = ACTIONS(1223), + [anon_sym_return] = ACTIONS(1223), + [anon_sym_break] = ACTIONS(1223), + [anon_sym_continue] = ACTIONS(1223), + [anon_sym_goto] = ACTIONS(1223), + [anon_sym___try] = ACTIONS(1223), + [anon_sym___leave] = ACTIONS(1223), + [anon_sym_DASH_DASH] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1225), + [anon_sym_sizeof] = ACTIONS(1223), + [anon_sym___alignof__] = ACTIONS(1223), + [anon_sym___alignof] = ACTIONS(1223), + [anon_sym__alignof] = ACTIONS(1223), + [anon_sym_alignof] = ACTIONS(1223), + [anon_sym__Alignof] = ACTIONS(1223), + [anon_sym_offsetof] = ACTIONS(1223), + [anon_sym__Generic] = ACTIONS(1223), + [anon_sym_asm] = ACTIONS(1223), + [anon_sym___asm__] = ACTIONS(1223), + [sym_number_literal] = ACTIONS(1225), + [anon_sym_L_SQUOTE] = ACTIONS(1225), + [anon_sym_u_SQUOTE] = ACTIONS(1225), + [anon_sym_U_SQUOTE] = ACTIONS(1225), + [anon_sym_u8_SQUOTE] = ACTIONS(1225), + [anon_sym_SQUOTE] = ACTIONS(1225), + [anon_sym_L_DQUOTE] = ACTIONS(1225), + [anon_sym_u_DQUOTE] = ACTIONS(1225), + [anon_sym_U_DQUOTE] = ACTIONS(1225), + [anon_sym_u8_DQUOTE] = ACTIONS(1225), + [anon_sym_DQUOTE] = ACTIONS(1225), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [anon_sym_NULL] = ACTIONS(1223), + [anon_sym_nullptr] = ACTIONS(1223), [sym_comment] = ACTIONS(3), }, - [262] = { - [sym_identifier] = ACTIONS(1171), - [aux_sym_preproc_include_token1] = ACTIONS(1171), - [aux_sym_preproc_def_token1] = ACTIONS(1171), - [aux_sym_preproc_if_token1] = ACTIONS(1171), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1171), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1171), - [sym_preproc_directive] = ACTIONS(1171), - [anon_sym_LPAREN2] = ACTIONS(1173), - [anon_sym_BANG] = ACTIONS(1173), - [anon_sym_TILDE] = ACTIONS(1173), - [anon_sym_DASH] = ACTIONS(1171), - [anon_sym_PLUS] = ACTIONS(1171), - [anon_sym_STAR] = ACTIONS(1173), - [anon_sym_AMP] = ACTIONS(1173), - [anon_sym_SEMI] = ACTIONS(1173), - [anon_sym___extension__] = ACTIONS(1171), - [anon_sym_typedef] = ACTIONS(1171), - [anon_sym_extern] = ACTIONS(1171), - [anon_sym___attribute__] = ACTIONS(1171), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1173), - [anon_sym___declspec] = ACTIONS(1171), - [anon_sym___cdecl] = ACTIONS(1171), - [anon_sym___clrcall] = ACTIONS(1171), - [anon_sym___stdcall] = ACTIONS(1171), - [anon_sym___fastcall] = ACTIONS(1171), - [anon_sym___thiscall] = ACTIONS(1171), - [anon_sym___vectorcall] = ACTIONS(1171), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_RBRACE] = ACTIONS(1173), - [anon_sym_signed] = ACTIONS(1171), - [anon_sym_unsigned] = ACTIONS(1171), - [anon_sym_long] = ACTIONS(1171), - [anon_sym_short] = ACTIONS(1171), - [anon_sym_static] = ACTIONS(1171), - [anon_sym_auto] = ACTIONS(1171), - [anon_sym_register] = ACTIONS(1171), - [anon_sym_inline] = ACTIONS(1171), - [anon_sym___inline] = ACTIONS(1171), - [anon_sym___inline__] = ACTIONS(1171), - [anon_sym___forceinline] = ACTIONS(1171), - [anon_sym_thread_local] = ACTIONS(1171), - [anon_sym___thread] = ACTIONS(1171), - [anon_sym_const] = ACTIONS(1171), - [anon_sym_constexpr] = ACTIONS(1171), - [anon_sym_volatile] = ACTIONS(1171), - [anon_sym_restrict] = ACTIONS(1171), - [anon_sym___restrict__] = ACTIONS(1171), - [anon_sym__Atomic] = ACTIONS(1171), - [anon_sym__Noreturn] = ACTIONS(1171), - [anon_sym_noreturn] = ACTIONS(1171), - [anon_sym_alignas] = ACTIONS(1171), - [anon_sym__Alignas] = ACTIONS(1171), - [sym_primitive_type] = ACTIONS(1171), - [anon_sym_enum] = ACTIONS(1171), - [anon_sym_struct] = ACTIONS(1171), - [anon_sym_union] = ACTIONS(1171), - [anon_sym_if] = ACTIONS(1171), - [anon_sym_else] = ACTIONS(1171), - [anon_sym_switch] = ACTIONS(1171), - [anon_sym_case] = ACTIONS(1171), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_while] = ACTIONS(1171), - [anon_sym_do] = ACTIONS(1171), - [anon_sym_for] = ACTIONS(1171), - [anon_sym_return] = ACTIONS(1171), - [anon_sym_break] = ACTIONS(1171), - [anon_sym_continue] = ACTIONS(1171), - [anon_sym_goto] = ACTIONS(1171), - [anon_sym___try] = ACTIONS(1171), - [anon_sym___leave] = ACTIONS(1171), - [anon_sym_DASH_DASH] = ACTIONS(1173), - [anon_sym_PLUS_PLUS] = ACTIONS(1173), - [anon_sym_sizeof] = ACTIONS(1171), - [anon_sym___alignof__] = ACTIONS(1171), - [anon_sym___alignof] = ACTIONS(1171), - [anon_sym__alignof] = ACTIONS(1171), - [anon_sym_alignof] = ACTIONS(1171), - [anon_sym__Alignof] = ACTIONS(1171), - [anon_sym_offsetof] = ACTIONS(1171), - [anon_sym__Generic] = ACTIONS(1171), - [anon_sym_asm] = ACTIONS(1171), - [anon_sym___asm__] = ACTIONS(1171), - [sym_number_literal] = ACTIONS(1173), - [anon_sym_L_SQUOTE] = ACTIONS(1173), - [anon_sym_u_SQUOTE] = ACTIONS(1173), - [anon_sym_U_SQUOTE] = ACTIONS(1173), - [anon_sym_u8_SQUOTE] = ACTIONS(1173), - [anon_sym_SQUOTE] = ACTIONS(1173), - [anon_sym_L_DQUOTE] = ACTIONS(1173), - [anon_sym_u_DQUOTE] = ACTIONS(1173), - [anon_sym_U_DQUOTE] = ACTIONS(1173), - [anon_sym_u8_DQUOTE] = ACTIONS(1173), - [anon_sym_DQUOTE] = ACTIONS(1173), - [sym_true] = ACTIONS(1171), - [sym_false] = ACTIONS(1171), - [anon_sym_NULL] = ACTIONS(1171), - [anon_sym_nullptr] = ACTIONS(1171), + [219] = { + [sym_identifier] = ACTIONS(1151), + [aux_sym_preproc_include_token1] = ACTIONS(1151), + [aux_sym_preproc_def_token1] = ACTIONS(1151), + [aux_sym_preproc_if_token1] = ACTIONS(1151), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1151), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1151), + [sym_preproc_directive] = ACTIONS(1151), + [anon_sym_LPAREN2] = ACTIONS(1153), + [anon_sym_BANG] = ACTIONS(1153), + [anon_sym_TILDE] = ACTIONS(1153), + [anon_sym_DASH] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1151), + [anon_sym_STAR] = ACTIONS(1153), + [anon_sym_AMP] = ACTIONS(1153), + [anon_sym_SEMI] = ACTIONS(1153), + [anon_sym___extension__] = ACTIONS(1151), + [anon_sym_typedef] = ACTIONS(1151), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym___attribute__] = ACTIONS(1151), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1153), + [anon_sym___declspec] = ACTIONS(1151), + [anon_sym___cdecl] = ACTIONS(1151), + [anon_sym___clrcall] = ACTIONS(1151), + [anon_sym___stdcall] = ACTIONS(1151), + [anon_sym___fastcall] = ACTIONS(1151), + [anon_sym___thiscall] = ACTIONS(1151), + [anon_sym___vectorcall] = ACTIONS(1151), + [anon_sym_LBRACE] = ACTIONS(1153), + [anon_sym_RBRACE] = ACTIONS(1153), + [anon_sym_signed] = ACTIONS(1151), + [anon_sym_unsigned] = ACTIONS(1151), + [anon_sym_long] = ACTIONS(1151), + [anon_sym_short] = ACTIONS(1151), + [anon_sym_static] = ACTIONS(1151), + [anon_sym_auto] = ACTIONS(1151), + [anon_sym_register] = ACTIONS(1151), + [anon_sym_inline] = ACTIONS(1151), + [anon_sym___inline] = ACTIONS(1151), + [anon_sym___inline__] = ACTIONS(1151), + [anon_sym___forceinline] = ACTIONS(1151), + [anon_sym_thread_local] = ACTIONS(1151), + [anon_sym___thread] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_constexpr] = ACTIONS(1151), + [anon_sym_volatile] = ACTIONS(1151), + [anon_sym_restrict] = ACTIONS(1151), + [anon_sym___restrict__] = ACTIONS(1151), + [anon_sym__Atomic] = ACTIONS(1151), + [anon_sym__Noreturn] = ACTIONS(1151), + [anon_sym_noreturn] = ACTIONS(1151), + [anon_sym_alignas] = ACTIONS(1151), + [anon_sym__Alignas] = ACTIONS(1151), + [sym_primitive_type] = ACTIONS(1151), + [anon_sym_enum] = ACTIONS(1151), + [anon_sym_struct] = ACTIONS(1151), + [anon_sym_union] = ACTIONS(1151), + [anon_sym_if] = ACTIONS(1151), + [anon_sym_else] = ACTIONS(1151), + [anon_sym_switch] = ACTIONS(1151), + [anon_sym_case] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1151), + [anon_sym_while] = ACTIONS(1151), + [anon_sym_do] = ACTIONS(1151), + [anon_sym_for] = ACTIONS(1151), + [anon_sym_return] = ACTIONS(1151), + [anon_sym_break] = ACTIONS(1151), + [anon_sym_continue] = ACTIONS(1151), + [anon_sym_goto] = ACTIONS(1151), + [anon_sym___try] = ACTIONS(1151), + [anon_sym___leave] = ACTIONS(1151), + [anon_sym_DASH_DASH] = ACTIONS(1153), + [anon_sym_PLUS_PLUS] = ACTIONS(1153), + [anon_sym_sizeof] = ACTIONS(1151), + [anon_sym___alignof__] = ACTIONS(1151), + [anon_sym___alignof] = ACTIONS(1151), + [anon_sym__alignof] = ACTIONS(1151), + [anon_sym_alignof] = ACTIONS(1151), + [anon_sym__Alignof] = ACTIONS(1151), + [anon_sym_offsetof] = ACTIONS(1151), + [anon_sym__Generic] = ACTIONS(1151), + [anon_sym_asm] = ACTIONS(1151), + [anon_sym___asm__] = ACTIONS(1151), + [sym_number_literal] = ACTIONS(1153), + [anon_sym_L_SQUOTE] = ACTIONS(1153), + [anon_sym_u_SQUOTE] = ACTIONS(1153), + [anon_sym_U_SQUOTE] = ACTIONS(1153), + [anon_sym_u8_SQUOTE] = ACTIONS(1153), + [anon_sym_SQUOTE] = ACTIONS(1153), + [anon_sym_L_DQUOTE] = ACTIONS(1153), + [anon_sym_u_DQUOTE] = ACTIONS(1153), + [anon_sym_U_DQUOTE] = ACTIONS(1153), + [anon_sym_u8_DQUOTE] = ACTIONS(1153), + [anon_sym_DQUOTE] = ACTIONS(1153), + [sym_true] = ACTIONS(1151), + [sym_false] = ACTIONS(1151), + [anon_sym_NULL] = ACTIONS(1151), + [anon_sym_nullptr] = ACTIONS(1151), [sym_comment] = ACTIONS(3), }, - [263] = { - [sym_identifier] = ACTIONS(1243), - [aux_sym_preproc_include_token1] = ACTIONS(1243), - [aux_sym_preproc_def_token1] = ACTIONS(1243), - [aux_sym_preproc_if_token1] = ACTIONS(1243), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1243), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1243), - [sym_preproc_directive] = ACTIONS(1243), - [anon_sym_LPAREN2] = ACTIONS(1245), - [anon_sym_BANG] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1243), - [anon_sym_PLUS] = ACTIONS(1243), - [anon_sym_STAR] = ACTIONS(1245), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_SEMI] = ACTIONS(1245), - [anon_sym___extension__] = ACTIONS(1243), - [anon_sym_typedef] = ACTIONS(1243), - [anon_sym_extern] = ACTIONS(1243), - [anon_sym___attribute__] = ACTIONS(1243), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1245), - [anon_sym___declspec] = ACTIONS(1243), - [anon_sym___cdecl] = ACTIONS(1243), - [anon_sym___clrcall] = ACTIONS(1243), - [anon_sym___stdcall] = ACTIONS(1243), - [anon_sym___fastcall] = ACTIONS(1243), - [anon_sym___thiscall] = ACTIONS(1243), - [anon_sym___vectorcall] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_RBRACE] = ACTIONS(1245), - [anon_sym_signed] = ACTIONS(1243), - [anon_sym_unsigned] = ACTIONS(1243), - [anon_sym_long] = ACTIONS(1243), - [anon_sym_short] = ACTIONS(1243), - [anon_sym_static] = ACTIONS(1243), - [anon_sym_auto] = ACTIONS(1243), - [anon_sym_register] = ACTIONS(1243), - [anon_sym_inline] = ACTIONS(1243), - [anon_sym___inline] = ACTIONS(1243), - [anon_sym___inline__] = ACTIONS(1243), - [anon_sym___forceinline] = ACTIONS(1243), - [anon_sym_thread_local] = ACTIONS(1243), - [anon_sym___thread] = ACTIONS(1243), - [anon_sym_const] = ACTIONS(1243), - [anon_sym_constexpr] = ACTIONS(1243), - [anon_sym_volatile] = ACTIONS(1243), - [anon_sym_restrict] = ACTIONS(1243), - [anon_sym___restrict__] = ACTIONS(1243), - [anon_sym__Atomic] = ACTIONS(1243), - [anon_sym__Noreturn] = ACTIONS(1243), - [anon_sym_noreturn] = ACTIONS(1243), - [anon_sym_alignas] = ACTIONS(1243), - [anon_sym__Alignas] = ACTIONS(1243), - [sym_primitive_type] = ACTIONS(1243), - [anon_sym_enum] = ACTIONS(1243), - [anon_sym_struct] = ACTIONS(1243), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1243), - [anon_sym_else] = ACTIONS(1243), - [anon_sym_switch] = ACTIONS(1243), - [anon_sym_case] = ACTIONS(1243), - [anon_sym_default] = ACTIONS(1243), - [anon_sym_while] = ACTIONS(1243), - [anon_sym_do] = ACTIONS(1243), - [anon_sym_for] = ACTIONS(1243), - [anon_sym_return] = ACTIONS(1243), - [anon_sym_break] = ACTIONS(1243), - [anon_sym_continue] = ACTIONS(1243), - [anon_sym_goto] = ACTIONS(1243), - [anon_sym___try] = ACTIONS(1243), - [anon_sym___leave] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1245), - [anon_sym_sizeof] = ACTIONS(1243), - [anon_sym___alignof__] = ACTIONS(1243), - [anon_sym___alignof] = ACTIONS(1243), - [anon_sym__alignof] = ACTIONS(1243), - [anon_sym_alignof] = ACTIONS(1243), - [anon_sym__Alignof] = ACTIONS(1243), - [anon_sym_offsetof] = ACTIONS(1243), - [anon_sym__Generic] = ACTIONS(1243), - [anon_sym_asm] = ACTIONS(1243), - [anon_sym___asm__] = ACTIONS(1243), - [sym_number_literal] = ACTIONS(1245), - [anon_sym_L_SQUOTE] = ACTIONS(1245), - [anon_sym_u_SQUOTE] = ACTIONS(1245), - [anon_sym_U_SQUOTE] = ACTIONS(1245), - [anon_sym_u8_SQUOTE] = ACTIONS(1245), - [anon_sym_SQUOTE] = ACTIONS(1245), - [anon_sym_L_DQUOTE] = ACTIONS(1245), - [anon_sym_u_DQUOTE] = ACTIONS(1245), - [anon_sym_U_DQUOTE] = ACTIONS(1245), - [anon_sym_u8_DQUOTE] = ACTIONS(1245), - [anon_sym_DQUOTE] = ACTIONS(1245), - [sym_true] = ACTIONS(1243), - [sym_false] = ACTIONS(1243), - [anon_sym_NULL] = ACTIONS(1243), - [anon_sym_nullptr] = ACTIONS(1243), - [sym_comment] = ACTIONS(3), - }, - [264] = { - [sym_identifier] = ACTIONS(1135), - [aux_sym_preproc_include_token1] = ACTIONS(1135), - [aux_sym_preproc_def_token1] = ACTIONS(1135), - [aux_sym_preproc_if_token1] = ACTIONS(1135), - [aux_sym_preproc_if_token2] = ACTIONS(1135), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1135), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1135), - [sym_preproc_directive] = ACTIONS(1135), - [anon_sym_LPAREN2] = ACTIONS(1137), - [anon_sym_BANG] = ACTIONS(1137), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_PLUS] = ACTIONS(1135), - [anon_sym_STAR] = ACTIONS(1137), - [anon_sym_AMP] = ACTIONS(1137), - [anon_sym_SEMI] = ACTIONS(1137), - [anon_sym___extension__] = ACTIONS(1135), - [anon_sym_typedef] = ACTIONS(1135), - [anon_sym_extern] = ACTIONS(1135), - [anon_sym___attribute__] = ACTIONS(1135), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1137), - [anon_sym___declspec] = ACTIONS(1135), - [anon_sym___cdecl] = ACTIONS(1135), - [anon_sym___clrcall] = ACTIONS(1135), - [anon_sym___stdcall] = ACTIONS(1135), - [anon_sym___fastcall] = ACTIONS(1135), - [anon_sym___thiscall] = ACTIONS(1135), - [anon_sym___vectorcall] = ACTIONS(1135), - [anon_sym_LBRACE] = ACTIONS(1137), - [anon_sym_signed] = ACTIONS(1135), - [anon_sym_unsigned] = ACTIONS(1135), - [anon_sym_long] = ACTIONS(1135), - [anon_sym_short] = ACTIONS(1135), - [anon_sym_static] = ACTIONS(1135), - [anon_sym_auto] = ACTIONS(1135), - [anon_sym_register] = ACTIONS(1135), - [anon_sym_inline] = ACTIONS(1135), - [anon_sym___inline] = ACTIONS(1135), - [anon_sym___inline__] = ACTIONS(1135), - [anon_sym___forceinline] = ACTIONS(1135), - [anon_sym_thread_local] = ACTIONS(1135), - [anon_sym___thread] = ACTIONS(1135), - [anon_sym_const] = ACTIONS(1135), - [anon_sym_constexpr] = ACTIONS(1135), - [anon_sym_volatile] = ACTIONS(1135), - [anon_sym_restrict] = ACTIONS(1135), - [anon_sym___restrict__] = ACTIONS(1135), - [anon_sym__Atomic] = ACTIONS(1135), - [anon_sym__Noreturn] = ACTIONS(1135), - [anon_sym_noreturn] = ACTIONS(1135), - [anon_sym_alignas] = ACTIONS(1135), - [anon_sym__Alignas] = ACTIONS(1135), - [sym_primitive_type] = ACTIONS(1135), - [anon_sym_enum] = ACTIONS(1135), - [anon_sym_struct] = ACTIONS(1135), - [anon_sym_union] = ACTIONS(1135), - [anon_sym_if] = ACTIONS(1135), - [anon_sym_else] = ACTIONS(1135), - [anon_sym_switch] = ACTIONS(1135), - [anon_sym_case] = ACTIONS(1135), - [anon_sym_default] = ACTIONS(1135), - [anon_sym_while] = ACTIONS(1135), - [anon_sym_do] = ACTIONS(1135), - [anon_sym_for] = ACTIONS(1135), - [anon_sym_return] = ACTIONS(1135), - [anon_sym_break] = ACTIONS(1135), - [anon_sym_continue] = ACTIONS(1135), - [anon_sym_goto] = ACTIONS(1135), - [anon_sym___try] = ACTIONS(1135), - [anon_sym___leave] = ACTIONS(1135), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_sizeof] = ACTIONS(1135), - [anon_sym___alignof__] = ACTIONS(1135), - [anon_sym___alignof] = ACTIONS(1135), - [anon_sym__alignof] = ACTIONS(1135), - [anon_sym_alignof] = ACTIONS(1135), - [anon_sym__Alignof] = ACTIONS(1135), - [anon_sym_offsetof] = ACTIONS(1135), - [anon_sym__Generic] = ACTIONS(1135), - [anon_sym_asm] = ACTIONS(1135), - [anon_sym___asm__] = ACTIONS(1135), - [sym_number_literal] = ACTIONS(1137), - [anon_sym_L_SQUOTE] = ACTIONS(1137), - [anon_sym_u_SQUOTE] = ACTIONS(1137), - [anon_sym_U_SQUOTE] = ACTIONS(1137), - [anon_sym_u8_SQUOTE] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1137), - [anon_sym_L_DQUOTE] = ACTIONS(1137), - [anon_sym_u_DQUOTE] = ACTIONS(1137), - [anon_sym_U_DQUOTE] = ACTIONS(1137), - [anon_sym_u8_DQUOTE] = ACTIONS(1137), - [anon_sym_DQUOTE] = ACTIONS(1137), - [sym_true] = ACTIONS(1135), - [sym_false] = ACTIONS(1135), - [anon_sym_NULL] = ACTIONS(1135), - [anon_sym_nullptr] = ACTIONS(1135), + [220] = { + [sym_identifier] = ACTIONS(1155), + [aux_sym_preproc_include_token1] = ACTIONS(1155), + [aux_sym_preproc_def_token1] = ACTIONS(1155), + [aux_sym_preproc_if_token1] = ACTIONS(1155), + [aux_sym_preproc_if_token2] = ACTIONS(1155), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1155), + [sym_preproc_directive] = ACTIONS(1155), + [anon_sym_LPAREN2] = ACTIONS(1157), + [anon_sym_BANG] = ACTIONS(1157), + [anon_sym_TILDE] = ACTIONS(1157), + [anon_sym_DASH] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(1155), + [anon_sym_STAR] = ACTIONS(1157), + [anon_sym_AMP] = ACTIONS(1157), + [anon_sym_SEMI] = ACTIONS(1157), + [anon_sym___extension__] = ACTIONS(1155), + [anon_sym_typedef] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1155), + [anon_sym___attribute__] = ACTIONS(1155), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1157), + [anon_sym___declspec] = ACTIONS(1155), + [anon_sym___cdecl] = ACTIONS(1155), + [anon_sym___clrcall] = ACTIONS(1155), + [anon_sym___stdcall] = ACTIONS(1155), + [anon_sym___fastcall] = ACTIONS(1155), + [anon_sym___thiscall] = ACTIONS(1155), + [anon_sym___vectorcall] = ACTIONS(1155), + [anon_sym_LBRACE] = ACTIONS(1157), + [anon_sym_signed] = ACTIONS(1155), + [anon_sym_unsigned] = ACTIONS(1155), + [anon_sym_long] = ACTIONS(1155), + [anon_sym_short] = ACTIONS(1155), + [anon_sym_static] = ACTIONS(1155), + [anon_sym_auto] = ACTIONS(1155), + [anon_sym_register] = ACTIONS(1155), + [anon_sym_inline] = ACTIONS(1155), + [anon_sym___inline] = ACTIONS(1155), + [anon_sym___inline__] = ACTIONS(1155), + [anon_sym___forceinline] = ACTIONS(1155), + [anon_sym_thread_local] = ACTIONS(1155), + [anon_sym___thread] = ACTIONS(1155), + [anon_sym_const] = ACTIONS(1155), + [anon_sym_constexpr] = ACTIONS(1155), + [anon_sym_volatile] = ACTIONS(1155), + [anon_sym_restrict] = ACTIONS(1155), + [anon_sym___restrict__] = ACTIONS(1155), + [anon_sym__Atomic] = ACTIONS(1155), + [anon_sym__Noreturn] = ACTIONS(1155), + [anon_sym_noreturn] = ACTIONS(1155), + [anon_sym_alignas] = ACTIONS(1155), + [anon_sym__Alignas] = ACTIONS(1155), + [sym_primitive_type] = ACTIONS(1155), + [anon_sym_enum] = ACTIONS(1155), + [anon_sym_struct] = ACTIONS(1155), + [anon_sym_union] = ACTIONS(1155), + [anon_sym_if] = ACTIONS(1155), + [anon_sym_else] = ACTIONS(1155), + [anon_sym_switch] = ACTIONS(1155), + [anon_sym_case] = ACTIONS(1155), + [anon_sym_default] = ACTIONS(1155), + [anon_sym_while] = ACTIONS(1155), + [anon_sym_do] = ACTIONS(1155), + [anon_sym_for] = ACTIONS(1155), + [anon_sym_return] = ACTIONS(1155), + [anon_sym_break] = ACTIONS(1155), + [anon_sym_continue] = ACTIONS(1155), + [anon_sym_goto] = ACTIONS(1155), + [anon_sym___try] = ACTIONS(1155), + [anon_sym___leave] = ACTIONS(1155), + [anon_sym_DASH_DASH] = ACTIONS(1157), + [anon_sym_PLUS_PLUS] = ACTIONS(1157), + [anon_sym_sizeof] = ACTIONS(1155), + [anon_sym___alignof__] = ACTIONS(1155), + [anon_sym___alignof] = ACTIONS(1155), + [anon_sym__alignof] = ACTIONS(1155), + [anon_sym_alignof] = ACTIONS(1155), + [anon_sym__Alignof] = ACTIONS(1155), + [anon_sym_offsetof] = ACTIONS(1155), + [anon_sym__Generic] = ACTIONS(1155), + [anon_sym_asm] = ACTIONS(1155), + [anon_sym___asm__] = ACTIONS(1155), + [sym_number_literal] = ACTIONS(1157), + [anon_sym_L_SQUOTE] = ACTIONS(1157), + [anon_sym_u_SQUOTE] = ACTIONS(1157), + [anon_sym_U_SQUOTE] = ACTIONS(1157), + [anon_sym_u8_SQUOTE] = ACTIONS(1157), + [anon_sym_SQUOTE] = ACTIONS(1157), + [anon_sym_L_DQUOTE] = ACTIONS(1157), + [anon_sym_u_DQUOTE] = ACTIONS(1157), + [anon_sym_U_DQUOTE] = ACTIONS(1157), + [anon_sym_u8_DQUOTE] = ACTIONS(1157), + [anon_sym_DQUOTE] = ACTIONS(1157), + [sym_true] = ACTIONS(1155), + [sym_false] = ACTIONS(1155), + [anon_sym_NULL] = ACTIONS(1155), + [anon_sym_nullptr] = ACTIONS(1155), [sym_comment] = ACTIONS(3), }, - [265] = { - [ts_builtin_sym_end] = ACTIONS(1245), - [sym_identifier] = ACTIONS(1243), - [aux_sym_preproc_include_token1] = ACTIONS(1243), - [aux_sym_preproc_def_token1] = ACTIONS(1243), - [aux_sym_preproc_if_token1] = ACTIONS(1243), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1243), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1243), - [sym_preproc_directive] = ACTIONS(1243), - [anon_sym_LPAREN2] = ACTIONS(1245), - [anon_sym_BANG] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1243), - [anon_sym_PLUS] = ACTIONS(1243), - [anon_sym_STAR] = ACTIONS(1245), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_SEMI] = ACTIONS(1245), - [anon_sym___extension__] = ACTIONS(1243), - [anon_sym_typedef] = ACTIONS(1243), - [anon_sym_extern] = ACTIONS(1243), - [anon_sym___attribute__] = ACTIONS(1243), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1245), - [anon_sym___declspec] = ACTIONS(1243), - [anon_sym___cdecl] = ACTIONS(1243), - [anon_sym___clrcall] = ACTIONS(1243), - [anon_sym___stdcall] = ACTIONS(1243), - [anon_sym___fastcall] = ACTIONS(1243), - [anon_sym___thiscall] = ACTIONS(1243), - [anon_sym___vectorcall] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_signed] = ACTIONS(1243), - [anon_sym_unsigned] = ACTIONS(1243), - [anon_sym_long] = ACTIONS(1243), - [anon_sym_short] = ACTIONS(1243), - [anon_sym_static] = ACTIONS(1243), - [anon_sym_auto] = ACTIONS(1243), - [anon_sym_register] = ACTIONS(1243), - [anon_sym_inline] = ACTIONS(1243), - [anon_sym___inline] = ACTIONS(1243), - [anon_sym___inline__] = ACTIONS(1243), - [anon_sym___forceinline] = ACTIONS(1243), - [anon_sym_thread_local] = ACTIONS(1243), - [anon_sym___thread] = ACTIONS(1243), - [anon_sym_const] = ACTIONS(1243), - [anon_sym_constexpr] = ACTIONS(1243), - [anon_sym_volatile] = ACTIONS(1243), - [anon_sym_restrict] = ACTIONS(1243), - [anon_sym___restrict__] = ACTIONS(1243), - [anon_sym__Atomic] = ACTIONS(1243), - [anon_sym__Noreturn] = ACTIONS(1243), - [anon_sym_noreturn] = ACTIONS(1243), - [anon_sym_alignas] = ACTIONS(1243), - [anon_sym__Alignas] = ACTIONS(1243), - [sym_primitive_type] = ACTIONS(1243), - [anon_sym_enum] = ACTIONS(1243), - [anon_sym_struct] = ACTIONS(1243), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1243), - [anon_sym_else] = ACTIONS(1243), - [anon_sym_switch] = ACTIONS(1243), - [anon_sym_case] = ACTIONS(1243), - [anon_sym_default] = ACTIONS(1243), - [anon_sym_while] = ACTIONS(1243), - [anon_sym_do] = ACTIONS(1243), - [anon_sym_for] = ACTIONS(1243), - [anon_sym_return] = ACTIONS(1243), - [anon_sym_break] = ACTIONS(1243), - [anon_sym_continue] = ACTIONS(1243), - [anon_sym_goto] = ACTIONS(1243), - [anon_sym___try] = ACTIONS(1243), - [anon_sym___leave] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1245), - [anon_sym_sizeof] = ACTIONS(1243), - [anon_sym___alignof__] = ACTIONS(1243), - [anon_sym___alignof] = ACTIONS(1243), - [anon_sym__alignof] = ACTIONS(1243), - [anon_sym_alignof] = ACTIONS(1243), - [anon_sym__Alignof] = ACTIONS(1243), - [anon_sym_offsetof] = ACTIONS(1243), - [anon_sym__Generic] = ACTIONS(1243), - [anon_sym_asm] = ACTIONS(1243), - [anon_sym___asm__] = ACTIONS(1243), - [sym_number_literal] = ACTIONS(1245), - [anon_sym_L_SQUOTE] = ACTIONS(1245), - [anon_sym_u_SQUOTE] = ACTIONS(1245), - [anon_sym_U_SQUOTE] = ACTIONS(1245), - [anon_sym_u8_SQUOTE] = ACTIONS(1245), - [anon_sym_SQUOTE] = ACTIONS(1245), - [anon_sym_L_DQUOTE] = ACTIONS(1245), - [anon_sym_u_DQUOTE] = ACTIONS(1245), - [anon_sym_U_DQUOTE] = ACTIONS(1245), - [anon_sym_u8_DQUOTE] = ACTIONS(1245), - [anon_sym_DQUOTE] = ACTIONS(1245), - [sym_true] = ACTIONS(1243), - [sym_false] = ACTIONS(1243), - [anon_sym_NULL] = ACTIONS(1243), - [anon_sym_nullptr] = ACTIONS(1243), + [221] = { + [sym_identifier] = ACTIONS(1231), + [aux_sym_preproc_include_token1] = ACTIONS(1231), + [aux_sym_preproc_def_token1] = ACTIONS(1231), + [aux_sym_preproc_if_token1] = ACTIONS(1231), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1231), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1231), + [sym_preproc_directive] = ACTIONS(1231), + [anon_sym_LPAREN2] = ACTIONS(1233), + [anon_sym_BANG] = ACTIONS(1233), + [anon_sym_TILDE] = ACTIONS(1233), + [anon_sym_DASH] = ACTIONS(1231), + [anon_sym_PLUS] = ACTIONS(1231), + [anon_sym_STAR] = ACTIONS(1233), + [anon_sym_AMP] = ACTIONS(1233), + [anon_sym_SEMI] = ACTIONS(1233), + [anon_sym___extension__] = ACTIONS(1231), + [anon_sym_typedef] = ACTIONS(1231), + [anon_sym_extern] = ACTIONS(1231), + [anon_sym___attribute__] = ACTIONS(1231), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1233), + [anon_sym___declspec] = ACTIONS(1231), + [anon_sym___cdecl] = ACTIONS(1231), + [anon_sym___clrcall] = ACTIONS(1231), + [anon_sym___stdcall] = ACTIONS(1231), + [anon_sym___fastcall] = ACTIONS(1231), + [anon_sym___thiscall] = ACTIONS(1231), + [anon_sym___vectorcall] = ACTIONS(1231), + [anon_sym_LBRACE] = ACTIONS(1233), + [anon_sym_RBRACE] = ACTIONS(1233), + [anon_sym_signed] = ACTIONS(1231), + [anon_sym_unsigned] = ACTIONS(1231), + [anon_sym_long] = ACTIONS(1231), + [anon_sym_short] = ACTIONS(1231), + [anon_sym_static] = ACTIONS(1231), + [anon_sym_auto] = ACTIONS(1231), + [anon_sym_register] = ACTIONS(1231), + [anon_sym_inline] = ACTIONS(1231), + [anon_sym___inline] = ACTIONS(1231), + [anon_sym___inline__] = ACTIONS(1231), + [anon_sym___forceinline] = ACTIONS(1231), + [anon_sym_thread_local] = ACTIONS(1231), + [anon_sym___thread] = ACTIONS(1231), + [anon_sym_const] = ACTIONS(1231), + [anon_sym_constexpr] = ACTIONS(1231), + [anon_sym_volatile] = ACTIONS(1231), + [anon_sym_restrict] = ACTIONS(1231), + [anon_sym___restrict__] = ACTIONS(1231), + [anon_sym__Atomic] = ACTIONS(1231), + [anon_sym__Noreturn] = ACTIONS(1231), + [anon_sym_noreturn] = ACTIONS(1231), + [anon_sym_alignas] = ACTIONS(1231), + [anon_sym__Alignas] = ACTIONS(1231), + [sym_primitive_type] = ACTIONS(1231), + [anon_sym_enum] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1231), + [anon_sym_union] = ACTIONS(1231), + [anon_sym_if] = ACTIONS(1231), + [anon_sym_else] = ACTIONS(1231), + [anon_sym_switch] = ACTIONS(1231), + [anon_sym_case] = ACTIONS(1231), + [anon_sym_default] = ACTIONS(1231), + [anon_sym_while] = ACTIONS(1231), + [anon_sym_do] = ACTIONS(1231), + [anon_sym_for] = ACTIONS(1231), + [anon_sym_return] = ACTIONS(1231), + [anon_sym_break] = ACTIONS(1231), + [anon_sym_continue] = ACTIONS(1231), + [anon_sym_goto] = ACTIONS(1231), + [anon_sym___try] = ACTIONS(1231), + [anon_sym___leave] = ACTIONS(1231), + [anon_sym_DASH_DASH] = ACTIONS(1233), + [anon_sym_PLUS_PLUS] = ACTIONS(1233), + [anon_sym_sizeof] = ACTIONS(1231), + [anon_sym___alignof__] = ACTIONS(1231), + [anon_sym___alignof] = ACTIONS(1231), + [anon_sym__alignof] = ACTIONS(1231), + [anon_sym_alignof] = ACTIONS(1231), + [anon_sym__Alignof] = ACTIONS(1231), + [anon_sym_offsetof] = ACTIONS(1231), + [anon_sym__Generic] = ACTIONS(1231), + [anon_sym_asm] = ACTIONS(1231), + [anon_sym___asm__] = ACTIONS(1231), + [sym_number_literal] = ACTIONS(1233), + [anon_sym_L_SQUOTE] = ACTIONS(1233), + [anon_sym_u_SQUOTE] = ACTIONS(1233), + [anon_sym_U_SQUOTE] = ACTIONS(1233), + [anon_sym_u8_SQUOTE] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(1233), + [anon_sym_L_DQUOTE] = ACTIONS(1233), + [anon_sym_u_DQUOTE] = ACTIONS(1233), + [anon_sym_U_DQUOTE] = ACTIONS(1233), + [anon_sym_u8_DQUOTE] = ACTIONS(1233), + [anon_sym_DQUOTE] = ACTIONS(1233), + [sym_true] = ACTIONS(1231), + [sym_false] = ACTIONS(1231), + [anon_sym_NULL] = ACTIONS(1231), + [anon_sym_nullptr] = ACTIONS(1231), [sym_comment] = ACTIONS(3), }, - [266] = { - [ts_builtin_sym_end] = ACTIONS(1245), - [sym_identifier] = ACTIONS(1243), - [aux_sym_preproc_include_token1] = ACTIONS(1243), - [aux_sym_preproc_def_token1] = ACTIONS(1243), - [aux_sym_preproc_if_token1] = ACTIONS(1243), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1243), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1243), - [sym_preproc_directive] = ACTIONS(1243), - [anon_sym_LPAREN2] = ACTIONS(1245), - [anon_sym_BANG] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1243), - [anon_sym_PLUS] = ACTIONS(1243), - [anon_sym_STAR] = ACTIONS(1245), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_SEMI] = ACTIONS(1245), - [anon_sym___extension__] = ACTIONS(1243), - [anon_sym_typedef] = ACTIONS(1243), - [anon_sym_extern] = ACTIONS(1243), - [anon_sym___attribute__] = ACTIONS(1243), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1245), - [anon_sym___declspec] = ACTIONS(1243), - [anon_sym___cdecl] = ACTIONS(1243), - [anon_sym___clrcall] = ACTIONS(1243), - [anon_sym___stdcall] = ACTIONS(1243), - [anon_sym___fastcall] = ACTIONS(1243), - [anon_sym___thiscall] = ACTIONS(1243), - [anon_sym___vectorcall] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_signed] = ACTIONS(1243), - [anon_sym_unsigned] = ACTIONS(1243), - [anon_sym_long] = ACTIONS(1243), - [anon_sym_short] = ACTIONS(1243), - [anon_sym_static] = ACTIONS(1243), - [anon_sym_auto] = ACTIONS(1243), - [anon_sym_register] = ACTIONS(1243), - [anon_sym_inline] = ACTIONS(1243), - [anon_sym___inline] = ACTIONS(1243), - [anon_sym___inline__] = ACTIONS(1243), - [anon_sym___forceinline] = ACTIONS(1243), - [anon_sym_thread_local] = ACTIONS(1243), - [anon_sym___thread] = ACTIONS(1243), - [anon_sym_const] = ACTIONS(1243), - [anon_sym_constexpr] = ACTIONS(1243), - [anon_sym_volatile] = ACTIONS(1243), - [anon_sym_restrict] = ACTIONS(1243), - [anon_sym___restrict__] = ACTIONS(1243), - [anon_sym__Atomic] = ACTIONS(1243), - [anon_sym__Noreturn] = ACTIONS(1243), - [anon_sym_noreturn] = ACTIONS(1243), - [anon_sym_alignas] = ACTIONS(1243), - [anon_sym__Alignas] = ACTIONS(1243), - [sym_primitive_type] = ACTIONS(1243), - [anon_sym_enum] = ACTIONS(1243), - [anon_sym_struct] = ACTIONS(1243), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1243), - [anon_sym_else] = ACTIONS(1243), - [anon_sym_switch] = ACTIONS(1243), - [anon_sym_case] = ACTIONS(1243), - [anon_sym_default] = ACTIONS(1243), - [anon_sym_while] = ACTIONS(1243), - [anon_sym_do] = ACTIONS(1243), - [anon_sym_for] = ACTIONS(1243), - [anon_sym_return] = ACTIONS(1243), - [anon_sym_break] = ACTIONS(1243), - [anon_sym_continue] = ACTIONS(1243), - [anon_sym_goto] = ACTIONS(1243), - [anon_sym___try] = ACTIONS(1243), - [anon_sym___leave] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1245), - [anon_sym_sizeof] = ACTIONS(1243), - [anon_sym___alignof__] = ACTIONS(1243), - [anon_sym___alignof] = ACTIONS(1243), - [anon_sym__alignof] = ACTIONS(1243), - [anon_sym_alignof] = ACTIONS(1243), - [anon_sym__Alignof] = ACTIONS(1243), - [anon_sym_offsetof] = ACTIONS(1243), - [anon_sym__Generic] = ACTIONS(1243), - [anon_sym_asm] = ACTIONS(1243), - [anon_sym___asm__] = ACTIONS(1243), - [sym_number_literal] = ACTIONS(1245), - [anon_sym_L_SQUOTE] = ACTIONS(1245), - [anon_sym_u_SQUOTE] = ACTIONS(1245), - [anon_sym_U_SQUOTE] = ACTIONS(1245), - [anon_sym_u8_SQUOTE] = ACTIONS(1245), - [anon_sym_SQUOTE] = ACTIONS(1245), - [anon_sym_L_DQUOTE] = ACTIONS(1245), - [anon_sym_u_DQUOTE] = ACTIONS(1245), - [anon_sym_U_DQUOTE] = ACTIONS(1245), - [anon_sym_u8_DQUOTE] = ACTIONS(1245), - [anon_sym_DQUOTE] = ACTIONS(1245), - [sym_true] = ACTIONS(1243), - [sym_false] = ACTIONS(1243), - [anon_sym_NULL] = ACTIONS(1243), - [anon_sym_nullptr] = ACTIONS(1243), - [sym_comment] = ACTIONS(3), - }, - [267] = { - [ts_builtin_sym_end] = ACTIONS(1241), - [sym_identifier] = ACTIONS(1239), - [aux_sym_preproc_include_token1] = ACTIONS(1239), - [aux_sym_preproc_def_token1] = ACTIONS(1239), - [aux_sym_preproc_if_token1] = ACTIONS(1239), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1239), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1239), - [sym_preproc_directive] = ACTIONS(1239), - [anon_sym_LPAREN2] = ACTIONS(1241), - [anon_sym_BANG] = ACTIONS(1241), - [anon_sym_TILDE] = ACTIONS(1241), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1241), - [anon_sym_SEMI] = ACTIONS(1241), - [anon_sym___extension__] = ACTIONS(1239), - [anon_sym_typedef] = ACTIONS(1239), - [anon_sym_extern] = ACTIONS(1239), - [anon_sym___attribute__] = ACTIONS(1239), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1241), - [anon_sym___declspec] = ACTIONS(1239), - [anon_sym___cdecl] = ACTIONS(1239), - [anon_sym___clrcall] = ACTIONS(1239), - [anon_sym___stdcall] = ACTIONS(1239), - [anon_sym___fastcall] = ACTIONS(1239), - [anon_sym___thiscall] = ACTIONS(1239), - [anon_sym___vectorcall] = ACTIONS(1239), - [anon_sym_LBRACE] = ACTIONS(1241), - [anon_sym_signed] = ACTIONS(1239), - [anon_sym_unsigned] = ACTIONS(1239), - [anon_sym_long] = ACTIONS(1239), - [anon_sym_short] = ACTIONS(1239), - [anon_sym_static] = ACTIONS(1239), - [anon_sym_auto] = ACTIONS(1239), - [anon_sym_register] = ACTIONS(1239), - [anon_sym_inline] = ACTIONS(1239), - [anon_sym___inline] = ACTIONS(1239), - [anon_sym___inline__] = ACTIONS(1239), - [anon_sym___forceinline] = ACTIONS(1239), - [anon_sym_thread_local] = ACTIONS(1239), - [anon_sym___thread] = ACTIONS(1239), - [anon_sym_const] = ACTIONS(1239), - [anon_sym_constexpr] = ACTIONS(1239), - [anon_sym_volatile] = ACTIONS(1239), - [anon_sym_restrict] = ACTIONS(1239), - [anon_sym___restrict__] = ACTIONS(1239), - [anon_sym__Atomic] = ACTIONS(1239), - [anon_sym__Noreturn] = ACTIONS(1239), - [anon_sym_noreturn] = ACTIONS(1239), - [anon_sym_alignas] = ACTIONS(1239), - [anon_sym__Alignas] = 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___try] = ACTIONS(1239), - [anon_sym___leave] = ACTIONS(1239), - [anon_sym_DASH_DASH] = ACTIONS(1241), - [anon_sym_PLUS_PLUS] = ACTIONS(1241), - [anon_sym_sizeof] = ACTIONS(1239), - [anon_sym___alignof__] = ACTIONS(1239), - [anon_sym___alignof] = ACTIONS(1239), - [anon_sym__alignof] = ACTIONS(1239), - [anon_sym_alignof] = ACTIONS(1239), - [anon_sym__Alignof] = ACTIONS(1239), - [anon_sym_offsetof] = ACTIONS(1239), - [anon_sym__Generic] = ACTIONS(1239), - [anon_sym_asm] = ACTIONS(1239), - [anon_sym___asm__] = ACTIONS(1239), - [sym_number_literal] = ACTIONS(1241), - [anon_sym_L_SQUOTE] = ACTIONS(1241), - [anon_sym_u_SQUOTE] = ACTIONS(1241), - [anon_sym_U_SQUOTE] = ACTIONS(1241), - [anon_sym_u8_SQUOTE] = ACTIONS(1241), - [anon_sym_SQUOTE] = ACTIONS(1241), - [anon_sym_L_DQUOTE] = ACTIONS(1241), - [anon_sym_u_DQUOTE] = ACTIONS(1241), - [anon_sym_U_DQUOTE] = ACTIONS(1241), - [anon_sym_u8_DQUOTE] = ACTIONS(1241), - [anon_sym_DQUOTE] = ACTIONS(1241), - [sym_true] = ACTIONS(1239), - [sym_false] = ACTIONS(1239), - [anon_sym_NULL] = ACTIONS(1239), - [anon_sym_nullptr] = ACTIONS(1239), + [222] = { + [sym_identifier] = ACTIONS(1159), + [aux_sym_preproc_include_token1] = ACTIONS(1159), + [aux_sym_preproc_def_token1] = ACTIONS(1159), + [aux_sym_preproc_if_token1] = ACTIONS(1159), + [aux_sym_preproc_if_token2] = ACTIONS(1159), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1159), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1159), + [sym_preproc_directive] = ACTIONS(1159), + [anon_sym_LPAREN2] = ACTIONS(1161), + [anon_sym_BANG] = ACTIONS(1161), + [anon_sym_TILDE] = ACTIONS(1161), + [anon_sym_DASH] = ACTIONS(1159), + [anon_sym_PLUS] = ACTIONS(1159), + [anon_sym_STAR] = ACTIONS(1161), + [anon_sym_AMP] = ACTIONS(1161), + [anon_sym_SEMI] = ACTIONS(1161), + [anon_sym___extension__] = ACTIONS(1159), + [anon_sym_typedef] = ACTIONS(1159), + [anon_sym_extern] = ACTIONS(1159), + [anon_sym___attribute__] = ACTIONS(1159), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1161), + [anon_sym___declspec] = ACTIONS(1159), + [anon_sym___cdecl] = ACTIONS(1159), + [anon_sym___clrcall] = ACTIONS(1159), + [anon_sym___stdcall] = ACTIONS(1159), + [anon_sym___fastcall] = ACTIONS(1159), + [anon_sym___thiscall] = ACTIONS(1159), + [anon_sym___vectorcall] = ACTIONS(1159), + [anon_sym_LBRACE] = ACTIONS(1161), + [anon_sym_signed] = ACTIONS(1159), + [anon_sym_unsigned] = ACTIONS(1159), + [anon_sym_long] = ACTIONS(1159), + [anon_sym_short] = ACTIONS(1159), + [anon_sym_static] = ACTIONS(1159), + [anon_sym_auto] = ACTIONS(1159), + [anon_sym_register] = ACTIONS(1159), + [anon_sym_inline] = ACTIONS(1159), + [anon_sym___inline] = ACTIONS(1159), + [anon_sym___inline__] = ACTIONS(1159), + [anon_sym___forceinline] = ACTIONS(1159), + [anon_sym_thread_local] = ACTIONS(1159), + [anon_sym___thread] = ACTIONS(1159), + [anon_sym_const] = ACTIONS(1159), + [anon_sym_constexpr] = ACTIONS(1159), + [anon_sym_volatile] = ACTIONS(1159), + [anon_sym_restrict] = ACTIONS(1159), + [anon_sym___restrict__] = ACTIONS(1159), + [anon_sym__Atomic] = ACTIONS(1159), + [anon_sym__Noreturn] = ACTIONS(1159), + [anon_sym_noreturn] = ACTIONS(1159), + [anon_sym_alignas] = ACTIONS(1159), + [anon_sym__Alignas] = ACTIONS(1159), + [sym_primitive_type] = ACTIONS(1159), + [anon_sym_enum] = ACTIONS(1159), + [anon_sym_struct] = ACTIONS(1159), + [anon_sym_union] = ACTIONS(1159), + [anon_sym_if] = ACTIONS(1159), + [anon_sym_else] = ACTIONS(1159), + [anon_sym_switch] = ACTIONS(1159), + [anon_sym_case] = ACTIONS(1159), + [anon_sym_default] = ACTIONS(1159), + [anon_sym_while] = ACTIONS(1159), + [anon_sym_do] = ACTIONS(1159), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_return] = ACTIONS(1159), + [anon_sym_break] = ACTIONS(1159), + [anon_sym_continue] = ACTIONS(1159), + [anon_sym_goto] = ACTIONS(1159), + [anon_sym___try] = ACTIONS(1159), + [anon_sym___leave] = ACTIONS(1159), + [anon_sym_DASH_DASH] = ACTIONS(1161), + [anon_sym_PLUS_PLUS] = ACTIONS(1161), + [anon_sym_sizeof] = ACTIONS(1159), + [anon_sym___alignof__] = ACTIONS(1159), + [anon_sym___alignof] = ACTIONS(1159), + [anon_sym__alignof] = ACTIONS(1159), + [anon_sym_alignof] = ACTIONS(1159), + [anon_sym__Alignof] = ACTIONS(1159), + [anon_sym_offsetof] = ACTIONS(1159), + [anon_sym__Generic] = ACTIONS(1159), + [anon_sym_asm] = ACTIONS(1159), + [anon_sym___asm__] = ACTIONS(1159), + [sym_number_literal] = ACTIONS(1161), + [anon_sym_L_SQUOTE] = ACTIONS(1161), + [anon_sym_u_SQUOTE] = ACTIONS(1161), + [anon_sym_U_SQUOTE] = ACTIONS(1161), + [anon_sym_u8_SQUOTE] = ACTIONS(1161), + [anon_sym_SQUOTE] = ACTIONS(1161), + [anon_sym_L_DQUOTE] = ACTIONS(1161), + [anon_sym_u_DQUOTE] = ACTIONS(1161), + [anon_sym_U_DQUOTE] = ACTIONS(1161), + [anon_sym_u8_DQUOTE] = ACTIONS(1161), + [anon_sym_DQUOTE] = ACTIONS(1161), + [sym_true] = ACTIONS(1159), + [sym_false] = ACTIONS(1159), + [anon_sym_NULL] = ACTIONS(1159), + [anon_sym_nullptr] = ACTIONS(1159), [sym_comment] = ACTIONS(3), }, - [268] = { - [sym_identifier] = ACTIONS(1123), - [aux_sym_preproc_include_token1] = ACTIONS(1123), - [aux_sym_preproc_def_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token2] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), - [sym_preproc_directive] = ACTIONS(1123), - [anon_sym_LPAREN2] = ACTIONS(1125), - [anon_sym_BANG] = ACTIONS(1125), - [anon_sym_TILDE] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym___extension__] = ACTIONS(1123), - [anon_sym_typedef] = ACTIONS(1123), - [anon_sym_extern] = ACTIONS(1123), - [anon_sym___attribute__] = ACTIONS(1123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), - [anon_sym___declspec] = ACTIONS(1123), - [anon_sym___cdecl] = ACTIONS(1123), - [anon_sym___clrcall] = ACTIONS(1123), - [anon_sym___stdcall] = ACTIONS(1123), - [anon_sym___fastcall] = ACTIONS(1123), - [anon_sym___thiscall] = ACTIONS(1123), - [anon_sym___vectorcall] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_signed] = ACTIONS(1123), - [anon_sym_unsigned] = ACTIONS(1123), - [anon_sym_long] = ACTIONS(1123), - [anon_sym_short] = ACTIONS(1123), - [anon_sym_static] = ACTIONS(1123), - [anon_sym_auto] = ACTIONS(1123), - [anon_sym_register] = ACTIONS(1123), - [anon_sym_inline] = ACTIONS(1123), - [anon_sym___inline] = ACTIONS(1123), - [anon_sym___inline__] = ACTIONS(1123), - [anon_sym___forceinline] = ACTIONS(1123), - [anon_sym_thread_local] = ACTIONS(1123), - [anon_sym___thread] = ACTIONS(1123), - [anon_sym_const] = ACTIONS(1123), - [anon_sym_constexpr] = ACTIONS(1123), - [anon_sym_volatile] = ACTIONS(1123), - [anon_sym_restrict] = ACTIONS(1123), - [anon_sym___restrict__] = ACTIONS(1123), - [anon_sym__Atomic] = ACTIONS(1123), - [anon_sym__Noreturn] = ACTIONS(1123), - [anon_sym_noreturn] = ACTIONS(1123), - [anon_sym_alignas] = ACTIONS(1123), - [anon_sym__Alignas] = ACTIONS(1123), - [sym_primitive_type] = ACTIONS(1123), - [anon_sym_enum] = ACTIONS(1123), - [anon_sym_struct] = ACTIONS(1123), - [anon_sym_union] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1123), - [anon_sym_else] = ACTIONS(1123), - [anon_sym_switch] = ACTIONS(1123), - [anon_sym_case] = ACTIONS(1123), - [anon_sym_default] = ACTIONS(1123), - [anon_sym_while] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(1123), - [anon_sym_for] = ACTIONS(1123), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_break] = ACTIONS(1123), - [anon_sym_continue] = ACTIONS(1123), - [anon_sym_goto] = ACTIONS(1123), - [anon_sym___try] = ACTIONS(1123), - [anon_sym___leave] = ACTIONS(1123), - [anon_sym_DASH_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1125), - [anon_sym_sizeof] = ACTIONS(1123), - [anon_sym___alignof__] = ACTIONS(1123), - [anon_sym___alignof] = ACTIONS(1123), - [anon_sym__alignof] = ACTIONS(1123), - [anon_sym_alignof] = ACTIONS(1123), - [anon_sym__Alignof] = ACTIONS(1123), - [anon_sym_offsetof] = ACTIONS(1123), - [anon_sym__Generic] = ACTIONS(1123), - [anon_sym_asm] = ACTIONS(1123), - [anon_sym___asm__] = ACTIONS(1123), - [sym_number_literal] = ACTIONS(1125), - [anon_sym_L_SQUOTE] = ACTIONS(1125), - [anon_sym_u_SQUOTE] = ACTIONS(1125), - [anon_sym_U_SQUOTE] = ACTIONS(1125), - [anon_sym_u8_SQUOTE] = ACTIONS(1125), - [anon_sym_SQUOTE] = ACTIONS(1125), - [anon_sym_L_DQUOTE] = ACTIONS(1125), - [anon_sym_u_DQUOTE] = ACTIONS(1125), - [anon_sym_U_DQUOTE] = ACTIONS(1125), - [anon_sym_u8_DQUOTE] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(1125), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [anon_sym_NULL] = ACTIONS(1123), - [anon_sym_nullptr] = ACTIONS(1123), + [223] = { + [sym_identifier] = ACTIONS(1187), + [aux_sym_preproc_include_token1] = ACTIONS(1187), + [aux_sym_preproc_def_token1] = ACTIONS(1187), + [aux_sym_preproc_if_token1] = ACTIONS(1187), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1187), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1187), + [sym_preproc_directive] = ACTIONS(1187), + [anon_sym_LPAREN2] = ACTIONS(1189), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1189), + [anon_sym_DASH] = ACTIONS(1187), + [anon_sym_PLUS] = ACTIONS(1187), + [anon_sym_STAR] = ACTIONS(1189), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_SEMI] = ACTIONS(1189), + [anon_sym___extension__] = ACTIONS(1187), + [anon_sym_typedef] = ACTIONS(1187), + [anon_sym_extern] = ACTIONS(1187), + [anon_sym___attribute__] = ACTIONS(1187), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1189), + [anon_sym___declspec] = ACTIONS(1187), + [anon_sym___cdecl] = ACTIONS(1187), + [anon_sym___clrcall] = ACTIONS(1187), + [anon_sym___stdcall] = ACTIONS(1187), + [anon_sym___fastcall] = ACTIONS(1187), + [anon_sym___thiscall] = ACTIONS(1187), + [anon_sym___vectorcall] = ACTIONS(1187), + [anon_sym_LBRACE] = ACTIONS(1189), + [anon_sym_RBRACE] = ACTIONS(1189), + [anon_sym_signed] = ACTIONS(1187), + [anon_sym_unsigned] = ACTIONS(1187), + [anon_sym_long] = ACTIONS(1187), + [anon_sym_short] = ACTIONS(1187), + [anon_sym_static] = ACTIONS(1187), + [anon_sym_auto] = ACTIONS(1187), + [anon_sym_register] = ACTIONS(1187), + [anon_sym_inline] = ACTIONS(1187), + [anon_sym___inline] = ACTIONS(1187), + [anon_sym___inline__] = ACTIONS(1187), + [anon_sym___forceinline] = ACTIONS(1187), + [anon_sym_thread_local] = ACTIONS(1187), + [anon_sym___thread] = ACTIONS(1187), + [anon_sym_const] = ACTIONS(1187), + [anon_sym_constexpr] = ACTIONS(1187), + [anon_sym_volatile] = ACTIONS(1187), + [anon_sym_restrict] = ACTIONS(1187), + [anon_sym___restrict__] = ACTIONS(1187), + [anon_sym__Atomic] = ACTIONS(1187), + [anon_sym__Noreturn] = ACTIONS(1187), + [anon_sym_noreturn] = ACTIONS(1187), + [anon_sym_alignas] = ACTIONS(1187), + [anon_sym__Alignas] = ACTIONS(1187), + [sym_primitive_type] = ACTIONS(1187), + [anon_sym_enum] = ACTIONS(1187), + [anon_sym_struct] = ACTIONS(1187), + [anon_sym_union] = ACTIONS(1187), + [anon_sym_if] = ACTIONS(1187), + [anon_sym_else] = ACTIONS(1187), + [anon_sym_switch] = ACTIONS(1187), + [anon_sym_case] = ACTIONS(1187), + [anon_sym_default] = ACTIONS(1187), + [anon_sym_while] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(1187), + [anon_sym_for] = ACTIONS(1187), + [anon_sym_return] = ACTIONS(1187), + [anon_sym_break] = ACTIONS(1187), + [anon_sym_continue] = ACTIONS(1187), + [anon_sym_goto] = ACTIONS(1187), + [anon_sym___try] = ACTIONS(1187), + [anon_sym___leave] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1189), + [anon_sym_PLUS_PLUS] = ACTIONS(1189), + [anon_sym_sizeof] = ACTIONS(1187), + [anon_sym___alignof__] = ACTIONS(1187), + [anon_sym___alignof] = ACTIONS(1187), + [anon_sym__alignof] = ACTIONS(1187), + [anon_sym_alignof] = ACTIONS(1187), + [anon_sym__Alignof] = ACTIONS(1187), + [anon_sym_offsetof] = ACTIONS(1187), + [anon_sym__Generic] = ACTIONS(1187), + [anon_sym_asm] = ACTIONS(1187), + [anon_sym___asm__] = ACTIONS(1187), + [sym_number_literal] = ACTIONS(1189), + [anon_sym_L_SQUOTE] = ACTIONS(1189), + [anon_sym_u_SQUOTE] = ACTIONS(1189), + [anon_sym_U_SQUOTE] = ACTIONS(1189), + [anon_sym_u8_SQUOTE] = ACTIONS(1189), + [anon_sym_SQUOTE] = ACTIONS(1189), + [anon_sym_L_DQUOTE] = ACTIONS(1189), + [anon_sym_u_DQUOTE] = ACTIONS(1189), + [anon_sym_U_DQUOTE] = ACTIONS(1189), + [anon_sym_u8_DQUOTE] = ACTIONS(1189), + [anon_sym_DQUOTE] = ACTIONS(1189), + [sym_true] = ACTIONS(1187), + [sym_false] = ACTIONS(1187), + [anon_sym_NULL] = ACTIONS(1187), + [anon_sym_nullptr] = ACTIONS(1187), [sym_comment] = ACTIONS(3), }, - [269] = { - [sym_identifier] = ACTIONS(1243), - [aux_sym_preproc_include_token1] = ACTIONS(1243), - [aux_sym_preproc_def_token1] = ACTIONS(1243), - [aux_sym_preproc_if_token1] = ACTIONS(1243), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1243), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1243), - [sym_preproc_directive] = ACTIONS(1243), - [anon_sym_LPAREN2] = ACTIONS(1245), - [anon_sym_BANG] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1243), - [anon_sym_PLUS] = ACTIONS(1243), - [anon_sym_STAR] = ACTIONS(1245), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_SEMI] = ACTIONS(1245), - [anon_sym___extension__] = ACTIONS(1243), - [anon_sym_typedef] = ACTIONS(1243), - [anon_sym_extern] = ACTIONS(1243), - [anon_sym___attribute__] = ACTIONS(1243), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1245), - [anon_sym___declspec] = ACTIONS(1243), - [anon_sym___cdecl] = ACTIONS(1243), - [anon_sym___clrcall] = ACTIONS(1243), - [anon_sym___stdcall] = ACTIONS(1243), - [anon_sym___fastcall] = ACTIONS(1243), - [anon_sym___thiscall] = ACTIONS(1243), - [anon_sym___vectorcall] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_RBRACE] = ACTIONS(1245), - [anon_sym_signed] = ACTIONS(1243), - [anon_sym_unsigned] = ACTIONS(1243), - [anon_sym_long] = ACTIONS(1243), - [anon_sym_short] = ACTIONS(1243), - [anon_sym_static] = ACTIONS(1243), - [anon_sym_auto] = ACTIONS(1243), - [anon_sym_register] = ACTIONS(1243), - [anon_sym_inline] = ACTIONS(1243), - [anon_sym___inline] = ACTIONS(1243), - [anon_sym___inline__] = ACTIONS(1243), - [anon_sym___forceinline] = ACTIONS(1243), - [anon_sym_thread_local] = ACTIONS(1243), - [anon_sym___thread] = ACTIONS(1243), - [anon_sym_const] = ACTIONS(1243), - [anon_sym_constexpr] = ACTIONS(1243), - [anon_sym_volatile] = ACTIONS(1243), - [anon_sym_restrict] = ACTIONS(1243), - [anon_sym___restrict__] = ACTIONS(1243), - [anon_sym__Atomic] = ACTIONS(1243), - [anon_sym__Noreturn] = ACTIONS(1243), - [anon_sym_noreturn] = ACTIONS(1243), - [anon_sym_alignas] = ACTIONS(1243), + [224] = { + [sym_identifier] = ACTIONS(1219), + [aux_sym_preproc_include_token1] = ACTIONS(1219), + [aux_sym_preproc_def_token1] = ACTIONS(1219), + [aux_sym_preproc_if_token1] = ACTIONS(1219), + [aux_sym_preproc_if_token2] = ACTIONS(1219), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1219), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1219), + [sym_preproc_directive] = ACTIONS(1219), + [anon_sym_LPAREN2] = ACTIONS(1221), + [anon_sym_BANG] = ACTIONS(1221), + [anon_sym_TILDE] = ACTIONS(1221), + [anon_sym_DASH] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1219), + [anon_sym_STAR] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(1221), + [anon_sym_SEMI] = ACTIONS(1221), + [anon_sym___extension__] = ACTIONS(1219), + [anon_sym_typedef] = ACTIONS(1219), + [anon_sym_extern] = ACTIONS(1219), + [anon_sym___attribute__] = ACTIONS(1219), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1221), + [anon_sym___declspec] = ACTIONS(1219), + [anon_sym___cdecl] = ACTIONS(1219), + [anon_sym___clrcall] = ACTIONS(1219), + [anon_sym___stdcall] = ACTIONS(1219), + [anon_sym___fastcall] = ACTIONS(1219), + [anon_sym___thiscall] = ACTIONS(1219), + [anon_sym___vectorcall] = ACTIONS(1219), + [anon_sym_LBRACE] = ACTIONS(1221), + [anon_sym_signed] = ACTIONS(1219), + [anon_sym_unsigned] = ACTIONS(1219), + [anon_sym_long] = ACTIONS(1219), + [anon_sym_short] = ACTIONS(1219), + [anon_sym_static] = ACTIONS(1219), + [anon_sym_auto] = ACTIONS(1219), + [anon_sym_register] = ACTIONS(1219), + [anon_sym_inline] = ACTIONS(1219), + [anon_sym___inline] = ACTIONS(1219), + [anon_sym___inline__] = ACTIONS(1219), + [anon_sym___forceinline] = ACTIONS(1219), + [anon_sym_thread_local] = ACTIONS(1219), + [anon_sym___thread] = ACTIONS(1219), + [anon_sym_const] = ACTIONS(1219), + [anon_sym_constexpr] = ACTIONS(1219), + [anon_sym_volatile] = ACTIONS(1219), + [anon_sym_restrict] = ACTIONS(1219), + [anon_sym___restrict__] = ACTIONS(1219), + [anon_sym__Atomic] = ACTIONS(1219), + [anon_sym__Noreturn] = ACTIONS(1219), + [anon_sym_noreturn] = ACTIONS(1219), + [anon_sym_alignas] = ACTIONS(1219), + [anon_sym__Alignas] = ACTIONS(1219), + [sym_primitive_type] = ACTIONS(1219), + [anon_sym_enum] = ACTIONS(1219), + [anon_sym_struct] = ACTIONS(1219), + [anon_sym_union] = ACTIONS(1219), + [anon_sym_if] = ACTIONS(1219), + [anon_sym_else] = ACTIONS(1219), + [anon_sym_switch] = ACTIONS(1219), + [anon_sym_case] = ACTIONS(1219), + [anon_sym_default] = ACTIONS(1219), + [anon_sym_while] = ACTIONS(1219), + [anon_sym_do] = ACTIONS(1219), + [anon_sym_for] = ACTIONS(1219), + [anon_sym_return] = ACTIONS(1219), + [anon_sym_break] = ACTIONS(1219), + [anon_sym_continue] = ACTIONS(1219), + [anon_sym_goto] = ACTIONS(1219), + [anon_sym___try] = ACTIONS(1219), + [anon_sym___leave] = ACTIONS(1219), + [anon_sym_DASH_DASH] = ACTIONS(1221), + [anon_sym_PLUS_PLUS] = ACTIONS(1221), + [anon_sym_sizeof] = ACTIONS(1219), + [anon_sym___alignof__] = ACTIONS(1219), + [anon_sym___alignof] = ACTIONS(1219), + [anon_sym__alignof] = ACTIONS(1219), + [anon_sym_alignof] = ACTIONS(1219), + [anon_sym__Alignof] = ACTIONS(1219), + [anon_sym_offsetof] = ACTIONS(1219), + [anon_sym__Generic] = ACTIONS(1219), + [anon_sym_asm] = ACTIONS(1219), + [anon_sym___asm__] = ACTIONS(1219), + [sym_number_literal] = ACTIONS(1221), + [anon_sym_L_SQUOTE] = ACTIONS(1221), + [anon_sym_u_SQUOTE] = ACTIONS(1221), + [anon_sym_U_SQUOTE] = ACTIONS(1221), + [anon_sym_u8_SQUOTE] = ACTIONS(1221), + [anon_sym_SQUOTE] = ACTIONS(1221), + [anon_sym_L_DQUOTE] = ACTIONS(1221), + [anon_sym_u_DQUOTE] = ACTIONS(1221), + [anon_sym_U_DQUOTE] = ACTIONS(1221), + [anon_sym_u8_DQUOTE] = ACTIONS(1221), + [anon_sym_DQUOTE] = ACTIONS(1221), + [sym_true] = ACTIONS(1219), + [sym_false] = ACTIONS(1219), + [anon_sym_NULL] = ACTIONS(1219), + [anon_sym_nullptr] = ACTIONS(1219), + [sym_comment] = ACTIONS(3), + }, + [225] = { + [ts_builtin_sym_end] = ACTIONS(1133), + [sym_identifier] = ACTIONS(1131), + [aux_sym_preproc_include_token1] = ACTIONS(1131), + [aux_sym_preproc_def_token1] = ACTIONS(1131), + [aux_sym_preproc_if_token1] = ACTIONS(1131), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1131), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1131), + [sym_preproc_directive] = ACTIONS(1131), + [anon_sym_LPAREN2] = ACTIONS(1133), + [anon_sym_BANG] = ACTIONS(1133), + [anon_sym_TILDE] = ACTIONS(1133), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_AMP] = ACTIONS(1133), + [anon_sym_SEMI] = ACTIONS(1133), + [anon_sym___extension__] = ACTIONS(1131), + [anon_sym_typedef] = ACTIONS(1131), + [anon_sym_extern] = ACTIONS(1131), + [anon_sym___attribute__] = ACTIONS(1131), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1133), + [anon_sym___declspec] = ACTIONS(1131), + [anon_sym___cdecl] = ACTIONS(1131), + [anon_sym___clrcall] = ACTIONS(1131), + [anon_sym___stdcall] = ACTIONS(1131), + [anon_sym___fastcall] = ACTIONS(1131), + [anon_sym___thiscall] = ACTIONS(1131), + [anon_sym___vectorcall] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(1133), + [anon_sym_signed] = ACTIONS(1131), + [anon_sym_unsigned] = ACTIONS(1131), + [anon_sym_long] = ACTIONS(1131), + [anon_sym_short] = ACTIONS(1131), + [anon_sym_static] = ACTIONS(1131), + [anon_sym_auto] = ACTIONS(1131), + [anon_sym_register] = ACTIONS(1131), + [anon_sym_inline] = ACTIONS(1131), + [anon_sym___inline] = ACTIONS(1131), + [anon_sym___inline__] = ACTIONS(1131), + [anon_sym___forceinline] = ACTIONS(1131), + [anon_sym_thread_local] = ACTIONS(1131), + [anon_sym___thread] = ACTIONS(1131), + [anon_sym_const] = ACTIONS(1131), + [anon_sym_constexpr] = ACTIONS(1131), + [anon_sym_volatile] = ACTIONS(1131), + [anon_sym_restrict] = ACTIONS(1131), + [anon_sym___restrict__] = ACTIONS(1131), + [anon_sym__Atomic] = ACTIONS(1131), + [anon_sym__Noreturn] = ACTIONS(1131), + [anon_sym_noreturn] = ACTIONS(1131), + [anon_sym_alignas] = ACTIONS(1131), + [anon_sym__Alignas] = ACTIONS(1131), + [sym_primitive_type] = ACTIONS(1131), + [anon_sym_enum] = ACTIONS(1131), + [anon_sym_struct] = ACTIONS(1131), + [anon_sym_union] = ACTIONS(1131), + [anon_sym_if] = ACTIONS(1131), + [anon_sym_else] = ACTIONS(1131), + [anon_sym_switch] = ACTIONS(1131), + [anon_sym_case] = ACTIONS(1131), + [anon_sym_default] = ACTIONS(1131), + [anon_sym_while] = ACTIONS(1131), + [anon_sym_do] = ACTIONS(1131), + [anon_sym_for] = ACTIONS(1131), + [anon_sym_return] = ACTIONS(1131), + [anon_sym_break] = ACTIONS(1131), + [anon_sym_continue] = ACTIONS(1131), + [anon_sym_goto] = ACTIONS(1131), + [anon_sym___try] = ACTIONS(1131), + [anon_sym___leave] = ACTIONS(1131), + [anon_sym_DASH_DASH] = ACTIONS(1133), + [anon_sym_PLUS_PLUS] = ACTIONS(1133), + [anon_sym_sizeof] = ACTIONS(1131), + [anon_sym___alignof__] = ACTIONS(1131), + [anon_sym___alignof] = ACTIONS(1131), + [anon_sym__alignof] = ACTIONS(1131), + [anon_sym_alignof] = ACTIONS(1131), + [anon_sym__Alignof] = ACTIONS(1131), + [anon_sym_offsetof] = ACTIONS(1131), + [anon_sym__Generic] = ACTIONS(1131), + [anon_sym_asm] = ACTIONS(1131), + [anon_sym___asm__] = ACTIONS(1131), + [sym_number_literal] = ACTIONS(1133), + [anon_sym_L_SQUOTE] = ACTIONS(1133), + [anon_sym_u_SQUOTE] = ACTIONS(1133), + [anon_sym_U_SQUOTE] = ACTIONS(1133), + [anon_sym_u8_SQUOTE] = ACTIONS(1133), + [anon_sym_SQUOTE] = ACTIONS(1133), + [anon_sym_L_DQUOTE] = ACTIONS(1133), + [anon_sym_u_DQUOTE] = ACTIONS(1133), + [anon_sym_U_DQUOTE] = ACTIONS(1133), + [anon_sym_u8_DQUOTE] = ACTIONS(1133), + [anon_sym_DQUOTE] = ACTIONS(1133), + [sym_true] = ACTIONS(1131), + [sym_false] = ACTIONS(1131), + [anon_sym_NULL] = ACTIONS(1131), + [anon_sym_nullptr] = ACTIONS(1131), + [sym_comment] = ACTIONS(3), + }, + [226] = { + [sym_identifier] = ACTIONS(1223), + [aux_sym_preproc_include_token1] = ACTIONS(1223), + [aux_sym_preproc_def_token1] = ACTIONS(1223), + [aux_sym_preproc_if_token1] = ACTIONS(1223), + [aux_sym_preproc_if_token2] = ACTIONS(1223), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1223), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1223), + [sym_preproc_directive] = ACTIONS(1223), + [anon_sym_LPAREN2] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1225), + [anon_sym_TILDE] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1223), + [anon_sym_PLUS] = ACTIONS(1223), + [anon_sym_STAR] = ACTIONS(1225), + [anon_sym_AMP] = ACTIONS(1225), + [anon_sym_SEMI] = ACTIONS(1225), + [anon_sym___extension__] = ACTIONS(1223), + [anon_sym_typedef] = ACTIONS(1223), + [anon_sym_extern] = ACTIONS(1223), + [anon_sym___attribute__] = ACTIONS(1223), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1225), + [anon_sym___declspec] = ACTIONS(1223), + [anon_sym___cdecl] = ACTIONS(1223), + [anon_sym___clrcall] = ACTIONS(1223), + [anon_sym___stdcall] = ACTIONS(1223), + [anon_sym___fastcall] = ACTIONS(1223), + [anon_sym___thiscall] = ACTIONS(1223), + [anon_sym___vectorcall] = ACTIONS(1223), + [anon_sym_LBRACE] = ACTIONS(1225), + [anon_sym_signed] = ACTIONS(1223), + [anon_sym_unsigned] = ACTIONS(1223), + [anon_sym_long] = ACTIONS(1223), + [anon_sym_short] = ACTIONS(1223), + [anon_sym_static] = ACTIONS(1223), + [anon_sym_auto] = ACTIONS(1223), + [anon_sym_register] = ACTIONS(1223), + [anon_sym_inline] = ACTIONS(1223), + [anon_sym___inline] = ACTIONS(1223), + [anon_sym___inline__] = ACTIONS(1223), + [anon_sym___forceinline] = ACTIONS(1223), + [anon_sym_thread_local] = ACTIONS(1223), + [anon_sym___thread] = ACTIONS(1223), + [anon_sym_const] = ACTIONS(1223), + [anon_sym_constexpr] = ACTIONS(1223), + [anon_sym_volatile] = ACTIONS(1223), + [anon_sym_restrict] = ACTIONS(1223), + [anon_sym___restrict__] = ACTIONS(1223), + [anon_sym__Atomic] = ACTIONS(1223), + [anon_sym__Noreturn] = ACTIONS(1223), + [anon_sym_noreturn] = ACTIONS(1223), + [anon_sym_alignas] = ACTIONS(1223), + [anon_sym__Alignas] = ACTIONS(1223), + [sym_primitive_type] = ACTIONS(1223), + [anon_sym_enum] = ACTIONS(1223), + [anon_sym_struct] = ACTIONS(1223), + [anon_sym_union] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1223), + [anon_sym_else] = ACTIONS(1223), + [anon_sym_switch] = ACTIONS(1223), + [anon_sym_case] = ACTIONS(1223), + [anon_sym_default] = ACTIONS(1223), + [anon_sym_while] = ACTIONS(1223), + [anon_sym_do] = ACTIONS(1223), + [anon_sym_for] = ACTIONS(1223), + [anon_sym_return] = ACTIONS(1223), + [anon_sym_break] = ACTIONS(1223), + [anon_sym_continue] = ACTIONS(1223), + [anon_sym_goto] = ACTIONS(1223), + [anon_sym___try] = ACTIONS(1223), + [anon_sym___leave] = ACTIONS(1223), + [anon_sym_DASH_DASH] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1225), + [anon_sym_sizeof] = ACTIONS(1223), + [anon_sym___alignof__] = ACTIONS(1223), + [anon_sym___alignof] = ACTIONS(1223), + [anon_sym__alignof] = ACTIONS(1223), + [anon_sym_alignof] = ACTIONS(1223), + [anon_sym__Alignof] = ACTIONS(1223), + [anon_sym_offsetof] = ACTIONS(1223), + [anon_sym__Generic] = ACTIONS(1223), + [anon_sym_asm] = ACTIONS(1223), + [anon_sym___asm__] = ACTIONS(1223), + [sym_number_literal] = ACTIONS(1225), + [anon_sym_L_SQUOTE] = ACTIONS(1225), + [anon_sym_u_SQUOTE] = ACTIONS(1225), + [anon_sym_U_SQUOTE] = ACTIONS(1225), + [anon_sym_u8_SQUOTE] = ACTIONS(1225), + [anon_sym_SQUOTE] = ACTIONS(1225), + [anon_sym_L_DQUOTE] = ACTIONS(1225), + [anon_sym_u_DQUOTE] = ACTIONS(1225), + [anon_sym_U_DQUOTE] = ACTIONS(1225), + [anon_sym_u8_DQUOTE] = ACTIONS(1225), + [anon_sym_DQUOTE] = ACTIONS(1225), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [anon_sym_NULL] = ACTIONS(1223), + [anon_sym_nullptr] = ACTIONS(1223), + [sym_comment] = ACTIONS(3), + }, + [227] = { + [sym_identifier] = ACTIONS(1243), + [aux_sym_preproc_include_token1] = ACTIONS(1243), + [aux_sym_preproc_def_token1] = ACTIONS(1243), + [aux_sym_preproc_if_token1] = ACTIONS(1243), + [aux_sym_preproc_if_token2] = ACTIONS(1243), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1243), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1243), + [sym_preproc_directive] = ACTIONS(1243), + [anon_sym_LPAREN2] = ACTIONS(1245), + [anon_sym_BANG] = ACTIONS(1245), + [anon_sym_TILDE] = ACTIONS(1245), + [anon_sym_DASH] = ACTIONS(1243), + [anon_sym_PLUS] = ACTIONS(1243), + [anon_sym_STAR] = ACTIONS(1245), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_SEMI] = ACTIONS(1245), + [anon_sym___extension__] = ACTIONS(1243), + [anon_sym_typedef] = ACTIONS(1243), + [anon_sym_extern] = ACTIONS(1243), + [anon_sym___attribute__] = ACTIONS(1243), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1245), + [anon_sym___declspec] = ACTIONS(1243), + [anon_sym___cdecl] = ACTIONS(1243), + [anon_sym___clrcall] = ACTIONS(1243), + [anon_sym___stdcall] = ACTIONS(1243), + [anon_sym___fastcall] = ACTIONS(1243), + [anon_sym___thiscall] = ACTIONS(1243), + [anon_sym___vectorcall] = ACTIONS(1243), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_signed] = ACTIONS(1243), + [anon_sym_unsigned] = ACTIONS(1243), + [anon_sym_long] = ACTIONS(1243), + [anon_sym_short] = ACTIONS(1243), + [anon_sym_static] = ACTIONS(1243), + [anon_sym_auto] = ACTIONS(1243), + [anon_sym_register] = ACTIONS(1243), + [anon_sym_inline] = ACTIONS(1243), + [anon_sym___inline] = ACTIONS(1243), + [anon_sym___inline__] = ACTIONS(1243), + [anon_sym___forceinline] = ACTIONS(1243), + [anon_sym_thread_local] = ACTIONS(1243), + [anon_sym___thread] = ACTIONS(1243), + [anon_sym_const] = ACTIONS(1243), + [anon_sym_constexpr] = ACTIONS(1243), + [anon_sym_volatile] = ACTIONS(1243), + [anon_sym_restrict] = ACTIONS(1243), + [anon_sym___restrict__] = ACTIONS(1243), + [anon_sym__Atomic] = ACTIONS(1243), + [anon_sym__Noreturn] = ACTIONS(1243), + [anon_sym_noreturn] = ACTIONS(1243), + [anon_sym_alignas] = ACTIONS(1243), [anon_sym__Alignas] = ACTIONS(1243), [sym_primitive_type] = ACTIONS(1243), [anon_sym_enum] = ACTIONS(1243), @@ -43577,512 +39260,712 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1243), [sym_comment] = ACTIONS(3), }, - [270] = { - [sym_identifier] = ACTIONS(1123), - [aux_sym_preproc_include_token1] = ACTIONS(1123), - [aux_sym_preproc_def_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token2] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), - [sym_preproc_directive] = ACTIONS(1123), - [anon_sym_LPAREN2] = ACTIONS(1125), - [anon_sym_BANG] = ACTIONS(1125), - [anon_sym_TILDE] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym___extension__] = ACTIONS(1123), - [anon_sym_typedef] = ACTIONS(1123), - [anon_sym_extern] = ACTIONS(1123), - [anon_sym___attribute__] = ACTIONS(1123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), - [anon_sym___declspec] = ACTIONS(1123), - [anon_sym___cdecl] = ACTIONS(1123), - [anon_sym___clrcall] = ACTIONS(1123), - [anon_sym___stdcall] = ACTIONS(1123), - [anon_sym___fastcall] = ACTIONS(1123), - [anon_sym___thiscall] = ACTIONS(1123), - [anon_sym___vectorcall] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_signed] = ACTIONS(1123), - [anon_sym_unsigned] = ACTIONS(1123), - [anon_sym_long] = ACTIONS(1123), - [anon_sym_short] = ACTIONS(1123), - [anon_sym_static] = ACTIONS(1123), - [anon_sym_auto] = ACTIONS(1123), - [anon_sym_register] = ACTIONS(1123), - [anon_sym_inline] = ACTIONS(1123), - [anon_sym___inline] = ACTIONS(1123), - [anon_sym___inline__] = ACTIONS(1123), - [anon_sym___forceinline] = ACTIONS(1123), - [anon_sym_thread_local] = ACTIONS(1123), - [anon_sym___thread] = ACTIONS(1123), - [anon_sym_const] = ACTIONS(1123), - [anon_sym_constexpr] = ACTIONS(1123), - [anon_sym_volatile] = ACTIONS(1123), - [anon_sym_restrict] = ACTIONS(1123), - [anon_sym___restrict__] = ACTIONS(1123), - [anon_sym__Atomic] = ACTIONS(1123), - [anon_sym__Noreturn] = ACTIONS(1123), - [anon_sym_noreturn] = ACTIONS(1123), - [anon_sym_alignas] = ACTIONS(1123), - [anon_sym__Alignas] = ACTIONS(1123), - [sym_primitive_type] = ACTIONS(1123), - [anon_sym_enum] = ACTIONS(1123), - [anon_sym_struct] = ACTIONS(1123), - [anon_sym_union] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1123), - [anon_sym_else] = ACTIONS(1123), - [anon_sym_switch] = ACTIONS(1123), - [anon_sym_case] = ACTIONS(1123), - [anon_sym_default] = ACTIONS(1123), - [anon_sym_while] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(1123), - [anon_sym_for] = ACTIONS(1123), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_break] = ACTIONS(1123), - [anon_sym_continue] = ACTIONS(1123), - [anon_sym_goto] = ACTIONS(1123), - [anon_sym___try] = ACTIONS(1123), - [anon_sym___leave] = ACTIONS(1123), - [anon_sym_DASH_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1125), - [anon_sym_sizeof] = ACTIONS(1123), - [anon_sym___alignof__] = ACTIONS(1123), - [anon_sym___alignof] = ACTIONS(1123), - [anon_sym__alignof] = ACTIONS(1123), - [anon_sym_alignof] = ACTIONS(1123), - [anon_sym__Alignof] = ACTIONS(1123), - [anon_sym_offsetof] = ACTIONS(1123), - [anon_sym__Generic] = ACTIONS(1123), - [anon_sym_asm] = ACTIONS(1123), - [anon_sym___asm__] = ACTIONS(1123), - [sym_number_literal] = ACTIONS(1125), - [anon_sym_L_SQUOTE] = ACTIONS(1125), - [anon_sym_u_SQUOTE] = ACTIONS(1125), - [anon_sym_U_SQUOTE] = ACTIONS(1125), - [anon_sym_u8_SQUOTE] = ACTIONS(1125), - [anon_sym_SQUOTE] = ACTIONS(1125), - [anon_sym_L_DQUOTE] = ACTIONS(1125), - [anon_sym_u_DQUOTE] = ACTIONS(1125), - [anon_sym_U_DQUOTE] = ACTIONS(1125), - [anon_sym_u8_DQUOTE] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(1125), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [anon_sym_NULL] = ACTIONS(1123), - [anon_sym_nullptr] = ACTIONS(1123), + [228] = { + [sym_identifier] = ACTIONS(1129), + [aux_sym_preproc_include_token1] = ACTIONS(1129), + [aux_sym_preproc_def_token1] = ACTIONS(1129), + [aux_sym_preproc_if_token1] = ACTIONS(1129), + [aux_sym_preproc_if_token2] = ACTIONS(1129), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1129), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1129), + [sym_preproc_directive] = ACTIONS(1129), + [anon_sym_LPAREN2] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_TILDE] = ACTIONS(1127), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_STAR] = ACTIONS(1127), + [anon_sym_AMP] = ACTIONS(1127), + [anon_sym_SEMI] = ACTIONS(1127), + [anon_sym___extension__] = ACTIONS(1129), + [anon_sym_typedef] = ACTIONS(1129), + [anon_sym_extern] = ACTIONS(1129), + [anon_sym___attribute__] = ACTIONS(1129), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1127), + [anon_sym___declspec] = ACTIONS(1129), + [anon_sym___cdecl] = ACTIONS(1129), + [anon_sym___clrcall] = ACTIONS(1129), + [anon_sym___stdcall] = ACTIONS(1129), + [anon_sym___fastcall] = ACTIONS(1129), + [anon_sym___thiscall] = ACTIONS(1129), + [anon_sym___vectorcall] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_signed] = ACTIONS(1129), + [anon_sym_unsigned] = ACTIONS(1129), + [anon_sym_long] = ACTIONS(1129), + [anon_sym_short] = ACTIONS(1129), + [anon_sym_static] = ACTIONS(1129), + [anon_sym_auto] = ACTIONS(1129), + [anon_sym_register] = ACTIONS(1129), + [anon_sym_inline] = ACTIONS(1129), + [anon_sym___inline] = ACTIONS(1129), + [anon_sym___inline__] = ACTIONS(1129), + [anon_sym___forceinline] = ACTIONS(1129), + [anon_sym_thread_local] = ACTIONS(1129), + [anon_sym___thread] = ACTIONS(1129), + [anon_sym_const] = ACTIONS(1129), + [anon_sym_constexpr] = ACTIONS(1129), + [anon_sym_volatile] = ACTIONS(1129), + [anon_sym_restrict] = ACTIONS(1129), + [anon_sym___restrict__] = ACTIONS(1129), + [anon_sym__Atomic] = ACTIONS(1129), + [anon_sym__Noreturn] = ACTIONS(1129), + [anon_sym_noreturn] = ACTIONS(1129), + [anon_sym_alignas] = ACTIONS(1129), + [anon_sym__Alignas] = ACTIONS(1129), + [sym_primitive_type] = ACTIONS(1129), + [anon_sym_enum] = ACTIONS(1129), + [anon_sym_struct] = ACTIONS(1129), + [anon_sym_union] = ACTIONS(1129), + [anon_sym_if] = ACTIONS(1129), + [anon_sym_else] = ACTIONS(1129), + [anon_sym_switch] = ACTIONS(1129), + [anon_sym_case] = ACTIONS(1129), + [anon_sym_default] = ACTIONS(1129), + [anon_sym_while] = ACTIONS(1129), + [anon_sym_do] = ACTIONS(1129), + [anon_sym_for] = ACTIONS(1129), + [anon_sym_return] = ACTIONS(1129), + [anon_sym_break] = ACTIONS(1129), + [anon_sym_continue] = ACTIONS(1129), + [anon_sym_goto] = ACTIONS(1129), + [anon_sym___try] = ACTIONS(1129), + [anon_sym___leave] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1127), + [anon_sym_PLUS_PLUS] = ACTIONS(1127), + [anon_sym_sizeof] = ACTIONS(1129), + [anon_sym___alignof__] = ACTIONS(1129), + [anon_sym___alignof] = ACTIONS(1129), + [anon_sym__alignof] = ACTIONS(1129), + [anon_sym_alignof] = ACTIONS(1129), + [anon_sym__Alignof] = ACTIONS(1129), + [anon_sym_offsetof] = ACTIONS(1129), + [anon_sym__Generic] = ACTIONS(1129), + [anon_sym_asm] = ACTIONS(1129), + [anon_sym___asm__] = ACTIONS(1129), + [sym_number_literal] = ACTIONS(1127), + [anon_sym_L_SQUOTE] = ACTIONS(1127), + [anon_sym_u_SQUOTE] = ACTIONS(1127), + [anon_sym_U_SQUOTE] = ACTIONS(1127), + [anon_sym_u8_SQUOTE] = ACTIONS(1127), + [anon_sym_SQUOTE] = ACTIONS(1127), + [anon_sym_L_DQUOTE] = ACTIONS(1127), + [anon_sym_u_DQUOTE] = ACTIONS(1127), + [anon_sym_U_DQUOTE] = ACTIONS(1127), + [anon_sym_u8_DQUOTE] = ACTIONS(1127), + [anon_sym_DQUOTE] = ACTIONS(1127), + [sym_true] = ACTIONS(1129), + [sym_false] = ACTIONS(1129), + [anon_sym_NULL] = ACTIONS(1129), + [anon_sym_nullptr] = ACTIONS(1129), [sym_comment] = ACTIONS(3), }, - [271] = { - [sym_identifier] = ACTIONS(1123), - [aux_sym_preproc_include_token1] = ACTIONS(1123), - [aux_sym_preproc_def_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token2] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), - [sym_preproc_directive] = ACTIONS(1123), - [anon_sym_LPAREN2] = ACTIONS(1125), - [anon_sym_BANG] = ACTIONS(1125), - [anon_sym_TILDE] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym___extension__] = ACTIONS(1123), - [anon_sym_typedef] = ACTIONS(1123), - [anon_sym_extern] = ACTIONS(1123), - [anon_sym___attribute__] = ACTIONS(1123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), - [anon_sym___declspec] = ACTIONS(1123), - [anon_sym___cdecl] = ACTIONS(1123), - [anon_sym___clrcall] = ACTIONS(1123), - [anon_sym___stdcall] = ACTIONS(1123), - [anon_sym___fastcall] = ACTIONS(1123), - [anon_sym___thiscall] = ACTIONS(1123), - [anon_sym___vectorcall] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_signed] = ACTIONS(1123), - [anon_sym_unsigned] = ACTIONS(1123), - [anon_sym_long] = ACTIONS(1123), - [anon_sym_short] = ACTIONS(1123), - [anon_sym_static] = ACTIONS(1123), - [anon_sym_auto] = ACTIONS(1123), - [anon_sym_register] = ACTIONS(1123), - [anon_sym_inline] = ACTIONS(1123), - [anon_sym___inline] = ACTIONS(1123), - [anon_sym___inline__] = ACTIONS(1123), - [anon_sym___forceinline] = ACTIONS(1123), - [anon_sym_thread_local] = ACTIONS(1123), - [anon_sym___thread] = ACTIONS(1123), - [anon_sym_const] = ACTIONS(1123), - [anon_sym_constexpr] = ACTIONS(1123), - [anon_sym_volatile] = ACTIONS(1123), - [anon_sym_restrict] = ACTIONS(1123), - [anon_sym___restrict__] = ACTIONS(1123), - [anon_sym__Atomic] = ACTIONS(1123), - [anon_sym__Noreturn] = ACTIONS(1123), - [anon_sym_noreturn] = ACTIONS(1123), - [anon_sym_alignas] = ACTIONS(1123), - [anon_sym__Alignas] = ACTIONS(1123), - [sym_primitive_type] = ACTIONS(1123), - [anon_sym_enum] = ACTIONS(1123), - [anon_sym_struct] = ACTIONS(1123), - [anon_sym_union] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1123), - [anon_sym_else] = ACTIONS(1123), - [anon_sym_switch] = ACTIONS(1123), - [anon_sym_case] = ACTIONS(1123), - [anon_sym_default] = ACTIONS(1123), - [anon_sym_while] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(1123), - [anon_sym_for] = ACTIONS(1123), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_break] = ACTIONS(1123), - [anon_sym_continue] = ACTIONS(1123), - [anon_sym_goto] = ACTIONS(1123), - [anon_sym___try] = ACTIONS(1123), - [anon_sym___leave] = ACTIONS(1123), - [anon_sym_DASH_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1125), - [anon_sym_sizeof] = ACTIONS(1123), - [anon_sym___alignof__] = ACTIONS(1123), - [anon_sym___alignof] = ACTIONS(1123), - [anon_sym__alignof] = ACTIONS(1123), - [anon_sym_alignof] = ACTIONS(1123), - [anon_sym__Alignof] = ACTIONS(1123), - [anon_sym_offsetof] = ACTIONS(1123), - [anon_sym__Generic] = ACTIONS(1123), - [anon_sym_asm] = ACTIONS(1123), - [anon_sym___asm__] = ACTIONS(1123), - [sym_number_literal] = ACTIONS(1125), - [anon_sym_L_SQUOTE] = ACTIONS(1125), - [anon_sym_u_SQUOTE] = ACTIONS(1125), - [anon_sym_U_SQUOTE] = ACTIONS(1125), - [anon_sym_u8_SQUOTE] = ACTIONS(1125), - [anon_sym_SQUOTE] = ACTIONS(1125), - [anon_sym_L_DQUOTE] = ACTIONS(1125), - [anon_sym_u_DQUOTE] = ACTIONS(1125), - [anon_sym_U_DQUOTE] = ACTIONS(1125), - [anon_sym_u8_DQUOTE] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(1125), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [anon_sym_NULL] = ACTIONS(1123), - [anon_sym_nullptr] = ACTIONS(1123), - [sym_comment] = ACTIONS(3), - }, - [272] = { - [sym_identifier] = ACTIONS(1123), - [aux_sym_preproc_include_token1] = ACTIONS(1123), - [aux_sym_preproc_def_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token2] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), - [sym_preproc_directive] = ACTIONS(1123), - [anon_sym_LPAREN2] = ACTIONS(1125), - [anon_sym_BANG] = ACTIONS(1125), - [anon_sym_TILDE] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym___extension__] = ACTIONS(1123), - [anon_sym_typedef] = ACTIONS(1123), - [anon_sym_extern] = ACTIONS(1123), - [anon_sym___attribute__] = ACTIONS(1123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), - [anon_sym___declspec] = ACTIONS(1123), - [anon_sym___cdecl] = ACTIONS(1123), - [anon_sym___clrcall] = ACTIONS(1123), - [anon_sym___stdcall] = ACTIONS(1123), - [anon_sym___fastcall] = ACTIONS(1123), - [anon_sym___thiscall] = ACTIONS(1123), - [anon_sym___vectorcall] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_signed] = ACTIONS(1123), - [anon_sym_unsigned] = ACTIONS(1123), - [anon_sym_long] = ACTIONS(1123), - [anon_sym_short] = ACTIONS(1123), - [anon_sym_static] = ACTIONS(1123), - [anon_sym_auto] = ACTIONS(1123), - [anon_sym_register] = ACTIONS(1123), - [anon_sym_inline] = ACTIONS(1123), - [anon_sym___inline] = ACTIONS(1123), - [anon_sym___inline__] = ACTIONS(1123), - [anon_sym___forceinline] = ACTIONS(1123), - [anon_sym_thread_local] = ACTIONS(1123), - [anon_sym___thread] = ACTIONS(1123), - [anon_sym_const] = ACTIONS(1123), - [anon_sym_constexpr] = ACTIONS(1123), - [anon_sym_volatile] = ACTIONS(1123), - [anon_sym_restrict] = ACTIONS(1123), - [anon_sym___restrict__] = ACTIONS(1123), - [anon_sym__Atomic] = ACTIONS(1123), - [anon_sym__Noreturn] = ACTIONS(1123), - [anon_sym_noreturn] = ACTIONS(1123), - [anon_sym_alignas] = ACTIONS(1123), - [anon_sym__Alignas] = ACTIONS(1123), - [sym_primitive_type] = ACTIONS(1123), - [anon_sym_enum] = ACTIONS(1123), - [anon_sym_struct] = ACTIONS(1123), - [anon_sym_union] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1123), - [anon_sym_else] = ACTIONS(1123), - [anon_sym_switch] = ACTIONS(1123), - [anon_sym_case] = ACTIONS(1123), - [anon_sym_default] = ACTIONS(1123), - [anon_sym_while] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(1123), - [anon_sym_for] = ACTIONS(1123), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_break] = ACTIONS(1123), - [anon_sym_continue] = ACTIONS(1123), - [anon_sym_goto] = ACTIONS(1123), - [anon_sym___try] = ACTIONS(1123), - [anon_sym___leave] = ACTIONS(1123), - [anon_sym_DASH_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1125), - [anon_sym_sizeof] = ACTIONS(1123), - [anon_sym___alignof__] = ACTIONS(1123), - [anon_sym___alignof] = ACTIONS(1123), - [anon_sym__alignof] = ACTIONS(1123), - [anon_sym_alignof] = ACTIONS(1123), - [anon_sym__Alignof] = ACTIONS(1123), - [anon_sym_offsetof] = ACTIONS(1123), - [anon_sym__Generic] = ACTIONS(1123), - [anon_sym_asm] = ACTIONS(1123), - [anon_sym___asm__] = ACTIONS(1123), - [sym_number_literal] = ACTIONS(1125), - [anon_sym_L_SQUOTE] = ACTIONS(1125), - [anon_sym_u_SQUOTE] = ACTIONS(1125), - [anon_sym_U_SQUOTE] = ACTIONS(1125), - [anon_sym_u8_SQUOTE] = ACTIONS(1125), - [anon_sym_SQUOTE] = ACTIONS(1125), - [anon_sym_L_DQUOTE] = ACTIONS(1125), - [anon_sym_u_DQUOTE] = ACTIONS(1125), - [anon_sym_U_DQUOTE] = ACTIONS(1125), - [anon_sym_u8_DQUOTE] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(1125), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [anon_sym_NULL] = ACTIONS(1123), - [anon_sym_nullptr] = ACTIONS(1123), + [229] = { + [sym_identifier] = ACTIONS(1247), + [aux_sym_preproc_include_token1] = ACTIONS(1247), + [aux_sym_preproc_def_token1] = ACTIONS(1247), + [aux_sym_preproc_if_token1] = ACTIONS(1247), + [aux_sym_preproc_if_token2] = ACTIONS(1247), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1247), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1247), + [sym_preproc_directive] = ACTIONS(1247), + [anon_sym_LPAREN2] = ACTIONS(1249), + [anon_sym_BANG] = ACTIONS(1249), + [anon_sym_TILDE] = ACTIONS(1249), + [anon_sym_DASH] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(1247), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(1247), + [anon_sym_typedef] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1247), + [anon_sym___attribute__] = ACTIONS(1247), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1249), + [anon_sym___declspec] = ACTIONS(1247), + [anon_sym___cdecl] = ACTIONS(1247), + [anon_sym___clrcall] = ACTIONS(1247), + [anon_sym___stdcall] = ACTIONS(1247), + [anon_sym___fastcall] = ACTIONS(1247), + [anon_sym___thiscall] = ACTIONS(1247), + [anon_sym___vectorcall] = ACTIONS(1247), + [anon_sym_LBRACE] = ACTIONS(1249), + [anon_sym_signed] = ACTIONS(1247), + [anon_sym_unsigned] = ACTIONS(1247), + [anon_sym_long] = ACTIONS(1247), + [anon_sym_short] = ACTIONS(1247), + [anon_sym_static] = ACTIONS(1247), + [anon_sym_auto] = ACTIONS(1247), + [anon_sym_register] = ACTIONS(1247), + [anon_sym_inline] = ACTIONS(1247), + [anon_sym___inline] = ACTIONS(1247), + [anon_sym___inline__] = ACTIONS(1247), + [anon_sym___forceinline] = ACTIONS(1247), + [anon_sym_thread_local] = ACTIONS(1247), + [anon_sym___thread] = ACTIONS(1247), + [anon_sym_const] = ACTIONS(1247), + [anon_sym_constexpr] = ACTIONS(1247), + [anon_sym_volatile] = ACTIONS(1247), + [anon_sym_restrict] = ACTIONS(1247), + [anon_sym___restrict__] = ACTIONS(1247), + [anon_sym__Atomic] = ACTIONS(1247), + [anon_sym__Noreturn] = ACTIONS(1247), + [anon_sym_noreturn] = ACTIONS(1247), + [anon_sym_alignas] = ACTIONS(1247), + [anon_sym__Alignas] = ACTIONS(1247), + [sym_primitive_type] = ACTIONS(1247), + [anon_sym_enum] = ACTIONS(1247), + [anon_sym_struct] = ACTIONS(1247), + [anon_sym_union] = ACTIONS(1247), + [anon_sym_if] = ACTIONS(1247), + [anon_sym_else] = ACTIONS(1247), + [anon_sym_switch] = ACTIONS(1247), + [anon_sym_case] = ACTIONS(1247), + [anon_sym_default] = ACTIONS(1247), + [anon_sym_while] = ACTIONS(1247), + [anon_sym_do] = ACTIONS(1247), + [anon_sym_for] = ACTIONS(1247), + [anon_sym_return] = ACTIONS(1247), + [anon_sym_break] = ACTIONS(1247), + [anon_sym_continue] = ACTIONS(1247), + [anon_sym_goto] = ACTIONS(1247), + [anon_sym___try] = ACTIONS(1247), + [anon_sym___leave] = ACTIONS(1247), + [anon_sym_DASH_DASH] = ACTIONS(1249), + [anon_sym_PLUS_PLUS] = ACTIONS(1249), + [anon_sym_sizeof] = ACTIONS(1247), + [anon_sym___alignof__] = ACTIONS(1247), + [anon_sym___alignof] = ACTIONS(1247), + [anon_sym__alignof] = ACTIONS(1247), + [anon_sym_alignof] = ACTIONS(1247), + [anon_sym__Alignof] = ACTIONS(1247), + [anon_sym_offsetof] = ACTIONS(1247), + [anon_sym__Generic] = ACTIONS(1247), + [anon_sym_asm] = ACTIONS(1247), + [anon_sym___asm__] = ACTIONS(1247), + [sym_number_literal] = ACTIONS(1249), + [anon_sym_L_SQUOTE] = ACTIONS(1249), + [anon_sym_u_SQUOTE] = ACTIONS(1249), + [anon_sym_U_SQUOTE] = ACTIONS(1249), + [anon_sym_u8_SQUOTE] = ACTIONS(1249), + [anon_sym_SQUOTE] = ACTIONS(1249), + [anon_sym_L_DQUOTE] = ACTIONS(1249), + [anon_sym_u_DQUOTE] = ACTIONS(1249), + [anon_sym_U_DQUOTE] = ACTIONS(1249), + [anon_sym_u8_DQUOTE] = ACTIONS(1249), + [anon_sym_DQUOTE] = ACTIONS(1249), + [sym_true] = ACTIONS(1247), + [sym_false] = ACTIONS(1247), + [anon_sym_NULL] = ACTIONS(1247), + [anon_sym_nullptr] = ACTIONS(1247), [sym_comment] = ACTIONS(3), }, - [273] = { - [sym_identifier] = ACTIONS(1215), - [aux_sym_preproc_include_token1] = ACTIONS(1215), - [aux_sym_preproc_def_token1] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1215), - [aux_sym_preproc_if_token2] = ACTIONS(1215), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1215), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1215), - [sym_preproc_directive] = ACTIONS(1215), - [anon_sym_LPAREN2] = ACTIONS(1217), - [anon_sym_BANG] = ACTIONS(1217), - [anon_sym_TILDE] = ACTIONS(1217), - [anon_sym_DASH] = ACTIONS(1215), - [anon_sym_PLUS] = ACTIONS(1215), - [anon_sym_STAR] = ACTIONS(1217), - [anon_sym_AMP] = ACTIONS(1217), - [anon_sym_SEMI] = ACTIONS(1217), - [anon_sym___extension__] = ACTIONS(1215), - [anon_sym_typedef] = ACTIONS(1215), - [anon_sym_extern] = ACTIONS(1215), - [anon_sym___attribute__] = ACTIONS(1215), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1217), - [anon_sym___declspec] = ACTIONS(1215), - [anon_sym___cdecl] = ACTIONS(1215), - [anon_sym___clrcall] = ACTIONS(1215), - [anon_sym___stdcall] = ACTIONS(1215), - [anon_sym___fastcall] = ACTIONS(1215), - [anon_sym___thiscall] = ACTIONS(1215), - [anon_sym___vectorcall] = ACTIONS(1215), - [anon_sym_LBRACE] = ACTIONS(1217), - [anon_sym_signed] = ACTIONS(1215), - [anon_sym_unsigned] = ACTIONS(1215), - [anon_sym_long] = ACTIONS(1215), - [anon_sym_short] = ACTIONS(1215), - [anon_sym_static] = ACTIONS(1215), - [anon_sym_auto] = ACTIONS(1215), - [anon_sym_register] = ACTIONS(1215), - [anon_sym_inline] = ACTIONS(1215), - [anon_sym___inline] = ACTIONS(1215), - [anon_sym___inline__] = ACTIONS(1215), - [anon_sym___forceinline] = ACTIONS(1215), - [anon_sym_thread_local] = ACTIONS(1215), - [anon_sym___thread] = ACTIONS(1215), - [anon_sym_const] = ACTIONS(1215), - [anon_sym_constexpr] = ACTIONS(1215), - [anon_sym_volatile] = ACTIONS(1215), - [anon_sym_restrict] = ACTIONS(1215), - [anon_sym___restrict__] = ACTIONS(1215), - [anon_sym__Atomic] = ACTIONS(1215), - [anon_sym__Noreturn] = ACTIONS(1215), - [anon_sym_noreturn] = ACTIONS(1215), - [anon_sym_alignas] = ACTIONS(1215), - [anon_sym__Alignas] = 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(1215), - [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___try] = ACTIONS(1215), - [anon_sym___leave] = ACTIONS(1215), - [anon_sym_DASH_DASH] = ACTIONS(1217), - [anon_sym_PLUS_PLUS] = ACTIONS(1217), - [anon_sym_sizeof] = ACTIONS(1215), - [anon_sym___alignof__] = ACTIONS(1215), - [anon_sym___alignof] = ACTIONS(1215), - [anon_sym__alignof] = ACTIONS(1215), - [anon_sym_alignof] = ACTIONS(1215), - [anon_sym__Alignof] = ACTIONS(1215), - [anon_sym_offsetof] = ACTIONS(1215), - [anon_sym__Generic] = ACTIONS(1215), - [anon_sym_asm] = ACTIONS(1215), - [anon_sym___asm__] = ACTIONS(1215), - [sym_number_literal] = ACTIONS(1217), - [anon_sym_L_SQUOTE] = ACTIONS(1217), - [anon_sym_u_SQUOTE] = ACTIONS(1217), - [anon_sym_U_SQUOTE] = ACTIONS(1217), - [anon_sym_u8_SQUOTE] = ACTIONS(1217), - [anon_sym_SQUOTE] = ACTIONS(1217), - [anon_sym_L_DQUOTE] = ACTIONS(1217), - [anon_sym_u_DQUOTE] = ACTIONS(1217), - [anon_sym_U_DQUOTE] = ACTIONS(1217), - [anon_sym_u8_DQUOTE] = ACTIONS(1217), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_true] = ACTIONS(1215), - [sym_false] = ACTIONS(1215), - [anon_sym_NULL] = ACTIONS(1215), - [anon_sym_nullptr] = ACTIONS(1215), + [230] = { + [sym_identifier] = ACTIONS(1231), + [aux_sym_preproc_include_token1] = ACTIONS(1231), + [aux_sym_preproc_def_token1] = ACTIONS(1231), + [aux_sym_preproc_if_token1] = ACTIONS(1231), + [aux_sym_preproc_if_token2] = ACTIONS(1231), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1231), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1231), + [sym_preproc_directive] = ACTIONS(1231), + [anon_sym_LPAREN2] = ACTIONS(1233), + [anon_sym_BANG] = ACTIONS(1233), + [anon_sym_TILDE] = ACTIONS(1233), + [anon_sym_DASH] = ACTIONS(1231), + [anon_sym_PLUS] = ACTIONS(1231), + [anon_sym_STAR] = ACTIONS(1233), + [anon_sym_AMP] = ACTIONS(1233), + [anon_sym_SEMI] = ACTIONS(1233), + [anon_sym___extension__] = ACTIONS(1231), + [anon_sym_typedef] = ACTIONS(1231), + [anon_sym_extern] = ACTIONS(1231), + [anon_sym___attribute__] = ACTIONS(1231), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1233), + [anon_sym___declspec] = ACTIONS(1231), + [anon_sym___cdecl] = ACTIONS(1231), + [anon_sym___clrcall] = ACTIONS(1231), + [anon_sym___stdcall] = ACTIONS(1231), + [anon_sym___fastcall] = ACTIONS(1231), + [anon_sym___thiscall] = ACTIONS(1231), + [anon_sym___vectorcall] = ACTIONS(1231), + [anon_sym_LBRACE] = ACTIONS(1233), + [anon_sym_signed] = ACTIONS(1231), + [anon_sym_unsigned] = ACTIONS(1231), + [anon_sym_long] = ACTIONS(1231), + [anon_sym_short] = ACTIONS(1231), + [anon_sym_static] = ACTIONS(1231), + [anon_sym_auto] = ACTIONS(1231), + [anon_sym_register] = ACTIONS(1231), + [anon_sym_inline] = ACTIONS(1231), + [anon_sym___inline] = ACTIONS(1231), + [anon_sym___inline__] = ACTIONS(1231), + [anon_sym___forceinline] = ACTIONS(1231), + [anon_sym_thread_local] = ACTIONS(1231), + [anon_sym___thread] = ACTIONS(1231), + [anon_sym_const] = ACTIONS(1231), + [anon_sym_constexpr] = ACTIONS(1231), + [anon_sym_volatile] = ACTIONS(1231), + [anon_sym_restrict] = ACTIONS(1231), + [anon_sym___restrict__] = ACTIONS(1231), + [anon_sym__Atomic] = ACTIONS(1231), + [anon_sym__Noreturn] = ACTIONS(1231), + [anon_sym_noreturn] = ACTIONS(1231), + [anon_sym_alignas] = ACTIONS(1231), + [anon_sym__Alignas] = ACTIONS(1231), + [sym_primitive_type] = ACTIONS(1231), + [anon_sym_enum] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1231), + [anon_sym_union] = ACTIONS(1231), + [anon_sym_if] = ACTIONS(1231), + [anon_sym_else] = ACTIONS(1231), + [anon_sym_switch] = ACTIONS(1231), + [anon_sym_case] = ACTIONS(1231), + [anon_sym_default] = ACTIONS(1231), + [anon_sym_while] = ACTIONS(1231), + [anon_sym_do] = ACTIONS(1231), + [anon_sym_for] = ACTIONS(1231), + [anon_sym_return] = ACTIONS(1231), + [anon_sym_break] = ACTIONS(1231), + [anon_sym_continue] = ACTIONS(1231), + [anon_sym_goto] = ACTIONS(1231), + [anon_sym___try] = ACTIONS(1231), + [anon_sym___leave] = ACTIONS(1231), + [anon_sym_DASH_DASH] = ACTIONS(1233), + [anon_sym_PLUS_PLUS] = ACTIONS(1233), + [anon_sym_sizeof] = ACTIONS(1231), + [anon_sym___alignof__] = ACTIONS(1231), + [anon_sym___alignof] = ACTIONS(1231), + [anon_sym__alignof] = ACTIONS(1231), + [anon_sym_alignof] = ACTIONS(1231), + [anon_sym__Alignof] = ACTIONS(1231), + [anon_sym_offsetof] = ACTIONS(1231), + [anon_sym__Generic] = ACTIONS(1231), + [anon_sym_asm] = ACTIONS(1231), + [anon_sym___asm__] = ACTIONS(1231), + [sym_number_literal] = ACTIONS(1233), + [anon_sym_L_SQUOTE] = ACTIONS(1233), + [anon_sym_u_SQUOTE] = ACTIONS(1233), + [anon_sym_U_SQUOTE] = ACTIONS(1233), + [anon_sym_u8_SQUOTE] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(1233), + [anon_sym_L_DQUOTE] = ACTIONS(1233), + [anon_sym_u_DQUOTE] = ACTIONS(1233), + [anon_sym_U_DQUOTE] = ACTIONS(1233), + [anon_sym_u8_DQUOTE] = ACTIONS(1233), + [anon_sym_DQUOTE] = ACTIONS(1233), + [sym_true] = ACTIONS(1231), + [sym_false] = ACTIONS(1231), + [anon_sym_NULL] = ACTIONS(1231), + [anon_sym_nullptr] = ACTIONS(1231), [sym_comment] = ACTIONS(3), }, - [274] = { - [sym_identifier] = ACTIONS(1123), - [aux_sym_preproc_include_token1] = ACTIONS(1123), - [aux_sym_preproc_def_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), - [sym_preproc_directive] = ACTIONS(1123), - [anon_sym_LPAREN2] = ACTIONS(1125), - [anon_sym_BANG] = ACTIONS(1125), - [anon_sym_TILDE] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym___extension__] = ACTIONS(1123), - [anon_sym_typedef] = ACTIONS(1123), - [anon_sym_extern] = ACTIONS(1123), - [anon_sym___attribute__] = ACTIONS(1123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), - [anon_sym___declspec] = ACTIONS(1123), - [anon_sym___cdecl] = ACTIONS(1123), - [anon_sym___clrcall] = ACTIONS(1123), - [anon_sym___stdcall] = ACTIONS(1123), - [anon_sym___fastcall] = ACTIONS(1123), - [anon_sym___thiscall] = ACTIONS(1123), - [anon_sym___vectorcall] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_RBRACE] = ACTIONS(1125), - [anon_sym_signed] = ACTIONS(1123), - [anon_sym_unsigned] = ACTIONS(1123), - [anon_sym_long] = ACTIONS(1123), - [anon_sym_short] = ACTIONS(1123), - [anon_sym_static] = ACTIONS(1123), - [anon_sym_auto] = ACTIONS(1123), - [anon_sym_register] = ACTIONS(1123), - [anon_sym_inline] = ACTIONS(1123), - [anon_sym___inline] = ACTIONS(1123), - [anon_sym___inline__] = ACTIONS(1123), - [anon_sym___forceinline] = ACTIONS(1123), - [anon_sym_thread_local] = ACTIONS(1123), - [anon_sym___thread] = ACTIONS(1123), - [anon_sym_const] = ACTIONS(1123), - [anon_sym_constexpr] = ACTIONS(1123), - [anon_sym_volatile] = ACTIONS(1123), - [anon_sym_restrict] = ACTIONS(1123), - [anon_sym___restrict__] = ACTIONS(1123), - [anon_sym__Atomic] = ACTIONS(1123), - [anon_sym__Noreturn] = ACTIONS(1123), - [anon_sym_noreturn] = ACTIONS(1123), - [anon_sym_alignas] = ACTIONS(1123), - [anon_sym__Alignas] = ACTIONS(1123), - [sym_primitive_type] = ACTIONS(1123), - [anon_sym_enum] = ACTIONS(1123), - [anon_sym_struct] = ACTIONS(1123), - [anon_sym_union] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1123), - [anon_sym_else] = ACTIONS(1123), - [anon_sym_switch] = ACTIONS(1123), - [anon_sym_case] = ACTIONS(1123), - [anon_sym_default] = ACTIONS(1123), - [anon_sym_while] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(1123), - [anon_sym_for] = ACTIONS(1123), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_break] = ACTIONS(1123), - [anon_sym_continue] = ACTIONS(1123), - [anon_sym_goto] = ACTIONS(1123), - [anon_sym___try] = ACTIONS(1123), - [anon_sym___leave] = ACTIONS(1123), - [anon_sym_DASH_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1125), - [anon_sym_sizeof] = ACTIONS(1123), - [anon_sym___alignof__] = ACTIONS(1123), - [anon_sym___alignof] = ACTIONS(1123), - [anon_sym__alignof] = ACTIONS(1123), - [anon_sym_alignof] = ACTIONS(1123), - [anon_sym__Alignof] = ACTIONS(1123), - [anon_sym_offsetof] = ACTIONS(1123), - [anon_sym__Generic] = ACTIONS(1123), - [anon_sym_asm] = ACTIONS(1123), - [anon_sym___asm__] = ACTIONS(1123), - [sym_number_literal] = ACTIONS(1125), - [anon_sym_L_SQUOTE] = ACTIONS(1125), - [anon_sym_u_SQUOTE] = ACTIONS(1125), - [anon_sym_U_SQUOTE] = ACTIONS(1125), - [anon_sym_u8_SQUOTE] = ACTIONS(1125), - [anon_sym_SQUOTE] = ACTIONS(1125), - [anon_sym_L_DQUOTE] = ACTIONS(1125), - [anon_sym_u_DQUOTE] = ACTIONS(1125), - [anon_sym_U_DQUOTE] = ACTIONS(1125), - [anon_sym_u8_DQUOTE] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(1125), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [anon_sym_NULL] = ACTIONS(1123), - [anon_sym_nullptr] = ACTIONS(1123), + [231] = { + [sym_identifier] = ACTIONS(1179), + [aux_sym_preproc_include_token1] = ACTIONS(1179), + [aux_sym_preproc_def_token1] = ACTIONS(1179), + [aux_sym_preproc_if_token1] = ACTIONS(1179), + [aux_sym_preproc_if_token2] = ACTIONS(1179), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1179), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1179), + [sym_preproc_directive] = ACTIONS(1179), + [anon_sym_LPAREN2] = ACTIONS(1181), + [anon_sym_BANG] = ACTIONS(1181), + [anon_sym_TILDE] = ACTIONS(1181), + [anon_sym_DASH] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1181), + [anon_sym_AMP] = ACTIONS(1181), + [anon_sym_SEMI] = ACTIONS(1181), + [anon_sym___extension__] = ACTIONS(1179), + [anon_sym_typedef] = ACTIONS(1179), + [anon_sym_extern] = ACTIONS(1179), + [anon_sym___attribute__] = ACTIONS(1179), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1181), + [anon_sym___declspec] = ACTIONS(1179), + [anon_sym___cdecl] = ACTIONS(1179), + [anon_sym___clrcall] = ACTIONS(1179), + [anon_sym___stdcall] = ACTIONS(1179), + [anon_sym___fastcall] = ACTIONS(1179), + [anon_sym___thiscall] = ACTIONS(1179), + [anon_sym___vectorcall] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_signed] = ACTIONS(1179), + [anon_sym_unsigned] = ACTIONS(1179), + [anon_sym_long] = ACTIONS(1179), + [anon_sym_short] = ACTIONS(1179), + [anon_sym_static] = ACTIONS(1179), + [anon_sym_auto] = ACTIONS(1179), + [anon_sym_register] = ACTIONS(1179), + [anon_sym_inline] = ACTIONS(1179), + [anon_sym___inline] = ACTIONS(1179), + [anon_sym___inline__] = ACTIONS(1179), + [anon_sym___forceinline] = ACTIONS(1179), + [anon_sym_thread_local] = ACTIONS(1179), + [anon_sym___thread] = ACTIONS(1179), + [anon_sym_const] = ACTIONS(1179), + [anon_sym_constexpr] = ACTIONS(1179), + [anon_sym_volatile] = ACTIONS(1179), + [anon_sym_restrict] = ACTIONS(1179), + [anon_sym___restrict__] = ACTIONS(1179), + [anon_sym__Atomic] = ACTIONS(1179), + [anon_sym__Noreturn] = ACTIONS(1179), + [anon_sym_noreturn] = ACTIONS(1179), + [anon_sym_alignas] = ACTIONS(1179), + [anon_sym__Alignas] = ACTIONS(1179), + [sym_primitive_type] = ACTIONS(1179), + [anon_sym_enum] = ACTIONS(1179), + [anon_sym_struct] = ACTIONS(1179), + [anon_sym_union] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_else] = ACTIONS(1179), + [anon_sym_switch] = ACTIONS(1179), + [anon_sym_case] = ACTIONS(1179), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_goto] = ACTIONS(1179), + [anon_sym___try] = ACTIONS(1179), + [anon_sym___leave] = ACTIONS(1179), + [anon_sym_DASH_DASH] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(1181), + [anon_sym_sizeof] = ACTIONS(1179), + [anon_sym___alignof__] = ACTIONS(1179), + [anon_sym___alignof] = ACTIONS(1179), + [anon_sym__alignof] = ACTIONS(1179), + [anon_sym_alignof] = ACTIONS(1179), + [anon_sym__Alignof] = ACTIONS(1179), + [anon_sym_offsetof] = ACTIONS(1179), + [anon_sym__Generic] = ACTIONS(1179), + [anon_sym_asm] = ACTIONS(1179), + [anon_sym___asm__] = ACTIONS(1179), + [sym_number_literal] = ACTIONS(1181), + [anon_sym_L_SQUOTE] = ACTIONS(1181), + [anon_sym_u_SQUOTE] = ACTIONS(1181), + [anon_sym_U_SQUOTE] = ACTIONS(1181), + [anon_sym_u8_SQUOTE] = ACTIONS(1181), + [anon_sym_SQUOTE] = ACTIONS(1181), + [anon_sym_L_DQUOTE] = ACTIONS(1181), + [anon_sym_u_DQUOTE] = ACTIONS(1181), + [anon_sym_U_DQUOTE] = ACTIONS(1181), + [anon_sym_u8_DQUOTE] = ACTIONS(1181), + [anon_sym_DQUOTE] = ACTIONS(1181), + [sym_true] = ACTIONS(1179), + [sym_false] = ACTIONS(1179), + [anon_sym_NULL] = ACTIONS(1179), + [anon_sym_nullptr] = ACTIONS(1179), [sym_comment] = ACTIONS(3), }, - [275] = { + [232] = { + [sym_identifier] = ACTIONS(1235), + [aux_sym_preproc_include_token1] = ACTIONS(1235), + [aux_sym_preproc_def_token1] = ACTIONS(1235), + [aux_sym_preproc_if_token1] = ACTIONS(1235), + [aux_sym_preproc_if_token2] = ACTIONS(1235), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1235), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1235), + [sym_preproc_directive] = ACTIONS(1235), + [anon_sym_LPAREN2] = ACTIONS(1237), + [anon_sym_BANG] = ACTIONS(1237), + [anon_sym_TILDE] = ACTIONS(1237), + [anon_sym_DASH] = ACTIONS(1235), + [anon_sym_PLUS] = ACTIONS(1235), + [anon_sym_STAR] = ACTIONS(1237), + [anon_sym_AMP] = ACTIONS(1237), + [anon_sym_SEMI] = ACTIONS(1237), + [anon_sym___extension__] = ACTIONS(1235), + [anon_sym_typedef] = ACTIONS(1235), + [anon_sym_extern] = ACTIONS(1235), + [anon_sym___attribute__] = ACTIONS(1235), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1237), + [anon_sym___declspec] = ACTIONS(1235), + [anon_sym___cdecl] = ACTIONS(1235), + [anon_sym___clrcall] = ACTIONS(1235), + [anon_sym___stdcall] = ACTIONS(1235), + [anon_sym___fastcall] = ACTIONS(1235), + [anon_sym___thiscall] = ACTIONS(1235), + [anon_sym___vectorcall] = ACTIONS(1235), + [anon_sym_LBRACE] = ACTIONS(1237), + [anon_sym_signed] = ACTIONS(1235), + [anon_sym_unsigned] = ACTIONS(1235), + [anon_sym_long] = ACTIONS(1235), + [anon_sym_short] = ACTIONS(1235), + [anon_sym_static] = ACTIONS(1235), + [anon_sym_auto] = ACTIONS(1235), + [anon_sym_register] = ACTIONS(1235), + [anon_sym_inline] = ACTIONS(1235), + [anon_sym___inline] = ACTIONS(1235), + [anon_sym___inline__] = ACTIONS(1235), + [anon_sym___forceinline] = ACTIONS(1235), + [anon_sym_thread_local] = ACTIONS(1235), + [anon_sym___thread] = ACTIONS(1235), + [anon_sym_const] = ACTIONS(1235), + [anon_sym_constexpr] = ACTIONS(1235), + [anon_sym_volatile] = ACTIONS(1235), + [anon_sym_restrict] = ACTIONS(1235), + [anon_sym___restrict__] = ACTIONS(1235), + [anon_sym__Atomic] = ACTIONS(1235), + [anon_sym__Noreturn] = ACTIONS(1235), + [anon_sym_noreturn] = ACTIONS(1235), + [anon_sym_alignas] = ACTIONS(1235), + [anon_sym__Alignas] = 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___try] = ACTIONS(1235), + [anon_sym___leave] = ACTIONS(1235), + [anon_sym_DASH_DASH] = ACTIONS(1237), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_sizeof] = ACTIONS(1235), + [anon_sym___alignof__] = ACTIONS(1235), + [anon_sym___alignof] = ACTIONS(1235), + [anon_sym__alignof] = ACTIONS(1235), + [anon_sym_alignof] = ACTIONS(1235), + [anon_sym__Alignof] = ACTIONS(1235), + [anon_sym_offsetof] = ACTIONS(1235), + [anon_sym__Generic] = ACTIONS(1235), + [anon_sym_asm] = ACTIONS(1235), + [anon_sym___asm__] = ACTIONS(1235), + [sym_number_literal] = ACTIONS(1237), + [anon_sym_L_SQUOTE] = ACTIONS(1237), + [anon_sym_u_SQUOTE] = ACTIONS(1237), + [anon_sym_U_SQUOTE] = ACTIONS(1237), + [anon_sym_u8_SQUOTE] = ACTIONS(1237), + [anon_sym_SQUOTE] = ACTIONS(1237), + [anon_sym_L_DQUOTE] = ACTIONS(1237), + [anon_sym_u_DQUOTE] = ACTIONS(1237), + [anon_sym_U_DQUOTE] = ACTIONS(1237), + [anon_sym_u8_DQUOTE] = ACTIONS(1237), + [anon_sym_DQUOTE] = ACTIONS(1237), + [sym_true] = ACTIONS(1235), + [sym_false] = ACTIONS(1235), + [anon_sym_NULL] = ACTIONS(1235), + [anon_sym_nullptr] = ACTIONS(1235), + [sym_comment] = ACTIONS(3), + }, + [233] = { + [sym_identifier] = ACTIONS(1227), + [aux_sym_preproc_include_token1] = ACTIONS(1227), + [aux_sym_preproc_def_token1] = ACTIONS(1227), + [aux_sym_preproc_if_token1] = ACTIONS(1227), + [aux_sym_preproc_if_token2] = ACTIONS(1227), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1227), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1227), + [sym_preproc_directive] = ACTIONS(1227), + [anon_sym_LPAREN2] = ACTIONS(1229), + [anon_sym_BANG] = ACTIONS(1229), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1227), + [anon_sym_STAR] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1229), + [anon_sym_SEMI] = ACTIONS(1229), + [anon_sym___extension__] = ACTIONS(1227), + [anon_sym_typedef] = ACTIONS(1227), + [anon_sym_extern] = ACTIONS(1227), + [anon_sym___attribute__] = ACTIONS(1227), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1229), + [anon_sym___declspec] = ACTIONS(1227), + [anon_sym___cdecl] = ACTIONS(1227), + [anon_sym___clrcall] = ACTIONS(1227), + [anon_sym___stdcall] = ACTIONS(1227), + [anon_sym___fastcall] = ACTIONS(1227), + [anon_sym___thiscall] = ACTIONS(1227), + [anon_sym___vectorcall] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(1229), + [anon_sym_signed] = ACTIONS(1227), + [anon_sym_unsigned] = ACTIONS(1227), + [anon_sym_long] = ACTIONS(1227), + [anon_sym_short] = ACTIONS(1227), + [anon_sym_static] = ACTIONS(1227), + [anon_sym_auto] = ACTIONS(1227), + [anon_sym_register] = ACTIONS(1227), + [anon_sym_inline] = ACTIONS(1227), + [anon_sym___inline] = ACTIONS(1227), + [anon_sym___inline__] = ACTIONS(1227), + [anon_sym___forceinline] = ACTIONS(1227), + [anon_sym_thread_local] = ACTIONS(1227), + [anon_sym___thread] = ACTIONS(1227), + [anon_sym_const] = ACTIONS(1227), + [anon_sym_constexpr] = ACTIONS(1227), + [anon_sym_volatile] = ACTIONS(1227), + [anon_sym_restrict] = ACTIONS(1227), + [anon_sym___restrict__] = ACTIONS(1227), + [anon_sym__Atomic] = ACTIONS(1227), + [anon_sym__Noreturn] = ACTIONS(1227), + [anon_sym_noreturn] = ACTIONS(1227), + [anon_sym_alignas] = ACTIONS(1227), + [anon_sym__Alignas] = ACTIONS(1227), + [sym_primitive_type] = ACTIONS(1227), + [anon_sym_enum] = ACTIONS(1227), + [anon_sym_struct] = ACTIONS(1227), + [anon_sym_union] = ACTIONS(1227), + [anon_sym_if] = ACTIONS(1227), + [anon_sym_else] = ACTIONS(1227), + [anon_sym_switch] = ACTIONS(1227), + [anon_sym_case] = ACTIONS(1227), + [anon_sym_default] = ACTIONS(1227), + [anon_sym_while] = ACTIONS(1227), + [anon_sym_do] = ACTIONS(1227), + [anon_sym_for] = ACTIONS(1227), + [anon_sym_return] = ACTIONS(1227), + [anon_sym_break] = ACTIONS(1227), + [anon_sym_continue] = ACTIONS(1227), + [anon_sym_goto] = ACTIONS(1227), + [anon_sym___try] = ACTIONS(1227), + [anon_sym___leave] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1229), + [anon_sym_PLUS_PLUS] = ACTIONS(1229), + [anon_sym_sizeof] = ACTIONS(1227), + [anon_sym___alignof__] = ACTIONS(1227), + [anon_sym___alignof] = ACTIONS(1227), + [anon_sym__alignof] = ACTIONS(1227), + [anon_sym_alignof] = ACTIONS(1227), + [anon_sym__Alignof] = ACTIONS(1227), + [anon_sym_offsetof] = ACTIONS(1227), + [anon_sym__Generic] = ACTIONS(1227), + [anon_sym_asm] = ACTIONS(1227), + [anon_sym___asm__] = ACTIONS(1227), + [sym_number_literal] = ACTIONS(1229), + [anon_sym_L_SQUOTE] = ACTIONS(1229), + [anon_sym_u_SQUOTE] = ACTIONS(1229), + [anon_sym_U_SQUOTE] = ACTIONS(1229), + [anon_sym_u8_SQUOTE] = ACTIONS(1229), + [anon_sym_SQUOTE] = ACTIONS(1229), + [anon_sym_L_DQUOTE] = ACTIONS(1229), + [anon_sym_u_DQUOTE] = ACTIONS(1229), + [anon_sym_U_DQUOTE] = ACTIONS(1229), + [anon_sym_u8_DQUOTE] = ACTIONS(1229), + [anon_sym_DQUOTE] = ACTIONS(1229), + [sym_true] = ACTIONS(1227), + [sym_false] = ACTIONS(1227), + [anon_sym_NULL] = ACTIONS(1227), + [anon_sym_nullptr] = ACTIONS(1227), + [sym_comment] = ACTIONS(3), + }, + [234] = { + [sym_identifier] = ACTIONS(1207), + [aux_sym_preproc_include_token1] = ACTIONS(1207), + [aux_sym_preproc_def_token1] = ACTIONS(1207), + [aux_sym_preproc_if_token1] = ACTIONS(1207), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1207), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1207), + [sym_preproc_directive] = ACTIONS(1207), + [anon_sym_LPAREN2] = ACTIONS(1209), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_TILDE] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1207), + [anon_sym_PLUS] = ACTIONS(1207), + [anon_sym_STAR] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1209), + [anon_sym_SEMI] = ACTIONS(1209), + [anon_sym___extension__] = ACTIONS(1207), + [anon_sym_typedef] = ACTIONS(1207), + [anon_sym_extern] = ACTIONS(1207), + [anon_sym___attribute__] = ACTIONS(1207), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1209), + [anon_sym___declspec] = ACTIONS(1207), + [anon_sym___cdecl] = ACTIONS(1207), + [anon_sym___clrcall] = ACTIONS(1207), + [anon_sym___stdcall] = ACTIONS(1207), + [anon_sym___fastcall] = ACTIONS(1207), + [anon_sym___thiscall] = ACTIONS(1207), + [anon_sym___vectorcall] = ACTIONS(1207), + [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_RBRACE] = ACTIONS(1209), + [anon_sym_signed] = ACTIONS(1207), + [anon_sym_unsigned] = ACTIONS(1207), + [anon_sym_long] = ACTIONS(1207), + [anon_sym_short] = ACTIONS(1207), + [anon_sym_static] = ACTIONS(1207), + [anon_sym_auto] = ACTIONS(1207), + [anon_sym_register] = ACTIONS(1207), + [anon_sym_inline] = ACTIONS(1207), + [anon_sym___inline] = ACTIONS(1207), + [anon_sym___inline__] = ACTIONS(1207), + [anon_sym___forceinline] = ACTIONS(1207), + [anon_sym_thread_local] = ACTIONS(1207), + [anon_sym___thread] = ACTIONS(1207), + [anon_sym_const] = ACTIONS(1207), + [anon_sym_constexpr] = ACTIONS(1207), + [anon_sym_volatile] = ACTIONS(1207), + [anon_sym_restrict] = ACTIONS(1207), + [anon_sym___restrict__] = ACTIONS(1207), + [anon_sym__Atomic] = ACTIONS(1207), + [anon_sym__Noreturn] = ACTIONS(1207), + [anon_sym_noreturn] = ACTIONS(1207), + [anon_sym_alignas] = ACTIONS(1207), + [anon_sym__Alignas] = ACTIONS(1207), + [sym_primitive_type] = ACTIONS(1207), + [anon_sym_enum] = ACTIONS(1207), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_union] = ACTIONS(1207), + [anon_sym_if] = ACTIONS(1207), + [anon_sym_else] = ACTIONS(1207), + [anon_sym_switch] = ACTIONS(1207), + [anon_sym_case] = ACTIONS(1207), + [anon_sym_default] = ACTIONS(1207), + [anon_sym_while] = ACTIONS(1207), + [anon_sym_do] = ACTIONS(1207), + [anon_sym_for] = ACTIONS(1207), + [anon_sym_return] = ACTIONS(1207), + [anon_sym_break] = ACTIONS(1207), + [anon_sym_continue] = ACTIONS(1207), + [anon_sym_goto] = ACTIONS(1207), + [anon_sym___try] = ACTIONS(1207), + [anon_sym___leave] = ACTIONS(1207), + [anon_sym_DASH_DASH] = ACTIONS(1209), + [anon_sym_PLUS_PLUS] = ACTIONS(1209), + [anon_sym_sizeof] = ACTIONS(1207), + [anon_sym___alignof__] = ACTIONS(1207), + [anon_sym___alignof] = ACTIONS(1207), + [anon_sym__alignof] = ACTIONS(1207), + [anon_sym_alignof] = ACTIONS(1207), + [anon_sym__Alignof] = ACTIONS(1207), + [anon_sym_offsetof] = ACTIONS(1207), + [anon_sym__Generic] = ACTIONS(1207), + [anon_sym_asm] = ACTIONS(1207), + [anon_sym___asm__] = ACTIONS(1207), + [sym_number_literal] = ACTIONS(1209), + [anon_sym_L_SQUOTE] = ACTIONS(1209), + [anon_sym_u_SQUOTE] = ACTIONS(1209), + [anon_sym_U_SQUOTE] = ACTIONS(1209), + [anon_sym_u8_SQUOTE] = ACTIONS(1209), + [anon_sym_SQUOTE] = ACTIONS(1209), + [anon_sym_L_DQUOTE] = ACTIONS(1209), + [anon_sym_u_DQUOTE] = ACTIONS(1209), + [anon_sym_U_DQUOTE] = ACTIONS(1209), + [anon_sym_u8_DQUOTE] = ACTIONS(1209), + [anon_sym_DQUOTE] = ACTIONS(1209), + [sym_true] = ACTIONS(1207), + [sym_false] = ACTIONS(1207), + [anon_sym_NULL] = ACTIONS(1207), + [anon_sym_nullptr] = ACTIONS(1207), + [sym_comment] = ACTIONS(3), + }, + [235] = { + [ts_builtin_sym_end] = ACTIONS(1133), [sym_identifier] = ACTIONS(1131), [aux_sym_preproc_include_token1] = ACTIONS(1131), [aux_sym_preproc_def_token1] = ACTIONS(1131), [aux_sym_preproc_if_token1] = ACTIONS(1131), - [aux_sym_preproc_if_token2] = ACTIONS(1131), [aux_sym_preproc_ifdef_token1] = ACTIONS(1131), [aux_sym_preproc_ifdef_token2] = ACTIONS(1131), [sym_preproc_directive] = ACTIONS(1131), @@ -44177,111 +40060,512 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1131), [sym_comment] = ACTIONS(3), }, - [276] = { - [sym_identifier] = ACTIONS(1223), - [aux_sym_preproc_include_token1] = ACTIONS(1223), - [aux_sym_preproc_def_token1] = ACTIONS(1223), - [aux_sym_preproc_if_token1] = ACTIONS(1223), - [aux_sym_preproc_if_token2] = ACTIONS(1223), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1223), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1223), - [sym_preproc_directive] = ACTIONS(1223), - [anon_sym_LPAREN2] = ACTIONS(1225), - [anon_sym_BANG] = ACTIONS(1225), - [anon_sym_TILDE] = ACTIONS(1225), - [anon_sym_DASH] = ACTIONS(1223), - [anon_sym_PLUS] = ACTIONS(1223), - [anon_sym_STAR] = ACTIONS(1225), - [anon_sym_AMP] = ACTIONS(1225), - [anon_sym_SEMI] = ACTIONS(1225), - [anon_sym___extension__] = ACTIONS(1223), - [anon_sym_typedef] = ACTIONS(1223), - [anon_sym_extern] = ACTIONS(1223), - [anon_sym___attribute__] = ACTIONS(1223), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1225), - [anon_sym___declspec] = ACTIONS(1223), - [anon_sym___cdecl] = ACTIONS(1223), - [anon_sym___clrcall] = ACTIONS(1223), - [anon_sym___stdcall] = ACTIONS(1223), - [anon_sym___fastcall] = ACTIONS(1223), - [anon_sym___thiscall] = ACTIONS(1223), - [anon_sym___vectorcall] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_signed] = ACTIONS(1223), - [anon_sym_unsigned] = ACTIONS(1223), - [anon_sym_long] = ACTIONS(1223), - [anon_sym_short] = ACTIONS(1223), - [anon_sym_static] = ACTIONS(1223), - [anon_sym_auto] = ACTIONS(1223), - [anon_sym_register] = ACTIONS(1223), - [anon_sym_inline] = ACTIONS(1223), - [anon_sym___inline] = ACTIONS(1223), - [anon_sym___inline__] = ACTIONS(1223), - [anon_sym___forceinline] = ACTIONS(1223), - [anon_sym_thread_local] = ACTIONS(1223), - [anon_sym___thread] = ACTIONS(1223), - [anon_sym_const] = ACTIONS(1223), - [anon_sym_constexpr] = ACTIONS(1223), - [anon_sym_volatile] = ACTIONS(1223), - [anon_sym_restrict] = ACTIONS(1223), - [anon_sym___restrict__] = ACTIONS(1223), - [anon_sym__Atomic] = ACTIONS(1223), - [anon_sym__Noreturn] = ACTIONS(1223), - [anon_sym_noreturn] = ACTIONS(1223), - [anon_sym_alignas] = ACTIONS(1223), - [anon_sym__Alignas] = ACTIONS(1223), - [sym_primitive_type] = ACTIONS(1223), - [anon_sym_enum] = ACTIONS(1223), - [anon_sym_struct] = ACTIONS(1223), - [anon_sym_union] = ACTIONS(1223), - [anon_sym_if] = ACTIONS(1223), - [anon_sym_else] = ACTIONS(1223), - [anon_sym_switch] = ACTIONS(1223), - [anon_sym_case] = ACTIONS(1223), - [anon_sym_default] = ACTIONS(1223), - [anon_sym_while] = ACTIONS(1223), - [anon_sym_do] = ACTIONS(1223), - [anon_sym_for] = ACTIONS(1223), - [anon_sym_return] = ACTIONS(1223), - [anon_sym_break] = ACTIONS(1223), - [anon_sym_continue] = ACTIONS(1223), - [anon_sym_goto] = ACTIONS(1223), - [anon_sym___try] = ACTIONS(1223), - [anon_sym___leave] = ACTIONS(1223), - [anon_sym_DASH_DASH] = ACTIONS(1225), - [anon_sym_PLUS_PLUS] = ACTIONS(1225), - [anon_sym_sizeof] = ACTIONS(1223), - [anon_sym___alignof__] = ACTIONS(1223), - [anon_sym___alignof] = ACTIONS(1223), - [anon_sym__alignof] = ACTIONS(1223), - [anon_sym_alignof] = ACTIONS(1223), - [anon_sym__Alignof] = ACTIONS(1223), - [anon_sym_offsetof] = ACTIONS(1223), - [anon_sym__Generic] = ACTIONS(1223), - [anon_sym_asm] = ACTIONS(1223), - [anon_sym___asm__] = ACTIONS(1223), - [sym_number_literal] = ACTIONS(1225), - [anon_sym_L_SQUOTE] = ACTIONS(1225), - [anon_sym_u_SQUOTE] = ACTIONS(1225), - [anon_sym_U_SQUOTE] = ACTIONS(1225), - [anon_sym_u8_SQUOTE] = ACTIONS(1225), - [anon_sym_SQUOTE] = ACTIONS(1225), - [anon_sym_L_DQUOTE] = ACTIONS(1225), - [anon_sym_u_DQUOTE] = ACTIONS(1225), - [anon_sym_U_DQUOTE] = ACTIONS(1225), - [anon_sym_u8_DQUOTE] = ACTIONS(1225), - [anon_sym_DQUOTE] = ACTIONS(1225), - [sym_true] = ACTIONS(1223), - [sym_false] = ACTIONS(1223), - [anon_sym_NULL] = ACTIONS(1223), - [anon_sym_nullptr] = ACTIONS(1223), + [236] = { + [sym_identifier] = ACTIONS(1199), + [aux_sym_preproc_include_token1] = ACTIONS(1199), + [aux_sym_preproc_def_token1] = ACTIONS(1199), + [aux_sym_preproc_if_token1] = ACTIONS(1199), + [aux_sym_preproc_if_token2] = ACTIONS(1199), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1199), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1199), + [sym_preproc_directive] = ACTIONS(1199), + [anon_sym_LPAREN2] = ACTIONS(1201), + [anon_sym_BANG] = ACTIONS(1201), + [anon_sym_TILDE] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1199), + [anon_sym_STAR] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(1201), + [anon_sym_SEMI] = ACTIONS(1201), + [anon_sym___extension__] = ACTIONS(1199), + [anon_sym_typedef] = ACTIONS(1199), + [anon_sym_extern] = ACTIONS(1199), + [anon_sym___attribute__] = ACTIONS(1199), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1201), + [anon_sym___declspec] = ACTIONS(1199), + [anon_sym___cdecl] = ACTIONS(1199), + [anon_sym___clrcall] = ACTIONS(1199), + [anon_sym___stdcall] = ACTIONS(1199), + [anon_sym___fastcall] = ACTIONS(1199), + [anon_sym___thiscall] = ACTIONS(1199), + [anon_sym___vectorcall] = ACTIONS(1199), + [anon_sym_LBRACE] = ACTIONS(1201), + [anon_sym_signed] = ACTIONS(1199), + [anon_sym_unsigned] = ACTIONS(1199), + [anon_sym_long] = ACTIONS(1199), + [anon_sym_short] = ACTIONS(1199), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_auto] = ACTIONS(1199), + [anon_sym_register] = ACTIONS(1199), + [anon_sym_inline] = ACTIONS(1199), + [anon_sym___inline] = ACTIONS(1199), + [anon_sym___inline__] = ACTIONS(1199), + [anon_sym___forceinline] = ACTIONS(1199), + [anon_sym_thread_local] = ACTIONS(1199), + [anon_sym___thread] = ACTIONS(1199), + [anon_sym_const] = ACTIONS(1199), + [anon_sym_constexpr] = ACTIONS(1199), + [anon_sym_volatile] = ACTIONS(1199), + [anon_sym_restrict] = ACTIONS(1199), + [anon_sym___restrict__] = ACTIONS(1199), + [anon_sym__Atomic] = ACTIONS(1199), + [anon_sym__Noreturn] = ACTIONS(1199), + [anon_sym_noreturn] = ACTIONS(1199), + [anon_sym_alignas] = ACTIONS(1199), + [anon_sym__Alignas] = ACTIONS(1199), + [sym_primitive_type] = ACTIONS(1199), + [anon_sym_enum] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1199), + [anon_sym_union] = ACTIONS(1199), + [anon_sym_if] = ACTIONS(1199), + [anon_sym_else] = ACTIONS(1199), + [anon_sym_switch] = ACTIONS(1199), + [anon_sym_case] = ACTIONS(1199), + [anon_sym_default] = ACTIONS(1199), + [anon_sym_while] = ACTIONS(1199), + [anon_sym_do] = ACTIONS(1199), + [anon_sym_for] = ACTIONS(1199), + [anon_sym_return] = ACTIONS(1199), + [anon_sym_break] = ACTIONS(1199), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_goto] = ACTIONS(1199), + [anon_sym___try] = ACTIONS(1199), + [anon_sym___leave] = ACTIONS(1199), + [anon_sym_DASH_DASH] = ACTIONS(1201), + [anon_sym_PLUS_PLUS] = ACTIONS(1201), + [anon_sym_sizeof] = ACTIONS(1199), + [anon_sym___alignof__] = ACTIONS(1199), + [anon_sym___alignof] = ACTIONS(1199), + [anon_sym__alignof] = ACTIONS(1199), + [anon_sym_alignof] = ACTIONS(1199), + [anon_sym__Alignof] = ACTIONS(1199), + [anon_sym_offsetof] = ACTIONS(1199), + [anon_sym__Generic] = ACTIONS(1199), + [anon_sym_asm] = ACTIONS(1199), + [anon_sym___asm__] = ACTIONS(1199), + [sym_number_literal] = ACTIONS(1201), + [anon_sym_L_SQUOTE] = ACTIONS(1201), + [anon_sym_u_SQUOTE] = ACTIONS(1201), + [anon_sym_U_SQUOTE] = ACTIONS(1201), + [anon_sym_u8_SQUOTE] = ACTIONS(1201), + [anon_sym_SQUOTE] = ACTIONS(1201), + [anon_sym_L_DQUOTE] = ACTIONS(1201), + [anon_sym_u_DQUOTE] = ACTIONS(1201), + [anon_sym_U_DQUOTE] = ACTIONS(1201), + [anon_sym_u8_DQUOTE] = ACTIONS(1201), + [anon_sym_DQUOTE] = ACTIONS(1201), + [sym_true] = ACTIONS(1199), + [sym_false] = ACTIONS(1199), + [anon_sym_NULL] = ACTIONS(1199), + [anon_sym_nullptr] = ACTIONS(1199), [sym_comment] = ACTIONS(3), }, - [277] = { + [237] = { + [ts_builtin_sym_end] = ACTIONS(1137), + [sym_identifier] = ACTIONS(1135), + [aux_sym_preproc_include_token1] = ACTIONS(1135), + [aux_sym_preproc_def_token1] = ACTIONS(1135), + [aux_sym_preproc_if_token1] = ACTIONS(1135), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1135), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1135), + [sym_preproc_directive] = ACTIONS(1135), + [anon_sym_LPAREN2] = ACTIONS(1137), + [anon_sym_BANG] = ACTIONS(1137), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_STAR] = ACTIONS(1137), + [anon_sym_AMP] = ACTIONS(1137), + [anon_sym_SEMI] = ACTIONS(1137), + [anon_sym___extension__] = ACTIONS(1135), + [anon_sym_typedef] = ACTIONS(1135), + [anon_sym_extern] = ACTIONS(1135), + [anon_sym___attribute__] = ACTIONS(1135), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1137), + [anon_sym___declspec] = ACTIONS(1135), + [anon_sym___cdecl] = ACTIONS(1135), + [anon_sym___clrcall] = ACTIONS(1135), + [anon_sym___stdcall] = ACTIONS(1135), + [anon_sym___fastcall] = ACTIONS(1135), + [anon_sym___thiscall] = ACTIONS(1135), + [anon_sym___vectorcall] = ACTIONS(1135), + [anon_sym_LBRACE] = ACTIONS(1137), + [anon_sym_signed] = ACTIONS(1135), + [anon_sym_unsigned] = ACTIONS(1135), + [anon_sym_long] = ACTIONS(1135), + [anon_sym_short] = ACTIONS(1135), + [anon_sym_static] = ACTIONS(1135), + [anon_sym_auto] = ACTIONS(1135), + [anon_sym_register] = ACTIONS(1135), + [anon_sym_inline] = ACTIONS(1135), + [anon_sym___inline] = ACTIONS(1135), + [anon_sym___inline__] = ACTIONS(1135), + [anon_sym___forceinline] = ACTIONS(1135), + [anon_sym_thread_local] = ACTIONS(1135), + [anon_sym___thread] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_constexpr] = ACTIONS(1135), + [anon_sym_volatile] = ACTIONS(1135), + [anon_sym_restrict] = ACTIONS(1135), + [anon_sym___restrict__] = ACTIONS(1135), + [anon_sym__Atomic] = ACTIONS(1135), + [anon_sym__Noreturn] = ACTIONS(1135), + [anon_sym_noreturn] = ACTIONS(1135), + [anon_sym_alignas] = ACTIONS(1135), + [anon_sym__Alignas] = ACTIONS(1135), + [sym_primitive_type] = ACTIONS(1135), + [anon_sym_enum] = ACTIONS(1135), + [anon_sym_struct] = ACTIONS(1135), + [anon_sym_union] = ACTIONS(1135), + [anon_sym_if] = ACTIONS(1135), + [anon_sym_else] = ACTIONS(1135), + [anon_sym_switch] = ACTIONS(1135), + [anon_sym_case] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(1135), + [anon_sym_while] = ACTIONS(1135), + [anon_sym_do] = ACTIONS(1135), + [anon_sym_for] = ACTIONS(1135), + [anon_sym_return] = ACTIONS(1135), + [anon_sym_break] = ACTIONS(1135), + [anon_sym_continue] = ACTIONS(1135), + [anon_sym_goto] = ACTIONS(1135), + [anon_sym___try] = ACTIONS(1135), + [anon_sym___leave] = ACTIONS(1135), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [anon_sym_PLUS_PLUS] = ACTIONS(1137), + [anon_sym_sizeof] = ACTIONS(1135), + [anon_sym___alignof__] = ACTIONS(1135), + [anon_sym___alignof] = ACTIONS(1135), + [anon_sym__alignof] = ACTIONS(1135), + [anon_sym_alignof] = ACTIONS(1135), + [anon_sym__Alignof] = ACTIONS(1135), + [anon_sym_offsetof] = ACTIONS(1135), + [anon_sym__Generic] = ACTIONS(1135), + [anon_sym_asm] = ACTIONS(1135), + [anon_sym___asm__] = ACTIONS(1135), + [sym_number_literal] = ACTIONS(1137), + [anon_sym_L_SQUOTE] = ACTIONS(1137), + [anon_sym_u_SQUOTE] = ACTIONS(1137), + [anon_sym_U_SQUOTE] = ACTIONS(1137), + [anon_sym_u8_SQUOTE] = ACTIONS(1137), + [anon_sym_SQUOTE] = ACTIONS(1137), + [anon_sym_L_DQUOTE] = ACTIONS(1137), + [anon_sym_u_DQUOTE] = ACTIONS(1137), + [anon_sym_U_DQUOTE] = ACTIONS(1137), + [anon_sym_u8_DQUOTE] = ACTIONS(1137), + [anon_sym_DQUOTE] = ACTIONS(1137), + [sym_true] = ACTIONS(1135), + [sym_false] = ACTIONS(1135), + [anon_sym_NULL] = ACTIONS(1135), + [anon_sym_nullptr] = ACTIONS(1135), + [sym_comment] = ACTIONS(3), + }, + [238] = { + [ts_builtin_sym_end] = ACTIONS(1149), + [sym_identifier] = ACTIONS(1147), + [aux_sym_preproc_include_token1] = ACTIONS(1147), + [aux_sym_preproc_def_token1] = ACTIONS(1147), + [aux_sym_preproc_if_token1] = ACTIONS(1147), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1147), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1147), + [sym_preproc_directive] = ACTIONS(1147), + [anon_sym_LPAREN2] = ACTIONS(1149), + [anon_sym_BANG] = ACTIONS(1149), + [anon_sym_TILDE] = ACTIONS(1149), + [anon_sym_DASH] = ACTIONS(1147), + [anon_sym_PLUS] = ACTIONS(1147), + [anon_sym_STAR] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(1149), + [anon_sym_SEMI] = ACTIONS(1149), + [anon_sym___extension__] = ACTIONS(1147), + [anon_sym_typedef] = ACTIONS(1147), + [anon_sym_extern] = ACTIONS(1147), + [anon_sym___attribute__] = ACTIONS(1147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1149), + [anon_sym___declspec] = ACTIONS(1147), + [anon_sym___cdecl] = ACTIONS(1147), + [anon_sym___clrcall] = ACTIONS(1147), + [anon_sym___stdcall] = ACTIONS(1147), + [anon_sym___fastcall] = ACTIONS(1147), + [anon_sym___thiscall] = ACTIONS(1147), + [anon_sym___vectorcall] = ACTIONS(1147), + [anon_sym_LBRACE] = ACTIONS(1149), + [anon_sym_signed] = ACTIONS(1147), + [anon_sym_unsigned] = ACTIONS(1147), + [anon_sym_long] = ACTIONS(1147), + [anon_sym_short] = ACTIONS(1147), + [anon_sym_static] = ACTIONS(1147), + [anon_sym_auto] = ACTIONS(1147), + [anon_sym_register] = ACTIONS(1147), + [anon_sym_inline] = ACTIONS(1147), + [anon_sym___inline] = ACTIONS(1147), + [anon_sym___inline__] = ACTIONS(1147), + [anon_sym___forceinline] = ACTIONS(1147), + [anon_sym_thread_local] = ACTIONS(1147), + [anon_sym___thread] = ACTIONS(1147), + [anon_sym_const] = ACTIONS(1147), + [anon_sym_constexpr] = ACTIONS(1147), + [anon_sym_volatile] = ACTIONS(1147), + [anon_sym_restrict] = ACTIONS(1147), + [anon_sym___restrict__] = ACTIONS(1147), + [anon_sym__Atomic] = ACTIONS(1147), + [anon_sym__Noreturn] = ACTIONS(1147), + [anon_sym_noreturn] = ACTIONS(1147), + [anon_sym_alignas] = ACTIONS(1147), + [anon_sym__Alignas] = ACTIONS(1147), + [sym_primitive_type] = ACTIONS(1147), + [anon_sym_enum] = ACTIONS(1147), + [anon_sym_struct] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1147), + [anon_sym_if] = ACTIONS(1147), + [anon_sym_else] = ACTIONS(1147), + [anon_sym_switch] = ACTIONS(1147), + [anon_sym_case] = ACTIONS(1147), + [anon_sym_default] = ACTIONS(1147), + [anon_sym_while] = ACTIONS(1147), + [anon_sym_do] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1147), + [anon_sym_return] = ACTIONS(1147), + [anon_sym_break] = ACTIONS(1147), + [anon_sym_continue] = ACTIONS(1147), + [anon_sym_goto] = ACTIONS(1147), + [anon_sym___try] = ACTIONS(1147), + [anon_sym___leave] = ACTIONS(1147), + [anon_sym_DASH_DASH] = ACTIONS(1149), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_sizeof] = ACTIONS(1147), + [anon_sym___alignof__] = ACTIONS(1147), + [anon_sym___alignof] = ACTIONS(1147), + [anon_sym__alignof] = ACTIONS(1147), + [anon_sym_alignof] = ACTIONS(1147), + [anon_sym__Alignof] = ACTIONS(1147), + [anon_sym_offsetof] = ACTIONS(1147), + [anon_sym__Generic] = ACTIONS(1147), + [anon_sym_asm] = ACTIONS(1147), + [anon_sym___asm__] = ACTIONS(1147), + [sym_number_literal] = ACTIONS(1149), + [anon_sym_L_SQUOTE] = ACTIONS(1149), + [anon_sym_u_SQUOTE] = ACTIONS(1149), + [anon_sym_U_SQUOTE] = ACTIONS(1149), + [anon_sym_u8_SQUOTE] = ACTIONS(1149), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_L_DQUOTE] = ACTIONS(1149), + [anon_sym_u_DQUOTE] = ACTIONS(1149), + [anon_sym_U_DQUOTE] = ACTIONS(1149), + [anon_sym_u8_DQUOTE] = ACTIONS(1149), + [anon_sym_DQUOTE] = ACTIONS(1149), + [sym_true] = ACTIONS(1147), + [sym_false] = ACTIONS(1147), + [anon_sym_NULL] = ACTIONS(1147), + [anon_sym_nullptr] = ACTIONS(1147), + [sym_comment] = ACTIONS(3), + }, + [239] = { + [ts_builtin_sym_end] = ACTIONS(1145), + [sym_identifier] = ACTIONS(1143), + [aux_sym_preproc_include_token1] = ACTIONS(1143), + [aux_sym_preproc_def_token1] = ACTIONS(1143), + [aux_sym_preproc_if_token1] = ACTIONS(1143), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1143), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1143), + [sym_preproc_directive] = ACTIONS(1143), + [anon_sym_LPAREN2] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_TILDE] = ACTIONS(1145), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_STAR] = ACTIONS(1145), + [anon_sym_AMP] = ACTIONS(1145), + [anon_sym_SEMI] = ACTIONS(1145), + [anon_sym___extension__] = ACTIONS(1143), + [anon_sym_typedef] = ACTIONS(1143), + [anon_sym_extern] = ACTIONS(1143), + [anon_sym___attribute__] = ACTIONS(1143), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), + [anon_sym___declspec] = ACTIONS(1143), + [anon_sym___cdecl] = ACTIONS(1143), + [anon_sym___clrcall] = ACTIONS(1143), + [anon_sym___stdcall] = ACTIONS(1143), + [anon_sym___fastcall] = ACTIONS(1143), + [anon_sym___thiscall] = ACTIONS(1143), + [anon_sym___vectorcall] = ACTIONS(1143), + [anon_sym_LBRACE] = ACTIONS(1145), + [anon_sym_signed] = ACTIONS(1143), + [anon_sym_unsigned] = ACTIONS(1143), + [anon_sym_long] = ACTIONS(1143), + [anon_sym_short] = ACTIONS(1143), + [anon_sym_static] = ACTIONS(1143), + [anon_sym_auto] = ACTIONS(1143), + [anon_sym_register] = ACTIONS(1143), + [anon_sym_inline] = ACTIONS(1143), + [anon_sym___inline] = ACTIONS(1143), + [anon_sym___inline__] = ACTIONS(1143), + [anon_sym___forceinline] = ACTIONS(1143), + [anon_sym_thread_local] = ACTIONS(1143), + [anon_sym___thread] = ACTIONS(1143), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_constexpr] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym___restrict__] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1143), + [anon_sym__Noreturn] = ACTIONS(1143), + [anon_sym_noreturn] = ACTIONS(1143), + [anon_sym_alignas] = ACTIONS(1143), + [anon_sym__Alignas] = ACTIONS(1143), + [sym_primitive_type] = ACTIONS(1143), + [anon_sym_enum] = ACTIONS(1143), + [anon_sym_struct] = ACTIONS(1143), + [anon_sym_union] = ACTIONS(1143), + [anon_sym_if] = ACTIONS(1143), + [anon_sym_else] = ACTIONS(1143), + [anon_sym_switch] = ACTIONS(1143), + [anon_sym_case] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(1143), + [anon_sym_do] = ACTIONS(1143), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_return] = ACTIONS(1143), + [anon_sym_break] = ACTIONS(1143), + [anon_sym_continue] = ACTIONS(1143), + [anon_sym_goto] = ACTIONS(1143), + [anon_sym___try] = ACTIONS(1143), + [anon_sym___leave] = ACTIONS(1143), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_sizeof] = ACTIONS(1143), + [anon_sym___alignof__] = ACTIONS(1143), + [anon_sym___alignof] = ACTIONS(1143), + [anon_sym__alignof] = ACTIONS(1143), + [anon_sym_alignof] = ACTIONS(1143), + [anon_sym__Alignof] = ACTIONS(1143), + [anon_sym_offsetof] = ACTIONS(1143), + [anon_sym__Generic] = ACTIONS(1143), + [anon_sym_asm] = ACTIONS(1143), + [anon_sym___asm__] = ACTIONS(1143), + [sym_number_literal] = ACTIONS(1145), + [anon_sym_L_SQUOTE] = ACTIONS(1145), + [anon_sym_u_SQUOTE] = ACTIONS(1145), + [anon_sym_U_SQUOTE] = ACTIONS(1145), + [anon_sym_u8_SQUOTE] = ACTIONS(1145), + [anon_sym_SQUOTE] = ACTIONS(1145), + [anon_sym_L_DQUOTE] = ACTIONS(1145), + [anon_sym_u_DQUOTE] = ACTIONS(1145), + [anon_sym_U_DQUOTE] = ACTIONS(1145), + [anon_sym_u8_DQUOTE] = ACTIONS(1145), + [anon_sym_DQUOTE] = ACTIONS(1145), + [sym_true] = ACTIONS(1143), + [sym_false] = ACTIONS(1143), + [anon_sym_NULL] = ACTIONS(1143), + [anon_sym_nullptr] = ACTIONS(1143), + [sym_comment] = ACTIONS(3), + }, + [240] = { + [sym_identifier] = ACTIONS(1187), + [aux_sym_preproc_include_token1] = ACTIONS(1187), + [aux_sym_preproc_def_token1] = ACTIONS(1187), + [aux_sym_preproc_if_token1] = ACTIONS(1187), + [aux_sym_preproc_if_token2] = ACTIONS(1187), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1187), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1187), + [sym_preproc_directive] = ACTIONS(1187), + [anon_sym_LPAREN2] = ACTIONS(1189), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1189), + [anon_sym_DASH] = ACTIONS(1187), + [anon_sym_PLUS] = ACTIONS(1187), + [anon_sym_STAR] = ACTIONS(1189), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_SEMI] = ACTIONS(1189), + [anon_sym___extension__] = ACTIONS(1187), + [anon_sym_typedef] = ACTIONS(1187), + [anon_sym_extern] = ACTIONS(1187), + [anon_sym___attribute__] = ACTIONS(1187), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1189), + [anon_sym___declspec] = ACTIONS(1187), + [anon_sym___cdecl] = ACTIONS(1187), + [anon_sym___clrcall] = ACTIONS(1187), + [anon_sym___stdcall] = ACTIONS(1187), + [anon_sym___fastcall] = ACTIONS(1187), + [anon_sym___thiscall] = ACTIONS(1187), + [anon_sym___vectorcall] = ACTIONS(1187), + [anon_sym_LBRACE] = ACTIONS(1189), + [anon_sym_signed] = ACTIONS(1187), + [anon_sym_unsigned] = ACTIONS(1187), + [anon_sym_long] = ACTIONS(1187), + [anon_sym_short] = ACTIONS(1187), + [anon_sym_static] = ACTIONS(1187), + [anon_sym_auto] = ACTIONS(1187), + [anon_sym_register] = ACTIONS(1187), + [anon_sym_inline] = ACTIONS(1187), + [anon_sym___inline] = ACTIONS(1187), + [anon_sym___inline__] = ACTIONS(1187), + [anon_sym___forceinline] = ACTIONS(1187), + [anon_sym_thread_local] = ACTIONS(1187), + [anon_sym___thread] = ACTIONS(1187), + [anon_sym_const] = ACTIONS(1187), + [anon_sym_constexpr] = ACTIONS(1187), + [anon_sym_volatile] = ACTIONS(1187), + [anon_sym_restrict] = ACTIONS(1187), + [anon_sym___restrict__] = ACTIONS(1187), + [anon_sym__Atomic] = ACTIONS(1187), + [anon_sym__Noreturn] = ACTIONS(1187), + [anon_sym_noreturn] = ACTIONS(1187), + [anon_sym_alignas] = ACTIONS(1187), + [anon_sym__Alignas] = ACTIONS(1187), + [sym_primitive_type] = ACTIONS(1187), + [anon_sym_enum] = ACTIONS(1187), + [anon_sym_struct] = ACTIONS(1187), + [anon_sym_union] = ACTIONS(1187), + [anon_sym_if] = ACTIONS(1187), + [anon_sym_else] = ACTIONS(1187), + [anon_sym_switch] = ACTIONS(1187), + [anon_sym_case] = ACTIONS(1187), + [anon_sym_default] = ACTIONS(1187), + [anon_sym_while] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(1187), + [anon_sym_for] = ACTIONS(1187), + [anon_sym_return] = ACTIONS(1187), + [anon_sym_break] = ACTIONS(1187), + [anon_sym_continue] = ACTIONS(1187), + [anon_sym_goto] = ACTIONS(1187), + [anon_sym___try] = ACTIONS(1187), + [anon_sym___leave] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1189), + [anon_sym_PLUS_PLUS] = ACTIONS(1189), + [anon_sym_sizeof] = ACTIONS(1187), + [anon_sym___alignof__] = ACTIONS(1187), + [anon_sym___alignof] = ACTIONS(1187), + [anon_sym__alignof] = ACTIONS(1187), + [anon_sym_alignof] = ACTIONS(1187), + [anon_sym__Alignof] = ACTIONS(1187), + [anon_sym_offsetof] = ACTIONS(1187), + [anon_sym__Generic] = ACTIONS(1187), + [anon_sym_asm] = ACTIONS(1187), + [anon_sym___asm__] = ACTIONS(1187), + [sym_number_literal] = ACTIONS(1189), + [anon_sym_L_SQUOTE] = ACTIONS(1189), + [anon_sym_u_SQUOTE] = ACTIONS(1189), + [anon_sym_U_SQUOTE] = ACTIONS(1189), + [anon_sym_u8_SQUOTE] = ACTIONS(1189), + [anon_sym_SQUOTE] = ACTIONS(1189), + [anon_sym_L_DQUOTE] = ACTIONS(1189), + [anon_sym_u_DQUOTE] = ACTIONS(1189), + [anon_sym_U_DQUOTE] = ACTIONS(1189), + [anon_sym_u8_DQUOTE] = ACTIONS(1189), + [anon_sym_DQUOTE] = ACTIONS(1189), + [sym_true] = ACTIONS(1187), + [sym_false] = ACTIONS(1187), + [anon_sym_NULL] = ACTIONS(1187), + [anon_sym_nullptr] = ACTIONS(1187), + [sym_comment] = ACTIONS(3), + }, + [241] = { [sym_identifier] = ACTIONS(1123), [aux_sym_preproc_include_token1] = ACTIONS(1123), [aux_sym_preproc_def_token1] = ACTIONS(1123), [aux_sym_preproc_if_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token2] = ACTIONS(1123), [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), [sym_preproc_directive] = ACTIONS(1123), @@ -44306,7 +40590,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1123), [anon_sym___vectorcall] = ACTIONS(1123), [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_RBRACE] = ACTIONS(1125), [anon_sym_signed] = ACTIONS(1123), [anon_sym_unsigned] = ACTIONS(1123), [anon_sym_long] = ACTIONS(1123), @@ -44377,207 +40660,207 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1123), [sym_comment] = ACTIONS(3), }, - [278] = { - [ts_builtin_sym_end] = ACTIONS(1241), - [sym_identifier] = ACTIONS(1239), - [aux_sym_preproc_include_token1] = ACTIONS(1239), - [aux_sym_preproc_def_token1] = ACTIONS(1239), - [aux_sym_preproc_if_token1] = ACTIONS(1239), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1239), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1239), - [sym_preproc_directive] = ACTIONS(1239), - [anon_sym_LPAREN2] = ACTIONS(1241), - [anon_sym_BANG] = ACTIONS(1241), - [anon_sym_TILDE] = ACTIONS(1241), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1241), - [anon_sym_SEMI] = ACTIONS(1241), - [anon_sym___extension__] = ACTIONS(1239), - [anon_sym_typedef] = ACTIONS(1239), - [anon_sym_extern] = ACTIONS(1239), - [anon_sym___attribute__] = ACTIONS(1239), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1241), - [anon_sym___declspec] = ACTIONS(1239), - [anon_sym___cdecl] = ACTIONS(1239), - [anon_sym___clrcall] = ACTIONS(1239), - [anon_sym___stdcall] = ACTIONS(1239), - [anon_sym___fastcall] = ACTIONS(1239), - [anon_sym___thiscall] = ACTIONS(1239), - [anon_sym___vectorcall] = ACTIONS(1239), - [anon_sym_LBRACE] = ACTIONS(1241), - [anon_sym_signed] = ACTIONS(1239), - [anon_sym_unsigned] = ACTIONS(1239), - [anon_sym_long] = ACTIONS(1239), - [anon_sym_short] = ACTIONS(1239), - [anon_sym_static] = ACTIONS(1239), - [anon_sym_auto] = ACTIONS(1239), - [anon_sym_register] = ACTIONS(1239), - [anon_sym_inline] = ACTIONS(1239), - [anon_sym___inline] = ACTIONS(1239), - [anon_sym___inline__] = ACTIONS(1239), - [anon_sym___forceinline] = ACTIONS(1239), - [anon_sym_thread_local] = ACTIONS(1239), - [anon_sym___thread] = ACTIONS(1239), - [anon_sym_const] = ACTIONS(1239), - [anon_sym_constexpr] = ACTIONS(1239), - [anon_sym_volatile] = ACTIONS(1239), - [anon_sym_restrict] = ACTIONS(1239), - [anon_sym___restrict__] = ACTIONS(1239), - [anon_sym__Atomic] = ACTIONS(1239), - [anon_sym__Noreturn] = ACTIONS(1239), - [anon_sym_noreturn] = ACTIONS(1239), - [anon_sym_alignas] = ACTIONS(1239), - [anon_sym__Alignas] = 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___try] = ACTIONS(1239), - [anon_sym___leave] = ACTIONS(1239), - [anon_sym_DASH_DASH] = ACTIONS(1241), - [anon_sym_PLUS_PLUS] = ACTIONS(1241), - [anon_sym_sizeof] = ACTIONS(1239), - [anon_sym___alignof__] = ACTIONS(1239), - [anon_sym___alignof] = ACTIONS(1239), - [anon_sym__alignof] = ACTIONS(1239), - [anon_sym_alignof] = ACTIONS(1239), - [anon_sym__Alignof] = ACTIONS(1239), - [anon_sym_offsetof] = ACTIONS(1239), - [anon_sym__Generic] = ACTIONS(1239), - [anon_sym_asm] = ACTIONS(1239), - [anon_sym___asm__] = ACTIONS(1239), - [sym_number_literal] = ACTIONS(1241), - [anon_sym_L_SQUOTE] = ACTIONS(1241), - [anon_sym_u_SQUOTE] = ACTIONS(1241), - [anon_sym_U_SQUOTE] = ACTIONS(1241), - [anon_sym_u8_SQUOTE] = ACTIONS(1241), - [anon_sym_SQUOTE] = ACTIONS(1241), - [anon_sym_L_DQUOTE] = ACTIONS(1241), - [anon_sym_u_DQUOTE] = ACTIONS(1241), - [anon_sym_U_DQUOTE] = ACTIONS(1241), - [anon_sym_u8_DQUOTE] = ACTIONS(1241), - [anon_sym_DQUOTE] = ACTIONS(1241), - [sym_true] = ACTIONS(1239), - [sym_false] = ACTIONS(1239), - [anon_sym_NULL] = ACTIONS(1239), - [anon_sym_nullptr] = ACTIONS(1239), + [242] = { + [sym_identifier] = ACTIONS(1175), + [aux_sym_preproc_include_token1] = ACTIONS(1175), + [aux_sym_preproc_def_token1] = ACTIONS(1175), + [aux_sym_preproc_if_token1] = ACTIONS(1175), + [aux_sym_preproc_if_token2] = ACTIONS(1175), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1175), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1175), + [sym_preproc_directive] = ACTIONS(1175), + [anon_sym_LPAREN2] = ACTIONS(1177), + [anon_sym_BANG] = ACTIONS(1177), + [anon_sym_TILDE] = ACTIONS(1177), + [anon_sym_DASH] = ACTIONS(1175), + [anon_sym_PLUS] = ACTIONS(1175), + [anon_sym_STAR] = ACTIONS(1177), + [anon_sym_AMP] = ACTIONS(1177), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym___extension__] = ACTIONS(1175), + [anon_sym_typedef] = ACTIONS(1175), + [anon_sym_extern] = ACTIONS(1175), + [anon_sym___attribute__] = ACTIONS(1175), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1177), + [anon_sym___declspec] = ACTIONS(1175), + [anon_sym___cdecl] = ACTIONS(1175), + [anon_sym___clrcall] = ACTIONS(1175), + [anon_sym___stdcall] = ACTIONS(1175), + [anon_sym___fastcall] = ACTIONS(1175), + [anon_sym___thiscall] = ACTIONS(1175), + [anon_sym___vectorcall] = ACTIONS(1175), + [anon_sym_LBRACE] = ACTIONS(1177), + [anon_sym_signed] = ACTIONS(1175), + [anon_sym_unsigned] = ACTIONS(1175), + [anon_sym_long] = ACTIONS(1175), + [anon_sym_short] = ACTIONS(1175), + [anon_sym_static] = ACTIONS(1175), + [anon_sym_auto] = ACTIONS(1175), + [anon_sym_register] = ACTIONS(1175), + [anon_sym_inline] = ACTIONS(1175), + [anon_sym___inline] = ACTIONS(1175), + [anon_sym___inline__] = ACTIONS(1175), + [anon_sym___forceinline] = ACTIONS(1175), + [anon_sym_thread_local] = ACTIONS(1175), + [anon_sym___thread] = ACTIONS(1175), + [anon_sym_const] = ACTIONS(1175), + [anon_sym_constexpr] = ACTIONS(1175), + [anon_sym_volatile] = ACTIONS(1175), + [anon_sym_restrict] = ACTIONS(1175), + [anon_sym___restrict__] = ACTIONS(1175), + [anon_sym__Atomic] = ACTIONS(1175), + [anon_sym__Noreturn] = ACTIONS(1175), + [anon_sym_noreturn] = ACTIONS(1175), + [anon_sym_alignas] = ACTIONS(1175), + [anon_sym__Alignas] = ACTIONS(1175), + [sym_primitive_type] = ACTIONS(1175), + [anon_sym_enum] = ACTIONS(1175), + [anon_sym_struct] = ACTIONS(1175), + [anon_sym_union] = ACTIONS(1175), + [anon_sym_if] = ACTIONS(1175), + [anon_sym_else] = ACTIONS(1175), + [anon_sym_switch] = ACTIONS(1175), + [anon_sym_case] = ACTIONS(1175), + [anon_sym_default] = ACTIONS(1175), + [anon_sym_while] = ACTIONS(1175), + [anon_sym_do] = ACTIONS(1175), + [anon_sym_for] = ACTIONS(1175), + [anon_sym_return] = ACTIONS(1175), + [anon_sym_break] = ACTIONS(1175), + [anon_sym_continue] = ACTIONS(1175), + [anon_sym_goto] = ACTIONS(1175), + [anon_sym___try] = ACTIONS(1175), + [anon_sym___leave] = ACTIONS(1175), + [anon_sym_DASH_DASH] = ACTIONS(1177), + [anon_sym_PLUS_PLUS] = ACTIONS(1177), + [anon_sym_sizeof] = ACTIONS(1175), + [anon_sym___alignof__] = ACTIONS(1175), + [anon_sym___alignof] = ACTIONS(1175), + [anon_sym__alignof] = ACTIONS(1175), + [anon_sym_alignof] = ACTIONS(1175), + [anon_sym__Alignof] = ACTIONS(1175), + [anon_sym_offsetof] = ACTIONS(1175), + [anon_sym__Generic] = ACTIONS(1175), + [anon_sym_asm] = ACTIONS(1175), + [anon_sym___asm__] = ACTIONS(1175), + [sym_number_literal] = ACTIONS(1177), + [anon_sym_L_SQUOTE] = ACTIONS(1177), + [anon_sym_u_SQUOTE] = ACTIONS(1177), + [anon_sym_U_SQUOTE] = ACTIONS(1177), + [anon_sym_u8_SQUOTE] = ACTIONS(1177), + [anon_sym_SQUOTE] = ACTIONS(1177), + [anon_sym_L_DQUOTE] = ACTIONS(1177), + [anon_sym_u_DQUOTE] = ACTIONS(1177), + [anon_sym_U_DQUOTE] = ACTIONS(1177), + [anon_sym_u8_DQUOTE] = ACTIONS(1177), + [anon_sym_DQUOTE] = ACTIONS(1177), + [sym_true] = ACTIONS(1175), + [sym_false] = ACTIONS(1175), + [anon_sym_NULL] = ACTIONS(1175), + [anon_sym_nullptr] = ACTIONS(1175), [sym_comment] = ACTIONS(3), }, - [279] = { - [sym_identifier] = ACTIONS(1123), - [aux_sym_preproc_include_token1] = ACTIONS(1123), - [aux_sym_preproc_def_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), - [sym_preproc_directive] = ACTIONS(1123), - [anon_sym_LPAREN2] = ACTIONS(1125), - [anon_sym_BANG] = ACTIONS(1125), - [anon_sym_TILDE] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym___extension__] = ACTIONS(1123), - [anon_sym_typedef] = ACTIONS(1123), - [anon_sym_extern] = ACTIONS(1123), - [anon_sym___attribute__] = ACTIONS(1123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), - [anon_sym___declspec] = ACTIONS(1123), - [anon_sym___cdecl] = ACTIONS(1123), - [anon_sym___clrcall] = ACTIONS(1123), - [anon_sym___stdcall] = ACTIONS(1123), - [anon_sym___fastcall] = ACTIONS(1123), - [anon_sym___thiscall] = ACTIONS(1123), - [anon_sym___vectorcall] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_RBRACE] = ACTIONS(1125), - [anon_sym_signed] = ACTIONS(1123), - [anon_sym_unsigned] = ACTIONS(1123), - [anon_sym_long] = ACTIONS(1123), - [anon_sym_short] = ACTIONS(1123), - [anon_sym_static] = ACTIONS(1123), - [anon_sym_auto] = ACTIONS(1123), - [anon_sym_register] = ACTIONS(1123), - [anon_sym_inline] = ACTIONS(1123), - [anon_sym___inline] = ACTIONS(1123), - [anon_sym___inline__] = ACTIONS(1123), - [anon_sym___forceinline] = ACTIONS(1123), - [anon_sym_thread_local] = ACTIONS(1123), - [anon_sym___thread] = ACTIONS(1123), - [anon_sym_const] = ACTIONS(1123), - [anon_sym_constexpr] = ACTIONS(1123), - [anon_sym_volatile] = ACTIONS(1123), - [anon_sym_restrict] = ACTIONS(1123), - [anon_sym___restrict__] = ACTIONS(1123), - [anon_sym__Atomic] = ACTIONS(1123), - [anon_sym__Noreturn] = ACTIONS(1123), - [anon_sym_noreturn] = ACTIONS(1123), - [anon_sym_alignas] = ACTIONS(1123), - [anon_sym__Alignas] = ACTIONS(1123), - [sym_primitive_type] = ACTIONS(1123), - [anon_sym_enum] = ACTIONS(1123), - [anon_sym_struct] = ACTIONS(1123), - [anon_sym_union] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1123), - [anon_sym_else] = ACTIONS(1123), - [anon_sym_switch] = ACTIONS(1123), - [anon_sym_case] = ACTIONS(1123), - [anon_sym_default] = ACTIONS(1123), - [anon_sym_while] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(1123), - [anon_sym_for] = ACTIONS(1123), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_break] = ACTIONS(1123), - [anon_sym_continue] = ACTIONS(1123), - [anon_sym_goto] = ACTIONS(1123), - [anon_sym___try] = ACTIONS(1123), - [anon_sym___leave] = ACTIONS(1123), - [anon_sym_DASH_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1125), - [anon_sym_sizeof] = ACTIONS(1123), - [anon_sym___alignof__] = ACTIONS(1123), - [anon_sym___alignof] = ACTIONS(1123), - [anon_sym__alignof] = ACTIONS(1123), - [anon_sym_alignof] = ACTIONS(1123), - [anon_sym__Alignof] = ACTIONS(1123), - [anon_sym_offsetof] = ACTIONS(1123), - [anon_sym__Generic] = ACTIONS(1123), - [anon_sym_asm] = ACTIONS(1123), - [anon_sym___asm__] = ACTIONS(1123), - [sym_number_literal] = ACTIONS(1125), - [anon_sym_L_SQUOTE] = ACTIONS(1125), - [anon_sym_u_SQUOTE] = ACTIONS(1125), - [anon_sym_U_SQUOTE] = ACTIONS(1125), - [anon_sym_u8_SQUOTE] = ACTIONS(1125), - [anon_sym_SQUOTE] = ACTIONS(1125), - [anon_sym_L_DQUOTE] = ACTIONS(1125), - [anon_sym_u_DQUOTE] = ACTIONS(1125), - [anon_sym_U_DQUOTE] = ACTIONS(1125), - [anon_sym_u8_DQUOTE] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(1125), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [anon_sym_NULL] = ACTIONS(1123), - [anon_sym_nullptr] = ACTIONS(1123), + [243] = { + [sym_identifier] = ACTIONS(1207), + [aux_sym_preproc_include_token1] = ACTIONS(1207), + [aux_sym_preproc_def_token1] = ACTIONS(1207), + [aux_sym_preproc_if_token1] = ACTIONS(1207), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1207), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1207), + [sym_preproc_directive] = ACTIONS(1207), + [anon_sym_LPAREN2] = ACTIONS(1209), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_TILDE] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1207), + [anon_sym_PLUS] = ACTIONS(1207), + [anon_sym_STAR] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1209), + [anon_sym_SEMI] = ACTIONS(1209), + [anon_sym___extension__] = ACTIONS(1207), + [anon_sym_typedef] = ACTIONS(1207), + [anon_sym_extern] = ACTIONS(1207), + [anon_sym___attribute__] = ACTIONS(1207), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1209), + [anon_sym___declspec] = ACTIONS(1207), + [anon_sym___cdecl] = ACTIONS(1207), + [anon_sym___clrcall] = ACTIONS(1207), + [anon_sym___stdcall] = ACTIONS(1207), + [anon_sym___fastcall] = ACTIONS(1207), + [anon_sym___thiscall] = ACTIONS(1207), + [anon_sym___vectorcall] = ACTIONS(1207), + [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_RBRACE] = ACTIONS(1209), + [anon_sym_signed] = ACTIONS(1207), + [anon_sym_unsigned] = ACTIONS(1207), + [anon_sym_long] = ACTIONS(1207), + [anon_sym_short] = ACTIONS(1207), + [anon_sym_static] = ACTIONS(1207), + [anon_sym_auto] = ACTIONS(1207), + [anon_sym_register] = ACTIONS(1207), + [anon_sym_inline] = ACTIONS(1207), + [anon_sym___inline] = ACTIONS(1207), + [anon_sym___inline__] = ACTIONS(1207), + [anon_sym___forceinline] = ACTIONS(1207), + [anon_sym_thread_local] = ACTIONS(1207), + [anon_sym___thread] = ACTIONS(1207), + [anon_sym_const] = ACTIONS(1207), + [anon_sym_constexpr] = ACTIONS(1207), + [anon_sym_volatile] = ACTIONS(1207), + [anon_sym_restrict] = ACTIONS(1207), + [anon_sym___restrict__] = ACTIONS(1207), + [anon_sym__Atomic] = ACTIONS(1207), + [anon_sym__Noreturn] = ACTIONS(1207), + [anon_sym_noreturn] = ACTIONS(1207), + [anon_sym_alignas] = ACTIONS(1207), + [anon_sym__Alignas] = ACTIONS(1207), + [sym_primitive_type] = ACTIONS(1207), + [anon_sym_enum] = ACTIONS(1207), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_union] = ACTIONS(1207), + [anon_sym_if] = ACTIONS(1207), + [anon_sym_else] = ACTIONS(1207), + [anon_sym_switch] = ACTIONS(1207), + [anon_sym_case] = ACTIONS(1207), + [anon_sym_default] = ACTIONS(1207), + [anon_sym_while] = ACTIONS(1207), + [anon_sym_do] = ACTIONS(1207), + [anon_sym_for] = ACTIONS(1207), + [anon_sym_return] = ACTIONS(1207), + [anon_sym_break] = ACTIONS(1207), + [anon_sym_continue] = ACTIONS(1207), + [anon_sym_goto] = ACTIONS(1207), + [anon_sym___try] = ACTIONS(1207), + [anon_sym___leave] = ACTIONS(1207), + [anon_sym_DASH_DASH] = ACTIONS(1209), + [anon_sym_PLUS_PLUS] = ACTIONS(1209), + [anon_sym_sizeof] = ACTIONS(1207), + [anon_sym___alignof__] = ACTIONS(1207), + [anon_sym___alignof] = ACTIONS(1207), + [anon_sym__alignof] = ACTIONS(1207), + [anon_sym_alignof] = ACTIONS(1207), + [anon_sym__Alignof] = ACTIONS(1207), + [anon_sym_offsetof] = ACTIONS(1207), + [anon_sym__Generic] = ACTIONS(1207), + [anon_sym_asm] = ACTIONS(1207), + [anon_sym___asm__] = ACTIONS(1207), + [sym_number_literal] = ACTIONS(1209), + [anon_sym_L_SQUOTE] = ACTIONS(1209), + [anon_sym_u_SQUOTE] = ACTIONS(1209), + [anon_sym_U_SQUOTE] = ACTIONS(1209), + [anon_sym_u8_SQUOTE] = ACTIONS(1209), + [anon_sym_SQUOTE] = ACTIONS(1209), + [anon_sym_L_DQUOTE] = ACTIONS(1209), + [anon_sym_u_DQUOTE] = ACTIONS(1209), + [anon_sym_U_DQUOTE] = ACTIONS(1209), + [anon_sym_u8_DQUOTE] = ACTIONS(1209), + [anon_sym_DQUOTE] = ACTIONS(1209), + [sym_true] = ACTIONS(1207), + [sym_false] = ACTIONS(1207), + [anon_sym_NULL] = ACTIONS(1207), + [anon_sym_nullptr] = ACTIONS(1207), [sym_comment] = ACTIONS(3), }, - [280] = { + [244] = { [sym_identifier] = ACTIONS(1175), [aux_sym_preproc_include_token1] = ACTIONS(1175), [aux_sym_preproc_def_token1] = ACTIONS(1175), @@ -44677,107 +40960,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1175), [sym_comment] = ACTIONS(3), }, - [281] = { - [sym_identifier] = ACTIONS(1183), - [aux_sym_preproc_include_token1] = ACTIONS(1183), - [aux_sym_preproc_def_token1] = ACTIONS(1183), - [aux_sym_preproc_if_token1] = ACTIONS(1183), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1183), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1183), - [sym_preproc_directive] = ACTIONS(1183), - [anon_sym_LPAREN2] = ACTIONS(1185), - [anon_sym_BANG] = ACTIONS(1185), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1183), - [anon_sym_STAR] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1185), - [anon_sym_SEMI] = ACTIONS(1185), - [anon_sym___extension__] = ACTIONS(1183), - [anon_sym_typedef] = ACTIONS(1183), - [anon_sym_extern] = ACTIONS(1183), - [anon_sym___attribute__] = ACTIONS(1183), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1185), - [anon_sym___declspec] = ACTIONS(1183), - [anon_sym___cdecl] = ACTIONS(1183), - [anon_sym___clrcall] = ACTIONS(1183), - [anon_sym___stdcall] = ACTIONS(1183), - [anon_sym___fastcall] = ACTIONS(1183), - [anon_sym___thiscall] = ACTIONS(1183), - [anon_sym___vectorcall] = ACTIONS(1183), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_RBRACE] = ACTIONS(1185), - [anon_sym_signed] = ACTIONS(1183), - [anon_sym_unsigned] = ACTIONS(1183), - [anon_sym_long] = ACTIONS(1183), - [anon_sym_short] = ACTIONS(1183), - [anon_sym_static] = ACTIONS(1183), - [anon_sym_auto] = ACTIONS(1183), - [anon_sym_register] = ACTIONS(1183), - [anon_sym_inline] = ACTIONS(1183), - [anon_sym___inline] = ACTIONS(1183), - [anon_sym___inline__] = ACTIONS(1183), - [anon_sym___forceinline] = ACTIONS(1183), - [anon_sym_thread_local] = ACTIONS(1183), - [anon_sym___thread] = ACTIONS(1183), - [anon_sym_const] = ACTIONS(1183), - [anon_sym_constexpr] = ACTIONS(1183), - [anon_sym_volatile] = ACTIONS(1183), - [anon_sym_restrict] = ACTIONS(1183), - [anon_sym___restrict__] = ACTIONS(1183), - [anon_sym__Atomic] = ACTIONS(1183), - [anon_sym__Noreturn] = ACTIONS(1183), - [anon_sym_noreturn] = ACTIONS(1183), - [anon_sym_alignas] = ACTIONS(1183), - [anon_sym__Alignas] = ACTIONS(1183), - [sym_primitive_type] = ACTIONS(1183), - [anon_sym_enum] = ACTIONS(1183), - [anon_sym_struct] = ACTIONS(1183), - [anon_sym_union] = ACTIONS(1183), - [anon_sym_if] = ACTIONS(1183), - [anon_sym_else] = ACTIONS(1183), - [anon_sym_switch] = ACTIONS(1183), - [anon_sym_case] = ACTIONS(1183), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_while] = ACTIONS(1183), - [anon_sym_do] = ACTIONS(1183), - [anon_sym_for] = ACTIONS(1183), - [anon_sym_return] = ACTIONS(1183), - [anon_sym_break] = ACTIONS(1183), - [anon_sym_continue] = ACTIONS(1183), - [anon_sym_goto] = ACTIONS(1183), - [anon_sym___try] = ACTIONS(1183), - [anon_sym___leave] = ACTIONS(1183), - [anon_sym_DASH_DASH] = ACTIONS(1185), - [anon_sym_PLUS_PLUS] = ACTIONS(1185), - [anon_sym_sizeof] = ACTIONS(1183), - [anon_sym___alignof__] = ACTIONS(1183), - [anon_sym___alignof] = ACTIONS(1183), - [anon_sym__alignof] = ACTIONS(1183), - [anon_sym_alignof] = ACTIONS(1183), - [anon_sym__Alignof] = ACTIONS(1183), - [anon_sym_offsetof] = ACTIONS(1183), - [anon_sym__Generic] = ACTIONS(1183), - [anon_sym_asm] = ACTIONS(1183), - [anon_sym___asm__] = ACTIONS(1183), - [sym_number_literal] = ACTIONS(1185), - [anon_sym_L_SQUOTE] = ACTIONS(1185), - [anon_sym_u_SQUOTE] = ACTIONS(1185), - [anon_sym_U_SQUOTE] = ACTIONS(1185), - [anon_sym_u8_SQUOTE] = ACTIONS(1185), - [anon_sym_SQUOTE] = ACTIONS(1185), - [anon_sym_L_DQUOTE] = ACTIONS(1185), - [anon_sym_u_DQUOTE] = ACTIONS(1185), - [anon_sym_U_DQUOTE] = ACTIONS(1185), - [anon_sym_u8_DQUOTE] = ACTIONS(1185), - [anon_sym_DQUOTE] = ACTIONS(1185), - [sym_true] = ACTIONS(1183), - [sym_false] = ACTIONS(1183), - [anon_sym_NULL] = ACTIONS(1183), - [anon_sym_nullptr] = ACTIONS(1183), + [245] = { + [sym_identifier] = ACTIONS(1167), + [aux_sym_preproc_include_token1] = ACTIONS(1167), + [aux_sym_preproc_def_token1] = ACTIONS(1167), + [aux_sym_preproc_if_token1] = ACTIONS(1167), + [aux_sym_preproc_if_token2] = ACTIONS(1167), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1167), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1167), + [sym_preproc_directive] = ACTIONS(1167), + [anon_sym_LPAREN2] = ACTIONS(1169), + [anon_sym_BANG] = ACTIONS(1169), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_DASH] = ACTIONS(1167), + [anon_sym_PLUS] = ACTIONS(1167), + [anon_sym_STAR] = ACTIONS(1169), + [anon_sym_AMP] = ACTIONS(1169), + [anon_sym_SEMI] = ACTIONS(1169), + [anon_sym___extension__] = ACTIONS(1167), + [anon_sym_typedef] = ACTIONS(1167), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym___attribute__] = ACTIONS(1167), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1169), + [anon_sym___declspec] = ACTIONS(1167), + [anon_sym___cdecl] = ACTIONS(1167), + [anon_sym___clrcall] = ACTIONS(1167), + [anon_sym___stdcall] = ACTIONS(1167), + [anon_sym___fastcall] = ACTIONS(1167), + [anon_sym___thiscall] = ACTIONS(1167), + [anon_sym___vectorcall] = ACTIONS(1167), + [anon_sym_LBRACE] = ACTIONS(1169), + [anon_sym_signed] = ACTIONS(1167), + [anon_sym_unsigned] = ACTIONS(1167), + [anon_sym_long] = ACTIONS(1167), + [anon_sym_short] = ACTIONS(1167), + [anon_sym_static] = ACTIONS(1167), + [anon_sym_auto] = ACTIONS(1167), + [anon_sym_register] = ACTIONS(1167), + [anon_sym_inline] = ACTIONS(1167), + [anon_sym___inline] = ACTIONS(1167), + [anon_sym___inline__] = ACTIONS(1167), + [anon_sym___forceinline] = ACTIONS(1167), + [anon_sym_thread_local] = ACTIONS(1167), + [anon_sym___thread] = ACTIONS(1167), + [anon_sym_const] = ACTIONS(1167), + [anon_sym_constexpr] = ACTIONS(1167), + [anon_sym_volatile] = ACTIONS(1167), + [anon_sym_restrict] = ACTIONS(1167), + [anon_sym___restrict__] = ACTIONS(1167), + [anon_sym__Atomic] = ACTIONS(1167), + [anon_sym__Noreturn] = ACTIONS(1167), + [anon_sym_noreturn] = ACTIONS(1167), + [anon_sym_alignas] = ACTIONS(1167), + [anon_sym__Alignas] = ACTIONS(1167), + [sym_primitive_type] = ACTIONS(1167), + [anon_sym_enum] = ACTIONS(1167), + [anon_sym_struct] = ACTIONS(1167), + [anon_sym_union] = ACTIONS(1167), + [anon_sym_if] = ACTIONS(1167), + [anon_sym_else] = ACTIONS(1167), + [anon_sym_switch] = ACTIONS(1167), + [anon_sym_case] = ACTIONS(1167), + [anon_sym_default] = ACTIONS(1167), + [anon_sym_while] = ACTIONS(1167), + [anon_sym_do] = ACTIONS(1167), + [anon_sym_for] = ACTIONS(1167), + [anon_sym_return] = ACTIONS(1167), + [anon_sym_break] = ACTIONS(1167), + [anon_sym_continue] = ACTIONS(1167), + [anon_sym_goto] = ACTIONS(1167), + [anon_sym___try] = ACTIONS(1167), + [anon_sym___leave] = ACTIONS(1167), + [anon_sym_DASH_DASH] = ACTIONS(1169), + [anon_sym_PLUS_PLUS] = ACTIONS(1169), + [anon_sym_sizeof] = ACTIONS(1167), + [anon_sym___alignof__] = ACTIONS(1167), + [anon_sym___alignof] = ACTIONS(1167), + [anon_sym__alignof] = ACTIONS(1167), + [anon_sym_alignof] = ACTIONS(1167), + [anon_sym__Alignof] = ACTIONS(1167), + [anon_sym_offsetof] = ACTIONS(1167), + [anon_sym__Generic] = ACTIONS(1167), + [anon_sym_asm] = ACTIONS(1167), + [anon_sym___asm__] = ACTIONS(1167), + [sym_number_literal] = ACTIONS(1169), + [anon_sym_L_SQUOTE] = ACTIONS(1169), + [anon_sym_u_SQUOTE] = ACTIONS(1169), + [anon_sym_U_SQUOTE] = ACTIONS(1169), + [anon_sym_u8_SQUOTE] = ACTIONS(1169), + [anon_sym_SQUOTE] = ACTIONS(1169), + [anon_sym_L_DQUOTE] = ACTIONS(1169), + [anon_sym_u_DQUOTE] = ACTIONS(1169), + [anon_sym_U_DQUOTE] = ACTIONS(1169), + [anon_sym_u8_DQUOTE] = ACTIONS(1169), + [anon_sym_DQUOTE] = ACTIONS(1169), + [sym_true] = ACTIONS(1167), + [sym_false] = ACTIONS(1167), + [anon_sym_NULL] = ACTIONS(1167), + [anon_sym_nullptr] = ACTIONS(1167), [sym_comment] = ACTIONS(3), }, - [282] = { + [246] = { [sym_identifier] = ACTIONS(1123), [aux_sym_preproc_include_token1] = ACTIONS(1123), [aux_sym_preproc_def_token1] = ACTIONS(1123), @@ -44877,2434 +41160,2217 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1123), [sym_comment] = ACTIONS(3), }, - [283] = { - [sym_identifier] = ACTIONS(1123), - [aux_sym_preproc_include_token1] = ACTIONS(1123), - [aux_sym_preproc_def_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token2] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), - [sym_preproc_directive] = ACTIONS(1123), - [anon_sym_LPAREN2] = ACTIONS(1125), - [anon_sym_BANG] = ACTIONS(1125), - [anon_sym_TILDE] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym___extension__] = ACTIONS(1123), - [anon_sym_typedef] = ACTIONS(1123), - [anon_sym_extern] = ACTIONS(1123), - [anon_sym___attribute__] = ACTIONS(1123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), - [anon_sym___declspec] = ACTIONS(1123), - [anon_sym___cdecl] = ACTIONS(1123), - [anon_sym___clrcall] = ACTIONS(1123), - [anon_sym___stdcall] = ACTIONS(1123), - [anon_sym___fastcall] = ACTIONS(1123), - [anon_sym___thiscall] = ACTIONS(1123), - [anon_sym___vectorcall] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_signed] = ACTIONS(1123), - [anon_sym_unsigned] = ACTIONS(1123), - [anon_sym_long] = ACTIONS(1123), - [anon_sym_short] = ACTIONS(1123), - [anon_sym_static] = ACTIONS(1123), - [anon_sym_auto] = ACTIONS(1123), - [anon_sym_register] = ACTIONS(1123), - [anon_sym_inline] = ACTIONS(1123), - [anon_sym___inline] = ACTIONS(1123), - [anon_sym___inline__] = ACTIONS(1123), - [anon_sym___forceinline] = ACTIONS(1123), - [anon_sym_thread_local] = ACTIONS(1123), - [anon_sym___thread] = ACTIONS(1123), - [anon_sym_const] = ACTIONS(1123), - [anon_sym_constexpr] = ACTIONS(1123), - [anon_sym_volatile] = ACTIONS(1123), - [anon_sym_restrict] = ACTIONS(1123), - [anon_sym___restrict__] = ACTIONS(1123), - [anon_sym__Atomic] = ACTIONS(1123), - [anon_sym__Noreturn] = ACTIONS(1123), - [anon_sym_noreturn] = ACTIONS(1123), - [anon_sym_alignas] = ACTIONS(1123), - [anon_sym__Alignas] = ACTIONS(1123), - [sym_primitive_type] = ACTIONS(1123), - [anon_sym_enum] = ACTIONS(1123), - [anon_sym_struct] = ACTIONS(1123), - [anon_sym_union] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1123), - [anon_sym_else] = ACTIONS(1123), - [anon_sym_switch] = ACTIONS(1123), - [anon_sym_case] = ACTIONS(1123), - [anon_sym_default] = ACTIONS(1123), - [anon_sym_while] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(1123), - [anon_sym_for] = ACTIONS(1123), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_break] = ACTIONS(1123), - [anon_sym_continue] = ACTIONS(1123), - [anon_sym_goto] = ACTIONS(1123), - [anon_sym___try] = ACTIONS(1123), - [anon_sym___leave] = ACTIONS(1123), - [anon_sym_DASH_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1125), - [anon_sym_sizeof] = ACTIONS(1123), - [anon_sym___alignof__] = ACTIONS(1123), - [anon_sym___alignof] = ACTIONS(1123), - [anon_sym__alignof] = ACTIONS(1123), - [anon_sym_alignof] = ACTIONS(1123), - [anon_sym__Alignof] = ACTIONS(1123), - [anon_sym_offsetof] = ACTIONS(1123), - [anon_sym__Generic] = ACTIONS(1123), - [anon_sym_asm] = ACTIONS(1123), - [anon_sym___asm__] = ACTIONS(1123), - [sym_number_literal] = ACTIONS(1125), - [anon_sym_L_SQUOTE] = ACTIONS(1125), - [anon_sym_u_SQUOTE] = ACTIONS(1125), - [anon_sym_U_SQUOTE] = ACTIONS(1125), - [anon_sym_u8_SQUOTE] = ACTIONS(1125), - [anon_sym_SQUOTE] = ACTIONS(1125), - [anon_sym_L_DQUOTE] = ACTIONS(1125), - [anon_sym_u_DQUOTE] = ACTIONS(1125), - [anon_sym_U_DQUOTE] = ACTIONS(1125), - [anon_sym_u8_DQUOTE] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(1125), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [anon_sym_NULL] = ACTIONS(1123), - [anon_sym_nullptr] = ACTIONS(1123), + [247] = { + [sym_identifier] = ACTIONS(1195), + [aux_sym_preproc_include_token1] = ACTIONS(1195), + [aux_sym_preproc_def_token1] = ACTIONS(1195), + [aux_sym_preproc_if_token1] = ACTIONS(1195), + [aux_sym_preproc_if_token2] = ACTIONS(1195), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1195), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1195), + [sym_preproc_directive] = ACTIONS(1195), + [anon_sym_LPAREN2] = ACTIONS(1197), + [anon_sym_BANG] = ACTIONS(1197), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1197), + [anon_sym_SEMI] = ACTIONS(1197), + [anon_sym___extension__] = ACTIONS(1195), + [anon_sym_typedef] = ACTIONS(1195), + [anon_sym_extern] = ACTIONS(1195), + [anon_sym___attribute__] = ACTIONS(1195), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1197), + [anon_sym___declspec] = ACTIONS(1195), + [anon_sym___cdecl] = ACTIONS(1195), + [anon_sym___clrcall] = ACTIONS(1195), + [anon_sym___stdcall] = ACTIONS(1195), + [anon_sym___fastcall] = ACTIONS(1195), + [anon_sym___thiscall] = ACTIONS(1195), + [anon_sym___vectorcall] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_signed] = ACTIONS(1195), + [anon_sym_unsigned] = ACTIONS(1195), + [anon_sym_long] = ACTIONS(1195), + [anon_sym_short] = ACTIONS(1195), + [anon_sym_static] = ACTIONS(1195), + [anon_sym_auto] = ACTIONS(1195), + [anon_sym_register] = ACTIONS(1195), + [anon_sym_inline] = ACTIONS(1195), + [anon_sym___inline] = ACTIONS(1195), + [anon_sym___inline__] = ACTIONS(1195), + [anon_sym___forceinline] = ACTIONS(1195), + [anon_sym_thread_local] = ACTIONS(1195), + [anon_sym___thread] = ACTIONS(1195), + [anon_sym_const] = ACTIONS(1195), + [anon_sym_constexpr] = ACTIONS(1195), + [anon_sym_volatile] = ACTIONS(1195), + [anon_sym_restrict] = ACTIONS(1195), + [anon_sym___restrict__] = ACTIONS(1195), + [anon_sym__Atomic] = ACTIONS(1195), + [anon_sym__Noreturn] = ACTIONS(1195), + [anon_sym_noreturn] = ACTIONS(1195), + [anon_sym_alignas] = ACTIONS(1195), + [anon_sym__Alignas] = ACTIONS(1195), + [sym_primitive_type] = ACTIONS(1195), + [anon_sym_enum] = ACTIONS(1195), + [anon_sym_struct] = ACTIONS(1195), + [anon_sym_union] = ACTIONS(1195), + [anon_sym_if] = ACTIONS(1195), + [anon_sym_else] = ACTIONS(1195), + [anon_sym_switch] = ACTIONS(1195), + [anon_sym_case] = ACTIONS(1195), + [anon_sym_default] = ACTIONS(1195), + [anon_sym_while] = ACTIONS(1195), + [anon_sym_do] = ACTIONS(1195), + [anon_sym_for] = ACTIONS(1195), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1195), + [anon_sym_continue] = ACTIONS(1195), + [anon_sym_goto] = ACTIONS(1195), + [anon_sym___try] = ACTIONS(1195), + [anon_sym___leave] = ACTIONS(1195), + [anon_sym_DASH_DASH] = ACTIONS(1197), + [anon_sym_PLUS_PLUS] = ACTIONS(1197), + [anon_sym_sizeof] = ACTIONS(1195), + [anon_sym___alignof__] = ACTIONS(1195), + [anon_sym___alignof] = ACTIONS(1195), + [anon_sym__alignof] = ACTIONS(1195), + [anon_sym_alignof] = ACTIONS(1195), + [anon_sym__Alignof] = ACTIONS(1195), + [anon_sym_offsetof] = ACTIONS(1195), + [anon_sym__Generic] = ACTIONS(1195), + [anon_sym_asm] = ACTIONS(1195), + [anon_sym___asm__] = ACTIONS(1195), + [sym_number_literal] = ACTIONS(1197), + [anon_sym_L_SQUOTE] = ACTIONS(1197), + [anon_sym_u_SQUOTE] = ACTIONS(1197), + [anon_sym_U_SQUOTE] = ACTIONS(1197), + [anon_sym_u8_SQUOTE] = ACTIONS(1197), + [anon_sym_SQUOTE] = ACTIONS(1197), + [anon_sym_L_DQUOTE] = ACTIONS(1197), + [anon_sym_u_DQUOTE] = ACTIONS(1197), + [anon_sym_U_DQUOTE] = ACTIONS(1197), + [anon_sym_u8_DQUOTE] = ACTIONS(1197), + [anon_sym_DQUOTE] = ACTIONS(1197), + [sym_true] = ACTIONS(1195), + [sym_false] = ACTIONS(1195), + [anon_sym_NULL] = ACTIONS(1195), + [anon_sym_nullptr] = ACTIONS(1195), [sym_comment] = ACTIONS(3), }, - [284] = { - [sym_identifier] = ACTIONS(1123), - [aux_sym_preproc_include_token1] = ACTIONS(1123), - [aux_sym_preproc_def_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token2] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), - [sym_preproc_directive] = ACTIONS(1123), - [anon_sym_LPAREN2] = ACTIONS(1125), - [anon_sym_BANG] = ACTIONS(1125), - [anon_sym_TILDE] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym___extension__] = ACTIONS(1123), - [anon_sym_typedef] = ACTIONS(1123), - [anon_sym_extern] = ACTIONS(1123), - [anon_sym___attribute__] = ACTIONS(1123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), - [anon_sym___declspec] = ACTIONS(1123), - [anon_sym___cdecl] = ACTIONS(1123), - [anon_sym___clrcall] = ACTIONS(1123), - [anon_sym___stdcall] = ACTIONS(1123), - [anon_sym___fastcall] = ACTIONS(1123), - [anon_sym___thiscall] = ACTIONS(1123), - [anon_sym___vectorcall] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_signed] = ACTIONS(1123), - [anon_sym_unsigned] = ACTIONS(1123), - [anon_sym_long] = ACTIONS(1123), - [anon_sym_short] = ACTIONS(1123), - [anon_sym_static] = ACTIONS(1123), - [anon_sym_auto] = ACTIONS(1123), - [anon_sym_register] = ACTIONS(1123), - [anon_sym_inline] = ACTIONS(1123), - [anon_sym___inline] = ACTIONS(1123), - [anon_sym___inline__] = ACTIONS(1123), - [anon_sym___forceinline] = ACTIONS(1123), - [anon_sym_thread_local] = ACTIONS(1123), - [anon_sym___thread] = ACTIONS(1123), - [anon_sym_const] = ACTIONS(1123), - [anon_sym_constexpr] = ACTIONS(1123), - [anon_sym_volatile] = ACTIONS(1123), - [anon_sym_restrict] = ACTIONS(1123), - [anon_sym___restrict__] = ACTIONS(1123), - [anon_sym__Atomic] = ACTIONS(1123), - [anon_sym__Noreturn] = ACTIONS(1123), - [anon_sym_noreturn] = ACTIONS(1123), - [anon_sym_alignas] = ACTIONS(1123), - [anon_sym__Alignas] = ACTIONS(1123), - [sym_primitive_type] = ACTIONS(1123), - [anon_sym_enum] = ACTIONS(1123), - [anon_sym_struct] = ACTIONS(1123), - [anon_sym_union] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1123), - [anon_sym_else] = ACTIONS(1123), - [anon_sym_switch] = ACTIONS(1123), - [anon_sym_case] = ACTIONS(1123), - [anon_sym_default] = ACTIONS(1123), - [anon_sym_while] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(1123), - [anon_sym_for] = ACTIONS(1123), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_break] = ACTIONS(1123), - [anon_sym_continue] = ACTIONS(1123), - [anon_sym_goto] = ACTIONS(1123), - [anon_sym___try] = ACTIONS(1123), - [anon_sym___leave] = ACTIONS(1123), - [anon_sym_DASH_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1125), - [anon_sym_sizeof] = ACTIONS(1123), - [anon_sym___alignof__] = ACTIONS(1123), - [anon_sym___alignof] = ACTIONS(1123), - [anon_sym__alignof] = ACTIONS(1123), - [anon_sym_alignof] = ACTIONS(1123), - [anon_sym__Alignof] = ACTIONS(1123), - [anon_sym_offsetof] = ACTIONS(1123), - [anon_sym__Generic] = ACTIONS(1123), - [anon_sym_asm] = ACTIONS(1123), - [anon_sym___asm__] = ACTIONS(1123), - [sym_number_literal] = ACTIONS(1125), - [anon_sym_L_SQUOTE] = ACTIONS(1125), - [anon_sym_u_SQUOTE] = ACTIONS(1125), - [anon_sym_U_SQUOTE] = ACTIONS(1125), - [anon_sym_u8_SQUOTE] = ACTIONS(1125), - [anon_sym_SQUOTE] = ACTIONS(1125), - [anon_sym_L_DQUOTE] = ACTIONS(1125), - [anon_sym_u_DQUOTE] = ACTIONS(1125), - [anon_sym_U_DQUOTE] = ACTIONS(1125), - [anon_sym_u8_DQUOTE] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(1125), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [anon_sym_NULL] = ACTIONS(1123), - [anon_sym_nullptr] = ACTIONS(1123), + [248] = { + [sym_identifier] = ACTIONS(1183), + [aux_sym_preproc_include_token1] = ACTIONS(1183), + [aux_sym_preproc_def_token1] = ACTIONS(1183), + [aux_sym_preproc_if_token1] = ACTIONS(1183), + [aux_sym_preproc_if_token2] = ACTIONS(1183), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1183), + [sym_preproc_directive] = ACTIONS(1183), + [anon_sym_LPAREN2] = ACTIONS(1185), + [anon_sym_BANG] = ACTIONS(1185), + [anon_sym_TILDE] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1183), + [anon_sym_PLUS] = ACTIONS(1183), + [anon_sym_STAR] = ACTIONS(1185), + [anon_sym_AMP] = ACTIONS(1185), + [anon_sym_SEMI] = ACTIONS(1185), + [anon_sym___extension__] = ACTIONS(1183), + [anon_sym_typedef] = ACTIONS(1183), + [anon_sym_extern] = ACTIONS(1183), + [anon_sym___attribute__] = ACTIONS(1183), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1185), + [anon_sym___declspec] = ACTIONS(1183), + [anon_sym___cdecl] = ACTIONS(1183), + [anon_sym___clrcall] = ACTIONS(1183), + [anon_sym___stdcall] = ACTIONS(1183), + [anon_sym___fastcall] = ACTIONS(1183), + [anon_sym___thiscall] = ACTIONS(1183), + [anon_sym___vectorcall] = ACTIONS(1183), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_signed] = ACTIONS(1183), + [anon_sym_unsigned] = ACTIONS(1183), + [anon_sym_long] = ACTIONS(1183), + [anon_sym_short] = ACTIONS(1183), + [anon_sym_static] = ACTIONS(1183), + [anon_sym_auto] = ACTIONS(1183), + [anon_sym_register] = ACTIONS(1183), + [anon_sym_inline] = ACTIONS(1183), + [anon_sym___inline] = ACTIONS(1183), + [anon_sym___inline__] = ACTIONS(1183), + [anon_sym___forceinline] = ACTIONS(1183), + [anon_sym_thread_local] = ACTIONS(1183), + [anon_sym___thread] = ACTIONS(1183), + [anon_sym_const] = ACTIONS(1183), + [anon_sym_constexpr] = ACTIONS(1183), + [anon_sym_volatile] = ACTIONS(1183), + [anon_sym_restrict] = ACTIONS(1183), + [anon_sym___restrict__] = ACTIONS(1183), + [anon_sym__Atomic] = ACTIONS(1183), + [anon_sym__Noreturn] = ACTIONS(1183), + [anon_sym_noreturn] = ACTIONS(1183), + [anon_sym_alignas] = ACTIONS(1183), + [anon_sym__Alignas] = ACTIONS(1183), + [sym_primitive_type] = ACTIONS(1183), + [anon_sym_enum] = ACTIONS(1183), + [anon_sym_struct] = ACTIONS(1183), + [anon_sym_union] = ACTIONS(1183), + [anon_sym_if] = ACTIONS(1183), + [anon_sym_else] = ACTIONS(1183), + [anon_sym_switch] = ACTIONS(1183), + [anon_sym_case] = ACTIONS(1183), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_while] = ACTIONS(1183), + [anon_sym_do] = ACTIONS(1183), + [anon_sym_for] = ACTIONS(1183), + [anon_sym_return] = ACTIONS(1183), + [anon_sym_break] = ACTIONS(1183), + [anon_sym_continue] = ACTIONS(1183), + [anon_sym_goto] = ACTIONS(1183), + [anon_sym___try] = ACTIONS(1183), + [anon_sym___leave] = ACTIONS(1183), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_sizeof] = ACTIONS(1183), + [anon_sym___alignof__] = ACTIONS(1183), + [anon_sym___alignof] = ACTIONS(1183), + [anon_sym__alignof] = ACTIONS(1183), + [anon_sym_alignof] = ACTIONS(1183), + [anon_sym__Alignof] = ACTIONS(1183), + [anon_sym_offsetof] = ACTIONS(1183), + [anon_sym__Generic] = ACTIONS(1183), + [anon_sym_asm] = ACTIONS(1183), + [anon_sym___asm__] = ACTIONS(1183), + [sym_number_literal] = ACTIONS(1185), + [anon_sym_L_SQUOTE] = ACTIONS(1185), + [anon_sym_u_SQUOTE] = ACTIONS(1185), + [anon_sym_U_SQUOTE] = ACTIONS(1185), + [anon_sym_u8_SQUOTE] = ACTIONS(1185), + [anon_sym_SQUOTE] = ACTIONS(1185), + [anon_sym_L_DQUOTE] = ACTIONS(1185), + [anon_sym_u_DQUOTE] = ACTIONS(1185), + [anon_sym_U_DQUOTE] = ACTIONS(1185), + [anon_sym_u8_DQUOTE] = ACTIONS(1185), + [anon_sym_DQUOTE] = ACTIONS(1185), + [sym_true] = ACTIONS(1183), + [sym_false] = ACTIONS(1183), + [anon_sym_NULL] = ACTIONS(1183), + [anon_sym_nullptr] = ACTIONS(1183), [sym_comment] = ACTIONS(3), }, - [285] = { - [ts_builtin_sym_end] = ACTIONS(1129), - [sym_identifier] = ACTIONS(1127), - [aux_sym_preproc_include_token1] = ACTIONS(1127), - [aux_sym_preproc_def_token1] = ACTIONS(1127), - [aux_sym_preproc_if_token1] = ACTIONS(1127), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1127), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1127), - [sym_preproc_directive] = ACTIONS(1127), - [anon_sym_LPAREN2] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_STAR] = ACTIONS(1129), - [anon_sym_AMP] = ACTIONS(1129), - [anon_sym_SEMI] = ACTIONS(1129), - [anon_sym___extension__] = ACTIONS(1127), - [anon_sym_typedef] = ACTIONS(1127), - [anon_sym_extern] = ACTIONS(1127), - [anon_sym___attribute__] = ACTIONS(1127), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1129), - [anon_sym___declspec] = ACTIONS(1127), - [anon_sym___cdecl] = ACTIONS(1127), - [anon_sym___clrcall] = ACTIONS(1127), - [anon_sym___stdcall] = ACTIONS(1127), - [anon_sym___fastcall] = ACTIONS(1127), - [anon_sym___thiscall] = ACTIONS(1127), - [anon_sym___vectorcall] = ACTIONS(1127), - [anon_sym_LBRACE] = ACTIONS(1129), - [anon_sym_signed] = ACTIONS(1127), - [anon_sym_unsigned] = ACTIONS(1127), - [anon_sym_long] = ACTIONS(1127), - [anon_sym_short] = ACTIONS(1127), - [anon_sym_static] = ACTIONS(1127), - [anon_sym_auto] = ACTIONS(1127), - [anon_sym_register] = ACTIONS(1127), - [anon_sym_inline] = ACTIONS(1127), - [anon_sym___inline] = ACTIONS(1127), - [anon_sym___inline__] = ACTIONS(1127), - [anon_sym___forceinline] = ACTIONS(1127), - [anon_sym_thread_local] = ACTIONS(1127), - [anon_sym___thread] = ACTIONS(1127), - [anon_sym_const] = ACTIONS(1127), - [anon_sym_constexpr] = ACTIONS(1127), - [anon_sym_volatile] = ACTIONS(1127), - [anon_sym_restrict] = ACTIONS(1127), - [anon_sym___restrict__] = ACTIONS(1127), - [anon_sym__Atomic] = ACTIONS(1127), - [anon_sym__Noreturn] = ACTIONS(1127), - [anon_sym_noreturn] = ACTIONS(1127), - [anon_sym_alignas] = ACTIONS(1127), - [anon_sym__Alignas] = ACTIONS(1127), - [sym_primitive_type] = ACTIONS(1127), - [anon_sym_enum] = ACTIONS(1127), - [anon_sym_struct] = ACTIONS(1127), - [anon_sym_union] = ACTIONS(1127), - [anon_sym_if] = ACTIONS(1127), - [anon_sym_else] = ACTIONS(1127), - [anon_sym_switch] = ACTIONS(1127), - [anon_sym_case] = ACTIONS(1127), - [anon_sym_default] = ACTIONS(1127), - [anon_sym_while] = ACTIONS(1127), - [anon_sym_do] = ACTIONS(1127), - [anon_sym_for] = ACTIONS(1127), - [anon_sym_return] = ACTIONS(1127), - [anon_sym_break] = ACTIONS(1127), - [anon_sym_continue] = ACTIONS(1127), - [anon_sym_goto] = ACTIONS(1127), - [anon_sym___try] = ACTIONS(1127), - [anon_sym___leave] = ACTIONS(1127), - [anon_sym_DASH_DASH] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1129), - [anon_sym_sizeof] = ACTIONS(1127), - [anon_sym___alignof__] = ACTIONS(1127), - [anon_sym___alignof] = ACTIONS(1127), - [anon_sym__alignof] = ACTIONS(1127), - [anon_sym_alignof] = ACTIONS(1127), - [anon_sym__Alignof] = ACTIONS(1127), - [anon_sym_offsetof] = ACTIONS(1127), - [anon_sym__Generic] = ACTIONS(1127), - [anon_sym_asm] = ACTIONS(1127), - [anon_sym___asm__] = ACTIONS(1127), - [sym_number_literal] = ACTIONS(1129), - [anon_sym_L_SQUOTE] = ACTIONS(1129), - [anon_sym_u_SQUOTE] = ACTIONS(1129), - [anon_sym_U_SQUOTE] = ACTIONS(1129), - [anon_sym_u8_SQUOTE] = ACTIONS(1129), - [anon_sym_SQUOTE] = ACTIONS(1129), - [anon_sym_L_DQUOTE] = ACTIONS(1129), - [anon_sym_u_DQUOTE] = ACTIONS(1129), - [anon_sym_U_DQUOTE] = ACTIONS(1129), - [anon_sym_u8_DQUOTE] = ACTIONS(1129), - [anon_sym_DQUOTE] = ACTIONS(1129), - [sym_true] = ACTIONS(1127), - [sym_false] = ACTIONS(1127), - [anon_sym_NULL] = ACTIONS(1127), - [anon_sym_nullptr] = ACTIONS(1127), + [249] = { + [ts_builtin_sym_end] = ACTIONS(1141), + [sym_identifier] = ACTIONS(1139), + [aux_sym_preproc_include_token1] = ACTIONS(1139), + [aux_sym_preproc_def_token1] = ACTIONS(1139), + [aux_sym_preproc_if_token1] = ACTIONS(1139), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1139), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1139), + [sym_preproc_directive] = ACTIONS(1139), + [anon_sym_LPAREN2] = ACTIONS(1141), + [anon_sym_BANG] = ACTIONS(1141), + [anon_sym_TILDE] = ACTIONS(1141), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_PLUS] = ACTIONS(1139), + [anon_sym_STAR] = ACTIONS(1141), + [anon_sym_AMP] = ACTIONS(1141), + [anon_sym_SEMI] = ACTIONS(1141), + [anon_sym___extension__] = ACTIONS(1139), + [anon_sym_typedef] = ACTIONS(1139), + [anon_sym_extern] = ACTIONS(1139), + [anon_sym___attribute__] = ACTIONS(1139), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1141), + [anon_sym___declspec] = ACTIONS(1139), + [anon_sym___cdecl] = ACTIONS(1139), + [anon_sym___clrcall] = ACTIONS(1139), + [anon_sym___stdcall] = ACTIONS(1139), + [anon_sym___fastcall] = ACTIONS(1139), + [anon_sym___thiscall] = ACTIONS(1139), + [anon_sym___vectorcall] = ACTIONS(1139), + [anon_sym_LBRACE] = ACTIONS(1141), + [anon_sym_signed] = ACTIONS(1139), + [anon_sym_unsigned] = ACTIONS(1139), + [anon_sym_long] = ACTIONS(1139), + [anon_sym_short] = ACTIONS(1139), + [anon_sym_static] = ACTIONS(1139), + [anon_sym_auto] = ACTIONS(1139), + [anon_sym_register] = ACTIONS(1139), + [anon_sym_inline] = ACTIONS(1139), + [anon_sym___inline] = ACTIONS(1139), + [anon_sym___inline__] = ACTIONS(1139), + [anon_sym___forceinline] = ACTIONS(1139), + [anon_sym_thread_local] = ACTIONS(1139), + [anon_sym___thread] = ACTIONS(1139), + [anon_sym_const] = ACTIONS(1139), + [anon_sym_constexpr] = ACTIONS(1139), + [anon_sym_volatile] = ACTIONS(1139), + [anon_sym_restrict] = ACTIONS(1139), + [anon_sym___restrict__] = ACTIONS(1139), + [anon_sym__Atomic] = ACTIONS(1139), + [anon_sym__Noreturn] = ACTIONS(1139), + [anon_sym_noreturn] = ACTIONS(1139), + [anon_sym_alignas] = ACTIONS(1139), + [anon_sym__Alignas] = ACTIONS(1139), + [sym_primitive_type] = ACTIONS(1139), + [anon_sym_enum] = ACTIONS(1139), + [anon_sym_struct] = ACTIONS(1139), + [anon_sym_union] = ACTIONS(1139), + [anon_sym_if] = ACTIONS(1139), + [anon_sym_else] = ACTIONS(1139), + [anon_sym_switch] = ACTIONS(1139), + [anon_sym_case] = ACTIONS(1139), + [anon_sym_default] = ACTIONS(1139), + [anon_sym_while] = ACTIONS(1139), + [anon_sym_do] = ACTIONS(1139), + [anon_sym_for] = ACTIONS(1139), + [anon_sym_return] = ACTIONS(1139), + [anon_sym_break] = ACTIONS(1139), + [anon_sym_continue] = ACTIONS(1139), + [anon_sym_goto] = ACTIONS(1139), + [anon_sym___try] = ACTIONS(1139), + [anon_sym___leave] = ACTIONS(1139), + [anon_sym_DASH_DASH] = ACTIONS(1141), + [anon_sym_PLUS_PLUS] = ACTIONS(1141), + [anon_sym_sizeof] = ACTIONS(1139), + [anon_sym___alignof__] = ACTIONS(1139), + [anon_sym___alignof] = ACTIONS(1139), + [anon_sym__alignof] = ACTIONS(1139), + [anon_sym_alignof] = ACTIONS(1139), + [anon_sym__Alignof] = ACTIONS(1139), + [anon_sym_offsetof] = ACTIONS(1139), + [anon_sym__Generic] = ACTIONS(1139), + [anon_sym_asm] = ACTIONS(1139), + [anon_sym___asm__] = ACTIONS(1139), + [sym_number_literal] = ACTIONS(1141), + [anon_sym_L_SQUOTE] = ACTIONS(1141), + [anon_sym_u_SQUOTE] = ACTIONS(1141), + [anon_sym_U_SQUOTE] = ACTIONS(1141), + [anon_sym_u8_SQUOTE] = ACTIONS(1141), + [anon_sym_SQUOTE] = ACTIONS(1141), + [anon_sym_L_DQUOTE] = ACTIONS(1141), + [anon_sym_u_DQUOTE] = ACTIONS(1141), + [anon_sym_U_DQUOTE] = ACTIONS(1141), + [anon_sym_u8_DQUOTE] = ACTIONS(1141), + [anon_sym_DQUOTE] = ACTIONS(1141), + [sym_true] = ACTIONS(1139), + [sym_false] = ACTIONS(1139), + [anon_sym_NULL] = ACTIONS(1139), + [anon_sym_nullptr] = ACTIONS(1139), [sym_comment] = ACTIONS(3), }, - [286] = { - [sym_identifier] = ACTIONS(1123), - [aux_sym_preproc_include_token1] = ACTIONS(1123), - [aux_sym_preproc_def_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token2] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), - [sym_preproc_directive] = ACTIONS(1123), - [anon_sym_LPAREN2] = ACTIONS(1125), - [anon_sym_BANG] = ACTIONS(1125), - [anon_sym_TILDE] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym___extension__] = ACTIONS(1123), - [anon_sym_typedef] = ACTIONS(1123), - [anon_sym_extern] = ACTIONS(1123), - [anon_sym___attribute__] = ACTIONS(1123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), - [anon_sym___declspec] = ACTIONS(1123), - [anon_sym___cdecl] = ACTIONS(1123), - [anon_sym___clrcall] = ACTIONS(1123), - [anon_sym___stdcall] = ACTIONS(1123), - [anon_sym___fastcall] = ACTIONS(1123), - [anon_sym___thiscall] = ACTIONS(1123), - [anon_sym___vectorcall] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_signed] = ACTIONS(1123), - [anon_sym_unsigned] = ACTIONS(1123), - [anon_sym_long] = ACTIONS(1123), - [anon_sym_short] = ACTIONS(1123), - [anon_sym_static] = ACTIONS(1123), - [anon_sym_auto] = ACTIONS(1123), - [anon_sym_register] = ACTIONS(1123), - [anon_sym_inline] = ACTIONS(1123), - [anon_sym___inline] = ACTIONS(1123), - [anon_sym___inline__] = ACTIONS(1123), - [anon_sym___forceinline] = ACTIONS(1123), - [anon_sym_thread_local] = ACTIONS(1123), - [anon_sym___thread] = ACTIONS(1123), - [anon_sym_const] = ACTIONS(1123), - [anon_sym_constexpr] = ACTIONS(1123), - [anon_sym_volatile] = ACTIONS(1123), - [anon_sym_restrict] = ACTIONS(1123), - [anon_sym___restrict__] = ACTIONS(1123), - [anon_sym__Atomic] = ACTIONS(1123), - [anon_sym__Noreturn] = ACTIONS(1123), - [anon_sym_noreturn] = ACTIONS(1123), - [anon_sym_alignas] = ACTIONS(1123), - [anon_sym__Alignas] = ACTIONS(1123), - [sym_primitive_type] = ACTIONS(1123), - [anon_sym_enum] = ACTIONS(1123), - [anon_sym_struct] = ACTIONS(1123), - [anon_sym_union] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1123), - [anon_sym_else] = ACTIONS(1123), - [anon_sym_switch] = ACTIONS(1123), - [anon_sym_case] = ACTIONS(1123), - [anon_sym_default] = ACTIONS(1123), - [anon_sym_while] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(1123), - [anon_sym_for] = ACTIONS(1123), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_break] = ACTIONS(1123), - [anon_sym_continue] = ACTIONS(1123), - [anon_sym_goto] = ACTIONS(1123), - [anon_sym___try] = ACTIONS(1123), - [anon_sym___leave] = ACTIONS(1123), - [anon_sym_DASH_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1125), - [anon_sym_sizeof] = ACTIONS(1123), - [anon_sym___alignof__] = ACTIONS(1123), - [anon_sym___alignof] = ACTIONS(1123), - [anon_sym__alignof] = ACTIONS(1123), - [anon_sym_alignof] = ACTIONS(1123), - [anon_sym__Alignof] = ACTIONS(1123), - [anon_sym_offsetof] = ACTIONS(1123), - [anon_sym__Generic] = ACTIONS(1123), - [anon_sym_asm] = ACTIONS(1123), - [anon_sym___asm__] = ACTIONS(1123), - [sym_number_literal] = ACTIONS(1125), - [anon_sym_L_SQUOTE] = ACTIONS(1125), - [anon_sym_u_SQUOTE] = ACTIONS(1125), - [anon_sym_U_SQUOTE] = ACTIONS(1125), - [anon_sym_u8_SQUOTE] = ACTIONS(1125), - [anon_sym_SQUOTE] = ACTIONS(1125), - [anon_sym_L_DQUOTE] = ACTIONS(1125), - [anon_sym_u_DQUOTE] = ACTIONS(1125), - [anon_sym_U_DQUOTE] = ACTIONS(1125), - [anon_sym_u8_DQUOTE] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(1125), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [anon_sym_NULL] = ACTIONS(1123), - [anon_sym_nullptr] = ACTIONS(1123), - [sym_comment] = ACTIONS(3), - }, - [287] = { - [sym_identifier] = ACTIONS(1123), - [aux_sym_preproc_include_token1] = ACTIONS(1123), - [aux_sym_preproc_def_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token2] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), - [sym_preproc_directive] = ACTIONS(1123), - [anon_sym_LPAREN2] = ACTIONS(1125), - [anon_sym_BANG] = ACTIONS(1125), - [anon_sym_TILDE] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym___extension__] = ACTIONS(1123), - [anon_sym_typedef] = ACTIONS(1123), - [anon_sym_extern] = ACTIONS(1123), - [anon_sym___attribute__] = ACTIONS(1123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), - [anon_sym___declspec] = ACTIONS(1123), - [anon_sym___cdecl] = ACTIONS(1123), - [anon_sym___clrcall] = ACTIONS(1123), - [anon_sym___stdcall] = ACTIONS(1123), - [anon_sym___fastcall] = ACTIONS(1123), - [anon_sym___thiscall] = ACTIONS(1123), - [anon_sym___vectorcall] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_signed] = ACTIONS(1123), - [anon_sym_unsigned] = ACTIONS(1123), - [anon_sym_long] = ACTIONS(1123), - [anon_sym_short] = ACTIONS(1123), - [anon_sym_static] = ACTIONS(1123), - [anon_sym_auto] = ACTIONS(1123), - [anon_sym_register] = ACTIONS(1123), - [anon_sym_inline] = ACTIONS(1123), - [anon_sym___inline] = ACTIONS(1123), - [anon_sym___inline__] = ACTIONS(1123), - [anon_sym___forceinline] = ACTIONS(1123), - [anon_sym_thread_local] = ACTIONS(1123), - [anon_sym___thread] = ACTIONS(1123), - [anon_sym_const] = ACTIONS(1123), - [anon_sym_constexpr] = ACTIONS(1123), - [anon_sym_volatile] = ACTIONS(1123), - [anon_sym_restrict] = ACTIONS(1123), - [anon_sym___restrict__] = ACTIONS(1123), - [anon_sym__Atomic] = ACTIONS(1123), - [anon_sym__Noreturn] = ACTIONS(1123), - [anon_sym_noreturn] = ACTIONS(1123), - [anon_sym_alignas] = ACTIONS(1123), - [anon_sym__Alignas] = ACTIONS(1123), - [sym_primitive_type] = ACTIONS(1123), - [anon_sym_enum] = ACTIONS(1123), - [anon_sym_struct] = ACTIONS(1123), - [anon_sym_union] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1123), - [anon_sym_else] = ACTIONS(1123), - [anon_sym_switch] = ACTIONS(1123), - [anon_sym_case] = ACTIONS(1123), - [anon_sym_default] = ACTIONS(1123), - [anon_sym_while] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(1123), - [anon_sym_for] = ACTIONS(1123), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_break] = ACTIONS(1123), - [anon_sym_continue] = ACTIONS(1123), - [anon_sym_goto] = ACTIONS(1123), - [anon_sym___try] = ACTIONS(1123), - [anon_sym___leave] = ACTIONS(1123), - [anon_sym_DASH_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1125), - [anon_sym_sizeof] = ACTIONS(1123), - [anon_sym___alignof__] = ACTIONS(1123), - [anon_sym___alignof] = ACTIONS(1123), - [anon_sym__alignof] = ACTIONS(1123), - [anon_sym_alignof] = ACTIONS(1123), - [anon_sym__Alignof] = ACTIONS(1123), - [anon_sym_offsetof] = ACTIONS(1123), - [anon_sym__Generic] = ACTIONS(1123), - [anon_sym_asm] = ACTIONS(1123), - [anon_sym___asm__] = ACTIONS(1123), - [sym_number_literal] = ACTIONS(1125), - [anon_sym_L_SQUOTE] = ACTIONS(1125), - [anon_sym_u_SQUOTE] = ACTIONS(1125), - [anon_sym_U_SQUOTE] = ACTIONS(1125), - [anon_sym_u8_SQUOTE] = ACTIONS(1125), - [anon_sym_SQUOTE] = ACTIONS(1125), - [anon_sym_L_DQUOTE] = ACTIONS(1125), - [anon_sym_u_DQUOTE] = ACTIONS(1125), - [anon_sym_U_DQUOTE] = ACTIONS(1125), - [anon_sym_u8_DQUOTE] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(1125), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [anon_sym_NULL] = ACTIONS(1123), - [anon_sym_nullptr] = ACTIONS(1123), + [250] = { + [sym_identifier] = ACTIONS(1239), + [aux_sym_preproc_include_token1] = ACTIONS(1239), + [aux_sym_preproc_def_token1] = ACTIONS(1239), + [aux_sym_preproc_if_token1] = ACTIONS(1239), + [aux_sym_preproc_if_token2] = ACTIONS(1239), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1239), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1239), + [sym_preproc_directive] = ACTIONS(1239), + [anon_sym_LPAREN2] = ACTIONS(1241), + [anon_sym_BANG] = ACTIONS(1241), + [anon_sym_TILDE] = ACTIONS(1241), + [anon_sym_DASH] = ACTIONS(1239), + [anon_sym_PLUS] = ACTIONS(1239), + [anon_sym_STAR] = ACTIONS(1241), + [anon_sym_AMP] = ACTIONS(1241), + [anon_sym_SEMI] = ACTIONS(1241), + [anon_sym___extension__] = ACTIONS(1239), + [anon_sym_typedef] = ACTIONS(1239), + [anon_sym_extern] = ACTIONS(1239), + [anon_sym___attribute__] = ACTIONS(1239), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1241), + [anon_sym___declspec] = ACTIONS(1239), + [anon_sym___cdecl] = ACTIONS(1239), + [anon_sym___clrcall] = ACTIONS(1239), + [anon_sym___stdcall] = ACTIONS(1239), + [anon_sym___fastcall] = ACTIONS(1239), + [anon_sym___thiscall] = ACTIONS(1239), + [anon_sym___vectorcall] = ACTIONS(1239), + [anon_sym_LBRACE] = ACTIONS(1241), + [anon_sym_signed] = ACTIONS(1239), + [anon_sym_unsigned] = ACTIONS(1239), + [anon_sym_long] = ACTIONS(1239), + [anon_sym_short] = ACTIONS(1239), + [anon_sym_static] = ACTIONS(1239), + [anon_sym_auto] = ACTIONS(1239), + [anon_sym_register] = ACTIONS(1239), + [anon_sym_inline] = ACTIONS(1239), + [anon_sym___inline] = ACTIONS(1239), + [anon_sym___inline__] = ACTIONS(1239), + [anon_sym___forceinline] = ACTIONS(1239), + [anon_sym_thread_local] = ACTIONS(1239), + [anon_sym___thread] = ACTIONS(1239), + [anon_sym_const] = ACTIONS(1239), + [anon_sym_constexpr] = ACTIONS(1239), + [anon_sym_volatile] = ACTIONS(1239), + [anon_sym_restrict] = ACTIONS(1239), + [anon_sym___restrict__] = ACTIONS(1239), + [anon_sym__Atomic] = ACTIONS(1239), + [anon_sym__Noreturn] = ACTIONS(1239), + [anon_sym_noreturn] = ACTIONS(1239), + [anon_sym_alignas] = ACTIONS(1239), + [anon_sym__Alignas] = 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___try] = ACTIONS(1239), + [anon_sym___leave] = ACTIONS(1239), + [anon_sym_DASH_DASH] = ACTIONS(1241), + [anon_sym_PLUS_PLUS] = ACTIONS(1241), + [anon_sym_sizeof] = ACTIONS(1239), + [anon_sym___alignof__] = ACTIONS(1239), + [anon_sym___alignof] = ACTIONS(1239), + [anon_sym__alignof] = ACTIONS(1239), + [anon_sym_alignof] = ACTIONS(1239), + [anon_sym__Alignof] = ACTIONS(1239), + [anon_sym_offsetof] = ACTIONS(1239), + [anon_sym__Generic] = ACTIONS(1239), + [anon_sym_asm] = ACTIONS(1239), + [anon_sym___asm__] = ACTIONS(1239), + [sym_number_literal] = ACTIONS(1241), + [anon_sym_L_SQUOTE] = ACTIONS(1241), + [anon_sym_u_SQUOTE] = ACTIONS(1241), + [anon_sym_U_SQUOTE] = ACTIONS(1241), + [anon_sym_u8_SQUOTE] = ACTIONS(1241), + [anon_sym_SQUOTE] = ACTIONS(1241), + [anon_sym_L_DQUOTE] = ACTIONS(1241), + [anon_sym_u_DQUOTE] = ACTIONS(1241), + [anon_sym_U_DQUOTE] = ACTIONS(1241), + [anon_sym_u8_DQUOTE] = ACTIONS(1241), + [anon_sym_DQUOTE] = ACTIONS(1241), + [sym_true] = ACTIONS(1239), + [sym_false] = ACTIONS(1239), + [anon_sym_NULL] = ACTIONS(1239), + [anon_sym_nullptr] = ACTIONS(1239), [sym_comment] = ACTIONS(3), }, - [288] = { - [sym_identifier] = ACTIONS(1123), - [aux_sym_preproc_include_token1] = ACTIONS(1123), - [aux_sym_preproc_def_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token2] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), - [sym_preproc_directive] = ACTIONS(1123), - [anon_sym_LPAREN2] = ACTIONS(1125), - [anon_sym_BANG] = ACTIONS(1125), - [anon_sym_TILDE] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym___extension__] = ACTIONS(1123), - [anon_sym_typedef] = ACTIONS(1123), - [anon_sym_extern] = ACTIONS(1123), - [anon_sym___attribute__] = ACTIONS(1123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), - [anon_sym___declspec] = ACTIONS(1123), - [anon_sym___cdecl] = ACTIONS(1123), - [anon_sym___clrcall] = ACTIONS(1123), - [anon_sym___stdcall] = ACTIONS(1123), - [anon_sym___fastcall] = ACTIONS(1123), - [anon_sym___thiscall] = ACTIONS(1123), - [anon_sym___vectorcall] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_signed] = ACTIONS(1123), - [anon_sym_unsigned] = ACTIONS(1123), - [anon_sym_long] = ACTIONS(1123), - [anon_sym_short] = ACTIONS(1123), - [anon_sym_static] = ACTIONS(1123), - [anon_sym_auto] = ACTIONS(1123), - [anon_sym_register] = ACTIONS(1123), - [anon_sym_inline] = ACTIONS(1123), - [anon_sym___inline] = ACTIONS(1123), - [anon_sym___inline__] = ACTIONS(1123), - [anon_sym___forceinline] = ACTIONS(1123), - [anon_sym_thread_local] = ACTIONS(1123), - [anon_sym___thread] = ACTIONS(1123), - [anon_sym_const] = ACTIONS(1123), - [anon_sym_constexpr] = ACTIONS(1123), - [anon_sym_volatile] = ACTIONS(1123), - [anon_sym_restrict] = ACTIONS(1123), - [anon_sym___restrict__] = ACTIONS(1123), - [anon_sym__Atomic] = ACTIONS(1123), - [anon_sym__Noreturn] = ACTIONS(1123), - [anon_sym_noreturn] = ACTIONS(1123), - [anon_sym_alignas] = ACTIONS(1123), - [anon_sym__Alignas] = ACTIONS(1123), - [sym_primitive_type] = ACTIONS(1123), - [anon_sym_enum] = ACTIONS(1123), - [anon_sym_struct] = ACTIONS(1123), - [anon_sym_union] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1123), - [anon_sym_else] = ACTIONS(1123), - [anon_sym_switch] = ACTIONS(1123), - [anon_sym_case] = ACTIONS(1123), - [anon_sym_default] = ACTIONS(1123), - [anon_sym_while] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(1123), - [anon_sym_for] = ACTIONS(1123), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_break] = ACTIONS(1123), - [anon_sym_continue] = ACTIONS(1123), - [anon_sym_goto] = ACTIONS(1123), - [anon_sym___try] = ACTIONS(1123), - [anon_sym___leave] = ACTIONS(1123), - [anon_sym_DASH_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1125), - [anon_sym_sizeof] = ACTIONS(1123), - [anon_sym___alignof__] = ACTIONS(1123), - [anon_sym___alignof] = ACTIONS(1123), - [anon_sym__alignof] = ACTIONS(1123), - [anon_sym_alignof] = ACTIONS(1123), - [anon_sym__Alignof] = ACTIONS(1123), - [anon_sym_offsetof] = ACTIONS(1123), - [anon_sym__Generic] = ACTIONS(1123), - [anon_sym_asm] = ACTIONS(1123), - [anon_sym___asm__] = ACTIONS(1123), - [sym_number_literal] = ACTIONS(1125), - [anon_sym_L_SQUOTE] = ACTIONS(1125), - [anon_sym_u_SQUOTE] = ACTIONS(1125), - [anon_sym_U_SQUOTE] = ACTIONS(1125), - [anon_sym_u8_SQUOTE] = ACTIONS(1125), - [anon_sym_SQUOTE] = ACTIONS(1125), - [anon_sym_L_DQUOTE] = ACTIONS(1125), - [anon_sym_u_DQUOTE] = ACTIONS(1125), - [anon_sym_U_DQUOTE] = ACTIONS(1125), - [anon_sym_u8_DQUOTE] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(1125), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [anon_sym_NULL] = ACTIONS(1123), - [anon_sym_nullptr] = ACTIONS(1123), + [251] = { + [sym_identifier] = ACTIONS(1163), + [aux_sym_preproc_include_token1] = ACTIONS(1163), + [aux_sym_preproc_def_token1] = ACTIONS(1163), + [aux_sym_preproc_if_token1] = ACTIONS(1163), + [aux_sym_preproc_if_token2] = ACTIONS(1163), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1163), + [sym_preproc_directive] = ACTIONS(1163), + [anon_sym_LPAREN2] = ACTIONS(1165), + [anon_sym_BANG] = ACTIONS(1165), + [anon_sym_TILDE] = ACTIONS(1165), + [anon_sym_DASH] = ACTIONS(1163), + [anon_sym_PLUS] = ACTIONS(1163), + [anon_sym_STAR] = ACTIONS(1165), + [anon_sym_AMP] = ACTIONS(1165), + [anon_sym_SEMI] = ACTIONS(1165), + [anon_sym___extension__] = ACTIONS(1163), + [anon_sym_typedef] = ACTIONS(1163), + [anon_sym_extern] = ACTIONS(1163), + [anon_sym___attribute__] = ACTIONS(1163), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1165), + [anon_sym___declspec] = ACTIONS(1163), + [anon_sym___cdecl] = ACTIONS(1163), + [anon_sym___clrcall] = ACTIONS(1163), + [anon_sym___stdcall] = ACTIONS(1163), + [anon_sym___fastcall] = ACTIONS(1163), + [anon_sym___thiscall] = ACTIONS(1163), + [anon_sym___vectorcall] = ACTIONS(1163), + [anon_sym_LBRACE] = ACTIONS(1165), + [anon_sym_signed] = ACTIONS(1163), + [anon_sym_unsigned] = ACTIONS(1163), + [anon_sym_long] = ACTIONS(1163), + [anon_sym_short] = ACTIONS(1163), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_auto] = ACTIONS(1163), + [anon_sym_register] = ACTIONS(1163), + [anon_sym_inline] = ACTIONS(1163), + [anon_sym___inline] = ACTIONS(1163), + [anon_sym___inline__] = ACTIONS(1163), + [anon_sym___forceinline] = ACTIONS(1163), + [anon_sym_thread_local] = ACTIONS(1163), + [anon_sym___thread] = ACTIONS(1163), + [anon_sym_const] = ACTIONS(1163), + [anon_sym_constexpr] = ACTIONS(1163), + [anon_sym_volatile] = ACTIONS(1163), + [anon_sym_restrict] = ACTIONS(1163), + [anon_sym___restrict__] = ACTIONS(1163), + [anon_sym__Atomic] = ACTIONS(1163), + [anon_sym__Noreturn] = ACTIONS(1163), + [anon_sym_noreturn] = ACTIONS(1163), + [anon_sym_alignas] = ACTIONS(1163), + [anon_sym__Alignas] = ACTIONS(1163), + [sym_primitive_type] = ACTIONS(1163), + [anon_sym_enum] = ACTIONS(1163), + [anon_sym_struct] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1163), + [anon_sym_if] = ACTIONS(1163), + [anon_sym_else] = ACTIONS(1163), + [anon_sym_switch] = ACTIONS(1163), + [anon_sym_case] = ACTIONS(1163), + [anon_sym_default] = ACTIONS(1163), + [anon_sym_while] = ACTIONS(1163), + [anon_sym_do] = ACTIONS(1163), + [anon_sym_for] = ACTIONS(1163), + [anon_sym_return] = ACTIONS(1163), + [anon_sym_break] = ACTIONS(1163), + [anon_sym_continue] = ACTIONS(1163), + [anon_sym_goto] = ACTIONS(1163), + [anon_sym___try] = ACTIONS(1163), + [anon_sym___leave] = ACTIONS(1163), + [anon_sym_DASH_DASH] = ACTIONS(1165), + [anon_sym_PLUS_PLUS] = ACTIONS(1165), + [anon_sym_sizeof] = ACTIONS(1163), + [anon_sym___alignof__] = ACTIONS(1163), + [anon_sym___alignof] = ACTIONS(1163), + [anon_sym__alignof] = ACTIONS(1163), + [anon_sym_alignof] = ACTIONS(1163), + [anon_sym__Alignof] = ACTIONS(1163), + [anon_sym_offsetof] = ACTIONS(1163), + [anon_sym__Generic] = ACTIONS(1163), + [anon_sym_asm] = ACTIONS(1163), + [anon_sym___asm__] = ACTIONS(1163), + [sym_number_literal] = ACTIONS(1165), + [anon_sym_L_SQUOTE] = ACTIONS(1165), + [anon_sym_u_SQUOTE] = ACTIONS(1165), + [anon_sym_U_SQUOTE] = ACTIONS(1165), + [anon_sym_u8_SQUOTE] = ACTIONS(1165), + [anon_sym_SQUOTE] = ACTIONS(1165), + [anon_sym_L_DQUOTE] = ACTIONS(1165), + [anon_sym_u_DQUOTE] = ACTIONS(1165), + [anon_sym_U_DQUOTE] = ACTIONS(1165), + [anon_sym_u8_DQUOTE] = ACTIONS(1165), + [anon_sym_DQUOTE] = ACTIONS(1165), + [sym_true] = ACTIONS(1163), + [sym_false] = ACTIONS(1163), + [anon_sym_NULL] = ACTIONS(1163), + [anon_sym_nullptr] = ACTIONS(1163), [sym_comment] = ACTIONS(3), }, - [289] = { - [ts_builtin_sym_end] = ACTIONS(1229), - [sym_identifier] = ACTIONS(1227), - [aux_sym_preproc_include_token1] = ACTIONS(1227), - [aux_sym_preproc_def_token1] = ACTIONS(1227), - [aux_sym_preproc_if_token1] = ACTIONS(1227), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1227), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1227), - [sym_preproc_directive] = ACTIONS(1227), - [anon_sym_LPAREN2] = ACTIONS(1229), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1227), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1229), - [anon_sym_SEMI] = ACTIONS(1229), - [anon_sym___extension__] = ACTIONS(1227), - [anon_sym_typedef] = ACTIONS(1227), - [anon_sym_extern] = ACTIONS(1227), - [anon_sym___attribute__] = ACTIONS(1227), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1229), - [anon_sym___declspec] = ACTIONS(1227), - [anon_sym___cdecl] = ACTIONS(1227), - [anon_sym___clrcall] = ACTIONS(1227), - [anon_sym___stdcall] = ACTIONS(1227), - [anon_sym___fastcall] = ACTIONS(1227), - [anon_sym___thiscall] = ACTIONS(1227), - [anon_sym___vectorcall] = ACTIONS(1227), - [anon_sym_LBRACE] = ACTIONS(1229), - [anon_sym_signed] = ACTIONS(1227), - [anon_sym_unsigned] = ACTIONS(1227), - [anon_sym_long] = ACTIONS(1227), - [anon_sym_short] = ACTIONS(1227), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_auto] = ACTIONS(1227), - [anon_sym_register] = ACTIONS(1227), - [anon_sym_inline] = ACTIONS(1227), - [anon_sym___inline] = ACTIONS(1227), - [anon_sym___inline__] = ACTIONS(1227), - [anon_sym___forceinline] = ACTIONS(1227), - [anon_sym_thread_local] = ACTIONS(1227), - [anon_sym___thread] = ACTIONS(1227), - [anon_sym_const] = ACTIONS(1227), - [anon_sym_constexpr] = ACTIONS(1227), - [anon_sym_volatile] = ACTIONS(1227), - [anon_sym_restrict] = ACTIONS(1227), - [anon_sym___restrict__] = ACTIONS(1227), - [anon_sym__Atomic] = ACTIONS(1227), - [anon_sym__Noreturn] = ACTIONS(1227), - [anon_sym_noreturn] = ACTIONS(1227), - [anon_sym_alignas] = ACTIONS(1227), - [anon_sym__Alignas] = ACTIONS(1227), - [sym_primitive_type] = ACTIONS(1227), - [anon_sym_enum] = ACTIONS(1227), - [anon_sym_struct] = ACTIONS(1227), - [anon_sym_union] = ACTIONS(1227), - [anon_sym_if] = ACTIONS(1227), - [anon_sym_else] = ACTIONS(1227), - [anon_sym_switch] = ACTIONS(1227), - [anon_sym_case] = ACTIONS(1227), - [anon_sym_default] = ACTIONS(1227), - [anon_sym_while] = ACTIONS(1227), - [anon_sym_do] = ACTIONS(1227), - [anon_sym_for] = ACTIONS(1227), - [anon_sym_return] = ACTIONS(1227), - [anon_sym_break] = ACTIONS(1227), - [anon_sym_continue] = ACTIONS(1227), - [anon_sym_goto] = ACTIONS(1227), - [anon_sym___try] = ACTIONS(1227), - [anon_sym___leave] = ACTIONS(1227), - [anon_sym_DASH_DASH] = ACTIONS(1229), - [anon_sym_PLUS_PLUS] = ACTIONS(1229), - [anon_sym_sizeof] = ACTIONS(1227), - [anon_sym___alignof__] = ACTIONS(1227), - [anon_sym___alignof] = ACTIONS(1227), - [anon_sym__alignof] = ACTIONS(1227), - [anon_sym_alignof] = ACTIONS(1227), - [anon_sym__Alignof] = ACTIONS(1227), - [anon_sym_offsetof] = ACTIONS(1227), - [anon_sym__Generic] = ACTIONS(1227), - [anon_sym_asm] = ACTIONS(1227), - [anon_sym___asm__] = ACTIONS(1227), - [sym_number_literal] = ACTIONS(1229), - [anon_sym_L_SQUOTE] = ACTIONS(1229), - [anon_sym_u_SQUOTE] = ACTIONS(1229), - [anon_sym_U_SQUOTE] = ACTIONS(1229), - [anon_sym_u8_SQUOTE] = ACTIONS(1229), - [anon_sym_SQUOTE] = ACTIONS(1229), - [anon_sym_L_DQUOTE] = ACTIONS(1229), - [anon_sym_u_DQUOTE] = ACTIONS(1229), - [anon_sym_U_DQUOTE] = ACTIONS(1229), - [anon_sym_u8_DQUOTE] = ACTIONS(1229), - [anon_sym_DQUOTE] = ACTIONS(1229), - [sym_true] = ACTIONS(1227), - [sym_false] = ACTIONS(1227), - [anon_sym_NULL] = ACTIONS(1227), - [anon_sym_nullptr] = ACTIONS(1227), + [252] = { + [sym_identifier] = ACTIONS(1251), + [aux_sym_preproc_include_token1] = ACTIONS(1251), + [aux_sym_preproc_def_token1] = ACTIONS(1251), + [aux_sym_preproc_if_token1] = ACTIONS(1251), + [aux_sym_preproc_if_token2] = ACTIONS(1251), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1251), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1251), + [sym_preproc_directive] = ACTIONS(1251), + [anon_sym_LPAREN2] = ACTIONS(1253), + [anon_sym_BANG] = ACTIONS(1253), + [anon_sym_TILDE] = ACTIONS(1253), + [anon_sym_DASH] = ACTIONS(1251), + [anon_sym_PLUS] = ACTIONS(1251), + [anon_sym_STAR] = ACTIONS(1253), + [anon_sym_AMP] = ACTIONS(1253), + [anon_sym_SEMI] = ACTIONS(1253), + [anon_sym___extension__] = ACTIONS(1251), + [anon_sym_typedef] = ACTIONS(1251), + [anon_sym_extern] = ACTIONS(1251), + [anon_sym___attribute__] = ACTIONS(1251), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1253), + [anon_sym___declspec] = ACTIONS(1251), + [anon_sym___cdecl] = ACTIONS(1251), + [anon_sym___clrcall] = ACTIONS(1251), + [anon_sym___stdcall] = ACTIONS(1251), + [anon_sym___fastcall] = ACTIONS(1251), + [anon_sym___thiscall] = ACTIONS(1251), + [anon_sym___vectorcall] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1253), + [anon_sym_signed] = ACTIONS(1251), + [anon_sym_unsigned] = ACTIONS(1251), + [anon_sym_long] = ACTIONS(1251), + [anon_sym_short] = ACTIONS(1251), + [anon_sym_static] = ACTIONS(1251), + [anon_sym_auto] = ACTIONS(1251), + [anon_sym_register] = ACTIONS(1251), + [anon_sym_inline] = ACTIONS(1251), + [anon_sym___inline] = ACTIONS(1251), + [anon_sym___inline__] = ACTIONS(1251), + [anon_sym___forceinline] = ACTIONS(1251), + [anon_sym_thread_local] = ACTIONS(1251), + [anon_sym___thread] = ACTIONS(1251), + [anon_sym_const] = ACTIONS(1251), + [anon_sym_constexpr] = ACTIONS(1251), + [anon_sym_volatile] = ACTIONS(1251), + [anon_sym_restrict] = ACTIONS(1251), + [anon_sym___restrict__] = ACTIONS(1251), + [anon_sym__Atomic] = ACTIONS(1251), + [anon_sym__Noreturn] = ACTIONS(1251), + [anon_sym_noreturn] = ACTIONS(1251), + [anon_sym_alignas] = ACTIONS(1251), + [anon_sym__Alignas] = ACTIONS(1251), + [sym_primitive_type] = ACTIONS(1251), + [anon_sym_enum] = ACTIONS(1251), + [anon_sym_struct] = ACTIONS(1251), + [anon_sym_union] = ACTIONS(1251), + [anon_sym_if] = ACTIONS(1251), + [anon_sym_switch] = ACTIONS(1251), + [anon_sym_case] = ACTIONS(1251), + [anon_sym_default] = ACTIONS(1251), + [anon_sym_while] = ACTIONS(1251), + [anon_sym_do] = ACTIONS(1251), + [anon_sym_for] = ACTIONS(1251), + [anon_sym_return] = ACTIONS(1251), + [anon_sym_break] = ACTIONS(1251), + [anon_sym_continue] = ACTIONS(1251), + [anon_sym_goto] = ACTIONS(1251), + [anon_sym___try] = ACTIONS(1251), + [anon_sym___leave] = ACTIONS(1251), + [anon_sym_DASH_DASH] = ACTIONS(1253), + [anon_sym_PLUS_PLUS] = ACTIONS(1253), + [anon_sym_sizeof] = ACTIONS(1251), + [anon_sym___alignof__] = ACTIONS(1251), + [anon_sym___alignof] = ACTIONS(1251), + [anon_sym__alignof] = ACTIONS(1251), + [anon_sym_alignof] = ACTIONS(1251), + [anon_sym__Alignof] = ACTIONS(1251), + [anon_sym_offsetof] = ACTIONS(1251), + [anon_sym__Generic] = ACTIONS(1251), + [anon_sym_asm] = ACTIONS(1251), + [anon_sym___asm__] = ACTIONS(1251), + [sym_number_literal] = ACTIONS(1253), + [anon_sym_L_SQUOTE] = ACTIONS(1253), + [anon_sym_u_SQUOTE] = ACTIONS(1253), + [anon_sym_U_SQUOTE] = ACTIONS(1253), + [anon_sym_u8_SQUOTE] = ACTIONS(1253), + [anon_sym_SQUOTE] = ACTIONS(1253), + [anon_sym_L_DQUOTE] = ACTIONS(1253), + [anon_sym_u_DQUOTE] = ACTIONS(1253), + [anon_sym_U_DQUOTE] = ACTIONS(1253), + [anon_sym_u8_DQUOTE] = ACTIONS(1253), + [anon_sym_DQUOTE] = ACTIONS(1253), + [sym_true] = ACTIONS(1251), + [sym_false] = ACTIONS(1251), + [anon_sym_NULL] = ACTIONS(1251), + [anon_sym_nullptr] = ACTIONS(1251), [sym_comment] = ACTIONS(3), }, - [290] = { - [ts_builtin_sym_end] = ACTIONS(1197), - [sym_identifier] = ACTIONS(1195), - [aux_sym_preproc_include_token1] = ACTIONS(1195), - [aux_sym_preproc_def_token1] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1195), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1195), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1195), - [sym_preproc_directive] = ACTIONS(1195), - [anon_sym_LPAREN2] = ACTIONS(1197), - [anon_sym_BANG] = ACTIONS(1197), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1195), - [anon_sym_STAR] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1197), - [anon_sym_SEMI] = ACTIONS(1197), - [anon_sym___extension__] = ACTIONS(1195), - [anon_sym_typedef] = ACTIONS(1195), - [anon_sym_extern] = ACTIONS(1195), - [anon_sym___attribute__] = ACTIONS(1195), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1197), - [anon_sym___declspec] = ACTIONS(1195), - [anon_sym___cdecl] = ACTIONS(1195), - [anon_sym___clrcall] = ACTIONS(1195), - [anon_sym___stdcall] = ACTIONS(1195), - [anon_sym___fastcall] = ACTIONS(1195), - [anon_sym___thiscall] = ACTIONS(1195), - [anon_sym___vectorcall] = ACTIONS(1195), - [anon_sym_LBRACE] = ACTIONS(1197), - [anon_sym_signed] = ACTIONS(1195), - [anon_sym_unsigned] = ACTIONS(1195), - [anon_sym_long] = ACTIONS(1195), - [anon_sym_short] = ACTIONS(1195), - [anon_sym_static] = ACTIONS(1195), - [anon_sym_auto] = ACTIONS(1195), - [anon_sym_register] = ACTIONS(1195), - [anon_sym_inline] = ACTIONS(1195), - [anon_sym___inline] = ACTIONS(1195), - [anon_sym___inline__] = ACTIONS(1195), - [anon_sym___forceinline] = ACTIONS(1195), - [anon_sym_thread_local] = ACTIONS(1195), - [anon_sym___thread] = ACTIONS(1195), - [anon_sym_const] = ACTIONS(1195), - [anon_sym_constexpr] = ACTIONS(1195), - [anon_sym_volatile] = ACTIONS(1195), - [anon_sym_restrict] = ACTIONS(1195), - [anon_sym___restrict__] = ACTIONS(1195), - [anon_sym__Atomic] = ACTIONS(1195), - [anon_sym__Noreturn] = ACTIONS(1195), - [anon_sym_noreturn] = ACTIONS(1195), - [anon_sym_alignas] = ACTIONS(1195), - [anon_sym__Alignas] = ACTIONS(1195), - [sym_primitive_type] = ACTIONS(1195), - [anon_sym_enum] = ACTIONS(1195), - [anon_sym_struct] = ACTIONS(1195), - [anon_sym_union] = ACTIONS(1195), - [anon_sym_if] = ACTIONS(1195), - [anon_sym_else] = ACTIONS(1195), - [anon_sym_switch] = ACTIONS(1195), - [anon_sym_case] = ACTIONS(1195), - [anon_sym_default] = ACTIONS(1195), - [anon_sym_while] = ACTIONS(1195), - [anon_sym_do] = ACTIONS(1195), - [anon_sym_for] = ACTIONS(1195), - [anon_sym_return] = ACTIONS(1195), - [anon_sym_break] = ACTIONS(1195), - [anon_sym_continue] = ACTIONS(1195), - [anon_sym_goto] = ACTIONS(1195), - [anon_sym___try] = ACTIONS(1195), - [anon_sym___leave] = ACTIONS(1195), - [anon_sym_DASH_DASH] = ACTIONS(1197), - [anon_sym_PLUS_PLUS] = ACTIONS(1197), - [anon_sym_sizeof] = ACTIONS(1195), - [anon_sym___alignof__] = ACTIONS(1195), - [anon_sym___alignof] = ACTIONS(1195), - [anon_sym__alignof] = ACTIONS(1195), - [anon_sym_alignof] = ACTIONS(1195), - [anon_sym__Alignof] = ACTIONS(1195), - [anon_sym_offsetof] = ACTIONS(1195), - [anon_sym__Generic] = ACTIONS(1195), - [anon_sym_asm] = ACTIONS(1195), - [anon_sym___asm__] = ACTIONS(1195), - [sym_number_literal] = ACTIONS(1197), - [anon_sym_L_SQUOTE] = ACTIONS(1197), - [anon_sym_u_SQUOTE] = ACTIONS(1197), - [anon_sym_U_SQUOTE] = ACTIONS(1197), - [anon_sym_u8_SQUOTE] = ACTIONS(1197), - [anon_sym_SQUOTE] = ACTIONS(1197), - [anon_sym_L_DQUOTE] = ACTIONS(1197), - [anon_sym_u_DQUOTE] = ACTIONS(1197), - [anon_sym_U_DQUOTE] = ACTIONS(1197), - [anon_sym_u8_DQUOTE] = ACTIONS(1197), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_true] = ACTIONS(1195), - [sym_false] = ACTIONS(1195), - [anon_sym_NULL] = ACTIONS(1195), - [anon_sym_nullptr] = ACTIONS(1195), + [253] = { + [sym_identifier] = ACTIONS(1355), + [aux_sym_preproc_include_token1] = ACTIONS(1355), + [aux_sym_preproc_def_token1] = ACTIONS(1355), + [aux_sym_preproc_if_token1] = ACTIONS(1355), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1355), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1355), + [sym_preproc_directive] = ACTIONS(1355), + [anon_sym_LPAREN2] = ACTIONS(1358), + [anon_sym_BANG] = ACTIONS(1358), + [anon_sym_TILDE] = ACTIONS(1358), + [anon_sym_DASH] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1355), + [anon_sym_STAR] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_SEMI] = ACTIONS(1358), + [anon_sym___extension__] = ACTIONS(1355), + [anon_sym_typedef] = ACTIONS(1355), + [anon_sym_extern] = ACTIONS(1355), + [anon_sym___attribute__] = ACTIONS(1355), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1358), + [anon_sym___declspec] = ACTIONS(1355), + [anon_sym___cdecl] = ACTIONS(1355), + [anon_sym___clrcall] = ACTIONS(1355), + [anon_sym___stdcall] = ACTIONS(1355), + [anon_sym___fastcall] = ACTIONS(1355), + [anon_sym___thiscall] = ACTIONS(1355), + [anon_sym___vectorcall] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(1358), + [anon_sym_RBRACE] = ACTIONS(1358), + [anon_sym_signed] = ACTIONS(1355), + [anon_sym_unsigned] = ACTIONS(1355), + [anon_sym_long] = ACTIONS(1355), + [anon_sym_short] = ACTIONS(1355), + [anon_sym_static] = ACTIONS(1355), + [anon_sym_auto] = ACTIONS(1355), + [anon_sym_register] = ACTIONS(1355), + [anon_sym_inline] = ACTIONS(1355), + [anon_sym___inline] = ACTIONS(1355), + [anon_sym___inline__] = ACTIONS(1355), + [anon_sym___forceinline] = ACTIONS(1355), + [anon_sym_thread_local] = ACTIONS(1355), + [anon_sym___thread] = ACTIONS(1355), + [anon_sym_const] = ACTIONS(1355), + [anon_sym_constexpr] = ACTIONS(1355), + [anon_sym_volatile] = ACTIONS(1355), + [anon_sym_restrict] = ACTIONS(1355), + [anon_sym___restrict__] = ACTIONS(1355), + [anon_sym__Atomic] = ACTIONS(1355), + [anon_sym__Noreturn] = ACTIONS(1355), + [anon_sym_noreturn] = ACTIONS(1355), + [anon_sym_alignas] = ACTIONS(1355), + [anon_sym__Alignas] = 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___try] = ACTIONS(1355), + [anon_sym___leave] = ACTIONS(1355), + [anon_sym_DASH_DASH] = ACTIONS(1358), + [anon_sym_PLUS_PLUS] = ACTIONS(1358), + [anon_sym_sizeof] = ACTIONS(1355), + [anon_sym___alignof__] = ACTIONS(1355), + [anon_sym___alignof] = ACTIONS(1355), + [anon_sym__alignof] = ACTIONS(1355), + [anon_sym_alignof] = ACTIONS(1355), + [anon_sym__Alignof] = ACTIONS(1355), + [anon_sym_offsetof] = ACTIONS(1355), + [anon_sym__Generic] = ACTIONS(1355), + [anon_sym_asm] = ACTIONS(1355), + [anon_sym___asm__] = ACTIONS(1355), + [sym_number_literal] = ACTIONS(1358), + [anon_sym_L_SQUOTE] = ACTIONS(1358), + [anon_sym_u_SQUOTE] = ACTIONS(1358), + [anon_sym_U_SQUOTE] = ACTIONS(1358), + [anon_sym_u8_SQUOTE] = ACTIONS(1358), + [anon_sym_SQUOTE] = ACTIONS(1358), + [anon_sym_L_DQUOTE] = ACTIONS(1358), + [anon_sym_u_DQUOTE] = ACTIONS(1358), + [anon_sym_U_DQUOTE] = ACTIONS(1358), + [anon_sym_u8_DQUOTE] = ACTIONS(1358), + [anon_sym_DQUOTE] = ACTIONS(1358), + [sym_true] = ACTIONS(1355), + [sym_false] = ACTIONS(1355), + [anon_sym_NULL] = ACTIONS(1355), + [anon_sym_nullptr] = ACTIONS(1355), [sym_comment] = ACTIONS(3), }, - [291] = { - [sym_identifier] = ACTIONS(1199), - [aux_sym_preproc_include_token1] = ACTIONS(1199), - [aux_sym_preproc_def_token1] = ACTIONS(1199), - [aux_sym_preproc_if_token1] = ACTIONS(1199), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1199), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1199), - [sym_preproc_directive] = ACTIONS(1199), - [anon_sym_LPAREN2] = ACTIONS(1201), - [anon_sym_BANG] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1201), - [anon_sym_DASH] = ACTIONS(1199), - [anon_sym_PLUS] = ACTIONS(1199), - [anon_sym_STAR] = ACTIONS(1201), - [anon_sym_AMP] = ACTIONS(1201), - [anon_sym_SEMI] = ACTIONS(1201), - [anon_sym___extension__] = ACTIONS(1199), - [anon_sym_typedef] = ACTIONS(1199), - [anon_sym_extern] = ACTIONS(1199), - [anon_sym___attribute__] = ACTIONS(1199), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1201), - [anon_sym___declspec] = ACTIONS(1199), - [anon_sym___cdecl] = ACTIONS(1199), - [anon_sym___clrcall] = ACTIONS(1199), - [anon_sym___stdcall] = ACTIONS(1199), - [anon_sym___fastcall] = ACTIONS(1199), - [anon_sym___thiscall] = ACTIONS(1199), - [anon_sym___vectorcall] = ACTIONS(1199), - [anon_sym_LBRACE] = ACTIONS(1201), - [anon_sym_RBRACE] = ACTIONS(1201), - [anon_sym_signed] = ACTIONS(1199), - [anon_sym_unsigned] = ACTIONS(1199), - [anon_sym_long] = ACTIONS(1199), - [anon_sym_short] = ACTIONS(1199), - [anon_sym_static] = ACTIONS(1199), - [anon_sym_auto] = ACTIONS(1199), - [anon_sym_register] = ACTIONS(1199), - [anon_sym_inline] = ACTIONS(1199), - [anon_sym___inline] = ACTIONS(1199), - [anon_sym___inline__] = ACTIONS(1199), - [anon_sym___forceinline] = ACTIONS(1199), - [anon_sym_thread_local] = ACTIONS(1199), - [anon_sym___thread] = ACTIONS(1199), - [anon_sym_const] = ACTIONS(1199), - [anon_sym_constexpr] = ACTIONS(1199), - [anon_sym_volatile] = ACTIONS(1199), - [anon_sym_restrict] = ACTIONS(1199), - [anon_sym___restrict__] = ACTIONS(1199), - [anon_sym__Atomic] = ACTIONS(1199), - [anon_sym__Noreturn] = ACTIONS(1199), - [anon_sym_noreturn] = ACTIONS(1199), - [anon_sym_alignas] = ACTIONS(1199), - [anon_sym__Alignas] = ACTIONS(1199), - [sym_primitive_type] = ACTIONS(1199), - [anon_sym_enum] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1199), - [anon_sym_union] = ACTIONS(1199), - [anon_sym_if] = ACTIONS(1199), - [anon_sym_else] = ACTIONS(1199), - [anon_sym_switch] = ACTIONS(1199), - [anon_sym_case] = ACTIONS(1199), - [anon_sym_default] = ACTIONS(1199), - [anon_sym_while] = ACTIONS(1199), - [anon_sym_do] = ACTIONS(1199), - [anon_sym_for] = ACTIONS(1199), - [anon_sym_return] = ACTIONS(1199), - [anon_sym_break] = ACTIONS(1199), - [anon_sym_continue] = ACTIONS(1199), - [anon_sym_goto] = ACTIONS(1199), - [anon_sym___try] = ACTIONS(1199), - [anon_sym___leave] = ACTIONS(1199), - [anon_sym_DASH_DASH] = ACTIONS(1201), - [anon_sym_PLUS_PLUS] = ACTIONS(1201), - [anon_sym_sizeof] = ACTIONS(1199), - [anon_sym___alignof__] = ACTIONS(1199), - [anon_sym___alignof] = ACTIONS(1199), - [anon_sym__alignof] = ACTIONS(1199), - [anon_sym_alignof] = ACTIONS(1199), - [anon_sym__Alignof] = ACTIONS(1199), - [anon_sym_offsetof] = ACTIONS(1199), - [anon_sym__Generic] = ACTIONS(1199), - [anon_sym_asm] = ACTIONS(1199), - [anon_sym___asm__] = ACTIONS(1199), - [sym_number_literal] = ACTIONS(1201), - [anon_sym_L_SQUOTE] = ACTIONS(1201), - [anon_sym_u_SQUOTE] = ACTIONS(1201), - [anon_sym_U_SQUOTE] = ACTIONS(1201), - [anon_sym_u8_SQUOTE] = ACTIONS(1201), - [anon_sym_SQUOTE] = ACTIONS(1201), - [anon_sym_L_DQUOTE] = ACTIONS(1201), - [anon_sym_u_DQUOTE] = ACTIONS(1201), - [anon_sym_U_DQUOTE] = ACTIONS(1201), - [anon_sym_u8_DQUOTE] = ACTIONS(1201), - [anon_sym_DQUOTE] = ACTIONS(1201), - [sym_true] = ACTIONS(1199), - [sym_false] = ACTIONS(1199), - [anon_sym_NULL] = ACTIONS(1199), - [anon_sym_nullptr] = ACTIONS(1199), + [254] = { + [sym_identifier] = ACTIONS(1259), + [aux_sym_preproc_include_token1] = ACTIONS(1259), + [aux_sym_preproc_def_token1] = ACTIONS(1259), + [aux_sym_preproc_if_token1] = ACTIONS(1259), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1259), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1259), + [sym_preproc_directive] = ACTIONS(1259), + [anon_sym_LPAREN2] = ACTIONS(1261), + [anon_sym_BANG] = ACTIONS(1261), + [anon_sym_TILDE] = ACTIONS(1261), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1261), + [anon_sym_AMP] = ACTIONS(1261), + [anon_sym_SEMI] = ACTIONS(1261), + [anon_sym___extension__] = ACTIONS(1259), + [anon_sym_typedef] = ACTIONS(1259), + [anon_sym_extern] = ACTIONS(1259), + [anon_sym___attribute__] = ACTIONS(1259), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1261), + [anon_sym___declspec] = ACTIONS(1259), + [anon_sym___cdecl] = ACTIONS(1259), + [anon_sym___clrcall] = ACTIONS(1259), + [anon_sym___stdcall] = ACTIONS(1259), + [anon_sym___fastcall] = ACTIONS(1259), + [anon_sym___thiscall] = ACTIONS(1259), + [anon_sym___vectorcall] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_RBRACE] = ACTIONS(1261), + [anon_sym_signed] = ACTIONS(1259), + [anon_sym_unsigned] = ACTIONS(1259), + [anon_sym_long] = ACTIONS(1259), + [anon_sym_short] = ACTIONS(1259), + [anon_sym_static] = ACTIONS(1259), + [anon_sym_auto] = ACTIONS(1259), + [anon_sym_register] = ACTIONS(1259), + [anon_sym_inline] = ACTIONS(1259), + [anon_sym___inline] = ACTIONS(1259), + [anon_sym___inline__] = ACTIONS(1259), + [anon_sym___forceinline] = ACTIONS(1259), + [anon_sym_thread_local] = ACTIONS(1259), + [anon_sym___thread] = ACTIONS(1259), + [anon_sym_const] = ACTIONS(1259), + [anon_sym_constexpr] = ACTIONS(1259), + [anon_sym_volatile] = ACTIONS(1259), + [anon_sym_restrict] = ACTIONS(1259), + [anon_sym___restrict__] = ACTIONS(1259), + [anon_sym__Atomic] = ACTIONS(1259), + [anon_sym__Noreturn] = ACTIONS(1259), + [anon_sym_noreturn] = ACTIONS(1259), + [anon_sym_alignas] = ACTIONS(1259), + [anon_sym__Alignas] = ACTIONS(1259), + [sym_primitive_type] = ACTIONS(1259), + [anon_sym_enum] = ACTIONS(1259), + [anon_sym_struct] = ACTIONS(1259), + [anon_sym_union] = ACTIONS(1259), + [anon_sym_if] = ACTIONS(1259), + [anon_sym_switch] = ACTIONS(1259), + [anon_sym_case] = ACTIONS(1259), + [anon_sym_default] = ACTIONS(1259), + [anon_sym_while] = ACTIONS(1259), + [anon_sym_do] = ACTIONS(1259), + [anon_sym_for] = ACTIONS(1259), + [anon_sym_return] = ACTIONS(1259), + [anon_sym_break] = ACTIONS(1259), + [anon_sym_continue] = ACTIONS(1259), + [anon_sym_goto] = ACTIONS(1259), + [anon_sym___try] = ACTIONS(1259), + [anon_sym___leave] = ACTIONS(1259), + [anon_sym_DASH_DASH] = ACTIONS(1261), + [anon_sym_PLUS_PLUS] = ACTIONS(1261), + [anon_sym_sizeof] = ACTIONS(1259), + [anon_sym___alignof__] = ACTIONS(1259), + [anon_sym___alignof] = ACTIONS(1259), + [anon_sym__alignof] = ACTIONS(1259), + [anon_sym_alignof] = ACTIONS(1259), + [anon_sym__Alignof] = ACTIONS(1259), + [anon_sym_offsetof] = ACTIONS(1259), + [anon_sym__Generic] = ACTIONS(1259), + [anon_sym_asm] = ACTIONS(1259), + [anon_sym___asm__] = ACTIONS(1259), + [sym_number_literal] = ACTIONS(1261), + [anon_sym_L_SQUOTE] = ACTIONS(1261), + [anon_sym_u_SQUOTE] = ACTIONS(1261), + [anon_sym_U_SQUOTE] = ACTIONS(1261), + [anon_sym_u8_SQUOTE] = ACTIONS(1261), + [anon_sym_SQUOTE] = ACTIONS(1261), + [anon_sym_L_DQUOTE] = ACTIONS(1261), + [anon_sym_u_DQUOTE] = ACTIONS(1261), + [anon_sym_U_DQUOTE] = ACTIONS(1261), + [anon_sym_u8_DQUOTE] = ACTIONS(1261), + [anon_sym_DQUOTE] = ACTIONS(1261), + [sym_true] = ACTIONS(1259), + [sym_false] = ACTIONS(1259), + [anon_sym_NULL] = ACTIONS(1259), + [anon_sym_nullptr] = ACTIONS(1259), [sym_comment] = ACTIONS(3), }, - [292] = { - [sym_identifier] = ACTIONS(1207), - [aux_sym_preproc_include_token1] = ACTIONS(1207), - [aux_sym_preproc_def_token1] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1207), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1207), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1207), - [sym_preproc_directive] = ACTIONS(1207), - [anon_sym_LPAREN2] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1209), - [anon_sym_TILDE] = ACTIONS(1209), - [anon_sym_DASH] = ACTIONS(1207), - [anon_sym_PLUS] = ACTIONS(1207), - [anon_sym_STAR] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1209), - [anon_sym_SEMI] = ACTIONS(1209), - [anon_sym___extension__] = ACTIONS(1207), - [anon_sym_typedef] = ACTIONS(1207), - [anon_sym_extern] = ACTIONS(1207), - [anon_sym___attribute__] = ACTIONS(1207), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1209), - [anon_sym___declspec] = ACTIONS(1207), - [anon_sym___cdecl] = ACTIONS(1207), - [anon_sym___clrcall] = ACTIONS(1207), - [anon_sym___stdcall] = ACTIONS(1207), - [anon_sym___fastcall] = ACTIONS(1207), - [anon_sym___thiscall] = ACTIONS(1207), - [anon_sym___vectorcall] = ACTIONS(1207), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_RBRACE] = ACTIONS(1209), - [anon_sym_signed] = ACTIONS(1207), - [anon_sym_unsigned] = ACTIONS(1207), - [anon_sym_long] = ACTIONS(1207), - [anon_sym_short] = ACTIONS(1207), - [anon_sym_static] = ACTIONS(1207), - [anon_sym_auto] = ACTIONS(1207), - [anon_sym_register] = ACTIONS(1207), - [anon_sym_inline] = ACTIONS(1207), - [anon_sym___inline] = ACTIONS(1207), - [anon_sym___inline__] = ACTIONS(1207), - [anon_sym___forceinline] = ACTIONS(1207), - [anon_sym_thread_local] = ACTIONS(1207), - [anon_sym___thread] = ACTIONS(1207), - [anon_sym_const] = ACTIONS(1207), - [anon_sym_constexpr] = ACTIONS(1207), - [anon_sym_volatile] = ACTIONS(1207), - [anon_sym_restrict] = ACTIONS(1207), - [anon_sym___restrict__] = ACTIONS(1207), - [anon_sym__Atomic] = ACTIONS(1207), - [anon_sym__Noreturn] = ACTIONS(1207), - [anon_sym_noreturn] = ACTIONS(1207), - [anon_sym_alignas] = ACTIONS(1207), - [anon_sym__Alignas] = ACTIONS(1207), - [sym_primitive_type] = ACTIONS(1207), - [anon_sym_enum] = ACTIONS(1207), - [anon_sym_struct] = ACTIONS(1207), - [anon_sym_union] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(1207), - [anon_sym_else] = ACTIONS(1207), - [anon_sym_switch] = ACTIONS(1207), - [anon_sym_case] = ACTIONS(1207), - [anon_sym_default] = ACTIONS(1207), - [anon_sym_while] = ACTIONS(1207), - [anon_sym_do] = ACTIONS(1207), - [anon_sym_for] = ACTIONS(1207), - [anon_sym_return] = ACTIONS(1207), - [anon_sym_break] = ACTIONS(1207), - [anon_sym_continue] = ACTIONS(1207), - [anon_sym_goto] = ACTIONS(1207), - [anon_sym___try] = ACTIONS(1207), - [anon_sym___leave] = ACTIONS(1207), - [anon_sym_DASH_DASH] = ACTIONS(1209), - [anon_sym_PLUS_PLUS] = ACTIONS(1209), - [anon_sym_sizeof] = ACTIONS(1207), - [anon_sym___alignof__] = ACTIONS(1207), - [anon_sym___alignof] = ACTIONS(1207), - [anon_sym__alignof] = ACTIONS(1207), - [anon_sym_alignof] = ACTIONS(1207), - [anon_sym__Alignof] = ACTIONS(1207), - [anon_sym_offsetof] = ACTIONS(1207), - [anon_sym__Generic] = ACTIONS(1207), - [anon_sym_asm] = ACTIONS(1207), - [anon_sym___asm__] = ACTIONS(1207), - [sym_number_literal] = ACTIONS(1209), - [anon_sym_L_SQUOTE] = ACTIONS(1209), - [anon_sym_u_SQUOTE] = ACTIONS(1209), - [anon_sym_U_SQUOTE] = ACTIONS(1209), - [anon_sym_u8_SQUOTE] = ACTIONS(1209), - [anon_sym_SQUOTE] = ACTIONS(1209), - [anon_sym_L_DQUOTE] = ACTIONS(1209), - [anon_sym_u_DQUOTE] = ACTIONS(1209), - [anon_sym_U_DQUOTE] = ACTIONS(1209), - [anon_sym_u8_DQUOTE] = ACTIONS(1209), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [anon_sym_NULL] = ACTIONS(1207), - [anon_sym_nullptr] = ACTIONS(1207), - [sym_comment] = ACTIONS(3), - }, - [293] = { - [sym_identifier] = ACTIONS(1123), - [aux_sym_preproc_include_token1] = ACTIONS(1123), - [aux_sym_preproc_def_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), - [sym_preproc_directive] = ACTIONS(1123), - [anon_sym_LPAREN2] = ACTIONS(1125), - [anon_sym_BANG] = ACTIONS(1125), - [anon_sym_TILDE] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym___extension__] = ACTIONS(1123), - [anon_sym_typedef] = ACTIONS(1123), - [anon_sym_extern] = ACTIONS(1123), - [anon_sym___attribute__] = ACTIONS(1123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), - [anon_sym___declspec] = ACTIONS(1123), - [anon_sym___cdecl] = ACTIONS(1123), - [anon_sym___clrcall] = ACTIONS(1123), - [anon_sym___stdcall] = ACTIONS(1123), - [anon_sym___fastcall] = ACTIONS(1123), - [anon_sym___thiscall] = ACTIONS(1123), - [anon_sym___vectorcall] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_RBRACE] = ACTIONS(1125), - [anon_sym_signed] = ACTIONS(1123), - [anon_sym_unsigned] = ACTIONS(1123), - [anon_sym_long] = ACTIONS(1123), - [anon_sym_short] = ACTIONS(1123), - [anon_sym_static] = ACTIONS(1123), - [anon_sym_auto] = ACTIONS(1123), - [anon_sym_register] = ACTIONS(1123), - [anon_sym_inline] = ACTIONS(1123), - [anon_sym___inline] = ACTIONS(1123), - [anon_sym___inline__] = ACTIONS(1123), - [anon_sym___forceinline] = ACTIONS(1123), - [anon_sym_thread_local] = ACTIONS(1123), - [anon_sym___thread] = ACTIONS(1123), - [anon_sym_const] = ACTIONS(1123), - [anon_sym_constexpr] = ACTIONS(1123), - [anon_sym_volatile] = ACTIONS(1123), - [anon_sym_restrict] = ACTIONS(1123), - [anon_sym___restrict__] = ACTIONS(1123), - [anon_sym__Atomic] = ACTIONS(1123), - [anon_sym__Noreturn] = ACTIONS(1123), - [anon_sym_noreturn] = ACTIONS(1123), - [anon_sym_alignas] = ACTIONS(1123), - [anon_sym__Alignas] = ACTIONS(1123), - [sym_primitive_type] = ACTIONS(1123), - [anon_sym_enum] = ACTIONS(1123), - [anon_sym_struct] = ACTIONS(1123), - [anon_sym_union] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1123), - [anon_sym_else] = ACTIONS(1123), - [anon_sym_switch] = ACTIONS(1123), - [anon_sym_case] = ACTIONS(1123), - [anon_sym_default] = ACTIONS(1123), - [anon_sym_while] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(1123), - [anon_sym_for] = ACTIONS(1123), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_break] = ACTIONS(1123), - [anon_sym_continue] = ACTIONS(1123), - [anon_sym_goto] = ACTIONS(1123), - [anon_sym___try] = ACTIONS(1123), - [anon_sym___leave] = ACTIONS(1123), - [anon_sym_DASH_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1125), - [anon_sym_sizeof] = ACTIONS(1123), - [anon_sym___alignof__] = ACTIONS(1123), - [anon_sym___alignof] = ACTIONS(1123), - [anon_sym__alignof] = ACTIONS(1123), - [anon_sym_alignof] = ACTIONS(1123), - [anon_sym__Alignof] = ACTIONS(1123), - [anon_sym_offsetof] = ACTIONS(1123), - [anon_sym__Generic] = ACTIONS(1123), - [anon_sym_asm] = ACTIONS(1123), - [anon_sym___asm__] = ACTIONS(1123), - [sym_number_literal] = ACTIONS(1125), - [anon_sym_L_SQUOTE] = ACTIONS(1125), - [anon_sym_u_SQUOTE] = ACTIONS(1125), - [anon_sym_U_SQUOTE] = ACTIONS(1125), - [anon_sym_u8_SQUOTE] = ACTIONS(1125), - [anon_sym_SQUOTE] = ACTIONS(1125), - [anon_sym_L_DQUOTE] = ACTIONS(1125), - [anon_sym_u_DQUOTE] = ACTIONS(1125), - [anon_sym_U_DQUOTE] = ACTIONS(1125), - [anon_sym_u8_DQUOTE] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(1125), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [anon_sym_NULL] = ACTIONS(1123), - [anon_sym_nullptr] = ACTIONS(1123), + [255] = { + [sym_identifier] = ACTIONS(1275), + [aux_sym_preproc_include_token1] = ACTIONS(1275), + [aux_sym_preproc_def_token1] = ACTIONS(1275), + [aux_sym_preproc_if_token1] = ACTIONS(1275), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1275), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1275), + [sym_preproc_directive] = ACTIONS(1275), + [anon_sym_LPAREN2] = ACTIONS(1277), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_TILDE] = ACTIONS(1277), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_PLUS] = ACTIONS(1275), + [anon_sym_STAR] = ACTIONS(1277), + [anon_sym_AMP] = ACTIONS(1277), + [anon_sym_SEMI] = ACTIONS(1277), + [anon_sym___extension__] = ACTIONS(1275), + [anon_sym_typedef] = ACTIONS(1275), + [anon_sym_extern] = ACTIONS(1275), + [anon_sym___attribute__] = ACTIONS(1275), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1277), + [anon_sym___declspec] = ACTIONS(1275), + [anon_sym___cdecl] = ACTIONS(1275), + [anon_sym___clrcall] = ACTIONS(1275), + [anon_sym___stdcall] = ACTIONS(1275), + [anon_sym___fastcall] = ACTIONS(1275), + [anon_sym___thiscall] = ACTIONS(1275), + [anon_sym___vectorcall] = ACTIONS(1275), + [anon_sym_LBRACE] = ACTIONS(1277), + [anon_sym_RBRACE] = ACTIONS(1277), + [anon_sym_signed] = ACTIONS(1275), + [anon_sym_unsigned] = ACTIONS(1275), + [anon_sym_long] = ACTIONS(1275), + [anon_sym_short] = ACTIONS(1275), + [anon_sym_static] = ACTIONS(1275), + [anon_sym_auto] = ACTIONS(1275), + [anon_sym_register] = ACTIONS(1275), + [anon_sym_inline] = ACTIONS(1275), + [anon_sym___inline] = ACTIONS(1275), + [anon_sym___inline__] = ACTIONS(1275), + [anon_sym___forceinline] = ACTIONS(1275), + [anon_sym_thread_local] = ACTIONS(1275), + [anon_sym___thread] = ACTIONS(1275), + [anon_sym_const] = ACTIONS(1275), + [anon_sym_constexpr] = ACTIONS(1275), + [anon_sym_volatile] = ACTIONS(1275), + [anon_sym_restrict] = ACTIONS(1275), + [anon_sym___restrict__] = ACTIONS(1275), + [anon_sym__Atomic] = ACTIONS(1275), + [anon_sym__Noreturn] = ACTIONS(1275), + [anon_sym_noreturn] = ACTIONS(1275), + [anon_sym_alignas] = ACTIONS(1275), + [anon_sym__Alignas] = ACTIONS(1275), + [sym_primitive_type] = ACTIONS(1275), + [anon_sym_enum] = ACTIONS(1275), + [anon_sym_struct] = ACTIONS(1275), + [anon_sym_union] = ACTIONS(1275), + [anon_sym_if] = ACTIONS(1275), + [anon_sym_switch] = ACTIONS(1275), + [anon_sym_case] = ACTIONS(1275), + [anon_sym_default] = ACTIONS(1275), + [anon_sym_while] = ACTIONS(1275), + [anon_sym_do] = ACTIONS(1275), + [anon_sym_for] = ACTIONS(1275), + [anon_sym_return] = ACTIONS(1275), + [anon_sym_break] = ACTIONS(1275), + [anon_sym_continue] = ACTIONS(1275), + [anon_sym_goto] = ACTIONS(1275), + [anon_sym___try] = ACTIONS(1275), + [anon_sym___leave] = ACTIONS(1275), + [anon_sym_DASH_DASH] = ACTIONS(1277), + [anon_sym_PLUS_PLUS] = ACTIONS(1277), + [anon_sym_sizeof] = ACTIONS(1275), + [anon_sym___alignof__] = ACTIONS(1275), + [anon_sym___alignof] = ACTIONS(1275), + [anon_sym__alignof] = ACTIONS(1275), + [anon_sym_alignof] = ACTIONS(1275), + [anon_sym__Alignof] = ACTIONS(1275), + [anon_sym_offsetof] = ACTIONS(1275), + [anon_sym__Generic] = ACTIONS(1275), + [anon_sym_asm] = ACTIONS(1275), + [anon_sym___asm__] = ACTIONS(1275), + [sym_number_literal] = ACTIONS(1277), + [anon_sym_L_SQUOTE] = ACTIONS(1277), + [anon_sym_u_SQUOTE] = ACTIONS(1277), + [anon_sym_U_SQUOTE] = ACTIONS(1277), + [anon_sym_u8_SQUOTE] = ACTIONS(1277), + [anon_sym_SQUOTE] = ACTIONS(1277), + [anon_sym_L_DQUOTE] = ACTIONS(1277), + [anon_sym_u_DQUOTE] = ACTIONS(1277), + [anon_sym_U_DQUOTE] = ACTIONS(1277), + [anon_sym_u8_DQUOTE] = ACTIONS(1277), + [anon_sym_DQUOTE] = ACTIONS(1277), + [sym_true] = ACTIONS(1275), + [sym_false] = ACTIONS(1275), + [anon_sym_NULL] = ACTIONS(1275), + [anon_sym_nullptr] = ACTIONS(1275), [sym_comment] = ACTIONS(3), }, - [294] = { - [sym_identifier] = ACTIONS(1207), - [aux_sym_preproc_include_token1] = ACTIONS(1207), - [aux_sym_preproc_def_token1] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1207), - [aux_sym_preproc_if_token2] = ACTIONS(1207), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1207), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1207), - [sym_preproc_directive] = ACTIONS(1207), - [anon_sym_LPAREN2] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1209), - [anon_sym_TILDE] = ACTIONS(1209), - [anon_sym_DASH] = ACTIONS(1207), - [anon_sym_PLUS] = ACTIONS(1207), - [anon_sym_STAR] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1209), - [anon_sym_SEMI] = ACTIONS(1209), - [anon_sym___extension__] = ACTIONS(1207), - [anon_sym_typedef] = ACTIONS(1207), - [anon_sym_extern] = ACTIONS(1207), - [anon_sym___attribute__] = ACTIONS(1207), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1209), - [anon_sym___declspec] = ACTIONS(1207), - [anon_sym___cdecl] = ACTIONS(1207), - [anon_sym___clrcall] = ACTIONS(1207), - [anon_sym___stdcall] = ACTIONS(1207), - [anon_sym___fastcall] = ACTIONS(1207), - [anon_sym___thiscall] = ACTIONS(1207), - [anon_sym___vectorcall] = ACTIONS(1207), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_signed] = ACTIONS(1207), - [anon_sym_unsigned] = ACTIONS(1207), - [anon_sym_long] = ACTIONS(1207), - [anon_sym_short] = ACTIONS(1207), - [anon_sym_static] = ACTIONS(1207), - [anon_sym_auto] = ACTIONS(1207), - [anon_sym_register] = ACTIONS(1207), - [anon_sym_inline] = ACTIONS(1207), - [anon_sym___inline] = ACTIONS(1207), - [anon_sym___inline__] = ACTIONS(1207), - [anon_sym___forceinline] = ACTIONS(1207), - [anon_sym_thread_local] = ACTIONS(1207), - [anon_sym___thread] = ACTIONS(1207), - [anon_sym_const] = ACTIONS(1207), - [anon_sym_constexpr] = ACTIONS(1207), - [anon_sym_volatile] = ACTIONS(1207), - [anon_sym_restrict] = ACTIONS(1207), - [anon_sym___restrict__] = ACTIONS(1207), - [anon_sym__Atomic] = ACTIONS(1207), - [anon_sym__Noreturn] = ACTIONS(1207), - [anon_sym_noreturn] = ACTIONS(1207), - [anon_sym_alignas] = ACTIONS(1207), - [anon_sym__Alignas] = ACTIONS(1207), - [sym_primitive_type] = ACTIONS(1207), - [anon_sym_enum] = ACTIONS(1207), - [anon_sym_struct] = ACTIONS(1207), - [anon_sym_union] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(1207), - [anon_sym_else] = ACTIONS(1207), - [anon_sym_switch] = ACTIONS(1207), - [anon_sym_case] = ACTIONS(1207), - [anon_sym_default] = ACTIONS(1207), - [anon_sym_while] = ACTIONS(1207), - [anon_sym_do] = ACTIONS(1207), - [anon_sym_for] = ACTIONS(1207), - [anon_sym_return] = ACTIONS(1207), - [anon_sym_break] = ACTIONS(1207), - [anon_sym_continue] = ACTIONS(1207), - [anon_sym_goto] = ACTIONS(1207), - [anon_sym___try] = ACTIONS(1207), - [anon_sym___leave] = ACTIONS(1207), - [anon_sym_DASH_DASH] = ACTIONS(1209), - [anon_sym_PLUS_PLUS] = ACTIONS(1209), - [anon_sym_sizeof] = ACTIONS(1207), - [anon_sym___alignof__] = ACTIONS(1207), - [anon_sym___alignof] = ACTIONS(1207), - [anon_sym__alignof] = ACTIONS(1207), - [anon_sym_alignof] = ACTIONS(1207), - [anon_sym__Alignof] = ACTIONS(1207), - [anon_sym_offsetof] = ACTIONS(1207), - [anon_sym__Generic] = ACTIONS(1207), - [anon_sym_asm] = ACTIONS(1207), - [anon_sym___asm__] = ACTIONS(1207), - [sym_number_literal] = ACTIONS(1209), - [anon_sym_L_SQUOTE] = ACTIONS(1209), - [anon_sym_u_SQUOTE] = ACTIONS(1209), - [anon_sym_U_SQUOTE] = ACTIONS(1209), - [anon_sym_u8_SQUOTE] = ACTIONS(1209), - [anon_sym_SQUOTE] = ACTIONS(1209), - [anon_sym_L_DQUOTE] = ACTIONS(1209), - [anon_sym_u_DQUOTE] = ACTIONS(1209), - [anon_sym_U_DQUOTE] = ACTIONS(1209), - [anon_sym_u8_DQUOTE] = ACTIONS(1209), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [anon_sym_NULL] = ACTIONS(1207), - [anon_sym_nullptr] = ACTIONS(1207), + [256] = { + [sym_identifier] = ACTIONS(1295), + [aux_sym_preproc_include_token1] = ACTIONS(1295), + [aux_sym_preproc_def_token1] = ACTIONS(1295), + [aux_sym_preproc_if_token1] = ACTIONS(1295), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1295), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1295), + [sym_preproc_directive] = ACTIONS(1295), + [anon_sym_LPAREN2] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_TILDE] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1295), + [anon_sym_STAR] = ACTIONS(1297), + [anon_sym_AMP] = ACTIONS(1297), + [anon_sym_SEMI] = ACTIONS(1297), + [anon_sym___extension__] = ACTIONS(1295), + [anon_sym_typedef] = ACTIONS(1295), + [anon_sym_extern] = ACTIONS(1295), + [anon_sym___attribute__] = ACTIONS(1295), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1297), + [anon_sym___declspec] = ACTIONS(1295), + [anon_sym___cdecl] = ACTIONS(1295), + [anon_sym___clrcall] = ACTIONS(1295), + [anon_sym___stdcall] = ACTIONS(1295), + [anon_sym___fastcall] = ACTIONS(1295), + [anon_sym___thiscall] = ACTIONS(1295), + [anon_sym___vectorcall] = ACTIONS(1295), + [anon_sym_LBRACE] = ACTIONS(1297), + [anon_sym_RBRACE] = ACTIONS(1297), + [anon_sym_signed] = ACTIONS(1295), + [anon_sym_unsigned] = ACTIONS(1295), + [anon_sym_long] = ACTIONS(1295), + [anon_sym_short] = ACTIONS(1295), + [anon_sym_static] = ACTIONS(1295), + [anon_sym_auto] = ACTIONS(1295), + [anon_sym_register] = ACTIONS(1295), + [anon_sym_inline] = ACTIONS(1295), + [anon_sym___inline] = ACTIONS(1295), + [anon_sym___inline__] = ACTIONS(1295), + [anon_sym___forceinline] = ACTIONS(1295), + [anon_sym_thread_local] = ACTIONS(1295), + [anon_sym___thread] = ACTIONS(1295), + [anon_sym_const] = ACTIONS(1295), + [anon_sym_constexpr] = ACTIONS(1295), + [anon_sym_volatile] = ACTIONS(1295), + [anon_sym_restrict] = ACTIONS(1295), + [anon_sym___restrict__] = ACTIONS(1295), + [anon_sym__Atomic] = ACTIONS(1295), + [anon_sym__Noreturn] = ACTIONS(1295), + [anon_sym_noreturn] = ACTIONS(1295), + [anon_sym_alignas] = ACTIONS(1295), + [anon_sym__Alignas] = ACTIONS(1295), + [sym_primitive_type] = ACTIONS(1295), + [anon_sym_enum] = ACTIONS(1295), + [anon_sym_struct] = ACTIONS(1295), + [anon_sym_union] = ACTIONS(1295), + [anon_sym_if] = ACTIONS(1295), + [anon_sym_switch] = ACTIONS(1295), + [anon_sym_case] = ACTIONS(1295), + [anon_sym_default] = ACTIONS(1295), + [anon_sym_while] = ACTIONS(1295), + [anon_sym_do] = ACTIONS(1295), + [anon_sym_for] = ACTIONS(1295), + [anon_sym_return] = ACTIONS(1295), + [anon_sym_break] = ACTIONS(1295), + [anon_sym_continue] = ACTIONS(1295), + [anon_sym_goto] = ACTIONS(1295), + [anon_sym___try] = ACTIONS(1295), + [anon_sym___leave] = ACTIONS(1295), + [anon_sym_DASH_DASH] = ACTIONS(1297), + [anon_sym_PLUS_PLUS] = ACTIONS(1297), + [anon_sym_sizeof] = ACTIONS(1295), + [anon_sym___alignof__] = ACTIONS(1295), + [anon_sym___alignof] = ACTIONS(1295), + [anon_sym__alignof] = ACTIONS(1295), + [anon_sym_alignof] = ACTIONS(1295), + [anon_sym__Alignof] = ACTIONS(1295), + [anon_sym_offsetof] = ACTIONS(1295), + [anon_sym__Generic] = ACTIONS(1295), + [anon_sym_asm] = ACTIONS(1295), + [anon_sym___asm__] = ACTIONS(1295), + [sym_number_literal] = ACTIONS(1297), + [anon_sym_L_SQUOTE] = ACTIONS(1297), + [anon_sym_u_SQUOTE] = ACTIONS(1297), + [anon_sym_U_SQUOTE] = ACTIONS(1297), + [anon_sym_u8_SQUOTE] = ACTIONS(1297), + [anon_sym_SQUOTE] = ACTIONS(1297), + [anon_sym_L_DQUOTE] = ACTIONS(1297), + [anon_sym_u_DQUOTE] = ACTIONS(1297), + [anon_sym_U_DQUOTE] = ACTIONS(1297), + [anon_sym_u8_DQUOTE] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1297), + [sym_true] = ACTIONS(1295), + [sym_false] = ACTIONS(1295), + [anon_sym_NULL] = ACTIONS(1295), + [anon_sym_nullptr] = ACTIONS(1295), [sym_comment] = ACTIONS(3), }, - [295] = { - [sym_identifier] = ACTIONS(1199), - [aux_sym_preproc_include_token1] = ACTIONS(1199), - [aux_sym_preproc_def_token1] = ACTIONS(1199), - [aux_sym_preproc_if_token1] = ACTIONS(1199), - [aux_sym_preproc_if_token2] = ACTIONS(1199), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1199), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1199), - [sym_preproc_directive] = ACTIONS(1199), - [anon_sym_LPAREN2] = ACTIONS(1201), - [anon_sym_BANG] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1201), - [anon_sym_DASH] = ACTIONS(1199), - [anon_sym_PLUS] = ACTIONS(1199), - [anon_sym_STAR] = ACTIONS(1201), - [anon_sym_AMP] = ACTIONS(1201), - [anon_sym_SEMI] = ACTIONS(1201), - [anon_sym___extension__] = ACTIONS(1199), - [anon_sym_typedef] = ACTIONS(1199), - [anon_sym_extern] = ACTIONS(1199), - [anon_sym___attribute__] = ACTIONS(1199), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1201), - [anon_sym___declspec] = ACTIONS(1199), - [anon_sym___cdecl] = ACTIONS(1199), - [anon_sym___clrcall] = ACTIONS(1199), - [anon_sym___stdcall] = ACTIONS(1199), - [anon_sym___fastcall] = ACTIONS(1199), - [anon_sym___thiscall] = ACTIONS(1199), - [anon_sym___vectorcall] = ACTIONS(1199), - [anon_sym_LBRACE] = ACTIONS(1201), - [anon_sym_signed] = ACTIONS(1199), - [anon_sym_unsigned] = ACTIONS(1199), - [anon_sym_long] = ACTIONS(1199), - [anon_sym_short] = ACTIONS(1199), - [anon_sym_static] = ACTIONS(1199), - [anon_sym_auto] = ACTIONS(1199), - [anon_sym_register] = ACTIONS(1199), - [anon_sym_inline] = ACTIONS(1199), - [anon_sym___inline] = ACTIONS(1199), - [anon_sym___inline__] = ACTIONS(1199), - [anon_sym___forceinline] = ACTIONS(1199), - [anon_sym_thread_local] = ACTIONS(1199), - [anon_sym___thread] = ACTIONS(1199), - [anon_sym_const] = ACTIONS(1199), - [anon_sym_constexpr] = ACTIONS(1199), - [anon_sym_volatile] = ACTIONS(1199), - [anon_sym_restrict] = ACTIONS(1199), - [anon_sym___restrict__] = ACTIONS(1199), - [anon_sym__Atomic] = ACTIONS(1199), - [anon_sym__Noreturn] = ACTIONS(1199), - [anon_sym_noreturn] = ACTIONS(1199), - [anon_sym_alignas] = ACTIONS(1199), - [anon_sym__Alignas] = ACTIONS(1199), - [sym_primitive_type] = ACTIONS(1199), - [anon_sym_enum] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1199), - [anon_sym_union] = ACTIONS(1199), - [anon_sym_if] = ACTIONS(1199), - [anon_sym_else] = ACTIONS(1199), - [anon_sym_switch] = ACTIONS(1199), - [anon_sym_case] = ACTIONS(1199), - [anon_sym_default] = ACTIONS(1199), - [anon_sym_while] = ACTIONS(1199), - [anon_sym_do] = ACTIONS(1199), - [anon_sym_for] = ACTIONS(1199), - [anon_sym_return] = ACTIONS(1199), - [anon_sym_break] = ACTIONS(1199), - [anon_sym_continue] = ACTIONS(1199), - [anon_sym_goto] = ACTIONS(1199), - [anon_sym___try] = ACTIONS(1199), - [anon_sym___leave] = ACTIONS(1199), - [anon_sym_DASH_DASH] = ACTIONS(1201), - [anon_sym_PLUS_PLUS] = ACTIONS(1201), - [anon_sym_sizeof] = ACTIONS(1199), - [anon_sym___alignof__] = ACTIONS(1199), - [anon_sym___alignof] = ACTIONS(1199), - [anon_sym__alignof] = ACTIONS(1199), - [anon_sym_alignof] = ACTIONS(1199), - [anon_sym__Alignof] = ACTIONS(1199), - [anon_sym_offsetof] = ACTIONS(1199), - [anon_sym__Generic] = ACTIONS(1199), - [anon_sym_asm] = ACTIONS(1199), - [anon_sym___asm__] = ACTIONS(1199), - [sym_number_literal] = ACTIONS(1201), - [anon_sym_L_SQUOTE] = ACTIONS(1201), - [anon_sym_u_SQUOTE] = ACTIONS(1201), - [anon_sym_U_SQUOTE] = ACTIONS(1201), - [anon_sym_u8_SQUOTE] = ACTIONS(1201), - [anon_sym_SQUOTE] = ACTIONS(1201), - [anon_sym_L_DQUOTE] = ACTIONS(1201), - [anon_sym_u_DQUOTE] = ACTIONS(1201), - [anon_sym_U_DQUOTE] = ACTIONS(1201), - [anon_sym_u8_DQUOTE] = ACTIONS(1201), - [anon_sym_DQUOTE] = ACTIONS(1201), - [sym_true] = ACTIONS(1199), - [sym_false] = ACTIONS(1199), - [anon_sym_NULL] = ACTIONS(1199), - [anon_sym_nullptr] = ACTIONS(1199), - [sym_comment] = ACTIONS(3), - }, - [296] = { - [ts_builtin_sym_end] = ACTIONS(1221), - [sym_identifier] = ACTIONS(1219), - [aux_sym_preproc_include_token1] = ACTIONS(1219), - [aux_sym_preproc_def_token1] = ACTIONS(1219), - [aux_sym_preproc_if_token1] = ACTIONS(1219), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1219), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1219), - [sym_preproc_directive] = ACTIONS(1219), - [anon_sym_LPAREN2] = ACTIONS(1221), - [anon_sym_BANG] = ACTIONS(1221), - [anon_sym_TILDE] = ACTIONS(1221), - [anon_sym_DASH] = ACTIONS(1219), - [anon_sym_PLUS] = ACTIONS(1219), - [anon_sym_STAR] = ACTIONS(1221), - [anon_sym_AMP] = ACTIONS(1221), - [anon_sym_SEMI] = ACTIONS(1221), - [anon_sym___extension__] = ACTIONS(1219), - [anon_sym_typedef] = ACTIONS(1219), - [anon_sym_extern] = ACTIONS(1219), - [anon_sym___attribute__] = ACTIONS(1219), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1221), - [anon_sym___declspec] = ACTIONS(1219), - [anon_sym___cdecl] = ACTIONS(1219), - [anon_sym___clrcall] = ACTIONS(1219), - [anon_sym___stdcall] = ACTIONS(1219), - [anon_sym___fastcall] = ACTIONS(1219), - [anon_sym___thiscall] = ACTIONS(1219), - [anon_sym___vectorcall] = ACTIONS(1219), - [anon_sym_LBRACE] = ACTIONS(1221), - [anon_sym_signed] = ACTIONS(1219), - [anon_sym_unsigned] = ACTIONS(1219), - [anon_sym_long] = ACTIONS(1219), - [anon_sym_short] = ACTIONS(1219), - [anon_sym_static] = ACTIONS(1219), - [anon_sym_auto] = ACTIONS(1219), - [anon_sym_register] = ACTIONS(1219), - [anon_sym_inline] = ACTIONS(1219), - [anon_sym___inline] = ACTIONS(1219), - [anon_sym___inline__] = ACTIONS(1219), - [anon_sym___forceinline] = ACTIONS(1219), - [anon_sym_thread_local] = ACTIONS(1219), - [anon_sym___thread] = ACTIONS(1219), - [anon_sym_const] = ACTIONS(1219), - [anon_sym_constexpr] = ACTIONS(1219), - [anon_sym_volatile] = ACTIONS(1219), - [anon_sym_restrict] = ACTIONS(1219), - [anon_sym___restrict__] = ACTIONS(1219), - [anon_sym__Atomic] = ACTIONS(1219), - [anon_sym__Noreturn] = ACTIONS(1219), - [anon_sym_noreturn] = ACTIONS(1219), - [anon_sym_alignas] = ACTIONS(1219), - [anon_sym__Alignas] = ACTIONS(1219), - [sym_primitive_type] = ACTIONS(1219), - [anon_sym_enum] = ACTIONS(1219), - [anon_sym_struct] = ACTIONS(1219), - [anon_sym_union] = ACTIONS(1219), - [anon_sym_if] = ACTIONS(1219), - [anon_sym_else] = ACTIONS(1219), - [anon_sym_switch] = ACTIONS(1219), - [anon_sym_case] = ACTIONS(1219), - [anon_sym_default] = ACTIONS(1219), - [anon_sym_while] = ACTIONS(1219), - [anon_sym_do] = ACTIONS(1219), - [anon_sym_for] = ACTIONS(1219), - [anon_sym_return] = ACTIONS(1219), - [anon_sym_break] = ACTIONS(1219), - [anon_sym_continue] = ACTIONS(1219), - [anon_sym_goto] = ACTIONS(1219), - [anon_sym___try] = ACTIONS(1219), - [anon_sym___leave] = ACTIONS(1219), - [anon_sym_DASH_DASH] = ACTIONS(1221), - [anon_sym_PLUS_PLUS] = ACTIONS(1221), - [anon_sym_sizeof] = ACTIONS(1219), - [anon_sym___alignof__] = ACTIONS(1219), - [anon_sym___alignof] = ACTIONS(1219), - [anon_sym__alignof] = ACTIONS(1219), - [anon_sym_alignof] = ACTIONS(1219), - [anon_sym__Alignof] = ACTIONS(1219), - [anon_sym_offsetof] = ACTIONS(1219), - [anon_sym__Generic] = ACTIONS(1219), - [anon_sym_asm] = ACTIONS(1219), - [anon_sym___asm__] = ACTIONS(1219), - [sym_number_literal] = ACTIONS(1221), - [anon_sym_L_SQUOTE] = ACTIONS(1221), - [anon_sym_u_SQUOTE] = ACTIONS(1221), - [anon_sym_U_SQUOTE] = ACTIONS(1221), - [anon_sym_u8_SQUOTE] = ACTIONS(1221), - [anon_sym_SQUOTE] = ACTIONS(1221), - [anon_sym_L_DQUOTE] = ACTIONS(1221), - [anon_sym_u_DQUOTE] = ACTIONS(1221), - [anon_sym_U_DQUOTE] = ACTIONS(1221), - [anon_sym_u8_DQUOTE] = ACTIONS(1221), - [anon_sym_DQUOTE] = ACTIONS(1221), - [sym_true] = ACTIONS(1219), - [sym_false] = ACTIONS(1219), - [anon_sym_NULL] = ACTIONS(1219), - [anon_sym_nullptr] = ACTIONS(1219), + [257] = { + [sym_identifier] = ACTIONS(1339), + [aux_sym_preproc_include_token1] = ACTIONS(1339), + [aux_sym_preproc_def_token1] = ACTIONS(1339), + [aux_sym_preproc_if_token1] = ACTIONS(1339), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1339), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1339), + [sym_preproc_directive] = ACTIONS(1339), + [anon_sym_LPAREN2] = ACTIONS(1341), + [anon_sym_BANG] = ACTIONS(1341), + [anon_sym_TILDE] = ACTIONS(1341), + [anon_sym_DASH] = ACTIONS(1339), + [anon_sym_PLUS] = ACTIONS(1339), + [anon_sym_STAR] = ACTIONS(1341), + [anon_sym_AMP] = ACTIONS(1341), + [anon_sym_SEMI] = ACTIONS(1341), + [anon_sym___extension__] = ACTIONS(1339), + [anon_sym_typedef] = ACTIONS(1339), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym___attribute__] = ACTIONS(1339), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1341), + [anon_sym___declspec] = ACTIONS(1339), + [anon_sym___cdecl] = ACTIONS(1339), + [anon_sym___clrcall] = ACTIONS(1339), + [anon_sym___stdcall] = ACTIONS(1339), + [anon_sym___fastcall] = ACTIONS(1339), + [anon_sym___thiscall] = ACTIONS(1339), + [anon_sym___vectorcall] = ACTIONS(1339), + [anon_sym_LBRACE] = ACTIONS(1341), + [anon_sym_RBRACE] = ACTIONS(1341), + [anon_sym_signed] = ACTIONS(1339), + [anon_sym_unsigned] = ACTIONS(1339), + [anon_sym_long] = ACTIONS(1339), + [anon_sym_short] = ACTIONS(1339), + [anon_sym_static] = ACTIONS(1339), + [anon_sym_auto] = ACTIONS(1339), + [anon_sym_register] = ACTIONS(1339), + [anon_sym_inline] = ACTIONS(1339), + [anon_sym___inline] = ACTIONS(1339), + [anon_sym___inline__] = ACTIONS(1339), + [anon_sym___forceinline] = ACTIONS(1339), + [anon_sym_thread_local] = ACTIONS(1339), + [anon_sym___thread] = ACTIONS(1339), + [anon_sym_const] = ACTIONS(1339), + [anon_sym_constexpr] = ACTIONS(1339), + [anon_sym_volatile] = ACTIONS(1339), + [anon_sym_restrict] = ACTIONS(1339), + [anon_sym___restrict__] = ACTIONS(1339), + [anon_sym__Atomic] = ACTIONS(1339), + [anon_sym__Noreturn] = ACTIONS(1339), + [anon_sym_noreturn] = ACTIONS(1339), + [anon_sym_alignas] = ACTIONS(1339), + [anon_sym__Alignas] = ACTIONS(1339), + [sym_primitive_type] = ACTIONS(1339), + [anon_sym_enum] = ACTIONS(1339), + [anon_sym_struct] = ACTIONS(1339), + [anon_sym_union] = ACTIONS(1339), + [anon_sym_if] = ACTIONS(1339), + [anon_sym_switch] = ACTIONS(1339), + [anon_sym_case] = ACTIONS(1339), + [anon_sym_default] = ACTIONS(1339), + [anon_sym_while] = ACTIONS(1339), + [anon_sym_do] = ACTIONS(1339), + [anon_sym_for] = ACTIONS(1339), + [anon_sym_return] = ACTIONS(1339), + [anon_sym_break] = ACTIONS(1339), + [anon_sym_continue] = ACTIONS(1339), + [anon_sym_goto] = ACTIONS(1339), + [anon_sym___try] = ACTIONS(1339), + [anon_sym___leave] = ACTIONS(1339), + [anon_sym_DASH_DASH] = ACTIONS(1341), + [anon_sym_PLUS_PLUS] = ACTIONS(1341), + [anon_sym_sizeof] = ACTIONS(1339), + [anon_sym___alignof__] = ACTIONS(1339), + [anon_sym___alignof] = ACTIONS(1339), + [anon_sym__alignof] = ACTIONS(1339), + [anon_sym_alignof] = ACTIONS(1339), + [anon_sym__Alignof] = ACTIONS(1339), + [anon_sym_offsetof] = ACTIONS(1339), + [anon_sym__Generic] = ACTIONS(1339), + [anon_sym_asm] = ACTIONS(1339), + [anon_sym___asm__] = ACTIONS(1339), + [sym_number_literal] = ACTIONS(1341), + [anon_sym_L_SQUOTE] = ACTIONS(1341), + [anon_sym_u_SQUOTE] = ACTIONS(1341), + [anon_sym_U_SQUOTE] = ACTIONS(1341), + [anon_sym_u8_SQUOTE] = ACTIONS(1341), + [anon_sym_SQUOTE] = ACTIONS(1341), + [anon_sym_L_DQUOTE] = ACTIONS(1341), + [anon_sym_u_DQUOTE] = ACTIONS(1341), + [anon_sym_U_DQUOTE] = ACTIONS(1341), + [anon_sym_u8_DQUOTE] = ACTIONS(1341), + [anon_sym_DQUOTE] = ACTIONS(1341), + [sym_true] = ACTIONS(1339), + [sym_false] = ACTIONS(1339), + [anon_sym_NULL] = ACTIONS(1339), + [anon_sym_nullptr] = ACTIONS(1339), [sym_comment] = ACTIONS(3), }, - [297] = { - [ts_builtin_sym_end] = ACTIONS(1193), - [sym_identifier] = ACTIONS(1191), - [aux_sym_preproc_include_token1] = ACTIONS(1191), - [aux_sym_preproc_def_token1] = ACTIONS(1191), - [aux_sym_preproc_if_token1] = ACTIONS(1191), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1191), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1191), - [sym_preproc_directive] = ACTIONS(1191), - [anon_sym_LPAREN2] = ACTIONS(1193), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_TILDE] = ACTIONS(1193), - [anon_sym_DASH] = ACTIONS(1191), - [anon_sym_PLUS] = ACTIONS(1191), - [anon_sym_STAR] = ACTIONS(1193), - [anon_sym_AMP] = ACTIONS(1193), - [anon_sym_SEMI] = ACTIONS(1193), - [anon_sym___extension__] = ACTIONS(1191), - [anon_sym_typedef] = ACTIONS(1191), - [anon_sym_extern] = ACTIONS(1191), - [anon_sym___attribute__] = ACTIONS(1191), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1193), - [anon_sym___declspec] = ACTIONS(1191), - [anon_sym___cdecl] = ACTIONS(1191), - [anon_sym___clrcall] = ACTIONS(1191), - [anon_sym___stdcall] = ACTIONS(1191), - [anon_sym___fastcall] = ACTIONS(1191), - [anon_sym___thiscall] = ACTIONS(1191), - [anon_sym___vectorcall] = ACTIONS(1191), - [anon_sym_LBRACE] = ACTIONS(1193), - [anon_sym_signed] = ACTIONS(1191), - [anon_sym_unsigned] = ACTIONS(1191), - [anon_sym_long] = ACTIONS(1191), - [anon_sym_short] = ACTIONS(1191), - [anon_sym_static] = ACTIONS(1191), - [anon_sym_auto] = ACTIONS(1191), - [anon_sym_register] = ACTIONS(1191), - [anon_sym_inline] = ACTIONS(1191), - [anon_sym___inline] = ACTIONS(1191), - [anon_sym___inline__] = ACTIONS(1191), - [anon_sym___forceinline] = ACTIONS(1191), - [anon_sym_thread_local] = ACTIONS(1191), - [anon_sym___thread] = ACTIONS(1191), - [anon_sym_const] = ACTIONS(1191), - [anon_sym_constexpr] = ACTIONS(1191), - [anon_sym_volatile] = ACTIONS(1191), - [anon_sym_restrict] = ACTIONS(1191), - [anon_sym___restrict__] = ACTIONS(1191), - [anon_sym__Atomic] = ACTIONS(1191), - [anon_sym__Noreturn] = ACTIONS(1191), - [anon_sym_noreturn] = ACTIONS(1191), - [anon_sym_alignas] = ACTIONS(1191), - [anon_sym__Alignas] = ACTIONS(1191), - [sym_primitive_type] = ACTIONS(1191), - [anon_sym_enum] = ACTIONS(1191), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_union] = ACTIONS(1191), - [anon_sym_if] = ACTIONS(1191), - [anon_sym_else] = ACTIONS(1191), - [anon_sym_switch] = ACTIONS(1191), - [anon_sym_case] = ACTIONS(1191), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_while] = ACTIONS(1191), - [anon_sym_do] = ACTIONS(1191), - [anon_sym_for] = ACTIONS(1191), - [anon_sym_return] = ACTIONS(1191), - [anon_sym_break] = ACTIONS(1191), - [anon_sym_continue] = ACTIONS(1191), - [anon_sym_goto] = ACTIONS(1191), - [anon_sym___try] = ACTIONS(1191), - [anon_sym___leave] = ACTIONS(1191), - [anon_sym_DASH_DASH] = ACTIONS(1193), - [anon_sym_PLUS_PLUS] = ACTIONS(1193), - [anon_sym_sizeof] = ACTIONS(1191), - [anon_sym___alignof__] = ACTIONS(1191), - [anon_sym___alignof] = ACTIONS(1191), - [anon_sym__alignof] = ACTIONS(1191), - [anon_sym_alignof] = ACTIONS(1191), - [anon_sym__Alignof] = ACTIONS(1191), - [anon_sym_offsetof] = ACTIONS(1191), - [anon_sym__Generic] = ACTIONS(1191), - [anon_sym_asm] = ACTIONS(1191), - [anon_sym___asm__] = ACTIONS(1191), - [sym_number_literal] = ACTIONS(1193), - [anon_sym_L_SQUOTE] = ACTIONS(1193), - [anon_sym_u_SQUOTE] = ACTIONS(1193), - [anon_sym_U_SQUOTE] = ACTIONS(1193), - [anon_sym_u8_SQUOTE] = ACTIONS(1193), - [anon_sym_SQUOTE] = ACTIONS(1193), - [anon_sym_L_DQUOTE] = ACTIONS(1193), - [anon_sym_u_DQUOTE] = ACTIONS(1193), - [anon_sym_U_DQUOTE] = ACTIONS(1193), - [anon_sym_u8_DQUOTE] = ACTIONS(1193), - [anon_sym_DQUOTE] = ACTIONS(1193), - [sym_true] = ACTIONS(1191), - [sym_false] = ACTIONS(1191), - [anon_sym_NULL] = ACTIONS(1191), - [anon_sym_nullptr] = ACTIONS(1191), + [258] = { + [sym_identifier] = ACTIONS(1311), + [aux_sym_preproc_include_token1] = ACTIONS(1311), + [aux_sym_preproc_def_token1] = ACTIONS(1311), + [aux_sym_preproc_if_token1] = ACTIONS(1311), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1311), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1311), + [sym_preproc_directive] = ACTIONS(1311), + [anon_sym_LPAREN2] = ACTIONS(1313), + [anon_sym_BANG] = ACTIONS(1313), + [anon_sym_TILDE] = ACTIONS(1313), + [anon_sym_DASH] = ACTIONS(1311), + [anon_sym_PLUS] = ACTIONS(1311), + [anon_sym_STAR] = ACTIONS(1313), + [anon_sym_AMP] = ACTIONS(1313), + [anon_sym_SEMI] = ACTIONS(1313), + [anon_sym___extension__] = ACTIONS(1311), + [anon_sym_typedef] = ACTIONS(1311), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym___attribute__] = ACTIONS(1311), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1313), + [anon_sym___declspec] = ACTIONS(1311), + [anon_sym___cdecl] = ACTIONS(1311), + [anon_sym___clrcall] = ACTIONS(1311), + [anon_sym___stdcall] = ACTIONS(1311), + [anon_sym___fastcall] = ACTIONS(1311), + [anon_sym___thiscall] = ACTIONS(1311), + [anon_sym___vectorcall] = ACTIONS(1311), + [anon_sym_LBRACE] = ACTIONS(1313), + [anon_sym_RBRACE] = ACTIONS(1313), + [anon_sym_signed] = ACTIONS(1311), + [anon_sym_unsigned] = ACTIONS(1311), + [anon_sym_long] = ACTIONS(1311), + [anon_sym_short] = ACTIONS(1311), + [anon_sym_static] = ACTIONS(1311), + [anon_sym_auto] = ACTIONS(1311), + [anon_sym_register] = ACTIONS(1311), + [anon_sym_inline] = ACTIONS(1311), + [anon_sym___inline] = ACTIONS(1311), + [anon_sym___inline__] = ACTIONS(1311), + [anon_sym___forceinline] = ACTIONS(1311), + [anon_sym_thread_local] = ACTIONS(1311), + [anon_sym___thread] = ACTIONS(1311), + [anon_sym_const] = ACTIONS(1311), + [anon_sym_constexpr] = ACTIONS(1311), + [anon_sym_volatile] = ACTIONS(1311), + [anon_sym_restrict] = ACTIONS(1311), + [anon_sym___restrict__] = ACTIONS(1311), + [anon_sym__Atomic] = ACTIONS(1311), + [anon_sym__Noreturn] = ACTIONS(1311), + [anon_sym_noreturn] = ACTIONS(1311), + [anon_sym_alignas] = ACTIONS(1311), + [anon_sym__Alignas] = ACTIONS(1311), + [sym_primitive_type] = ACTIONS(1311), + [anon_sym_enum] = ACTIONS(1311), + [anon_sym_struct] = ACTIONS(1311), + [anon_sym_union] = ACTIONS(1311), + [anon_sym_if] = ACTIONS(1311), + [anon_sym_switch] = ACTIONS(1311), + [anon_sym_case] = ACTIONS(1311), + [anon_sym_default] = ACTIONS(1311), + [anon_sym_while] = ACTIONS(1311), + [anon_sym_do] = ACTIONS(1311), + [anon_sym_for] = ACTIONS(1311), + [anon_sym_return] = ACTIONS(1311), + [anon_sym_break] = ACTIONS(1311), + [anon_sym_continue] = ACTIONS(1311), + [anon_sym_goto] = ACTIONS(1311), + [anon_sym___try] = ACTIONS(1311), + [anon_sym___leave] = ACTIONS(1311), + [anon_sym_DASH_DASH] = ACTIONS(1313), + [anon_sym_PLUS_PLUS] = ACTIONS(1313), + [anon_sym_sizeof] = ACTIONS(1311), + [anon_sym___alignof__] = ACTIONS(1311), + [anon_sym___alignof] = ACTIONS(1311), + [anon_sym__alignof] = ACTIONS(1311), + [anon_sym_alignof] = ACTIONS(1311), + [anon_sym__Alignof] = ACTIONS(1311), + [anon_sym_offsetof] = ACTIONS(1311), + [anon_sym__Generic] = ACTIONS(1311), + [anon_sym_asm] = ACTIONS(1311), + [anon_sym___asm__] = ACTIONS(1311), + [sym_number_literal] = ACTIONS(1313), + [anon_sym_L_SQUOTE] = ACTIONS(1313), + [anon_sym_u_SQUOTE] = ACTIONS(1313), + [anon_sym_U_SQUOTE] = ACTIONS(1313), + [anon_sym_u8_SQUOTE] = ACTIONS(1313), + [anon_sym_SQUOTE] = ACTIONS(1313), + [anon_sym_L_DQUOTE] = ACTIONS(1313), + [anon_sym_u_DQUOTE] = ACTIONS(1313), + [anon_sym_U_DQUOTE] = ACTIONS(1313), + [anon_sym_u8_DQUOTE] = ACTIONS(1313), + [anon_sym_DQUOTE] = ACTIONS(1313), + [sym_true] = ACTIONS(1311), + [sym_false] = ACTIONS(1311), + [anon_sym_NULL] = ACTIONS(1311), + [anon_sym_nullptr] = ACTIONS(1311), [sym_comment] = ACTIONS(3), }, - [298] = { - [sym_identifier] = ACTIONS(1195), - [aux_sym_preproc_include_token1] = ACTIONS(1195), - [aux_sym_preproc_def_token1] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1195), - [aux_sym_preproc_if_token2] = ACTIONS(1195), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1195), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1195), - [sym_preproc_directive] = ACTIONS(1195), - [anon_sym_LPAREN2] = ACTIONS(1197), - [anon_sym_BANG] = ACTIONS(1197), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1195), - [anon_sym_STAR] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1197), - [anon_sym_SEMI] = ACTIONS(1197), - [anon_sym___extension__] = ACTIONS(1195), - [anon_sym_typedef] = ACTIONS(1195), - [anon_sym_extern] = ACTIONS(1195), - [anon_sym___attribute__] = ACTIONS(1195), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1197), - [anon_sym___declspec] = ACTIONS(1195), - [anon_sym___cdecl] = ACTIONS(1195), - [anon_sym___clrcall] = ACTIONS(1195), - [anon_sym___stdcall] = ACTIONS(1195), - [anon_sym___fastcall] = ACTIONS(1195), - [anon_sym___thiscall] = ACTIONS(1195), - [anon_sym___vectorcall] = ACTIONS(1195), - [anon_sym_LBRACE] = ACTIONS(1197), - [anon_sym_signed] = ACTIONS(1195), - [anon_sym_unsigned] = ACTIONS(1195), - [anon_sym_long] = ACTIONS(1195), - [anon_sym_short] = ACTIONS(1195), - [anon_sym_static] = ACTIONS(1195), - [anon_sym_auto] = ACTIONS(1195), - [anon_sym_register] = ACTIONS(1195), - [anon_sym_inline] = ACTIONS(1195), - [anon_sym___inline] = ACTIONS(1195), - [anon_sym___inline__] = ACTIONS(1195), - [anon_sym___forceinline] = ACTIONS(1195), - [anon_sym_thread_local] = ACTIONS(1195), - [anon_sym___thread] = ACTIONS(1195), - [anon_sym_const] = ACTIONS(1195), - [anon_sym_constexpr] = ACTIONS(1195), - [anon_sym_volatile] = ACTIONS(1195), - [anon_sym_restrict] = ACTIONS(1195), - [anon_sym___restrict__] = ACTIONS(1195), - [anon_sym__Atomic] = ACTIONS(1195), - [anon_sym__Noreturn] = ACTIONS(1195), - [anon_sym_noreturn] = ACTIONS(1195), - [anon_sym_alignas] = ACTIONS(1195), - [anon_sym__Alignas] = ACTIONS(1195), - [sym_primitive_type] = ACTIONS(1195), - [anon_sym_enum] = ACTIONS(1195), - [anon_sym_struct] = ACTIONS(1195), - [anon_sym_union] = ACTIONS(1195), - [anon_sym_if] = ACTIONS(1195), - [anon_sym_else] = ACTIONS(1195), - [anon_sym_switch] = ACTIONS(1195), - [anon_sym_case] = ACTIONS(1195), - [anon_sym_default] = ACTIONS(1195), - [anon_sym_while] = ACTIONS(1195), - [anon_sym_do] = ACTIONS(1195), - [anon_sym_for] = ACTIONS(1195), - [anon_sym_return] = ACTIONS(1195), - [anon_sym_break] = ACTIONS(1195), - [anon_sym_continue] = ACTIONS(1195), - [anon_sym_goto] = ACTIONS(1195), - [anon_sym___try] = ACTIONS(1195), - [anon_sym___leave] = ACTIONS(1195), - [anon_sym_DASH_DASH] = ACTIONS(1197), - [anon_sym_PLUS_PLUS] = ACTIONS(1197), - [anon_sym_sizeof] = ACTIONS(1195), - [anon_sym___alignof__] = ACTIONS(1195), - [anon_sym___alignof] = ACTIONS(1195), - [anon_sym__alignof] = ACTIONS(1195), - [anon_sym_alignof] = ACTIONS(1195), - [anon_sym__Alignof] = ACTIONS(1195), - [anon_sym_offsetof] = ACTIONS(1195), - [anon_sym__Generic] = ACTIONS(1195), - [anon_sym_asm] = ACTIONS(1195), - [anon_sym___asm__] = ACTIONS(1195), - [sym_number_literal] = ACTIONS(1197), - [anon_sym_L_SQUOTE] = ACTIONS(1197), - [anon_sym_u_SQUOTE] = ACTIONS(1197), - [anon_sym_U_SQUOTE] = ACTIONS(1197), - [anon_sym_u8_SQUOTE] = ACTIONS(1197), - [anon_sym_SQUOTE] = ACTIONS(1197), - [anon_sym_L_DQUOTE] = ACTIONS(1197), - [anon_sym_u_DQUOTE] = ACTIONS(1197), - [anon_sym_U_DQUOTE] = ACTIONS(1197), - [anon_sym_u8_DQUOTE] = ACTIONS(1197), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_true] = ACTIONS(1195), - [sym_false] = ACTIONS(1195), - [anon_sym_NULL] = ACTIONS(1195), - [anon_sym_nullptr] = ACTIONS(1195), - [sym_comment] = ACTIONS(3), - }, - [299] = { - [sym_identifier] = ACTIONS(1123), - [aux_sym_preproc_include_token1] = ACTIONS(1123), - [aux_sym_preproc_def_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), - [sym_preproc_directive] = ACTIONS(1123), - [anon_sym_LPAREN2] = ACTIONS(1125), - [anon_sym_BANG] = ACTIONS(1125), - [anon_sym_TILDE] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym___extension__] = ACTIONS(1123), - [anon_sym_typedef] = ACTIONS(1123), - [anon_sym_extern] = ACTIONS(1123), - [anon_sym___attribute__] = ACTIONS(1123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), - [anon_sym___declspec] = ACTIONS(1123), - [anon_sym___cdecl] = ACTIONS(1123), - [anon_sym___clrcall] = ACTIONS(1123), - [anon_sym___stdcall] = ACTIONS(1123), - [anon_sym___fastcall] = ACTIONS(1123), - [anon_sym___thiscall] = ACTIONS(1123), - [anon_sym___vectorcall] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_RBRACE] = ACTIONS(1125), - [anon_sym_signed] = ACTIONS(1123), - [anon_sym_unsigned] = ACTIONS(1123), - [anon_sym_long] = ACTIONS(1123), - [anon_sym_short] = ACTIONS(1123), - [anon_sym_static] = ACTIONS(1123), - [anon_sym_auto] = ACTIONS(1123), - [anon_sym_register] = ACTIONS(1123), - [anon_sym_inline] = ACTIONS(1123), - [anon_sym___inline] = ACTIONS(1123), - [anon_sym___inline__] = ACTIONS(1123), - [anon_sym___forceinline] = ACTIONS(1123), - [anon_sym_thread_local] = ACTIONS(1123), - [anon_sym___thread] = ACTIONS(1123), - [anon_sym_const] = ACTIONS(1123), - [anon_sym_constexpr] = ACTIONS(1123), - [anon_sym_volatile] = ACTIONS(1123), - [anon_sym_restrict] = ACTIONS(1123), - [anon_sym___restrict__] = ACTIONS(1123), - [anon_sym__Atomic] = ACTIONS(1123), - [anon_sym__Noreturn] = ACTIONS(1123), - [anon_sym_noreturn] = ACTIONS(1123), - [anon_sym_alignas] = ACTIONS(1123), - [anon_sym__Alignas] = ACTIONS(1123), - [sym_primitive_type] = ACTIONS(1123), - [anon_sym_enum] = ACTIONS(1123), - [anon_sym_struct] = ACTIONS(1123), - [anon_sym_union] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1123), - [anon_sym_else] = ACTIONS(1123), - [anon_sym_switch] = ACTIONS(1123), - [anon_sym_case] = ACTIONS(1123), - [anon_sym_default] = ACTIONS(1123), - [anon_sym_while] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(1123), - [anon_sym_for] = ACTIONS(1123), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_break] = ACTIONS(1123), - [anon_sym_continue] = ACTIONS(1123), - [anon_sym_goto] = ACTIONS(1123), - [anon_sym___try] = ACTIONS(1123), - [anon_sym___leave] = ACTIONS(1123), - [anon_sym_DASH_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1125), - [anon_sym_sizeof] = ACTIONS(1123), - [anon_sym___alignof__] = ACTIONS(1123), - [anon_sym___alignof] = ACTIONS(1123), - [anon_sym__alignof] = ACTIONS(1123), - [anon_sym_alignof] = ACTIONS(1123), - [anon_sym__Alignof] = ACTIONS(1123), - [anon_sym_offsetof] = ACTIONS(1123), - [anon_sym__Generic] = ACTIONS(1123), - [anon_sym_asm] = ACTIONS(1123), - [anon_sym___asm__] = ACTIONS(1123), - [sym_number_literal] = ACTIONS(1125), - [anon_sym_L_SQUOTE] = ACTIONS(1125), - [anon_sym_u_SQUOTE] = ACTIONS(1125), - [anon_sym_U_SQUOTE] = ACTIONS(1125), - [anon_sym_u8_SQUOTE] = ACTIONS(1125), - [anon_sym_SQUOTE] = ACTIONS(1125), - [anon_sym_L_DQUOTE] = ACTIONS(1125), - [anon_sym_u_DQUOTE] = ACTIONS(1125), - [anon_sym_U_DQUOTE] = ACTIONS(1125), - [anon_sym_u8_DQUOTE] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(1125), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [anon_sym_NULL] = ACTIONS(1123), - [anon_sym_nullptr] = ACTIONS(1123), + [259] = { + [sym_identifier] = ACTIONS(1255), + [aux_sym_preproc_include_token1] = ACTIONS(1255), + [aux_sym_preproc_def_token1] = ACTIONS(1255), + [aux_sym_preproc_if_token1] = ACTIONS(1255), + [aux_sym_preproc_if_token2] = ACTIONS(1255), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1255), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1255), + [sym_preproc_directive] = ACTIONS(1255), + [anon_sym_LPAREN2] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(1257), + [anon_sym_TILDE] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1255), + [anon_sym_STAR] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1257), + [anon_sym_SEMI] = ACTIONS(1257), + [anon_sym___extension__] = ACTIONS(1255), + [anon_sym_typedef] = ACTIONS(1255), + [anon_sym_extern] = ACTIONS(1255), + [anon_sym___attribute__] = ACTIONS(1255), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1257), + [anon_sym___declspec] = ACTIONS(1255), + [anon_sym___cdecl] = ACTIONS(1255), + [anon_sym___clrcall] = ACTIONS(1255), + [anon_sym___stdcall] = ACTIONS(1255), + [anon_sym___fastcall] = ACTIONS(1255), + [anon_sym___thiscall] = ACTIONS(1255), + [anon_sym___vectorcall] = ACTIONS(1255), + [anon_sym_LBRACE] = ACTIONS(1257), + [anon_sym_signed] = ACTIONS(1255), + [anon_sym_unsigned] = ACTIONS(1255), + [anon_sym_long] = ACTIONS(1255), + [anon_sym_short] = ACTIONS(1255), + [anon_sym_static] = ACTIONS(1255), + [anon_sym_auto] = ACTIONS(1255), + [anon_sym_register] = ACTIONS(1255), + [anon_sym_inline] = ACTIONS(1255), + [anon_sym___inline] = ACTIONS(1255), + [anon_sym___inline__] = ACTIONS(1255), + [anon_sym___forceinline] = ACTIONS(1255), + [anon_sym_thread_local] = ACTIONS(1255), + [anon_sym___thread] = ACTIONS(1255), + [anon_sym_const] = ACTIONS(1255), + [anon_sym_constexpr] = ACTIONS(1255), + [anon_sym_volatile] = ACTIONS(1255), + [anon_sym_restrict] = ACTIONS(1255), + [anon_sym___restrict__] = ACTIONS(1255), + [anon_sym__Atomic] = ACTIONS(1255), + [anon_sym__Noreturn] = ACTIONS(1255), + [anon_sym_noreturn] = ACTIONS(1255), + [anon_sym_alignas] = ACTIONS(1255), + [anon_sym__Alignas] = ACTIONS(1255), + [sym_primitive_type] = ACTIONS(1255), + [anon_sym_enum] = ACTIONS(1255), + [anon_sym_struct] = ACTIONS(1255), + [anon_sym_union] = ACTIONS(1255), + [anon_sym_if] = ACTIONS(1255), + [anon_sym_switch] = ACTIONS(1255), + [anon_sym_case] = ACTIONS(1255), + [anon_sym_default] = ACTIONS(1255), + [anon_sym_while] = ACTIONS(1255), + [anon_sym_do] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1255), + [anon_sym_return] = ACTIONS(1255), + [anon_sym_break] = ACTIONS(1255), + [anon_sym_continue] = ACTIONS(1255), + [anon_sym_goto] = ACTIONS(1255), + [anon_sym___try] = ACTIONS(1255), + [anon_sym___leave] = ACTIONS(1255), + [anon_sym_DASH_DASH] = ACTIONS(1257), + [anon_sym_PLUS_PLUS] = ACTIONS(1257), + [anon_sym_sizeof] = ACTIONS(1255), + [anon_sym___alignof__] = ACTIONS(1255), + [anon_sym___alignof] = ACTIONS(1255), + [anon_sym__alignof] = ACTIONS(1255), + [anon_sym_alignof] = ACTIONS(1255), + [anon_sym__Alignof] = ACTIONS(1255), + [anon_sym_offsetof] = ACTIONS(1255), + [anon_sym__Generic] = ACTIONS(1255), + [anon_sym_asm] = ACTIONS(1255), + [anon_sym___asm__] = ACTIONS(1255), + [sym_number_literal] = ACTIONS(1257), + [anon_sym_L_SQUOTE] = ACTIONS(1257), + [anon_sym_u_SQUOTE] = ACTIONS(1257), + [anon_sym_U_SQUOTE] = ACTIONS(1257), + [anon_sym_u8_SQUOTE] = ACTIONS(1257), + [anon_sym_SQUOTE] = ACTIONS(1257), + [anon_sym_L_DQUOTE] = ACTIONS(1257), + [anon_sym_u_DQUOTE] = ACTIONS(1257), + [anon_sym_U_DQUOTE] = ACTIONS(1257), + [anon_sym_u8_DQUOTE] = ACTIONS(1257), + [anon_sym_DQUOTE] = ACTIONS(1257), + [sym_true] = ACTIONS(1255), + [sym_false] = ACTIONS(1255), + [anon_sym_NULL] = ACTIONS(1255), + [anon_sym_nullptr] = ACTIONS(1255), [sym_comment] = ACTIONS(3), }, - [300] = { - [sym_identifier] = ACTIONS(1123), - [aux_sym_preproc_include_token1] = ACTIONS(1123), - [aux_sym_preproc_def_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), - [sym_preproc_directive] = ACTIONS(1123), - [anon_sym_LPAREN2] = ACTIONS(1125), - [anon_sym_BANG] = ACTIONS(1125), - [anon_sym_TILDE] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym___extension__] = ACTIONS(1123), - [anon_sym_typedef] = ACTIONS(1123), - [anon_sym_extern] = ACTIONS(1123), - [anon_sym___attribute__] = ACTIONS(1123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), - [anon_sym___declspec] = ACTIONS(1123), - [anon_sym___cdecl] = ACTIONS(1123), - [anon_sym___clrcall] = ACTIONS(1123), - [anon_sym___stdcall] = ACTIONS(1123), - [anon_sym___fastcall] = ACTIONS(1123), - [anon_sym___thiscall] = ACTIONS(1123), - [anon_sym___vectorcall] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_RBRACE] = ACTIONS(1125), - [anon_sym_signed] = ACTIONS(1123), - [anon_sym_unsigned] = ACTIONS(1123), - [anon_sym_long] = ACTIONS(1123), - [anon_sym_short] = ACTIONS(1123), - [anon_sym_static] = ACTIONS(1123), - [anon_sym_auto] = ACTIONS(1123), - [anon_sym_register] = ACTIONS(1123), - [anon_sym_inline] = ACTIONS(1123), - [anon_sym___inline] = ACTIONS(1123), - [anon_sym___inline__] = ACTIONS(1123), - [anon_sym___forceinline] = ACTIONS(1123), - [anon_sym_thread_local] = ACTIONS(1123), - [anon_sym___thread] = ACTIONS(1123), - [anon_sym_const] = ACTIONS(1123), - [anon_sym_constexpr] = ACTIONS(1123), - [anon_sym_volatile] = ACTIONS(1123), - [anon_sym_restrict] = ACTIONS(1123), - [anon_sym___restrict__] = ACTIONS(1123), - [anon_sym__Atomic] = ACTIONS(1123), - [anon_sym__Noreturn] = ACTIONS(1123), - [anon_sym_noreturn] = ACTIONS(1123), - [anon_sym_alignas] = ACTIONS(1123), - [anon_sym__Alignas] = ACTIONS(1123), - [sym_primitive_type] = ACTIONS(1123), - [anon_sym_enum] = ACTIONS(1123), - [anon_sym_struct] = ACTIONS(1123), - [anon_sym_union] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1123), - [anon_sym_else] = ACTIONS(1123), - [anon_sym_switch] = ACTIONS(1123), - [anon_sym_case] = ACTIONS(1123), - [anon_sym_default] = ACTIONS(1123), - [anon_sym_while] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(1123), - [anon_sym_for] = ACTIONS(1123), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_break] = ACTIONS(1123), - [anon_sym_continue] = ACTIONS(1123), - [anon_sym_goto] = ACTIONS(1123), - [anon_sym___try] = ACTIONS(1123), - [anon_sym___leave] = ACTIONS(1123), - [anon_sym_DASH_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1125), - [anon_sym_sizeof] = ACTIONS(1123), - [anon_sym___alignof__] = ACTIONS(1123), - [anon_sym___alignof] = ACTIONS(1123), - [anon_sym__alignof] = ACTIONS(1123), - [anon_sym_alignof] = ACTIONS(1123), - [anon_sym__Alignof] = ACTIONS(1123), - [anon_sym_offsetof] = ACTIONS(1123), - [anon_sym__Generic] = ACTIONS(1123), - [anon_sym_asm] = ACTIONS(1123), - [anon_sym___asm__] = ACTIONS(1123), - [sym_number_literal] = ACTIONS(1125), - [anon_sym_L_SQUOTE] = ACTIONS(1125), - [anon_sym_u_SQUOTE] = ACTIONS(1125), - [anon_sym_U_SQUOTE] = ACTIONS(1125), - [anon_sym_u8_SQUOTE] = ACTIONS(1125), - [anon_sym_SQUOTE] = ACTIONS(1125), - [anon_sym_L_DQUOTE] = ACTIONS(1125), - [anon_sym_u_DQUOTE] = ACTIONS(1125), - [anon_sym_U_DQUOTE] = ACTIONS(1125), - [anon_sym_u8_DQUOTE] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(1125), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [anon_sym_NULL] = ACTIONS(1123), - [anon_sym_nullptr] = ACTIONS(1123), + [260] = { + [sym_identifier] = ACTIONS(1315), + [aux_sym_preproc_include_token1] = ACTIONS(1315), + [aux_sym_preproc_def_token1] = ACTIONS(1315), + [aux_sym_preproc_if_token1] = ACTIONS(1315), + [aux_sym_preproc_if_token2] = ACTIONS(1315), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1315), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1315), + [sym_preproc_directive] = ACTIONS(1315), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_DASH] = ACTIONS(1315), + [anon_sym_PLUS] = ACTIONS(1315), + [anon_sym_STAR] = ACTIONS(1317), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_SEMI] = ACTIONS(1317), + [anon_sym___extension__] = ACTIONS(1315), + [anon_sym_typedef] = ACTIONS(1315), + [anon_sym_extern] = ACTIONS(1315), + [anon_sym___attribute__] = ACTIONS(1315), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1317), + [anon_sym___declspec] = ACTIONS(1315), + [anon_sym___cdecl] = ACTIONS(1315), + [anon_sym___clrcall] = ACTIONS(1315), + [anon_sym___stdcall] = ACTIONS(1315), + [anon_sym___fastcall] = ACTIONS(1315), + [anon_sym___thiscall] = ACTIONS(1315), + [anon_sym___vectorcall] = ACTIONS(1315), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_signed] = ACTIONS(1315), + [anon_sym_unsigned] = ACTIONS(1315), + [anon_sym_long] = ACTIONS(1315), + [anon_sym_short] = ACTIONS(1315), + [anon_sym_static] = ACTIONS(1315), + [anon_sym_auto] = ACTIONS(1315), + [anon_sym_register] = ACTIONS(1315), + [anon_sym_inline] = ACTIONS(1315), + [anon_sym___inline] = ACTIONS(1315), + [anon_sym___inline__] = ACTIONS(1315), + [anon_sym___forceinline] = ACTIONS(1315), + [anon_sym_thread_local] = ACTIONS(1315), + [anon_sym___thread] = ACTIONS(1315), + [anon_sym_const] = ACTIONS(1315), + [anon_sym_constexpr] = ACTIONS(1315), + [anon_sym_volatile] = ACTIONS(1315), + [anon_sym_restrict] = ACTIONS(1315), + [anon_sym___restrict__] = ACTIONS(1315), + [anon_sym__Atomic] = ACTIONS(1315), + [anon_sym__Noreturn] = ACTIONS(1315), + [anon_sym_noreturn] = ACTIONS(1315), + [anon_sym_alignas] = ACTIONS(1315), + [anon_sym__Alignas] = ACTIONS(1315), + [sym_primitive_type] = ACTIONS(1315), + [anon_sym_enum] = ACTIONS(1315), + [anon_sym_struct] = ACTIONS(1315), + [anon_sym_union] = ACTIONS(1315), + [anon_sym_if] = ACTIONS(1315), + [anon_sym_switch] = ACTIONS(1315), + [anon_sym_case] = ACTIONS(1315), + [anon_sym_default] = ACTIONS(1315), + [anon_sym_while] = ACTIONS(1315), + [anon_sym_do] = ACTIONS(1315), + [anon_sym_for] = ACTIONS(1315), + [anon_sym_return] = ACTIONS(1315), + [anon_sym_break] = ACTIONS(1315), + [anon_sym_continue] = ACTIONS(1315), + [anon_sym_goto] = ACTIONS(1315), + [anon_sym___try] = ACTIONS(1315), + [anon_sym___leave] = ACTIONS(1315), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_sizeof] = ACTIONS(1315), + [anon_sym___alignof__] = ACTIONS(1315), + [anon_sym___alignof] = ACTIONS(1315), + [anon_sym__alignof] = ACTIONS(1315), + [anon_sym_alignof] = ACTIONS(1315), + [anon_sym__Alignof] = ACTIONS(1315), + [anon_sym_offsetof] = ACTIONS(1315), + [anon_sym__Generic] = ACTIONS(1315), + [anon_sym_asm] = ACTIONS(1315), + [anon_sym___asm__] = ACTIONS(1315), + [sym_number_literal] = ACTIONS(1317), + [anon_sym_L_SQUOTE] = ACTIONS(1317), + [anon_sym_u_SQUOTE] = ACTIONS(1317), + [anon_sym_U_SQUOTE] = ACTIONS(1317), + [anon_sym_u8_SQUOTE] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(1317), + [anon_sym_L_DQUOTE] = ACTIONS(1317), + [anon_sym_u_DQUOTE] = ACTIONS(1317), + [anon_sym_U_DQUOTE] = ACTIONS(1317), + [anon_sym_u8_DQUOTE] = ACTIONS(1317), + [anon_sym_DQUOTE] = ACTIONS(1317), + [sym_true] = ACTIONS(1315), + [sym_false] = ACTIONS(1315), + [anon_sym_NULL] = ACTIONS(1315), + [anon_sym_nullptr] = ACTIONS(1315), [sym_comment] = ACTIONS(3), }, - [301] = { - [ts_builtin_sym_end] = ACTIONS(1189), - [sym_identifier] = ACTIONS(1187), - [aux_sym_preproc_include_token1] = ACTIONS(1187), - [aux_sym_preproc_def_token1] = ACTIONS(1187), - [aux_sym_preproc_if_token1] = ACTIONS(1187), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1187), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1187), - [sym_preproc_directive] = ACTIONS(1187), - [anon_sym_LPAREN2] = ACTIONS(1189), - [anon_sym_BANG] = ACTIONS(1189), - [anon_sym_TILDE] = ACTIONS(1189), - [anon_sym_DASH] = ACTIONS(1187), - [anon_sym_PLUS] = ACTIONS(1187), - [anon_sym_STAR] = ACTIONS(1189), - [anon_sym_AMP] = ACTIONS(1189), - [anon_sym_SEMI] = ACTIONS(1189), - [anon_sym___extension__] = ACTIONS(1187), - [anon_sym_typedef] = ACTIONS(1187), - [anon_sym_extern] = ACTIONS(1187), - [anon_sym___attribute__] = ACTIONS(1187), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1189), - [anon_sym___declspec] = ACTIONS(1187), - [anon_sym___cdecl] = ACTIONS(1187), - [anon_sym___clrcall] = ACTIONS(1187), - [anon_sym___stdcall] = ACTIONS(1187), - [anon_sym___fastcall] = ACTIONS(1187), - [anon_sym___thiscall] = ACTIONS(1187), - [anon_sym___vectorcall] = ACTIONS(1187), - [anon_sym_LBRACE] = ACTIONS(1189), - [anon_sym_signed] = ACTIONS(1187), - [anon_sym_unsigned] = ACTIONS(1187), - [anon_sym_long] = ACTIONS(1187), - [anon_sym_short] = ACTIONS(1187), - [anon_sym_static] = ACTIONS(1187), - [anon_sym_auto] = ACTIONS(1187), - [anon_sym_register] = ACTIONS(1187), - [anon_sym_inline] = ACTIONS(1187), - [anon_sym___inline] = ACTIONS(1187), - [anon_sym___inline__] = ACTIONS(1187), - [anon_sym___forceinline] = ACTIONS(1187), - [anon_sym_thread_local] = ACTIONS(1187), - [anon_sym___thread] = ACTIONS(1187), - [anon_sym_const] = ACTIONS(1187), - [anon_sym_constexpr] = ACTIONS(1187), - [anon_sym_volatile] = ACTIONS(1187), - [anon_sym_restrict] = ACTIONS(1187), - [anon_sym___restrict__] = ACTIONS(1187), - [anon_sym__Atomic] = ACTIONS(1187), - [anon_sym__Noreturn] = ACTIONS(1187), - [anon_sym_noreturn] = ACTIONS(1187), - [anon_sym_alignas] = ACTIONS(1187), - [anon_sym__Alignas] = ACTIONS(1187), - [sym_primitive_type] = ACTIONS(1187), - [anon_sym_enum] = ACTIONS(1187), - [anon_sym_struct] = ACTIONS(1187), - [anon_sym_union] = ACTIONS(1187), - [anon_sym_if] = ACTIONS(1187), - [anon_sym_else] = ACTIONS(1187), - [anon_sym_switch] = ACTIONS(1187), - [anon_sym_case] = ACTIONS(1187), - [anon_sym_default] = ACTIONS(1187), - [anon_sym_while] = ACTIONS(1187), - [anon_sym_do] = ACTIONS(1187), - [anon_sym_for] = ACTIONS(1187), - [anon_sym_return] = ACTIONS(1187), - [anon_sym_break] = ACTIONS(1187), - [anon_sym_continue] = ACTIONS(1187), - [anon_sym_goto] = ACTIONS(1187), - [anon_sym___try] = ACTIONS(1187), - [anon_sym___leave] = ACTIONS(1187), - [anon_sym_DASH_DASH] = ACTIONS(1189), - [anon_sym_PLUS_PLUS] = ACTIONS(1189), - [anon_sym_sizeof] = ACTIONS(1187), - [anon_sym___alignof__] = ACTIONS(1187), - [anon_sym___alignof] = ACTIONS(1187), - [anon_sym__alignof] = ACTIONS(1187), - [anon_sym_alignof] = ACTIONS(1187), - [anon_sym__Alignof] = ACTIONS(1187), - [anon_sym_offsetof] = ACTIONS(1187), - [anon_sym__Generic] = ACTIONS(1187), - [anon_sym_asm] = ACTIONS(1187), - [anon_sym___asm__] = ACTIONS(1187), - [sym_number_literal] = ACTIONS(1189), - [anon_sym_L_SQUOTE] = ACTIONS(1189), - [anon_sym_u_SQUOTE] = ACTIONS(1189), - [anon_sym_U_SQUOTE] = ACTIONS(1189), - [anon_sym_u8_SQUOTE] = ACTIONS(1189), - [anon_sym_SQUOTE] = ACTIONS(1189), - [anon_sym_L_DQUOTE] = ACTIONS(1189), - [anon_sym_u_DQUOTE] = ACTIONS(1189), - [anon_sym_U_DQUOTE] = ACTIONS(1189), - [anon_sym_u8_DQUOTE] = ACTIONS(1189), - [anon_sym_DQUOTE] = ACTIONS(1189), - [sym_true] = ACTIONS(1187), - [sym_false] = ACTIONS(1187), - [anon_sym_NULL] = ACTIONS(1187), - [anon_sym_nullptr] = ACTIONS(1187), + [261] = { + [sym_identifier] = ACTIONS(1327), + [aux_sym_preproc_include_token1] = ACTIONS(1327), + [aux_sym_preproc_def_token1] = ACTIONS(1327), + [aux_sym_preproc_if_token1] = ACTIONS(1327), + [aux_sym_preproc_if_token2] = ACTIONS(1327), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1327), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1327), + [sym_preproc_directive] = ACTIONS(1327), + [anon_sym_LPAREN2] = ACTIONS(1329), + [anon_sym_BANG] = ACTIONS(1329), + [anon_sym_TILDE] = ACTIONS(1329), + [anon_sym_DASH] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1327), + [anon_sym_STAR] = ACTIONS(1329), + [anon_sym_AMP] = ACTIONS(1329), + [anon_sym_SEMI] = ACTIONS(1329), + [anon_sym___extension__] = ACTIONS(1327), + [anon_sym_typedef] = ACTIONS(1327), + [anon_sym_extern] = ACTIONS(1327), + [anon_sym___attribute__] = ACTIONS(1327), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1329), + [anon_sym___declspec] = ACTIONS(1327), + [anon_sym___cdecl] = ACTIONS(1327), + [anon_sym___clrcall] = ACTIONS(1327), + [anon_sym___stdcall] = ACTIONS(1327), + [anon_sym___fastcall] = ACTIONS(1327), + [anon_sym___thiscall] = ACTIONS(1327), + [anon_sym___vectorcall] = ACTIONS(1327), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_signed] = ACTIONS(1327), + [anon_sym_unsigned] = ACTIONS(1327), + [anon_sym_long] = ACTIONS(1327), + [anon_sym_short] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(1327), + [anon_sym_auto] = ACTIONS(1327), + [anon_sym_register] = ACTIONS(1327), + [anon_sym_inline] = ACTIONS(1327), + [anon_sym___inline] = ACTIONS(1327), + [anon_sym___inline__] = ACTIONS(1327), + [anon_sym___forceinline] = ACTIONS(1327), + [anon_sym_thread_local] = ACTIONS(1327), + [anon_sym___thread] = ACTIONS(1327), + [anon_sym_const] = ACTIONS(1327), + [anon_sym_constexpr] = ACTIONS(1327), + [anon_sym_volatile] = ACTIONS(1327), + [anon_sym_restrict] = ACTIONS(1327), + [anon_sym___restrict__] = ACTIONS(1327), + [anon_sym__Atomic] = ACTIONS(1327), + [anon_sym__Noreturn] = ACTIONS(1327), + [anon_sym_noreturn] = ACTIONS(1327), + [anon_sym_alignas] = ACTIONS(1327), + [anon_sym__Alignas] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1327), + [anon_sym_enum] = ACTIONS(1327), + [anon_sym_struct] = ACTIONS(1327), + [anon_sym_union] = ACTIONS(1327), + [anon_sym_if] = ACTIONS(1327), + [anon_sym_switch] = ACTIONS(1327), + [anon_sym_case] = ACTIONS(1327), + [anon_sym_default] = ACTIONS(1327), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_do] = ACTIONS(1327), + [anon_sym_for] = ACTIONS(1327), + [anon_sym_return] = ACTIONS(1327), + [anon_sym_break] = ACTIONS(1327), + [anon_sym_continue] = ACTIONS(1327), + [anon_sym_goto] = ACTIONS(1327), + [anon_sym___try] = ACTIONS(1327), + [anon_sym___leave] = ACTIONS(1327), + [anon_sym_DASH_DASH] = ACTIONS(1329), + [anon_sym_PLUS_PLUS] = ACTIONS(1329), + [anon_sym_sizeof] = ACTIONS(1327), + [anon_sym___alignof__] = ACTIONS(1327), + [anon_sym___alignof] = ACTIONS(1327), + [anon_sym__alignof] = ACTIONS(1327), + [anon_sym_alignof] = ACTIONS(1327), + [anon_sym__Alignof] = ACTIONS(1327), + [anon_sym_offsetof] = ACTIONS(1327), + [anon_sym__Generic] = ACTIONS(1327), + [anon_sym_asm] = ACTIONS(1327), + [anon_sym___asm__] = ACTIONS(1327), + [sym_number_literal] = ACTIONS(1329), + [anon_sym_L_SQUOTE] = ACTIONS(1329), + [anon_sym_u_SQUOTE] = ACTIONS(1329), + [anon_sym_U_SQUOTE] = ACTIONS(1329), + [anon_sym_u8_SQUOTE] = ACTIONS(1329), + [anon_sym_SQUOTE] = ACTIONS(1329), + [anon_sym_L_DQUOTE] = ACTIONS(1329), + [anon_sym_u_DQUOTE] = ACTIONS(1329), + [anon_sym_U_DQUOTE] = ACTIONS(1329), + [anon_sym_u8_DQUOTE] = ACTIONS(1329), + [anon_sym_DQUOTE] = ACTIONS(1329), + [sym_true] = ACTIONS(1327), + [sym_false] = ACTIONS(1327), + [anon_sym_NULL] = ACTIONS(1327), + [anon_sym_nullptr] = ACTIONS(1327), [sym_comment] = ACTIONS(3), }, - [302] = { - [sym_identifier] = ACTIONS(1183), - [aux_sym_preproc_include_token1] = ACTIONS(1183), - [aux_sym_preproc_def_token1] = ACTIONS(1183), - [aux_sym_preproc_if_token1] = ACTIONS(1183), - [aux_sym_preproc_if_token2] = ACTIONS(1183), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1183), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1183), - [sym_preproc_directive] = ACTIONS(1183), - [anon_sym_LPAREN2] = ACTIONS(1185), - [anon_sym_BANG] = ACTIONS(1185), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1183), - [anon_sym_STAR] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1185), - [anon_sym_SEMI] = ACTIONS(1185), - [anon_sym___extension__] = ACTIONS(1183), - [anon_sym_typedef] = ACTIONS(1183), - [anon_sym_extern] = ACTIONS(1183), - [anon_sym___attribute__] = ACTIONS(1183), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1185), - [anon_sym___declspec] = ACTIONS(1183), - [anon_sym___cdecl] = ACTIONS(1183), - [anon_sym___clrcall] = ACTIONS(1183), - [anon_sym___stdcall] = ACTIONS(1183), - [anon_sym___fastcall] = ACTIONS(1183), - [anon_sym___thiscall] = ACTIONS(1183), - [anon_sym___vectorcall] = ACTIONS(1183), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_signed] = ACTIONS(1183), - [anon_sym_unsigned] = ACTIONS(1183), - [anon_sym_long] = ACTIONS(1183), - [anon_sym_short] = ACTIONS(1183), - [anon_sym_static] = ACTIONS(1183), - [anon_sym_auto] = ACTIONS(1183), - [anon_sym_register] = ACTIONS(1183), - [anon_sym_inline] = ACTIONS(1183), - [anon_sym___inline] = ACTIONS(1183), - [anon_sym___inline__] = ACTIONS(1183), - [anon_sym___forceinline] = ACTIONS(1183), - [anon_sym_thread_local] = ACTIONS(1183), - [anon_sym___thread] = ACTIONS(1183), - [anon_sym_const] = ACTIONS(1183), - [anon_sym_constexpr] = ACTIONS(1183), - [anon_sym_volatile] = ACTIONS(1183), - [anon_sym_restrict] = ACTIONS(1183), - [anon_sym___restrict__] = ACTIONS(1183), - [anon_sym__Atomic] = ACTIONS(1183), - [anon_sym__Noreturn] = ACTIONS(1183), - [anon_sym_noreturn] = ACTIONS(1183), - [anon_sym_alignas] = ACTIONS(1183), - [anon_sym__Alignas] = ACTIONS(1183), - [sym_primitive_type] = ACTIONS(1183), - [anon_sym_enum] = ACTIONS(1183), - [anon_sym_struct] = ACTIONS(1183), - [anon_sym_union] = ACTIONS(1183), - [anon_sym_if] = ACTIONS(1183), - [anon_sym_else] = ACTIONS(1183), - [anon_sym_switch] = ACTIONS(1183), - [anon_sym_case] = ACTIONS(1183), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_while] = ACTIONS(1183), - [anon_sym_do] = ACTIONS(1183), - [anon_sym_for] = ACTIONS(1183), - [anon_sym_return] = ACTIONS(1183), - [anon_sym_break] = ACTIONS(1183), - [anon_sym_continue] = ACTIONS(1183), - [anon_sym_goto] = ACTIONS(1183), - [anon_sym___try] = ACTIONS(1183), - [anon_sym___leave] = ACTIONS(1183), - [anon_sym_DASH_DASH] = ACTIONS(1185), - [anon_sym_PLUS_PLUS] = ACTIONS(1185), - [anon_sym_sizeof] = ACTIONS(1183), - [anon_sym___alignof__] = ACTIONS(1183), - [anon_sym___alignof] = ACTIONS(1183), - [anon_sym__alignof] = ACTIONS(1183), - [anon_sym_alignof] = ACTIONS(1183), - [anon_sym__Alignof] = ACTIONS(1183), - [anon_sym_offsetof] = ACTIONS(1183), - [anon_sym__Generic] = ACTIONS(1183), - [anon_sym_asm] = ACTIONS(1183), - [anon_sym___asm__] = ACTIONS(1183), - [sym_number_literal] = ACTIONS(1185), - [anon_sym_L_SQUOTE] = ACTIONS(1185), - [anon_sym_u_SQUOTE] = ACTIONS(1185), - [anon_sym_U_SQUOTE] = ACTIONS(1185), - [anon_sym_u8_SQUOTE] = ACTIONS(1185), - [anon_sym_SQUOTE] = ACTIONS(1185), - [anon_sym_L_DQUOTE] = ACTIONS(1185), - [anon_sym_u_DQUOTE] = ACTIONS(1185), - [anon_sym_U_DQUOTE] = ACTIONS(1185), - [anon_sym_u8_DQUOTE] = ACTIONS(1185), - [anon_sym_DQUOTE] = ACTIONS(1185), - [sym_true] = ACTIONS(1183), - [sym_false] = ACTIONS(1183), - [anon_sym_NULL] = ACTIONS(1183), - [anon_sym_nullptr] = ACTIONS(1183), + [262] = { + [sym_identifier] = ACTIONS(1287), + [aux_sym_preproc_include_token1] = ACTIONS(1287), + [aux_sym_preproc_def_token1] = ACTIONS(1287), + [aux_sym_preproc_if_token1] = ACTIONS(1287), + [aux_sym_preproc_if_token2] = ACTIONS(1287), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1287), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1287), + [sym_preproc_directive] = ACTIONS(1287), + [anon_sym_LPAREN2] = ACTIONS(1289), + [anon_sym_BANG] = ACTIONS(1289), + [anon_sym_TILDE] = ACTIONS(1289), + [anon_sym_DASH] = ACTIONS(1287), + [anon_sym_PLUS] = ACTIONS(1287), + [anon_sym_STAR] = ACTIONS(1289), + [anon_sym_AMP] = ACTIONS(1289), + [anon_sym_SEMI] = ACTIONS(1289), + [anon_sym___extension__] = ACTIONS(1287), + [anon_sym_typedef] = ACTIONS(1287), + [anon_sym_extern] = ACTIONS(1287), + [anon_sym___attribute__] = ACTIONS(1287), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1289), + [anon_sym___declspec] = ACTIONS(1287), + [anon_sym___cdecl] = ACTIONS(1287), + [anon_sym___clrcall] = ACTIONS(1287), + [anon_sym___stdcall] = ACTIONS(1287), + [anon_sym___fastcall] = ACTIONS(1287), + [anon_sym___thiscall] = ACTIONS(1287), + [anon_sym___vectorcall] = ACTIONS(1287), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_signed] = ACTIONS(1287), + [anon_sym_unsigned] = ACTIONS(1287), + [anon_sym_long] = ACTIONS(1287), + [anon_sym_short] = ACTIONS(1287), + [anon_sym_static] = ACTIONS(1287), + [anon_sym_auto] = ACTIONS(1287), + [anon_sym_register] = ACTIONS(1287), + [anon_sym_inline] = ACTIONS(1287), + [anon_sym___inline] = ACTIONS(1287), + [anon_sym___inline__] = ACTIONS(1287), + [anon_sym___forceinline] = ACTIONS(1287), + [anon_sym_thread_local] = ACTIONS(1287), + [anon_sym___thread] = ACTIONS(1287), + [anon_sym_const] = ACTIONS(1287), + [anon_sym_constexpr] = ACTIONS(1287), + [anon_sym_volatile] = ACTIONS(1287), + [anon_sym_restrict] = ACTIONS(1287), + [anon_sym___restrict__] = ACTIONS(1287), + [anon_sym__Atomic] = ACTIONS(1287), + [anon_sym__Noreturn] = ACTIONS(1287), + [anon_sym_noreturn] = ACTIONS(1287), + [anon_sym_alignas] = ACTIONS(1287), + [anon_sym__Alignas] = ACTIONS(1287), + [sym_primitive_type] = ACTIONS(1287), + [anon_sym_enum] = ACTIONS(1287), + [anon_sym_struct] = ACTIONS(1287), + [anon_sym_union] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1287), + [anon_sym_switch] = ACTIONS(1287), + [anon_sym_case] = ACTIONS(1287), + [anon_sym_default] = ACTIONS(1287), + [anon_sym_while] = ACTIONS(1287), + [anon_sym_do] = ACTIONS(1287), + [anon_sym_for] = ACTIONS(1287), + [anon_sym_return] = ACTIONS(1287), + [anon_sym_break] = ACTIONS(1287), + [anon_sym_continue] = ACTIONS(1287), + [anon_sym_goto] = ACTIONS(1287), + [anon_sym___try] = ACTIONS(1287), + [anon_sym___leave] = ACTIONS(1287), + [anon_sym_DASH_DASH] = ACTIONS(1289), + [anon_sym_PLUS_PLUS] = ACTIONS(1289), + [anon_sym_sizeof] = ACTIONS(1287), + [anon_sym___alignof__] = ACTIONS(1287), + [anon_sym___alignof] = ACTIONS(1287), + [anon_sym__alignof] = ACTIONS(1287), + [anon_sym_alignof] = ACTIONS(1287), + [anon_sym__Alignof] = ACTIONS(1287), + [anon_sym_offsetof] = ACTIONS(1287), + [anon_sym__Generic] = ACTIONS(1287), + [anon_sym_asm] = ACTIONS(1287), + [anon_sym___asm__] = ACTIONS(1287), + [sym_number_literal] = ACTIONS(1289), + [anon_sym_L_SQUOTE] = ACTIONS(1289), + [anon_sym_u_SQUOTE] = ACTIONS(1289), + [anon_sym_U_SQUOTE] = ACTIONS(1289), + [anon_sym_u8_SQUOTE] = ACTIONS(1289), + [anon_sym_SQUOTE] = ACTIONS(1289), + [anon_sym_L_DQUOTE] = ACTIONS(1289), + [anon_sym_u_DQUOTE] = ACTIONS(1289), + [anon_sym_U_DQUOTE] = ACTIONS(1289), + [anon_sym_u8_DQUOTE] = ACTIONS(1289), + [anon_sym_DQUOTE] = ACTIONS(1289), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [anon_sym_NULL] = ACTIONS(1287), + [anon_sym_nullptr] = ACTIONS(1287), [sym_comment] = ACTIONS(3), }, - [303] = { - [sym_identifier] = ACTIONS(1123), - [aux_sym_preproc_include_token1] = ACTIONS(1123), - [aux_sym_preproc_def_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), - [sym_preproc_directive] = ACTIONS(1123), - [anon_sym_LPAREN2] = ACTIONS(1125), - [anon_sym_BANG] = ACTIONS(1125), - [anon_sym_TILDE] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym___extension__] = ACTIONS(1123), - [anon_sym_typedef] = ACTIONS(1123), - [anon_sym_extern] = ACTIONS(1123), - [anon_sym___attribute__] = ACTIONS(1123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), - [anon_sym___declspec] = ACTIONS(1123), - [anon_sym___cdecl] = ACTIONS(1123), - [anon_sym___clrcall] = ACTIONS(1123), - [anon_sym___stdcall] = ACTIONS(1123), - [anon_sym___fastcall] = ACTIONS(1123), - [anon_sym___thiscall] = ACTIONS(1123), - [anon_sym___vectorcall] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_RBRACE] = ACTIONS(1125), - [anon_sym_signed] = ACTIONS(1123), - [anon_sym_unsigned] = ACTIONS(1123), - [anon_sym_long] = ACTIONS(1123), - [anon_sym_short] = ACTIONS(1123), - [anon_sym_static] = ACTIONS(1123), - [anon_sym_auto] = ACTIONS(1123), - [anon_sym_register] = ACTIONS(1123), - [anon_sym_inline] = ACTIONS(1123), - [anon_sym___inline] = ACTIONS(1123), - [anon_sym___inline__] = ACTIONS(1123), - [anon_sym___forceinline] = ACTIONS(1123), - [anon_sym_thread_local] = ACTIONS(1123), - [anon_sym___thread] = ACTIONS(1123), - [anon_sym_const] = ACTIONS(1123), - [anon_sym_constexpr] = ACTIONS(1123), - [anon_sym_volatile] = ACTIONS(1123), - [anon_sym_restrict] = ACTIONS(1123), - [anon_sym___restrict__] = ACTIONS(1123), - [anon_sym__Atomic] = ACTIONS(1123), - [anon_sym__Noreturn] = ACTIONS(1123), - [anon_sym_noreturn] = ACTIONS(1123), - [anon_sym_alignas] = ACTIONS(1123), - [anon_sym__Alignas] = ACTIONS(1123), - [sym_primitive_type] = ACTIONS(1123), - [anon_sym_enum] = ACTIONS(1123), - [anon_sym_struct] = ACTIONS(1123), - [anon_sym_union] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1123), - [anon_sym_else] = ACTIONS(1123), - [anon_sym_switch] = ACTIONS(1123), - [anon_sym_case] = ACTIONS(1123), - [anon_sym_default] = ACTIONS(1123), - [anon_sym_while] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(1123), - [anon_sym_for] = ACTIONS(1123), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_break] = ACTIONS(1123), - [anon_sym_continue] = ACTIONS(1123), - [anon_sym_goto] = ACTIONS(1123), - [anon_sym___try] = ACTIONS(1123), - [anon_sym___leave] = ACTIONS(1123), - [anon_sym_DASH_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1125), - [anon_sym_sizeof] = ACTIONS(1123), - [anon_sym___alignof__] = ACTIONS(1123), - [anon_sym___alignof] = ACTIONS(1123), - [anon_sym__alignof] = ACTIONS(1123), - [anon_sym_alignof] = ACTIONS(1123), - [anon_sym__Alignof] = ACTIONS(1123), - [anon_sym_offsetof] = ACTIONS(1123), - [anon_sym__Generic] = ACTIONS(1123), - [anon_sym_asm] = ACTIONS(1123), - [anon_sym___asm__] = ACTIONS(1123), - [sym_number_literal] = ACTIONS(1125), - [anon_sym_L_SQUOTE] = ACTIONS(1125), - [anon_sym_u_SQUOTE] = ACTIONS(1125), - [anon_sym_U_SQUOTE] = ACTIONS(1125), - [anon_sym_u8_SQUOTE] = ACTIONS(1125), - [anon_sym_SQUOTE] = ACTIONS(1125), - [anon_sym_L_DQUOTE] = ACTIONS(1125), - [anon_sym_u_DQUOTE] = ACTIONS(1125), - [anon_sym_U_DQUOTE] = ACTIONS(1125), - [anon_sym_u8_DQUOTE] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(1125), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [anon_sym_NULL] = ACTIONS(1123), - [anon_sym_nullptr] = ACTIONS(1123), + [263] = { + [sym_identifier] = ACTIONS(1323), + [aux_sym_preproc_include_token1] = ACTIONS(1323), + [aux_sym_preproc_def_token1] = ACTIONS(1323), + [aux_sym_preproc_if_token1] = ACTIONS(1323), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1323), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1323), + [sym_preproc_directive] = ACTIONS(1323), + [anon_sym_LPAREN2] = ACTIONS(1325), + [anon_sym_BANG] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1325), + [anon_sym_DASH] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1323), + [anon_sym_STAR] = ACTIONS(1325), + [anon_sym_AMP] = ACTIONS(1325), + [anon_sym_SEMI] = ACTIONS(1325), + [anon_sym___extension__] = ACTIONS(1323), + [anon_sym_typedef] = ACTIONS(1323), + [anon_sym_extern] = ACTIONS(1323), + [anon_sym___attribute__] = ACTIONS(1323), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym___declspec] = ACTIONS(1323), + [anon_sym___cdecl] = ACTIONS(1323), + [anon_sym___clrcall] = ACTIONS(1323), + [anon_sym___stdcall] = ACTIONS(1323), + [anon_sym___fastcall] = ACTIONS(1323), + [anon_sym___thiscall] = ACTIONS(1323), + [anon_sym___vectorcall] = ACTIONS(1323), + [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_RBRACE] = ACTIONS(1325), + [anon_sym_signed] = ACTIONS(1323), + [anon_sym_unsigned] = ACTIONS(1323), + [anon_sym_long] = ACTIONS(1323), + [anon_sym_short] = ACTIONS(1323), + [anon_sym_static] = ACTIONS(1323), + [anon_sym_auto] = ACTIONS(1323), + [anon_sym_register] = ACTIONS(1323), + [anon_sym_inline] = ACTIONS(1323), + [anon_sym___inline] = ACTIONS(1323), + [anon_sym___inline__] = ACTIONS(1323), + [anon_sym___forceinline] = ACTIONS(1323), + [anon_sym_thread_local] = ACTIONS(1323), + [anon_sym___thread] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_constexpr] = ACTIONS(1323), + [anon_sym_volatile] = ACTIONS(1323), + [anon_sym_restrict] = ACTIONS(1323), + [anon_sym___restrict__] = ACTIONS(1323), + [anon_sym__Atomic] = ACTIONS(1323), + [anon_sym__Noreturn] = ACTIONS(1323), + [anon_sym_noreturn] = ACTIONS(1323), + [anon_sym_alignas] = ACTIONS(1323), + [anon_sym__Alignas] = ACTIONS(1323), + [sym_primitive_type] = ACTIONS(1323), + [anon_sym_enum] = ACTIONS(1323), + [anon_sym_struct] = ACTIONS(1323), + [anon_sym_union] = ACTIONS(1323), + [anon_sym_if] = ACTIONS(1323), + [anon_sym_switch] = ACTIONS(1323), + [anon_sym_case] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1323), + [anon_sym_while] = ACTIONS(1323), + [anon_sym_do] = ACTIONS(1323), + [anon_sym_for] = ACTIONS(1323), + [anon_sym_return] = ACTIONS(1323), + [anon_sym_break] = ACTIONS(1323), + [anon_sym_continue] = ACTIONS(1323), + [anon_sym_goto] = ACTIONS(1323), + [anon_sym___try] = ACTIONS(1323), + [anon_sym___leave] = ACTIONS(1323), + [anon_sym_DASH_DASH] = ACTIONS(1325), + [anon_sym_PLUS_PLUS] = ACTIONS(1325), + [anon_sym_sizeof] = ACTIONS(1323), + [anon_sym___alignof__] = ACTIONS(1323), + [anon_sym___alignof] = ACTIONS(1323), + [anon_sym__alignof] = ACTIONS(1323), + [anon_sym_alignof] = ACTIONS(1323), + [anon_sym__Alignof] = ACTIONS(1323), + [anon_sym_offsetof] = ACTIONS(1323), + [anon_sym__Generic] = ACTIONS(1323), + [anon_sym_asm] = ACTIONS(1323), + [anon_sym___asm__] = ACTIONS(1323), + [sym_number_literal] = ACTIONS(1325), + [anon_sym_L_SQUOTE] = ACTIONS(1325), + [anon_sym_u_SQUOTE] = ACTIONS(1325), + [anon_sym_U_SQUOTE] = ACTIONS(1325), + [anon_sym_u8_SQUOTE] = ACTIONS(1325), + [anon_sym_SQUOTE] = ACTIONS(1325), + [anon_sym_L_DQUOTE] = ACTIONS(1325), + [anon_sym_u_DQUOTE] = ACTIONS(1325), + [anon_sym_U_DQUOTE] = ACTIONS(1325), + [anon_sym_u8_DQUOTE] = ACTIONS(1325), + [anon_sym_DQUOTE] = ACTIONS(1325), + [sym_true] = ACTIONS(1323), + [sym_false] = ACTIONS(1323), + [anon_sym_NULL] = ACTIONS(1323), + [anon_sym_nullptr] = ACTIONS(1323), [sym_comment] = ACTIONS(3), }, - [304] = { - [sym_identifier] = ACTIONS(1175), - [aux_sym_preproc_include_token1] = ACTIONS(1175), - [aux_sym_preproc_def_token1] = ACTIONS(1175), - [aux_sym_preproc_if_token1] = ACTIONS(1175), - [aux_sym_preproc_if_token2] = ACTIONS(1175), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1175), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1175), - [sym_preproc_directive] = ACTIONS(1175), - [anon_sym_LPAREN2] = ACTIONS(1177), - [anon_sym_BANG] = ACTIONS(1177), - [anon_sym_TILDE] = ACTIONS(1177), - [anon_sym_DASH] = ACTIONS(1175), - [anon_sym_PLUS] = ACTIONS(1175), - [anon_sym_STAR] = ACTIONS(1177), - [anon_sym_AMP] = ACTIONS(1177), - [anon_sym_SEMI] = ACTIONS(1177), - [anon_sym___extension__] = ACTIONS(1175), - [anon_sym_typedef] = ACTIONS(1175), - [anon_sym_extern] = ACTIONS(1175), - [anon_sym___attribute__] = ACTIONS(1175), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1177), - [anon_sym___declspec] = ACTIONS(1175), - [anon_sym___cdecl] = ACTIONS(1175), - [anon_sym___clrcall] = ACTIONS(1175), - [anon_sym___stdcall] = ACTIONS(1175), - [anon_sym___fastcall] = ACTIONS(1175), - [anon_sym___thiscall] = ACTIONS(1175), - [anon_sym___vectorcall] = ACTIONS(1175), - [anon_sym_LBRACE] = ACTIONS(1177), - [anon_sym_signed] = ACTIONS(1175), - [anon_sym_unsigned] = ACTIONS(1175), - [anon_sym_long] = ACTIONS(1175), - [anon_sym_short] = ACTIONS(1175), - [anon_sym_static] = ACTIONS(1175), - [anon_sym_auto] = ACTIONS(1175), - [anon_sym_register] = ACTIONS(1175), - [anon_sym_inline] = ACTIONS(1175), - [anon_sym___inline] = ACTIONS(1175), - [anon_sym___inline__] = ACTIONS(1175), - [anon_sym___forceinline] = ACTIONS(1175), - [anon_sym_thread_local] = ACTIONS(1175), - [anon_sym___thread] = ACTIONS(1175), - [anon_sym_const] = ACTIONS(1175), - [anon_sym_constexpr] = ACTIONS(1175), - [anon_sym_volatile] = ACTIONS(1175), - [anon_sym_restrict] = ACTIONS(1175), - [anon_sym___restrict__] = ACTIONS(1175), - [anon_sym__Atomic] = ACTIONS(1175), - [anon_sym__Noreturn] = ACTIONS(1175), - [anon_sym_noreturn] = ACTIONS(1175), - [anon_sym_alignas] = ACTIONS(1175), - [anon_sym__Alignas] = ACTIONS(1175), - [sym_primitive_type] = ACTIONS(1175), - [anon_sym_enum] = ACTIONS(1175), - [anon_sym_struct] = ACTIONS(1175), - [anon_sym_union] = ACTIONS(1175), - [anon_sym_if] = ACTIONS(1175), - [anon_sym_else] = ACTIONS(1175), - [anon_sym_switch] = ACTIONS(1175), - [anon_sym_case] = ACTIONS(1175), - [anon_sym_default] = ACTIONS(1175), - [anon_sym_while] = ACTIONS(1175), - [anon_sym_do] = ACTIONS(1175), - [anon_sym_for] = ACTIONS(1175), - [anon_sym_return] = ACTIONS(1175), - [anon_sym_break] = ACTIONS(1175), - [anon_sym_continue] = ACTIONS(1175), - [anon_sym_goto] = ACTIONS(1175), - [anon_sym___try] = ACTIONS(1175), - [anon_sym___leave] = ACTIONS(1175), - [anon_sym_DASH_DASH] = ACTIONS(1177), - [anon_sym_PLUS_PLUS] = ACTIONS(1177), - [anon_sym_sizeof] = ACTIONS(1175), - [anon_sym___alignof__] = ACTIONS(1175), - [anon_sym___alignof] = ACTIONS(1175), - [anon_sym__alignof] = ACTIONS(1175), - [anon_sym_alignof] = ACTIONS(1175), - [anon_sym__Alignof] = ACTIONS(1175), - [anon_sym_offsetof] = ACTIONS(1175), - [anon_sym__Generic] = ACTIONS(1175), - [anon_sym_asm] = ACTIONS(1175), - [anon_sym___asm__] = ACTIONS(1175), - [sym_number_literal] = ACTIONS(1177), - [anon_sym_L_SQUOTE] = ACTIONS(1177), - [anon_sym_u_SQUOTE] = ACTIONS(1177), - [anon_sym_U_SQUOTE] = ACTIONS(1177), - [anon_sym_u8_SQUOTE] = ACTIONS(1177), - [anon_sym_SQUOTE] = ACTIONS(1177), - [anon_sym_L_DQUOTE] = ACTIONS(1177), - [anon_sym_u_DQUOTE] = ACTIONS(1177), - [anon_sym_U_DQUOTE] = ACTIONS(1177), - [anon_sym_u8_DQUOTE] = ACTIONS(1177), - [anon_sym_DQUOTE] = ACTIONS(1177), - [sym_true] = ACTIONS(1175), - [sym_false] = ACTIONS(1175), - [anon_sym_NULL] = ACTIONS(1175), - [anon_sym_nullptr] = ACTIONS(1175), - [sym_comment] = ACTIONS(3), - }, - [305] = { - [sym_identifier] = ACTIONS(1123), - [aux_sym_preproc_include_token1] = ACTIONS(1123), - [aux_sym_preproc_def_token1] = ACTIONS(1123), - [aux_sym_preproc_if_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), - [sym_preproc_directive] = ACTIONS(1123), - [anon_sym_LPAREN2] = ACTIONS(1125), - [anon_sym_BANG] = ACTIONS(1125), - [anon_sym_TILDE] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1123), - [anon_sym_PLUS] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1125), - [anon_sym___extension__] = ACTIONS(1123), - [anon_sym_typedef] = ACTIONS(1123), - [anon_sym_extern] = ACTIONS(1123), - [anon_sym___attribute__] = ACTIONS(1123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), - [anon_sym___declspec] = ACTIONS(1123), - [anon_sym___cdecl] = ACTIONS(1123), - [anon_sym___clrcall] = ACTIONS(1123), - [anon_sym___stdcall] = ACTIONS(1123), - [anon_sym___fastcall] = ACTIONS(1123), - [anon_sym___thiscall] = ACTIONS(1123), - [anon_sym___vectorcall] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_RBRACE] = ACTIONS(1125), - [anon_sym_signed] = ACTIONS(1123), - [anon_sym_unsigned] = ACTIONS(1123), - [anon_sym_long] = ACTIONS(1123), - [anon_sym_short] = ACTIONS(1123), - [anon_sym_static] = ACTIONS(1123), - [anon_sym_auto] = ACTIONS(1123), - [anon_sym_register] = ACTIONS(1123), - [anon_sym_inline] = ACTIONS(1123), - [anon_sym___inline] = ACTIONS(1123), - [anon_sym___inline__] = ACTIONS(1123), - [anon_sym___forceinline] = ACTIONS(1123), - [anon_sym_thread_local] = ACTIONS(1123), - [anon_sym___thread] = ACTIONS(1123), - [anon_sym_const] = ACTIONS(1123), - [anon_sym_constexpr] = ACTIONS(1123), - [anon_sym_volatile] = ACTIONS(1123), - [anon_sym_restrict] = ACTIONS(1123), - [anon_sym___restrict__] = ACTIONS(1123), - [anon_sym__Atomic] = ACTIONS(1123), - [anon_sym__Noreturn] = ACTIONS(1123), - [anon_sym_noreturn] = ACTIONS(1123), - [anon_sym_alignas] = ACTIONS(1123), - [anon_sym__Alignas] = ACTIONS(1123), - [sym_primitive_type] = ACTIONS(1123), - [anon_sym_enum] = ACTIONS(1123), - [anon_sym_struct] = ACTIONS(1123), - [anon_sym_union] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1123), - [anon_sym_else] = ACTIONS(1123), - [anon_sym_switch] = ACTIONS(1123), - [anon_sym_case] = ACTIONS(1123), - [anon_sym_default] = ACTIONS(1123), - [anon_sym_while] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(1123), - [anon_sym_for] = ACTIONS(1123), - [anon_sym_return] = ACTIONS(1123), - [anon_sym_break] = ACTIONS(1123), - [anon_sym_continue] = ACTIONS(1123), - [anon_sym_goto] = ACTIONS(1123), - [anon_sym___try] = ACTIONS(1123), - [anon_sym___leave] = ACTIONS(1123), - [anon_sym_DASH_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1125), - [anon_sym_sizeof] = ACTIONS(1123), - [anon_sym___alignof__] = ACTIONS(1123), - [anon_sym___alignof] = ACTIONS(1123), - [anon_sym__alignof] = ACTIONS(1123), - [anon_sym_alignof] = ACTIONS(1123), - [anon_sym__Alignof] = ACTIONS(1123), - [anon_sym_offsetof] = ACTIONS(1123), - [anon_sym__Generic] = ACTIONS(1123), - [anon_sym_asm] = ACTIONS(1123), - [anon_sym___asm__] = ACTIONS(1123), - [sym_number_literal] = ACTIONS(1125), - [anon_sym_L_SQUOTE] = ACTIONS(1125), - [anon_sym_u_SQUOTE] = ACTIONS(1125), - [anon_sym_U_SQUOTE] = ACTIONS(1125), - [anon_sym_u8_SQUOTE] = ACTIONS(1125), - [anon_sym_SQUOTE] = ACTIONS(1125), - [anon_sym_L_DQUOTE] = ACTIONS(1125), - [anon_sym_u_DQUOTE] = ACTIONS(1125), - [anon_sym_U_DQUOTE] = ACTIONS(1125), - [anon_sym_u8_DQUOTE] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(1125), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [anon_sym_NULL] = ACTIONS(1123), - [anon_sym_nullptr] = ACTIONS(1123), + [264] = { + [sym_identifier] = ACTIONS(1311), + [aux_sym_preproc_include_token1] = ACTIONS(1311), + [aux_sym_preproc_def_token1] = ACTIONS(1311), + [aux_sym_preproc_if_token1] = ACTIONS(1311), + [aux_sym_preproc_if_token2] = ACTIONS(1311), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1311), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1311), + [sym_preproc_directive] = ACTIONS(1311), + [anon_sym_LPAREN2] = ACTIONS(1313), + [anon_sym_BANG] = ACTIONS(1313), + [anon_sym_TILDE] = ACTIONS(1313), + [anon_sym_DASH] = ACTIONS(1311), + [anon_sym_PLUS] = ACTIONS(1311), + [anon_sym_STAR] = ACTIONS(1313), + [anon_sym_AMP] = ACTIONS(1313), + [anon_sym_SEMI] = ACTIONS(1313), + [anon_sym___extension__] = ACTIONS(1311), + [anon_sym_typedef] = ACTIONS(1311), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym___attribute__] = ACTIONS(1311), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1313), + [anon_sym___declspec] = ACTIONS(1311), + [anon_sym___cdecl] = ACTIONS(1311), + [anon_sym___clrcall] = ACTIONS(1311), + [anon_sym___stdcall] = ACTIONS(1311), + [anon_sym___fastcall] = ACTIONS(1311), + [anon_sym___thiscall] = ACTIONS(1311), + [anon_sym___vectorcall] = ACTIONS(1311), + [anon_sym_LBRACE] = ACTIONS(1313), + [anon_sym_signed] = ACTIONS(1311), + [anon_sym_unsigned] = ACTIONS(1311), + [anon_sym_long] = ACTIONS(1311), + [anon_sym_short] = ACTIONS(1311), + [anon_sym_static] = ACTIONS(1311), + [anon_sym_auto] = ACTIONS(1311), + [anon_sym_register] = ACTIONS(1311), + [anon_sym_inline] = ACTIONS(1311), + [anon_sym___inline] = ACTIONS(1311), + [anon_sym___inline__] = ACTIONS(1311), + [anon_sym___forceinline] = ACTIONS(1311), + [anon_sym_thread_local] = ACTIONS(1311), + [anon_sym___thread] = ACTIONS(1311), + [anon_sym_const] = ACTIONS(1311), + [anon_sym_constexpr] = ACTIONS(1311), + [anon_sym_volatile] = ACTIONS(1311), + [anon_sym_restrict] = ACTIONS(1311), + [anon_sym___restrict__] = ACTIONS(1311), + [anon_sym__Atomic] = ACTIONS(1311), + [anon_sym__Noreturn] = ACTIONS(1311), + [anon_sym_noreturn] = ACTIONS(1311), + [anon_sym_alignas] = ACTIONS(1311), + [anon_sym__Alignas] = ACTIONS(1311), + [sym_primitive_type] = ACTIONS(1311), + [anon_sym_enum] = ACTIONS(1311), + [anon_sym_struct] = ACTIONS(1311), + [anon_sym_union] = ACTIONS(1311), + [anon_sym_if] = ACTIONS(1311), + [anon_sym_switch] = ACTIONS(1311), + [anon_sym_case] = ACTIONS(1311), + [anon_sym_default] = ACTIONS(1311), + [anon_sym_while] = ACTIONS(1311), + [anon_sym_do] = ACTIONS(1311), + [anon_sym_for] = ACTIONS(1311), + [anon_sym_return] = ACTIONS(1311), + [anon_sym_break] = ACTIONS(1311), + [anon_sym_continue] = ACTIONS(1311), + [anon_sym_goto] = ACTIONS(1311), + [anon_sym___try] = ACTIONS(1311), + [anon_sym___leave] = ACTIONS(1311), + [anon_sym_DASH_DASH] = ACTIONS(1313), + [anon_sym_PLUS_PLUS] = ACTIONS(1313), + [anon_sym_sizeof] = ACTIONS(1311), + [anon_sym___alignof__] = ACTIONS(1311), + [anon_sym___alignof] = ACTIONS(1311), + [anon_sym__alignof] = ACTIONS(1311), + [anon_sym_alignof] = ACTIONS(1311), + [anon_sym__Alignof] = ACTIONS(1311), + [anon_sym_offsetof] = ACTIONS(1311), + [anon_sym__Generic] = ACTIONS(1311), + [anon_sym_asm] = ACTIONS(1311), + [anon_sym___asm__] = ACTIONS(1311), + [sym_number_literal] = ACTIONS(1313), + [anon_sym_L_SQUOTE] = ACTIONS(1313), + [anon_sym_u_SQUOTE] = ACTIONS(1313), + [anon_sym_U_SQUOTE] = ACTIONS(1313), + [anon_sym_u8_SQUOTE] = ACTIONS(1313), + [anon_sym_SQUOTE] = ACTIONS(1313), + [anon_sym_L_DQUOTE] = ACTIONS(1313), + [anon_sym_u_DQUOTE] = ACTIONS(1313), + [anon_sym_U_DQUOTE] = ACTIONS(1313), + [anon_sym_u8_DQUOTE] = ACTIONS(1313), + [anon_sym_DQUOTE] = ACTIONS(1313), + [sym_true] = ACTIONS(1311), + [sym_false] = ACTIONS(1311), + [anon_sym_NULL] = ACTIONS(1311), + [anon_sym_nullptr] = ACTIONS(1311), [sym_comment] = ACTIONS(3), }, - [306] = { - [ts_builtin_sym_end] = ACTIONS(1225), - [sym_identifier] = ACTIONS(1223), - [aux_sym_preproc_include_token1] = ACTIONS(1223), - [aux_sym_preproc_def_token1] = ACTIONS(1223), - [aux_sym_preproc_if_token1] = ACTIONS(1223), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1223), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1223), - [sym_preproc_directive] = ACTIONS(1223), - [anon_sym_LPAREN2] = ACTIONS(1225), - [anon_sym_BANG] = ACTIONS(1225), - [anon_sym_TILDE] = ACTIONS(1225), - [anon_sym_DASH] = ACTIONS(1223), - [anon_sym_PLUS] = ACTIONS(1223), - [anon_sym_STAR] = ACTIONS(1225), - [anon_sym_AMP] = ACTIONS(1225), - [anon_sym_SEMI] = ACTIONS(1225), - [anon_sym___extension__] = ACTIONS(1223), - [anon_sym_typedef] = ACTIONS(1223), - [anon_sym_extern] = ACTIONS(1223), - [anon_sym___attribute__] = ACTIONS(1223), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1225), - [anon_sym___declspec] = ACTIONS(1223), - [anon_sym___cdecl] = ACTIONS(1223), - [anon_sym___clrcall] = ACTIONS(1223), - [anon_sym___stdcall] = ACTIONS(1223), - [anon_sym___fastcall] = ACTIONS(1223), - [anon_sym___thiscall] = ACTIONS(1223), - [anon_sym___vectorcall] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_signed] = ACTIONS(1223), - [anon_sym_unsigned] = ACTIONS(1223), - [anon_sym_long] = ACTIONS(1223), - [anon_sym_short] = ACTIONS(1223), - [anon_sym_static] = ACTIONS(1223), - [anon_sym_auto] = ACTIONS(1223), - [anon_sym_register] = ACTIONS(1223), - [anon_sym_inline] = ACTIONS(1223), - [anon_sym___inline] = ACTIONS(1223), - [anon_sym___inline__] = ACTIONS(1223), - [anon_sym___forceinline] = ACTIONS(1223), - [anon_sym_thread_local] = ACTIONS(1223), - [anon_sym___thread] = ACTIONS(1223), - [anon_sym_const] = ACTIONS(1223), - [anon_sym_constexpr] = ACTIONS(1223), - [anon_sym_volatile] = ACTIONS(1223), - [anon_sym_restrict] = ACTIONS(1223), - [anon_sym___restrict__] = ACTIONS(1223), - [anon_sym__Atomic] = ACTIONS(1223), - [anon_sym__Noreturn] = ACTIONS(1223), - [anon_sym_noreturn] = ACTIONS(1223), - [anon_sym_alignas] = ACTIONS(1223), - [anon_sym__Alignas] = ACTIONS(1223), - [sym_primitive_type] = ACTIONS(1223), - [anon_sym_enum] = ACTIONS(1223), - [anon_sym_struct] = ACTIONS(1223), - [anon_sym_union] = ACTIONS(1223), - [anon_sym_if] = ACTIONS(1223), - [anon_sym_else] = ACTIONS(1223), - [anon_sym_switch] = ACTIONS(1223), - [anon_sym_case] = ACTIONS(1223), - [anon_sym_default] = ACTIONS(1223), - [anon_sym_while] = ACTIONS(1223), - [anon_sym_do] = ACTIONS(1223), - [anon_sym_for] = ACTIONS(1223), - [anon_sym_return] = ACTIONS(1223), - [anon_sym_break] = ACTIONS(1223), - [anon_sym_continue] = ACTIONS(1223), - [anon_sym_goto] = ACTIONS(1223), - [anon_sym___try] = ACTIONS(1223), - [anon_sym___leave] = ACTIONS(1223), - [anon_sym_DASH_DASH] = ACTIONS(1225), - [anon_sym_PLUS_PLUS] = ACTIONS(1225), - [anon_sym_sizeof] = ACTIONS(1223), - [anon_sym___alignof__] = ACTIONS(1223), - [anon_sym___alignof] = ACTIONS(1223), - [anon_sym__alignof] = ACTIONS(1223), - [anon_sym_alignof] = ACTIONS(1223), - [anon_sym__Alignof] = ACTIONS(1223), - [anon_sym_offsetof] = ACTIONS(1223), - [anon_sym__Generic] = ACTIONS(1223), - [anon_sym_asm] = ACTIONS(1223), - [anon_sym___asm__] = ACTIONS(1223), - [sym_number_literal] = ACTIONS(1225), - [anon_sym_L_SQUOTE] = ACTIONS(1225), - [anon_sym_u_SQUOTE] = ACTIONS(1225), - [anon_sym_U_SQUOTE] = ACTIONS(1225), - [anon_sym_u8_SQUOTE] = ACTIONS(1225), - [anon_sym_SQUOTE] = ACTIONS(1225), - [anon_sym_L_DQUOTE] = ACTIONS(1225), - [anon_sym_u_DQUOTE] = ACTIONS(1225), - [anon_sym_U_DQUOTE] = ACTIONS(1225), - [anon_sym_u8_DQUOTE] = ACTIONS(1225), - [anon_sym_DQUOTE] = ACTIONS(1225), - [sym_true] = ACTIONS(1223), - [sym_false] = ACTIONS(1223), - [anon_sym_NULL] = ACTIONS(1223), - [anon_sym_nullptr] = ACTIONS(1223), + [265] = { + [sym_identifier] = ACTIONS(1315), + [aux_sym_preproc_include_token1] = ACTIONS(1315), + [aux_sym_preproc_def_token1] = ACTIONS(1315), + [aux_sym_preproc_if_token1] = ACTIONS(1315), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1315), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1315), + [sym_preproc_directive] = ACTIONS(1315), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_DASH] = ACTIONS(1315), + [anon_sym_PLUS] = ACTIONS(1315), + [anon_sym_STAR] = ACTIONS(1317), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_SEMI] = ACTIONS(1317), + [anon_sym___extension__] = ACTIONS(1315), + [anon_sym_typedef] = ACTIONS(1315), + [anon_sym_extern] = ACTIONS(1315), + [anon_sym___attribute__] = ACTIONS(1315), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1317), + [anon_sym___declspec] = ACTIONS(1315), + [anon_sym___cdecl] = ACTIONS(1315), + [anon_sym___clrcall] = ACTIONS(1315), + [anon_sym___stdcall] = ACTIONS(1315), + [anon_sym___fastcall] = ACTIONS(1315), + [anon_sym___thiscall] = ACTIONS(1315), + [anon_sym___vectorcall] = ACTIONS(1315), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_RBRACE] = ACTIONS(1317), + [anon_sym_signed] = ACTIONS(1315), + [anon_sym_unsigned] = ACTIONS(1315), + [anon_sym_long] = ACTIONS(1315), + [anon_sym_short] = ACTIONS(1315), + [anon_sym_static] = ACTIONS(1315), + [anon_sym_auto] = ACTIONS(1315), + [anon_sym_register] = ACTIONS(1315), + [anon_sym_inline] = ACTIONS(1315), + [anon_sym___inline] = ACTIONS(1315), + [anon_sym___inline__] = ACTIONS(1315), + [anon_sym___forceinline] = ACTIONS(1315), + [anon_sym_thread_local] = ACTIONS(1315), + [anon_sym___thread] = ACTIONS(1315), + [anon_sym_const] = ACTIONS(1315), + [anon_sym_constexpr] = ACTIONS(1315), + [anon_sym_volatile] = ACTIONS(1315), + [anon_sym_restrict] = ACTIONS(1315), + [anon_sym___restrict__] = ACTIONS(1315), + [anon_sym__Atomic] = ACTIONS(1315), + [anon_sym__Noreturn] = ACTIONS(1315), + [anon_sym_noreturn] = ACTIONS(1315), + [anon_sym_alignas] = ACTIONS(1315), + [anon_sym__Alignas] = ACTIONS(1315), + [sym_primitive_type] = ACTIONS(1315), + [anon_sym_enum] = ACTIONS(1315), + [anon_sym_struct] = ACTIONS(1315), + [anon_sym_union] = ACTIONS(1315), + [anon_sym_if] = ACTIONS(1315), + [anon_sym_switch] = ACTIONS(1315), + [anon_sym_case] = ACTIONS(1315), + [anon_sym_default] = ACTIONS(1315), + [anon_sym_while] = ACTIONS(1315), + [anon_sym_do] = ACTIONS(1315), + [anon_sym_for] = ACTIONS(1315), + [anon_sym_return] = ACTIONS(1315), + [anon_sym_break] = ACTIONS(1315), + [anon_sym_continue] = ACTIONS(1315), + [anon_sym_goto] = ACTIONS(1315), + [anon_sym___try] = ACTIONS(1315), + [anon_sym___leave] = ACTIONS(1315), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_sizeof] = ACTIONS(1315), + [anon_sym___alignof__] = ACTIONS(1315), + [anon_sym___alignof] = ACTIONS(1315), + [anon_sym__alignof] = ACTIONS(1315), + [anon_sym_alignof] = ACTIONS(1315), + [anon_sym__Alignof] = ACTIONS(1315), + [anon_sym_offsetof] = ACTIONS(1315), + [anon_sym__Generic] = ACTIONS(1315), + [anon_sym_asm] = ACTIONS(1315), + [anon_sym___asm__] = ACTIONS(1315), + [sym_number_literal] = ACTIONS(1317), + [anon_sym_L_SQUOTE] = ACTIONS(1317), + [anon_sym_u_SQUOTE] = ACTIONS(1317), + [anon_sym_U_SQUOTE] = ACTIONS(1317), + [anon_sym_u8_SQUOTE] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(1317), + [anon_sym_L_DQUOTE] = ACTIONS(1317), + [anon_sym_u_DQUOTE] = ACTIONS(1317), + [anon_sym_U_DQUOTE] = ACTIONS(1317), + [anon_sym_u8_DQUOTE] = ACTIONS(1317), + [anon_sym_DQUOTE] = ACTIONS(1317), + [sym_true] = ACTIONS(1315), + [sym_false] = ACTIONS(1315), + [anon_sym_NULL] = ACTIONS(1315), + [anon_sym_nullptr] = ACTIONS(1315), [sym_comment] = ACTIONS(3), }, - [307] = { - [sym_identifier] = ACTIONS(1339), - [aux_sym_preproc_include_token1] = ACTIONS(1339), - [aux_sym_preproc_def_token1] = ACTIONS(1339), - [aux_sym_preproc_if_token1] = ACTIONS(1339), - [aux_sym_preproc_if_token2] = ACTIONS(1339), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1339), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1339), - [sym_preproc_directive] = ACTIONS(1339), - [anon_sym_LPAREN2] = ACTIONS(1341), - [anon_sym_BANG] = ACTIONS(1341), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_DASH] = ACTIONS(1339), - [anon_sym_PLUS] = ACTIONS(1339), - [anon_sym_STAR] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(1341), - [anon_sym_SEMI] = ACTIONS(1341), - [anon_sym___extension__] = ACTIONS(1339), - [anon_sym_typedef] = ACTIONS(1339), - [anon_sym_extern] = ACTIONS(1339), - [anon_sym___attribute__] = ACTIONS(1339), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1341), - [anon_sym___declspec] = ACTIONS(1339), - [anon_sym___cdecl] = ACTIONS(1339), - [anon_sym___clrcall] = ACTIONS(1339), - [anon_sym___stdcall] = ACTIONS(1339), - [anon_sym___fastcall] = ACTIONS(1339), - [anon_sym___thiscall] = ACTIONS(1339), + [266] = { + [sym_identifier] = ACTIONS(1275), + [aux_sym_preproc_include_token1] = ACTIONS(1275), + [aux_sym_preproc_def_token1] = ACTIONS(1275), + [aux_sym_preproc_if_token1] = ACTIONS(1275), + [aux_sym_preproc_if_token2] = ACTIONS(1275), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1275), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1275), + [sym_preproc_directive] = ACTIONS(1275), + [anon_sym_LPAREN2] = ACTIONS(1277), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_TILDE] = ACTIONS(1277), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_PLUS] = ACTIONS(1275), + [anon_sym_STAR] = ACTIONS(1277), + [anon_sym_AMP] = ACTIONS(1277), + [anon_sym_SEMI] = ACTIONS(1277), + [anon_sym___extension__] = ACTIONS(1275), + [anon_sym_typedef] = ACTIONS(1275), + [anon_sym_extern] = ACTIONS(1275), + [anon_sym___attribute__] = ACTIONS(1275), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1277), + [anon_sym___declspec] = ACTIONS(1275), + [anon_sym___cdecl] = ACTIONS(1275), + [anon_sym___clrcall] = ACTIONS(1275), + [anon_sym___stdcall] = ACTIONS(1275), + [anon_sym___fastcall] = ACTIONS(1275), + [anon_sym___thiscall] = ACTIONS(1275), + [anon_sym___vectorcall] = ACTIONS(1275), + [anon_sym_LBRACE] = ACTIONS(1277), + [anon_sym_signed] = ACTIONS(1275), + [anon_sym_unsigned] = ACTIONS(1275), + [anon_sym_long] = ACTIONS(1275), + [anon_sym_short] = ACTIONS(1275), + [anon_sym_static] = ACTIONS(1275), + [anon_sym_auto] = ACTIONS(1275), + [anon_sym_register] = ACTIONS(1275), + [anon_sym_inline] = ACTIONS(1275), + [anon_sym___inline] = ACTIONS(1275), + [anon_sym___inline__] = ACTIONS(1275), + [anon_sym___forceinline] = ACTIONS(1275), + [anon_sym_thread_local] = ACTIONS(1275), + [anon_sym___thread] = ACTIONS(1275), + [anon_sym_const] = ACTIONS(1275), + [anon_sym_constexpr] = ACTIONS(1275), + [anon_sym_volatile] = ACTIONS(1275), + [anon_sym_restrict] = ACTIONS(1275), + [anon_sym___restrict__] = ACTIONS(1275), + [anon_sym__Atomic] = ACTIONS(1275), + [anon_sym__Noreturn] = ACTIONS(1275), + [anon_sym_noreturn] = ACTIONS(1275), + [anon_sym_alignas] = ACTIONS(1275), + [anon_sym__Alignas] = ACTIONS(1275), + [sym_primitive_type] = ACTIONS(1275), + [anon_sym_enum] = ACTIONS(1275), + [anon_sym_struct] = ACTIONS(1275), + [anon_sym_union] = ACTIONS(1275), + [anon_sym_if] = ACTIONS(1275), + [anon_sym_switch] = ACTIONS(1275), + [anon_sym_case] = ACTIONS(1275), + [anon_sym_default] = ACTIONS(1275), + [anon_sym_while] = ACTIONS(1275), + [anon_sym_do] = ACTIONS(1275), + [anon_sym_for] = ACTIONS(1275), + [anon_sym_return] = ACTIONS(1275), + [anon_sym_break] = ACTIONS(1275), + [anon_sym_continue] = ACTIONS(1275), + [anon_sym_goto] = ACTIONS(1275), + [anon_sym___try] = ACTIONS(1275), + [anon_sym___leave] = ACTIONS(1275), + [anon_sym_DASH_DASH] = ACTIONS(1277), + [anon_sym_PLUS_PLUS] = ACTIONS(1277), + [anon_sym_sizeof] = ACTIONS(1275), + [anon_sym___alignof__] = ACTIONS(1275), + [anon_sym___alignof] = ACTIONS(1275), + [anon_sym__alignof] = ACTIONS(1275), + [anon_sym_alignof] = ACTIONS(1275), + [anon_sym__Alignof] = ACTIONS(1275), + [anon_sym_offsetof] = ACTIONS(1275), + [anon_sym__Generic] = ACTIONS(1275), + [anon_sym_asm] = ACTIONS(1275), + [anon_sym___asm__] = ACTIONS(1275), + [sym_number_literal] = ACTIONS(1277), + [anon_sym_L_SQUOTE] = ACTIONS(1277), + [anon_sym_u_SQUOTE] = ACTIONS(1277), + [anon_sym_U_SQUOTE] = ACTIONS(1277), + [anon_sym_u8_SQUOTE] = ACTIONS(1277), + [anon_sym_SQUOTE] = ACTIONS(1277), + [anon_sym_L_DQUOTE] = ACTIONS(1277), + [anon_sym_u_DQUOTE] = ACTIONS(1277), + [anon_sym_U_DQUOTE] = ACTIONS(1277), + [anon_sym_u8_DQUOTE] = ACTIONS(1277), + [anon_sym_DQUOTE] = ACTIONS(1277), + [sym_true] = ACTIONS(1275), + [sym_false] = ACTIONS(1275), + [anon_sym_NULL] = ACTIONS(1275), + [anon_sym_nullptr] = ACTIONS(1275), + [sym_comment] = ACTIONS(3), + }, + [267] = { + [sym_identifier] = ACTIONS(1287), + [aux_sym_preproc_include_token1] = ACTIONS(1287), + [aux_sym_preproc_def_token1] = ACTIONS(1287), + [aux_sym_preproc_if_token1] = ACTIONS(1287), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1287), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1287), + [sym_preproc_directive] = ACTIONS(1287), + [anon_sym_LPAREN2] = ACTIONS(1289), + [anon_sym_BANG] = ACTIONS(1289), + [anon_sym_TILDE] = ACTIONS(1289), + [anon_sym_DASH] = ACTIONS(1287), + [anon_sym_PLUS] = ACTIONS(1287), + [anon_sym_STAR] = ACTIONS(1289), + [anon_sym_AMP] = ACTIONS(1289), + [anon_sym_SEMI] = ACTIONS(1289), + [anon_sym___extension__] = ACTIONS(1287), + [anon_sym_typedef] = ACTIONS(1287), + [anon_sym_extern] = ACTIONS(1287), + [anon_sym___attribute__] = ACTIONS(1287), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1289), + [anon_sym___declspec] = ACTIONS(1287), + [anon_sym___cdecl] = ACTIONS(1287), + [anon_sym___clrcall] = ACTIONS(1287), + [anon_sym___stdcall] = ACTIONS(1287), + [anon_sym___fastcall] = ACTIONS(1287), + [anon_sym___thiscall] = ACTIONS(1287), + [anon_sym___vectorcall] = ACTIONS(1287), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_RBRACE] = ACTIONS(1289), + [anon_sym_signed] = ACTIONS(1287), + [anon_sym_unsigned] = ACTIONS(1287), + [anon_sym_long] = ACTIONS(1287), + [anon_sym_short] = ACTIONS(1287), + [anon_sym_static] = ACTIONS(1287), + [anon_sym_auto] = ACTIONS(1287), + [anon_sym_register] = ACTIONS(1287), + [anon_sym_inline] = ACTIONS(1287), + [anon_sym___inline] = ACTIONS(1287), + [anon_sym___inline__] = ACTIONS(1287), + [anon_sym___forceinline] = ACTIONS(1287), + [anon_sym_thread_local] = ACTIONS(1287), + [anon_sym___thread] = ACTIONS(1287), + [anon_sym_const] = ACTIONS(1287), + [anon_sym_constexpr] = ACTIONS(1287), + [anon_sym_volatile] = ACTIONS(1287), + [anon_sym_restrict] = ACTIONS(1287), + [anon_sym___restrict__] = ACTIONS(1287), + [anon_sym__Atomic] = ACTIONS(1287), + [anon_sym__Noreturn] = ACTIONS(1287), + [anon_sym_noreturn] = ACTIONS(1287), + [anon_sym_alignas] = ACTIONS(1287), + [anon_sym__Alignas] = ACTIONS(1287), + [sym_primitive_type] = ACTIONS(1287), + [anon_sym_enum] = ACTIONS(1287), + [anon_sym_struct] = ACTIONS(1287), + [anon_sym_union] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1287), + [anon_sym_switch] = ACTIONS(1287), + [anon_sym_case] = ACTIONS(1287), + [anon_sym_default] = ACTIONS(1287), + [anon_sym_while] = ACTIONS(1287), + [anon_sym_do] = ACTIONS(1287), + [anon_sym_for] = ACTIONS(1287), + [anon_sym_return] = ACTIONS(1287), + [anon_sym_break] = ACTIONS(1287), + [anon_sym_continue] = ACTIONS(1287), + [anon_sym_goto] = ACTIONS(1287), + [anon_sym___try] = ACTIONS(1287), + [anon_sym___leave] = ACTIONS(1287), + [anon_sym_DASH_DASH] = ACTIONS(1289), + [anon_sym_PLUS_PLUS] = ACTIONS(1289), + [anon_sym_sizeof] = ACTIONS(1287), + [anon_sym___alignof__] = ACTIONS(1287), + [anon_sym___alignof] = ACTIONS(1287), + [anon_sym__alignof] = ACTIONS(1287), + [anon_sym_alignof] = ACTIONS(1287), + [anon_sym__Alignof] = ACTIONS(1287), + [anon_sym_offsetof] = ACTIONS(1287), + [anon_sym__Generic] = ACTIONS(1287), + [anon_sym_asm] = ACTIONS(1287), + [anon_sym___asm__] = ACTIONS(1287), + [sym_number_literal] = ACTIONS(1289), + [anon_sym_L_SQUOTE] = ACTIONS(1289), + [anon_sym_u_SQUOTE] = ACTIONS(1289), + [anon_sym_U_SQUOTE] = ACTIONS(1289), + [anon_sym_u8_SQUOTE] = ACTIONS(1289), + [anon_sym_SQUOTE] = ACTIONS(1289), + [anon_sym_L_DQUOTE] = ACTIONS(1289), + [anon_sym_u_DQUOTE] = ACTIONS(1289), + [anon_sym_U_DQUOTE] = ACTIONS(1289), + [anon_sym_u8_DQUOTE] = ACTIONS(1289), + [anon_sym_DQUOTE] = ACTIONS(1289), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [anon_sym_NULL] = ACTIONS(1287), + [anon_sym_nullptr] = ACTIONS(1287), + [sym_comment] = ACTIONS(3), + }, + [268] = { + [sym_identifier] = ACTIONS(1295), + [aux_sym_preproc_include_token1] = ACTIONS(1295), + [aux_sym_preproc_def_token1] = ACTIONS(1295), + [aux_sym_preproc_if_token1] = ACTIONS(1295), + [aux_sym_preproc_if_token2] = ACTIONS(1295), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1295), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1295), + [sym_preproc_directive] = ACTIONS(1295), + [anon_sym_LPAREN2] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_TILDE] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1295), + [anon_sym_STAR] = ACTIONS(1297), + [anon_sym_AMP] = ACTIONS(1297), + [anon_sym_SEMI] = ACTIONS(1297), + [anon_sym___extension__] = ACTIONS(1295), + [anon_sym_typedef] = ACTIONS(1295), + [anon_sym_extern] = ACTIONS(1295), + [anon_sym___attribute__] = ACTIONS(1295), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1297), + [anon_sym___declspec] = ACTIONS(1295), + [anon_sym___cdecl] = ACTIONS(1295), + [anon_sym___clrcall] = ACTIONS(1295), + [anon_sym___stdcall] = ACTIONS(1295), + [anon_sym___fastcall] = ACTIONS(1295), + [anon_sym___thiscall] = ACTIONS(1295), + [anon_sym___vectorcall] = ACTIONS(1295), + [anon_sym_LBRACE] = ACTIONS(1297), + [anon_sym_signed] = ACTIONS(1295), + [anon_sym_unsigned] = ACTIONS(1295), + [anon_sym_long] = ACTIONS(1295), + [anon_sym_short] = ACTIONS(1295), + [anon_sym_static] = ACTIONS(1295), + [anon_sym_auto] = ACTIONS(1295), + [anon_sym_register] = ACTIONS(1295), + [anon_sym_inline] = ACTIONS(1295), + [anon_sym___inline] = ACTIONS(1295), + [anon_sym___inline__] = ACTIONS(1295), + [anon_sym___forceinline] = ACTIONS(1295), + [anon_sym_thread_local] = ACTIONS(1295), + [anon_sym___thread] = ACTIONS(1295), + [anon_sym_const] = ACTIONS(1295), + [anon_sym_constexpr] = ACTIONS(1295), + [anon_sym_volatile] = ACTIONS(1295), + [anon_sym_restrict] = ACTIONS(1295), + [anon_sym___restrict__] = ACTIONS(1295), + [anon_sym__Atomic] = ACTIONS(1295), + [anon_sym__Noreturn] = ACTIONS(1295), + [anon_sym_noreturn] = ACTIONS(1295), + [anon_sym_alignas] = ACTIONS(1295), + [anon_sym__Alignas] = ACTIONS(1295), + [sym_primitive_type] = ACTIONS(1295), + [anon_sym_enum] = ACTIONS(1295), + [anon_sym_struct] = ACTIONS(1295), + [anon_sym_union] = ACTIONS(1295), + [anon_sym_if] = ACTIONS(1295), + [anon_sym_switch] = ACTIONS(1295), + [anon_sym_case] = ACTIONS(1295), + [anon_sym_default] = ACTIONS(1295), + [anon_sym_while] = ACTIONS(1295), + [anon_sym_do] = ACTIONS(1295), + [anon_sym_for] = ACTIONS(1295), + [anon_sym_return] = ACTIONS(1295), + [anon_sym_break] = ACTIONS(1295), + [anon_sym_continue] = ACTIONS(1295), + [anon_sym_goto] = ACTIONS(1295), + [anon_sym___try] = ACTIONS(1295), + [anon_sym___leave] = ACTIONS(1295), + [anon_sym_DASH_DASH] = ACTIONS(1297), + [anon_sym_PLUS_PLUS] = ACTIONS(1297), + [anon_sym_sizeof] = ACTIONS(1295), + [anon_sym___alignof__] = ACTIONS(1295), + [anon_sym___alignof] = ACTIONS(1295), + [anon_sym__alignof] = ACTIONS(1295), + [anon_sym_alignof] = ACTIONS(1295), + [anon_sym__Alignof] = ACTIONS(1295), + [anon_sym_offsetof] = ACTIONS(1295), + [anon_sym__Generic] = ACTIONS(1295), + [anon_sym_asm] = ACTIONS(1295), + [anon_sym___asm__] = ACTIONS(1295), + [sym_number_literal] = ACTIONS(1297), + [anon_sym_L_SQUOTE] = ACTIONS(1297), + [anon_sym_u_SQUOTE] = ACTIONS(1297), + [anon_sym_U_SQUOTE] = ACTIONS(1297), + [anon_sym_u8_SQUOTE] = ACTIONS(1297), + [anon_sym_SQUOTE] = ACTIONS(1297), + [anon_sym_L_DQUOTE] = ACTIONS(1297), + [anon_sym_u_DQUOTE] = ACTIONS(1297), + [anon_sym_U_DQUOTE] = ACTIONS(1297), + [anon_sym_u8_DQUOTE] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1297), + [sym_true] = ACTIONS(1295), + [sym_false] = ACTIONS(1295), + [anon_sym_NULL] = ACTIONS(1295), + [anon_sym_nullptr] = ACTIONS(1295), + [sym_comment] = ACTIONS(3), + }, + [269] = { + [sym_identifier] = ACTIONS(1339), + [aux_sym_preproc_include_token1] = ACTIONS(1339), + [aux_sym_preproc_def_token1] = ACTIONS(1339), + [aux_sym_preproc_if_token1] = ACTIONS(1339), + [aux_sym_preproc_if_token2] = ACTIONS(1339), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1339), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1339), + [sym_preproc_directive] = ACTIONS(1339), + [anon_sym_LPAREN2] = ACTIONS(1341), + [anon_sym_BANG] = ACTIONS(1341), + [anon_sym_TILDE] = ACTIONS(1341), + [anon_sym_DASH] = ACTIONS(1339), + [anon_sym_PLUS] = ACTIONS(1339), + [anon_sym_STAR] = ACTIONS(1341), + [anon_sym_AMP] = ACTIONS(1341), + [anon_sym_SEMI] = ACTIONS(1341), + [anon_sym___extension__] = ACTIONS(1339), + [anon_sym_typedef] = ACTIONS(1339), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym___attribute__] = ACTIONS(1339), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1341), + [anon_sym___declspec] = ACTIONS(1339), + [anon_sym___cdecl] = ACTIONS(1339), + [anon_sym___clrcall] = ACTIONS(1339), + [anon_sym___stdcall] = ACTIONS(1339), + [anon_sym___fastcall] = ACTIONS(1339), + [anon_sym___thiscall] = ACTIONS(1339), [anon_sym___vectorcall] = ACTIONS(1339), [anon_sym_LBRACE] = ACTIONS(1341), [anon_sym_signed] = ACTIONS(1339), @@ -47376,403 +43442,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1339), [sym_comment] = ACTIONS(3), }, - [308] = { - [sym_identifier] = ACTIONS(1347), - [aux_sym_preproc_include_token1] = ACTIONS(1347), - [aux_sym_preproc_def_token1] = ACTIONS(1347), - [aux_sym_preproc_if_token1] = ACTIONS(1347), - [aux_sym_preproc_if_token2] = ACTIONS(1347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1347), - [sym_preproc_directive] = ACTIONS(1347), - [anon_sym_LPAREN2] = ACTIONS(1349), - [anon_sym_BANG] = ACTIONS(1349), - [anon_sym_TILDE] = ACTIONS(1349), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_STAR] = ACTIONS(1349), - [anon_sym_AMP] = ACTIONS(1349), - [anon_sym_SEMI] = ACTIONS(1349), - [anon_sym___extension__] = ACTIONS(1347), - [anon_sym_typedef] = ACTIONS(1347), - [anon_sym_extern] = ACTIONS(1347), - [anon_sym___attribute__] = ACTIONS(1347), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1349), - [anon_sym___declspec] = ACTIONS(1347), - [anon_sym___cdecl] = ACTIONS(1347), - [anon_sym___clrcall] = ACTIONS(1347), - [anon_sym___stdcall] = ACTIONS(1347), - [anon_sym___fastcall] = ACTIONS(1347), - [anon_sym___thiscall] = ACTIONS(1347), - [anon_sym___vectorcall] = ACTIONS(1347), - [anon_sym_LBRACE] = ACTIONS(1349), - [anon_sym_signed] = ACTIONS(1347), - [anon_sym_unsigned] = ACTIONS(1347), - [anon_sym_long] = ACTIONS(1347), - [anon_sym_short] = ACTIONS(1347), - [anon_sym_static] = ACTIONS(1347), - [anon_sym_auto] = ACTIONS(1347), - [anon_sym_register] = ACTIONS(1347), - [anon_sym_inline] = ACTIONS(1347), - [anon_sym___inline] = ACTIONS(1347), - [anon_sym___inline__] = ACTIONS(1347), - [anon_sym___forceinline] = ACTIONS(1347), - [anon_sym_thread_local] = ACTIONS(1347), - [anon_sym___thread] = ACTIONS(1347), - [anon_sym_const] = ACTIONS(1347), - [anon_sym_constexpr] = ACTIONS(1347), - [anon_sym_volatile] = ACTIONS(1347), - [anon_sym_restrict] = ACTIONS(1347), - [anon_sym___restrict__] = ACTIONS(1347), - [anon_sym__Atomic] = ACTIONS(1347), - [anon_sym__Noreturn] = ACTIONS(1347), - [anon_sym_noreturn] = ACTIONS(1347), - [anon_sym_alignas] = ACTIONS(1347), - [anon_sym__Alignas] = ACTIONS(1347), - [sym_primitive_type] = ACTIONS(1347), - [anon_sym_enum] = ACTIONS(1347), - [anon_sym_struct] = ACTIONS(1347), - [anon_sym_union] = ACTIONS(1347), - [anon_sym_if] = ACTIONS(1347), - [anon_sym_switch] = ACTIONS(1347), - [anon_sym_case] = ACTIONS(1347), - [anon_sym_default] = ACTIONS(1347), - [anon_sym_while] = ACTIONS(1347), - [anon_sym_do] = ACTIONS(1347), - [anon_sym_for] = ACTIONS(1347), - [anon_sym_return] = ACTIONS(1347), - [anon_sym_break] = ACTIONS(1347), - [anon_sym_continue] = ACTIONS(1347), - [anon_sym_goto] = ACTIONS(1347), - [anon_sym___try] = ACTIONS(1347), - [anon_sym___leave] = ACTIONS(1347), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_sizeof] = ACTIONS(1347), - [anon_sym___alignof__] = ACTIONS(1347), - [anon_sym___alignof] = ACTIONS(1347), - [anon_sym__alignof] = ACTIONS(1347), - [anon_sym_alignof] = ACTIONS(1347), - [anon_sym__Alignof] = ACTIONS(1347), - [anon_sym_offsetof] = ACTIONS(1347), - [anon_sym__Generic] = ACTIONS(1347), - [anon_sym_asm] = ACTIONS(1347), - [anon_sym___asm__] = ACTIONS(1347), - [sym_number_literal] = ACTIONS(1349), - [anon_sym_L_SQUOTE] = ACTIONS(1349), - [anon_sym_u_SQUOTE] = ACTIONS(1349), - [anon_sym_U_SQUOTE] = ACTIONS(1349), - [anon_sym_u8_SQUOTE] = ACTIONS(1349), - [anon_sym_SQUOTE] = ACTIONS(1349), - [anon_sym_L_DQUOTE] = ACTIONS(1349), - [anon_sym_u_DQUOTE] = ACTIONS(1349), - [anon_sym_U_DQUOTE] = ACTIONS(1349), - [anon_sym_u8_DQUOTE] = ACTIONS(1349), - [anon_sym_DQUOTE] = ACTIONS(1349), - [sym_true] = ACTIONS(1347), - [sym_false] = ACTIONS(1347), - [anon_sym_NULL] = ACTIONS(1347), - [anon_sym_nullptr] = ACTIONS(1347), - [sym_comment] = ACTIONS(3), - }, - [309] = { - [sym_identifier] = ACTIONS(1255), - [aux_sym_preproc_include_token1] = ACTIONS(1255), - [aux_sym_preproc_def_token1] = ACTIONS(1255), - [aux_sym_preproc_if_token1] = ACTIONS(1255), - [aux_sym_preproc_if_token2] = ACTIONS(1255), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1255), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1255), - [sym_preproc_directive] = ACTIONS(1255), - [anon_sym_LPAREN2] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_TILDE] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1257), - [anon_sym_SEMI] = ACTIONS(1257), - [anon_sym___extension__] = ACTIONS(1255), - [anon_sym_typedef] = ACTIONS(1255), - [anon_sym_extern] = ACTIONS(1255), - [anon_sym___attribute__] = ACTIONS(1255), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1257), - [anon_sym___declspec] = ACTIONS(1255), - [anon_sym___cdecl] = ACTIONS(1255), - [anon_sym___clrcall] = ACTIONS(1255), - [anon_sym___stdcall] = ACTIONS(1255), - [anon_sym___fastcall] = ACTIONS(1255), - [anon_sym___thiscall] = ACTIONS(1255), - [anon_sym___vectorcall] = ACTIONS(1255), - [anon_sym_LBRACE] = ACTIONS(1257), - [anon_sym_signed] = ACTIONS(1255), - [anon_sym_unsigned] = ACTIONS(1255), - [anon_sym_long] = ACTIONS(1255), - [anon_sym_short] = ACTIONS(1255), - [anon_sym_static] = ACTIONS(1255), - [anon_sym_auto] = ACTIONS(1255), - [anon_sym_register] = ACTIONS(1255), - [anon_sym_inline] = ACTIONS(1255), - [anon_sym___inline] = ACTIONS(1255), - [anon_sym___inline__] = ACTIONS(1255), - [anon_sym___forceinline] = ACTIONS(1255), - [anon_sym_thread_local] = ACTIONS(1255), - [anon_sym___thread] = ACTIONS(1255), - [anon_sym_const] = ACTIONS(1255), - [anon_sym_constexpr] = ACTIONS(1255), - [anon_sym_volatile] = ACTIONS(1255), - [anon_sym_restrict] = ACTIONS(1255), - [anon_sym___restrict__] = ACTIONS(1255), - [anon_sym__Atomic] = ACTIONS(1255), - [anon_sym__Noreturn] = ACTIONS(1255), - [anon_sym_noreturn] = ACTIONS(1255), - [anon_sym_alignas] = ACTIONS(1255), - [anon_sym__Alignas] = ACTIONS(1255), - [sym_primitive_type] = ACTIONS(1255), - [anon_sym_enum] = ACTIONS(1255), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_union] = ACTIONS(1255), - [anon_sym_if] = ACTIONS(1255), - [anon_sym_switch] = ACTIONS(1255), - [anon_sym_case] = ACTIONS(1255), - [anon_sym_default] = ACTIONS(1255), - [anon_sym_while] = ACTIONS(1255), - [anon_sym_do] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1255), - [anon_sym_return] = ACTIONS(1255), - [anon_sym_break] = ACTIONS(1255), - [anon_sym_continue] = ACTIONS(1255), - [anon_sym_goto] = ACTIONS(1255), - [anon_sym___try] = ACTIONS(1255), - [anon_sym___leave] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1257), - [anon_sym_sizeof] = ACTIONS(1255), - [anon_sym___alignof__] = ACTIONS(1255), - [anon_sym___alignof] = ACTIONS(1255), - [anon_sym__alignof] = ACTIONS(1255), - [anon_sym_alignof] = ACTIONS(1255), - [anon_sym__Alignof] = ACTIONS(1255), - [anon_sym_offsetof] = ACTIONS(1255), - [anon_sym__Generic] = ACTIONS(1255), - [anon_sym_asm] = ACTIONS(1255), - [anon_sym___asm__] = ACTIONS(1255), - [sym_number_literal] = ACTIONS(1257), - [anon_sym_L_SQUOTE] = ACTIONS(1257), - [anon_sym_u_SQUOTE] = ACTIONS(1257), - [anon_sym_U_SQUOTE] = ACTIONS(1257), - [anon_sym_u8_SQUOTE] = ACTIONS(1257), - [anon_sym_SQUOTE] = ACTIONS(1257), - [anon_sym_L_DQUOTE] = ACTIONS(1257), - [anon_sym_u_DQUOTE] = ACTIONS(1257), - [anon_sym_U_DQUOTE] = ACTIONS(1257), - [anon_sym_u8_DQUOTE] = ACTIONS(1257), - [anon_sym_DQUOTE] = ACTIONS(1257), - [sym_true] = ACTIONS(1255), - [sym_false] = ACTIONS(1255), - [anon_sym_NULL] = ACTIONS(1255), - [anon_sym_nullptr] = ACTIONS(1255), - [sym_comment] = ACTIONS(3), - }, - [310] = { - [sym_identifier] = ACTIONS(1263), - [aux_sym_preproc_include_token1] = ACTIONS(1263), - [aux_sym_preproc_def_token1] = ACTIONS(1263), - [aux_sym_preproc_if_token1] = ACTIONS(1263), - [aux_sym_preproc_if_token2] = ACTIONS(1263), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1263), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1263), - [sym_preproc_directive] = ACTIONS(1263), - [anon_sym_LPAREN2] = ACTIONS(1265), - [anon_sym_BANG] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1265), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_AMP] = ACTIONS(1265), - [anon_sym_SEMI] = ACTIONS(1265), - [anon_sym___extension__] = ACTIONS(1263), - [anon_sym_typedef] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym___attribute__] = ACTIONS(1263), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1265), - [anon_sym___declspec] = ACTIONS(1263), - [anon_sym___cdecl] = ACTIONS(1263), - [anon_sym___clrcall] = ACTIONS(1263), - [anon_sym___stdcall] = ACTIONS(1263), - [anon_sym___fastcall] = ACTIONS(1263), - [anon_sym___thiscall] = ACTIONS(1263), - [anon_sym___vectorcall] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1265), - [anon_sym_signed] = ACTIONS(1263), - [anon_sym_unsigned] = ACTIONS(1263), - [anon_sym_long] = ACTIONS(1263), - [anon_sym_short] = ACTIONS(1263), - [anon_sym_static] = ACTIONS(1263), - [anon_sym_auto] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_inline] = ACTIONS(1263), - [anon_sym___inline] = ACTIONS(1263), - [anon_sym___inline__] = ACTIONS(1263), - [anon_sym___forceinline] = ACTIONS(1263), - [anon_sym_thread_local] = ACTIONS(1263), - [anon_sym___thread] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [anon_sym_constexpr] = ACTIONS(1263), - [anon_sym_volatile] = ACTIONS(1263), - [anon_sym_restrict] = ACTIONS(1263), - [anon_sym___restrict__] = ACTIONS(1263), - [anon_sym__Atomic] = ACTIONS(1263), - [anon_sym__Noreturn] = ACTIONS(1263), - [anon_sym_noreturn] = ACTIONS(1263), - [anon_sym_alignas] = ACTIONS(1263), - [anon_sym__Alignas] = ACTIONS(1263), - [sym_primitive_type] = ACTIONS(1263), - [anon_sym_enum] = ACTIONS(1263), - [anon_sym_struct] = ACTIONS(1263), - [anon_sym_union] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_switch] = ACTIONS(1263), - [anon_sym_case] = ACTIONS(1263), - [anon_sym_default] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_goto] = ACTIONS(1263), - [anon_sym___try] = ACTIONS(1263), - [anon_sym___leave] = ACTIONS(1263), - [anon_sym_DASH_DASH] = ACTIONS(1265), - [anon_sym_PLUS_PLUS] = ACTIONS(1265), - [anon_sym_sizeof] = ACTIONS(1263), - [anon_sym___alignof__] = ACTIONS(1263), - [anon_sym___alignof] = ACTIONS(1263), - [anon_sym__alignof] = ACTIONS(1263), - [anon_sym_alignof] = ACTIONS(1263), - [anon_sym__Alignof] = ACTIONS(1263), - [anon_sym_offsetof] = ACTIONS(1263), - [anon_sym__Generic] = ACTIONS(1263), - [anon_sym_asm] = ACTIONS(1263), - [anon_sym___asm__] = ACTIONS(1263), - [sym_number_literal] = ACTIONS(1265), - [anon_sym_L_SQUOTE] = ACTIONS(1265), - [anon_sym_u_SQUOTE] = ACTIONS(1265), - [anon_sym_U_SQUOTE] = ACTIONS(1265), - [anon_sym_u8_SQUOTE] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1265), - [anon_sym_L_DQUOTE] = ACTIONS(1265), - [anon_sym_u_DQUOTE] = ACTIONS(1265), - [anon_sym_U_DQUOTE] = ACTIONS(1265), - [anon_sym_u8_DQUOTE] = ACTIONS(1265), - [anon_sym_DQUOTE] = ACTIONS(1265), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [anon_sym_NULL] = ACTIONS(1263), - [anon_sym_nullptr] = ACTIONS(1263), - [sym_comment] = ACTIONS(3), - }, - [311] = { - [sym_identifier] = ACTIONS(1331), - [aux_sym_preproc_include_token1] = ACTIONS(1331), - [aux_sym_preproc_def_token1] = ACTIONS(1331), - [aux_sym_preproc_if_token1] = ACTIONS(1331), - [aux_sym_preproc_if_token2] = ACTIONS(1331), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1331), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1331), - [sym_preproc_directive] = ACTIONS(1331), - [anon_sym_LPAREN2] = ACTIONS(1333), - [anon_sym_BANG] = ACTIONS(1333), - [anon_sym_TILDE] = ACTIONS(1333), - [anon_sym_DASH] = ACTIONS(1331), - [anon_sym_PLUS] = ACTIONS(1331), - [anon_sym_STAR] = ACTIONS(1333), - [anon_sym_AMP] = ACTIONS(1333), - [anon_sym_SEMI] = ACTIONS(1333), - [anon_sym___extension__] = ACTIONS(1331), - [anon_sym_typedef] = ACTIONS(1331), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym___attribute__] = ACTIONS(1331), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1333), - [anon_sym___declspec] = ACTIONS(1331), - [anon_sym___cdecl] = ACTIONS(1331), - [anon_sym___clrcall] = ACTIONS(1331), - [anon_sym___stdcall] = ACTIONS(1331), - [anon_sym___fastcall] = ACTIONS(1331), - [anon_sym___thiscall] = ACTIONS(1331), - [anon_sym___vectorcall] = ACTIONS(1331), - [anon_sym_LBRACE] = ACTIONS(1333), - [anon_sym_signed] = ACTIONS(1331), - [anon_sym_unsigned] = ACTIONS(1331), - [anon_sym_long] = ACTIONS(1331), - [anon_sym_short] = ACTIONS(1331), - [anon_sym_static] = ACTIONS(1331), - [anon_sym_auto] = ACTIONS(1331), - [anon_sym_register] = ACTIONS(1331), - [anon_sym_inline] = ACTIONS(1331), - [anon_sym___inline] = ACTIONS(1331), - [anon_sym___inline__] = ACTIONS(1331), - [anon_sym___forceinline] = ACTIONS(1331), - [anon_sym_thread_local] = ACTIONS(1331), - [anon_sym___thread] = ACTIONS(1331), - [anon_sym_const] = ACTIONS(1331), - [anon_sym_constexpr] = ACTIONS(1331), - [anon_sym_volatile] = ACTIONS(1331), - [anon_sym_restrict] = ACTIONS(1331), - [anon_sym___restrict__] = ACTIONS(1331), - [anon_sym__Atomic] = ACTIONS(1331), - [anon_sym__Noreturn] = ACTIONS(1331), - [anon_sym_noreturn] = ACTIONS(1331), - [anon_sym_alignas] = ACTIONS(1331), - [anon_sym__Alignas] = 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_case] = ACTIONS(1331), - [anon_sym_default] = 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___try] = ACTIONS(1331), - [anon_sym___leave] = ACTIONS(1331), - [anon_sym_DASH_DASH] = ACTIONS(1333), - [anon_sym_PLUS_PLUS] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(1331), - [anon_sym___alignof__] = ACTIONS(1331), - [anon_sym___alignof] = ACTIONS(1331), - [anon_sym__alignof] = ACTIONS(1331), - [anon_sym_alignof] = ACTIONS(1331), - [anon_sym__Alignof] = ACTIONS(1331), - [anon_sym_offsetof] = ACTIONS(1331), - [anon_sym__Generic] = ACTIONS(1331), - [anon_sym_asm] = ACTIONS(1331), - [anon_sym___asm__] = ACTIONS(1331), - [sym_number_literal] = ACTIONS(1333), - [anon_sym_L_SQUOTE] = ACTIONS(1333), - [anon_sym_u_SQUOTE] = ACTIONS(1333), - [anon_sym_U_SQUOTE] = ACTIONS(1333), - [anon_sym_u8_SQUOTE] = ACTIONS(1333), - [anon_sym_SQUOTE] = ACTIONS(1333), - [anon_sym_L_DQUOTE] = ACTIONS(1333), - [anon_sym_u_DQUOTE] = ACTIONS(1333), - [anon_sym_U_DQUOTE] = ACTIONS(1333), - [anon_sym_u8_DQUOTE] = ACTIONS(1333), - [anon_sym_DQUOTE] = ACTIONS(1333), - [sym_true] = ACTIONS(1331), - [sym_false] = ACTIONS(1331), - [anon_sym_NULL] = ACTIONS(1331), - [anon_sym_nullptr] = ACTIONS(1331), - [sym_comment] = ACTIONS(3), - }, - [312] = { + [270] = { [sym_identifier] = ACTIONS(1291), [aux_sym_preproc_include_token1] = ACTIONS(1291), [aux_sym_preproc_def_token1] = ACTIONS(1291), @@ -47871,304 +43541,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1291), [sym_comment] = ACTIONS(3), }, - [313] = { - [sym_identifier] = ACTIONS(1291), - [aux_sym_preproc_include_token1] = ACTIONS(1291), - [aux_sym_preproc_def_token1] = ACTIONS(1291), - [aux_sym_preproc_if_token1] = ACTIONS(1291), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1291), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1291), - [sym_preproc_directive] = ACTIONS(1291), - [anon_sym_LPAREN2] = ACTIONS(1293), - [anon_sym_BANG] = ACTIONS(1293), - [anon_sym_TILDE] = ACTIONS(1293), - [anon_sym_DASH] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1291), - [anon_sym_STAR] = ACTIONS(1293), - [anon_sym_AMP] = ACTIONS(1293), - [anon_sym_SEMI] = ACTIONS(1293), - [anon_sym___extension__] = ACTIONS(1291), - [anon_sym_typedef] = ACTIONS(1291), - [anon_sym_extern] = ACTIONS(1291), - [anon_sym___attribute__] = ACTIONS(1291), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1293), - [anon_sym___declspec] = ACTIONS(1291), - [anon_sym___cdecl] = ACTIONS(1291), - [anon_sym___clrcall] = ACTIONS(1291), - [anon_sym___stdcall] = ACTIONS(1291), - [anon_sym___fastcall] = ACTIONS(1291), - [anon_sym___thiscall] = ACTIONS(1291), - [anon_sym___vectorcall] = ACTIONS(1291), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_RBRACE] = ACTIONS(1293), - [anon_sym_signed] = ACTIONS(1291), - [anon_sym_unsigned] = ACTIONS(1291), - [anon_sym_long] = ACTIONS(1291), - [anon_sym_short] = ACTIONS(1291), - [anon_sym_static] = ACTIONS(1291), - [anon_sym_auto] = ACTIONS(1291), - [anon_sym_register] = ACTIONS(1291), - [anon_sym_inline] = ACTIONS(1291), - [anon_sym___inline] = ACTIONS(1291), - [anon_sym___inline__] = ACTIONS(1291), - [anon_sym___forceinline] = ACTIONS(1291), - [anon_sym_thread_local] = ACTIONS(1291), - [anon_sym___thread] = ACTIONS(1291), - [anon_sym_const] = ACTIONS(1291), - [anon_sym_constexpr] = ACTIONS(1291), - [anon_sym_volatile] = ACTIONS(1291), - [anon_sym_restrict] = ACTIONS(1291), - [anon_sym___restrict__] = ACTIONS(1291), - [anon_sym__Atomic] = ACTIONS(1291), - [anon_sym__Noreturn] = ACTIONS(1291), - [anon_sym_noreturn] = ACTIONS(1291), - [anon_sym_alignas] = ACTIONS(1291), - [anon_sym__Alignas] = ACTIONS(1291), - [sym_primitive_type] = ACTIONS(1291), - [anon_sym_enum] = ACTIONS(1291), - [anon_sym_struct] = ACTIONS(1291), - [anon_sym_union] = ACTIONS(1291), - [anon_sym_if] = ACTIONS(1291), - [anon_sym_switch] = ACTIONS(1291), - [anon_sym_case] = ACTIONS(1291), - [anon_sym_default] = ACTIONS(1291), - [anon_sym_while] = ACTIONS(1291), - [anon_sym_do] = ACTIONS(1291), - [anon_sym_for] = ACTIONS(1291), - [anon_sym_return] = ACTIONS(1291), - [anon_sym_break] = ACTIONS(1291), - [anon_sym_continue] = ACTIONS(1291), - [anon_sym_goto] = ACTIONS(1291), - [anon_sym___try] = ACTIONS(1291), - [anon_sym___leave] = ACTIONS(1291), - [anon_sym_DASH_DASH] = ACTIONS(1293), - [anon_sym_PLUS_PLUS] = ACTIONS(1293), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym___alignof__] = ACTIONS(1291), - [anon_sym___alignof] = ACTIONS(1291), - [anon_sym__alignof] = ACTIONS(1291), - [anon_sym_alignof] = ACTIONS(1291), - [anon_sym__Alignof] = ACTIONS(1291), - [anon_sym_offsetof] = ACTIONS(1291), - [anon_sym__Generic] = ACTIONS(1291), - [anon_sym_asm] = ACTIONS(1291), - [anon_sym___asm__] = ACTIONS(1291), - [sym_number_literal] = ACTIONS(1293), - [anon_sym_L_SQUOTE] = ACTIONS(1293), - [anon_sym_u_SQUOTE] = ACTIONS(1293), - [anon_sym_U_SQUOTE] = ACTIONS(1293), - [anon_sym_u8_SQUOTE] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1293), - [anon_sym_L_DQUOTE] = ACTIONS(1293), - [anon_sym_u_DQUOTE] = ACTIONS(1293), - [anon_sym_U_DQUOTE] = ACTIONS(1293), - [anon_sym_u8_DQUOTE] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1293), - [sym_true] = ACTIONS(1291), - [sym_false] = ACTIONS(1291), - [anon_sym_NULL] = ACTIONS(1291), - [anon_sym_nullptr] = ACTIONS(1291), - [sym_comment] = ACTIONS(3), - }, - [314] = { - [sym_identifier] = ACTIONS(1263), - [aux_sym_preproc_include_token1] = ACTIONS(1263), - [aux_sym_preproc_def_token1] = ACTIONS(1263), - [aux_sym_preproc_if_token1] = ACTIONS(1263), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1263), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1263), - [sym_preproc_directive] = ACTIONS(1263), - [anon_sym_LPAREN2] = ACTIONS(1265), - [anon_sym_BANG] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1265), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_AMP] = ACTIONS(1265), - [anon_sym_SEMI] = ACTIONS(1265), - [anon_sym___extension__] = ACTIONS(1263), - [anon_sym_typedef] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym___attribute__] = ACTIONS(1263), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1265), - [anon_sym___declspec] = ACTIONS(1263), - [anon_sym___cdecl] = ACTIONS(1263), - [anon_sym___clrcall] = ACTIONS(1263), - [anon_sym___stdcall] = ACTIONS(1263), - [anon_sym___fastcall] = ACTIONS(1263), - [anon_sym___thiscall] = ACTIONS(1263), - [anon_sym___vectorcall] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1265), - [anon_sym_RBRACE] = ACTIONS(1265), - [anon_sym_signed] = ACTIONS(1263), - [anon_sym_unsigned] = ACTIONS(1263), - [anon_sym_long] = ACTIONS(1263), - [anon_sym_short] = ACTIONS(1263), - [anon_sym_static] = ACTIONS(1263), - [anon_sym_auto] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_inline] = ACTIONS(1263), - [anon_sym___inline] = ACTIONS(1263), - [anon_sym___inline__] = ACTIONS(1263), - [anon_sym___forceinline] = ACTIONS(1263), - [anon_sym_thread_local] = ACTIONS(1263), - [anon_sym___thread] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [anon_sym_constexpr] = ACTIONS(1263), - [anon_sym_volatile] = ACTIONS(1263), - [anon_sym_restrict] = ACTIONS(1263), - [anon_sym___restrict__] = ACTIONS(1263), - [anon_sym__Atomic] = ACTIONS(1263), - [anon_sym__Noreturn] = ACTIONS(1263), - [anon_sym_noreturn] = ACTIONS(1263), - [anon_sym_alignas] = ACTIONS(1263), - [anon_sym__Alignas] = ACTIONS(1263), - [sym_primitive_type] = ACTIONS(1263), - [anon_sym_enum] = ACTIONS(1263), - [anon_sym_struct] = ACTIONS(1263), - [anon_sym_union] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_switch] = ACTIONS(1263), - [anon_sym_case] = ACTIONS(1263), - [anon_sym_default] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_goto] = ACTIONS(1263), - [anon_sym___try] = ACTIONS(1263), - [anon_sym___leave] = ACTIONS(1263), - [anon_sym_DASH_DASH] = ACTIONS(1265), - [anon_sym_PLUS_PLUS] = ACTIONS(1265), - [anon_sym_sizeof] = ACTIONS(1263), - [anon_sym___alignof__] = ACTIONS(1263), - [anon_sym___alignof] = ACTIONS(1263), - [anon_sym__alignof] = ACTIONS(1263), - [anon_sym_alignof] = ACTIONS(1263), - [anon_sym__Alignof] = ACTIONS(1263), - [anon_sym_offsetof] = ACTIONS(1263), - [anon_sym__Generic] = ACTIONS(1263), - [anon_sym_asm] = ACTIONS(1263), - [anon_sym___asm__] = ACTIONS(1263), - [sym_number_literal] = ACTIONS(1265), - [anon_sym_L_SQUOTE] = ACTIONS(1265), - [anon_sym_u_SQUOTE] = ACTIONS(1265), - [anon_sym_U_SQUOTE] = ACTIONS(1265), - [anon_sym_u8_SQUOTE] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1265), - [anon_sym_L_DQUOTE] = ACTIONS(1265), - [anon_sym_u_DQUOTE] = ACTIONS(1265), - [anon_sym_U_DQUOTE] = ACTIONS(1265), - [anon_sym_u8_DQUOTE] = ACTIONS(1265), - [anon_sym_DQUOTE] = ACTIONS(1265), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [anon_sym_NULL] = ACTIONS(1263), - [anon_sym_nullptr] = ACTIONS(1263), + [271] = { + [sym_identifier] = ACTIONS(1355), + [aux_sym_preproc_include_token1] = ACTIONS(1355), + [aux_sym_preproc_def_token1] = ACTIONS(1355), + [aux_sym_preproc_if_token1] = ACTIONS(1355), + [aux_sym_preproc_if_token2] = ACTIONS(1355), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1355), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1355), + [sym_preproc_directive] = ACTIONS(1355), + [anon_sym_LPAREN2] = ACTIONS(1358), + [anon_sym_BANG] = ACTIONS(1358), + [anon_sym_TILDE] = ACTIONS(1358), + [anon_sym_DASH] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1355), + [anon_sym_STAR] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_SEMI] = ACTIONS(1358), + [anon_sym___extension__] = ACTIONS(1355), + [anon_sym_typedef] = ACTIONS(1355), + [anon_sym_extern] = ACTIONS(1355), + [anon_sym___attribute__] = ACTIONS(1355), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1358), + [anon_sym___declspec] = ACTIONS(1355), + [anon_sym___cdecl] = ACTIONS(1355), + [anon_sym___clrcall] = ACTIONS(1355), + [anon_sym___stdcall] = ACTIONS(1355), + [anon_sym___fastcall] = ACTIONS(1355), + [anon_sym___thiscall] = ACTIONS(1355), + [anon_sym___vectorcall] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(1358), + [anon_sym_signed] = ACTIONS(1355), + [anon_sym_unsigned] = ACTIONS(1355), + [anon_sym_long] = ACTIONS(1355), + [anon_sym_short] = ACTIONS(1355), + [anon_sym_static] = ACTIONS(1355), + [anon_sym_auto] = ACTIONS(1355), + [anon_sym_register] = ACTIONS(1355), + [anon_sym_inline] = ACTIONS(1355), + [anon_sym___inline] = ACTIONS(1355), + [anon_sym___inline__] = ACTIONS(1355), + [anon_sym___forceinline] = ACTIONS(1355), + [anon_sym_thread_local] = ACTIONS(1355), + [anon_sym___thread] = ACTIONS(1355), + [anon_sym_const] = ACTIONS(1355), + [anon_sym_constexpr] = ACTIONS(1355), + [anon_sym_volatile] = ACTIONS(1355), + [anon_sym_restrict] = ACTIONS(1355), + [anon_sym___restrict__] = ACTIONS(1355), + [anon_sym__Atomic] = ACTIONS(1355), + [anon_sym__Noreturn] = ACTIONS(1355), + [anon_sym_noreturn] = ACTIONS(1355), + [anon_sym_alignas] = ACTIONS(1355), + [anon_sym__Alignas] = 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___try] = ACTIONS(1355), + [anon_sym___leave] = ACTIONS(1355), + [anon_sym_DASH_DASH] = ACTIONS(1358), + [anon_sym_PLUS_PLUS] = ACTIONS(1358), + [anon_sym_sizeof] = ACTIONS(1355), + [anon_sym___alignof__] = ACTIONS(1355), + [anon_sym___alignof] = ACTIONS(1355), + [anon_sym__alignof] = ACTIONS(1355), + [anon_sym_alignof] = ACTIONS(1355), + [anon_sym__Alignof] = ACTIONS(1355), + [anon_sym_offsetof] = ACTIONS(1355), + [anon_sym__Generic] = ACTIONS(1355), + [anon_sym_asm] = ACTIONS(1355), + [anon_sym___asm__] = ACTIONS(1355), + [sym_number_literal] = ACTIONS(1358), + [anon_sym_L_SQUOTE] = ACTIONS(1358), + [anon_sym_u_SQUOTE] = ACTIONS(1358), + [anon_sym_U_SQUOTE] = ACTIONS(1358), + [anon_sym_u8_SQUOTE] = ACTIONS(1358), + [anon_sym_SQUOTE] = ACTIONS(1358), + [anon_sym_L_DQUOTE] = ACTIONS(1358), + [anon_sym_u_DQUOTE] = ACTIONS(1358), + [anon_sym_U_DQUOTE] = ACTIONS(1358), + [anon_sym_u8_DQUOTE] = ACTIONS(1358), + [anon_sym_DQUOTE] = ACTIONS(1358), + [sym_true] = ACTIONS(1355), + [sym_false] = ACTIONS(1355), + [anon_sym_NULL] = ACTIONS(1355), + [anon_sym_nullptr] = ACTIONS(1355), [sym_comment] = ACTIONS(3), }, - [315] = { - [sym_identifier] = ACTIONS(1311), - [aux_sym_preproc_include_token1] = ACTIONS(1311), - [aux_sym_preproc_def_token1] = ACTIONS(1311), - [aux_sym_preproc_if_token1] = ACTIONS(1311), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1311), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1311), - [sym_preproc_directive] = ACTIONS(1311), - [anon_sym_LPAREN2] = ACTIONS(1313), - [anon_sym_BANG] = ACTIONS(1313), - [anon_sym_TILDE] = ACTIONS(1313), - [anon_sym_DASH] = ACTIONS(1311), - [anon_sym_PLUS] = ACTIONS(1311), - [anon_sym_STAR] = ACTIONS(1313), - [anon_sym_AMP] = ACTIONS(1313), - [anon_sym_SEMI] = ACTIONS(1313), - [anon_sym___extension__] = ACTIONS(1311), - [anon_sym_typedef] = ACTIONS(1311), - [anon_sym_extern] = ACTIONS(1311), - [anon_sym___attribute__] = ACTIONS(1311), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1313), - [anon_sym___declspec] = ACTIONS(1311), - [anon_sym___cdecl] = ACTIONS(1311), - [anon_sym___clrcall] = ACTIONS(1311), - [anon_sym___stdcall] = ACTIONS(1311), - [anon_sym___fastcall] = ACTIONS(1311), - [anon_sym___thiscall] = ACTIONS(1311), - [anon_sym___vectorcall] = ACTIONS(1311), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_RBRACE] = ACTIONS(1313), - [anon_sym_signed] = ACTIONS(1311), - [anon_sym_unsigned] = ACTIONS(1311), - [anon_sym_long] = ACTIONS(1311), - [anon_sym_short] = ACTIONS(1311), - [anon_sym_static] = ACTIONS(1311), - [anon_sym_auto] = ACTIONS(1311), - [anon_sym_register] = ACTIONS(1311), - [anon_sym_inline] = ACTIONS(1311), - [anon_sym___inline] = ACTIONS(1311), - [anon_sym___inline__] = ACTIONS(1311), - [anon_sym___forceinline] = ACTIONS(1311), - [anon_sym_thread_local] = ACTIONS(1311), - [anon_sym___thread] = ACTIONS(1311), - [anon_sym_const] = ACTIONS(1311), - [anon_sym_constexpr] = ACTIONS(1311), - [anon_sym_volatile] = ACTIONS(1311), - [anon_sym_restrict] = ACTIONS(1311), - [anon_sym___restrict__] = ACTIONS(1311), - [anon_sym__Atomic] = ACTIONS(1311), - [anon_sym__Noreturn] = ACTIONS(1311), - [anon_sym_noreturn] = ACTIONS(1311), - [anon_sym_alignas] = ACTIONS(1311), - [anon_sym__Alignas] = ACTIONS(1311), - [sym_primitive_type] = ACTIONS(1311), - [anon_sym_enum] = ACTIONS(1311), - [anon_sym_struct] = ACTIONS(1311), - [anon_sym_union] = ACTIONS(1311), - [anon_sym_if] = ACTIONS(1311), - [anon_sym_switch] = ACTIONS(1311), - [anon_sym_case] = ACTIONS(1311), - [anon_sym_default] = ACTIONS(1311), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_do] = ACTIONS(1311), - [anon_sym_for] = ACTIONS(1311), - [anon_sym_return] = ACTIONS(1311), - [anon_sym_break] = ACTIONS(1311), - [anon_sym_continue] = ACTIONS(1311), - [anon_sym_goto] = ACTIONS(1311), - [anon_sym___try] = ACTIONS(1311), - [anon_sym___leave] = ACTIONS(1311), - [anon_sym_DASH_DASH] = ACTIONS(1313), - [anon_sym_PLUS_PLUS] = ACTIONS(1313), - [anon_sym_sizeof] = ACTIONS(1311), - [anon_sym___alignof__] = ACTIONS(1311), - [anon_sym___alignof] = ACTIONS(1311), - [anon_sym__alignof] = ACTIONS(1311), - [anon_sym_alignof] = ACTIONS(1311), - [anon_sym__Alignof] = ACTIONS(1311), - [anon_sym_offsetof] = ACTIONS(1311), - [anon_sym__Generic] = ACTIONS(1311), - [anon_sym_asm] = ACTIONS(1311), - [anon_sym___asm__] = ACTIONS(1311), - [sym_number_literal] = ACTIONS(1313), - [anon_sym_L_SQUOTE] = ACTIONS(1313), - [anon_sym_u_SQUOTE] = ACTIONS(1313), - [anon_sym_U_SQUOTE] = ACTIONS(1313), - [anon_sym_u8_SQUOTE] = ACTIONS(1313), - [anon_sym_SQUOTE] = ACTIONS(1313), - [anon_sym_L_DQUOTE] = ACTIONS(1313), - [anon_sym_u_DQUOTE] = ACTIONS(1313), - [anon_sym_U_DQUOTE] = ACTIONS(1313), - [anon_sym_u8_DQUOTE] = ACTIONS(1313), - [anon_sym_DQUOTE] = ACTIONS(1313), - [sym_true] = ACTIONS(1311), - [sym_false] = ACTIONS(1311), - [anon_sym_NULL] = ACTIONS(1311), - [anon_sym_nullptr] = ACTIONS(1311), - [sym_comment] = ACTIONS(3), - }, - [316] = { + [272] = { [sym_identifier] = ACTIONS(1299), [aux_sym_preproc_include_token1] = ACTIONS(1299), [aux_sym_preproc_def_token1] = ACTIONS(1299), @@ -48267,205 +43739,205 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1299), [sym_comment] = ACTIONS(3), }, - [317] = { - [sym_identifier] = ACTIONS(1259), - [aux_sym_preproc_include_token1] = ACTIONS(1259), - [aux_sym_preproc_def_token1] = ACTIONS(1259), - [aux_sym_preproc_if_token1] = ACTIONS(1259), - [aux_sym_preproc_if_token2] = ACTIONS(1259), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1259), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1259), - [sym_preproc_directive] = ACTIONS(1259), - [anon_sym_LPAREN2] = ACTIONS(1261), - [anon_sym_BANG] = ACTIONS(1261), - [anon_sym_TILDE] = ACTIONS(1261), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_STAR] = ACTIONS(1261), - [anon_sym_AMP] = ACTIONS(1261), - [anon_sym_SEMI] = ACTIONS(1261), - [anon_sym___extension__] = ACTIONS(1259), - [anon_sym_typedef] = ACTIONS(1259), - [anon_sym_extern] = ACTIONS(1259), - [anon_sym___attribute__] = ACTIONS(1259), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1261), - [anon_sym___declspec] = ACTIONS(1259), - [anon_sym___cdecl] = ACTIONS(1259), - [anon_sym___clrcall] = ACTIONS(1259), - [anon_sym___stdcall] = ACTIONS(1259), - [anon_sym___fastcall] = ACTIONS(1259), - [anon_sym___thiscall] = ACTIONS(1259), - [anon_sym___vectorcall] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(1261), - [anon_sym_signed] = ACTIONS(1259), - [anon_sym_unsigned] = ACTIONS(1259), - [anon_sym_long] = ACTIONS(1259), - [anon_sym_short] = ACTIONS(1259), - [anon_sym_static] = ACTIONS(1259), - [anon_sym_auto] = ACTIONS(1259), - [anon_sym_register] = ACTIONS(1259), - [anon_sym_inline] = ACTIONS(1259), - [anon_sym___inline] = ACTIONS(1259), - [anon_sym___inline__] = ACTIONS(1259), - [anon_sym___forceinline] = ACTIONS(1259), - [anon_sym_thread_local] = ACTIONS(1259), - [anon_sym___thread] = ACTIONS(1259), - [anon_sym_const] = ACTIONS(1259), - [anon_sym_constexpr] = ACTIONS(1259), - [anon_sym_volatile] = ACTIONS(1259), - [anon_sym_restrict] = ACTIONS(1259), - [anon_sym___restrict__] = ACTIONS(1259), - [anon_sym__Atomic] = ACTIONS(1259), - [anon_sym__Noreturn] = ACTIONS(1259), - [anon_sym_noreturn] = ACTIONS(1259), - [anon_sym_alignas] = ACTIONS(1259), - [anon_sym__Alignas] = ACTIONS(1259), - [sym_primitive_type] = ACTIONS(1259), - [anon_sym_enum] = ACTIONS(1259), - [anon_sym_struct] = ACTIONS(1259), - [anon_sym_union] = ACTIONS(1259), - [anon_sym_if] = ACTIONS(1259), - [anon_sym_switch] = ACTIONS(1259), - [anon_sym_case] = ACTIONS(1259), - [anon_sym_default] = ACTIONS(1259), - [anon_sym_while] = ACTIONS(1259), - [anon_sym_do] = ACTIONS(1259), - [anon_sym_for] = ACTIONS(1259), - [anon_sym_return] = ACTIONS(1259), - [anon_sym_break] = ACTIONS(1259), - [anon_sym_continue] = ACTIONS(1259), - [anon_sym_goto] = ACTIONS(1259), - [anon_sym___try] = ACTIONS(1259), - [anon_sym___leave] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1261), - [anon_sym_PLUS_PLUS] = ACTIONS(1261), - [anon_sym_sizeof] = ACTIONS(1259), - [anon_sym___alignof__] = ACTIONS(1259), - [anon_sym___alignof] = ACTIONS(1259), - [anon_sym__alignof] = ACTIONS(1259), - [anon_sym_alignof] = ACTIONS(1259), - [anon_sym__Alignof] = ACTIONS(1259), - [anon_sym_offsetof] = ACTIONS(1259), - [anon_sym__Generic] = ACTIONS(1259), - [anon_sym_asm] = ACTIONS(1259), - [anon_sym___asm__] = ACTIONS(1259), - [sym_number_literal] = ACTIONS(1261), - [anon_sym_L_SQUOTE] = ACTIONS(1261), - [anon_sym_u_SQUOTE] = ACTIONS(1261), - [anon_sym_U_SQUOTE] = ACTIONS(1261), - [anon_sym_u8_SQUOTE] = ACTIONS(1261), - [anon_sym_SQUOTE] = ACTIONS(1261), - [anon_sym_L_DQUOTE] = ACTIONS(1261), - [anon_sym_u_DQUOTE] = ACTIONS(1261), - [anon_sym_U_DQUOTE] = ACTIONS(1261), - [anon_sym_u8_DQUOTE] = ACTIONS(1261), - [anon_sym_DQUOTE] = ACTIONS(1261), - [sym_true] = ACTIONS(1259), - [sym_false] = ACTIONS(1259), - [anon_sym_NULL] = ACTIONS(1259), - [anon_sym_nullptr] = ACTIONS(1259), + [273] = { + [sym_identifier] = ACTIONS(1283), + [aux_sym_preproc_include_token1] = ACTIONS(1283), + [aux_sym_preproc_def_token1] = ACTIONS(1283), + [aux_sym_preproc_if_token1] = ACTIONS(1283), + [aux_sym_preproc_if_token2] = ACTIONS(1283), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1283), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1283), + [sym_preproc_directive] = ACTIONS(1283), + [anon_sym_LPAREN2] = ACTIONS(1285), + [anon_sym_BANG] = ACTIONS(1285), + [anon_sym_TILDE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1283), + [anon_sym_PLUS] = ACTIONS(1283), + [anon_sym_STAR] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1285), + [anon_sym_SEMI] = ACTIONS(1285), + [anon_sym___extension__] = ACTIONS(1283), + [anon_sym_typedef] = ACTIONS(1283), + [anon_sym_extern] = ACTIONS(1283), + [anon_sym___attribute__] = ACTIONS(1283), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1285), + [anon_sym___declspec] = ACTIONS(1283), + [anon_sym___cdecl] = ACTIONS(1283), + [anon_sym___clrcall] = ACTIONS(1283), + [anon_sym___stdcall] = ACTIONS(1283), + [anon_sym___fastcall] = ACTIONS(1283), + [anon_sym___thiscall] = ACTIONS(1283), + [anon_sym___vectorcall] = ACTIONS(1283), + [anon_sym_LBRACE] = ACTIONS(1285), + [anon_sym_signed] = ACTIONS(1283), + [anon_sym_unsigned] = ACTIONS(1283), + [anon_sym_long] = ACTIONS(1283), + [anon_sym_short] = ACTIONS(1283), + [anon_sym_static] = ACTIONS(1283), + [anon_sym_auto] = ACTIONS(1283), + [anon_sym_register] = ACTIONS(1283), + [anon_sym_inline] = ACTIONS(1283), + [anon_sym___inline] = ACTIONS(1283), + [anon_sym___inline__] = ACTIONS(1283), + [anon_sym___forceinline] = ACTIONS(1283), + [anon_sym_thread_local] = ACTIONS(1283), + [anon_sym___thread] = ACTIONS(1283), + [anon_sym_const] = ACTIONS(1283), + [anon_sym_constexpr] = ACTIONS(1283), + [anon_sym_volatile] = ACTIONS(1283), + [anon_sym_restrict] = ACTIONS(1283), + [anon_sym___restrict__] = ACTIONS(1283), + [anon_sym__Atomic] = ACTIONS(1283), + [anon_sym__Noreturn] = ACTIONS(1283), + [anon_sym_noreturn] = ACTIONS(1283), + [anon_sym_alignas] = ACTIONS(1283), + [anon_sym__Alignas] = ACTIONS(1283), + [sym_primitive_type] = ACTIONS(1283), + [anon_sym_enum] = ACTIONS(1283), + [anon_sym_struct] = ACTIONS(1283), + [anon_sym_union] = ACTIONS(1283), + [anon_sym_if] = ACTIONS(1283), + [anon_sym_switch] = ACTIONS(1283), + [anon_sym_case] = ACTIONS(1283), + [anon_sym_default] = ACTIONS(1283), + [anon_sym_while] = ACTIONS(1283), + [anon_sym_do] = ACTIONS(1283), + [anon_sym_for] = ACTIONS(1283), + [anon_sym_return] = ACTIONS(1283), + [anon_sym_break] = ACTIONS(1283), + [anon_sym_continue] = ACTIONS(1283), + [anon_sym_goto] = ACTIONS(1283), + [anon_sym___try] = ACTIONS(1283), + [anon_sym___leave] = ACTIONS(1283), + [anon_sym_DASH_DASH] = ACTIONS(1285), + [anon_sym_PLUS_PLUS] = ACTIONS(1285), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym___alignof__] = ACTIONS(1283), + [anon_sym___alignof] = ACTIONS(1283), + [anon_sym__alignof] = ACTIONS(1283), + [anon_sym_alignof] = ACTIONS(1283), + [anon_sym__Alignof] = ACTIONS(1283), + [anon_sym_offsetof] = ACTIONS(1283), + [anon_sym__Generic] = ACTIONS(1283), + [anon_sym_asm] = ACTIONS(1283), + [anon_sym___asm__] = ACTIONS(1283), + [sym_number_literal] = ACTIONS(1285), + [anon_sym_L_SQUOTE] = ACTIONS(1285), + [anon_sym_u_SQUOTE] = ACTIONS(1285), + [anon_sym_U_SQUOTE] = ACTIONS(1285), + [anon_sym_u8_SQUOTE] = ACTIONS(1285), + [anon_sym_SQUOTE] = ACTIONS(1285), + [anon_sym_L_DQUOTE] = ACTIONS(1285), + [anon_sym_u_DQUOTE] = ACTIONS(1285), + [anon_sym_U_DQUOTE] = ACTIONS(1285), + [anon_sym_u8_DQUOTE] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1285), + [sym_true] = ACTIONS(1283), + [sym_false] = ACTIONS(1283), + [anon_sym_NULL] = ACTIONS(1283), + [anon_sym_nullptr] = ACTIONS(1283), [sym_comment] = ACTIONS(3), }, - [318] = { - [sym_identifier] = ACTIONS(1331), - [aux_sym_preproc_include_token1] = ACTIONS(1331), - [aux_sym_preproc_def_token1] = ACTIONS(1331), - [aux_sym_preproc_if_token1] = ACTIONS(1331), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1331), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1331), - [sym_preproc_directive] = ACTIONS(1331), - [anon_sym_LPAREN2] = ACTIONS(1333), - [anon_sym_BANG] = ACTIONS(1333), - [anon_sym_TILDE] = ACTIONS(1333), - [anon_sym_DASH] = ACTIONS(1331), - [anon_sym_PLUS] = ACTIONS(1331), - [anon_sym_STAR] = ACTIONS(1333), - [anon_sym_AMP] = ACTIONS(1333), - [anon_sym_SEMI] = ACTIONS(1333), - [anon_sym___extension__] = ACTIONS(1331), - [anon_sym_typedef] = ACTIONS(1331), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym___attribute__] = ACTIONS(1331), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1333), - [anon_sym___declspec] = ACTIONS(1331), - [anon_sym___cdecl] = ACTIONS(1331), - [anon_sym___clrcall] = ACTIONS(1331), - [anon_sym___stdcall] = ACTIONS(1331), - [anon_sym___fastcall] = ACTIONS(1331), - [anon_sym___thiscall] = ACTIONS(1331), - [anon_sym___vectorcall] = ACTIONS(1331), - [anon_sym_LBRACE] = ACTIONS(1333), - [anon_sym_RBRACE] = ACTIONS(1333), - [anon_sym_signed] = ACTIONS(1331), - [anon_sym_unsigned] = ACTIONS(1331), - [anon_sym_long] = ACTIONS(1331), - [anon_sym_short] = ACTIONS(1331), - [anon_sym_static] = ACTIONS(1331), - [anon_sym_auto] = ACTIONS(1331), - [anon_sym_register] = ACTIONS(1331), - [anon_sym_inline] = ACTIONS(1331), - [anon_sym___inline] = ACTIONS(1331), - [anon_sym___inline__] = ACTIONS(1331), - [anon_sym___forceinline] = ACTIONS(1331), - [anon_sym_thread_local] = ACTIONS(1331), - [anon_sym___thread] = ACTIONS(1331), - [anon_sym_const] = ACTIONS(1331), - [anon_sym_constexpr] = ACTIONS(1331), - [anon_sym_volatile] = ACTIONS(1331), - [anon_sym_restrict] = ACTIONS(1331), - [anon_sym___restrict__] = ACTIONS(1331), - [anon_sym__Atomic] = ACTIONS(1331), - [anon_sym__Noreturn] = ACTIONS(1331), - [anon_sym_noreturn] = ACTIONS(1331), - [anon_sym_alignas] = ACTIONS(1331), - [anon_sym__Alignas] = 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_case] = ACTIONS(1331), - [anon_sym_default] = 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___try] = ACTIONS(1331), - [anon_sym___leave] = ACTIONS(1331), - [anon_sym_DASH_DASH] = ACTIONS(1333), - [anon_sym_PLUS_PLUS] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(1331), - [anon_sym___alignof__] = ACTIONS(1331), - [anon_sym___alignof] = ACTIONS(1331), - [anon_sym__alignof] = ACTIONS(1331), - [anon_sym_alignof] = ACTIONS(1331), - [anon_sym__Alignof] = ACTIONS(1331), - [anon_sym_offsetof] = ACTIONS(1331), - [anon_sym__Generic] = ACTIONS(1331), - [anon_sym_asm] = ACTIONS(1331), - [anon_sym___asm__] = ACTIONS(1331), - [sym_number_literal] = ACTIONS(1333), - [anon_sym_L_SQUOTE] = ACTIONS(1333), - [anon_sym_u_SQUOTE] = ACTIONS(1333), - [anon_sym_U_SQUOTE] = ACTIONS(1333), - [anon_sym_u8_SQUOTE] = ACTIONS(1333), - [anon_sym_SQUOTE] = ACTIONS(1333), - [anon_sym_L_DQUOTE] = ACTIONS(1333), - [anon_sym_u_DQUOTE] = ACTIONS(1333), - [anon_sym_U_DQUOTE] = ACTIONS(1333), - [anon_sym_u8_DQUOTE] = ACTIONS(1333), - [anon_sym_DQUOTE] = ACTIONS(1333), - [sym_true] = ACTIONS(1331), - [sym_false] = ACTIONS(1331), - [anon_sym_NULL] = ACTIONS(1331), - [anon_sym_nullptr] = ACTIONS(1331), + [274] = { + [sym_identifier] = ACTIONS(1279), + [aux_sym_preproc_include_token1] = ACTIONS(1279), + [aux_sym_preproc_def_token1] = ACTIONS(1279), + [aux_sym_preproc_if_token1] = ACTIONS(1279), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1279), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1279), + [sym_preproc_directive] = ACTIONS(1279), + [anon_sym_LPAREN2] = ACTIONS(1281), + [anon_sym_BANG] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1281), + [anon_sym_DASH] = ACTIONS(1279), + [anon_sym_PLUS] = ACTIONS(1279), + [anon_sym_STAR] = ACTIONS(1281), + [anon_sym_AMP] = ACTIONS(1281), + [anon_sym_SEMI] = ACTIONS(1281), + [anon_sym___extension__] = ACTIONS(1279), + [anon_sym_typedef] = ACTIONS(1279), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym___attribute__] = ACTIONS(1279), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1281), + [anon_sym___declspec] = ACTIONS(1279), + [anon_sym___cdecl] = ACTIONS(1279), + [anon_sym___clrcall] = ACTIONS(1279), + [anon_sym___stdcall] = ACTIONS(1279), + [anon_sym___fastcall] = ACTIONS(1279), + [anon_sym___thiscall] = ACTIONS(1279), + [anon_sym___vectorcall] = ACTIONS(1279), + [anon_sym_LBRACE] = ACTIONS(1281), + [anon_sym_RBRACE] = ACTIONS(1281), + [anon_sym_signed] = ACTIONS(1279), + [anon_sym_unsigned] = ACTIONS(1279), + [anon_sym_long] = ACTIONS(1279), + [anon_sym_short] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(1279), + [anon_sym_auto] = ACTIONS(1279), + [anon_sym_register] = ACTIONS(1279), + [anon_sym_inline] = ACTIONS(1279), + [anon_sym___inline] = ACTIONS(1279), + [anon_sym___inline__] = ACTIONS(1279), + [anon_sym___forceinline] = ACTIONS(1279), + [anon_sym_thread_local] = ACTIONS(1279), + [anon_sym___thread] = ACTIONS(1279), + [anon_sym_const] = ACTIONS(1279), + [anon_sym_constexpr] = ACTIONS(1279), + [anon_sym_volatile] = ACTIONS(1279), + [anon_sym_restrict] = ACTIONS(1279), + [anon_sym___restrict__] = ACTIONS(1279), + [anon_sym__Atomic] = ACTIONS(1279), + [anon_sym__Noreturn] = ACTIONS(1279), + [anon_sym_noreturn] = ACTIONS(1279), + [anon_sym_alignas] = ACTIONS(1279), + [anon_sym__Alignas] = ACTIONS(1279), + [sym_primitive_type] = ACTIONS(1279), + [anon_sym_enum] = ACTIONS(1279), + [anon_sym_struct] = ACTIONS(1279), + [anon_sym_union] = ACTIONS(1279), + [anon_sym_if] = ACTIONS(1279), + [anon_sym_switch] = ACTIONS(1279), + [anon_sym_case] = ACTIONS(1279), + [anon_sym_default] = ACTIONS(1279), + [anon_sym_while] = ACTIONS(1279), + [anon_sym_do] = ACTIONS(1279), + [anon_sym_for] = ACTIONS(1279), + [anon_sym_return] = ACTIONS(1279), + [anon_sym_break] = ACTIONS(1279), + [anon_sym_continue] = ACTIONS(1279), + [anon_sym_goto] = ACTIONS(1279), + [anon_sym___try] = ACTIONS(1279), + [anon_sym___leave] = ACTIONS(1279), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1279), + [anon_sym___alignof__] = ACTIONS(1279), + [anon_sym___alignof] = ACTIONS(1279), + [anon_sym__alignof] = ACTIONS(1279), + [anon_sym_alignof] = ACTIONS(1279), + [anon_sym__Alignof] = ACTIONS(1279), + [anon_sym_offsetof] = ACTIONS(1279), + [anon_sym__Generic] = ACTIONS(1279), + [anon_sym_asm] = ACTIONS(1279), + [anon_sym___asm__] = ACTIONS(1279), + [sym_number_literal] = ACTIONS(1281), + [anon_sym_L_SQUOTE] = ACTIONS(1281), + [anon_sym_u_SQUOTE] = ACTIONS(1281), + [anon_sym_U_SQUOTE] = ACTIONS(1281), + [anon_sym_u8_SQUOTE] = ACTIONS(1281), + [anon_sym_SQUOTE] = ACTIONS(1281), + [anon_sym_L_DQUOTE] = ACTIONS(1281), + [anon_sym_u_DQUOTE] = ACTIONS(1281), + [anon_sym_U_DQUOTE] = ACTIONS(1281), + [anon_sym_u8_DQUOTE] = ACTIONS(1281), + [anon_sym_DQUOTE] = ACTIONS(1281), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [anon_sym_NULL] = ACTIONS(1279), + [anon_sym_nullptr] = ACTIONS(1279), [sym_comment] = ACTIONS(3), }, - [319] = { + [275] = { [sym_identifier] = ACTIONS(1271), [aux_sym_preproc_include_token1] = ACTIONS(1271), [aux_sym_preproc_def_token1] = ACTIONS(1271), @@ -48564,205 +44036,205 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1271), [sym_comment] = ACTIONS(3), }, - [320] = { - [sym_identifier] = ACTIONS(1255), - [aux_sym_preproc_include_token1] = ACTIONS(1255), - [aux_sym_preproc_def_token1] = ACTIONS(1255), - [aux_sym_preproc_if_token1] = ACTIONS(1255), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1255), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1255), - [sym_preproc_directive] = ACTIONS(1255), - [anon_sym_LPAREN2] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_TILDE] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1257), - [anon_sym_SEMI] = ACTIONS(1257), - [anon_sym___extension__] = ACTIONS(1255), - [anon_sym_typedef] = ACTIONS(1255), - [anon_sym_extern] = ACTIONS(1255), - [anon_sym___attribute__] = ACTIONS(1255), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1257), - [anon_sym___declspec] = ACTIONS(1255), - [anon_sym___cdecl] = ACTIONS(1255), - [anon_sym___clrcall] = ACTIONS(1255), - [anon_sym___stdcall] = ACTIONS(1255), - [anon_sym___fastcall] = ACTIONS(1255), - [anon_sym___thiscall] = ACTIONS(1255), - [anon_sym___vectorcall] = ACTIONS(1255), - [anon_sym_LBRACE] = ACTIONS(1257), - [anon_sym_RBRACE] = ACTIONS(1257), - [anon_sym_signed] = ACTIONS(1255), - [anon_sym_unsigned] = ACTIONS(1255), - [anon_sym_long] = ACTIONS(1255), - [anon_sym_short] = ACTIONS(1255), - [anon_sym_static] = ACTIONS(1255), - [anon_sym_auto] = ACTIONS(1255), - [anon_sym_register] = ACTIONS(1255), - [anon_sym_inline] = ACTIONS(1255), - [anon_sym___inline] = ACTIONS(1255), - [anon_sym___inline__] = ACTIONS(1255), - [anon_sym___forceinline] = ACTIONS(1255), - [anon_sym_thread_local] = ACTIONS(1255), - [anon_sym___thread] = ACTIONS(1255), - [anon_sym_const] = ACTIONS(1255), - [anon_sym_constexpr] = ACTIONS(1255), - [anon_sym_volatile] = ACTIONS(1255), - [anon_sym_restrict] = ACTIONS(1255), - [anon_sym___restrict__] = ACTIONS(1255), - [anon_sym__Atomic] = ACTIONS(1255), - [anon_sym__Noreturn] = ACTIONS(1255), - [anon_sym_noreturn] = ACTIONS(1255), - [anon_sym_alignas] = ACTIONS(1255), - [anon_sym__Alignas] = ACTIONS(1255), - [sym_primitive_type] = ACTIONS(1255), - [anon_sym_enum] = ACTIONS(1255), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_union] = ACTIONS(1255), - [anon_sym_if] = ACTIONS(1255), - [anon_sym_switch] = ACTIONS(1255), - [anon_sym_case] = ACTIONS(1255), - [anon_sym_default] = ACTIONS(1255), - [anon_sym_while] = ACTIONS(1255), - [anon_sym_do] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1255), - [anon_sym_return] = ACTIONS(1255), - [anon_sym_break] = ACTIONS(1255), - [anon_sym_continue] = ACTIONS(1255), - [anon_sym_goto] = ACTIONS(1255), - [anon_sym___try] = ACTIONS(1255), - [anon_sym___leave] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1257), - [anon_sym_sizeof] = ACTIONS(1255), - [anon_sym___alignof__] = ACTIONS(1255), - [anon_sym___alignof] = ACTIONS(1255), - [anon_sym__alignof] = ACTIONS(1255), - [anon_sym_alignof] = ACTIONS(1255), - [anon_sym__Alignof] = ACTIONS(1255), - [anon_sym_offsetof] = ACTIONS(1255), - [anon_sym__Generic] = ACTIONS(1255), - [anon_sym_asm] = ACTIONS(1255), - [anon_sym___asm__] = ACTIONS(1255), - [sym_number_literal] = ACTIONS(1257), - [anon_sym_L_SQUOTE] = ACTIONS(1257), - [anon_sym_u_SQUOTE] = ACTIONS(1257), - [anon_sym_U_SQUOTE] = ACTIONS(1257), - [anon_sym_u8_SQUOTE] = ACTIONS(1257), - [anon_sym_SQUOTE] = ACTIONS(1257), - [anon_sym_L_DQUOTE] = ACTIONS(1257), - [anon_sym_u_DQUOTE] = ACTIONS(1257), - [anon_sym_U_DQUOTE] = ACTIONS(1257), - [anon_sym_u8_DQUOTE] = ACTIONS(1257), - [anon_sym_DQUOTE] = ACTIONS(1257), - [sym_true] = ACTIONS(1255), - [sym_false] = ACTIONS(1255), - [anon_sym_NULL] = ACTIONS(1255), - [anon_sym_nullptr] = ACTIONS(1255), + [276] = { + [sym_identifier] = ACTIONS(1267), + [aux_sym_preproc_include_token1] = ACTIONS(1267), + [aux_sym_preproc_def_token1] = ACTIONS(1267), + [aux_sym_preproc_if_token1] = ACTIONS(1267), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1267), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1267), + [sym_preproc_directive] = ACTIONS(1267), + [anon_sym_LPAREN2] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1269), + [anon_sym_TILDE] = ACTIONS(1269), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_AMP] = ACTIONS(1269), + [anon_sym_SEMI] = ACTIONS(1269), + [anon_sym___extension__] = ACTIONS(1267), + [anon_sym_typedef] = ACTIONS(1267), + [anon_sym_extern] = ACTIONS(1267), + [anon_sym___attribute__] = ACTIONS(1267), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1269), + [anon_sym___declspec] = ACTIONS(1267), + [anon_sym___cdecl] = ACTIONS(1267), + [anon_sym___clrcall] = ACTIONS(1267), + [anon_sym___stdcall] = ACTIONS(1267), + [anon_sym___fastcall] = ACTIONS(1267), + [anon_sym___thiscall] = ACTIONS(1267), + [anon_sym___vectorcall] = ACTIONS(1267), + [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_RBRACE] = ACTIONS(1269), + [anon_sym_signed] = ACTIONS(1267), + [anon_sym_unsigned] = ACTIONS(1267), + [anon_sym_long] = ACTIONS(1267), + [anon_sym_short] = ACTIONS(1267), + [anon_sym_static] = ACTIONS(1267), + [anon_sym_auto] = ACTIONS(1267), + [anon_sym_register] = ACTIONS(1267), + [anon_sym_inline] = ACTIONS(1267), + [anon_sym___inline] = ACTIONS(1267), + [anon_sym___inline__] = ACTIONS(1267), + [anon_sym___forceinline] = ACTIONS(1267), + [anon_sym_thread_local] = ACTIONS(1267), + [anon_sym___thread] = ACTIONS(1267), + [anon_sym_const] = ACTIONS(1267), + [anon_sym_constexpr] = ACTIONS(1267), + [anon_sym_volatile] = ACTIONS(1267), + [anon_sym_restrict] = ACTIONS(1267), + [anon_sym___restrict__] = ACTIONS(1267), + [anon_sym__Atomic] = ACTIONS(1267), + [anon_sym__Noreturn] = ACTIONS(1267), + [anon_sym_noreturn] = ACTIONS(1267), + [anon_sym_alignas] = ACTIONS(1267), + [anon_sym__Alignas] = ACTIONS(1267), + [sym_primitive_type] = ACTIONS(1267), + [anon_sym_enum] = ACTIONS(1267), + [anon_sym_struct] = ACTIONS(1267), + [anon_sym_union] = ACTIONS(1267), + [anon_sym_if] = ACTIONS(1267), + [anon_sym_switch] = ACTIONS(1267), + [anon_sym_case] = ACTIONS(1267), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_while] = ACTIONS(1267), + [anon_sym_do] = ACTIONS(1267), + [anon_sym_for] = ACTIONS(1267), + [anon_sym_return] = ACTIONS(1267), + [anon_sym_break] = ACTIONS(1267), + [anon_sym_continue] = ACTIONS(1267), + [anon_sym_goto] = ACTIONS(1267), + [anon_sym___try] = ACTIONS(1267), + [anon_sym___leave] = ACTIONS(1267), + [anon_sym_DASH_DASH] = ACTIONS(1269), + [anon_sym_PLUS_PLUS] = ACTIONS(1269), + [anon_sym_sizeof] = ACTIONS(1267), + [anon_sym___alignof__] = ACTIONS(1267), + [anon_sym___alignof] = ACTIONS(1267), + [anon_sym__alignof] = ACTIONS(1267), + [anon_sym_alignof] = ACTIONS(1267), + [anon_sym__Alignof] = ACTIONS(1267), + [anon_sym_offsetof] = ACTIONS(1267), + [anon_sym__Generic] = ACTIONS(1267), + [anon_sym_asm] = ACTIONS(1267), + [anon_sym___asm__] = ACTIONS(1267), + [sym_number_literal] = ACTIONS(1269), + [anon_sym_L_SQUOTE] = ACTIONS(1269), + [anon_sym_u_SQUOTE] = ACTIONS(1269), + [anon_sym_U_SQUOTE] = ACTIONS(1269), + [anon_sym_u8_SQUOTE] = ACTIONS(1269), + [anon_sym_SQUOTE] = ACTIONS(1269), + [anon_sym_L_DQUOTE] = ACTIONS(1269), + [anon_sym_u_DQUOTE] = ACTIONS(1269), + [anon_sym_U_DQUOTE] = ACTIONS(1269), + [anon_sym_u8_DQUOTE] = ACTIONS(1269), + [anon_sym_DQUOTE] = ACTIONS(1269), + [sym_true] = ACTIONS(1267), + [sym_false] = ACTIONS(1267), + [anon_sym_NULL] = ACTIONS(1267), + [anon_sym_nullptr] = ACTIONS(1267), [sym_comment] = ACTIONS(3), }, - [321] = { - [sym_identifier] = ACTIONS(1303), - [aux_sym_preproc_include_token1] = ACTIONS(1303), - [aux_sym_preproc_def_token1] = ACTIONS(1303), - [aux_sym_preproc_if_token1] = ACTIONS(1303), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1303), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1303), - [sym_preproc_directive] = ACTIONS(1303), - [anon_sym_LPAREN2] = ACTIONS(1305), - [anon_sym_BANG] = ACTIONS(1305), - [anon_sym_TILDE] = ACTIONS(1305), - [anon_sym_DASH] = ACTIONS(1303), - [anon_sym_PLUS] = ACTIONS(1303), - [anon_sym_STAR] = ACTIONS(1305), - [anon_sym_AMP] = ACTIONS(1305), - [anon_sym_SEMI] = ACTIONS(1305), - [anon_sym___extension__] = ACTIONS(1303), - [anon_sym_typedef] = ACTIONS(1303), - [anon_sym_extern] = ACTIONS(1303), - [anon_sym___attribute__] = ACTIONS(1303), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1305), - [anon_sym___declspec] = ACTIONS(1303), - [anon_sym___cdecl] = ACTIONS(1303), - [anon_sym___clrcall] = ACTIONS(1303), - [anon_sym___stdcall] = ACTIONS(1303), - [anon_sym___fastcall] = ACTIONS(1303), - [anon_sym___thiscall] = ACTIONS(1303), - [anon_sym___vectorcall] = ACTIONS(1303), - [anon_sym_LBRACE] = ACTIONS(1305), - [anon_sym_RBRACE] = ACTIONS(1305), - [anon_sym_signed] = ACTIONS(1303), - [anon_sym_unsigned] = ACTIONS(1303), - [anon_sym_long] = ACTIONS(1303), - [anon_sym_short] = ACTIONS(1303), - [anon_sym_static] = ACTIONS(1303), - [anon_sym_auto] = ACTIONS(1303), - [anon_sym_register] = ACTIONS(1303), - [anon_sym_inline] = ACTIONS(1303), - [anon_sym___inline] = ACTIONS(1303), - [anon_sym___inline__] = ACTIONS(1303), - [anon_sym___forceinline] = ACTIONS(1303), - [anon_sym_thread_local] = ACTIONS(1303), - [anon_sym___thread] = ACTIONS(1303), - [anon_sym_const] = ACTIONS(1303), - [anon_sym_constexpr] = ACTIONS(1303), - [anon_sym_volatile] = ACTIONS(1303), - [anon_sym_restrict] = ACTIONS(1303), - [anon_sym___restrict__] = ACTIONS(1303), - [anon_sym__Atomic] = ACTIONS(1303), - [anon_sym__Noreturn] = ACTIONS(1303), - [anon_sym_noreturn] = ACTIONS(1303), - [anon_sym_alignas] = ACTIONS(1303), - [anon_sym__Alignas] = ACTIONS(1303), - [sym_primitive_type] = ACTIONS(1303), - [anon_sym_enum] = ACTIONS(1303), - [anon_sym_struct] = ACTIONS(1303), - [anon_sym_union] = ACTIONS(1303), - [anon_sym_if] = ACTIONS(1303), - [anon_sym_switch] = ACTIONS(1303), - [anon_sym_case] = ACTIONS(1303), - [anon_sym_default] = ACTIONS(1303), - [anon_sym_while] = ACTIONS(1303), - [anon_sym_do] = ACTIONS(1303), - [anon_sym_for] = ACTIONS(1303), - [anon_sym_return] = ACTIONS(1303), - [anon_sym_break] = ACTIONS(1303), - [anon_sym_continue] = ACTIONS(1303), - [anon_sym_goto] = ACTIONS(1303), - [anon_sym___try] = ACTIONS(1303), - [anon_sym___leave] = ACTIONS(1303), - [anon_sym_DASH_DASH] = ACTIONS(1305), - [anon_sym_PLUS_PLUS] = ACTIONS(1305), - [anon_sym_sizeof] = ACTIONS(1303), - [anon_sym___alignof__] = ACTIONS(1303), - [anon_sym___alignof] = ACTIONS(1303), - [anon_sym__alignof] = ACTIONS(1303), - [anon_sym_alignof] = ACTIONS(1303), - [anon_sym__Alignof] = ACTIONS(1303), - [anon_sym_offsetof] = ACTIONS(1303), - [anon_sym__Generic] = ACTIONS(1303), - [anon_sym_asm] = ACTIONS(1303), - [anon_sym___asm__] = ACTIONS(1303), - [sym_number_literal] = ACTIONS(1305), - [anon_sym_L_SQUOTE] = ACTIONS(1305), - [anon_sym_u_SQUOTE] = ACTIONS(1305), - [anon_sym_U_SQUOTE] = ACTIONS(1305), - [anon_sym_u8_SQUOTE] = ACTIONS(1305), - [anon_sym_SQUOTE] = ACTIONS(1305), - [anon_sym_L_DQUOTE] = ACTIONS(1305), - [anon_sym_u_DQUOTE] = ACTIONS(1305), - [anon_sym_U_DQUOTE] = ACTIONS(1305), - [anon_sym_u8_DQUOTE] = ACTIONS(1305), - [anon_sym_DQUOTE] = ACTIONS(1305), - [sym_true] = ACTIONS(1303), - [sym_false] = ACTIONS(1303), - [anon_sym_NULL] = ACTIONS(1303), - [anon_sym_nullptr] = ACTIONS(1303), + [277] = { + [sym_identifier] = ACTIONS(1307), + [aux_sym_preproc_include_token1] = ACTIONS(1307), + [aux_sym_preproc_def_token1] = ACTIONS(1307), + [aux_sym_preproc_if_token1] = ACTIONS(1307), + [aux_sym_preproc_if_token2] = ACTIONS(1307), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1307), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1307), + [sym_preproc_directive] = ACTIONS(1307), + [anon_sym_LPAREN2] = ACTIONS(1309), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_TILDE] = ACTIONS(1309), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(1307), + [anon_sym_STAR] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1309), + [anon_sym_SEMI] = ACTIONS(1309), + [anon_sym___extension__] = ACTIONS(1307), + [anon_sym_typedef] = ACTIONS(1307), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym___attribute__] = ACTIONS(1307), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1309), + [anon_sym___declspec] = ACTIONS(1307), + [anon_sym___cdecl] = ACTIONS(1307), + [anon_sym___clrcall] = ACTIONS(1307), + [anon_sym___stdcall] = ACTIONS(1307), + [anon_sym___fastcall] = ACTIONS(1307), + [anon_sym___thiscall] = ACTIONS(1307), + [anon_sym___vectorcall] = ACTIONS(1307), + [anon_sym_LBRACE] = ACTIONS(1309), + [anon_sym_signed] = ACTIONS(1307), + [anon_sym_unsigned] = ACTIONS(1307), + [anon_sym_long] = ACTIONS(1307), + [anon_sym_short] = ACTIONS(1307), + [anon_sym_static] = ACTIONS(1307), + [anon_sym_auto] = ACTIONS(1307), + [anon_sym_register] = ACTIONS(1307), + [anon_sym_inline] = ACTIONS(1307), + [anon_sym___inline] = ACTIONS(1307), + [anon_sym___inline__] = ACTIONS(1307), + [anon_sym___forceinline] = ACTIONS(1307), + [anon_sym_thread_local] = ACTIONS(1307), + [anon_sym___thread] = ACTIONS(1307), + [anon_sym_const] = ACTIONS(1307), + [anon_sym_constexpr] = ACTIONS(1307), + [anon_sym_volatile] = ACTIONS(1307), + [anon_sym_restrict] = ACTIONS(1307), + [anon_sym___restrict__] = ACTIONS(1307), + [anon_sym__Atomic] = ACTIONS(1307), + [anon_sym__Noreturn] = ACTIONS(1307), + [anon_sym_noreturn] = ACTIONS(1307), + [anon_sym_alignas] = ACTIONS(1307), + [anon_sym__Alignas] = ACTIONS(1307), + [sym_primitive_type] = ACTIONS(1307), + [anon_sym_enum] = ACTIONS(1307), + [anon_sym_struct] = ACTIONS(1307), + [anon_sym_union] = ACTIONS(1307), + [anon_sym_if] = ACTIONS(1307), + [anon_sym_switch] = ACTIONS(1307), + [anon_sym_case] = ACTIONS(1307), + [anon_sym_default] = ACTIONS(1307), + [anon_sym_while] = ACTIONS(1307), + [anon_sym_do] = ACTIONS(1307), + [anon_sym_for] = ACTIONS(1307), + [anon_sym_return] = ACTIONS(1307), + [anon_sym_break] = ACTIONS(1307), + [anon_sym_continue] = ACTIONS(1307), + [anon_sym_goto] = ACTIONS(1307), + [anon_sym___try] = ACTIONS(1307), + [anon_sym___leave] = ACTIONS(1307), + [anon_sym_DASH_DASH] = ACTIONS(1309), + [anon_sym_PLUS_PLUS] = ACTIONS(1309), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym___alignof__] = ACTIONS(1307), + [anon_sym___alignof] = ACTIONS(1307), + [anon_sym__alignof] = ACTIONS(1307), + [anon_sym_alignof] = ACTIONS(1307), + [anon_sym__Alignof] = ACTIONS(1307), + [anon_sym_offsetof] = ACTIONS(1307), + [anon_sym__Generic] = ACTIONS(1307), + [anon_sym_asm] = ACTIONS(1307), + [anon_sym___asm__] = ACTIONS(1307), + [sym_number_literal] = ACTIONS(1309), + [anon_sym_L_SQUOTE] = ACTIONS(1309), + [anon_sym_u_SQUOTE] = ACTIONS(1309), + [anon_sym_U_SQUOTE] = ACTIONS(1309), + [anon_sym_u8_SQUOTE] = ACTIONS(1309), + [anon_sym_SQUOTE] = ACTIONS(1309), + [anon_sym_L_DQUOTE] = ACTIONS(1309), + [anon_sym_u_DQUOTE] = ACTIONS(1309), + [anon_sym_U_DQUOTE] = ACTIONS(1309), + [anon_sym_u8_DQUOTE] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1309), + [sym_true] = ACTIONS(1307), + [sym_false] = ACTIONS(1307), + [anon_sym_NULL] = ACTIONS(1307), + [anon_sym_nullptr] = ACTIONS(1307), [sym_comment] = ACTIONS(3), }, - [322] = { + [278] = { [sym_identifier] = ACTIONS(1319), [aux_sym_preproc_include_token1] = ACTIONS(1319), [aux_sym_preproc_def_token1] = ACTIONS(1319), @@ -48861,1522 +44333,1522 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1319), [sym_comment] = ACTIONS(3), }, - [323] = { - [sym_identifier] = ACTIONS(1299), - [aux_sym_preproc_include_token1] = ACTIONS(1299), - [aux_sym_preproc_def_token1] = ACTIONS(1299), - [aux_sym_preproc_if_token1] = ACTIONS(1299), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1299), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1299), - [sym_preproc_directive] = ACTIONS(1299), - [anon_sym_LPAREN2] = ACTIONS(1301), - [anon_sym_BANG] = ACTIONS(1301), - [anon_sym_TILDE] = ACTIONS(1301), - [anon_sym_DASH] = ACTIONS(1299), - [anon_sym_PLUS] = ACTIONS(1299), - [anon_sym_STAR] = ACTIONS(1301), - [anon_sym_AMP] = ACTIONS(1301), - [anon_sym_SEMI] = ACTIONS(1301), - [anon_sym___extension__] = ACTIONS(1299), - [anon_sym_typedef] = ACTIONS(1299), - [anon_sym_extern] = ACTIONS(1299), - [anon_sym___attribute__] = ACTIONS(1299), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1301), - [anon_sym___declspec] = ACTIONS(1299), - [anon_sym___cdecl] = ACTIONS(1299), - [anon_sym___clrcall] = ACTIONS(1299), - [anon_sym___stdcall] = ACTIONS(1299), - [anon_sym___fastcall] = ACTIONS(1299), - [anon_sym___thiscall] = ACTIONS(1299), - [anon_sym___vectorcall] = ACTIONS(1299), - [anon_sym_LBRACE] = ACTIONS(1301), - [anon_sym_RBRACE] = ACTIONS(1301), - [anon_sym_signed] = ACTIONS(1299), - [anon_sym_unsigned] = ACTIONS(1299), - [anon_sym_long] = ACTIONS(1299), - [anon_sym_short] = ACTIONS(1299), - [anon_sym_static] = ACTIONS(1299), - [anon_sym_auto] = ACTIONS(1299), - [anon_sym_register] = ACTIONS(1299), - [anon_sym_inline] = ACTIONS(1299), - [anon_sym___inline] = ACTIONS(1299), - [anon_sym___inline__] = ACTIONS(1299), - [anon_sym___forceinline] = ACTIONS(1299), - [anon_sym_thread_local] = ACTIONS(1299), - [anon_sym___thread] = ACTIONS(1299), - [anon_sym_const] = ACTIONS(1299), - [anon_sym_constexpr] = ACTIONS(1299), - [anon_sym_volatile] = ACTIONS(1299), - [anon_sym_restrict] = ACTIONS(1299), - [anon_sym___restrict__] = ACTIONS(1299), - [anon_sym__Atomic] = ACTIONS(1299), - [anon_sym__Noreturn] = ACTIONS(1299), - [anon_sym_noreturn] = ACTIONS(1299), - [anon_sym_alignas] = ACTIONS(1299), - [anon_sym__Alignas] = ACTIONS(1299), - [sym_primitive_type] = ACTIONS(1299), - [anon_sym_enum] = ACTIONS(1299), - [anon_sym_struct] = ACTIONS(1299), - [anon_sym_union] = ACTIONS(1299), - [anon_sym_if] = ACTIONS(1299), - [anon_sym_switch] = ACTIONS(1299), - [anon_sym_case] = ACTIONS(1299), - [anon_sym_default] = ACTIONS(1299), - [anon_sym_while] = ACTIONS(1299), - [anon_sym_do] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1299), - [anon_sym_return] = ACTIONS(1299), - [anon_sym_break] = ACTIONS(1299), - [anon_sym_continue] = ACTIONS(1299), - [anon_sym_goto] = ACTIONS(1299), - [anon_sym___try] = ACTIONS(1299), - [anon_sym___leave] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1301), - [anon_sym_PLUS_PLUS] = ACTIONS(1301), - [anon_sym_sizeof] = ACTIONS(1299), - [anon_sym___alignof__] = ACTIONS(1299), - [anon_sym___alignof] = ACTIONS(1299), - [anon_sym__alignof] = ACTIONS(1299), - [anon_sym_alignof] = ACTIONS(1299), - [anon_sym__Alignof] = ACTIONS(1299), - [anon_sym_offsetof] = ACTIONS(1299), - [anon_sym__Generic] = ACTIONS(1299), - [anon_sym_asm] = ACTIONS(1299), - [anon_sym___asm__] = ACTIONS(1299), - [sym_number_literal] = ACTIONS(1301), - [anon_sym_L_SQUOTE] = ACTIONS(1301), - [anon_sym_u_SQUOTE] = ACTIONS(1301), - [anon_sym_U_SQUOTE] = ACTIONS(1301), - [anon_sym_u8_SQUOTE] = ACTIONS(1301), - [anon_sym_SQUOTE] = ACTIONS(1301), - [anon_sym_L_DQUOTE] = ACTIONS(1301), - [anon_sym_u_DQUOTE] = ACTIONS(1301), - [anon_sym_U_DQUOTE] = ACTIONS(1301), - [anon_sym_u8_DQUOTE] = ACTIONS(1301), - [anon_sym_DQUOTE] = ACTIONS(1301), - [sym_true] = ACTIONS(1299), - [sym_false] = ACTIONS(1299), - [anon_sym_NULL] = ACTIONS(1299), - [anon_sym_nullptr] = ACTIONS(1299), - [sym_comment] = ACTIONS(3), - }, - [324] = { - [sym_identifier] = ACTIONS(1259), - [aux_sym_preproc_include_token1] = ACTIONS(1259), - [aux_sym_preproc_def_token1] = ACTIONS(1259), - [aux_sym_preproc_if_token1] = ACTIONS(1259), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1259), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1259), - [sym_preproc_directive] = ACTIONS(1259), - [anon_sym_LPAREN2] = ACTIONS(1261), - [anon_sym_BANG] = ACTIONS(1261), - [anon_sym_TILDE] = ACTIONS(1261), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_STAR] = ACTIONS(1261), - [anon_sym_AMP] = ACTIONS(1261), - [anon_sym_SEMI] = ACTIONS(1261), - [anon_sym___extension__] = ACTIONS(1259), - [anon_sym_typedef] = ACTIONS(1259), - [anon_sym_extern] = ACTIONS(1259), - [anon_sym___attribute__] = ACTIONS(1259), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1261), - [anon_sym___declspec] = ACTIONS(1259), - [anon_sym___cdecl] = ACTIONS(1259), - [anon_sym___clrcall] = ACTIONS(1259), - [anon_sym___stdcall] = ACTIONS(1259), - [anon_sym___fastcall] = ACTIONS(1259), - [anon_sym___thiscall] = ACTIONS(1259), - [anon_sym___vectorcall] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(1261), - [anon_sym_RBRACE] = ACTIONS(1261), - [anon_sym_signed] = ACTIONS(1259), - [anon_sym_unsigned] = ACTIONS(1259), - [anon_sym_long] = ACTIONS(1259), - [anon_sym_short] = ACTIONS(1259), - [anon_sym_static] = ACTIONS(1259), - [anon_sym_auto] = ACTIONS(1259), - [anon_sym_register] = ACTIONS(1259), - [anon_sym_inline] = ACTIONS(1259), - [anon_sym___inline] = ACTIONS(1259), - [anon_sym___inline__] = ACTIONS(1259), - [anon_sym___forceinline] = ACTIONS(1259), - [anon_sym_thread_local] = ACTIONS(1259), - [anon_sym___thread] = ACTIONS(1259), - [anon_sym_const] = ACTIONS(1259), - [anon_sym_constexpr] = ACTIONS(1259), - [anon_sym_volatile] = ACTIONS(1259), - [anon_sym_restrict] = ACTIONS(1259), - [anon_sym___restrict__] = ACTIONS(1259), - [anon_sym__Atomic] = ACTIONS(1259), - [anon_sym__Noreturn] = ACTIONS(1259), - [anon_sym_noreturn] = ACTIONS(1259), - [anon_sym_alignas] = ACTIONS(1259), - [anon_sym__Alignas] = ACTIONS(1259), - [sym_primitive_type] = ACTIONS(1259), - [anon_sym_enum] = ACTIONS(1259), - [anon_sym_struct] = ACTIONS(1259), - [anon_sym_union] = ACTIONS(1259), - [anon_sym_if] = ACTIONS(1259), - [anon_sym_switch] = ACTIONS(1259), - [anon_sym_case] = ACTIONS(1259), - [anon_sym_default] = ACTIONS(1259), - [anon_sym_while] = ACTIONS(1259), - [anon_sym_do] = ACTIONS(1259), - [anon_sym_for] = ACTIONS(1259), - [anon_sym_return] = ACTIONS(1259), - [anon_sym_break] = ACTIONS(1259), - [anon_sym_continue] = ACTIONS(1259), - [anon_sym_goto] = ACTIONS(1259), - [anon_sym___try] = ACTIONS(1259), - [anon_sym___leave] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1261), - [anon_sym_PLUS_PLUS] = ACTIONS(1261), - [anon_sym_sizeof] = ACTIONS(1259), - [anon_sym___alignof__] = ACTIONS(1259), - [anon_sym___alignof] = ACTIONS(1259), - [anon_sym__alignof] = ACTIONS(1259), - [anon_sym_alignof] = ACTIONS(1259), - [anon_sym__Alignof] = ACTIONS(1259), - [anon_sym_offsetof] = ACTIONS(1259), - [anon_sym__Generic] = ACTIONS(1259), - [anon_sym_asm] = ACTIONS(1259), - [anon_sym___asm__] = ACTIONS(1259), - [sym_number_literal] = ACTIONS(1261), - [anon_sym_L_SQUOTE] = ACTIONS(1261), - [anon_sym_u_SQUOTE] = ACTIONS(1261), - [anon_sym_U_SQUOTE] = ACTIONS(1261), - [anon_sym_u8_SQUOTE] = ACTIONS(1261), - [anon_sym_SQUOTE] = ACTIONS(1261), - [anon_sym_L_DQUOTE] = ACTIONS(1261), - [anon_sym_u_DQUOTE] = ACTIONS(1261), - [anon_sym_U_DQUOTE] = ACTIONS(1261), - [anon_sym_u8_DQUOTE] = ACTIONS(1261), - [anon_sym_DQUOTE] = ACTIONS(1261), - [sym_true] = ACTIONS(1259), - [sym_false] = ACTIONS(1259), - [anon_sym_NULL] = ACTIONS(1259), - [anon_sym_nullptr] = ACTIONS(1259), + [279] = { + [sym_identifier] = ACTIONS(1331), + [aux_sym_preproc_include_token1] = ACTIONS(1331), + [aux_sym_preproc_def_token1] = ACTIONS(1331), + [aux_sym_preproc_if_token1] = ACTIONS(1331), + [aux_sym_preproc_if_token2] = ACTIONS(1331), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1331), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1331), + [sym_preproc_directive] = ACTIONS(1331), + [anon_sym_LPAREN2] = ACTIONS(1333), + [anon_sym_BANG] = ACTIONS(1333), + [anon_sym_TILDE] = ACTIONS(1333), + [anon_sym_DASH] = ACTIONS(1331), + [anon_sym_PLUS] = ACTIONS(1331), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_AMP] = ACTIONS(1333), + [anon_sym_SEMI] = ACTIONS(1333), + [anon_sym___extension__] = ACTIONS(1331), + [anon_sym_typedef] = ACTIONS(1331), + [anon_sym_extern] = ACTIONS(1331), + [anon_sym___attribute__] = ACTIONS(1331), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1333), + [anon_sym___declspec] = ACTIONS(1331), + [anon_sym___cdecl] = ACTIONS(1331), + [anon_sym___clrcall] = ACTIONS(1331), + [anon_sym___stdcall] = ACTIONS(1331), + [anon_sym___fastcall] = ACTIONS(1331), + [anon_sym___thiscall] = ACTIONS(1331), + [anon_sym___vectorcall] = ACTIONS(1331), + [anon_sym_LBRACE] = ACTIONS(1333), + [anon_sym_signed] = ACTIONS(1331), + [anon_sym_unsigned] = ACTIONS(1331), + [anon_sym_long] = ACTIONS(1331), + [anon_sym_short] = ACTIONS(1331), + [anon_sym_static] = ACTIONS(1331), + [anon_sym_auto] = ACTIONS(1331), + [anon_sym_register] = ACTIONS(1331), + [anon_sym_inline] = ACTIONS(1331), + [anon_sym___inline] = ACTIONS(1331), + [anon_sym___inline__] = ACTIONS(1331), + [anon_sym___forceinline] = ACTIONS(1331), + [anon_sym_thread_local] = ACTIONS(1331), + [anon_sym___thread] = ACTIONS(1331), + [anon_sym_const] = ACTIONS(1331), + [anon_sym_constexpr] = ACTIONS(1331), + [anon_sym_volatile] = ACTIONS(1331), + [anon_sym_restrict] = ACTIONS(1331), + [anon_sym___restrict__] = ACTIONS(1331), + [anon_sym__Atomic] = ACTIONS(1331), + [anon_sym__Noreturn] = ACTIONS(1331), + [anon_sym_noreturn] = ACTIONS(1331), + [anon_sym_alignas] = ACTIONS(1331), + [anon_sym__Alignas] = 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_case] = ACTIONS(1331), + [anon_sym_default] = 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___try] = ACTIONS(1331), + [anon_sym___leave] = ACTIONS(1331), + [anon_sym_DASH_DASH] = ACTIONS(1333), + [anon_sym_PLUS_PLUS] = ACTIONS(1333), + [anon_sym_sizeof] = ACTIONS(1331), + [anon_sym___alignof__] = ACTIONS(1331), + [anon_sym___alignof] = ACTIONS(1331), + [anon_sym__alignof] = ACTIONS(1331), + [anon_sym_alignof] = ACTIONS(1331), + [anon_sym__Alignof] = ACTIONS(1331), + [anon_sym_offsetof] = ACTIONS(1331), + [anon_sym__Generic] = ACTIONS(1331), + [anon_sym_asm] = ACTIONS(1331), + [anon_sym___asm__] = ACTIONS(1331), + [sym_number_literal] = ACTIONS(1333), + [anon_sym_L_SQUOTE] = ACTIONS(1333), + [anon_sym_u_SQUOTE] = ACTIONS(1333), + [anon_sym_U_SQUOTE] = ACTIONS(1333), + [anon_sym_u8_SQUOTE] = ACTIONS(1333), + [anon_sym_SQUOTE] = ACTIONS(1333), + [anon_sym_L_DQUOTE] = ACTIONS(1333), + [anon_sym_u_DQUOTE] = ACTIONS(1333), + [anon_sym_U_DQUOTE] = ACTIONS(1333), + [anon_sym_u8_DQUOTE] = ACTIONS(1333), + [anon_sym_DQUOTE] = ACTIONS(1333), + [sym_true] = ACTIONS(1331), + [sym_false] = ACTIONS(1331), + [anon_sym_NULL] = ACTIONS(1331), + [anon_sym_nullptr] = ACTIONS(1331), [sym_comment] = ACTIONS(3), }, - [325] = { - [sym__expression] = STATE(747), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(725), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(725), - [sym_call_expression] = STATE(725), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(725), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(725), - [sym_initializer_list] = STATE(723), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym_identifier] = ACTIONS(1365), - [anon_sym_COMMA] = ACTIONS(1367), - [anon_sym_RPAREN] = ACTIONS(1367), - [anon_sym_LPAREN2] = ACTIONS(1367), - [anon_sym_BANG] = ACTIONS(1369), - [anon_sym_TILDE] = ACTIONS(1371), - [anon_sym_DASH] = ACTIONS(1373), - [anon_sym_PLUS] = ACTIONS(1373), - [anon_sym_STAR] = ACTIONS(1373), - [anon_sym_SLASH] = ACTIONS(1373), - [anon_sym_PERCENT] = ACTIONS(1373), - [anon_sym_PIPE_PIPE] = ACTIONS(1367), - [anon_sym_AMP_AMP] = ACTIONS(1367), - [anon_sym_PIPE] = ACTIONS(1373), - [anon_sym_CARET] = ACTIONS(1373), - [anon_sym_AMP] = ACTIONS(1373), - [anon_sym_EQ_EQ] = ACTIONS(1367), - [anon_sym_BANG_EQ] = ACTIONS(1367), - [anon_sym_GT] = ACTIONS(1373), - [anon_sym_GT_EQ] = ACTIONS(1367), - [anon_sym_LT_EQ] = ACTIONS(1367), - [anon_sym_LT] = ACTIONS(1373), - [anon_sym_LT_LT] = ACTIONS(1373), - [anon_sym_GT_GT] = ACTIONS(1373), - [anon_sym_SEMI] = ACTIONS(1367), - [anon_sym___attribute__] = ACTIONS(1373), - [anon_sym_LBRACE] = ACTIONS(1375), - [anon_sym_RBRACE] = ACTIONS(1367), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_EQ] = ACTIONS(1373), - [anon_sym_COLON] = ACTIONS(1367), - [anon_sym_QMARK] = ACTIONS(1367), - [anon_sym_STAR_EQ] = ACTIONS(1367), - [anon_sym_SLASH_EQ] = ACTIONS(1367), - [anon_sym_PERCENT_EQ] = ACTIONS(1367), - [anon_sym_PLUS_EQ] = ACTIONS(1367), - [anon_sym_DASH_EQ] = ACTIONS(1367), - [anon_sym_LT_LT_EQ] = ACTIONS(1367), - [anon_sym_GT_GT_EQ] = ACTIONS(1367), - [anon_sym_AMP_EQ] = ACTIONS(1367), - [anon_sym_CARET_EQ] = ACTIONS(1367), - [anon_sym_PIPE_EQ] = ACTIONS(1367), - [anon_sym_DASH_DASH] = ACTIONS(1367), - [anon_sym_PLUS_PLUS] = ACTIONS(1367), - [anon_sym_sizeof] = ACTIONS(1377), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [anon_sym_DOT] = ACTIONS(1373), - [anon_sym_DASH_GT] = ACTIONS(1367), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [280] = { + [sym_identifier] = ACTIONS(1343), + [aux_sym_preproc_include_token1] = ACTIONS(1343), + [aux_sym_preproc_def_token1] = ACTIONS(1343), + [aux_sym_preproc_if_token1] = ACTIONS(1343), + [aux_sym_preproc_if_token2] = ACTIONS(1343), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1343), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1343), + [sym_preproc_directive] = ACTIONS(1343), + [anon_sym_LPAREN2] = ACTIONS(1345), + [anon_sym_BANG] = ACTIONS(1345), + [anon_sym_TILDE] = ACTIONS(1345), + [anon_sym_DASH] = ACTIONS(1343), + [anon_sym_PLUS] = ACTIONS(1343), + [anon_sym_STAR] = ACTIONS(1345), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_SEMI] = ACTIONS(1345), + [anon_sym___extension__] = ACTIONS(1343), + [anon_sym_typedef] = ACTIONS(1343), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym___attribute__] = ACTIONS(1343), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1345), + [anon_sym___declspec] = ACTIONS(1343), + [anon_sym___cdecl] = ACTIONS(1343), + [anon_sym___clrcall] = ACTIONS(1343), + [anon_sym___stdcall] = ACTIONS(1343), + [anon_sym___fastcall] = ACTIONS(1343), + [anon_sym___thiscall] = ACTIONS(1343), + [anon_sym___vectorcall] = ACTIONS(1343), + [anon_sym_LBRACE] = ACTIONS(1345), + [anon_sym_signed] = ACTIONS(1343), + [anon_sym_unsigned] = ACTIONS(1343), + [anon_sym_long] = ACTIONS(1343), + [anon_sym_short] = ACTIONS(1343), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_auto] = ACTIONS(1343), + [anon_sym_register] = ACTIONS(1343), + [anon_sym_inline] = ACTIONS(1343), + [anon_sym___inline] = ACTIONS(1343), + [anon_sym___inline__] = ACTIONS(1343), + [anon_sym___forceinline] = ACTIONS(1343), + [anon_sym_thread_local] = ACTIONS(1343), + [anon_sym___thread] = ACTIONS(1343), + [anon_sym_const] = ACTIONS(1343), + [anon_sym_constexpr] = ACTIONS(1343), + [anon_sym_volatile] = ACTIONS(1343), + [anon_sym_restrict] = ACTIONS(1343), + [anon_sym___restrict__] = ACTIONS(1343), + [anon_sym__Atomic] = ACTIONS(1343), + [anon_sym__Noreturn] = ACTIONS(1343), + [anon_sym_noreturn] = ACTIONS(1343), + [anon_sym_alignas] = ACTIONS(1343), + [anon_sym__Alignas] = 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_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___try] = ACTIONS(1343), + [anon_sym___leave] = ACTIONS(1343), + [anon_sym_DASH_DASH] = ACTIONS(1345), + [anon_sym_PLUS_PLUS] = ACTIONS(1345), + [anon_sym_sizeof] = ACTIONS(1343), + [anon_sym___alignof__] = ACTIONS(1343), + [anon_sym___alignof] = ACTIONS(1343), + [anon_sym__alignof] = ACTIONS(1343), + [anon_sym_alignof] = ACTIONS(1343), + [anon_sym__Alignof] = ACTIONS(1343), + [anon_sym_offsetof] = ACTIONS(1343), + [anon_sym__Generic] = ACTIONS(1343), + [anon_sym_asm] = ACTIONS(1343), + [anon_sym___asm__] = ACTIONS(1343), + [sym_number_literal] = ACTIONS(1345), + [anon_sym_L_SQUOTE] = ACTIONS(1345), + [anon_sym_u_SQUOTE] = ACTIONS(1345), + [anon_sym_U_SQUOTE] = ACTIONS(1345), + [anon_sym_u8_SQUOTE] = ACTIONS(1345), + [anon_sym_SQUOTE] = ACTIONS(1345), + [anon_sym_L_DQUOTE] = ACTIONS(1345), + [anon_sym_u_DQUOTE] = ACTIONS(1345), + [anon_sym_U_DQUOTE] = ACTIONS(1345), + [anon_sym_u8_DQUOTE] = ACTIONS(1345), + [anon_sym_DQUOTE] = ACTIONS(1345), + [sym_true] = ACTIONS(1343), + [sym_false] = ACTIONS(1343), + [anon_sym_NULL] = ACTIONS(1343), + [anon_sym_nullptr] = ACTIONS(1343), [sym_comment] = ACTIONS(3), }, - [326] = { - [sym_identifier] = ACTIONS(1247), - [aux_sym_preproc_include_token1] = ACTIONS(1247), - [aux_sym_preproc_def_token1] = ACTIONS(1247), - [aux_sym_preproc_if_token1] = ACTIONS(1247), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1247), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1247), - [sym_preproc_directive] = ACTIONS(1247), - [anon_sym_LPAREN2] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1249), - [anon_sym_TILDE] = ACTIONS(1249), - [anon_sym_DASH] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1247), - [anon_sym_STAR] = ACTIONS(1249), - [anon_sym_AMP] = ACTIONS(1249), - [anon_sym_SEMI] = ACTIONS(1249), - [anon_sym___extension__] = ACTIONS(1247), - [anon_sym_typedef] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1247), - [anon_sym___attribute__] = ACTIONS(1247), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1249), - [anon_sym___declspec] = ACTIONS(1247), - [anon_sym___cdecl] = ACTIONS(1247), - [anon_sym___clrcall] = ACTIONS(1247), - [anon_sym___stdcall] = ACTIONS(1247), - [anon_sym___fastcall] = ACTIONS(1247), - [anon_sym___thiscall] = ACTIONS(1247), - [anon_sym___vectorcall] = ACTIONS(1247), - [anon_sym_LBRACE] = ACTIONS(1249), - [anon_sym_RBRACE] = ACTIONS(1249), - [anon_sym_signed] = ACTIONS(1247), - [anon_sym_unsigned] = ACTIONS(1247), - [anon_sym_long] = ACTIONS(1247), - [anon_sym_short] = ACTIONS(1247), - [anon_sym_static] = ACTIONS(1247), - [anon_sym_auto] = ACTIONS(1247), - [anon_sym_register] = ACTIONS(1247), - [anon_sym_inline] = ACTIONS(1247), - [anon_sym___inline] = ACTIONS(1247), - [anon_sym___inline__] = ACTIONS(1247), - [anon_sym___forceinline] = ACTIONS(1247), - [anon_sym_thread_local] = ACTIONS(1247), - [anon_sym___thread] = ACTIONS(1247), - [anon_sym_const] = ACTIONS(1247), - [anon_sym_constexpr] = ACTIONS(1247), - [anon_sym_volatile] = ACTIONS(1247), - [anon_sym_restrict] = ACTIONS(1247), - [anon_sym___restrict__] = ACTIONS(1247), - [anon_sym__Atomic] = ACTIONS(1247), - [anon_sym__Noreturn] = ACTIONS(1247), - [anon_sym_noreturn] = ACTIONS(1247), - [anon_sym_alignas] = ACTIONS(1247), - [anon_sym__Alignas] = ACTIONS(1247), - [sym_primitive_type] = ACTIONS(1247), - [anon_sym_enum] = ACTIONS(1247), - [anon_sym_struct] = ACTIONS(1247), - [anon_sym_union] = ACTIONS(1247), - [anon_sym_if] = ACTIONS(1247), - [anon_sym_switch] = ACTIONS(1247), - [anon_sym_case] = ACTIONS(1247), - [anon_sym_default] = ACTIONS(1247), - [anon_sym_while] = ACTIONS(1247), - [anon_sym_do] = ACTIONS(1247), - [anon_sym_for] = ACTIONS(1247), - [anon_sym_return] = ACTIONS(1247), - [anon_sym_break] = ACTIONS(1247), - [anon_sym_continue] = ACTIONS(1247), - [anon_sym_goto] = ACTIONS(1247), - [anon_sym___try] = ACTIONS(1247), - [anon_sym___leave] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1249), - [anon_sym_PLUS_PLUS] = ACTIONS(1249), - [anon_sym_sizeof] = ACTIONS(1247), - [anon_sym___alignof__] = ACTIONS(1247), - [anon_sym___alignof] = ACTIONS(1247), - [anon_sym__alignof] = ACTIONS(1247), - [anon_sym_alignof] = ACTIONS(1247), - [anon_sym__Alignof] = ACTIONS(1247), - [anon_sym_offsetof] = ACTIONS(1247), - [anon_sym__Generic] = ACTIONS(1247), - [anon_sym_asm] = ACTIONS(1247), - [anon_sym___asm__] = ACTIONS(1247), - [sym_number_literal] = ACTIONS(1249), - [anon_sym_L_SQUOTE] = ACTIONS(1249), - [anon_sym_u_SQUOTE] = ACTIONS(1249), - [anon_sym_U_SQUOTE] = ACTIONS(1249), - [anon_sym_u8_SQUOTE] = ACTIONS(1249), - [anon_sym_SQUOTE] = ACTIONS(1249), - [anon_sym_L_DQUOTE] = ACTIONS(1249), - [anon_sym_u_DQUOTE] = ACTIONS(1249), - [anon_sym_U_DQUOTE] = ACTIONS(1249), - [anon_sym_u8_DQUOTE] = ACTIONS(1249), - [anon_sym_DQUOTE] = ACTIONS(1249), - [sym_true] = ACTIONS(1247), - [sym_false] = ACTIONS(1247), - [anon_sym_NULL] = ACTIONS(1247), - [anon_sym_nullptr] = ACTIONS(1247), + [281] = { + [sym_identifier] = ACTIONS(1351), + [aux_sym_preproc_include_token1] = ACTIONS(1351), + [aux_sym_preproc_def_token1] = ACTIONS(1351), + [aux_sym_preproc_if_token1] = ACTIONS(1351), + [aux_sym_preproc_if_token2] = ACTIONS(1351), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1351), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1351), + [sym_preproc_directive] = ACTIONS(1351), + [anon_sym_LPAREN2] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1353), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_DASH] = ACTIONS(1351), + [anon_sym_PLUS] = ACTIONS(1351), + [anon_sym_STAR] = ACTIONS(1353), + [anon_sym_AMP] = ACTIONS(1353), + [anon_sym_SEMI] = ACTIONS(1353), + [anon_sym___extension__] = ACTIONS(1351), + [anon_sym_typedef] = ACTIONS(1351), + [anon_sym_extern] = ACTIONS(1351), + [anon_sym___attribute__] = ACTIONS(1351), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1353), + [anon_sym___declspec] = ACTIONS(1351), + [anon_sym___cdecl] = ACTIONS(1351), + [anon_sym___clrcall] = ACTIONS(1351), + [anon_sym___stdcall] = ACTIONS(1351), + [anon_sym___fastcall] = ACTIONS(1351), + [anon_sym___thiscall] = ACTIONS(1351), + [anon_sym___vectorcall] = ACTIONS(1351), + [anon_sym_LBRACE] = ACTIONS(1353), + [anon_sym_signed] = ACTIONS(1351), + [anon_sym_unsigned] = ACTIONS(1351), + [anon_sym_long] = ACTIONS(1351), + [anon_sym_short] = ACTIONS(1351), + [anon_sym_static] = ACTIONS(1351), + [anon_sym_auto] = ACTIONS(1351), + [anon_sym_register] = ACTIONS(1351), + [anon_sym_inline] = ACTIONS(1351), + [anon_sym___inline] = ACTIONS(1351), + [anon_sym___inline__] = ACTIONS(1351), + [anon_sym___forceinline] = ACTIONS(1351), + [anon_sym_thread_local] = ACTIONS(1351), + [anon_sym___thread] = ACTIONS(1351), + [anon_sym_const] = ACTIONS(1351), + [anon_sym_constexpr] = ACTIONS(1351), + [anon_sym_volatile] = ACTIONS(1351), + [anon_sym_restrict] = ACTIONS(1351), + [anon_sym___restrict__] = ACTIONS(1351), + [anon_sym__Atomic] = ACTIONS(1351), + [anon_sym__Noreturn] = ACTIONS(1351), + [anon_sym_noreturn] = ACTIONS(1351), + [anon_sym_alignas] = ACTIONS(1351), + [anon_sym__Alignas] = ACTIONS(1351), + [sym_primitive_type] = ACTIONS(1351), + [anon_sym_enum] = ACTIONS(1351), + [anon_sym_struct] = ACTIONS(1351), + [anon_sym_union] = ACTIONS(1351), + [anon_sym_if] = ACTIONS(1351), + [anon_sym_switch] = ACTIONS(1351), + [anon_sym_case] = ACTIONS(1351), + [anon_sym_default] = ACTIONS(1351), + [anon_sym_while] = ACTIONS(1351), + [anon_sym_do] = ACTIONS(1351), + [anon_sym_for] = ACTIONS(1351), + [anon_sym_return] = ACTIONS(1351), + [anon_sym_break] = ACTIONS(1351), + [anon_sym_continue] = ACTIONS(1351), + [anon_sym_goto] = ACTIONS(1351), + [anon_sym___try] = ACTIONS(1351), + [anon_sym___leave] = ACTIONS(1351), + [anon_sym_DASH_DASH] = ACTIONS(1353), + [anon_sym_PLUS_PLUS] = ACTIONS(1353), + [anon_sym_sizeof] = ACTIONS(1351), + [anon_sym___alignof__] = ACTIONS(1351), + [anon_sym___alignof] = ACTIONS(1351), + [anon_sym__alignof] = ACTIONS(1351), + [anon_sym_alignof] = ACTIONS(1351), + [anon_sym__Alignof] = ACTIONS(1351), + [anon_sym_offsetof] = ACTIONS(1351), + [anon_sym__Generic] = ACTIONS(1351), + [anon_sym_asm] = ACTIONS(1351), + [anon_sym___asm__] = ACTIONS(1351), + [sym_number_literal] = ACTIONS(1353), + [anon_sym_L_SQUOTE] = ACTIONS(1353), + [anon_sym_u_SQUOTE] = ACTIONS(1353), + [anon_sym_U_SQUOTE] = ACTIONS(1353), + [anon_sym_u8_SQUOTE] = ACTIONS(1353), + [anon_sym_SQUOTE] = ACTIONS(1353), + [anon_sym_L_DQUOTE] = ACTIONS(1353), + [anon_sym_u_DQUOTE] = ACTIONS(1353), + [anon_sym_U_DQUOTE] = ACTIONS(1353), + [anon_sym_u8_DQUOTE] = ACTIONS(1353), + [anon_sym_DQUOTE] = ACTIONS(1353), + [sym_true] = ACTIONS(1351), + [sym_false] = ACTIONS(1351), + [anon_sym_NULL] = ACTIONS(1351), + [anon_sym_nullptr] = ACTIONS(1351), [sym_comment] = ACTIONS(3), }, - [327] = { - [sym_identifier] = ACTIONS(1355), - [aux_sym_preproc_include_token1] = ACTIONS(1355), - [aux_sym_preproc_def_token1] = ACTIONS(1355), - [aux_sym_preproc_if_token1] = ACTIONS(1355), - [aux_sym_preproc_if_token2] = ACTIONS(1355), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1355), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1355), - [sym_preproc_directive] = ACTIONS(1355), - [anon_sym_LPAREN2] = ACTIONS(1357), - [anon_sym_BANG] = ACTIONS(1357), - [anon_sym_TILDE] = ACTIONS(1357), - [anon_sym_DASH] = ACTIONS(1355), - [anon_sym_PLUS] = ACTIONS(1355), - [anon_sym_STAR] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(1357), - [anon_sym_SEMI] = ACTIONS(1357), - [anon_sym___extension__] = ACTIONS(1355), - [anon_sym_typedef] = ACTIONS(1355), - [anon_sym_extern] = ACTIONS(1355), - [anon_sym___attribute__] = ACTIONS(1355), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1357), - [anon_sym___declspec] = ACTIONS(1355), - [anon_sym___cdecl] = ACTIONS(1355), - [anon_sym___clrcall] = ACTIONS(1355), - [anon_sym___stdcall] = ACTIONS(1355), - [anon_sym___fastcall] = ACTIONS(1355), - [anon_sym___thiscall] = ACTIONS(1355), - [anon_sym___vectorcall] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(1357), - [anon_sym_signed] = ACTIONS(1355), - [anon_sym_unsigned] = ACTIONS(1355), - [anon_sym_long] = ACTIONS(1355), - [anon_sym_short] = ACTIONS(1355), - [anon_sym_static] = ACTIONS(1355), - [anon_sym_auto] = ACTIONS(1355), - [anon_sym_register] = ACTIONS(1355), - [anon_sym_inline] = ACTIONS(1355), - [anon_sym___inline] = ACTIONS(1355), - [anon_sym___inline__] = ACTIONS(1355), - [anon_sym___forceinline] = ACTIONS(1355), - [anon_sym_thread_local] = ACTIONS(1355), - [anon_sym___thread] = ACTIONS(1355), - [anon_sym_const] = ACTIONS(1355), - [anon_sym_constexpr] = ACTIONS(1355), - [anon_sym_volatile] = ACTIONS(1355), - [anon_sym_restrict] = ACTIONS(1355), - [anon_sym___restrict__] = ACTIONS(1355), - [anon_sym__Atomic] = ACTIONS(1355), - [anon_sym__Noreturn] = ACTIONS(1355), - [anon_sym_noreturn] = ACTIONS(1355), - [anon_sym_alignas] = ACTIONS(1355), - [anon_sym__Alignas] = 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___try] = ACTIONS(1355), - [anon_sym___leave] = ACTIONS(1355), - [anon_sym_DASH_DASH] = ACTIONS(1357), - [anon_sym_PLUS_PLUS] = ACTIONS(1357), - [anon_sym_sizeof] = ACTIONS(1355), - [anon_sym___alignof__] = ACTIONS(1355), - [anon_sym___alignof] = ACTIONS(1355), - [anon_sym__alignof] = ACTIONS(1355), - [anon_sym_alignof] = ACTIONS(1355), - [anon_sym__Alignof] = ACTIONS(1355), - [anon_sym_offsetof] = ACTIONS(1355), - [anon_sym__Generic] = ACTIONS(1355), - [anon_sym_asm] = ACTIONS(1355), - [anon_sym___asm__] = ACTIONS(1355), - [sym_number_literal] = ACTIONS(1357), - [anon_sym_L_SQUOTE] = ACTIONS(1357), - [anon_sym_u_SQUOTE] = ACTIONS(1357), - [anon_sym_U_SQUOTE] = ACTIONS(1357), - [anon_sym_u8_SQUOTE] = ACTIONS(1357), - [anon_sym_SQUOTE] = ACTIONS(1357), - [anon_sym_L_DQUOTE] = ACTIONS(1357), - [anon_sym_u_DQUOTE] = ACTIONS(1357), - [anon_sym_U_DQUOTE] = ACTIONS(1357), - [anon_sym_u8_DQUOTE] = ACTIONS(1357), - [anon_sym_DQUOTE] = ACTIONS(1357), - [sym_true] = ACTIONS(1355), - [sym_false] = ACTIONS(1355), - [anon_sym_NULL] = ACTIONS(1355), - [anon_sym_nullptr] = ACTIONS(1355), + [282] = { + [sym_identifier] = ACTIONS(1263), + [aux_sym_preproc_include_token1] = ACTIONS(1263), + [aux_sym_preproc_def_token1] = ACTIONS(1263), + [aux_sym_preproc_if_token1] = ACTIONS(1263), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1263), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1263), + [sym_preproc_directive] = ACTIONS(1263), + [anon_sym_LPAREN2] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_TILDE] = ACTIONS(1265), + [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1263), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_AMP] = ACTIONS(1265), + [anon_sym_SEMI] = ACTIONS(1265), + [anon_sym___extension__] = ACTIONS(1263), + [anon_sym_typedef] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1263), + [anon_sym___attribute__] = ACTIONS(1263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1265), + [anon_sym___declspec] = ACTIONS(1263), + [anon_sym___cdecl] = ACTIONS(1263), + [anon_sym___clrcall] = ACTIONS(1263), + [anon_sym___stdcall] = ACTIONS(1263), + [anon_sym___fastcall] = ACTIONS(1263), + [anon_sym___thiscall] = ACTIONS(1263), + [anon_sym___vectorcall] = ACTIONS(1263), + [anon_sym_LBRACE] = ACTIONS(1265), + [anon_sym_RBRACE] = ACTIONS(1265), + [anon_sym_signed] = ACTIONS(1263), + [anon_sym_unsigned] = ACTIONS(1263), + [anon_sym_long] = ACTIONS(1263), + [anon_sym_short] = ACTIONS(1263), + [anon_sym_static] = ACTIONS(1263), + [anon_sym_auto] = ACTIONS(1263), + [anon_sym_register] = ACTIONS(1263), + [anon_sym_inline] = ACTIONS(1263), + [anon_sym___inline] = ACTIONS(1263), + [anon_sym___inline__] = ACTIONS(1263), + [anon_sym___forceinline] = ACTIONS(1263), + [anon_sym_thread_local] = ACTIONS(1263), + [anon_sym___thread] = ACTIONS(1263), + [anon_sym_const] = ACTIONS(1263), + [anon_sym_constexpr] = ACTIONS(1263), + [anon_sym_volatile] = ACTIONS(1263), + [anon_sym_restrict] = ACTIONS(1263), + [anon_sym___restrict__] = ACTIONS(1263), + [anon_sym__Atomic] = ACTIONS(1263), + [anon_sym__Noreturn] = ACTIONS(1263), + [anon_sym_noreturn] = ACTIONS(1263), + [anon_sym_alignas] = ACTIONS(1263), + [anon_sym__Alignas] = ACTIONS(1263), + [sym_primitive_type] = ACTIONS(1263), + [anon_sym_enum] = ACTIONS(1263), + [anon_sym_struct] = ACTIONS(1263), + [anon_sym_union] = ACTIONS(1263), + [anon_sym_if] = ACTIONS(1263), + [anon_sym_switch] = ACTIONS(1263), + [anon_sym_case] = ACTIONS(1263), + [anon_sym_default] = ACTIONS(1263), + [anon_sym_while] = ACTIONS(1263), + [anon_sym_do] = ACTIONS(1263), + [anon_sym_for] = ACTIONS(1263), + [anon_sym_return] = ACTIONS(1263), + [anon_sym_break] = ACTIONS(1263), + [anon_sym_continue] = ACTIONS(1263), + [anon_sym_goto] = ACTIONS(1263), + [anon_sym___try] = ACTIONS(1263), + [anon_sym___leave] = ACTIONS(1263), + [anon_sym_DASH_DASH] = ACTIONS(1265), + [anon_sym_PLUS_PLUS] = ACTIONS(1265), + [anon_sym_sizeof] = ACTIONS(1263), + [anon_sym___alignof__] = ACTIONS(1263), + [anon_sym___alignof] = ACTIONS(1263), + [anon_sym__alignof] = ACTIONS(1263), + [anon_sym_alignof] = ACTIONS(1263), + [anon_sym__Alignof] = ACTIONS(1263), + [anon_sym_offsetof] = ACTIONS(1263), + [anon_sym__Generic] = ACTIONS(1263), + [anon_sym_asm] = ACTIONS(1263), + [anon_sym___asm__] = ACTIONS(1263), + [sym_number_literal] = ACTIONS(1265), + [anon_sym_L_SQUOTE] = ACTIONS(1265), + [anon_sym_u_SQUOTE] = ACTIONS(1265), + [anon_sym_U_SQUOTE] = ACTIONS(1265), + [anon_sym_u8_SQUOTE] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1265), + [anon_sym_L_DQUOTE] = ACTIONS(1265), + [anon_sym_u_DQUOTE] = ACTIONS(1265), + [anon_sym_U_DQUOTE] = ACTIONS(1265), + [anon_sym_u8_DQUOTE] = ACTIONS(1265), + [anon_sym_DQUOTE] = ACTIONS(1265), + [sym_true] = ACTIONS(1263), + [sym_false] = ACTIONS(1263), + [anon_sym_NULL] = ACTIONS(1263), + [anon_sym_nullptr] = ACTIONS(1263), [sym_comment] = ACTIONS(3), }, - [328] = { - [sym_identifier] = ACTIONS(1267), - [aux_sym_preproc_include_token1] = ACTIONS(1267), - [aux_sym_preproc_def_token1] = ACTIONS(1267), - [aux_sym_preproc_if_token1] = ACTIONS(1267), - [aux_sym_preproc_if_token2] = ACTIONS(1267), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1267), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1267), - [sym_preproc_directive] = ACTIONS(1267), - [anon_sym_LPAREN2] = ACTIONS(1269), - [anon_sym_BANG] = ACTIONS(1269), - [anon_sym_TILDE] = ACTIONS(1269), - [anon_sym_DASH] = ACTIONS(1267), - [anon_sym_PLUS] = ACTIONS(1267), - [anon_sym_STAR] = ACTIONS(1269), - [anon_sym_AMP] = ACTIONS(1269), - [anon_sym_SEMI] = ACTIONS(1269), - [anon_sym___extension__] = ACTIONS(1267), - [anon_sym_typedef] = ACTIONS(1267), - [anon_sym_extern] = ACTIONS(1267), - [anon_sym___attribute__] = ACTIONS(1267), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1269), - [anon_sym___declspec] = ACTIONS(1267), - [anon_sym___cdecl] = ACTIONS(1267), - [anon_sym___clrcall] = ACTIONS(1267), - [anon_sym___stdcall] = ACTIONS(1267), - [anon_sym___fastcall] = ACTIONS(1267), - [anon_sym___thiscall] = ACTIONS(1267), - [anon_sym___vectorcall] = ACTIONS(1267), - [anon_sym_LBRACE] = ACTIONS(1269), - [anon_sym_signed] = ACTIONS(1267), - [anon_sym_unsigned] = ACTIONS(1267), - [anon_sym_long] = ACTIONS(1267), - [anon_sym_short] = ACTIONS(1267), - [anon_sym_static] = ACTIONS(1267), - [anon_sym_auto] = ACTIONS(1267), - [anon_sym_register] = ACTIONS(1267), - [anon_sym_inline] = ACTIONS(1267), - [anon_sym___inline] = ACTIONS(1267), - [anon_sym___inline__] = ACTIONS(1267), - [anon_sym___forceinline] = ACTIONS(1267), - [anon_sym_thread_local] = ACTIONS(1267), - [anon_sym___thread] = ACTIONS(1267), - [anon_sym_const] = ACTIONS(1267), - [anon_sym_constexpr] = ACTIONS(1267), - [anon_sym_volatile] = ACTIONS(1267), - [anon_sym_restrict] = ACTIONS(1267), - [anon_sym___restrict__] = ACTIONS(1267), - [anon_sym__Atomic] = ACTIONS(1267), - [anon_sym__Noreturn] = ACTIONS(1267), - [anon_sym_noreturn] = ACTIONS(1267), - [anon_sym_alignas] = ACTIONS(1267), - [anon_sym__Alignas] = ACTIONS(1267), - [sym_primitive_type] = ACTIONS(1267), - [anon_sym_enum] = ACTIONS(1267), - [anon_sym_struct] = ACTIONS(1267), - [anon_sym_union] = ACTIONS(1267), - [anon_sym_if] = ACTIONS(1267), - [anon_sym_switch] = ACTIONS(1267), - [anon_sym_case] = ACTIONS(1267), - [anon_sym_default] = ACTIONS(1267), - [anon_sym_while] = ACTIONS(1267), - [anon_sym_do] = ACTIONS(1267), - [anon_sym_for] = ACTIONS(1267), - [anon_sym_return] = ACTIONS(1267), - [anon_sym_break] = ACTIONS(1267), - [anon_sym_continue] = ACTIONS(1267), - [anon_sym_goto] = ACTIONS(1267), - [anon_sym___try] = ACTIONS(1267), - [anon_sym___leave] = ACTIONS(1267), - [anon_sym_DASH_DASH] = ACTIONS(1269), - [anon_sym_PLUS_PLUS] = ACTIONS(1269), - [anon_sym_sizeof] = ACTIONS(1267), - [anon_sym___alignof__] = ACTIONS(1267), - [anon_sym___alignof] = ACTIONS(1267), - [anon_sym__alignof] = ACTIONS(1267), - [anon_sym_alignof] = ACTIONS(1267), - [anon_sym__Alignof] = ACTIONS(1267), - [anon_sym_offsetof] = ACTIONS(1267), - [anon_sym__Generic] = ACTIONS(1267), - [anon_sym_asm] = ACTIONS(1267), - [anon_sym___asm__] = ACTIONS(1267), - [sym_number_literal] = ACTIONS(1269), - [anon_sym_L_SQUOTE] = ACTIONS(1269), - [anon_sym_u_SQUOTE] = ACTIONS(1269), - [anon_sym_U_SQUOTE] = ACTIONS(1269), - [anon_sym_u8_SQUOTE] = ACTIONS(1269), - [anon_sym_SQUOTE] = ACTIONS(1269), - [anon_sym_L_DQUOTE] = ACTIONS(1269), - [anon_sym_u_DQUOTE] = ACTIONS(1269), - [anon_sym_U_DQUOTE] = ACTIONS(1269), - [anon_sym_u8_DQUOTE] = ACTIONS(1269), - [anon_sym_DQUOTE] = ACTIONS(1269), - [sym_true] = ACTIONS(1267), - [sym_false] = ACTIONS(1267), - [anon_sym_NULL] = ACTIONS(1267), - [anon_sym_nullptr] = ACTIONS(1267), + [283] = { + [sym_identifier] = ACTIONS(1335), + [aux_sym_preproc_include_token1] = ACTIONS(1335), + [aux_sym_preproc_def_token1] = ACTIONS(1335), + [aux_sym_preproc_if_token1] = ACTIONS(1335), + [aux_sym_preproc_if_token2] = ACTIONS(1335), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1335), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1335), + [sym_preproc_directive] = ACTIONS(1335), + [anon_sym_LPAREN2] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1337), + [anon_sym_TILDE] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1335), + [anon_sym_PLUS] = ACTIONS(1335), + [anon_sym_STAR] = ACTIONS(1337), + [anon_sym_AMP] = ACTIONS(1337), + [anon_sym_SEMI] = ACTIONS(1337), + [anon_sym___extension__] = ACTIONS(1335), + [anon_sym_typedef] = ACTIONS(1335), + [anon_sym_extern] = ACTIONS(1335), + [anon_sym___attribute__] = ACTIONS(1335), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1337), + [anon_sym___declspec] = ACTIONS(1335), + [anon_sym___cdecl] = ACTIONS(1335), + [anon_sym___clrcall] = ACTIONS(1335), + [anon_sym___stdcall] = ACTIONS(1335), + [anon_sym___fastcall] = ACTIONS(1335), + [anon_sym___thiscall] = ACTIONS(1335), + [anon_sym___vectorcall] = ACTIONS(1335), + [anon_sym_LBRACE] = ACTIONS(1337), + [anon_sym_signed] = ACTIONS(1335), + [anon_sym_unsigned] = ACTIONS(1335), + [anon_sym_long] = ACTIONS(1335), + [anon_sym_short] = ACTIONS(1335), + [anon_sym_static] = ACTIONS(1335), + [anon_sym_auto] = ACTIONS(1335), + [anon_sym_register] = ACTIONS(1335), + [anon_sym_inline] = ACTIONS(1335), + [anon_sym___inline] = ACTIONS(1335), + [anon_sym___inline__] = ACTIONS(1335), + [anon_sym___forceinline] = ACTIONS(1335), + [anon_sym_thread_local] = ACTIONS(1335), + [anon_sym___thread] = ACTIONS(1335), + [anon_sym_const] = ACTIONS(1335), + [anon_sym_constexpr] = ACTIONS(1335), + [anon_sym_volatile] = ACTIONS(1335), + [anon_sym_restrict] = ACTIONS(1335), + [anon_sym___restrict__] = ACTIONS(1335), + [anon_sym__Atomic] = ACTIONS(1335), + [anon_sym__Noreturn] = ACTIONS(1335), + [anon_sym_noreturn] = ACTIONS(1335), + [anon_sym_alignas] = ACTIONS(1335), + [anon_sym__Alignas] = ACTIONS(1335), + [sym_primitive_type] = ACTIONS(1335), + [anon_sym_enum] = ACTIONS(1335), + [anon_sym_struct] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1335), + [anon_sym_if] = ACTIONS(1335), + [anon_sym_switch] = ACTIONS(1335), + [anon_sym_case] = ACTIONS(1335), + [anon_sym_default] = ACTIONS(1335), + [anon_sym_while] = ACTIONS(1335), + [anon_sym_do] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1335), + [anon_sym_return] = ACTIONS(1335), + [anon_sym_break] = ACTIONS(1335), + [anon_sym_continue] = ACTIONS(1335), + [anon_sym_goto] = ACTIONS(1335), + [anon_sym___try] = ACTIONS(1335), + [anon_sym___leave] = ACTIONS(1335), + [anon_sym_DASH_DASH] = ACTIONS(1337), + [anon_sym_PLUS_PLUS] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(1335), + [anon_sym___alignof__] = ACTIONS(1335), + [anon_sym___alignof] = ACTIONS(1335), + [anon_sym__alignof] = ACTIONS(1335), + [anon_sym_alignof] = ACTIONS(1335), + [anon_sym__Alignof] = ACTIONS(1335), + [anon_sym_offsetof] = ACTIONS(1335), + [anon_sym__Generic] = ACTIONS(1335), + [anon_sym_asm] = ACTIONS(1335), + [anon_sym___asm__] = ACTIONS(1335), + [sym_number_literal] = ACTIONS(1337), + [anon_sym_L_SQUOTE] = ACTIONS(1337), + [anon_sym_u_SQUOTE] = ACTIONS(1337), + [anon_sym_U_SQUOTE] = ACTIONS(1337), + [anon_sym_u8_SQUOTE] = ACTIONS(1337), + [anon_sym_SQUOTE] = ACTIONS(1337), + [anon_sym_L_DQUOTE] = ACTIONS(1337), + [anon_sym_u_DQUOTE] = ACTIONS(1337), + [anon_sym_U_DQUOTE] = ACTIONS(1337), + [anon_sym_u8_DQUOTE] = ACTIONS(1337), + [anon_sym_DQUOTE] = ACTIONS(1337), + [sym_true] = ACTIONS(1335), + [sym_false] = ACTIONS(1335), + [anon_sym_NULL] = ACTIONS(1335), + [anon_sym_nullptr] = ACTIONS(1335), [sym_comment] = ACTIONS(3), }, - [329] = { - [sym_identifier] = ACTIONS(1279), - [aux_sym_preproc_include_token1] = ACTIONS(1279), - [aux_sym_preproc_def_token1] = ACTIONS(1279), - [aux_sym_preproc_if_token1] = ACTIONS(1279), - [aux_sym_preproc_if_token2] = ACTIONS(1279), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1279), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1279), - [sym_preproc_directive] = ACTIONS(1279), - [anon_sym_LPAREN2] = ACTIONS(1281), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_STAR] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_SEMI] = ACTIONS(1281), - [anon_sym___extension__] = ACTIONS(1279), - [anon_sym_typedef] = ACTIONS(1279), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym___attribute__] = ACTIONS(1279), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1281), - [anon_sym___declspec] = ACTIONS(1279), - [anon_sym___cdecl] = ACTIONS(1279), - [anon_sym___clrcall] = ACTIONS(1279), - [anon_sym___stdcall] = ACTIONS(1279), - [anon_sym___fastcall] = ACTIONS(1279), - [anon_sym___thiscall] = ACTIONS(1279), - [anon_sym___vectorcall] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_signed] = ACTIONS(1279), - [anon_sym_unsigned] = ACTIONS(1279), - [anon_sym_long] = ACTIONS(1279), - [anon_sym_short] = ACTIONS(1279), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_auto] = ACTIONS(1279), - [anon_sym_register] = ACTIONS(1279), - [anon_sym_inline] = ACTIONS(1279), - [anon_sym___inline] = ACTIONS(1279), - [anon_sym___inline__] = ACTIONS(1279), - [anon_sym___forceinline] = ACTIONS(1279), - [anon_sym_thread_local] = ACTIONS(1279), - [anon_sym___thread] = ACTIONS(1279), - [anon_sym_const] = ACTIONS(1279), - [anon_sym_constexpr] = ACTIONS(1279), - [anon_sym_volatile] = ACTIONS(1279), - [anon_sym_restrict] = ACTIONS(1279), - [anon_sym___restrict__] = ACTIONS(1279), - [anon_sym__Atomic] = ACTIONS(1279), - [anon_sym__Noreturn] = ACTIONS(1279), - [anon_sym_noreturn] = ACTIONS(1279), - [anon_sym_alignas] = ACTIONS(1279), - [anon_sym__Alignas] = ACTIONS(1279), - [sym_primitive_type] = ACTIONS(1279), - [anon_sym_enum] = ACTIONS(1279), - [anon_sym_struct] = ACTIONS(1279), - [anon_sym_union] = ACTIONS(1279), - [anon_sym_if] = ACTIONS(1279), - [anon_sym_switch] = ACTIONS(1279), - [anon_sym_case] = ACTIONS(1279), - [anon_sym_default] = ACTIONS(1279), - [anon_sym_while] = ACTIONS(1279), - [anon_sym_do] = ACTIONS(1279), - [anon_sym_for] = ACTIONS(1279), - [anon_sym_return] = ACTIONS(1279), - [anon_sym_break] = ACTIONS(1279), - [anon_sym_continue] = ACTIONS(1279), - [anon_sym_goto] = ACTIONS(1279), - [anon_sym___try] = ACTIONS(1279), - [anon_sym___leave] = ACTIONS(1279), - [anon_sym_DASH_DASH] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym___alignof__] = ACTIONS(1279), - [anon_sym___alignof] = ACTIONS(1279), - [anon_sym__alignof] = ACTIONS(1279), - [anon_sym_alignof] = ACTIONS(1279), - [anon_sym__Alignof] = ACTIONS(1279), - [anon_sym_offsetof] = ACTIONS(1279), - [anon_sym__Generic] = ACTIONS(1279), - [anon_sym_asm] = ACTIONS(1279), - [anon_sym___asm__] = ACTIONS(1279), - [sym_number_literal] = ACTIONS(1281), - [anon_sym_L_SQUOTE] = ACTIONS(1281), - [anon_sym_u_SQUOTE] = ACTIONS(1281), - [anon_sym_U_SQUOTE] = ACTIONS(1281), - [anon_sym_u8_SQUOTE] = ACTIONS(1281), - [anon_sym_SQUOTE] = ACTIONS(1281), - [anon_sym_L_DQUOTE] = ACTIONS(1281), - [anon_sym_u_DQUOTE] = ACTIONS(1281), - [anon_sym_U_DQUOTE] = ACTIONS(1281), - [anon_sym_u8_DQUOTE] = ACTIONS(1281), - [anon_sym_DQUOTE] = ACTIONS(1281), - [sym_true] = ACTIONS(1279), - [sym_false] = ACTIONS(1279), - [anon_sym_NULL] = ACTIONS(1279), - [anon_sym_nullptr] = ACTIONS(1279), + [284] = { + [sym_identifier] = ACTIONS(1263), + [aux_sym_preproc_include_token1] = ACTIONS(1263), + [aux_sym_preproc_def_token1] = ACTIONS(1263), + [aux_sym_preproc_if_token1] = ACTIONS(1263), + [aux_sym_preproc_if_token2] = ACTIONS(1263), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1263), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1263), + [sym_preproc_directive] = ACTIONS(1263), + [anon_sym_LPAREN2] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_TILDE] = ACTIONS(1265), + [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1263), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_AMP] = ACTIONS(1265), + [anon_sym_SEMI] = ACTIONS(1265), + [anon_sym___extension__] = ACTIONS(1263), + [anon_sym_typedef] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1263), + [anon_sym___attribute__] = ACTIONS(1263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1265), + [anon_sym___declspec] = ACTIONS(1263), + [anon_sym___cdecl] = ACTIONS(1263), + [anon_sym___clrcall] = ACTIONS(1263), + [anon_sym___stdcall] = ACTIONS(1263), + [anon_sym___fastcall] = ACTIONS(1263), + [anon_sym___thiscall] = ACTIONS(1263), + [anon_sym___vectorcall] = ACTIONS(1263), + [anon_sym_LBRACE] = ACTIONS(1265), + [anon_sym_signed] = ACTIONS(1263), + [anon_sym_unsigned] = ACTIONS(1263), + [anon_sym_long] = ACTIONS(1263), + [anon_sym_short] = ACTIONS(1263), + [anon_sym_static] = ACTIONS(1263), + [anon_sym_auto] = ACTIONS(1263), + [anon_sym_register] = ACTIONS(1263), + [anon_sym_inline] = ACTIONS(1263), + [anon_sym___inline] = ACTIONS(1263), + [anon_sym___inline__] = ACTIONS(1263), + [anon_sym___forceinline] = ACTIONS(1263), + [anon_sym_thread_local] = ACTIONS(1263), + [anon_sym___thread] = ACTIONS(1263), + [anon_sym_const] = ACTIONS(1263), + [anon_sym_constexpr] = ACTIONS(1263), + [anon_sym_volatile] = ACTIONS(1263), + [anon_sym_restrict] = ACTIONS(1263), + [anon_sym___restrict__] = ACTIONS(1263), + [anon_sym__Atomic] = ACTIONS(1263), + [anon_sym__Noreturn] = ACTIONS(1263), + [anon_sym_noreturn] = ACTIONS(1263), + [anon_sym_alignas] = ACTIONS(1263), + [anon_sym__Alignas] = ACTIONS(1263), + [sym_primitive_type] = ACTIONS(1263), + [anon_sym_enum] = ACTIONS(1263), + [anon_sym_struct] = ACTIONS(1263), + [anon_sym_union] = ACTIONS(1263), + [anon_sym_if] = ACTIONS(1263), + [anon_sym_switch] = ACTIONS(1263), + [anon_sym_case] = ACTIONS(1263), + [anon_sym_default] = ACTIONS(1263), + [anon_sym_while] = ACTIONS(1263), + [anon_sym_do] = ACTIONS(1263), + [anon_sym_for] = ACTIONS(1263), + [anon_sym_return] = ACTIONS(1263), + [anon_sym_break] = ACTIONS(1263), + [anon_sym_continue] = ACTIONS(1263), + [anon_sym_goto] = ACTIONS(1263), + [anon_sym___try] = ACTIONS(1263), + [anon_sym___leave] = ACTIONS(1263), + [anon_sym_DASH_DASH] = ACTIONS(1265), + [anon_sym_PLUS_PLUS] = ACTIONS(1265), + [anon_sym_sizeof] = ACTIONS(1263), + [anon_sym___alignof__] = ACTIONS(1263), + [anon_sym___alignof] = ACTIONS(1263), + [anon_sym__alignof] = ACTIONS(1263), + [anon_sym_alignof] = ACTIONS(1263), + [anon_sym__Alignof] = ACTIONS(1263), + [anon_sym_offsetof] = ACTIONS(1263), + [anon_sym__Generic] = ACTIONS(1263), + [anon_sym_asm] = ACTIONS(1263), + [anon_sym___asm__] = ACTIONS(1263), + [sym_number_literal] = ACTIONS(1265), + [anon_sym_L_SQUOTE] = ACTIONS(1265), + [anon_sym_u_SQUOTE] = ACTIONS(1265), + [anon_sym_U_SQUOTE] = ACTIONS(1265), + [anon_sym_u8_SQUOTE] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1265), + [anon_sym_L_DQUOTE] = ACTIONS(1265), + [anon_sym_u_DQUOTE] = ACTIONS(1265), + [anon_sym_U_DQUOTE] = ACTIONS(1265), + [anon_sym_u8_DQUOTE] = ACTIONS(1265), + [anon_sym_DQUOTE] = ACTIONS(1265), + [sym_true] = ACTIONS(1263), + [sym_false] = ACTIONS(1263), + [anon_sym_NULL] = ACTIONS(1263), + [anon_sym_nullptr] = ACTIONS(1263), [sym_comment] = ACTIONS(3), }, - [330] = { - [sym_identifier] = ACTIONS(1343), - [aux_sym_preproc_include_token1] = ACTIONS(1343), - [aux_sym_preproc_def_token1] = ACTIONS(1343), - [aux_sym_preproc_if_token1] = ACTIONS(1343), - [aux_sym_preproc_if_token2] = ACTIONS(1343), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1343), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1343), - [sym_preproc_directive] = ACTIONS(1343), - [anon_sym_LPAREN2] = ACTIONS(1345), - [anon_sym_BANG] = ACTIONS(1345), - [anon_sym_TILDE] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1343), - [anon_sym_STAR] = ACTIONS(1345), - [anon_sym_AMP] = ACTIONS(1345), - [anon_sym_SEMI] = ACTIONS(1345), - [anon_sym___extension__] = ACTIONS(1343), - [anon_sym_typedef] = ACTIONS(1343), - [anon_sym_extern] = ACTIONS(1343), - [anon_sym___attribute__] = ACTIONS(1343), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1345), - [anon_sym___declspec] = ACTIONS(1343), - [anon_sym___cdecl] = ACTIONS(1343), - [anon_sym___clrcall] = ACTIONS(1343), - [anon_sym___stdcall] = ACTIONS(1343), - [anon_sym___fastcall] = ACTIONS(1343), - [anon_sym___thiscall] = ACTIONS(1343), - [anon_sym___vectorcall] = ACTIONS(1343), - [anon_sym_LBRACE] = ACTIONS(1345), - [anon_sym_signed] = ACTIONS(1343), - [anon_sym_unsigned] = ACTIONS(1343), - [anon_sym_long] = ACTIONS(1343), - [anon_sym_short] = ACTIONS(1343), - [anon_sym_static] = ACTIONS(1343), - [anon_sym_auto] = ACTIONS(1343), - [anon_sym_register] = ACTIONS(1343), - [anon_sym_inline] = ACTIONS(1343), - [anon_sym___inline] = ACTIONS(1343), - [anon_sym___inline__] = ACTIONS(1343), - [anon_sym___forceinline] = ACTIONS(1343), - [anon_sym_thread_local] = ACTIONS(1343), - [anon_sym___thread] = ACTIONS(1343), - [anon_sym_const] = ACTIONS(1343), - [anon_sym_constexpr] = ACTIONS(1343), - [anon_sym_volatile] = ACTIONS(1343), - [anon_sym_restrict] = ACTIONS(1343), - [anon_sym___restrict__] = ACTIONS(1343), - [anon_sym__Atomic] = ACTIONS(1343), - [anon_sym__Noreturn] = ACTIONS(1343), - [anon_sym_noreturn] = ACTIONS(1343), - [anon_sym_alignas] = ACTIONS(1343), - [anon_sym__Alignas] = 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_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___try] = ACTIONS(1343), - [anon_sym___leave] = ACTIONS(1343), - [anon_sym_DASH_DASH] = ACTIONS(1345), - [anon_sym_PLUS_PLUS] = ACTIONS(1345), - [anon_sym_sizeof] = ACTIONS(1343), - [anon_sym___alignof__] = ACTIONS(1343), - [anon_sym___alignof] = ACTIONS(1343), - [anon_sym__alignof] = ACTIONS(1343), - [anon_sym_alignof] = ACTIONS(1343), - [anon_sym__Alignof] = ACTIONS(1343), - [anon_sym_offsetof] = ACTIONS(1343), - [anon_sym__Generic] = ACTIONS(1343), - [anon_sym_asm] = ACTIONS(1343), - [anon_sym___asm__] = ACTIONS(1343), - [sym_number_literal] = ACTIONS(1345), - [anon_sym_L_SQUOTE] = ACTIONS(1345), - [anon_sym_u_SQUOTE] = ACTIONS(1345), - [anon_sym_U_SQUOTE] = ACTIONS(1345), - [anon_sym_u8_SQUOTE] = ACTIONS(1345), - [anon_sym_SQUOTE] = ACTIONS(1345), - [anon_sym_L_DQUOTE] = ACTIONS(1345), - [anon_sym_u_DQUOTE] = ACTIONS(1345), - [anon_sym_U_DQUOTE] = ACTIONS(1345), - [anon_sym_u8_DQUOTE] = ACTIONS(1345), - [anon_sym_DQUOTE] = ACTIONS(1345), - [sym_true] = ACTIONS(1343), - [sym_false] = ACTIONS(1343), - [anon_sym_NULL] = ACTIONS(1343), - [anon_sym_nullptr] = ACTIONS(1343), + [285] = { + [sym_identifier] = ACTIONS(1299), + [aux_sym_preproc_include_token1] = ACTIONS(1299), + [aux_sym_preproc_def_token1] = ACTIONS(1299), + [aux_sym_preproc_if_token1] = ACTIONS(1299), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1299), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1299), + [sym_preproc_directive] = ACTIONS(1299), + [anon_sym_LPAREN2] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_TILDE] = ACTIONS(1301), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1301), + [anon_sym_SEMI] = ACTIONS(1301), + [anon_sym___extension__] = ACTIONS(1299), + [anon_sym_typedef] = ACTIONS(1299), + [anon_sym_extern] = ACTIONS(1299), + [anon_sym___attribute__] = ACTIONS(1299), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1301), + [anon_sym___declspec] = ACTIONS(1299), + [anon_sym___cdecl] = ACTIONS(1299), + [anon_sym___clrcall] = ACTIONS(1299), + [anon_sym___stdcall] = ACTIONS(1299), + [anon_sym___fastcall] = ACTIONS(1299), + [anon_sym___thiscall] = ACTIONS(1299), + [anon_sym___vectorcall] = ACTIONS(1299), + [anon_sym_LBRACE] = ACTIONS(1301), + [anon_sym_RBRACE] = ACTIONS(1301), + [anon_sym_signed] = ACTIONS(1299), + [anon_sym_unsigned] = ACTIONS(1299), + [anon_sym_long] = ACTIONS(1299), + [anon_sym_short] = ACTIONS(1299), + [anon_sym_static] = ACTIONS(1299), + [anon_sym_auto] = ACTIONS(1299), + [anon_sym_register] = ACTIONS(1299), + [anon_sym_inline] = ACTIONS(1299), + [anon_sym___inline] = ACTIONS(1299), + [anon_sym___inline__] = ACTIONS(1299), + [anon_sym___forceinline] = ACTIONS(1299), + [anon_sym_thread_local] = ACTIONS(1299), + [anon_sym___thread] = ACTIONS(1299), + [anon_sym_const] = ACTIONS(1299), + [anon_sym_constexpr] = ACTIONS(1299), + [anon_sym_volatile] = ACTIONS(1299), + [anon_sym_restrict] = ACTIONS(1299), + [anon_sym___restrict__] = ACTIONS(1299), + [anon_sym__Atomic] = ACTIONS(1299), + [anon_sym__Noreturn] = ACTIONS(1299), + [anon_sym_noreturn] = ACTIONS(1299), + [anon_sym_alignas] = ACTIONS(1299), + [anon_sym__Alignas] = ACTIONS(1299), + [sym_primitive_type] = ACTIONS(1299), + [anon_sym_enum] = ACTIONS(1299), + [anon_sym_struct] = ACTIONS(1299), + [anon_sym_union] = ACTIONS(1299), + [anon_sym_if] = ACTIONS(1299), + [anon_sym_switch] = ACTIONS(1299), + [anon_sym_case] = ACTIONS(1299), + [anon_sym_default] = ACTIONS(1299), + [anon_sym_while] = ACTIONS(1299), + [anon_sym_do] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1299), + [anon_sym_return] = ACTIONS(1299), + [anon_sym_break] = ACTIONS(1299), + [anon_sym_continue] = ACTIONS(1299), + [anon_sym_goto] = ACTIONS(1299), + [anon_sym___try] = ACTIONS(1299), + [anon_sym___leave] = ACTIONS(1299), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_sizeof] = ACTIONS(1299), + [anon_sym___alignof__] = ACTIONS(1299), + [anon_sym___alignof] = ACTIONS(1299), + [anon_sym__alignof] = ACTIONS(1299), + [anon_sym_alignof] = ACTIONS(1299), + [anon_sym__Alignof] = ACTIONS(1299), + [anon_sym_offsetof] = ACTIONS(1299), + [anon_sym__Generic] = ACTIONS(1299), + [anon_sym_asm] = ACTIONS(1299), + [anon_sym___asm__] = ACTIONS(1299), + [sym_number_literal] = ACTIONS(1301), + [anon_sym_L_SQUOTE] = ACTIONS(1301), + [anon_sym_u_SQUOTE] = ACTIONS(1301), + [anon_sym_U_SQUOTE] = ACTIONS(1301), + [anon_sym_u8_SQUOTE] = ACTIONS(1301), + [anon_sym_SQUOTE] = ACTIONS(1301), + [anon_sym_L_DQUOTE] = ACTIONS(1301), + [anon_sym_u_DQUOTE] = ACTIONS(1301), + [anon_sym_U_DQUOTE] = ACTIONS(1301), + [anon_sym_u8_DQUOTE] = ACTIONS(1301), + [anon_sym_DQUOTE] = ACTIONS(1301), + [sym_true] = ACTIONS(1299), + [sym_false] = ACTIONS(1299), + [anon_sym_NULL] = ACTIONS(1299), + [anon_sym_nullptr] = ACTIONS(1299), [sym_comment] = ACTIONS(3), }, - [331] = { - [sym__expression] = STATE(747), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(725), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(725), - [sym_call_expression] = STATE(725), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(725), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(725), - [sym_initializer_list] = STATE(723), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(732), - [sym_null] = STATE(725), - [sym_identifier] = ACTIONS(1373), - [anon_sym_COMMA] = ACTIONS(1367), - [aux_sym_preproc_if_token2] = ACTIONS(1367), - [aux_sym_preproc_else_token1] = ACTIONS(1367), - [aux_sym_preproc_elif_token1] = ACTIONS(1373), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1367), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1367), + [286] = { + [sym_identifier] = ACTIONS(1365), + [aux_sym_preproc_include_token1] = ACTIONS(1365), + [aux_sym_preproc_def_token1] = ACTIONS(1365), + [aux_sym_preproc_if_token1] = ACTIONS(1365), + [aux_sym_preproc_if_token2] = ACTIONS(1365), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1365), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1365), + [sym_preproc_directive] = ACTIONS(1365), [anon_sym_LPAREN2] = ACTIONS(1367), - [anon_sym_BANG] = ACTIONS(1379), - [anon_sym_TILDE] = ACTIONS(1381), - [anon_sym_DASH] = ACTIONS(1373), - [anon_sym_PLUS] = ACTIONS(1373), - [anon_sym_STAR] = ACTIONS(1373), - [anon_sym_SLASH] = ACTIONS(1373), - [anon_sym_PERCENT] = ACTIONS(1373), - [anon_sym_PIPE_PIPE] = ACTIONS(1367), - [anon_sym_AMP_AMP] = ACTIONS(1367), - [anon_sym_PIPE] = ACTIONS(1373), - [anon_sym_CARET] = ACTIONS(1373), - [anon_sym_AMP] = ACTIONS(1373), - [anon_sym_EQ_EQ] = ACTIONS(1367), - [anon_sym_BANG_EQ] = ACTIONS(1367), - [anon_sym_GT] = ACTIONS(1373), - [anon_sym_GT_EQ] = ACTIONS(1367), - [anon_sym_LT_EQ] = ACTIONS(1367), - [anon_sym_LT] = ACTIONS(1373), - [anon_sym_LT_LT] = ACTIONS(1373), - [anon_sym_GT_GT] = ACTIONS(1373), - [anon_sym_LBRACE] = ACTIONS(1375), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_EQ] = ACTIONS(1373), - [anon_sym_QMARK] = ACTIONS(1367), - [anon_sym_STAR_EQ] = ACTIONS(1367), - [anon_sym_SLASH_EQ] = ACTIONS(1367), - [anon_sym_PERCENT_EQ] = ACTIONS(1367), - [anon_sym_PLUS_EQ] = ACTIONS(1367), - [anon_sym_DASH_EQ] = ACTIONS(1367), - [anon_sym_LT_LT_EQ] = ACTIONS(1367), - [anon_sym_GT_GT_EQ] = ACTIONS(1367), - [anon_sym_AMP_EQ] = ACTIONS(1367), - [anon_sym_CARET_EQ] = ACTIONS(1367), - [anon_sym_PIPE_EQ] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1367), + [anon_sym_TILDE] = ACTIONS(1367), + [anon_sym_DASH] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1365), + [anon_sym_STAR] = ACTIONS(1367), + [anon_sym_AMP] = ACTIONS(1367), + [anon_sym_SEMI] = ACTIONS(1367), + [anon_sym___extension__] = ACTIONS(1365), + [anon_sym_typedef] = ACTIONS(1365), + [anon_sym_extern] = ACTIONS(1365), + [anon_sym___attribute__] = ACTIONS(1365), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1367), + [anon_sym___declspec] = ACTIONS(1365), + [anon_sym___cdecl] = ACTIONS(1365), + [anon_sym___clrcall] = ACTIONS(1365), + [anon_sym___stdcall] = ACTIONS(1365), + [anon_sym___fastcall] = ACTIONS(1365), + [anon_sym___thiscall] = ACTIONS(1365), + [anon_sym___vectorcall] = ACTIONS(1365), + [anon_sym_LBRACE] = ACTIONS(1367), + [anon_sym_signed] = ACTIONS(1365), + [anon_sym_unsigned] = ACTIONS(1365), + [anon_sym_long] = ACTIONS(1365), + [anon_sym_short] = ACTIONS(1365), + [anon_sym_static] = ACTIONS(1365), + [anon_sym_auto] = ACTIONS(1365), + [anon_sym_register] = ACTIONS(1365), + [anon_sym_inline] = ACTIONS(1365), + [anon_sym___inline] = ACTIONS(1365), + [anon_sym___inline__] = ACTIONS(1365), + [anon_sym___forceinline] = ACTIONS(1365), + [anon_sym_thread_local] = ACTIONS(1365), + [anon_sym___thread] = ACTIONS(1365), + [anon_sym_const] = ACTIONS(1365), + [anon_sym_constexpr] = ACTIONS(1365), + [anon_sym_volatile] = ACTIONS(1365), + [anon_sym_restrict] = ACTIONS(1365), + [anon_sym___restrict__] = ACTIONS(1365), + [anon_sym__Atomic] = ACTIONS(1365), + [anon_sym__Noreturn] = ACTIONS(1365), + [anon_sym_noreturn] = ACTIONS(1365), + [anon_sym_alignas] = ACTIONS(1365), + [anon_sym__Alignas] = ACTIONS(1365), + [sym_primitive_type] = ACTIONS(1365), + [anon_sym_enum] = ACTIONS(1365), + [anon_sym_struct] = ACTIONS(1365), + [anon_sym_union] = ACTIONS(1365), + [anon_sym_if] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1365), + [anon_sym_case] = ACTIONS(1365), + [anon_sym_default] = ACTIONS(1365), + [anon_sym_while] = ACTIONS(1365), + [anon_sym_do] = ACTIONS(1365), + [anon_sym_for] = ACTIONS(1365), + [anon_sym_return] = ACTIONS(1365), + [anon_sym_break] = ACTIONS(1365), + [anon_sym_continue] = ACTIONS(1365), + [anon_sym_goto] = ACTIONS(1365), + [anon_sym___try] = ACTIONS(1365), + [anon_sym___leave] = ACTIONS(1365), [anon_sym_DASH_DASH] = ACTIONS(1367), [anon_sym_PLUS_PLUS] = ACTIONS(1367), - [anon_sym_sizeof] = ACTIONS(1383), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [anon_sym_DOT] = ACTIONS(1373), - [anon_sym_DASH_GT] = ACTIONS(1367), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(1365), + [anon_sym___alignof__] = ACTIONS(1365), + [anon_sym___alignof] = ACTIONS(1365), + [anon_sym__alignof] = ACTIONS(1365), + [anon_sym_alignof] = ACTIONS(1365), + [anon_sym__Alignof] = ACTIONS(1365), + [anon_sym_offsetof] = ACTIONS(1365), + [anon_sym__Generic] = ACTIONS(1365), + [anon_sym_asm] = ACTIONS(1365), + [anon_sym___asm__] = ACTIONS(1365), + [sym_number_literal] = ACTIONS(1367), + [anon_sym_L_SQUOTE] = ACTIONS(1367), + [anon_sym_u_SQUOTE] = ACTIONS(1367), + [anon_sym_U_SQUOTE] = ACTIONS(1367), + [anon_sym_u8_SQUOTE] = ACTIONS(1367), + [anon_sym_SQUOTE] = ACTIONS(1367), + [anon_sym_L_DQUOTE] = ACTIONS(1367), + [anon_sym_u_DQUOTE] = ACTIONS(1367), + [anon_sym_U_DQUOTE] = ACTIONS(1367), + [anon_sym_u8_DQUOTE] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1367), + [sym_true] = ACTIONS(1365), + [sym_false] = ACTIONS(1365), + [anon_sym_NULL] = ACTIONS(1365), + [anon_sym_nullptr] = ACTIONS(1365), [sym_comment] = ACTIONS(3), }, - [332] = { - [sym_identifier] = ACTIONS(1287), - [aux_sym_preproc_include_token1] = ACTIONS(1287), - [aux_sym_preproc_def_token1] = ACTIONS(1287), - [aux_sym_preproc_if_token1] = ACTIONS(1287), - [aux_sym_preproc_if_token2] = ACTIONS(1287), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1287), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1287), - [sym_preproc_directive] = ACTIONS(1287), - [anon_sym_LPAREN2] = ACTIONS(1289), - [anon_sym_BANG] = ACTIONS(1289), - [anon_sym_TILDE] = ACTIONS(1289), - [anon_sym_DASH] = ACTIONS(1287), - [anon_sym_PLUS] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_AMP] = ACTIONS(1289), - [anon_sym_SEMI] = ACTIONS(1289), - [anon_sym___extension__] = ACTIONS(1287), - [anon_sym_typedef] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1287), - [anon_sym___attribute__] = ACTIONS(1287), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1289), - [anon_sym___declspec] = ACTIONS(1287), - [anon_sym___cdecl] = ACTIONS(1287), - [anon_sym___clrcall] = ACTIONS(1287), - [anon_sym___stdcall] = ACTIONS(1287), - [anon_sym___fastcall] = ACTIONS(1287), - [anon_sym___thiscall] = ACTIONS(1287), - [anon_sym___vectorcall] = ACTIONS(1287), - [anon_sym_LBRACE] = ACTIONS(1289), - [anon_sym_signed] = ACTIONS(1287), - [anon_sym_unsigned] = ACTIONS(1287), - [anon_sym_long] = ACTIONS(1287), - [anon_sym_short] = ACTIONS(1287), - [anon_sym_static] = ACTIONS(1287), - [anon_sym_auto] = ACTIONS(1287), - [anon_sym_register] = ACTIONS(1287), - [anon_sym_inline] = ACTIONS(1287), - [anon_sym___inline] = ACTIONS(1287), - [anon_sym___inline__] = ACTIONS(1287), - [anon_sym___forceinline] = ACTIONS(1287), - [anon_sym_thread_local] = ACTIONS(1287), - [anon_sym___thread] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), - [anon_sym_constexpr] = ACTIONS(1287), - [anon_sym_volatile] = ACTIONS(1287), - [anon_sym_restrict] = ACTIONS(1287), - [anon_sym___restrict__] = ACTIONS(1287), - [anon_sym__Atomic] = ACTIONS(1287), - [anon_sym__Noreturn] = ACTIONS(1287), - [anon_sym_noreturn] = ACTIONS(1287), - [anon_sym_alignas] = ACTIONS(1287), - [anon_sym__Alignas] = ACTIONS(1287), - [sym_primitive_type] = ACTIONS(1287), - [anon_sym_enum] = ACTIONS(1287), - [anon_sym_struct] = ACTIONS(1287), - [anon_sym_union] = ACTIONS(1287), - [anon_sym_if] = ACTIONS(1287), - [anon_sym_switch] = ACTIONS(1287), - [anon_sym_case] = ACTIONS(1287), - [anon_sym_default] = ACTIONS(1287), - [anon_sym_while] = ACTIONS(1287), - [anon_sym_do] = ACTIONS(1287), - [anon_sym_for] = ACTIONS(1287), - [anon_sym_return] = ACTIONS(1287), - [anon_sym_break] = ACTIONS(1287), - [anon_sym_continue] = ACTIONS(1287), - [anon_sym_goto] = ACTIONS(1287), - [anon_sym___try] = ACTIONS(1287), - [anon_sym___leave] = ACTIONS(1287), - [anon_sym_DASH_DASH] = ACTIONS(1289), - [anon_sym_PLUS_PLUS] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1287), - [anon_sym___alignof__] = ACTIONS(1287), - [anon_sym___alignof] = ACTIONS(1287), - [anon_sym__alignof] = ACTIONS(1287), - [anon_sym_alignof] = ACTIONS(1287), - [anon_sym__Alignof] = ACTIONS(1287), - [anon_sym_offsetof] = ACTIONS(1287), - [anon_sym__Generic] = ACTIONS(1287), - [anon_sym_asm] = ACTIONS(1287), - [anon_sym___asm__] = ACTIONS(1287), - [sym_number_literal] = ACTIONS(1289), - [anon_sym_L_SQUOTE] = ACTIONS(1289), - [anon_sym_u_SQUOTE] = ACTIONS(1289), - [anon_sym_U_SQUOTE] = ACTIONS(1289), - [anon_sym_u8_SQUOTE] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1289), - [anon_sym_L_DQUOTE] = ACTIONS(1289), - [anon_sym_u_DQUOTE] = ACTIONS(1289), - [anon_sym_U_DQUOTE] = ACTIONS(1289), - [anon_sym_u8_DQUOTE] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1289), - [sym_true] = ACTIONS(1287), - [sym_false] = ACTIONS(1287), - [anon_sym_NULL] = ACTIONS(1287), - [anon_sym_nullptr] = ACTIONS(1287), + [287] = { + [sym_identifier] = ACTIONS(1303), + [aux_sym_preproc_include_token1] = ACTIONS(1303), + [aux_sym_preproc_def_token1] = ACTIONS(1303), + [aux_sym_preproc_if_token1] = ACTIONS(1303), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1303), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1303), + [sym_preproc_directive] = ACTIONS(1303), + [anon_sym_LPAREN2] = ACTIONS(1305), + [anon_sym_BANG] = ACTIONS(1305), + [anon_sym_TILDE] = ACTIONS(1305), + [anon_sym_DASH] = ACTIONS(1303), + [anon_sym_PLUS] = ACTIONS(1303), + [anon_sym_STAR] = ACTIONS(1305), + [anon_sym_AMP] = ACTIONS(1305), + [anon_sym_SEMI] = ACTIONS(1305), + [anon_sym___extension__] = ACTIONS(1303), + [anon_sym_typedef] = ACTIONS(1303), + [anon_sym_extern] = ACTIONS(1303), + [anon_sym___attribute__] = ACTIONS(1303), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1305), + [anon_sym___declspec] = ACTIONS(1303), + [anon_sym___cdecl] = ACTIONS(1303), + [anon_sym___clrcall] = ACTIONS(1303), + [anon_sym___stdcall] = ACTIONS(1303), + [anon_sym___fastcall] = ACTIONS(1303), + [anon_sym___thiscall] = ACTIONS(1303), + [anon_sym___vectorcall] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1305), + [anon_sym_RBRACE] = ACTIONS(1305), + [anon_sym_signed] = ACTIONS(1303), + [anon_sym_unsigned] = ACTIONS(1303), + [anon_sym_long] = ACTIONS(1303), + [anon_sym_short] = ACTIONS(1303), + [anon_sym_static] = ACTIONS(1303), + [anon_sym_auto] = ACTIONS(1303), + [anon_sym_register] = ACTIONS(1303), + [anon_sym_inline] = ACTIONS(1303), + [anon_sym___inline] = ACTIONS(1303), + [anon_sym___inline__] = ACTIONS(1303), + [anon_sym___forceinline] = ACTIONS(1303), + [anon_sym_thread_local] = ACTIONS(1303), + [anon_sym___thread] = ACTIONS(1303), + [anon_sym_const] = ACTIONS(1303), + [anon_sym_constexpr] = ACTIONS(1303), + [anon_sym_volatile] = ACTIONS(1303), + [anon_sym_restrict] = ACTIONS(1303), + [anon_sym___restrict__] = ACTIONS(1303), + [anon_sym__Atomic] = ACTIONS(1303), + [anon_sym__Noreturn] = ACTIONS(1303), + [anon_sym_noreturn] = ACTIONS(1303), + [anon_sym_alignas] = ACTIONS(1303), + [anon_sym__Alignas] = ACTIONS(1303), + [sym_primitive_type] = ACTIONS(1303), + [anon_sym_enum] = ACTIONS(1303), + [anon_sym_struct] = ACTIONS(1303), + [anon_sym_union] = ACTIONS(1303), + [anon_sym_if] = ACTIONS(1303), + [anon_sym_switch] = ACTIONS(1303), + [anon_sym_case] = ACTIONS(1303), + [anon_sym_default] = ACTIONS(1303), + [anon_sym_while] = ACTIONS(1303), + [anon_sym_do] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1303), + [anon_sym_return] = ACTIONS(1303), + [anon_sym_break] = ACTIONS(1303), + [anon_sym_continue] = ACTIONS(1303), + [anon_sym_goto] = ACTIONS(1303), + [anon_sym___try] = ACTIONS(1303), + [anon_sym___leave] = ACTIONS(1303), + [anon_sym_DASH_DASH] = ACTIONS(1305), + [anon_sym_PLUS_PLUS] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1303), + [anon_sym___alignof__] = ACTIONS(1303), + [anon_sym___alignof] = ACTIONS(1303), + [anon_sym__alignof] = ACTIONS(1303), + [anon_sym_alignof] = ACTIONS(1303), + [anon_sym__Alignof] = ACTIONS(1303), + [anon_sym_offsetof] = ACTIONS(1303), + [anon_sym__Generic] = ACTIONS(1303), + [anon_sym_asm] = ACTIONS(1303), + [anon_sym___asm__] = ACTIONS(1303), + [sym_number_literal] = ACTIONS(1305), + [anon_sym_L_SQUOTE] = ACTIONS(1305), + [anon_sym_u_SQUOTE] = ACTIONS(1305), + [anon_sym_U_SQUOTE] = ACTIONS(1305), + [anon_sym_u8_SQUOTE] = ACTIONS(1305), + [anon_sym_SQUOTE] = ACTIONS(1305), + [anon_sym_L_DQUOTE] = ACTIONS(1305), + [anon_sym_u_DQUOTE] = ACTIONS(1305), + [anon_sym_U_DQUOTE] = ACTIONS(1305), + [anon_sym_u8_DQUOTE] = ACTIONS(1305), + [anon_sym_DQUOTE] = ACTIONS(1305), + [sym_true] = ACTIONS(1303), + [sym_false] = ACTIONS(1303), + [anon_sym_NULL] = ACTIONS(1303), + [anon_sym_nullptr] = ACTIONS(1303), [sym_comment] = ACTIONS(3), }, - [333] = { - [sym_identifier] = ACTIONS(1351), - [aux_sym_preproc_include_token1] = ACTIONS(1351), - [aux_sym_preproc_def_token1] = ACTIONS(1351), - [aux_sym_preproc_if_token1] = ACTIONS(1351), - [aux_sym_preproc_if_token2] = ACTIONS(1351), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1351), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1351), - [sym_preproc_directive] = ACTIONS(1351), - [anon_sym_LPAREN2] = ACTIONS(1353), - [anon_sym_BANG] = ACTIONS(1353), - [anon_sym_TILDE] = ACTIONS(1353), - [anon_sym_DASH] = ACTIONS(1351), - [anon_sym_PLUS] = ACTIONS(1351), - [anon_sym_STAR] = ACTIONS(1353), - [anon_sym_AMP] = ACTIONS(1353), - [anon_sym_SEMI] = ACTIONS(1353), - [anon_sym___extension__] = ACTIONS(1351), - [anon_sym_typedef] = ACTIONS(1351), - [anon_sym_extern] = ACTIONS(1351), - [anon_sym___attribute__] = ACTIONS(1351), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1353), - [anon_sym___declspec] = ACTIONS(1351), - [anon_sym___cdecl] = ACTIONS(1351), - [anon_sym___clrcall] = ACTIONS(1351), - [anon_sym___stdcall] = ACTIONS(1351), - [anon_sym___fastcall] = ACTIONS(1351), - [anon_sym___thiscall] = ACTIONS(1351), - [anon_sym___vectorcall] = ACTIONS(1351), - [anon_sym_LBRACE] = ACTIONS(1353), - [anon_sym_signed] = ACTIONS(1351), - [anon_sym_unsigned] = ACTIONS(1351), - [anon_sym_long] = ACTIONS(1351), - [anon_sym_short] = ACTIONS(1351), - [anon_sym_static] = ACTIONS(1351), - [anon_sym_auto] = ACTIONS(1351), - [anon_sym_register] = ACTIONS(1351), - [anon_sym_inline] = ACTIONS(1351), - [anon_sym___inline] = ACTIONS(1351), - [anon_sym___inline__] = ACTIONS(1351), - [anon_sym___forceinline] = ACTIONS(1351), - [anon_sym_thread_local] = ACTIONS(1351), - [anon_sym___thread] = ACTIONS(1351), - [anon_sym_const] = ACTIONS(1351), - [anon_sym_constexpr] = ACTIONS(1351), - [anon_sym_volatile] = ACTIONS(1351), - [anon_sym_restrict] = ACTIONS(1351), - [anon_sym___restrict__] = ACTIONS(1351), - [anon_sym__Atomic] = ACTIONS(1351), - [anon_sym__Noreturn] = ACTIONS(1351), - [anon_sym_noreturn] = ACTIONS(1351), - [anon_sym_alignas] = ACTIONS(1351), - [anon_sym__Alignas] = ACTIONS(1351), - [sym_primitive_type] = ACTIONS(1351), - [anon_sym_enum] = ACTIONS(1351), - [anon_sym_struct] = ACTIONS(1351), - [anon_sym_union] = ACTIONS(1351), - [anon_sym_if] = ACTIONS(1351), - [anon_sym_switch] = ACTIONS(1351), - [anon_sym_case] = ACTIONS(1351), - [anon_sym_default] = ACTIONS(1351), - [anon_sym_while] = ACTIONS(1351), - [anon_sym_do] = ACTIONS(1351), - [anon_sym_for] = ACTIONS(1351), - [anon_sym_return] = ACTIONS(1351), - [anon_sym_break] = ACTIONS(1351), - [anon_sym_continue] = ACTIONS(1351), - [anon_sym_goto] = ACTIONS(1351), - [anon_sym___try] = ACTIONS(1351), - [anon_sym___leave] = ACTIONS(1351), - [anon_sym_DASH_DASH] = ACTIONS(1353), - [anon_sym_PLUS_PLUS] = ACTIONS(1353), - [anon_sym_sizeof] = ACTIONS(1351), - [anon_sym___alignof__] = ACTIONS(1351), - [anon_sym___alignof] = ACTIONS(1351), - [anon_sym__alignof] = ACTIONS(1351), - [anon_sym_alignof] = ACTIONS(1351), - [anon_sym__Alignof] = ACTIONS(1351), - [anon_sym_offsetof] = ACTIONS(1351), - [anon_sym__Generic] = ACTIONS(1351), - [anon_sym_asm] = ACTIONS(1351), - [anon_sym___asm__] = ACTIONS(1351), - [sym_number_literal] = ACTIONS(1353), - [anon_sym_L_SQUOTE] = ACTIONS(1353), - [anon_sym_u_SQUOTE] = ACTIONS(1353), - [anon_sym_U_SQUOTE] = ACTIONS(1353), - [anon_sym_u8_SQUOTE] = ACTIONS(1353), - [anon_sym_SQUOTE] = ACTIONS(1353), - [anon_sym_L_DQUOTE] = ACTIONS(1353), - [anon_sym_u_DQUOTE] = ACTIONS(1353), - [anon_sym_U_DQUOTE] = ACTIONS(1353), - [anon_sym_u8_DQUOTE] = ACTIONS(1353), - [anon_sym_DQUOTE] = ACTIONS(1353), - [sym_true] = ACTIONS(1351), - [sym_false] = ACTIONS(1351), - [anon_sym_NULL] = ACTIONS(1351), - [anon_sym_nullptr] = ACTIONS(1351), + [288] = { + [sym_identifier] = ACTIONS(1361), + [aux_sym_preproc_include_token1] = ACTIONS(1361), + [aux_sym_preproc_def_token1] = ACTIONS(1361), + [aux_sym_preproc_if_token1] = ACTIONS(1361), + [aux_sym_preproc_if_token2] = ACTIONS(1361), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1361), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1361), + [sym_preproc_directive] = ACTIONS(1361), + [anon_sym_LPAREN2] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_TILDE] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1361), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_AMP] = ACTIONS(1363), + [anon_sym_SEMI] = ACTIONS(1363), + [anon_sym___extension__] = ACTIONS(1361), + [anon_sym_typedef] = ACTIONS(1361), + [anon_sym_extern] = ACTIONS(1361), + [anon_sym___attribute__] = ACTIONS(1361), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1363), + [anon_sym___declspec] = ACTIONS(1361), + [anon_sym___cdecl] = ACTIONS(1361), + [anon_sym___clrcall] = ACTIONS(1361), + [anon_sym___stdcall] = ACTIONS(1361), + [anon_sym___fastcall] = ACTIONS(1361), + [anon_sym___thiscall] = ACTIONS(1361), + [anon_sym___vectorcall] = ACTIONS(1361), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_signed] = ACTIONS(1361), + [anon_sym_unsigned] = ACTIONS(1361), + [anon_sym_long] = ACTIONS(1361), + [anon_sym_short] = ACTIONS(1361), + [anon_sym_static] = ACTIONS(1361), + [anon_sym_auto] = ACTIONS(1361), + [anon_sym_register] = ACTIONS(1361), + [anon_sym_inline] = ACTIONS(1361), + [anon_sym___inline] = ACTIONS(1361), + [anon_sym___inline__] = ACTIONS(1361), + [anon_sym___forceinline] = ACTIONS(1361), + [anon_sym_thread_local] = ACTIONS(1361), + [anon_sym___thread] = ACTIONS(1361), + [anon_sym_const] = ACTIONS(1361), + [anon_sym_constexpr] = ACTIONS(1361), + [anon_sym_volatile] = ACTIONS(1361), + [anon_sym_restrict] = ACTIONS(1361), + [anon_sym___restrict__] = ACTIONS(1361), + [anon_sym__Atomic] = ACTIONS(1361), + [anon_sym__Noreturn] = ACTIONS(1361), + [anon_sym_noreturn] = ACTIONS(1361), + [anon_sym_alignas] = ACTIONS(1361), + [anon_sym__Alignas] = ACTIONS(1361), + [sym_primitive_type] = ACTIONS(1361), + [anon_sym_enum] = ACTIONS(1361), + [anon_sym_struct] = ACTIONS(1361), + [anon_sym_union] = ACTIONS(1361), + [anon_sym_if] = ACTIONS(1361), + [anon_sym_switch] = ACTIONS(1361), + [anon_sym_case] = ACTIONS(1361), + [anon_sym_default] = ACTIONS(1361), + [anon_sym_while] = ACTIONS(1361), + [anon_sym_do] = ACTIONS(1361), + [anon_sym_for] = ACTIONS(1361), + [anon_sym_return] = ACTIONS(1361), + [anon_sym_break] = ACTIONS(1361), + [anon_sym_continue] = ACTIONS(1361), + [anon_sym_goto] = ACTIONS(1361), + [anon_sym___try] = ACTIONS(1361), + [anon_sym___leave] = ACTIONS(1361), + [anon_sym_DASH_DASH] = ACTIONS(1363), + [anon_sym_PLUS_PLUS] = ACTIONS(1363), + [anon_sym_sizeof] = ACTIONS(1361), + [anon_sym___alignof__] = ACTIONS(1361), + [anon_sym___alignof] = ACTIONS(1361), + [anon_sym__alignof] = ACTIONS(1361), + [anon_sym_alignof] = ACTIONS(1361), + [anon_sym__Alignof] = ACTIONS(1361), + [anon_sym_offsetof] = ACTIONS(1361), + [anon_sym__Generic] = ACTIONS(1361), + [anon_sym_asm] = ACTIONS(1361), + [anon_sym___asm__] = ACTIONS(1361), + [sym_number_literal] = ACTIONS(1363), + [anon_sym_L_SQUOTE] = ACTIONS(1363), + [anon_sym_u_SQUOTE] = ACTIONS(1363), + [anon_sym_U_SQUOTE] = ACTIONS(1363), + [anon_sym_u8_SQUOTE] = ACTIONS(1363), + [anon_sym_SQUOTE] = ACTIONS(1363), + [anon_sym_L_DQUOTE] = ACTIONS(1363), + [anon_sym_u_DQUOTE] = ACTIONS(1363), + [anon_sym_U_DQUOTE] = ACTIONS(1363), + [anon_sym_u8_DQUOTE] = ACTIONS(1363), + [anon_sym_DQUOTE] = ACTIONS(1363), + [sym_true] = ACTIONS(1361), + [sym_false] = ACTIONS(1361), + [anon_sym_NULL] = ACTIONS(1361), + [anon_sym_nullptr] = ACTIONS(1361), [sym_comment] = ACTIONS(3), }, - [334] = { - [sym_identifier] = ACTIONS(1275), - [aux_sym_preproc_include_token1] = ACTIONS(1275), - [aux_sym_preproc_def_token1] = ACTIONS(1275), - [aux_sym_preproc_if_token1] = ACTIONS(1275), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1275), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1275), - [sym_preproc_directive] = ACTIONS(1275), - [anon_sym_LPAREN2] = ACTIONS(1277), - [anon_sym_BANG] = ACTIONS(1277), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1275), - [anon_sym_PLUS] = ACTIONS(1275), - [anon_sym_STAR] = ACTIONS(1277), - [anon_sym_AMP] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1277), - [anon_sym___extension__] = ACTIONS(1275), - [anon_sym_typedef] = ACTIONS(1275), - [anon_sym_extern] = ACTIONS(1275), - [anon_sym___attribute__] = ACTIONS(1275), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1277), - [anon_sym___declspec] = ACTIONS(1275), - [anon_sym___cdecl] = ACTIONS(1275), - [anon_sym___clrcall] = ACTIONS(1275), - [anon_sym___stdcall] = ACTIONS(1275), - [anon_sym___fastcall] = ACTIONS(1275), - [anon_sym___thiscall] = ACTIONS(1275), - [anon_sym___vectorcall] = ACTIONS(1275), - [anon_sym_LBRACE] = ACTIONS(1277), - [anon_sym_RBRACE] = ACTIONS(1277), - [anon_sym_signed] = ACTIONS(1275), - [anon_sym_unsigned] = ACTIONS(1275), - [anon_sym_long] = ACTIONS(1275), - [anon_sym_short] = ACTIONS(1275), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_auto] = ACTIONS(1275), - [anon_sym_register] = ACTIONS(1275), - [anon_sym_inline] = ACTIONS(1275), - [anon_sym___inline] = ACTIONS(1275), - [anon_sym___inline__] = ACTIONS(1275), - [anon_sym___forceinline] = ACTIONS(1275), - [anon_sym_thread_local] = ACTIONS(1275), - [anon_sym___thread] = ACTIONS(1275), - [anon_sym_const] = ACTIONS(1275), - [anon_sym_constexpr] = ACTIONS(1275), - [anon_sym_volatile] = ACTIONS(1275), - [anon_sym_restrict] = ACTIONS(1275), - [anon_sym___restrict__] = ACTIONS(1275), - [anon_sym__Atomic] = ACTIONS(1275), - [anon_sym__Noreturn] = ACTIONS(1275), - [anon_sym_noreturn] = ACTIONS(1275), - [anon_sym_alignas] = ACTIONS(1275), - [anon_sym__Alignas] = ACTIONS(1275), - [sym_primitive_type] = ACTIONS(1275), - [anon_sym_enum] = ACTIONS(1275), - [anon_sym_struct] = ACTIONS(1275), - [anon_sym_union] = ACTIONS(1275), - [anon_sym_if] = ACTIONS(1275), - [anon_sym_switch] = ACTIONS(1275), - [anon_sym_case] = ACTIONS(1275), - [anon_sym_default] = ACTIONS(1275), - [anon_sym_while] = ACTIONS(1275), - [anon_sym_do] = ACTIONS(1275), - [anon_sym_for] = ACTIONS(1275), - [anon_sym_return] = ACTIONS(1275), - [anon_sym_break] = ACTIONS(1275), - [anon_sym_continue] = ACTIONS(1275), - [anon_sym_goto] = ACTIONS(1275), - [anon_sym___try] = ACTIONS(1275), - [anon_sym___leave] = ACTIONS(1275), - [anon_sym_DASH_DASH] = ACTIONS(1277), - [anon_sym_PLUS_PLUS] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym___alignof__] = ACTIONS(1275), - [anon_sym___alignof] = ACTIONS(1275), - [anon_sym__alignof] = ACTIONS(1275), - [anon_sym_alignof] = ACTIONS(1275), - [anon_sym__Alignof] = ACTIONS(1275), - [anon_sym_offsetof] = ACTIONS(1275), - [anon_sym__Generic] = ACTIONS(1275), - [anon_sym_asm] = ACTIONS(1275), - [anon_sym___asm__] = ACTIONS(1275), - [sym_number_literal] = ACTIONS(1277), - [anon_sym_L_SQUOTE] = ACTIONS(1277), - [anon_sym_u_SQUOTE] = ACTIONS(1277), - [anon_sym_U_SQUOTE] = ACTIONS(1277), - [anon_sym_u8_SQUOTE] = ACTIONS(1277), - [anon_sym_SQUOTE] = ACTIONS(1277), - [anon_sym_L_DQUOTE] = ACTIONS(1277), - [anon_sym_u_DQUOTE] = ACTIONS(1277), - [anon_sym_U_DQUOTE] = ACTIONS(1277), - [anon_sym_u8_DQUOTE] = ACTIONS(1277), - [anon_sym_DQUOTE] = ACTIONS(1277), - [sym_true] = ACTIONS(1275), - [sym_false] = ACTIONS(1275), - [anon_sym_NULL] = ACTIONS(1275), - [anon_sym_nullptr] = ACTIONS(1275), - [sym_comment] = ACTIONS(3), - }, - [335] = { - [sym_identifier] = ACTIONS(1311), - [aux_sym_preproc_include_token1] = ACTIONS(1311), - [aux_sym_preproc_def_token1] = ACTIONS(1311), - [aux_sym_preproc_if_token1] = ACTIONS(1311), - [aux_sym_preproc_if_token2] = ACTIONS(1311), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1311), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1311), - [sym_preproc_directive] = ACTIONS(1311), - [anon_sym_LPAREN2] = ACTIONS(1313), - [anon_sym_BANG] = ACTIONS(1313), - [anon_sym_TILDE] = ACTIONS(1313), - [anon_sym_DASH] = ACTIONS(1311), - [anon_sym_PLUS] = ACTIONS(1311), - [anon_sym_STAR] = ACTIONS(1313), - [anon_sym_AMP] = ACTIONS(1313), - [anon_sym_SEMI] = ACTIONS(1313), - [anon_sym___extension__] = ACTIONS(1311), - [anon_sym_typedef] = ACTIONS(1311), - [anon_sym_extern] = ACTIONS(1311), - [anon_sym___attribute__] = ACTIONS(1311), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1313), - [anon_sym___declspec] = ACTIONS(1311), - [anon_sym___cdecl] = ACTIONS(1311), - [anon_sym___clrcall] = ACTIONS(1311), - [anon_sym___stdcall] = ACTIONS(1311), - [anon_sym___fastcall] = ACTIONS(1311), - [anon_sym___thiscall] = ACTIONS(1311), - [anon_sym___vectorcall] = ACTIONS(1311), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_signed] = ACTIONS(1311), - [anon_sym_unsigned] = ACTIONS(1311), - [anon_sym_long] = ACTIONS(1311), - [anon_sym_short] = ACTIONS(1311), - [anon_sym_static] = ACTIONS(1311), - [anon_sym_auto] = ACTIONS(1311), - [anon_sym_register] = ACTIONS(1311), - [anon_sym_inline] = ACTIONS(1311), - [anon_sym___inline] = ACTIONS(1311), - [anon_sym___inline__] = ACTIONS(1311), - [anon_sym___forceinline] = ACTIONS(1311), - [anon_sym_thread_local] = ACTIONS(1311), - [anon_sym___thread] = ACTIONS(1311), - [anon_sym_const] = ACTIONS(1311), - [anon_sym_constexpr] = ACTIONS(1311), - [anon_sym_volatile] = ACTIONS(1311), - [anon_sym_restrict] = ACTIONS(1311), - [anon_sym___restrict__] = ACTIONS(1311), - [anon_sym__Atomic] = ACTIONS(1311), - [anon_sym__Noreturn] = ACTIONS(1311), - [anon_sym_noreturn] = ACTIONS(1311), - [anon_sym_alignas] = ACTIONS(1311), - [anon_sym__Alignas] = ACTIONS(1311), - [sym_primitive_type] = ACTIONS(1311), - [anon_sym_enum] = ACTIONS(1311), - [anon_sym_struct] = ACTIONS(1311), - [anon_sym_union] = ACTIONS(1311), - [anon_sym_if] = ACTIONS(1311), - [anon_sym_switch] = ACTIONS(1311), - [anon_sym_case] = ACTIONS(1311), - [anon_sym_default] = ACTIONS(1311), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_do] = ACTIONS(1311), - [anon_sym_for] = ACTIONS(1311), - [anon_sym_return] = ACTIONS(1311), - [anon_sym_break] = ACTIONS(1311), - [anon_sym_continue] = ACTIONS(1311), - [anon_sym_goto] = ACTIONS(1311), - [anon_sym___try] = ACTIONS(1311), - [anon_sym___leave] = ACTIONS(1311), - [anon_sym_DASH_DASH] = ACTIONS(1313), - [anon_sym_PLUS_PLUS] = ACTIONS(1313), - [anon_sym_sizeof] = ACTIONS(1311), - [anon_sym___alignof__] = ACTIONS(1311), - [anon_sym___alignof] = ACTIONS(1311), - [anon_sym__alignof] = ACTIONS(1311), - [anon_sym_alignof] = ACTIONS(1311), - [anon_sym__Alignof] = ACTIONS(1311), - [anon_sym_offsetof] = ACTIONS(1311), - [anon_sym__Generic] = ACTIONS(1311), - [anon_sym_asm] = ACTIONS(1311), - [anon_sym___asm__] = ACTIONS(1311), - [sym_number_literal] = ACTIONS(1313), - [anon_sym_L_SQUOTE] = ACTIONS(1313), - [anon_sym_u_SQUOTE] = ACTIONS(1313), - [anon_sym_U_SQUOTE] = ACTIONS(1313), - [anon_sym_u8_SQUOTE] = ACTIONS(1313), - [anon_sym_SQUOTE] = ACTIONS(1313), - [anon_sym_L_DQUOTE] = ACTIONS(1313), - [anon_sym_u_DQUOTE] = ACTIONS(1313), - [anon_sym_U_DQUOTE] = ACTIONS(1313), - [anon_sym_u8_DQUOTE] = ACTIONS(1313), - [anon_sym_DQUOTE] = ACTIONS(1313), - [sym_true] = ACTIONS(1311), - [sym_false] = ACTIONS(1311), - [anon_sym_NULL] = ACTIONS(1311), - [anon_sym_nullptr] = ACTIONS(1311), + [289] = { + [sym_identifier] = ACTIONS(1283), + [aux_sym_preproc_include_token1] = ACTIONS(1283), + [aux_sym_preproc_def_token1] = ACTIONS(1283), + [aux_sym_preproc_if_token1] = ACTIONS(1283), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1283), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1283), + [sym_preproc_directive] = ACTIONS(1283), + [anon_sym_LPAREN2] = ACTIONS(1285), + [anon_sym_BANG] = ACTIONS(1285), + [anon_sym_TILDE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1283), + [anon_sym_PLUS] = ACTIONS(1283), + [anon_sym_STAR] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1285), + [anon_sym_SEMI] = ACTIONS(1285), + [anon_sym___extension__] = ACTIONS(1283), + [anon_sym_typedef] = ACTIONS(1283), + [anon_sym_extern] = ACTIONS(1283), + [anon_sym___attribute__] = ACTIONS(1283), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1285), + [anon_sym___declspec] = ACTIONS(1283), + [anon_sym___cdecl] = ACTIONS(1283), + [anon_sym___clrcall] = ACTIONS(1283), + [anon_sym___stdcall] = ACTIONS(1283), + [anon_sym___fastcall] = ACTIONS(1283), + [anon_sym___thiscall] = ACTIONS(1283), + [anon_sym___vectorcall] = ACTIONS(1283), + [anon_sym_LBRACE] = ACTIONS(1285), + [anon_sym_RBRACE] = ACTIONS(1285), + [anon_sym_signed] = ACTIONS(1283), + [anon_sym_unsigned] = ACTIONS(1283), + [anon_sym_long] = ACTIONS(1283), + [anon_sym_short] = ACTIONS(1283), + [anon_sym_static] = ACTIONS(1283), + [anon_sym_auto] = ACTIONS(1283), + [anon_sym_register] = ACTIONS(1283), + [anon_sym_inline] = ACTIONS(1283), + [anon_sym___inline] = ACTIONS(1283), + [anon_sym___inline__] = ACTIONS(1283), + [anon_sym___forceinline] = ACTIONS(1283), + [anon_sym_thread_local] = ACTIONS(1283), + [anon_sym___thread] = ACTIONS(1283), + [anon_sym_const] = ACTIONS(1283), + [anon_sym_constexpr] = ACTIONS(1283), + [anon_sym_volatile] = ACTIONS(1283), + [anon_sym_restrict] = ACTIONS(1283), + [anon_sym___restrict__] = ACTIONS(1283), + [anon_sym__Atomic] = ACTIONS(1283), + [anon_sym__Noreturn] = ACTIONS(1283), + [anon_sym_noreturn] = ACTIONS(1283), + [anon_sym_alignas] = ACTIONS(1283), + [anon_sym__Alignas] = ACTIONS(1283), + [sym_primitive_type] = ACTIONS(1283), + [anon_sym_enum] = ACTIONS(1283), + [anon_sym_struct] = ACTIONS(1283), + [anon_sym_union] = ACTIONS(1283), + [anon_sym_if] = ACTIONS(1283), + [anon_sym_switch] = ACTIONS(1283), + [anon_sym_case] = ACTIONS(1283), + [anon_sym_default] = ACTIONS(1283), + [anon_sym_while] = ACTIONS(1283), + [anon_sym_do] = ACTIONS(1283), + [anon_sym_for] = ACTIONS(1283), + [anon_sym_return] = ACTIONS(1283), + [anon_sym_break] = ACTIONS(1283), + [anon_sym_continue] = ACTIONS(1283), + [anon_sym_goto] = ACTIONS(1283), + [anon_sym___try] = ACTIONS(1283), + [anon_sym___leave] = ACTIONS(1283), + [anon_sym_DASH_DASH] = ACTIONS(1285), + [anon_sym_PLUS_PLUS] = ACTIONS(1285), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym___alignof__] = ACTIONS(1283), + [anon_sym___alignof] = ACTIONS(1283), + [anon_sym__alignof] = ACTIONS(1283), + [anon_sym_alignof] = ACTIONS(1283), + [anon_sym__Alignof] = ACTIONS(1283), + [anon_sym_offsetof] = ACTIONS(1283), + [anon_sym__Generic] = ACTIONS(1283), + [anon_sym_asm] = ACTIONS(1283), + [anon_sym___asm__] = ACTIONS(1283), + [sym_number_literal] = ACTIONS(1285), + [anon_sym_L_SQUOTE] = ACTIONS(1285), + [anon_sym_u_SQUOTE] = ACTIONS(1285), + [anon_sym_U_SQUOTE] = ACTIONS(1285), + [anon_sym_u8_SQUOTE] = ACTIONS(1285), + [anon_sym_SQUOTE] = ACTIONS(1285), + [anon_sym_L_DQUOTE] = ACTIONS(1285), + [anon_sym_u_DQUOTE] = ACTIONS(1285), + [anon_sym_U_DQUOTE] = ACTIONS(1285), + [anon_sym_u8_DQUOTE] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1285), + [sym_true] = ACTIONS(1283), + [sym_false] = ACTIONS(1283), + [anon_sym_NULL] = ACTIONS(1283), + [anon_sym_nullptr] = ACTIONS(1283), [sym_comment] = ACTIONS(3), }, - [336] = { - [sym_identifier] = ACTIONS(1315), - [aux_sym_preproc_include_token1] = ACTIONS(1315), - [aux_sym_preproc_def_token1] = ACTIONS(1315), - [aux_sym_preproc_if_token1] = ACTIONS(1315), - [aux_sym_preproc_if_token2] = ACTIONS(1315), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1315), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1315), - [sym_preproc_directive] = ACTIONS(1315), - [anon_sym_LPAREN2] = ACTIONS(1317), - [anon_sym_BANG] = ACTIONS(1317), - [anon_sym_TILDE] = ACTIONS(1317), - [anon_sym_DASH] = ACTIONS(1315), - [anon_sym_PLUS] = ACTIONS(1315), - [anon_sym_STAR] = ACTIONS(1317), - [anon_sym_AMP] = ACTIONS(1317), - [anon_sym_SEMI] = ACTIONS(1317), - [anon_sym___extension__] = ACTIONS(1315), - [anon_sym_typedef] = ACTIONS(1315), - [anon_sym_extern] = ACTIONS(1315), - [anon_sym___attribute__] = ACTIONS(1315), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1317), - [anon_sym___declspec] = ACTIONS(1315), - [anon_sym___cdecl] = ACTIONS(1315), - [anon_sym___clrcall] = ACTIONS(1315), - [anon_sym___stdcall] = ACTIONS(1315), - [anon_sym___fastcall] = ACTIONS(1315), - [anon_sym___thiscall] = ACTIONS(1315), - [anon_sym___vectorcall] = ACTIONS(1315), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_signed] = ACTIONS(1315), - [anon_sym_unsigned] = ACTIONS(1315), - [anon_sym_long] = ACTIONS(1315), - [anon_sym_short] = ACTIONS(1315), - [anon_sym_static] = ACTIONS(1315), - [anon_sym_auto] = ACTIONS(1315), - [anon_sym_register] = ACTIONS(1315), - [anon_sym_inline] = ACTIONS(1315), - [anon_sym___inline] = ACTIONS(1315), - [anon_sym___inline__] = ACTIONS(1315), - [anon_sym___forceinline] = ACTIONS(1315), - [anon_sym_thread_local] = ACTIONS(1315), - [anon_sym___thread] = ACTIONS(1315), - [anon_sym_const] = ACTIONS(1315), - [anon_sym_constexpr] = ACTIONS(1315), - [anon_sym_volatile] = ACTIONS(1315), - [anon_sym_restrict] = ACTIONS(1315), - [anon_sym___restrict__] = ACTIONS(1315), - [anon_sym__Atomic] = ACTIONS(1315), - [anon_sym__Noreturn] = ACTIONS(1315), - [anon_sym_noreturn] = ACTIONS(1315), - [anon_sym_alignas] = ACTIONS(1315), - [anon_sym__Alignas] = ACTIONS(1315), - [sym_primitive_type] = ACTIONS(1315), - [anon_sym_enum] = ACTIONS(1315), - [anon_sym_struct] = ACTIONS(1315), - [anon_sym_union] = ACTIONS(1315), - [anon_sym_if] = ACTIONS(1315), - [anon_sym_switch] = ACTIONS(1315), - [anon_sym_case] = ACTIONS(1315), - [anon_sym_default] = ACTIONS(1315), - [anon_sym_while] = ACTIONS(1315), - [anon_sym_do] = ACTIONS(1315), - [anon_sym_for] = ACTIONS(1315), - [anon_sym_return] = ACTIONS(1315), - [anon_sym_break] = ACTIONS(1315), - [anon_sym_continue] = ACTIONS(1315), - [anon_sym_goto] = ACTIONS(1315), - [anon_sym___try] = ACTIONS(1315), - [anon_sym___leave] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_PLUS_PLUS] = ACTIONS(1317), - [anon_sym_sizeof] = ACTIONS(1315), - [anon_sym___alignof__] = ACTIONS(1315), - [anon_sym___alignof] = ACTIONS(1315), - [anon_sym__alignof] = ACTIONS(1315), - [anon_sym_alignof] = ACTIONS(1315), - [anon_sym__Alignof] = ACTIONS(1315), - [anon_sym_offsetof] = ACTIONS(1315), - [anon_sym__Generic] = ACTIONS(1315), - [anon_sym_asm] = ACTIONS(1315), - [anon_sym___asm__] = ACTIONS(1315), - [sym_number_literal] = ACTIONS(1317), - [anon_sym_L_SQUOTE] = ACTIONS(1317), - [anon_sym_u_SQUOTE] = ACTIONS(1317), - [anon_sym_U_SQUOTE] = ACTIONS(1317), - [anon_sym_u8_SQUOTE] = ACTIONS(1317), - [anon_sym_SQUOTE] = ACTIONS(1317), - [anon_sym_L_DQUOTE] = ACTIONS(1317), - [anon_sym_u_DQUOTE] = ACTIONS(1317), - [anon_sym_U_DQUOTE] = ACTIONS(1317), - [anon_sym_u8_DQUOTE] = ACTIONS(1317), - [anon_sym_DQUOTE] = ACTIONS(1317), - [sym_true] = ACTIONS(1315), - [sym_false] = ACTIONS(1315), - [anon_sym_NULL] = ACTIONS(1315), - [anon_sym_nullptr] = ACTIONS(1315), + [290] = { + [sym_identifier] = ACTIONS(1365), + [aux_sym_preproc_include_token1] = ACTIONS(1365), + [aux_sym_preproc_def_token1] = ACTIONS(1365), + [aux_sym_preproc_if_token1] = ACTIONS(1365), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1365), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1365), + [sym_preproc_directive] = ACTIONS(1365), + [anon_sym_LPAREN2] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1367), + [anon_sym_TILDE] = ACTIONS(1367), + [anon_sym_DASH] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1365), + [anon_sym_STAR] = ACTIONS(1367), + [anon_sym_AMP] = ACTIONS(1367), + [anon_sym_SEMI] = ACTIONS(1367), + [anon_sym___extension__] = ACTIONS(1365), + [anon_sym_typedef] = ACTIONS(1365), + [anon_sym_extern] = ACTIONS(1365), + [anon_sym___attribute__] = ACTIONS(1365), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1367), + [anon_sym___declspec] = ACTIONS(1365), + [anon_sym___cdecl] = ACTIONS(1365), + [anon_sym___clrcall] = ACTIONS(1365), + [anon_sym___stdcall] = ACTIONS(1365), + [anon_sym___fastcall] = ACTIONS(1365), + [anon_sym___thiscall] = ACTIONS(1365), + [anon_sym___vectorcall] = ACTIONS(1365), + [anon_sym_LBRACE] = ACTIONS(1367), + [anon_sym_RBRACE] = ACTIONS(1367), + [anon_sym_signed] = ACTIONS(1365), + [anon_sym_unsigned] = ACTIONS(1365), + [anon_sym_long] = ACTIONS(1365), + [anon_sym_short] = ACTIONS(1365), + [anon_sym_static] = ACTIONS(1365), + [anon_sym_auto] = ACTIONS(1365), + [anon_sym_register] = ACTIONS(1365), + [anon_sym_inline] = ACTIONS(1365), + [anon_sym___inline] = ACTIONS(1365), + [anon_sym___inline__] = ACTIONS(1365), + [anon_sym___forceinline] = ACTIONS(1365), + [anon_sym_thread_local] = ACTIONS(1365), + [anon_sym___thread] = ACTIONS(1365), + [anon_sym_const] = ACTIONS(1365), + [anon_sym_constexpr] = ACTIONS(1365), + [anon_sym_volatile] = ACTIONS(1365), + [anon_sym_restrict] = ACTIONS(1365), + [anon_sym___restrict__] = ACTIONS(1365), + [anon_sym__Atomic] = ACTIONS(1365), + [anon_sym__Noreturn] = ACTIONS(1365), + [anon_sym_noreturn] = ACTIONS(1365), + [anon_sym_alignas] = ACTIONS(1365), + [anon_sym__Alignas] = ACTIONS(1365), + [sym_primitive_type] = ACTIONS(1365), + [anon_sym_enum] = ACTIONS(1365), + [anon_sym_struct] = ACTIONS(1365), + [anon_sym_union] = ACTIONS(1365), + [anon_sym_if] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1365), + [anon_sym_case] = ACTIONS(1365), + [anon_sym_default] = ACTIONS(1365), + [anon_sym_while] = ACTIONS(1365), + [anon_sym_do] = ACTIONS(1365), + [anon_sym_for] = ACTIONS(1365), + [anon_sym_return] = ACTIONS(1365), + [anon_sym_break] = ACTIONS(1365), + [anon_sym_continue] = ACTIONS(1365), + [anon_sym_goto] = ACTIONS(1365), + [anon_sym___try] = ACTIONS(1365), + [anon_sym___leave] = ACTIONS(1365), + [anon_sym_DASH_DASH] = ACTIONS(1367), + [anon_sym_PLUS_PLUS] = ACTIONS(1367), + [anon_sym_sizeof] = ACTIONS(1365), + [anon_sym___alignof__] = ACTIONS(1365), + [anon_sym___alignof] = ACTIONS(1365), + [anon_sym__alignof] = ACTIONS(1365), + [anon_sym_alignof] = ACTIONS(1365), + [anon_sym__Alignof] = ACTIONS(1365), + [anon_sym_offsetof] = ACTIONS(1365), + [anon_sym__Generic] = ACTIONS(1365), + [anon_sym_asm] = ACTIONS(1365), + [anon_sym___asm__] = ACTIONS(1365), + [sym_number_literal] = ACTIONS(1367), + [anon_sym_L_SQUOTE] = ACTIONS(1367), + [anon_sym_u_SQUOTE] = ACTIONS(1367), + [anon_sym_U_SQUOTE] = ACTIONS(1367), + [anon_sym_u8_SQUOTE] = ACTIONS(1367), + [anon_sym_SQUOTE] = ACTIONS(1367), + [anon_sym_L_DQUOTE] = ACTIONS(1367), + [anon_sym_u_DQUOTE] = ACTIONS(1367), + [anon_sym_U_DQUOTE] = ACTIONS(1367), + [anon_sym_u8_DQUOTE] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1367), + [sym_true] = ACTIONS(1365), + [sym_false] = ACTIONS(1365), + [anon_sym_NULL] = ACTIONS(1365), + [anon_sym_nullptr] = ACTIONS(1365), [sym_comment] = ACTIONS(3), }, - [337] = { - [sym_identifier] = ACTIONS(1303), - [aux_sym_preproc_include_token1] = ACTIONS(1303), - [aux_sym_preproc_def_token1] = ACTIONS(1303), - [aux_sym_preproc_if_token1] = ACTIONS(1303), - [aux_sym_preproc_if_token2] = ACTIONS(1303), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1303), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1303), - [sym_preproc_directive] = ACTIONS(1303), - [anon_sym_LPAREN2] = ACTIONS(1305), - [anon_sym_BANG] = ACTIONS(1305), - [anon_sym_TILDE] = ACTIONS(1305), - [anon_sym_DASH] = ACTIONS(1303), - [anon_sym_PLUS] = ACTIONS(1303), - [anon_sym_STAR] = ACTIONS(1305), - [anon_sym_AMP] = ACTIONS(1305), - [anon_sym_SEMI] = ACTIONS(1305), - [anon_sym___extension__] = ACTIONS(1303), - [anon_sym_typedef] = ACTIONS(1303), - [anon_sym_extern] = ACTIONS(1303), - [anon_sym___attribute__] = ACTIONS(1303), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1305), - [anon_sym___declspec] = ACTIONS(1303), - [anon_sym___cdecl] = ACTIONS(1303), - [anon_sym___clrcall] = ACTIONS(1303), - [anon_sym___stdcall] = ACTIONS(1303), - [anon_sym___fastcall] = ACTIONS(1303), - [anon_sym___thiscall] = ACTIONS(1303), - [anon_sym___vectorcall] = ACTIONS(1303), - [anon_sym_LBRACE] = ACTIONS(1305), - [anon_sym_signed] = ACTIONS(1303), - [anon_sym_unsigned] = ACTIONS(1303), - [anon_sym_long] = ACTIONS(1303), - [anon_sym_short] = ACTIONS(1303), - [anon_sym_static] = ACTIONS(1303), - [anon_sym_auto] = ACTIONS(1303), - [anon_sym_register] = ACTIONS(1303), - [anon_sym_inline] = ACTIONS(1303), - [anon_sym___inline] = ACTIONS(1303), - [anon_sym___inline__] = ACTIONS(1303), - [anon_sym___forceinline] = ACTIONS(1303), - [anon_sym_thread_local] = ACTIONS(1303), - [anon_sym___thread] = ACTIONS(1303), - [anon_sym_const] = ACTIONS(1303), - [anon_sym_constexpr] = ACTIONS(1303), - [anon_sym_volatile] = ACTIONS(1303), - [anon_sym_restrict] = ACTIONS(1303), - [anon_sym___restrict__] = ACTIONS(1303), - [anon_sym__Atomic] = ACTIONS(1303), - [anon_sym__Noreturn] = ACTIONS(1303), - [anon_sym_noreturn] = ACTIONS(1303), - [anon_sym_alignas] = ACTIONS(1303), - [anon_sym__Alignas] = ACTIONS(1303), - [sym_primitive_type] = ACTIONS(1303), - [anon_sym_enum] = ACTIONS(1303), - [anon_sym_struct] = ACTIONS(1303), - [anon_sym_union] = ACTIONS(1303), - [anon_sym_if] = ACTIONS(1303), - [anon_sym_switch] = ACTIONS(1303), - [anon_sym_case] = ACTIONS(1303), - [anon_sym_default] = ACTIONS(1303), - [anon_sym_while] = ACTIONS(1303), - [anon_sym_do] = ACTIONS(1303), - [anon_sym_for] = ACTIONS(1303), - [anon_sym_return] = ACTIONS(1303), - [anon_sym_break] = ACTIONS(1303), - [anon_sym_continue] = ACTIONS(1303), - [anon_sym_goto] = ACTIONS(1303), - [anon_sym___try] = ACTIONS(1303), - [anon_sym___leave] = ACTIONS(1303), - [anon_sym_DASH_DASH] = ACTIONS(1305), - [anon_sym_PLUS_PLUS] = ACTIONS(1305), - [anon_sym_sizeof] = ACTIONS(1303), - [anon_sym___alignof__] = ACTIONS(1303), - [anon_sym___alignof] = ACTIONS(1303), - [anon_sym__alignof] = ACTIONS(1303), - [anon_sym_alignof] = ACTIONS(1303), - [anon_sym__Alignof] = ACTIONS(1303), - [anon_sym_offsetof] = ACTIONS(1303), - [anon_sym__Generic] = ACTIONS(1303), - [anon_sym_asm] = ACTIONS(1303), - [anon_sym___asm__] = ACTIONS(1303), - [sym_number_literal] = ACTIONS(1305), - [anon_sym_L_SQUOTE] = ACTIONS(1305), - [anon_sym_u_SQUOTE] = ACTIONS(1305), - [anon_sym_U_SQUOTE] = ACTIONS(1305), - [anon_sym_u8_SQUOTE] = ACTIONS(1305), - [anon_sym_SQUOTE] = ACTIONS(1305), - [anon_sym_L_DQUOTE] = ACTIONS(1305), - [anon_sym_u_DQUOTE] = ACTIONS(1305), - [anon_sym_U_DQUOTE] = ACTIONS(1305), - [anon_sym_u8_DQUOTE] = ACTIONS(1305), - [anon_sym_DQUOTE] = ACTIONS(1305), - [sym_true] = ACTIONS(1303), - [sym_false] = ACTIONS(1303), - [anon_sym_NULL] = ACTIONS(1303), - [anon_sym_nullptr] = ACTIONS(1303), + [291] = { + [sym_identifier] = ACTIONS(1361), + [aux_sym_preproc_include_token1] = ACTIONS(1361), + [aux_sym_preproc_def_token1] = ACTIONS(1361), + [aux_sym_preproc_if_token1] = ACTIONS(1361), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1361), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1361), + [sym_preproc_directive] = ACTIONS(1361), + [anon_sym_LPAREN2] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_TILDE] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1361), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_AMP] = ACTIONS(1363), + [anon_sym_SEMI] = ACTIONS(1363), + [anon_sym___extension__] = ACTIONS(1361), + [anon_sym_typedef] = ACTIONS(1361), + [anon_sym_extern] = ACTIONS(1361), + [anon_sym___attribute__] = ACTIONS(1361), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1363), + [anon_sym___declspec] = ACTIONS(1361), + [anon_sym___cdecl] = ACTIONS(1361), + [anon_sym___clrcall] = ACTIONS(1361), + [anon_sym___stdcall] = ACTIONS(1361), + [anon_sym___fastcall] = ACTIONS(1361), + [anon_sym___thiscall] = ACTIONS(1361), + [anon_sym___vectorcall] = ACTIONS(1361), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_RBRACE] = ACTIONS(1363), + [anon_sym_signed] = ACTIONS(1361), + [anon_sym_unsigned] = ACTIONS(1361), + [anon_sym_long] = ACTIONS(1361), + [anon_sym_short] = ACTIONS(1361), + [anon_sym_static] = ACTIONS(1361), + [anon_sym_auto] = ACTIONS(1361), + [anon_sym_register] = ACTIONS(1361), + [anon_sym_inline] = ACTIONS(1361), + [anon_sym___inline] = ACTIONS(1361), + [anon_sym___inline__] = ACTIONS(1361), + [anon_sym___forceinline] = ACTIONS(1361), + [anon_sym_thread_local] = ACTIONS(1361), + [anon_sym___thread] = ACTIONS(1361), + [anon_sym_const] = ACTIONS(1361), + [anon_sym_constexpr] = ACTIONS(1361), + [anon_sym_volatile] = ACTIONS(1361), + [anon_sym_restrict] = ACTIONS(1361), + [anon_sym___restrict__] = ACTIONS(1361), + [anon_sym__Atomic] = ACTIONS(1361), + [anon_sym__Noreturn] = ACTIONS(1361), + [anon_sym_noreturn] = ACTIONS(1361), + [anon_sym_alignas] = ACTIONS(1361), + [anon_sym__Alignas] = ACTIONS(1361), + [sym_primitive_type] = ACTIONS(1361), + [anon_sym_enum] = ACTIONS(1361), + [anon_sym_struct] = ACTIONS(1361), + [anon_sym_union] = ACTIONS(1361), + [anon_sym_if] = ACTIONS(1361), + [anon_sym_switch] = ACTIONS(1361), + [anon_sym_case] = ACTIONS(1361), + [anon_sym_default] = ACTIONS(1361), + [anon_sym_while] = ACTIONS(1361), + [anon_sym_do] = ACTIONS(1361), + [anon_sym_for] = ACTIONS(1361), + [anon_sym_return] = ACTIONS(1361), + [anon_sym_break] = ACTIONS(1361), + [anon_sym_continue] = ACTIONS(1361), + [anon_sym_goto] = ACTIONS(1361), + [anon_sym___try] = ACTIONS(1361), + [anon_sym___leave] = ACTIONS(1361), + [anon_sym_DASH_DASH] = ACTIONS(1363), + [anon_sym_PLUS_PLUS] = ACTIONS(1363), + [anon_sym_sizeof] = ACTIONS(1361), + [anon_sym___alignof__] = ACTIONS(1361), + [anon_sym___alignof] = ACTIONS(1361), + [anon_sym__alignof] = ACTIONS(1361), + [anon_sym_alignof] = ACTIONS(1361), + [anon_sym__Alignof] = ACTIONS(1361), + [anon_sym_offsetof] = ACTIONS(1361), + [anon_sym__Generic] = ACTIONS(1361), + [anon_sym_asm] = ACTIONS(1361), + [anon_sym___asm__] = ACTIONS(1361), + [sym_number_literal] = ACTIONS(1363), + [anon_sym_L_SQUOTE] = ACTIONS(1363), + [anon_sym_u_SQUOTE] = ACTIONS(1363), + [anon_sym_U_SQUOTE] = ACTIONS(1363), + [anon_sym_u8_SQUOTE] = ACTIONS(1363), + [anon_sym_SQUOTE] = ACTIONS(1363), + [anon_sym_L_DQUOTE] = ACTIONS(1363), + [anon_sym_u_DQUOTE] = ACTIONS(1363), + [anon_sym_U_DQUOTE] = ACTIONS(1363), + [anon_sym_u8_DQUOTE] = ACTIONS(1363), + [anon_sym_DQUOTE] = ACTIONS(1363), + [sym_true] = ACTIONS(1361), + [sym_false] = ACTIONS(1361), + [anon_sym_NULL] = ACTIONS(1361), + [anon_sym_nullptr] = ACTIONS(1361), [sym_comment] = ACTIONS(3), }, - [338] = { - [sym_identifier] = ACTIONS(1327), - [aux_sym_preproc_include_token1] = ACTIONS(1327), - [aux_sym_preproc_def_token1] = ACTIONS(1327), - [aux_sym_preproc_if_token1] = ACTIONS(1327), - [aux_sym_preproc_if_token2] = ACTIONS(1327), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1327), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1327), - [sym_preproc_directive] = ACTIONS(1327), - [anon_sym_LPAREN2] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_TILDE] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1327), - [anon_sym_STAR] = ACTIONS(1329), - [anon_sym_AMP] = ACTIONS(1329), - [anon_sym_SEMI] = ACTIONS(1329), - [anon_sym___extension__] = ACTIONS(1327), - [anon_sym_typedef] = ACTIONS(1327), - [anon_sym_extern] = ACTIONS(1327), - [anon_sym___attribute__] = ACTIONS(1327), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1329), - [anon_sym___declspec] = ACTIONS(1327), - [anon_sym___cdecl] = ACTIONS(1327), - [anon_sym___clrcall] = ACTIONS(1327), - [anon_sym___stdcall] = ACTIONS(1327), - [anon_sym___fastcall] = ACTIONS(1327), - [anon_sym___thiscall] = ACTIONS(1327), - [anon_sym___vectorcall] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(1329), - [anon_sym_signed] = ACTIONS(1327), + [292] = { + [sym_identifier] = ACTIONS(1323), + [aux_sym_preproc_include_token1] = ACTIONS(1323), + [aux_sym_preproc_def_token1] = ACTIONS(1323), + [aux_sym_preproc_if_token1] = ACTIONS(1323), + [aux_sym_preproc_if_token2] = ACTIONS(1323), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1323), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1323), + [sym_preproc_directive] = ACTIONS(1323), + [anon_sym_LPAREN2] = ACTIONS(1325), + [anon_sym_BANG] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1325), + [anon_sym_DASH] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1323), + [anon_sym_STAR] = ACTIONS(1325), + [anon_sym_AMP] = ACTIONS(1325), + [anon_sym_SEMI] = ACTIONS(1325), + [anon_sym___extension__] = ACTIONS(1323), + [anon_sym_typedef] = ACTIONS(1323), + [anon_sym_extern] = ACTIONS(1323), + [anon_sym___attribute__] = ACTIONS(1323), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym___declspec] = ACTIONS(1323), + [anon_sym___cdecl] = ACTIONS(1323), + [anon_sym___clrcall] = ACTIONS(1323), + [anon_sym___stdcall] = ACTIONS(1323), + [anon_sym___fastcall] = ACTIONS(1323), + [anon_sym___thiscall] = ACTIONS(1323), + [anon_sym___vectorcall] = ACTIONS(1323), + [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_signed] = ACTIONS(1323), + [anon_sym_unsigned] = ACTIONS(1323), + [anon_sym_long] = ACTIONS(1323), + [anon_sym_short] = ACTIONS(1323), + [anon_sym_static] = ACTIONS(1323), + [anon_sym_auto] = ACTIONS(1323), + [anon_sym_register] = ACTIONS(1323), + [anon_sym_inline] = ACTIONS(1323), + [anon_sym___inline] = ACTIONS(1323), + [anon_sym___inline__] = ACTIONS(1323), + [anon_sym___forceinline] = ACTIONS(1323), + [anon_sym_thread_local] = ACTIONS(1323), + [anon_sym___thread] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_constexpr] = ACTIONS(1323), + [anon_sym_volatile] = ACTIONS(1323), + [anon_sym_restrict] = ACTIONS(1323), + [anon_sym___restrict__] = ACTIONS(1323), + [anon_sym__Atomic] = ACTIONS(1323), + [anon_sym__Noreturn] = ACTIONS(1323), + [anon_sym_noreturn] = ACTIONS(1323), + [anon_sym_alignas] = ACTIONS(1323), + [anon_sym__Alignas] = ACTIONS(1323), + [sym_primitive_type] = ACTIONS(1323), + [anon_sym_enum] = ACTIONS(1323), + [anon_sym_struct] = ACTIONS(1323), + [anon_sym_union] = ACTIONS(1323), + [anon_sym_if] = ACTIONS(1323), + [anon_sym_switch] = ACTIONS(1323), + [anon_sym_case] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1323), + [anon_sym_while] = ACTIONS(1323), + [anon_sym_do] = ACTIONS(1323), + [anon_sym_for] = ACTIONS(1323), + [anon_sym_return] = ACTIONS(1323), + [anon_sym_break] = ACTIONS(1323), + [anon_sym_continue] = ACTIONS(1323), + [anon_sym_goto] = ACTIONS(1323), + [anon_sym___try] = ACTIONS(1323), + [anon_sym___leave] = ACTIONS(1323), + [anon_sym_DASH_DASH] = ACTIONS(1325), + [anon_sym_PLUS_PLUS] = ACTIONS(1325), + [anon_sym_sizeof] = ACTIONS(1323), + [anon_sym___alignof__] = ACTIONS(1323), + [anon_sym___alignof] = ACTIONS(1323), + [anon_sym__alignof] = ACTIONS(1323), + [anon_sym_alignof] = ACTIONS(1323), + [anon_sym__Alignof] = ACTIONS(1323), + [anon_sym_offsetof] = ACTIONS(1323), + [anon_sym__Generic] = ACTIONS(1323), + [anon_sym_asm] = ACTIONS(1323), + [anon_sym___asm__] = ACTIONS(1323), + [sym_number_literal] = ACTIONS(1325), + [anon_sym_L_SQUOTE] = ACTIONS(1325), + [anon_sym_u_SQUOTE] = ACTIONS(1325), + [anon_sym_U_SQUOTE] = ACTIONS(1325), + [anon_sym_u8_SQUOTE] = ACTIONS(1325), + [anon_sym_SQUOTE] = ACTIONS(1325), + [anon_sym_L_DQUOTE] = ACTIONS(1325), + [anon_sym_u_DQUOTE] = ACTIONS(1325), + [anon_sym_U_DQUOTE] = ACTIONS(1325), + [anon_sym_u8_DQUOTE] = ACTIONS(1325), + [anon_sym_DQUOTE] = ACTIONS(1325), + [sym_true] = ACTIONS(1323), + [sym_false] = ACTIONS(1323), + [anon_sym_NULL] = ACTIONS(1323), + [anon_sym_nullptr] = ACTIONS(1323), + [sym_comment] = ACTIONS(3), + }, + [293] = { + [sym_identifier] = ACTIONS(1335), + [aux_sym_preproc_include_token1] = ACTIONS(1335), + [aux_sym_preproc_def_token1] = ACTIONS(1335), + [aux_sym_preproc_if_token1] = ACTIONS(1335), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1335), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1335), + [sym_preproc_directive] = ACTIONS(1335), + [anon_sym_LPAREN2] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1337), + [anon_sym_TILDE] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1335), + [anon_sym_PLUS] = ACTIONS(1335), + [anon_sym_STAR] = ACTIONS(1337), + [anon_sym_AMP] = ACTIONS(1337), + [anon_sym_SEMI] = ACTIONS(1337), + [anon_sym___extension__] = ACTIONS(1335), + [anon_sym_typedef] = ACTIONS(1335), + [anon_sym_extern] = ACTIONS(1335), + [anon_sym___attribute__] = ACTIONS(1335), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1337), + [anon_sym___declspec] = ACTIONS(1335), + [anon_sym___cdecl] = ACTIONS(1335), + [anon_sym___clrcall] = ACTIONS(1335), + [anon_sym___stdcall] = ACTIONS(1335), + [anon_sym___fastcall] = ACTIONS(1335), + [anon_sym___thiscall] = ACTIONS(1335), + [anon_sym___vectorcall] = ACTIONS(1335), + [anon_sym_LBRACE] = ACTIONS(1337), + [anon_sym_RBRACE] = ACTIONS(1337), + [anon_sym_signed] = ACTIONS(1335), + [anon_sym_unsigned] = ACTIONS(1335), + [anon_sym_long] = ACTIONS(1335), + [anon_sym_short] = ACTIONS(1335), + [anon_sym_static] = ACTIONS(1335), + [anon_sym_auto] = ACTIONS(1335), + [anon_sym_register] = ACTIONS(1335), + [anon_sym_inline] = ACTIONS(1335), + [anon_sym___inline] = ACTIONS(1335), + [anon_sym___inline__] = ACTIONS(1335), + [anon_sym___forceinline] = ACTIONS(1335), + [anon_sym_thread_local] = ACTIONS(1335), + [anon_sym___thread] = ACTIONS(1335), + [anon_sym_const] = ACTIONS(1335), + [anon_sym_constexpr] = ACTIONS(1335), + [anon_sym_volatile] = ACTIONS(1335), + [anon_sym_restrict] = ACTIONS(1335), + [anon_sym___restrict__] = ACTIONS(1335), + [anon_sym__Atomic] = ACTIONS(1335), + [anon_sym__Noreturn] = ACTIONS(1335), + [anon_sym_noreturn] = ACTIONS(1335), + [anon_sym_alignas] = ACTIONS(1335), + [anon_sym__Alignas] = ACTIONS(1335), + [sym_primitive_type] = ACTIONS(1335), + [anon_sym_enum] = ACTIONS(1335), + [anon_sym_struct] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1335), + [anon_sym_if] = ACTIONS(1335), + [anon_sym_switch] = ACTIONS(1335), + [anon_sym_case] = ACTIONS(1335), + [anon_sym_default] = ACTIONS(1335), + [anon_sym_while] = ACTIONS(1335), + [anon_sym_do] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1335), + [anon_sym_return] = ACTIONS(1335), + [anon_sym_break] = ACTIONS(1335), + [anon_sym_continue] = ACTIONS(1335), + [anon_sym_goto] = ACTIONS(1335), + [anon_sym___try] = ACTIONS(1335), + [anon_sym___leave] = ACTIONS(1335), + [anon_sym_DASH_DASH] = ACTIONS(1337), + [anon_sym_PLUS_PLUS] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(1335), + [anon_sym___alignof__] = ACTIONS(1335), + [anon_sym___alignof] = ACTIONS(1335), + [anon_sym__alignof] = ACTIONS(1335), + [anon_sym_alignof] = ACTIONS(1335), + [anon_sym__Alignof] = ACTIONS(1335), + [anon_sym_offsetof] = ACTIONS(1335), + [anon_sym__Generic] = ACTIONS(1335), + [anon_sym_asm] = ACTIONS(1335), + [anon_sym___asm__] = ACTIONS(1335), + [sym_number_literal] = ACTIONS(1337), + [anon_sym_L_SQUOTE] = ACTIONS(1337), + [anon_sym_u_SQUOTE] = ACTIONS(1337), + [anon_sym_U_SQUOTE] = ACTIONS(1337), + [anon_sym_u8_SQUOTE] = ACTIONS(1337), + [anon_sym_SQUOTE] = ACTIONS(1337), + [anon_sym_L_DQUOTE] = ACTIONS(1337), + [anon_sym_u_DQUOTE] = ACTIONS(1337), + [anon_sym_U_DQUOTE] = ACTIONS(1337), + [anon_sym_u8_DQUOTE] = ACTIONS(1337), + [anon_sym_DQUOTE] = ACTIONS(1337), + [sym_true] = ACTIONS(1335), + [sym_false] = ACTIONS(1335), + [anon_sym_NULL] = ACTIONS(1335), + [anon_sym_nullptr] = ACTIONS(1335), + [sym_comment] = ACTIONS(3), + }, + [294] = { + [sym_identifier] = ACTIONS(1327), + [aux_sym_preproc_include_token1] = ACTIONS(1327), + [aux_sym_preproc_def_token1] = ACTIONS(1327), + [aux_sym_preproc_if_token1] = ACTIONS(1327), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1327), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1327), + [sym_preproc_directive] = ACTIONS(1327), + [anon_sym_LPAREN2] = ACTIONS(1329), + [anon_sym_BANG] = ACTIONS(1329), + [anon_sym_TILDE] = ACTIONS(1329), + [anon_sym_DASH] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1327), + [anon_sym_STAR] = ACTIONS(1329), + [anon_sym_AMP] = ACTIONS(1329), + [anon_sym_SEMI] = ACTIONS(1329), + [anon_sym___extension__] = ACTIONS(1327), + [anon_sym_typedef] = ACTIONS(1327), + [anon_sym_extern] = ACTIONS(1327), + [anon_sym___attribute__] = ACTIONS(1327), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1329), + [anon_sym___declspec] = ACTIONS(1327), + [anon_sym___cdecl] = ACTIONS(1327), + [anon_sym___clrcall] = ACTIONS(1327), + [anon_sym___stdcall] = ACTIONS(1327), + [anon_sym___fastcall] = ACTIONS(1327), + [anon_sym___thiscall] = ACTIONS(1327), + [anon_sym___vectorcall] = ACTIONS(1327), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_RBRACE] = ACTIONS(1329), + [anon_sym_signed] = ACTIONS(1327), [anon_sym_unsigned] = ACTIONS(1327), [anon_sym_long] = ACTIONS(1327), [anon_sym_short] = ACTIONS(1327), @@ -50445,111 +45917,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1327), [sym_comment] = ACTIONS(3), }, - [339] = { - [sym_identifier] = ACTIONS(1247), - [aux_sym_preproc_include_token1] = ACTIONS(1247), - [aux_sym_preproc_def_token1] = ACTIONS(1247), - [aux_sym_preproc_if_token1] = ACTIONS(1247), - [aux_sym_preproc_if_token2] = ACTIONS(1247), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1247), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1247), - [sym_preproc_directive] = ACTIONS(1247), - [anon_sym_LPAREN2] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1249), - [anon_sym_TILDE] = ACTIONS(1249), - [anon_sym_DASH] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1247), - [anon_sym_STAR] = ACTIONS(1249), - [anon_sym_AMP] = ACTIONS(1249), - [anon_sym_SEMI] = ACTIONS(1249), - [anon_sym___extension__] = ACTIONS(1247), - [anon_sym_typedef] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1247), - [anon_sym___attribute__] = ACTIONS(1247), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1249), - [anon_sym___declspec] = ACTIONS(1247), - [anon_sym___cdecl] = ACTIONS(1247), - [anon_sym___clrcall] = ACTIONS(1247), - [anon_sym___stdcall] = ACTIONS(1247), - [anon_sym___fastcall] = ACTIONS(1247), - [anon_sym___thiscall] = ACTIONS(1247), - [anon_sym___vectorcall] = ACTIONS(1247), - [anon_sym_LBRACE] = ACTIONS(1249), - [anon_sym_signed] = ACTIONS(1247), - [anon_sym_unsigned] = ACTIONS(1247), - [anon_sym_long] = ACTIONS(1247), - [anon_sym_short] = ACTIONS(1247), - [anon_sym_static] = ACTIONS(1247), - [anon_sym_auto] = ACTIONS(1247), - [anon_sym_register] = ACTIONS(1247), - [anon_sym_inline] = ACTIONS(1247), - [anon_sym___inline] = ACTIONS(1247), - [anon_sym___inline__] = ACTIONS(1247), - [anon_sym___forceinline] = ACTIONS(1247), - [anon_sym_thread_local] = ACTIONS(1247), - [anon_sym___thread] = ACTIONS(1247), - [anon_sym_const] = ACTIONS(1247), - [anon_sym_constexpr] = ACTIONS(1247), - [anon_sym_volatile] = ACTIONS(1247), - [anon_sym_restrict] = ACTIONS(1247), - [anon_sym___restrict__] = ACTIONS(1247), - [anon_sym__Atomic] = ACTIONS(1247), - [anon_sym__Noreturn] = ACTIONS(1247), - [anon_sym_noreturn] = ACTIONS(1247), - [anon_sym_alignas] = ACTIONS(1247), - [anon_sym__Alignas] = ACTIONS(1247), - [sym_primitive_type] = ACTIONS(1247), - [anon_sym_enum] = ACTIONS(1247), - [anon_sym_struct] = ACTIONS(1247), - [anon_sym_union] = ACTIONS(1247), - [anon_sym_if] = ACTIONS(1247), - [anon_sym_switch] = ACTIONS(1247), - [anon_sym_case] = ACTIONS(1247), - [anon_sym_default] = ACTIONS(1247), - [anon_sym_while] = ACTIONS(1247), - [anon_sym_do] = ACTIONS(1247), - [anon_sym_for] = ACTIONS(1247), - [anon_sym_return] = ACTIONS(1247), - [anon_sym_break] = ACTIONS(1247), - [anon_sym_continue] = ACTIONS(1247), - [anon_sym_goto] = ACTIONS(1247), - [anon_sym___try] = ACTIONS(1247), - [anon_sym___leave] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1249), - [anon_sym_PLUS_PLUS] = ACTIONS(1249), - [anon_sym_sizeof] = ACTIONS(1247), - [anon_sym___alignof__] = ACTIONS(1247), - [anon_sym___alignof] = ACTIONS(1247), - [anon_sym__alignof] = ACTIONS(1247), - [anon_sym_alignof] = ACTIONS(1247), - [anon_sym__Alignof] = ACTIONS(1247), - [anon_sym_offsetof] = ACTIONS(1247), - [anon_sym__Generic] = ACTIONS(1247), - [anon_sym_asm] = ACTIONS(1247), - [anon_sym___asm__] = ACTIONS(1247), - [sym_number_literal] = ACTIONS(1249), - [anon_sym_L_SQUOTE] = ACTIONS(1249), - [anon_sym_u_SQUOTE] = ACTIONS(1249), - [anon_sym_U_SQUOTE] = ACTIONS(1249), - [anon_sym_u8_SQUOTE] = ACTIONS(1249), - [anon_sym_SQUOTE] = ACTIONS(1249), - [anon_sym_L_DQUOTE] = ACTIONS(1249), - [anon_sym_u_DQUOTE] = ACTIONS(1249), - [anon_sym_U_DQUOTE] = ACTIONS(1249), - [anon_sym_u8_DQUOTE] = ACTIONS(1249), - [anon_sym_DQUOTE] = ACTIONS(1249), - [sym_true] = ACTIONS(1247), - [sym_false] = ACTIONS(1247), - [anon_sym_NULL] = ACTIONS(1247), - [anon_sym_nullptr] = ACTIONS(1247), - [sym_comment] = ACTIONS(3), - }, - [340] = { + [295] = { [sym_identifier] = ACTIONS(1251), [aux_sym_preproc_include_token1] = ACTIONS(1251), [aux_sym_preproc_def_token1] = ACTIONS(1251), [aux_sym_preproc_if_token1] = ACTIONS(1251), - [aux_sym_preproc_if_token2] = ACTIONS(1251), [aux_sym_preproc_ifdef_token1] = ACTIONS(1251), [aux_sym_preproc_ifdef_token2] = ACTIONS(1251), [sym_preproc_directive] = ACTIONS(1251), @@ -50574,6 +45946,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1251), [anon_sym___vectorcall] = ACTIONS(1251), [anon_sym_LBRACE] = ACTIONS(1253), + [anon_sym_RBRACE] = ACTIONS(1253), [anon_sym_signed] = ACTIONS(1251), [anon_sym_unsigned] = ACTIONS(1251), [anon_sym_long] = ACTIONS(1251), @@ -50643,605 +46016,408 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1251), [sym_comment] = ACTIONS(3), }, - [341] = { - [sym_identifier] = ACTIONS(1271), - [aux_sym_preproc_include_token1] = ACTIONS(1271), - [aux_sym_preproc_def_token1] = ACTIONS(1271), - [aux_sym_preproc_if_token1] = ACTIONS(1271), - [aux_sym_preproc_if_token2] = ACTIONS(1271), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1271), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1271), - [sym_preproc_directive] = ACTIONS(1271), - [anon_sym_LPAREN2] = ACTIONS(1273), - [anon_sym_BANG] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1273), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_PLUS] = ACTIONS(1271), - [anon_sym_STAR] = ACTIONS(1273), - [anon_sym_AMP] = ACTIONS(1273), - [anon_sym_SEMI] = ACTIONS(1273), - [anon_sym___extension__] = ACTIONS(1271), - [anon_sym_typedef] = ACTIONS(1271), - [anon_sym_extern] = ACTIONS(1271), - [anon_sym___attribute__] = ACTIONS(1271), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1273), - [anon_sym___declspec] = ACTIONS(1271), - [anon_sym___cdecl] = ACTIONS(1271), - [anon_sym___clrcall] = ACTIONS(1271), - [anon_sym___stdcall] = ACTIONS(1271), - [anon_sym___fastcall] = ACTIONS(1271), - [anon_sym___thiscall] = ACTIONS(1271), - [anon_sym___vectorcall] = ACTIONS(1271), - [anon_sym_LBRACE] = ACTIONS(1273), - [anon_sym_signed] = ACTIONS(1271), - [anon_sym_unsigned] = ACTIONS(1271), - [anon_sym_long] = ACTIONS(1271), - [anon_sym_short] = ACTIONS(1271), - [anon_sym_static] = ACTIONS(1271), - [anon_sym_auto] = ACTIONS(1271), - [anon_sym_register] = ACTIONS(1271), - [anon_sym_inline] = ACTIONS(1271), - [anon_sym___inline] = ACTIONS(1271), - [anon_sym___inline__] = ACTIONS(1271), - [anon_sym___forceinline] = ACTIONS(1271), - [anon_sym_thread_local] = ACTIONS(1271), - [anon_sym___thread] = ACTIONS(1271), - [anon_sym_const] = ACTIONS(1271), - [anon_sym_constexpr] = ACTIONS(1271), - [anon_sym_volatile] = ACTIONS(1271), - [anon_sym_restrict] = ACTIONS(1271), - [anon_sym___restrict__] = ACTIONS(1271), - [anon_sym__Atomic] = ACTIONS(1271), - [anon_sym__Noreturn] = ACTIONS(1271), - [anon_sym_noreturn] = ACTIONS(1271), - [anon_sym_alignas] = ACTIONS(1271), - [anon_sym__Alignas] = ACTIONS(1271), - [sym_primitive_type] = ACTIONS(1271), - [anon_sym_enum] = ACTIONS(1271), - [anon_sym_struct] = ACTIONS(1271), - [anon_sym_union] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1271), - [anon_sym_switch] = ACTIONS(1271), - [anon_sym_case] = ACTIONS(1271), - [anon_sym_default] = ACTIONS(1271), - [anon_sym_while] = ACTIONS(1271), - [anon_sym_do] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1271), - [anon_sym_return] = ACTIONS(1271), - [anon_sym_break] = ACTIONS(1271), - [anon_sym_continue] = ACTIONS(1271), - [anon_sym_goto] = ACTIONS(1271), - [anon_sym___try] = ACTIONS(1271), - [anon_sym___leave] = ACTIONS(1271), - [anon_sym_DASH_DASH] = ACTIONS(1273), - [anon_sym_PLUS_PLUS] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1271), - [anon_sym___alignof__] = ACTIONS(1271), - [anon_sym___alignof] = ACTIONS(1271), - [anon_sym__alignof] = ACTIONS(1271), - [anon_sym_alignof] = ACTIONS(1271), - [anon_sym__Alignof] = ACTIONS(1271), - [anon_sym_offsetof] = ACTIONS(1271), - [anon_sym__Generic] = ACTIONS(1271), - [anon_sym_asm] = ACTIONS(1271), - [anon_sym___asm__] = ACTIONS(1271), - [sym_number_literal] = ACTIONS(1273), - [anon_sym_L_SQUOTE] = ACTIONS(1273), - [anon_sym_u_SQUOTE] = ACTIONS(1273), - [anon_sym_U_SQUOTE] = ACTIONS(1273), - [anon_sym_u8_SQUOTE] = ACTIONS(1273), - [anon_sym_SQUOTE] = ACTIONS(1273), - [anon_sym_L_DQUOTE] = ACTIONS(1273), - [anon_sym_u_DQUOTE] = ACTIONS(1273), - [anon_sym_U_DQUOTE] = ACTIONS(1273), - [anon_sym_u8_DQUOTE] = ACTIONS(1273), - [anon_sym_DQUOTE] = ACTIONS(1273), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [anon_sym_NULL] = ACTIONS(1271), - [anon_sym_nullptr] = ACTIONS(1271), - [sym_comment] = ACTIONS(3), - }, - [342] = { - [sym_identifier] = ACTIONS(1335), - [aux_sym_preproc_include_token1] = ACTIONS(1335), - [aux_sym_preproc_def_token1] = ACTIONS(1335), - [aux_sym_preproc_if_token1] = ACTIONS(1335), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1335), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1335), - [sym_preproc_directive] = ACTIONS(1335), - [anon_sym_LPAREN2] = ACTIONS(1337), - [anon_sym_BANG] = ACTIONS(1337), - [anon_sym_TILDE] = ACTIONS(1337), - [anon_sym_DASH] = ACTIONS(1335), - [anon_sym_PLUS] = ACTIONS(1335), - [anon_sym_STAR] = ACTIONS(1337), - [anon_sym_AMP] = ACTIONS(1337), - [anon_sym_SEMI] = ACTIONS(1337), - [anon_sym___extension__] = ACTIONS(1335), - [anon_sym_typedef] = ACTIONS(1335), - [anon_sym_extern] = ACTIONS(1335), - [anon_sym___attribute__] = ACTIONS(1335), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1337), - [anon_sym___declspec] = ACTIONS(1335), - [anon_sym___cdecl] = ACTIONS(1335), - [anon_sym___clrcall] = ACTIONS(1335), - [anon_sym___stdcall] = ACTIONS(1335), - [anon_sym___fastcall] = ACTIONS(1335), - [anon_sym___thiscall] = ACTIONS(1335), - [anon_sym___vectorcall] = ACTIONS(1335), - [anon_sym_LBRACE] = ACTIONS(1337), - [anon_sym_RBRACE] = ACTIONS(1337), - [anon_sym_signed] = ACTIONS(1335), - [anon_sym_unsigned] = ACTIONS(1335), - [anon_sym_long] = ACTIONS(1335), - [anon_sym_short] = ACTIONS(1335), - [anon_sym_static] = ACTIONS(1335), - [anon_sym_auto] = ACTIONS(1335), - [anon_sym_register] = ACTIONS(1335), - [anon_sym_inline] = ACTIONS(1335), - [anon_sym___inline] = ACTIONS(1335), - [anon_sym___inline__] = ACTIONS(1335), - [anon_sym___forceinline] = ACTIONS(1335), - [anon_sym_thread_local] = ACTIONS(1335), - [anon_sym___thread] = ACTIONS(1335), - [anon_sym_const] = ACTIONS(1335), - [anon_sym_constexpr] = ACTIONS(1335), - [anon_sym_volatile] = ACTIONS(1335), - [anon_sym_restrict] = ACTIONS(1335), - [anon_sym___restrict__] = ACTIONS(1335), - [anon_sym__Atomic] = ACTIONS(1335), - [anon_sym__Noreturn] = ACTIONS(1335), - [anon_sym_noreturn] = ACTIONS(1335), - [anon_sym_alignas] = ACTIONS(1335), - [anon_sym__Alignas] = ACTIONS(1335), - [sym_primitive_type] = ACTIONS(1335), - [anon_sym_enum] = ACTIONS(1335), - [anon_sym_struct] = ACTIONS(1335), - [anon_sym_union] = ACTIONS(1335), - [anon_sym_if] = ACTIONS(1335), - [anon_sym_switch] = ACTIONS(1335), - [anon_sym_case] = ACTIONS(1335), - [anon_sym_default] = ACTIONS(1335), - [anon_sym_while] = ACTIONS(1335), - [anon_sym_do] = ACTIONS(1335), - [anon_sym_for] = ACTIONS(1335), - [anon_sym_return] = ACTIONS(1335), - [anon_sym_break] = ACTIONS(1335), - [anon_sym_continue] = ACTIONS(1335), - [anon_sym_goto] = ACTIONS(1335), - [anon_sym___try] = ACTIONS(1335), - [anon_sym___leave] = ACTIONS(1335), - [anon_sym_DASH_DASH] = ACTIONS(1337), - [anon_sym_PLUS_PLUS] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(1335), - [anon_sym___alignof__] = ACTIONS(1335), - [anon_sym___alignof] = ACTIONS(1335), - [anon_sym__alignof] = ACTIONS(1335), - [anon_sym_alignof] = ACTIONS(1335), - [anon_sym__Alignof] = ACTIONS(1335), - [anon_sym_offsetof] = ACTIONS(1335), - [anon_sym__Generic] = ACTIONS(1335), - [anon_sym_asm] = ACTIONS(1335), - [anon_sym___asm__] = ACTIONS(1335), - [sym_number_literal] = ACTIONS(1337), - [anon_sym_L_SQUOTE] = ACTIONS(1337), - [anon_sym_u_SQUOTE] = ACTIONS(1337), - [anon_sym_U_SQUOTE] = ACTIONS(1337), - [anon_sym_u8_SQUOTE] = ACTIONS(1337), - [anon_sym_SQUOTE] = ACTIONS(1337), - [anon_sym_L_DQUOTE] = ACTIONS(1337), - [anon_sym_u_DQUOTE] = ACTIONS(1337), - [anon_sym_U_DQUOTE] = ACTIONS(1337), - [anon_sym_u8_DQUOTE] = ACTIONS(1337), - [anon_sym_DQUOTE] = ACTIONS(1337), - [sym_true] = ACTIONS(1335), - [sym_false] = ACTIONS(1335), - [anon_sym_NULL] = ACTIONS(1335), - [anon_sym_nullptr] = ACTIONS(1335), + [296] = { + [sym_identifier] = ACTIONS(1351), + [aux_sym_preproc_include_token1] = ACTIONS(1351), + [aux_sym_preproc_def_token1] = ACTIONS(1351), + [aux_sym_preproc_if_token1] = ACTIONS(1351), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1351), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1351), + [sym_preproc_directive] = ACTIONS(1351), + [anon_sym_LPAREN2] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1353), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_DASH] = ACTIONS(1351), + [anon_sym_PLUS] = ACTIONS(1351), + [anon_sym_STAR] = ACTIONS(1353), + [anon_sym_AMP] = ACTIONS(1353), + [anon_sym_SEMI] = ACTIONS(1353), + [anon_sym___extension__] = ACTIONS(1351), + [anon_sym_typedef] = ACTIONS(1351), + [anon_sym_extern] = ACTIONS(1351), + [anon_sym___attribute__] = ACTIONS(1351), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1353), + [anon_sym___declspec] = ACTIONS(1351), + [anon_sym___cdecl] = ACTIONS(1351), + [anon_sym___clrcall] = ACTIONS(1351), + [anon_sym___stdcall] = ACTIONS(1351), + [anon_sym___fastcall] = ACTIONS(1351), + [anon_sym___thiscall] = ACTIONS(1351), + [anon_sym___vectorcall] = ACTIONS(1351), + [anon_sym_LBRACE] = ACTIONS(1353), + [anon_sym_RBRACE] = ACTIONS(1353), + [anon_sym_signed] = ACTIONS(1351), + [anon_sym_unsigned] = ACTIONS(1351), + [anon_sym_long] = ACTIONS(1351), + [anon_sym_short] = ACTIONS(1351), + [anon_sym_static] = ACTIONS(1351), + [anon_sym_auto] = ACTIONS(1351), + [anon_sym_register] = ACTIONS(1351), + [anon_sym_inline] = ACTIONS(1351), + [anon_sym___inline] = ACTIONS(1351), + [anon_sym___inline__] = ACTIONS(1351), + [anon_sym___forceinline] = ACTIONS(1351), + [anon_sym_thread_local] = ACTIONS(1351), + [anon_sym___thread] = ACTIONS(1351), + [anon_sym_const] = ACTIONS(1351), + [anon_sym_constexpr] = ACTIONS(1351), + [anon_sym_volatile] = ACTIONS(1351), + [anon_sym_restrict] = ACTIONS(1351), + [anon_sym___restrict__] = ACTIONS(1351), + [anon_sym__Atomic] = ACTIONS(1351), + [anon_sym__Noreturn] = ACTIONS(1351), + [anon_sym_noreturn] = ACTIONS(1351), + [anon_sym_alignas] = ACTIONS(1351), + [anon_sym__Alignas] = ACTIONS(1351), + [sym_primitive_type] = ACTIONS(1351), + [anon_sym_enum] = ACTIONS(1351), + [anon_sym_struct] = ACTIONS(1351), + [anon_sym_union] = ACTIONS(1351), + [anon_sym_if] = ACTIONS(1351), + [anon_sym_switch] = ACTIONS(1351), + [anon_sym_case] = ACTIONS(1351), + [anon_sym_default] = ACTIONS(1351), + [anon_sym_while] = ACTIONS(1351), + [anon_sym_do] = ACTIONS(1351), + [anon_sym_for] = ACTIONS(1351), + [anon_sym_return] = ACTIONS(1351), + [anon_sym_break] = ACTIONS(1351), + [anon_sym_continue] = ACTIONS(1351), + [anon_sym_goto] = ACTIONS(1351), + [anon_sym___try] = ACTIONS(1351), + [anon_sym___leave] = ACTIONS(1351), + [anon_sym_DASH_DASH] = ACTIONS(1353), + [anon_sym_PLUS_PLUS] = ACTIONS(1353), + [anon_sym_sizeof] = ACTIONS(1351), + [anon_sym___alignof__] = ACTIONS(1351), + [anon_sym___alignof] = ACTIONS(1351), + [anon_sym__alignof] = ACTIONS(1351), + [anon_sym_alignof] = ACTIONS(1351), + [anon_sym__Alignof] = ACTIONS(1351), + [anon_sym_offsetof] = ACTIONS(1351), + [anon_sym__Generic] = ACTIONS(1351), + [anon_sym_asm] = ACTIONS(1351), + [anon_sym___asm__] = ACTIONS(1351), + [sym_number_literal] = ACTIONS(1353), + [anon_sym_L_SQUOTE] = ACTIONS(1353), + [anon_sym_u_SQUOTE] = ACTIONS(1353), + [anon_sym_U_SQUOTE] = ACTIONS(1353), + [anon_sym_u8_SQUOTE] = ACTIONS(1353), + [anon_sym_SQUOTE] = ACTIONS(1353), + [anon_sym_L_DQUOTE] = ACTIONS(1353), + [anon_sym_u_DQUOTE] = ACTIONS(1353), + [anon_sym_U_DQUOTE] = ACTIONS(1353), + [anon_sym_u8_DQUOTE] = ACTIONS(1353), + [anon_sym_DQUOTE] = ACTIONS(1353), + [sym_true] = ACTIONS(1351), + [sym_false] = ACTIONS(1351), + [anon_sym_NULL] = ACTIONS(1351), + [anon_sym_nullptr] = ACTIONS(1351), [sym_comment] = ACTIONS(3), }, - [343] = { - [sym_identifier] = ACTIONS(1319), - [aux_sym_preproc_include_token1] = ACTIONS(1319), - [aux_sym_preproc_def_token1] = ACTIONS(1319), - [aux_sym_preproc_if_token1] = ACTIONS(1319), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1319), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1319), - [sym_preproc_directive] = ACTIONS(1319), - [anon_sym_LPAREN2] = ACTIONS(1321), - [anon_sym_BANG] = ACTIONS(1321), - [anon_sym_TILDE] = ACTIONS(1321), - [anon_sym_DASH] = ACTIONS(1319), - [anon_sym_PLUS] = ACTIONS(1319), - [anon_sym_STAR] = ACTIONS(1321), - [anon_sym_AMP] = ACTIONS(1321), - [anon_sym_SEMI] = ACTIONS(1321), - [anon_sym___extension__] = ACTIONS(1319), - [anon_sym_typedef] = ACTIONS(1319), - [anon_sym_extern] = ACTIONS(1319), - [anon_sym___attribute__] = ACTIONS(1319), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1321), - [anon_sym___declspec] = ACTIONS(1319), - [anon_sym___cdecl] = ACTIONS(1319), - [anon_sym___clrcall] = ACTIONS(1319), - [anon_sym___stdcall] = ACTIONS(1319), - [anon_sym___fastcall] = ACTIONS(1319), - [anon_sym___thiscall] = ACTIONS(1319), - [anon_sym___vectorcall] = ACTIONS(1319), - [anon_sym_LBRACE] = ACTIONS(1321), - [anon_sym_RBRACE] = ACTIONS(1321), - [anon_sym_signed] = ACTIONS(1319), - [anon_sym_unsigned] = ACTIONS(1319), - [anon_sym_long] = ACTIONS(1319), - [anon_sym_short] = ACTIONS(1319), - [anon_sym_static] = ACTIONS(1319), - [anon_sym_auto] = ACTIONS(1319), - [anon_sym_register] = ACTIONS(1319), - [anon_sym_inline] = ACTIONS(1319), - [anon_sym___inline] = ACTIONS(1319), - [anon_sym___inline__] = ACTIONS(1319), - [anon_sym___forceinline] = ACTIONS(1319), - [anon_sym_thread_local] = ACTIONS(1319), - [anon_sym___thread] = ACTIONS(1319), - [anon_sym_const] = ACTIONS(1319), - [anon_sym_constexpr] = ACTIONS(1319), - [anon_sym_volatile] = ACTIONS(1319), - [anon_sym_restrict] = ACTIONS(1319), - [anon_sym___restrict__] = ACTIONS(1319), - [anon_sym__Atomic] = ACTIONS(1319), - [anon_sym__Noreturn] = ACTIONS(1319), - [anon_sym_noreturn] = ACTIONS(1319), - [anon_sym_alignas] = ACTIONS(1319), - [anon_sym__Alignas] = ACTIONS(1319), - [sym_primitive_type] = ACTIONS(1319), - [anon_sym_enum] = ACTIONS(1319), - [anon_sym_struct] = ACTIONS(1319), - [anon_sym_union] = ACTIONS(1319), - [anon_sym_if] = ACTIONS(1319), - [anon_sym_switch] = ACTIONS(1319), - [anon_sym_case] = ACTIONS(1319), - [anon_sym_default] = ACTIONS(1319), - [anon_sym_while] = ACTIONS(1319), - [anon_sym_do] = ACTIONS(1319), - [anon_sym_for] = ACTIONS(1319), - [anon_sym_return] = ACTIONS(1319), - [anon_sym_break] = ACTIONS(1319), - [anon_sym_continue] = ACTIONS(1319), - [anon_sym_goto] = ACTIONS(1319), - [anon_sym___try] = ACTIONS(1319), - [anon_sym___leave] = ACTIONS(1319), - [anon_sym_DASH_DASH] = ACTIONS(1321), - [anon_sym_PLUS_PLUS] = ACTIONS(1321), - [anon_sym_sizeof] = ACTIONS(1319), - [anon_sym___alignof__] = ACTIONS(1319), - [anon_sym___alignof] = ACTIONS(1319), - [anon_sym__alignof] = ACTIONS(1319), - [anon_sym_alignof] = ACTIONS(1319), - [anon_sym__Alignof] = ACTIONS(1319), - [anon_sym_offsetof] = ACTIONS(1319), - [anon_sym__Generic] = ACTIONS(1319), - [anon_sym_asm] = ACTIONS(1319), - [anon_sym___asm__] = ACTIONS(1319), - [sym_number_literal] = ACTIONS(1321), - [anon_sym_L_SQUOTE] = ACTIONS(1321), - [anon_sym_u_SQUOTE] = ACTIONS(1321), - [anon_sym_U_SQUOTE] = ACTIONS(1321), - [anon_sym_u8_SQUOTE] = ACTIONS(1321), - [anon_sym_SQUOTE] = ACTIONS(1321), - [anon_sym_L_DQUOTE] = ACTIONS(1321), - [anon_sym_u_DQUOTE] = ACTIONS(1321), - [anon_sym_U_DQUOTE] = ACTIONS(1321), - [anon_sym_u8_DQUOTE] = ACTIONS(1321), - [anon_sym_DQUOTE] = ACTIONS(1321), - [sym_true] = ACTIONS(1319), - [sym_false] = ACTIONS(1319), - [anon_sym_NULL] = ACTIONS(1319), - [anon_sym_nullptr] = ACTIONS(1319), + [297] = { + [sym_identifier] = ACTIONS(1347), + [aux_sym_preproc_include_token1] = ACTIONS(1347), + [aux_sym_preproc_def_token1] = ACTIONS(1347), + [aux_sym_preproc_if_token1] = ACTIONS(1347), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1347), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1347), + [sym_preproc_directive] = ACTIONS(1347), + [anon_sym_LPAREN2] = ACTIONS(1349), + [anon_sym_BANG] = ACTIONS(1349), + [anon_sym_TILDE] = ACTIONS(1349), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_STAR] = ACTIONS(1349), + [anon_sym_AMP] = ACTIONS(1349), + [anon_sym_SEMI] = ACTIONS(1349), + [anon_sym___extension__] = ACTIONS(1347), + [anon_sym_typedef] = ACTIONS(1347), + [anon_sym_extern] = ACTIONS(1347), + [anon_sym___attribute__] = ACTIONS(1347), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1349), + [anon_sym___declspec] = ACTIONS(1347), + [anon_sym___cdecl] = ACTIONS(1347), + [anon_sym___clrcall] = ACTIONS(1347), + [anon_sym___stdcall] = ACTIONS(1347), + [anon_sym___fastcall] = ACTIONS(1347), + [anon_sym___thiscall] = ACTIONS(1347), + [anon_sym___vectorcall] = ACTIONS(1347), + [anon_sym_LBRACE] = ACTIONS(1349), + [anon_sym_RBRACE] = ACTIONS(1349), + [anon_sym_signed] = ACTIONS(1347), + [anon_sym_unsigned] = ACTIONS(1347), + [anon_sym_long] = ACTIONS(1347), + [anon_sym_short] = ACTIONS(1347), + [anon_sym_static] = ACTIONS(1347), + [anon_sym_auto] = ACTIONS(1347), + [anon_sym_register] = ACTIONS(1347), + [anon_sym_inline] = ACTIONS(1347), + [anon_sym___inline] = ACTIONS(1347), + [anon_sym___inline__] = ACTIONS(1347), + [anon_sym___forceinline] = ACTIONS(1347), + [anon_sym_thread_local] = ACTIONS(1347), + [anon_sym___thread] = ACTIONS(1347), + [anon_sym_const] = ACTIONS(1347), + [anon_sym_constexpr] = ACTIONS(1347), + [anon_sym_volatile] = ACTIONS(1347), + [anon_sym_restrict] = ACTIONS(1347), + [anon_sym___restrict__] = ACTIONS(1347), + [anon_sym__Atomic] = ACTIONS(1347), + [anon_sym__Noreturn] = ACTIONS(1347), + [anon_sym_noreturn] = ACTIONS(1347), + [anon_sym_alignas] = ACTIONS(1347), + [anon_sym__Alignas] = ACTIONS(1347), + [sym_primitive_type] = ACTIONS(1347), + [anon_sym_enum] = ACTIONS(1347), + [anon_sym_struct] = ACTIONS(1347), + [anon_sym_union] = ACTIONS(1347), + [anon_sym_if] = ACTIONS(1347), + [anon_sym_switch] = ACTIONS(1347), + [anon_sym_case] = ACTIONS(1347), + [anon_sym_default] = ACTIONS(1347), + [anon_sym_while] = ACTIONS(1347), + [anon_sym_do] = ACTIONS(1347), + [anon_sym_for] = ACTIONS(1347), + [anon_sym_return] = ACTIONS(1347), + [anon_sym_break] = ACTIONS(1347), + [anon_sym_continue] = ACTIONS(1347), + [anon_sym_goto] = ACTIONS(1347), + [anon_sym___try] = ACTIONS(1347), + [anon_sym___leave] = ACTIONS(1347), + [anon_sym_DASH_DASH] = ACTIONS(1349), + [anon_sym_PLUS_PLUS] = ACTIONS(1349), + [anon_sym_sizeof] = ACTIONS(1347), + [anon_sym___alignof__] = ACTIONS(1347), + [anon_sym___alignof] = ACTIONS(1347), + [anon_sym__alignof] = ACTIONS(1347), + [anon_sym_alignof] = ACTIONS(1347), + [anon_sym__Alignof] = ACTIONS(1347), + [anon_sym_offsetof] = ACTIONS(1347), + [anon_sym__Generic] = ACTIONS(1347), + [anon_sym_asm] = ACTIONS(1347), + [anon_sym___asm__] = ACTIONS(1347), + [sym_number_literal] = ACTIONS(1349), + [anon_sym_L_SQUOTE] = ACTIONS(1349), + [anon_sym_u_SQUOTE] = ACTIONS(1349), + [anon_sym_U_SQUOTE] = ACTIONS(1349), + [anon_sym_u8_SQUOTE] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1349), + [anon_sym_L_DQUOTE] = ACTIONS(1349), + [anon_sym_u_DQUOTE] = ACTIONS(1349), + [anon_sym_U_DQUOTE] = ACTIONS(1349), + [anon_sym_u8_DQUOTE] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(1349), + [sym_true] = ACTIONS(1347), + [sym_false] = ACTIONS(1347), + [anon_sym_NULL] = ACTIONS(1347), + [anon_sym_nullptr] = ACTIONS(1347), [sym_comment] = ACTIONS(3), }, - [344] = { - [sym_identifier] = ACTIONS(1323), - [aux_sym_preproc_include_token1] = ACTIONS(1323), - [aux_sym_preproc_def_token1] = ACTIONS(1323), - [aux_sym_preproc_if_token1] = ACTIONS(1323), - [aux_sym_preproc_if_token2] = ACTIONS(1323), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1323), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1323), - [sym_preproc_directive] = ACTIONS(1323), - [anon_sym_LPAREN2] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1325), - [anon_sym_TILDE] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1323), - [anon_sym_PLUS] = ACTIONS(1323), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_AMP] = ACTIONS(1325), - [anon_sym_SEMI] = ACTIONS(1325), - [anon_sym___extension__] = ACTIONS(1323), - [anon_sym_typedef] = ACTIONS(1323), - [anon_sym_extern] = ACTIONS(1323), - [anon_sym___attribute__] = ACTIONS(1323), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), - [anon_sym___declspec] = ACTIONS(1323), - [anon_sym___cdecl] = ACTIONS(1323), - [anon_sym___clrcall] = ACTIONS(1323), - [anon_sym___stdcall] = ACTIONS(1323), - [anon_sym___fastcall] = ACTIONS(1323), - [anon_sym___thiscall] = ACTIONS(1323), - [anon_sym___vectorcall] = ACTIONS(1323), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_signed] = ACTIONS(1323), - [anon_sym_unsigned] = ACTIONS(1323), - [anon_sym_long] = ACTIONS(1323), - [anon_sym_short] = ACTIONS(1323), - [anon_sym_static] = ACTIONS(1323), - [anon_sym_auto] = ACTIONS(1323), - [anon_sym_register] = ACTIONS(1323), - [anon_sym_inline] = ACTIONS(1323), - [anon_sym___inline] = ACTIONS(1323), - [anon_sym___inline__] = ACTIONS(1323), - [anon_sym___forceinline] = ACTIONS(1323), - [anon_sym_thread_local] = ACTIONS(1323), - [anon_sym___thread] = ACTIONS(1323), - [anon_sym_const] = ACTIONS(1323), - [anon_sym_constexpr] = ACTIONS(1323), - [anon_sym_volatile] = ACTIONS(1323), - [anon_sym_restrict] = ACTIONS(1323), - [anon_sym___restrict__] = ACTIONS(1323), - [anon_sym__Atomic] = ACTIONS(1323), - [anon_sym__Noreturn] = ACTIONS(1323), - [anon_sym_noreturn] = ACTIONS(1323), - [anon_sym_alignas] = ACTIONS(1323), - [anon_sym__Alignas] = ACTIONS(1323), - [sym_primitive_type] = ACTIONS(1323), - [anon_sym_enum] = ACTIONS(1323), - [anon_sym_struct] = ACTIONS(1323), - [anon_sym_union] = ACTIONS(1323), - [anon_sym_if] = ACTIONS(1323), - [anon_sym_switch] = ACTIONS(1323), - [anon_sym_case] = ACTIONS(1323), - [anon_sym_default] = ACTIONS(1323), - [anon_sym_while] = ACTIONS(1323), - [anon_sym_do] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1323), - [anon_sym_return] = ACTIONS(1323), - [anon_sym_break] = ACTIONS(1323), - [anon_sym_continue] = ACTIONS(1323), - [anon_sym_goto] = ACTIONS(1323), - [anon_sym___try] = ACTIONS(1323), - [anon_sym___leave] = ACTIONS(1323), - [anon_sym_DASH_DASH] = ACTIONS(1325), - [anon_sym_PLUS_PLUS] = ACTIONS(1325), - [anon_sym_sizeof] = ACTIONS(1323), - [anon_sym___alignof__] = ACTIONS(1323), - [anon_sym___alignof] = ACTIONS(1323), - [anon_sym__alignof] = ACTIONS(1323), - [anon_sym_alignof] = ACTIONS(1323), - [anon_sym__Alignof] = ACTIONS(1323), - [anon_sym_offsetof] = ACTIONS(1323), - [anon_sym__Generic] = ACTIONS(1323), - [anon_sym_asm] = ACTIONS(1323), - [anon_sym___asm__] = ACTIONS(1323), - [sym_number_literal] = ACTIONS(1325), - [anon_sym_L_SQUOTE] = ACTIONS(1325), - [anon_sym_u_SQUOTE] = ACTIONS(1325), - [anon_sym_U_SQUOTE] = ACTIONS(1325), - [anon_sym_u8_SQUOTE] = ACTIONS(1325), - [anon_sym_SQUOTE] = ACTIONS(1325), - [anon_sym_L_DQUOTE] = ACTIONS(1325), - [anon_sym_u_DQUOTE] = ACTIONS(1325), - [anon_sym_U_DQUOTE] = ACTIONS(1325), - [anon_sym_u8_DQUOTE] = ACTIONS(1325), - [anon_sym_DQUOTE] = ACTIONS(1325), - [sym_true] = ACTIONS(1323), - [sym_false] = ACTIONS(1323), - [anon_sym_NULL] = ACTIONS(1323), - [anon_sym_nullptr] = ACTIONS(1323), + [298] = { + [sym_identifier] = ACTIONS(1303), + [aux_sym_preproc_include_token1] = ACTIONS(1303), + [aux_sym_preproc_def_token1] = ACTIONS(1303), + [aux_sym_preproc_if_token1] = ACTIONS(1303), + [aux_sym_preproc_if_token2] = ACTIONS(1303), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1303), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1303), + [sym_preproc_directive] = ACTIONS(1303), + [anon_sym_LPAREN2] = ACTIONS(1305), + [anon_sym_BANG] = ACTIONS(1305), + [anon_sym_TILDE] = ACTIONS(1305), + [anon_sym_DASH] = ACTIONS(1303), + [anon_sym_PLUS] = ACTIONS(1303), + [anon_sym_STAR] = ACTIONS(1305), + [anon_sym_AMP] = ACTIONS(1305), + [anon_sym_SEMI] = ACTIONS(1305), + [anon_sym___extension__] = ACTIONS(1303), + [anon_sym_typedef] = ACTIONS(1303), + [anon_sym_extern] = ACTIONS(1303), + [anon_sym___attribute__] = ACTIONS(1303), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1305), + [anon_sym___declspec] = ACTIONS(1303), + [anon_sym___cdecl] = ACTIONS(1303), + [anon_sym___clrcall] = ACTIONS(1303), + [anon_sym___stdcall] = ACTIONS(1303), + [anon_sym___fastcall] = ACTIONS(1303), + [anon_sym___thiscall] = ACTIONS(1303), + [anon_sym___vectorcall] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1305), + [anon_sym_signed] = ACTIONS(1303), + [anon_sym_unsigned] = ACTIONS(1303), + [anon_sym_long] = ACTIONS(1303), + [anon_sym_short] = ACTIONS(1303), + [anon_sym_static] = ACTIONS(1303), + [anon_sym_auto] = ACTIONS(1303), + [anon_sym_register] = ACTIONS(1303), + [anon_sym_inline] = ACTIONS(1303), + [anon_sym___inline] = ACTIONS(1303), + [anon_sym___inline__] = ACTIONS(1303), + [anon_sym___forceinline] = ACTIONS(1303), + [anon_sym_thread_local] = ACTIONS(1303), + [anon_sym___thread] = ACTIONS(1303), + [anon_sym_const] = ACTIONS(1303), + [anon_sym_constexpr] = ACTIONS(1303), + [anon_sym_volatile] = ACTIONS(1303), + [anon_sym_restrict] = ACTIONS(1303), + [anon_sym___restrict__] = ACTIONS(1303), + [anon_sym__Atomic] = ACTIONS(1303), + [anon_sym__Noreturn] = ACTIONS(1303), + [anon_sym_noreturn] = ACTIONS(1303), + [anon_sym_alignas] = ACTIONS(1303), + [anon_sym__Alignas] = ACTIONS(1303), + [sym_primitive_type] = ACTIONS(1303), + [anon_sym_enum] = ACTIONS(1303), + [anon_sym_struct] = ACTIONS(1303), + [anon_sym_union] = ACTIONS(1303), + [anon_sym_if] = ACTIONS(1303), + [anon_sym_switch] = ACTIONS(1303), + [anon_sym_case] = ACTIONS(1303), + [anon_sym_default] = ACTIONS(1303), + [anon_sym_while] = ACTIONS(1303), + [anon_sym_do] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1303), + [anon_sym_return] = ACTIONS(1303), + [anon_sym_break] = ACTIONS(1303), + [anon_sym_continue] = ACTIONS(1303), + [anon_sym_goto] = ACTIONS(1303), + [anon_sym___try] = ACTIONS(1303), + [anon_sym___leave] = ACTIONS(1303), + [anon_sym_DASH_DASH] = ACTIONS(1305), + [anon_sym_PLUS_PLUS] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1303), + [anon_sym___alignof__] = ACTIONS(1303), + [anon_sym___alignof] = ACTIONS(1303), + [anon_sym__alignof] = ACTIONS(1303), + [anon_sym_alignof] = ACTIONS(1303), + [anon_sym__Alignof] = ACTIONS(1303), + [anon_sym_offsetof] = ACTIONS(1303), + [anon_sym__Generic] = ACTIONS(1303), + [anon_sym_asm] = ACTIONS(1303), + [anon_sym___asm__] = ACTIONS(1303), + [sym_number_literal] = ACTIONS(1305), + [anon_sym_L_SQUOTE] = ACTIONS(1305), + [anon_sym_u_SQUOTE] = ACTIONS(1305), + [anon_sym_U_SQUOTE] = ACTIONS(1305), + [anon_sym_u8_SQUOTE] = ACTIONS(1305), + [anon_sym_SQUOTE] = ACTIONS(1305), + [anon_sym_L_DQUOTE] = ACTIONS(1305), + [anon_sym_u_DQUOTE] = ACTIONS(1305), + [anon_sym_U_DQUOTE] = ACTIONS(1305), + [anon_sym_u8_DQUOTE] = ACTIONS(1305), + [anon_sym_DQUOTE] = ACTIONS(1305), + [sym_true] = ACTIONS(1303), + [sym_false] = ACTIONS(1303), + [anon_sym_NULL] = ACTIONS(1303), + [anon_sym_nullptr] = ACTIONS(1303), [sym_comment] = ACTIONS(3), }, - [345] = { - [sym_identifier] = ACTIONS(1355), - [aux_sym_preproc_include_token1] = ACTIONS(1355), - [aux_sym_preproc_def_token1] = ACTIONS(1355), - [aux_sym_preproc_if_token1] = ACTIONS(1355), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1355), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1355), - [sym_preproc_directive] = ACTIONS(1355), - [anon_sym_LPAREN2] = ACTIONS(1357), - [anon_sym_BANG] = ACTIONS(1357), - [anon_sym_TILDE] = ACTIONS(1357), - [anon_sym_DASH] = ACTIONS(1355), - [anon_sym_PLUS] = ACTIONS(1355), - [anon_sym_STAR] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(1357), - [anon_sym_SEMI] = ACTIONS(1357), - [anon_sym___extension__] = ACTIONS(1355), - [anon_sym_typedef] = ACTIONS(1355), - [anon_sym_extern] = ACTIONS(1355), - [anon_sym___attribute__] = ACTIONS(1355), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1357), - [anon_sym___declspec] = ACTIONS(1355), - [anon_sym___cdecl] = ACTIONS(1355), - [anon_sym___clrcall] = ACTIONS(1355), - [anon_sym___stdcall] = ACTIONS(1355), - [anon_sym___fastcall] = ACTIONS(1355), - [anon_sym___thiscall] = ACTIONS(1355), - [anon_sym___vectorcall] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(1357), - [anon_sym_RBRACE] = ACTIONS(1357), - [anon_sym_signed] = ACTIONS(1355), - [anon_sym_unsigned] = ACTIONS(1355), - [anon_sym_long] = ACTIONS(1355), - [anon_sym_short] = ACTIONS(1355), - [anon_sym_static] = ACTIONS(1355), - [anon_sym_auto] = ACTIONS(1355), - [anon_sym_register] = ACTIONS(1355), - [anon_sym_inline] = ACTIONS(1355), - [anon_sym___inline] = ACTIONS(1355), - [anon_sym___inline__] = ACTIONS(1355), - [anon_sym___forceinline] = ACTIONS(1355), - [anon_sym_thread_local] = ACTIONS(1355), - [anon_sym___thread] = ACTIONS(1355), - [anon_sym_const] = ACTIONS(1355), - [anon_sym_constexpr] = ACTIONS(1355), - [anon_sym_volatile] = ACTIONS(1355), - [anon_sym_restrict] = ACTIONS(1355), - [anon_sym___restrict__] = ACTIONS(1355), - [anon_sym__Atomic] = ACTIONS(1355), - [anon_sym__Noreturn] = ACTIONS(1355), - [anon_sym_noreturn] = ACTIONS(1355), - [anon_sym_alignas] = ACTIONS(1355), - [anon_sym__Alignas] = 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___try] = ACTIONS(1355), - [anon_sym___leave] = ACTIONS(1355), - [anon_sym_DASH_DASH] = ACTIONS(1357), - [anon_sym_PLUS_PLUS] = ACTIONS(1357), - [anon_sym_sizeof] = ACTIONS(1355), - [anon_sym___alignof__] = ACTIONS(1355), - [anon_sym___alignof] = ACTIONS(1355), - [anon_sym__alignof] = ACTIONS(1355), - [anon_sym_alignof] = ACTIONS(1355), - [anon_sym__Alignof] = ACTIONS(1355), - [anon_sym_offsetof] = ACTIONS(1355), - [anon_sym__Generic] = ACTIONS(1355), - [anon_sym_asm] = ACTIONS(1355), - [anon_sym___asm__] = ACTIONS(1355), - [sym_number_literal] = ACTIONS(1357), - [anon_sym_L_SQUOTE] = ACTIONS(1357), - [anon_sym_u_SQUOTE] = ACTIONS(1357), - [anon_sym_U_SQUOTE] = ACTIONS(1357), - [anon_sym_u8_SQUOTE] = ACTIONS(1357), - [anon_sym_SQUOTE] = ACTIONS(1357), - [anon_sym_L_DQUOTE] = ACTIONS(1357), - [anon_sym_u_DQUOTE] = ACTIONS(1357), - [anon_sym_U_DQUOTE] = ACTIONS(1357), - [anon_sym_u8_DQUOTE] = ACTIONS(1357), - [anon_sym_DQUOTE] = ACTIONS(1357), - [sym_true] = ACTIONS(1355), - [sym_false] = ACTIONS(1355), - [anon_sym_NULL] = ACTIONS(1355), - [anon_sym_nullptr] = ACTIONS(1355), - [sym_comment] = ACTIONS(3), - }, - [346] = { - [sym_identifier] = ACTIONS(1295), - [aux_sym_preproc_include_token1] = ACTIONS(1295), - [aux_sym_preproc_def_token1] = ACTIONS(1295), - [aux_sym_preproc_if_token1] = ACTIONS(1295), - [aux_sym_preproc_if_token2] = ACTIONS(1295), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1295), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1295), - [sym_preproc_directive] = ACTIONS(1295), - [anon_sym_LPAREN2] = ACTIONS(1297), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_TILDE] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_PLUS] = ACTIONS(1295), - [anon_sym_STAR] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1297), - [anon_sym_SEMI] = ACTIONS(1297), - [anon_sym___extension__] = ACTIONS(1295), - [anon_sym_typedef] = ACTIONS(1295), - [anon_sym_extern] = ACTIONS(1295), - [anon_sym___attribute__] = ACTIONS(1295), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1297), - [anon_sym___declspec] = ACTIONS(1295), - [anon_sym___cdecl] = ACTIONS(1295), - [anon_sym___clrcall] = ACTIONS(1295), - [anon_sym___stdcall] = ACTIONS(1295), - [anon_sym___fastcall] = ACTIONS(1295), - [anon_sym___thiscall] = ACTIONS(1295), - [anon_sym___vectorcall] = ACTIONS(1295), - [anon_sym_LBRACE] = ACTIONS(1297), - [anon_sym_signed] = ACTIONS(1295), - [anon_sym_unsigned] = ACTIONS(1295), - [anon_sym_long] = ACTIONS(1295), - [anon_sym_short] = ACTIONS(1295), - [anon_sym_static] = ACTIONS(1295), - [anon_sym_auto] = ACTIONS(1295), - [anon_sym_register] = ACTIONS(1295), - [anon_sym_inline] = ACTIONS(1295), - [anon_sym___inline] = ACTIONS(1295), - [anon_sym___inline__] = ACTIONS(1295), - [anon_sym___forceinline] = ACTIONS(1295), - [anon_sym_thread_local] = ACTIONS(1295), - [anon_sym___thread] = ACTIONS(1295), - [anon_sym_const] = ACTIONS(1295), - [anon_sym_constexpr] = ACTIONS(1295), - [anon_sym_volatile] = ACTIONS(1295), - [anon_sym_restrict] = ACTIONS(1295), - [anon_sym___restrict__] = ACTIONS(1295), - [anon_sym__Atomic] = ACTIONS(1295), - [anon_sym__Noreturn] = ACTIONS(1295), - [anon_sym_noreturn] = ACTIONS(1295), - [anon_sym_alignas] = ACTIONS(1295), - [anon_sym__Alignas] = ACTIONS(1295), - [sym_primitive_type] = ACTIONS(1295), - [anon_sym_enum] = ACTIONS(1295), - [anon_sym_struct] = ACTIONS(1295), - [anon_sym_union] = ACTIONS(1295), - [anon_sym_if] = ACTIONS(1295), - [anon_sym_switch] = ACTIONS(1295), - [anon_sym_case] = ACTIONS(1295), - [anon_sym_default] = ACTIONS(1295), - [anon_sym_while] = ACTIONS(1295), - [anon_sym_do] = ACTIONS(1295), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_return] = ACTIONS(1295), - [anon_sym_break] = ACTIONS(1295), - [anon_sym_continue] = ACTIONS(1295), - [anon_sym_goto] = ACTIONS(1295), - [anon_sym___try] = ACTIONS(1295), - [anon_sym___leave] = ACTIONS(1295), - [anon_sym_DASH_DASH] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1297), - [anon_sym_sizeof] = ACTIONS(1295), - [anon_sym___alignof__] = ACTIONS(1295), - [anon_sym___alignof] = ACTIONS(1295), - [anon_sym__alignof] = ACTIONS(1295), - [anon_sym_alignof] = ACTIONS(1295), - [anon_sym__Alignof] = ACTIONS(1295), - [anon_sym_offsetof] = ACTIONS(1295), - [anon_sym__Generic] = ACTIONS(1295), - [anon_sym_asm] = ACTIONS(1295), - [anon_sym___asm__] = ACTIONS(1295), - [sym_number_literal] = ACTIONS(1297), - [anon_sym_L_SQUOTE] = ACTIONS(1297), - [anon_sym_u_SQUOTE] = ACTIONS(1297), - [anon_sym_U_SQUOTE] = ACTIONS(1297), - [anon_sym_u8_SQUOTE] = ACTIONS(1297), - [anon_sym_SQUOTE] = ACTIONS(1297), - [anon_sym_L_DQUOTE] = ACTIONS(1297), - [anon_sym_u_DQUOTE] = ACTIONS(1297), - [anon_sym_U_DQUOTE] = ACTIONS(1297), - [anon_sym_u8_DQUOTE] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1297), - [sym_true] = ACTIONS(1295), - [sym_false] = ACTIONS(1295), - [anon_sym_NULL] = ACTIONS(1295), - [anon_sym_nullptr] = ACTIONS(1295), + [299] = { + [sym_identifier] = ACTIONS(1271), + [aux_sym_preproc_include_token1] = ACTIONS(1271), + [aux_sym_preproc_def_token1] = ACTIONS(1271), + [aux_sym_preproc_if_token1] = ACTIONS(1271), + [aux_sym_preproc_if_token2] = ACTIONS(1271), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1271), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1271), + [sym_preproc_directive] = ACTIONS(1271), + [anon_sym_LPAREN2] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_TILDE] = ACTIONS(1273), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_PLUS] = ACTIONS(1271), + [anon_sym_STAR] = ACTIONS(1273), + [anon_sym_AMP] = ACTIONS(1273), + [anon_sym_SEMI] = ACTIONS(1273), + [anon_sym___extension__] = ACTIONS(1271), + [anon_sym_typedef] = ACTIONS(1271), + [anon_sym_extern] = ACTIONS(1271), + [anon_sym___attribute__] = ACTIONS(1271), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1273), + [anon_sym___declspec] = ACTIONS(1271), + [anon_sym___cdecl] = ACTIONS(1271), + [anon_sym___clrcall] = ACTIONS(1271), + [anon_sym___stdcall] = ACTIONS(1271), + [anon_sym___fastcall] = ACTIONS(1271), + [anon_sym___thiscall] = ACTIONS(1271), + [anon_sym___vectorcall] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_signed] = ACTIONS(1271), + [anon_sym_unsigned] = ACTIONS(1271), + [anon_sym_long] = ACTIONS(1271), + [anon_sym_short] = ACTIONS(1271), + [anon_sym_static] = ACTIONS(1271), + [anon_sym_auto] = ACTIONS(1271), + [anon_sym_register] = ACTIONS(1271), + [anon_sym_inline] = ACTIONS(1271), + [anon_sym___inline] = ACTIONS(1271), + [anon_sym___inline__] = ACTIONS(1271), + [anon_sym___forceinline] = ACTIONS(1271), + [anon_sym_thread_local] = ACTIONS(1271), + [anon_sym___thread] = ACTIONS(1271), + [anon_sym_const] = ACTIONS(1271), + [anon_sym_constexpr] = ACTIONS(1271), + [anon_sym_volatile] = ACTIONS(1271), + [anon_sym_restrict] = ACTIONS(1271), + [anon_sym___restrict__] = ACTIONS(1271), + [anon_sym__Atomic] = ACTIONS(1271), + [anon_sym__Noreturn] = ACTIONS(1271), + [anon_sym_noreturn] = ACTIONS(1271), + [anon_sym_alignas] = ACTIONS(1271), + [anon_sym__Alignas] = ACTIONS(1271), + [sym_primitive_type] = ACTIONS(1271), + [anon_sym_enum] = ACTIONS(1271), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_union] = ACTIONS(1271), + [anon_sym_if] = ACTIONS(1271), + [anon_sym_switch] = ACTIONS(1271), + [anon_sym_case] = ACTIONS(1271), + [anon_sym_default] = ACTIONS(1271), + [anon_sym_while] = ACTIONS(1271), + [anon_sym_do] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1271), + [anon_sym_return] = ACTIONS(1271), + [anon_sym_break] = ACTIONS(1271), + [anon_sym_continue] = ACTIONS(1271), + [anon_sym_goto] = ACTIONS(1271), + [anon_sym___try] = ACTIONS(1271), + [anon_sym___leave] = ACTIONS(1271), + [anon_sym_DASH_DASH] = ACTIONS(1273), + [anon_sym_PLUS_PLUS] = ACTIONS(1273), + [anon_sym_sizeof] = ACTIONS(1271), + [anon_sym___alignof__] = ACTIONS(1271), + [anon_sym___alignof] = ACTIONS(1271), + [anon_sym__alignof] = ACTIONS(1271), + [anon_sym_alignof] = ACTIONS(1271), + [anon_sym__Alignof] = ACTIONS(1271), + [anon_sym_offsetof] = ACTIONS(1271), + [anon_sym__Generic] = ACTIONS(1271), + [anon_sym_asm] = ACTIONS(1271), + [anon_sym___asm__] = ACTIONS(1271), + [sym_number_literal] = ACTIONS(1273), + [anon_sym_L_SQUOTE] = ACTIONS(1273), + [anon_sym_u_SQUOTE] = ACTIONS(1273), + [anon_sym_U_SQUOTE] = ACTIONS(1273), + [anon_sym_u8_SQUOTE] = ACTIONS(1273), + [anon_sym_SQUOTE] = ACTIONS(1273), + [anon_sym_L_DQUOTE] = ACTIONS(1273), + [anon_sym_u_DQUOTE] = ACTIONS(1273), + [anon_sym_U_DQUOTE] = ACTIONS(1273), + [anon_sym_u8_DQUOTE] = ACTIONS(1273), + [anon_sym_DQUOTE] = ACTIONS(1273), + [sym_true] = ACTIONS(1271), + [sym_false] = ACTIONS(1271), + [anon_sym_NULL] = ACTIONS(1271), + [anon_sym_nullptr] = ACTIONS(1271), [sym_comment] = ACTIONS(3), }, - [347] = { + [300] = { [sym_identifier] = ACTIONS(1267), [aux_sym_preproc_include_token1] = ACTIONS(1267), [aux_sym_preproc_def_token1] = ACTIONS(1267), [aux_sym_preproc_if_token1] = ACTIONS(1267), + [aux_sym_preproc_if_token2] = ACTIONS(1267), [aux_sym_preproc_ifdef_token1] = ACTIONS(1267), [aux_sym_preproc_ifdef_token2] = ACTIONS(1267), [sym_preproc_directive] = ACTIONS(1267), @@ -51266,7 +46442,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1267), [anon_sym___vectorcall] = ACTIONS(1267), [anon_sym_LBRACE] = ACTIONS(1269), - [anon_sym_RBRACE] = ACTIONS(1269), [anon_sym_signed] = ACTIONS(1267), [anon_sym_unsigned] = ACTIONS(1267), [anon_sym_long] = ACTIONS(1267), @@ -51336,159 +46511,258 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1267), [sym_comment] = ACTIONS(3), }, - [348] = { - [sym_identifier] = ACTIONS(1307), - [aux_sym_preproc_include_token1] = ACTIONS(1307), - [aux_sym_preproc_def_token1] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1307), - [aux_sym_preproc_if_token2] = ACTIONS(1307), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1307), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1307), - [sym_preproc_directive] = ACTIONS(1307), - [anon_sym_LPAREN2] = ACTIONS(1309), - [anon_sym_BANG] = ACTIONS(1309), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_DASH] = ACTIONS(1307), - [anon_sym_PLUS] = ACTIONS(1307), - [anon_sym_STAR] = ACTIONS(1309), - [anon_sym_AMP] = ACTIONS(1309), - [anon_sym_SEMI] = ACTIONS(1309), - [anon_sym___extension__] = ACTIONS(1307), - [anon_sym_typedef] = ACTIONS(1307), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym___attribute__] = ACTIONS(1307), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1309), - [anon_sym___declspec] = ACTIONS(1307), - [anon_sym___cdecl] = ACTIONS(1307), - [anon_sym___clrcall] = ACTIONS(1307), - [anon_sym___stdcall] = ACTIONS(1307), - [anon_sym___fastcall] = ACTIONS(1307), - [anon_sym___thiscall] = ACTIONS(1307), - [anon_sym___vectorcall] = ACTIONS(1307), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_signed] = ACTIONS(1307), - [anon_sym_unsigned] = ACTIONS(1307), - [anon_sym_long] = ACTIONS(1307), - [anon_sym_short] = ACTIONS(1307), - [anon_sym_static] = ACTIONS(1307), - [anon_sym_auto] = ACTIONS(1307), - [anon_sym_register] = ACTIONS(1307), - [anon_sym_inline] = ACTIONS(1307), - [anon_sym___inline] = ACTIONS(1307), - [anon_sym___inline__] = ACTIONS(1307), - [anon_sym___forceinline] = ACTIONS(1307), - [anon_sym_thread_local] = ACTIONS(1307), - [anon_sym___thread] = ACTIONS(1307), - [anon_sym_const] = ACTIONS(1307), - [anon_sym_constexpr] = ACTIONS(1307), - [anon_sym_volatile] = ACTIONS(1307), - [anon_sym_restrict] = ACTIONS(1307), - [anon_sym___restrict__] = ACTIONS(1307), - [anon_sym__Atomic] = ACTIONS(1307), - [anon_sym__Noreturn] = ACTIONS(1307), - [anon_sym_noreturn] = ACTIONS(1307), - [anon_sym_alignas] = ACTIONS(1307), - [anon_sym__Alignas] = ACTIONS(1307), - [sym_primitive_type] = ACTIONS(1307), - [anon_sym_enum] = ACTIONS(1307), - [anon_sym_struct] = ACTIONS(1307), - [anon_sym_union] = ACTIONS(1307), - [anon_sym_if] = ACTIONS(1307), - [anon_sym_switch] = ACTIONS(1307), - [anon_sym_case] = ACTIONS(1307), - [anon_sym_default] = ACTIONS(1307), - [anon_sym_while] = ACTIONS(1307), - [anon_sym_do] = ACTIONS(1307), - [anon_sym_for] = ACTIONS(1307), - [anon_sym_return] = ACTIONS(1307), - [anon_sym_break] = ACTIONS(1307), - [anon_sym_continue] = ACTIONS(1307), - [anon_sym_goto] = ACTIONS(1307), - [anon_sym___try] = ACTIONS(1307), - [anon_sym___leave] = ACTIONS(1307), - [anon_sym_DASH_DASH] = ACTIONS(1309), - [anon_sym_PLUS_PLUS] = ACTIONS(1309), - [anon_sym_sizeof] = ACTIONS(1307), - [anon_sym___alignof__] = ACTIONS(1307), - [anon_sym___alignof] = ACTIONS(1307), - [anon_sym__alignof] = ACTIONS(1307), - [anon_sym_alignof] = ACTIONS(1307), - [anon_sym__Alignof] = ACTIONS(1307), - [anon_sym_offsetof] = ACTIONS(1307), - [anon_sym__Generic] = ACTIONS(1307), - [anon_sym_asm] = ACTIONS(1307), - [anon_sym___asm__] = ACTIONS(1307), - [sym_number_literal] = ACTIONS(1309), - [anon_sym_L_SQUOTE] = ACTIONS(1309), - [anon_sym_u_SQUOTE] = ACTIONS(1309), - [anon_sym_U_SQUOTE] = ACTIONS(1309), - [anon_sym_u8_SQUOTE] = ACTIONS(1309), - [anon_sym_SQUOTE] = ACTIONS(1309), - [anon_sym_L_DQUOTE] = ACTIONS(1309), - [anon_sym_u_DQUOTE] = ACTIONS(1309), - [anon_sym_U_DQUOTE] = ACTIONS(1309), - [anon_sym_u8_DQUOTE] = ACTIONS(1309), - [anon_sym_DQUOTE] = ACTIONS(1309), - [sym_true] = ACTIONS(1307), - [sym_false] = ACTIONS(1307), - [anon_sym_NULL] = ACTIONS(1307), - [anon_sym_nullptr] = ACTIONS(1307), + [301] = { + [sym_identifier] = ACTIONS(1343), + [aux_sym_preproc_include_token1] = ACTIONS(1343), + [aux_sym_preproc_def_token1] = ACTIONS(1343), + [aux_sym_preproc_if_token1] = ACTIONS(1343), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1343), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1343), + [sym_preproc_directive] = ACTIONS(1343), + [anon_sym_LPAREN2] = ACTIONS(1345), + [anon_sym_BANG] = ACTIONS(1345), + [anon_sym_TILDE] = ACTIONS(1345), + [anon_sym_DASH] = ACTIONS(1343), + [anon_sym_PLUS] = ACTIONS(1343), + [anon_sym_STAR] = ACTIONS(1345), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_SEMI] = ACTIONS(1345), + [anon_sym___extension__] = ACTIONS(1343), + [anon_sym_typedef] = ACTIONS(1343), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym___attribute__] = ACTIONS(1343), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1345), + [anon_sym___declspec] = ACTIONS(1343), + [anon_sym___cdecl] = ACTIONS(1343), + [anon_sym___clrcall] = ACTIONS(1343), + [anon_sym___stdcall] = ACTIONS(1343), + [anon_sym___fastcall] = ACTIONS(1343), + [anon_sym___thiscall] = ACTIONS(1343), + [anon_sym___vectorcall] = ACTIONS(1343), + [anon_sym_LBRACE] = ACTIONS(1345), + [anon_sym_RBRACE] = ACTIONS(1345), + [anon_sym_signed] = ACTIONS(1343), + [anon_sym_unsigned] = ACTIONS(1343), + [anon_sym_long] = ACTIONS(1343), + [anon_sym_short] = ACTIONS(1343), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_auto] = ACTIONS(1343), + [anon_sym_register] = ACTIONS(1343), + [anon_sym_inline] = ACTIONS(1343), + [anon_sym___inline] = ACTIONS(1343), + [anon_sym___inline__] = ACTIONS(1343), + [anon_sym___forceinline] = ACTIONS(1343), + [anon_sym_thread_local] = ACTIONS(1343), + [anon_sym___thread] = ACTIONS(1343), + [anon_sym_const] = ACTIONS(1343), + [anon_sym_constexpr] = ACTIONS(1343), + [anon_sym_volatile] = ACTIONS(1343), + [anon_sym_restrict] = ACTIONS(1343), + [anon_sym___restrict__] = ACTIONS(1343), + [anon_sym__Atomic] = ACTIONS(1343), + [anon_sym__Noreturn] = ACTIONS(1343), + [anon_sym_noreturn] = ACTIONS(1343), + [anon_sym_alignas] = ACTIONS(1343), + [anon_sym__Alignas] = 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_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___try] = ACTIONS(1343), + [anon_sym___leave] = ACTIONS(1343), + [anon_sym_DASH_DASH] = ACTIONS(1345), + [anon_sym_PLUS_PLUS] = ACTIONS(1345), + [anon_sym_sizeof] = ACTIONS(1343), + [anon_sym___alignof__] = ACTIONS(1343), + [anon_sym___alignof] = ACTIONS(1343), + [anon_sym__alignof] = ACTIONS(1343), + [anon_sym_alignof] = ACTIONS(1343), + [anon_sym__Alignof] = ACTIONS(1343), + [anon_sym_offsetof] = ACTIONS(1343), + [anon_sym__Generic] = ACTIONS(1343), + [anon_sym_asm] = ACTIONS(1343), + [anon_sym___asm__] = ACTIONS(1343), + [sym_number_literal] = ACTIONS(1345), + [anon_sym_L_SQUOTE] = ACTIONS(1345), + [anon_sym_u_SQUOTE] = ACTIONS(1345), + [anon_sym_U_SQUOTE] = ACTIONS(1345), + [anon_sym_u8_SQUOTE] = ACTIONS(1345), + [anon_sym_SQUOTE] = ACTIONS(1345), + [anon_sym_L_DQUOTE] = ACTIONS(1345), + [anon_sym_u_DQUOTE] = ACTIONS(1345), + [anon_sym_U_DQUOTE] = ACTIONS(1345), + [anon_sym_u8_DQUOTE] = ACTIONS(1345), + [anon_sym_DQUOTE] = ACTIONS(1345), + [sym_true] = ACTIONS(1343), + [sym_false] = ACTIONS(1343), + [anon_sym_NULL] = ACTIONS(1343), + [anon_sym_nullptr] = ACTIONS(1343), [sym_comment] = ACTIONS(3), }, - [349] = { - [sym_identifier] = ACTIONS(1279), - [aux_sym_preproc_include_token1] = ACTIONS(1279), - [aux_sym_preproc_def_token1] = ACTIONS(1279), - [aux_sym_preproc_if_token1] = ACTIONS(1279), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1279), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1279), - [sym_preproc_directive] = ACTIONS(1279), - [anon_sym_LPAREN2] = ACTIONS(1281), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_STAR] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_SEMI] = ACTIONS(1281), - [anon_sym___extension__] = ACTIONS(1279), - [anon_sym_typedef] = ACTIONS(1279), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym___attribute__] = ACTIONS(1279), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1281), - [anon_sym___declspec] = ACTIONS(1279), - [anon_sym___cdecl] = ACTIONS(1279), - [anon_sym___clrcall] = ACTIONS(1279), - [anon_sym___stdcall] = ACTIONS(1279), - [anon_sym___fastcall] = ACTIONS(1279), - [anon_sym___thiscall] = ACTIONS(1279), - [anon_sym___vectorcall] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_RBRACE] = ACTIONS(1281), - [anon_sym_signed] = ACTIONS(1279), - [anon_sym_unsigned] = ACTIONS(1279), - [anon_sym_long] = ACTIONS(1279), - [anon_sym_short] = ACTIONS(1279), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_auto] = ACTIONS(1279), - [anon_sym_register] = ACTIONS(1279), - [anon_sym_inline] = ACTIONS(1279), - [anon_sym___inline] = ACTIONS(1279), - [anon_sym___inline__] = ACTIONS(1279), - [anon_sym___forceinline] = ACTIONS(1279), - [anon_sym_thread_local] = ACTIONS(1279), - [anon_sym___thread] = ACTIONS(1279), - [anon_sym_const] = ACTIONS(1279), - [anon_sym_constexpr] = ACTIONS(1279), - [anon_sym_volatile] = ACTIONS(1279), - [anon_sym_restrict] = ACTIONS(1279), - [anon_sym___restrict__] = ACTIONS(1279), - [anon_sym__Atomic] = ACTIONS(1279), - [anon_sym__Noreturn] = ACTIONS(1279), - [anon_sym_noreturn] = ACTIONS(1279), - [anon_sym_alignas] = ACTIONS(1279), - [anon_sym__Alignas] = ACTIONS(1279), - [sym_primitive_type] = ACTIONS(1279), + [302] = { + [sym_identifier] = ACTIONS(1319), + [aux_sym_preproc_include_token1] = ACTIONS(1319), + [aux_sym_preproc_def_token1] = ACTIONS(1319), + [aux_sym_preproc_if_token1] = ACTIONS(1319), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1319), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1319), + [sym_preproc_directive] = ACTIONS(1319), + [anon_sym_LPAREN2] = ACTIONS(1321), + [anon_sym_BANG] = ACTIONS(1321), + [anon_sym_TILDE] = ACTIONS(1321), + [anon_sym_DASH] = ACTIONS(1319), + [anon_sym_PLUS] = ACTIONS(1319), + [anon_sym_STAR] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(1321), + [anon_sym_SEMI] = ACTIONS(1321), + [anon_sym___extension__] = ACTIONS(1319), + [anon_sym_typedef] = ACTIONS(1319), + [anon_sym_extern] = ACTIONS(1319), + [anon_sym___attribute__] = ACTIONS(1319), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1321), + [anon_sym___declspec] = ACTIONS(1319), + [anon_sym___cdecl] = ACTIONS(1319), + [anon_sym___clrcall] = ACTIONS(1319), + [anon_sym___stdcall] = ACTIONS(1319), + [anon_sym___fastcall] = ACTIONS(1319), + [anon_sym___thiscall] = ACTIONS(1319), + [anon_sym___vectorcall] = ACTIONS(1319), + [anon_sym_LBRACE] = ACTIONS(1321), + [anon_sym_RBRACE] = ACTIONS(1321), + [anon_sym_signed] = ACTIONS(1319), + [anon_sym_unsigned] = ACTIONS(1319), + [anon_sym_long] = ACTIONS(1319), + [anon_sym_short] = ACTIONS(1319), + [anon_sym_static] = ACTIONS(1319), + [anon_sym_auto] = ACTIONS(1319), + [anon_sym_register] = ACTIONS(1319), + [anon_sym_inline] = ACTIONS(1319), + [anon_sym___inline] = ACTIONS(1319), + [anon_sym___inline__] = ACTIONS(1319), + [anon_sym___forceinline] = ACTIONS(1319), + [anon_sym_thread_local] = ACTIONS(1319), + [anon_sym___thread] = ACTIONS(1319), + [anon_sym_const] = ACTIONS(1319), + [anon_sym_constexpr] = ACTIONS(1319), + [anon_sym_volatile] = ACTIONS(1319), + [anon_sym_restrict] = ACTIONS(1319), + [anon_sym___restrict__] = ACTIONS(1319), + [anon_sym__Atomic] = ACTIONS(1319), + [anon_sym__Noreturn] = ACTIONS(1319), + [anon_sym_noreturn] = ACTIONS(1319), + [anon_sym_alignas] = ACTIONS(1319), + [anon_sym__Alignas] = ACTIONS(1319), + [sym_primitive_type] = ACTIONS(1319), + [anon_sym_enum] = ACTIONS(1319), + [anon_sym_struct] = ACTIONS(1319), + [anon_sym_union] = ACTIONS(1319), + [anon_sym_if] = ACTIONS(1319), + [anon_sym_switch] = ACTIONS(1319), + [anon_sym_case] = ACTIONS(1319), + [anon_sym_default] = ACTIONS(1319), + [anon_sym_while] = ACTIONS(1319), + [anon_sym_do] = ACTIONS(1319), + [anon_sym_for] = ACTIONS(1319), + [anon_sym_return] = ACTIONS(1319), + [anon_sym_break] = ACTIONS(1319), + [anon_sym_continue] = ACTIONS(1319), + [anon_sym_goto] = ACTIONS(1319), + [anon_sym___try] = ACTIONS(1319), + [anon_sym___leave] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1321), + [anon_sym_PLUS_PLUS] = ACTIONS(1321), + [anon_sym_sizeof] = ACTIONS(1319), + [anon_sym___alignof__] = ACTIONS(1319), + [anon_sym___alignof] = ACTIONS(1319), + [anon_sym__alignof] = ACTIONS(1319), + [anon_sym_alignof] = ACTIONS(1319), + [anon_sym__Alignof] = ACTIONS(1319), + [anon_sym_offsetof] = ACTIONS(1319), + [anon_sym__Generic] = ACTIONS(1319), + [anon_sym_asm] = ACTIONS(1319), + [anon_sym___asm__] = ACTIONS(1319), + [sym_number_literal] = ACTIONS(1321), + [anon_sym_L_SQUOTE] = ACTIONS(1321), + [anon_sym_u_SQUOTE] = ACTIONS(1321), + [anon_sym_U_SQUOTE] = ACTIONS(1321), + [anon_sym_u8_SQUOTE] = ACTIONS(1321), + [anon_sym_SQUOTE] = ACTIONS(1321), + [anon_sym_L_DQUOTE] = ACTIONS(1321), + [anon_sym_u_DQUOTE] = ACTIONS(1321), + [anon_sym_U_DQUOTE] = ACTIONS(1321), + [anon_sym_u8_DQUOTE] = ACTIONS(1321), + [anon_sym_DQUOTE] = ACTIONS(1321), + [sym_true] = ACTIONS(1319), + [sym_false] = ACTIONS(1319), + [anon_sym_NULL] = ACTIONS(1319), + [anon_sym_nullptr] = ACTIONS(1319), + [sym_comment] = ACTIONS(3), + }, + [303] = { + [sym_identifier] = ACTIONS(1279), + [aux_sym_preproc_include_token1] = ACTIONS(1279), + [aux_sym_preproc_def_token1] = ACTIONS(1279), + [aux_sym_preproc_if_token1] = ACTIONS(1279), + [aux_sym_preproc_if_token2] = ACTIONS(1279), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1279), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1279), + [sym_preproc_directive] = ACTIONS(1279), + [anon_sym_LPAREN2] = ACTIONS(1281), + [anon_sym_BANG] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1281), + [anon_sym_DASH] = ACTIONS(1279), + [anon_sym_PLUS] = ACTIONS(1279), + [anon_sym_STAR] = ACTIONS(1281), + [anon_sym_AMP] = ACTIONS(1281), + [anon_sym_SEMI] = ACTIONS(1281), + [anon_sym___extension__] = ACTIONS(1279), + [anon_sym_typedef] = ACTIONS(1279), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym___attribute__] = ACTIONS(1279), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1281), + [anon_sym___declspec] = ACTIONS(1279), + [anon_sym___cdecl] = ACTIONS(1279), + [anon_sym___clrcall] = ACTIONS(1279), + [anon_sym___stdcall] = ACTIONS(1279), + [anon_sym___fastcall] = ACTIONS(1279), + [anon_sym___thiscall] = ACTIONS(1279), + [anon_sym___vectorcall] = ACTIONS(1279), + [anon_sym_LBRACE] = ACTIONS(1281), + [anon_sym_signed] = ACTIONS(1279), + [anon_sym_unsigned] = ACTIONS(1279), + [anon_sym_long] = ACTIONS(1279), + [anon_sym_short] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(1279), + [anon_sym_auto] = ACTIONS(1279), + [anon_sym_register] = ACTIONS(1279), + [anon_sym_inline] = ACTIONS(1279), + [anon_sym___inline] = ACTIONS(1279), + [anon_sym___inline__] = ACTIONS(1279), + [anon_sym___forceinline] = ACTIONS(1279), + [anon_sym_thread_local] = ACTIONS(1279), + [anon_sym___thread] = ACTIONS(1279), + [anon_sym_const] = ACTIONS(1279), + [anon_sym_constexpr] = ACTIONS(1279), + [anon_sym_volatile] = ACTIONS(1279), + [anon_sym_restrict] = ACTIONS(1279), + [anon_sym___restrict__] = ACTIONS(1279), + [anon_sym__Atomic] = ACTIONS(1279), + [anon_sym__Noreturn] = ACTIONS(1279), + [anon_sym_noreturn] = ACTIONS(1279), + [anon_sym_alignas] = ACTIONS(1279), + [anon_sym__Alignas] = ACTIONS(1279), + [sym_primitive_type] = ACTIONS(1279), [anon_sym_enum] = ACTIONS(1279), [anon_sym_struct] = ACTIONS(1279), [anon_sym_union] = ACTIONS(1279), @@ -51534,1732 +46808,1328 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1279), [sym_comment] = ACTIONS(3), }, - [350] = { - [sym_identifier] = ACTIONS(1287), - [aux_sym_preproc_include_token1] = ACTIONS(1287), - [aux_sym_preproc_def_token1] = ACTIONS(1287), - [aux_sym_preproc_if_token1] = ACTIONS(1287), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1287), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1287), - [sym_preproc_directive] = ACTIONS(1287), - [anon_sym_LPAREN2] = ACTIONS(1289), - [anon_sym_BANG] = ACTIONS(1289), - [anon_sym_TILDE] = ACTIONS(1289), - [anon_sym_DASH] = ACTIONS(1287), - [anon_sym_PLUS] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_AMP] = ACTIONS(1289), - [anon_sym_SEMI] = ACTIONS(1289), - [anon_sym___extension__] = ACTIONS(1287), - [anon_sym_typedef] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1287), - [anon_sym___attribute__] = ACTIONS(1287), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1289), - [anon_sym___declspec] = ACTIONS(1287), - [anon_sym___cdecl] = ACTIONS(1287), - [anon_sym___clrcall] = ACTIONS(1287), - [anon_sym___stdcall] = ACTIONS(1287), - [anon_sym___fastcall] = ACTIONS(1287), - [anon_sym___thiscall] = ACTIONS(1287), - [anon_sym___vectorcall] = ACTIONS(1287), - [anon_sym_LBRACE] = ACTIONS(1289), - [anon_sym_RBRACE] = ACTIONS(1289), - [anon_sym_signed] = ACTIONS(1287), - [anon_sym_unsigned] = ACTIONS(1287), - [anon_sym_long] = ACTIONS(1287), - [anon_sym_short] = ACTIONS(1287), - [anon_sym_static] = ACTIONS(1287), - [anon_sym_auto] = ACTIONS(1287), - [anon_sym_register] = ACTIONS(1287), - [anon_sym_inline] = ACTIONS(1287), - [anon_sym___inline] = ACTIONS(1287), - [anon_sym___inline__] = ACTIONS(1287), - [anon_sym___forceinline] = ACTIONS(1287), - [anon_sym_thread_local] = ACTIONS(1287), - [anon_sym___thread] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), - [anon_sym_constexpr] = ACTIONS(1287), - [anon_sym_volatile] = ACTIONS(1287), - [anon_sym_restrict] = ACTIONS(1287), - [anon_sym___restrict__] = ACTIONS(1287), - [anon_sym__Atomic] = ACTIONS(1287), - [anon_sym__Noreturn] = ACTIONS(1287), - [anon_sym_noreturn] = ACTIONS(1287), - [anon_sym_alignas] = ACTIONS(1287), - [anon_sym__Alignas] = ACTIONS(1287), - [sym_primitive_type] = ACTIONS(1287), - [anon_sym_enum] = ACTIONS(1287), - [anon_sym_struct] = ACTIONS(1287), - [anon_sym_union] = ACTIONS(1287), - [anon_sym_if] = ACTIONS(1287), - [anon_sym_switch] = ACTIONS(1287), - [anon_sym_case] = ACTIONS(1287), - [anon_sym_default] = ACTIONS(1287), - [anon_sym_while] = ACTIONS(1287), - [anon_sym_do] = ACTIONS(1287), - [anon_sym_for] = ACTIONS(1287), - [anon_sym_return] = ACTIONS(1287), - [anon_sym_break] = ACTIONS(1287), - [anon_sym_continue] = ACTIONS(1287), - [anon_sym_goto] = ACTIONS(1287), - [anon_sym___try] = ACTIONS(1287), - [anon_sym___leave] = ACTIONS(1287), - [anon_sym_DASH_DASH] = ACTIONS(1289), - [anon_sym_PLUS_PLUS] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1287), - [anon_sym___alignof__] = ACTIONS(1287), - [anon_sym___alignof] = ACTIONS(1287), - [anon_sym__alignof] = ACTIONS(1287), - [anon_sym_alignof] = ACTIONS(1287), - [anon_sym__Alignof] = ACTIONS(1287), - [anon_sym_offsetof] = ACTIONS(1287), - [anon_sym__Generic] = ACTIONS(1287), - [anon_sym_asm] = ACTIONS(1287), - [anon_sym___asm__] = ACTIONS(1287), - [sym_number_literal] = ACTIONS(1289), - [anon_sym_L_SQUOTE] = ACTIONS(1289), - [anon_sym_u_SQUOTE] = ACTIONS(1289), - [anon_sym_U_SQUOTE] = ACTIONS(1289), - [anon_sym_u8_SQUOTE] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1289), - [anon_sym_L_DQUOTE] = ACTIONS(1289), - [anon_sym_u_DQUOTE] = ACTIONS(1289), - [anon_sym_U_DQUOTE] = ACTIONS(1289), - [anon_sym_u8_DQUOTE] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1289), - [sym_true] = ACTIONS(1287), - [sym_false] = ACTIONS(1287), - [anon_sym_NULL] = ACTIONS(1287), - [anon_sym_nullptr] = ACTIONS(1287), - [sym_comment] = ACTIONS(3), - }, - [351] = { - [sym_identifier] = ACTIONS(1251), - [aux_sym_preproc_include_token1] = ACTIONS(1251), - [aux_sym_preproc_def_token1] = ACTIONS(1251), - [aux_sym_preproc_if_token1] = ACTIONS(1251), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1251), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1251), - [sym_preproc_directive] = ACTIONS(1251), - [anon_sym_LPAREN2] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1253), - [anon_sym_TILDE] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_AMP] = ACTIONS(1253), - [anon_sym_SEMI] = ACTIONS(1253), - [anon_sym___extension__] = ACTIONS(1251), - [anon_sym_typedef] = ACTIONS(1251), - [anon_sym_extern] = ACTIONS(1251), - [anon_sym___attribute__] = ACTIONS(1251), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1253), - [anon_sym___declspec] = ACTIONS(1251), - [anon_sym___cdecl] = ACTIONS(1251), - [anon_sym___clrcall] = ACTIONS(1251), - [anon_sym___stdcall] = ACTIONS(1251), - [anon_sym___fastcall] = ACTIONS(1251), - [anon_sym___thiscall] = ACTIONS(1251), - [anon_sym___vectorcall] = ACTIONS(1251), - [anon_sym_LBRACE] = ACTIONS(1253), - [anon_sym_RBRACE] = ACTIONS(1253), - [anon_sym_signed] = ACTIONS(1251), - [anon_sym_unsigned] = ACTIONS(1251), - [anon_sym_long] = ACTIONS(1251), - [anon_sym_short] = ACTIONS(1251), - [anon_sym_static] = ACTIONS(1251), - [anon_sym_auto] = ACTIONS(1251), - [anon_sym_register] = ACTIONS(1251), - [anon_sym_inline] = ACTIONS(1251), - [anon_sym___inline] = ACTIONS(1251), - [anon_sym___inline__] = ACTIONS(1251), - [anon_sym___forceinline] = ACTIONS(1251), - [anon_sym_thread_local] = ACTIONS(1251), - [anon_sym___thread] = ACTIONS(1251), - [anon_sym_const] = ACTIONS(1251), - [anon_sym_constexpr] = ACTIONS(1251), - [anon_sym_volatile] = ACTIONS(1251), - [anon_sym_restrict] = ACTIONS(1251), - [anon_sym___restrict__] = ACTIONS(1251), - [anon_sym__Atomic] = ACTIONS(1251), - [anon_sym__Noreturn] = ACTIONS(1251), - [anon_sym_noreturn] = ACTIONS(1251), - [anon_sym_alignas] = ACTIONS(1251), - [anon_sym__Alignas] = ACTIONS(1251), - [sym_primitive_type] = ACTIONS(1251), - [anon_sym_enum] = ACTIONS(1251), - [anon_sym_struct] = ACTIONS(1251), - [anon_sym_union] = ACTIONS(1251), - [anon_sym_if] = ACTIONS(1251), - [anon_sym_switch] = ACTIONS(1251), - [anon_sym_case] = ACTIONS(1251), - [anon_sym_default] = ACTIONS(1251), - [anon_sym_while] = ACTIONS(1251), - [anon_sym_do] = ACTIONS(1251), - [anon_sym_for] = ACTIONS(1251), - [anon_sym_return] = ACTIONS(1251), - [anon_sym_break] = ACTIONS(1251), - [anon_sym_continue] = ACTIONS(1251), - [anon_sym_goto] = ACTIONS(1251), - [anon_sym___try] = ACTIONS(1251), - [anon_sym___leave] = ACTIONS(1251), - [anon_sym_DASH_DASH] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1253), - [anon_sym_sizeof] = ACTIONS(1251), - [anon_sym___alignof__] = ACTIONS(1251), - [anon_sym___alignof] = ACTIONS(1251), - [anon_sym__alignof] = ACTIONS(1251), - [anon_sym_alignof] = ACTIONS(1251), - [anon_sym__Alignof] = ACTIONS(1251), - [anon_sym_offsetof] = ACTIONS(1251), - [anon_sym__Generic] = ACTIONS(1251), - [anon_sym_asm] = ACTIONS(1251), - [anon_sym___asm__] = ACTIONS(1251), - [sym_number_literal] = ACTIONS(1253), - [anon_sym_L_SQUOTE] = ACTIONS(1253), - [anon_sym_u_SQUOTE] = ACTIONS(1253), - [anon_sym_U_SQUOTE] = ACTIONS(1253), - [anon_sym_u8_SQUOTE] = ACTIONS(1253), - [anon_sym_SQUOTE] = ACTIONS(1253), - [anon_sym_L_DQUOTE] = ACTIONS(1253), - [anon_sym_u_DQUOTE] = ACTIONS(1253), - [anon_sym_U_DQUOTE] = ACTIONS(1253), - [anon_sym_u8_DQUOTE] = ACTIONS(1253), - [anon_sym_DQUOTE] = ACTIONS(1253), - [sym_true] = ACTIONS(1251), - [sym_false] = ACTIONS(1251), - [anon_sym_NULL] = ACTIONS(1251), - [anon_sym_nullptr] = ACTIONS(1251), + [304] = { + [sym_identifier] = ACTIONS(1307), + [aux_sym_preproc_include_token1] = ACTIONS(1307), + [aux_sym_preproc_def_token1] = ACTIONS(1307), + [aux_sym_preproc_if_token1] = ACTIONS(1307), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1307), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1307), + [sym_preproc_directive] = ACTIONS(1307), + [anon_sym_LPAREN2] = ACTIONS(1309), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_TILDE] = ACTIONS(1309), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(1307), + [anon_sym_STAR] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1309), + [anon_sym_SEMI] = ACTIONS(1309), + [anon_sym___extension__] = ACTIONS(1307), + [anon_sym_typedef] = ACTIONS(1307), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym___attribute__] = ACTIONS(1307), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1309), + [anon_sym___declspec] = ACTIONS(1307), + [anon_sym___cdecl] = ACTIONS(1307), + [anon_sym___clrcall] = ACTIONS(1307), + [anon_sym___stdcall] = ACTIONS(1307), + [anon_sym___fastcall] = ACTIONS(1307), + [anon_sym___thiscall] = ACTIONS(1307), + [anon_sym___vectorcall] = ACTIONS(1307), + [anon_sym_LBRACE] = ACTIONS(1309), + [anon_sym_RBRACE] = ACTIONS(1309), + [anon_sym_signed] = ACTIONS(1307), + [anon_sym_unsigned] = ACTIONS(1307), + [anon_sym_long] = ACTIONS(1307), + [anon_sym_short] = ACTIONS(1307), + [anon_sym_static] = ACTIONS(1307), + [anon_sym_auto] = ACTIONS(1307), + [anon_sym_register] = ACTIONS(1307), + [anon_sym_inline] = ACTIONS(1307), + [anon_sym___inline] = ACTIONS(1307), + [anon_sym___inline__] = ACTIONS(1307), + [anon_sym___forceinline] = ACTIONS(1307), + [anon_sym_thread_local] = ACTIONS(1307), + [anon_sym___thread] = ACTIONS(1307), + [anon_sym_const] = ACTIONS(1307), + [anon_sym_constexpr] = ACTIONS(1307), + [anon_sym_volatile] = ACTIONS(1307), + [anon_sym_restrict] = ACTIONS(1307), + [anon_sym___restrict__] = ACTIONS(1307), + [anon_sym__Atomic] = ACTIONS(1307), + [anon_sym__Noreturn] = ACTIONS(1307), + [anon_sym_noreturn] = ACTIONS(1307), + [anon_sym_alignas] = ACTIONS(1307), + [anon_sym__Alignas] = ACTIONS(1307), + [sym_primitive_type] = ACTIONS(1307), + [anon_sym_enum] = ACTIONS(1307), + [anon_sym_struct] = ACTIONS(1307), + [anon_sym_union] = ACTIONS(1307), + [anon_sym_if] = ACTIONS(1307), + [anon_sym_switch] = ACTIONS(1307), + [anon_sym_case] = ACTIONS(1307), + [anon_sym_default] = ACTIONS(1307), + [anon_sym_while] = ACTIONS(1307), + [anon_sym_do] = ACTIONS(1307), + [anon_sym_for] = ACTIONS(1307), + [anon_sym_return] = ACTIONS(1307), + [anon_sym_break] = ACTIONS(1307), + [anon_sym_continue] = ACTIONS(1307), + [anon_sym_goto] = ACTIONS(1307), + [anon_sym___try] = ACTIONS(1307), + [anon_sym___leave] = ACTIONS(1307), + [anon_sym_DASH_DASH] = ACTIONS(1309), + [anon_sym_PLUS_PLUS] = ACTIONS(1309), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym___alignof__] = ACTIONS(1307), + [anon_sym___alignof] = ACTIONS(1307), + [anon_sym__alignof] = ACTIONS(1307), + [anon_sym_alignof] = ACTIONS(1307), + [anon_sym__Alignof] = ACTIONS(1307), + [anon_sym_offsetof] = ACTIONS(1307), + [anon_sym__Generic] = ACTIONS(1307), + [anon_sym_asm] = ACTIONS(1307), + [anon_sym___asm__] = ACTIONS(1307), + [sym_number_literal] = ACTIONS(1309), + [anon_sym_L_SQUOTE] = ACTIONS(1309), + [anon_sym_u_SQUOTE] = ACTIONS(1309), + [anon_sym_U_SQUOTE] = ACTIONS(1309), + [anon_sym_u8_SQUOTE] = ACTIONS(1309), + [anon_sym_SQUOTE] = ACTIONS(1309), + [anon_sym_L_DQUOTE] = ACTIONS(1309), + [anon_sym_u_DQUOTE] = ACTIONS(1309), + [anon_sym_U_DQUOTE] = ACTIONS(1309), + [anon_sym_u8_DQUOTE] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1309), + [sym_true] = ACTIONS(1307), + [sym_false] = ACTIONS(1307), + [anon_sym_NULL] = ACTIONS(1307), + [anon_sym_nullptr] = ACTIONS(1307), [sym_comment] = ACTIONS(3), }, - [352] = { - [sym_identifier] = ACTIONS(1327), - [aux_sym_preproc_include_token1] = ACTIONS(1327), - [aux_sym_preproc_def_token1] = ACTIONS(1327), - [aux_sym_preproc_if_token1] = ACTIONS(1327), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1327), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1327), - [sym_preproc_directive] = ACTIONS(1327), - [anon_sym_LPAREN2] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_TILDE] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1327), - [anon_sym_STAR] = ACTIONS(1329), - [anon_sym_AMP] = ACTIONS(1329), - [anon_sym_SEMI] = ACTIONS(1329), - [anon_sym___extension__] = ACTIONS(1327), - [anon_sym_typedef] = ACTIONS(1327), - [anon_sym_extern] = ACTIONS(1327), - [anon_sym___attribute__] = ACTIONS(1327), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1329), - [anon_sym___declspec] = ACTIONS(1327), - [anon_sym___cdecl] = ACTIONS(1327), - [anon_sym___clrcall] = ACTIONS(1327), - [anon_sym___stdcall] = ACTIONS(1327), - [anon_sym___fastcall] = ACTIONS(1327), - [anon_sym___thiscall] = ACTIONS(1327), - [anon_sym___vectorcall] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(1329), - [anon_sym_RBRACE] = ACTIONS(1329), - [anon_sym_signed] = ACTIONS(1327), - [anon_sym_unsigned] = ACTIONS(1327), - [anon_sym_long] = ACTIONS(1327), - [anon_sym_short] = ACTIONS(1327), - [anon_sym_static] = ACTIONS(1327), - [anon_sym_auto] = ACTIONS(1327), - [anon_sym_register] = ACTIONS(1327), - [anon_sym_inline] = ACTIONS(1327), - [anon_sym___inline] = ACTIONS(1327), - [anon_sym___inline__] = ACTIONS(1327), - [anon_sym___forceinline] = ACTIONS(1327), - [anon_sym_thread_local] = ACTIONS(1327), - [anon_sym___thread] = ACTIONS(1327), - [anon_sym_const] = ACTIONS(1327), - [anon_sym_constexpr] = ACTIONS(1327), - [anon_sym_volatile] = ACTIONS(1327), - [anon_sym_restrict] = ACTIONS(1327), - [anon_sym___restrict__] = ACTIONS(1327), - [anon_sym__Atomic] = ACTIONS(1327), - [anon_sym__Noreturn] = ACTIONS(1327), - [anon_sym_noreturn] = ACTIONS(1327), - [anon_sym_alignas] = ACTIONS(1327), - [anon_sym__Alignas] = ACTIONS(1327), - [sym_primitive_type] = ACTIONS(1327), - [anon_sym_enum] = ACTIONS(1327), - [anon_sym_struct] = ACTIONS(1327), - [anon_sym_union] = ACTIONS(1327), - [anon_sym_if] = ACTIONS(1327), - [anon_sym_switch] = ACTIONS(1327), - [anon_sym_case] = ACTIONS(1327), - [anon_sym_default] = ACTIONS(1327), - [anon_sym_while] = ACTIONS(1327), - [anon_sym_do] = ACTIONS(1327), - [anon_sym_for] = ACTIONS(1327), - [anon_sym_return] = ACTIONS(1327), - [anon_sym_break] = ACTIONS(1327), - [anon_sym_continue] = ACTIONS(1327), - [anon_sym_goto] = ACTIONS(1327), - [anon_sym___try] = ACTIONS(1327), - [anon_sym___leave] = ACTIONS(1327), - [anon_sym_DASH_DASH] = ACTIONS(1329), - [anon_sym_PLUS_PLUS] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(1327), - [anon_sym___alignof__] = ACTIONS(1327), - [anon_sym___alignof] = ACTIONS(1327), - [anon_sym__alignof] = ACTIONS(1327), - [anon_sym_alignof] = ACTIONS(1327), - [anon_sym__Alignof] = ACTIONS(1327), - [anon_sym_offsetof] = ACTIONS(1327), - [anon_sym__Generic] = ACTIONS(1327), - [anon_sym_asm] = ACTIONS(1327), - [anon_sym___asm__] = ACTIONS(1327), - [sym_number_literal] = ACTIONS(1329), - [anon_sym_L_SQUOTE] = ACTIONS(1329), - [anon_sym_u_SQUOTE] = ACTIONS(1329), - [anon_sym_U_SQUOTE] = ACTIONS(1329), - [anon_sym_u8_SQUOTE] = ACTIONS(1329), - [anon_sym_SQUOTE] = ACTIONS(1329), - [anon_sym_L_DQUOTE] = ACTIONS(1329), - [anon_sym_u_DQUOTE] = ACTIONS(1329), - [anon_sym_U_DQUOTE] = ACTIONS(1329), - [anon_sym_u8_DQUOTE] = ACTIONS(1329), - [anon_sym_DQUOTE] = ACTIONS(1329), - [sym_true] = ACTIONS(1327), - [sym_false] = ACTIONS(1327), - [anon_sym_NULL] = ACTIONS(1327), - [anon_sym_nullptr] = ACTIONS(1327), - [sym_comment] = ACTIONS(3), - }, - [353] = { - [sym_identifier] = ACTIONS(1275), - [aux_sym_preproc_include_token1] = ACTIONS(1275), - [aux_sym_preproc_def_token1] = ACTIONS(1275), - [aux_sym_preproc_if_token1] = ACTIONS(1275), - [aux_sym_preproc_if_token2] = ACTIONS(1275), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1275), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1275), - [sym_preproc_directive] = ACTIONS(1275), - [anon_sym_LPAREN2] = ACTIONS(1277), - [anon_sym_BANG] = ACTIONS(1277), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1275), - [anon_sym_PLUS] = ACTIONS(1275), - [anon_sym_STAR] = ACTIONS(1277), - [anon_sym_AMP] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1277), - [anon_sym___extension__] = ACTIONS(1275), - [anon_sym_typedef] = ACTIONS(1275), - [anon_sym_extern] = ACTIONS(1275), - [anon_sym___attribute__] = ACTIONS(1275), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1277), - [anon_sym___declspec] = ACTIONS(1275), - [anon_sym___cdecl] = ACTIONS(1275), - [anon_sym___clrcall] = ACTIONS(1275), - [anon_sym___stdcall] = ACTIONS(1275), - [anon_sym___fastcall] = ACTIONS(1275), - [anon_sym___thiscall] = ACTIONS(1275), - [anon_sym___vectorcall] = ACTIONS(1275), - [anon_sym_LBRACE] = ACTIONS(1277), - [anon_sym_signed] = ACTIONS(1275), - [anon_sym_unsigned] = ACTIONS(1275), - [anon_sym_long] = ACTIONS(1275), - [anon_sym_short] = ACTIONS(1275), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_auto] = ACTIONS(1275), - [anon_sym_register] = ACTIONS(1275), - [anon_sym_inline] = ACTIONS(1275), - [anon_sym___inline] = ACTIONS(1275), - [anon_sym___inline__] = ACTIONS(1275), - [anon_sym___forceinline] = ACTIONS(1275), - [anon_sym_thread_local] = ACTIONS(1275), - [anon_sym___thread] = ACTIONS(1275), - [anon_sym_const] = ACTIONS(1275), - [anon_sym_constexpr] = ACTIONS(1275), - [anon_sym_volatile] = ACTIONS(1275), - [anon_sym_restrict] = ACTIONS(1275), - [anon_sym___restrict__] = ACTIONS(1275), - [anon_sym__Atomic] = ACTIONS(1275), - [anon_sym__Noreturn] = ACTIONS(1275), - [anon_sym_noreturn] = ACTIONS(1275), - [anon_sym_alignas] = ACTIONS(1275), - [anon_sym__Alignas] = ACTIONS(1275), - [sym_primitive_type] = ACTIONS(1275), - [anon_sym_enum] = ACTIONS(1275), - [anon_sym_struct] = ACTIONS(1275), - [anon_sym_union] = ACTIONS(1275), - [anon_sym_if] = ACTIONS(1275), - [anon_sym_switch] = ACTIONS(1275), - [anon_sym_case] = ACTIONS(1275), - [anon_sym_default] = ACTIONS(1275), - [anon_sym_while] = ACTIONS(1275), - [anon_sym_do] = ACTIONS(1275), - [anon_sym_for] = ACTIONS(1275), - [anon_sym_return] = ACTIONS(1275), - [anon_sym_break] = ACTIONS(1275), - [anon_sym_continue] = ACTIONS(1275), - [anon_sym_goto] = ACTIONS(1275), - [anon_sym___try] = ACTIONS(1275), - [anon_sym___leave] = ACTIONS(1275), - [anon_sym_DASH_DASH] = ACTIONS(1277), - [anon_sym_PLUS_PLUS] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym___alignof__] = ACTIONS(1275), - [anon_sym___alignof] = ACTIONS(1275), - [anon_sym__alignof] = ACTIONS(1275), - [anon_sym_alignof] = ACTIONS(1275), - [anon_sym__Alignof] = ACTIONS(1275), - [anon_sym_offsetof] = ACTIONS(1275), - [anon_sym__Generic] = ACTIONS(1275), - [anon_sym_asm] = ACTIONS(1275), - [anon_sym___asm__] = ACTIONS(1275), - [sym_number_literal] = ACTIONS(1277), - [anon_sym_L_SQUOTE] = ACTIONS(1277), - [anon_sym_u_SQUOTE] = ACTIONS(1277), - [anon_sym_U_SQUOTE] = ACTIONS(1277), - [anon_sym_u8_SQUOTE] = ACTIONS(1277), - [anon_sym_SQUOTE] = ACTIONS(1277), - [anon_sym_L_DQUOTE] = ACTIONS(1277), - [anon_sym_u_DQUOTE] = ACTIONS(1277), - [anon_sym_U_DQUOTE] = ACTIONS(1277), - [anon_sym_u8_DQUOTE] = ACTIONS(1277), - [anon_sym_DQUOTE] = ACTIONS(1277), - [sym_true] = ACTIONS(1275), - [sym_false] = ACTIONS(1275), - [anon_sym_NULL] = ACTIONS(1275), - [anon_sym_nullptr] = ACTIONS(1275), + [305] = { + [sym_identifier] = ACTIONS(1347), + [aux_sym_preproc_include_token1] = ACTIONS(1347), + [aux_sym_preproc_def_token1] = ACTIONS(1347), + [aux_sym_preproc_if_token1] = ACTIONS(1347), + [aux_sym_preproc_if_token2] = ACTIONS(1347), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1347), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1347), + [sym_preproc_directive] = ACTIONS(1347), + [anon_sym_LPAREN2] = ACTIONS(1349), + [anon_sym_BANG] = ACTIONS(1349), + [anon_sym_TILDE] = ACTIONS(1349), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_STAR] = ACTIONS(1349), + [anon_sym_AMP] = ACTIONS(1349), + [anon_sym_SEMI] = ACTIONS(1349), + [anon_sym___extension__] = ACTIONS(1347), + [anon_sym_typedef] = ACTIONS(1347), + [anon_sym_extern] = ACTIONS(1347), + [anon_sym___attribute__] = ACTIONS(1347), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1349), + [anon_sym___declspec] = ACTIONS(1347), + [anon_sym___cdecl] = ACTIONS(1347), + [anon_sym___clrcall] = ACTIONS(1347), + [anon_sym___stdcall] = ACTIONS(1347), + [anon_sym___fastcall] = ACTIONS(1347), + [anon_sym___thiscall] = ACTIONS(1347), + [anon_sym___vectorcall] = ACTIONS(1347), + [anon_sym_LBRACE] = ACTIONS(1349), + [anon_sym_signed] = ACTIONS(1347), + [anon_sym_unsigned] = ACTIONS(1347), + [anon_sym_long] = ACTIONS(1347), + [anon_sym_short] = ACTIONS(1347), + [anon_sym_static] = ACTIONS(1347), + [anon_sym_auto] = ACTIONS(1347), + [anon_sym_register] = ACTIONS(1347), + [anon_sym_inline] = ACTIONS(1347), + [anon_sym___inline] = ACTIONS(1347), + [anon_sym___inline__] = ACTIONS(1347), + [anon_sym___forceinline] = ACTIONS(1347), + [anon_sym_thread_local] = ACTIONS(1347), + [anon_sym___thread] = ACTIONS(1347), + [anon_sym_const] = ACTIONS(1347), + [anon_sym_constexpr] = ACTIONS(1347), + [anon_sym_volatile] = ACTIONS(1347), + [anon_sym_restrict] = ACTIONS(1347), + [anon_sym___restrict__] = ACTIONS(1347), + [anon_sym__Atomic] = ACTIONS(1347), + [anon_sym__Noreturn] = ACTIONS(1347), + [anon_sym_noreturn] = ACTIONS(1347), + [anon_sym_alignas] = ACTIONS(1347), + [anon_sym__Alignas] = ACTIONS(1347), + [sym_primitive_type] = ACTIONS(1347), + [anon_sym_enum] = ACTIONS(1347), + [anon_sym_struct] = ACTIONS(1347), + [anon_sym_union] = ACTIONS(1347), + [anon_sym_if] = ACTIONS(1347), + [anon_sym_switch] = ACTIONS(1347), + [anon_sym_case] = ACTIONS(1347), + [anon_sym_default] = ACTIONS(1347), + [anon_sym_while] = ACTIONS(1347), + [anon_sym_do] = ACTIONS(1347), + [anon_sym_for] = ACTIONS(1347), + [anon_sym_return] = ACTIONS(1347), + [anon_sym_break] = ACTIONS(1347), + [anon_sym_continue] = ACTIONS(1347), + [anon_sym_goto] = ACTIONS(1347), + [anon_sym___try] = ACTIONS(1347), + [anon_sym___leave] = ACTIONS(1347), + [anon_sym_DASH_DASH] = ACTIONS(1349), + [anon_sym_PLUS_PLUS] = ACTIONS(1349), + [anon_sym_sizeof] = ACTIONS(1347), + [anon_sym___alignof__] = ACTIONS(1347), + [anon_sym___alignof] = ACTIONS(1347), + [anon_sym__alignof] = ACTIONS(1347), + [anon_sym_alignof] = ACTIONS(1347), + [anon_sym__Alignof] = ACTIONS(1347), + [anon_sym_offsetof] = ACTIONS(1347), + [anon_sym__Generic] = ACTIONS(1347), + [anon_sym_asm] = ACTIONS(1347), + [anon_sym___asm__] = ACTIONS(1347), + [sym_number_literal] = ACTIONS(1349), + [anon_sym_L_SQUOTE] = ACTIONS(1349), + [anon_sym_u_SQUOTE] = ACTIONS(1349), + [anon_sym_U_SQUOTE] = ACTIONS(1349), + [anon_sym_u8_SQUOTE] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1349), + [anon_sym_L_DQUOTE] = ACTIONS(1349), + [anon_sym_u_DQUOTE] = ACTIONS(1349), + [anon_sym_U_DQUOTE] = ACTIONS(1349), + [anon_sym_u8_DQUOTE] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(1349), + [sym_true] = ACTIONS(1347), + [sym_false] = ACTIONS(1347), + [anon_sym_NULL] = ACTIONS(1347), + [anon_sym_nullptr] = ACTIONS(1347), [sym_comment] = ACTIONS(3), }, - [354] = { - [sym_identifier] = ACTIONS(1295), - [aux_sym_preproc_include_token1] = ACTIONS(1295), - [aux_sym_preproc_def_token1] = ACTIONS(1295), - [aux_sym_preproc_if_token1] = ACTIONS(1295), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1295), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1295), - [sym_preproc_directive] = ACTIONS(1295), - [anon_sym_LPAREN2] = ACTIONS(1297), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_TILDE] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_PLUS] = ACTIONS(1295), - [anon_sym_STAR] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1297), - [anon_sym_SEMI] = ACTIONS(1297), - [anon_sym___extension__] = ACTIONS(1295), - [anon_sym_typedef] = ACTIONS(1295), - [anon_sym_extern] = ACTIONS(1295), - [anon_sym___attribute__] = ACTIONS(1295), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1297), - [anon_sym___declspec] = ACTIONS(1295), - [anon_sym___cdecl] = ACTIONS(1295), - [anon_sym___clrcall] = ACTIONS(1295), - [anon_sym___stdcall] = ACTIONS(1295), - [anon_sym___fastcall] = ACTIONS(1295), - [anon_sym___thiscall] = ACTIONS(1295), - [anon_sym___vectorcall] = ACTIONS(1295), - [anon_sym_LBRACE] = ACTIONS(1297), - [anon_sym_RBRACE] = ACTIONS(1297), - [anon_sym_signed] = ACTIONS(1295), - [anon_sym_unsigned] = ACTIONS(1295), - [anon_sym_long] = ACTIONS(1295), - [anon_sym_short] = ACTIONS(1295), - [anon_sym_static] = ACTIONS(1295), - [anon_sym_auto] = ACTIONS(1295), - [anon_sym_register] = ACTIONS(1295), - [anon_sym_inline] = ACTIONS(1295), - [anon_sym___inline] = ACTIONS(1295), - [anon_sym___inline__] = ACTIONS(1295), - [anon_sym___forceinline] = ACTIONS(1295), - [anon_sym_thread_local] = ACTIONS(1295), - [anon_sym___thread] = ACTIONS(1295), - [anon_sym_const] = ACTIONS(1295), - [anon_sym_constexpr] = ACTIONS(1295), - [anon_sym_volatile] = ACTIONS(1295), - [anon_sym_restrict] = ACTIONS(1295), - [anon_sym___restrict__] = ACTIONS(1295), - [anon_sym__Atomic] = ACTIONS(1295), - [anon_sym__Noreturn] = ACTIONS(1295), - [anon_sym_noreturn] = ACTIONS(1295), - [anon_sym_alignas] = ACTIONS(1295), - [anon_sym__Alignas] = ACTIONS(1295), - [sym_primitive_type] = ACTIONS(1295), - [anon_sym_enum] = ACTIONS(1295), - [anon_sym_struct] = ACTIONS(1295), - [anon_sym_union] = ACTIONS(1295), - [anon_sym_if] = ACTIONS(1295), - [anon_sym_switch] = ACTIONS(1295), - [anon_sym_case] = ACTIONS(1295), - [anon_sym_default] = ACTIONS(1295), - [anon_sym_while] = ACTIONS(1295), - [anon_sym_do] = ACTIONS(1295), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_return] = ACTIONS(1295), - [anon_sym_break] = ACTIONS(1295), - [anon_sym_continue] = ACTIONS(1295), - [anon_sym_goto] = ACTIONS(1295), - [anon_sym___try] = ACTIONS(1295), - [anon_sym___leave] = ACTIONS(1295), - [anon_sym_DASH_DASH] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1297), - [anon_sym_sizeof] = ACTIONS(1295), - [anon_sym___alignof__] = ACTIONS(1295), - [anon_sym___alignof] = ACTIONS(1295), - [anon_sym__alignof] = ACTIONS(1295), - [anon_sym_alignof] = ACTIONS(1295), - [anon_sym__Alignof] = ACTIONS(1295), - [anon_sym_offsetof] = ACTIONS(1295), - [anon_sym__Generic] = ACTIONS(1295), - [anon_sym_asm] = ACTIONS(1295), - [anon_sym___asm__] = ACTIONS(1295), - [sym_number_literal] = ACTIONS(1297), - [anon_sym_L_SQUOTE] = ACTIONS(1297), - [anon_sym_u_SQUOTE] = ACTIONS(1297), - [anon_sym_U_SQUOTE] = ACTIONS(1297), - [anon_sym_u8_SQUOTE] = ACTIONS(1297), - [anon_sym_SQUOTE] = ACTIONS(1297), - [anon_sym_L_DQUOTE] = ACTIONS(1297), - [anon_sym_u_DQUOTE] = ACTIONS(1297), - [anon_sym_U_DQUOTE] = ACTIONS(1297), - [anon_sym_u8_DQUOTE] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1297), - [sym_true] = ACTIONS(1295), - [sym_false] = ACTIONS(1295), - [anon_sym_NULL] = ACTIONS(1295), - [anon_sym_nullptr] = ACTIONS(1295), + [306] = { + [sym_identifier] = ACTIONS(1291), + [aux_sym_preproc_include_token1] = ACTIONS(1291), + [aux_sym_preproc_def_token1] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1291), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1291), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1291), + [sym_preproc_directive] = ACTIONS(1291), + [anon_sym_LPAREN2] = ACTIONS(1293), + [anon_sym_BANG] = ACTIONS(1293), + [anon_sym_TILDE] = ACTIONS(1293), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_AMP] = ACTIONS(1293), + [anon_sym_SEMI] = ACTIONS(1293), + [anon_sym___extension__] = ACTIONS(1291), + [anon_sym_typedef] = ACTIONS(1291), + [anon_sym_extern] = ACTIONS(1291), + [anon_sym___attribute__] = ACTIONS(1291), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1293), + [anon_sym___declspec] = ACTIONS(1291), + [anon_sym___cdecl] = ACTIONS(1291), + [anon_sym___clrcall] = ACTIONS(1291), + [anon_sym___stdcall] = ACTIONS(1291), + [anon_sym___fastcall] = ACTIONS(1291), + [anon_sym___thiscall] = ACTIONS(1291), + [anon_sym___vectorcall] = ACTIONS(1291), + [anon_sym_LBRACE] = ACTIONS(1293), + [anon_sym_RBRACE] = ACTIONS(1293), + [anon_sym_signed] = ACTIONS(1291), + [anon_sym_unsigned] = ACTIONS(1291), + [anon_sym_long] = ACTIONS(1291), + [anon_sym_short] = ACTIONS(1291), + [anon_sym_static] = ACTIONS(1291), + [anon_sym_auto] = ACTIONS(1291), + [anon_sym_register] = ACTIONS(1291), + [anon_sym_inline] = ACTIONS(1291), + [anon_sym___inline] = ACTIONS(1291), + [anon_sym___inline__] = ACTIONS(1291), + [anon_sym___forceinline] = ACTIONS(1291), + [anon_sym_thread_local] = ACTIONS(1291), + [anon_sym___thread] = ACTIONS(1291), + [anon_sym_const] = ACTIONS(1291), + [anon_sym_constexpr] = ACTIONS(1291), + [anon_sym_volatile] = ACTIONS(1291), + [anon_sym_restrict] = ACTIONS(1291), + [anon_sym___restrict__] = ACTIONS(1291), + [anon_sym__Atomic] = ACTIONS(1291), + [anon_sym__Noreturn] = ACTIONS(1291), + [anon_sym_noreturn] = ACTIONS(1291), + [anon_sym_alignas] = ACTIONS(1291), + [anon_sym__Alignas] = ACTIONS(1291), + [sym_primitive_type] = ACTIONS(1291), + [anon_sym_enum] = ACTIONS(1291), + [anon_sym_struct] = ACTIONS(1291), + [anon_sym_union] = ACTIONS(1291), + [anon_sym_if] = ACTIONS(1291), + [anon_sym_switch] = ACTIONS(1291), + [anon_sym_case] = ACTIONS(1291), + [anon_sym_default] = ACTIONS(1291), + [anon_sym_while] = ACTIONS(1291), + [anon_sym_do] = ACTIONS(1291), + [anon_sym_for] = ACTIONS(1291), + [anon_sym_return] = ACTIONS(1291), + [anon_sym_break] = ACTIONS(1291), + [anon_sym_continue] = ACTIONS(1291), + [anon_sym_goto] = ACTIONS(1291), + [anon_sym___try] = ACTIONS(1291), + [anon_sym___leave] = ACTIONS(1291), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_sizeof] = ACTIONS(1291), + [anon_sym___alignof__] = ACTIONS(1291), + [anon_sym___alignof] = ACTIONS(1291), + [anon_sym__alignof] = ACTIONS(1291), + [anon_sym_alignof] = ACTIONS(1291), + [anon_sym__Alignof] = ACTIONS(1291), + [anon_sym_offsetof] = ACTIONS(1291), + [anon_sym__Generic] = ACTIONS(1291), + [anon_sym_asm] = ACTIONS(1291), + [anon_sym___asm__] = ACTIONS(1291), + [sym_number_literal] = ACTIONS(1293), + [anon_sym_L_SQUOTE] = ACTIONS(1293), + [anon_sym_u_SQUOTE] = ACTIONS(1293), + [anon_sym_U_SQUOTE] = ACTIONS(1293), + [anon_sym_u8_SQUOTE] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1293), + [anon_sym_L_DQUOTE] = ACTIONS(1293), + [anon_sym_u_DQUOTE] = ACTIONS(1293), + [anon_sym_U_DQUOTE] = ACTIONS(1293), + [anon_sym_u8_DQUOTE] = ACTIONS(1293), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_true] = ACTIONS(1291), + [sym_false] = ACTIONS(1291), + [anon_sym_NULL] = ACTIONS(1291), + [anon_sym_nullptr] = ACTIONS(1291), [sym_comment] = ACTIONS(3), }, - [355] = { - [sym_identifier] = ACTIONS(1335), - [aux_sym_preproc_include_token1] = ACTIONS(1335), - [aux_sym_preproc_def_token1] = ACTIONS(1335), - [aux_sym_preproc_if_token1] = ACTIONS(1335), - [aux_sym_preproc_if_token2] = ACTIONS(1335), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1335), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1335), - [sym_preproc_directive] = ACTIONS(1335), - [anon_sym_LPAREN2] = ACTIONS(1337), - [anon_sym_BANG] = ACTIONS(1337), - [anon_sym_TILDE] = ACTIONS(1337), - [anon_sym_DASH] = ACTIONS(1335), - [anon_sym_PLUS] = ACTIONS(1335), - [anon_sym_STAR] = ACTIONS(1337), - [anon_sym_AMP] = ACTIONS(1337), - [anon_sym_SEMI] = ACTIONS(1337), - [anon_sym___extension__] = ACTIONS(1335), - [anon_sym_typedef] = ACTIONS(1335), - [anon_sym_extern] = ACTIONS(1335), - [anon_sym___attribute__] = ACTIONS(1335), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1337), - [anon_sym___declspec] = ACTIONS(1335), - [anon_sym___cdecl] = ACTIONS(1335), - [anon_sym___clrcall] = ACTIONS(1335), - [anon_sym___stdcall] = ACTIONS(1335), - [anon_sym___fastcall] = ACTIONS(1335), - [anon_sym___thiscall] = ACTIONS(1335), - [anon_sym___vectorcall] = ACTIONS(1335), - [anon_sym_LBRACE] = ACTIONS(1337), - [anon_sym_signed] = ACTIONS(1335), - [anon_sym_unsigned] = ACTIONS(1335), - [anon_sym_long] = ACTIONS(1335), - [anon_sym_short] = ACTIONS(1335), - [anon_sym_static] = ACTIONS(1335), - [anon_sym_auto] = ACTIONS(1335), - [anon_sym_register] = ACTIONS(1335), - [anon_sym_inline] = ACTIONS(1335), - [anon_sym___inline] = ACTIONS(1335), - [anon_sym___inline__] = ACTIONS(1335), - [anon_sym___forceinline] = ACTIONS(1335), - [anon_sym_thread_local] = ACTIONS(1335), - [anon_sym___thread] = ACTIONS(1335), - [anon_sym_const] = ACTIONS(1335), - [anon_sym_constexpr] = ACTIONS(1335), - [anon_sym_volatile] = ACTIONS(1335), - [anon_sym_restrict] = ACTIONS(1335), - [anon_sym___restrict__] = ACTIONS(1335), - [anon_sym__Atomic] = ACTIONS(1335), - [anon_sym__Noreturn] = ACTIONS(1335), - [anon_sym_noreturn] = ACTIONS(1335), - [anon_sym_alignas] = ACTIONS(1335), - [anon_sym__Alignas] = ACTIONS(1335), - [sym_primitive_type] = ACTIONS(1335), - [anon_sym_enum] = ACTIONS(1335), - [anon_sym_struct] = ACTIONS(1335), - [anon_sym_union] = ACTIONS(1335), - [anon_sym_if] = ACTIONS(1335), - [anon_sym_switch] = ACTIONS(1335), - [anon_sym_case] = ACTIONS(1335), - [anon_sym_default] = ACTIONS(1335), - [anon_sym_while] = ACTIONS(1335), - [anon_sym_do] = ACTIONS(1335), - [anon_sym_for] = ACTIONS(1335), - [anon_sym_return] = ACTIONS(1335), - [anon_sym_break] = ACTIONS(1335), - [anon_sym_continue] = ACTIONS(1335), - [anon_sym_goto] = ACTIONS(1335), - [anon_sym___try] = ACTIONS(1335), - [anon_sym___leave] = ACTIONS(1335), - [anon_sym_DASH_DASH] = ACTIONS(1337), - [anon_sym_PLUS_PLUS] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(1335), - [anon_sym___alignof__] = ACTIONS(1335), - [anon_sym___alignof] = ACTIONS(1335), - [anon_sym__alignof] = ACTIONS(1335), - [anon_sym_alignof] = ACTIONS(1335), - [anon_sym__Alignof] = ACTIONS(1335), - [anon_sym_offsetof] = ACTIONS(1335), - [anon_sym__Generic] = ACTIONS(1335), - [anon_sym_asm] = ACTIONS(1335), - [anon_sym___asm__] = ACTIONS(1335), - [sym_number_literal] = ACTIONS(1337), - [anon_sym_L_SQUOTE] = ACTIONS(1337), - [anon_sym_u_SQUOTE] = ACTIONS(1337), - [anon_sym_U_SQUOTE] = ACTIONS(1337), - [anon_sym_u8_SQUOTE] = ACTIONS(1337), - [anon_sym_SQUOTE] = ACTIONS(1337), - [anon_sym_L_DQUOTE] = ACTIONS(1337), - [anon_sym_u_DQUOTE] = ACTIONS(1337), - [anon_sym_U_DQUOTE] = ACTIONS(1337), - [anon_sym_u8_DQUOTE] = ACTIONS(1337), - [anon_sym_DQUOTE] = ACTIONS(1337), - [sym_true] = ACTIONS(1335), - [sym_false] = ACTIONS(1335), - [anon_sym_NULL] = ACTIONS(1335), - [anon_sym_nullptr] = ACTIONS(1335), + [307] = { + [sym_identifier] = ACTIONS(1331), + [aux_sym_preproc_include_token1] = ACTIONS(1331), + [aux_sym_preproc_def_token1] = ACTIONS(1331), + [aux_sym_preproc_if_token1] = ACTIONS(1331), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1331), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1331), + [sym_preproc_directive] = ACTIONS(1331), + [anon_sym_LPAREN2] = ACTIONS(1333), + [anon_sym_BANG] = ACTIONS(1333), + [anon_sym_TILDE] = ACTIONS(1333), + [anon_sym_DASH] = ACTIONS(1331), + [anon_sym_PLUS] = ACTIONS(1331), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_AMP] = ACTIONS(1333), + [anon_sym_SEMI] = ACTIONS(1333), + [anon_sym___extension__] = ACTIONS(1331), + [anon_sym_typedef] = ACTIONS(1331), + [anon_sym_extern] = ACTIONS(1331), + [anon_sym___attribute__] = ACTIONS(1331), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1333), + [anon_sym___declspec] = ACTIONS(1331), + [anon_sym___cdecl] = ACTIONS(1331), + [anon_sym___clrcall] = ACTIONS(1331), + [anon_sym___stdcall] = ACTIONS(1331), + [anon_sym___fastcall] = ACTIONS(1331), + [anon_sym___thiscall] = ACTIONS(1331), + [anon_sym___vectorcall] = ACTIONS(1331), + [anon_sym_LBRACE] = ACTIONS(1333), + [anon_sym_RBRACE] = ACTIONS(1333), + [anon_sym_signed] = ACTIONS(1331), + [anon_sym_unsigned] = ACTIONS(1331), + [anon_sym_long] = ACTIONS(1331), + [anon_sym_short] = ACTIONS(1331), + [anon_sym_static] = ACTIONS(1331), + [anon_sym_auto] = ACTIONS(1331), + [anon_sym_register] = ACTIONS(1331), + [anon_sym_inline] = ACTIONS(1331), + [anon_sym___inline] = ACTIONS(1331), + [anon_sym___inline__] = ACTIONS(1331), + [anon_sym___forceinline] = ACTIONS(1331), + [anon_sym_thread_local] = ACTIONS(1331), + [anon_sym___thread] = ACTIONS(1331), + [anon_sym_const] = ACTIONS(1331), + [anon_sym_constexpr] = ACTIONS(1331), + [anon_sym_volatile] = ACTIONS(1331), + [anon_sym_restrict] = ACTIONS(1331), + [anon_sym___restrict__] = ACTIONS(1331), + [anon_sym__Atomic] = ACTIONS(1331), + [anon_sym__Noreturn] = ACTIONS(1331), + [anon_sym_noreturn] = ACTIONS(1331), + [anon_sym_alignas] = ACTIONS(1331), + [anon_sym__Alignas] = 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_case] = ACTIONS(1331), + [anon_sym_default] = 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___try] = ACTIONS(1331), + [anon_sym___leave] = ACTIONS(1331), + [anon_sym_DASH_DASH] = ACTIONS(1333), + [anon_sym_PLUS_PLUS] = ACTIONS(1333), + [anon_sym_sizeof] = ACTIONS(1331), + [anon_sym___alignof__] = ACTIONS(1331), + [anon_sym___alignof] = ACTIONS(1331), + [anon_sym__alignof] = ACTIONS(1331), + [anon_sym_alignof] = ACTIONS(1331), + [anon_sym__Alignof] = ACTIONS(1331), + [anon_sym_offsetof] = ACTIONS(1331), + [anon_sym__Generic] = ACTIONS(1331), + [anon_sym_asm] = ACTIONS(1331), + [anon_sym___asm__] = ACTIONS(1331), + [sym_number_literal] = ACTIONS(1333), + [anon_sym_L_SQUOTE] = ACTIONS(1333), + [anon_sym_u_SQUOTE] = ACTIONS(1333), + [anon_sym_U_SQUOTE] = ACTIONS(1333), + [anon_sym_u8_SQUOTE] = ACTIONS(1333), + [anon_sym_SQUOTE] = ACTIONS(1333), + [anon_sym_L_DQUOTE] = ACTIONS(1333), + [anon_sym_u_DQUOTE] = ACTIONS(1333), + [anon_sym_U_DQUOTE] = ACTIONS(1333), + [anon_sym_u8_DQUOTE] = ACTIONS(1333), + [anon_sym_DQUOTE] = ACTIONS(1333), + [sym_true] = ACTIONS(1331), + [sym_false] = ACTIONS(1331), + [anon_sym_NULL] = ACTIONS(1331), + [anon_sym_nullptr] = ACTIONS(1331), [sym_comment] = ACTIONS(3), }, - [356] = { - [sym_identifier] = ACTIONS(1283), - [aux_sym_preproc_include_token1] = ACTIONS(1283), - [aux_sym_preproc_def_token1] = ACTIONS(1283), - [aux_sym_preproc_if_token1] = ACTIONS(1283), - [aux_sym_preproc_if_token2] = ACTIONS(1283), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1283), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1283), - [sym_preproc_directive] = ACTIONS(1283), - [anon_sym_LPAREN2] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym___extension__] = ACTIONS(1283), - [anon_sym_typedef] = ACTIONS(1283), - [anon_sym_extern] = ACTIONS(1283), - [anon_sym___attribute__] = ACTIONS(1283), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1285), - [anon_sym___declspec] = ACTIONS(1283), - [anon_sym___cdecl] = ACTIONS(1283), - [anon_sym___clrcall] = ACTIONS(1283), - [anon_sym___stdcall] = ACTIONS(1283), - [anon_sym___fastcall] = ACTIONS(1283), - [anon_sym___thiscall] = ACTIONS(1283), - [anon_sym___vectorcall] = ACTIONS(1283), - [anon_sym_LBRACE] = ACTIONS(1285), - [anon_sym_signed] = ACTIONS(1283), - [anon_sym_unsigned] = ACTIONS(1283), - [anon_sym_long] = ACTIONS(1283), - [anon_sym_short] = ACTIONS(1283), - [anon_sym_static] = ACTIONS(1283), - [anon_sym_auto] = ACTIONS(1283), - [anon_sym_register] = ACTIONS(1283), - [anon_sym_inline] = ACTIONS(1283), - [anon_sym___inline] = ACTIONS(1283), - [anon_sym___inline__] = ACTIONS(1283), - [anon_sym___forceinline] = ACTIONS(1283), - [anon_sym_thread_local] = ACTIONS(1283), - [anon_sym___thread] = ACTIONS(1283), - [anon_sym_const] = ACTIONS(1283), - [anon_sym_constexpr] = ACTIONS(1283), - [anon_sym_volatile] = ACTIONS(1283), - [anon_sym_restrict] = ACTIONS(1283), - [anon_sym___restrict__] = ACTIONS(1283), - [anon_sym__Atomic] = ACTIONS(1283), - [anon_sym__Noreturn] = ACTIONS(1283), - [anon_sym_noreturn] = ACTIONS(1283), - [anon_sym_alignas] = ACTIONS(1283), - [anon_sym__Alignas] = ACTIONS(1283), - [sym_primitive_type] = ACTIONS(1283), - [anon_sym_enum] = ACTIONS(1283), - [anon_sym_struct] = ACTIONS(1283), - [anon_sym_union] = ACTIONS(1283), - [anon_sym_if] = ACTIONS(1283), - [anon_sym_switch] = ACTIONS(1283), - [anon_sym_case] = ACTIONS(1283), - [anon_sym_default] = ACTIONS(1283), - [anon_sym_while] = ACTIONS(1283), - [anon_sym_do] = ACTIONS(1283), - [anon_sym_for] = ACTIONS(1283), - [anon_sym_return] = ACTIONS(1283), - [anon_sym_break] = ACTIONS(1283), - [anon_sym_continue] = ACTIONS(1283), - [anon_sym_goto] = ACTIONS(1283), - [anon_sym___try] = ACTIONS(1283), - [anon_sym___leave] = ACTIONS(1283), - [anon_sym_DASH_DASH] = ACTIONS(1285), - [anon_sym_PLUS_PLUS] = ACTIONS(1285), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym___alignof__] = ACTIONS(1283), - [anon_sym___alignof] = ACTIONS(1283), - [anon_sym__alignof] = ACTIONS(1283), - [anon_sym_alignof] = ACTIONS(1283), - [anon_sym__Alignof] = ACTIONS(1283), - [anon_sym_offsetof] = ACTIONS(1283), - [anon_sym__Generic] = ACTIONS(1283), - [anon_sym_asm] = ACTIONS(1283), - [anon_sym___asm__] = ACTIONS(1283), - [sym_number_literal] = ACTIONS(1285), - [anon_sym_L_SQUOTE] = ACTIONS(1285), - [anon_sym_u_SQUOTE] = ACTIONS(1285), - [anon_sym_U_SQUOTE] = ACTIONS(1285), - [anon_sym_u8_SQUOTE] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_L_DQUOTE] = ACTIONS(1285), - [anon_sym_u_DQUOTE] = ACTIONS(1285), - [anon_sym_U_DQUOTE] = ACTIONS(1285), - [anon_sym_u8_DQUOTE] = ACTIONS(1285), - [anon_sym_DQUOTE] = ACTIONS(1285), - [sym_true] = ACTIONS(1283), - [sym_false] = ACTIONS(1283), - [anon_sym_NULL] = ACTIONS(1283), - [anon_sym_nullptr] = ACTIONS(1283), + [308] = { + [sym_identifier] = ACTIONS(1259), + [aux_sym_preproc_include_token1] = ACTIONS(1259), + [aux_sym_preproc_def_token1] = ACTIONS(1259), + [aux_sym_preproc_if_token1] = ACTIONS(1259), + [aux_sym_preproc_if_token2] = ACTIONS(1259), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1259), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1259), + [sym_preproc_directive] = ACTIONS(1259), + [anon_sym_LPAREN2] = ACTIONS(1261), + [anon_sym_BANG] = ACTIONS(1261), + [anon_sym_TILDE] = ACTIONS(1261), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1261), + [anon_sym_AMP] = ACTIONS(1261), + [anon_sym_SEMI] = ACTIONS(1261), + [anon_sym___extension__] = ACTIONS(1259), + [anon_sym_typedef] = ACTIONS(1259), + [anon_sym_extern] = ACTIONS(1259), + [anon_sym___attribute__] = ACTIONS(1259), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1261), + [anon_sym___declspec] = ACTIONS(1259), + [anon_sym___cdecl] = ACTIONS(1259), + [anon_sym___clrcall] = ACTIONS(1259), + [anon_sym___stdcall] = ACTIONS(1259), + [anon_sym___fastcall] = ACTIONS(1259), + [anon_sym___thiscall] = ACTIONS(1259), + [anon_sym___vectorcall] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_signed] = ACTIONS(1259), + [anon_sym_unsigned] = ACTIONS(1259), + [anon_sym_long] = ACTIONS(1259), + [anon_sym_short] = ACTIONS(1259), + [anon_sym_static] = ACTIONS(1259), + [anon_sym_auto] = ACTIONS(1259), + [anon_sym_register] = ACTIONS(1259), + [anon_sym_inline] = ACTIONS(1259), + [anon_sym___inline] = ACTIONS(1259), + [anon_sym___inline__] = ACTIONS(1259), + [anon_sym___forceinline] = ACTIONS(1259), + [anon_sym_thread_local] = ACTIONS(1259), + [anon_sym___thread] = ACTIONS(1259), + [anon_sym_const] = ACTIONS(1259), + [anon_sym_constexpr] = ACTIONS(1259), + [anon_sym_volatile] = ACTIONS(1259), + [anon_sym_restrict] = ACTIONS(1259), + [anon_sym___restrict__] = ACTIONS(1259), + [anon_sym__Atomic] = ACTIONS(1259), + [anon_sym__Noreturn] = ACTIONS(1259), + [anon_sym_noreturn] = ACTIONS(1259), + [anon_sym_alignas] = ACTIONS(1259), + [anon_sym__Alignas] = ACTIONS(1259), + [sym_primitive_type] = ACTIONS(1259), + [anon_sym_enum] = ACTIONS(1259), + [anon_sym_struct] = ACTIONS(1259), + [anon_sym_union] = ACTIONS(1259), + [anon_sym_if] = ACTIONS(1259), + [anon_sym_switch] = ACTIONS(1259), + [anon_sym_case] = ACTIONS(1259), + [anon_sym_default] = ACTIONS(1259), + [anon_sym_while] = ACTIONS(1259), + [anon_sym_do] = ACTIONS(1259), + [anon_sym_for] = ACTIONS(1259), + [anon_sym_return] = ACTIONS(1259), + [anon_sym_break] = ACTIONS(1259), + [anon_sym_continue] = ACTIONS(1259), + [anon_sym_goto] = ACTIONS(1259), + [anon_sym___try] = ACTIONS(1259), + [anon_sym___leave] = ACTIONS(1259), + [anon_sym_DASH_DASH] = ACTIONS(1261), + [anon_sym_PLUS_PLUS] = ACTIONS(1261), + [anon_sym_sizeof] = ACTIONS(1259), + [anon_sym___alignof__] = ACTIONS(1259), + [anon_sym___alignof] = ACTIONS(1259), + [anon_sym__alignof] = ACTIONS(1259), + [anon_sym_alignof] = ACTIONS(1259), + [anon_sym__Alignof] = ACTIONS(1259), + [anon_sym_offsetof] = ACTIONS(1259), + [anon_sym__Generic] = ACTIONS(1259), + [anon_sym_asm] = ACTIONS(1259), + [anon_sym___asm__] = ACTIONS(1259), + [sym_number_literal] = ACTIONS(1261), + [anon_sym_L_SQUOTE] = ACTIONS(1261), + [anon_sym_u_SQUOTE] = ACTIONS(1261), + [anon_sym_U_SQUOTE] = ACTIONS(1261), + [anon_sym_u8_SQUOTE] = ACTIONS(1261), + [anon_sym_SQUOTE] = ACTIONS(1261), + [anon_sym_L_DQUOTE] = ACTIONS(1261), + [anon_sym_u_DQUOTE] = ACTIONS(1261), + [anon_sym_U_DQUOTE] = ACTIONS(1261), + [anon_sym_u8_DQUOTE] = ACTIONS(1261), + [anon_sym_DQUOTE] = ACTIONS(1261), + [sym_true] = ACTIONS(1259), + [sym_false] = ACTIONS(1259), + [anon_sym_NULL] = ACTIONS(1259), + [anon_sym_nullptr] = ACTIONS(1259), [sym_comment] = ACTIONS(3), }, - [357] = { - [sym_identifier] = ACTIONS(1351), - [aux_sym_preproc_include_token1] = ACTIONS(1351), - [aux_sym_preproc_def_token1] = ACTIONS(1351), - [aux_sym_preproc_if_token1] = ACTIONS(1351), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1351), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1351), - [sym_preproc_directive] = ACTIONS(1351), - [anon_sym_LPAREN2] = ACTIONS(1353), - [anon_sym_BANG] = ACTIONS(1353), - [anon_sym_TILDE] = ACTIONS(1353), - [anon_sym_DASH] = ACTIONS(1351), - [anon_sym_PLUS] = ACTIONS(1351), - [anon_sym_STAR] = ACTIONS(1353), - [anon_sym_AMP] = ACTIONS(1353), - [anon_sym_SEMI] = ACTIONS(1353), - [anon_sym___extension__] = ACTIONS(1351), - [anon_sym_typedef] = ACTIONS(1351), - [anon_sym_extern] = ACTIONS(1351), - [anon_sym___attribute__] = ACTIONS(1351), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1353), - [anon_sym___declspec] = ACTIONS(1351), - [anon_sym___cdecl] = ACTIONS(1351), - [anon_sym___clrcall] = ACTIONS(1351), - [anon_sym___stdcall] = ACTIONS(1351), - [anon_sym___fastcall] = ACTIONS(1351), - [anon_sym___thiscall] = ACTIONS(1351), - [anon_sym___vectorcall] = ACTIONS(1351), - [anon_sym_LBRACE] = ACTIONS(1353), - [anon_sym_RBRACE] = ACTIONS(1353), - [anon_sym_signed] = ACTIONS(1351), - [anon_sym_unsigned] = ACTIONS(1351), - [anon_sym_long] = ACTIONS(1351), - [anon_sym_short] = ACTIONS(1351), - [anon_sym_static] = ACTIONS(1351), - [anon_sym_auto] = ACTIONS(1351), - [anon_sym_register] = ACTIONS(1351), - [anon_sym_inline] = ACTIONS(1351), - [anon_sym___inline] = ACTIONS(1351), - [anon_sym___inline__] = ACTIONS(1351), - [anon_sym___forceinline] = ACTIONS(1351), - [anon_sym_thread_local] = ACTIONS(1351), - [anon_sym___thread] = ACTIONS(1351), - [anon_sym_const] = ACTIONS(1351), - [anon_sym_constexpr] = ACTIONS(1351), - [anon_sym_volatile] = ACTIONS(1351), - [anon_sym_restrict] = ACTIONS(1351), - [anon_sym___restrict__] = ACTIONS(1351), - [anon_sym__Atomic] = ACTIONS(1351), - [anon_sym__Noreturn] = ACTIONS(1351), - [anon_sym_noreturn] = ACTIONS(1351), - [anon_sym_alignas] = ACTIONS(1351), - [anon_sym__Alignas] = ACTIONS(1351), - [sym_primitive_type] = ACTIONS(1351), - [anon_sym_enum] = ACTIONS(1351), - [anon_sym_struct] = ACTIONS(1351), - [anon_sym_union] = ACTIONS(1351), - [anon_sym_if] = ACTIONS(1351), - [anon_sym_switch] = ACTIONS(1351), - [anon_sym_case] = ACTIONS(1351), - [anon_sym_default] = ACTIONS(1351), - [anon_sym_while] = ACTIONS(1351), - [anon_sym_do] = ACTIONS(1351), - [anon_sym_for] = ACTIONS(1351), - [anon_sym_return] = ACTIONS(1351), - [anon_sym_break] = ACTIONS(1351), - [anon_sym_continue] = ACTIONS(1351), - [anon_sym_goto] = ACTIONS(1351), - [anon_sym___try] = ACTIONS(1351), - [anon_sym___leave] = ACTIONS(1351), - [anon_sym_DASH_DASH] = ACTIONS(1353), - [anon_sym_PLUS_PLUS] = ACTIONS(1353), - [anon_sym_sizeof] = ACTIONS(1351), - [anon_sym___alignof__] = ACTIONS(1351), - [anon_sym___alignof] = ACTIONS(1351), - [anon_sym__alignof] = ACTIONS(1351), - [anon_sym_alignof] = ACTIONS(1351), - [anon_sym__Alignof] = ACTIONS(1351), - [anon_sym_offsetof] = ACTIONS(1351), - [anon_sym__Generic] = ACTIONS(1351), - [anon_sym_asm] = ACTIONS(1351), - [anon_sym___asm__] = ACTIONS(1351), - [sym_number_literal] = ACTIONS(1353), - [anon_sym_L_SQUOTE] = ACTIONS(1353), - [anon_sym_u_SQUOTE] = ACTIONS(1353), - [anon_sym_U_SQUOTE] = ACTIONS(1353), - [anon_sym_u8_SQUOTE] = ACTIONS(1353), - [anon_sym_SQUOTE] = ACTIONS(1353), - [anon_sym_L_DQUOTE] = ACTIONS(1353), - [anon_sym_u_DQUOTE] = ACTIONS(1353), - [anon_sym_U_DQUOTE] = ACTIONS(1353), - [anon_sym_u8_DQUOTE] = ACTIONS(1353), - [anon_sym_DQUOTE] = ACTIONS(1353), - [sym_true] = ACTIONS(1351), - [sym_false] = ACTIONS(1351), - [anon_sym_NULL] = ACTIONS(1351), - [anon_sym_nullptr] = ACTIONS(1351), + [309] = { + [sym_identifier] = ACTIONS(1255), + [aux_sym_preproc_include_token1] = ACTIONS(1255), + [aux_sym_preproc_def_token1] = ACTIONS(1255), + [aux_sym_preproc_if_token1] = ACTIONS(1255), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1255), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1255), + [sym_preproc_directive] = ACTIONS(1255), + [anon_sym_LPAREN2] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(1257), + [anon_sym_TILDE] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1255), + [anon_sym_STAR] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1257), + [anon_sym_SEMI] = ACTIONS(1257), + [anon_sym___extension__] = ACTIONS(1255), + [anon_sym_typedef] = ACTIONS(1255), + [anon_sym_extern] = ACTIONS(1255), + [anon_sym___attribute__] = ACTIONS(1255), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1257), + [anon_sym___declspec] = ACTIONS(1255), + [anon_sym___cdecl] = ACTIONS(1255), + [anon_sym___clrcall] = ACTIONS(1255), + [anon_sym___stdcall] = ACTIONS(1255), + [anon_sym___fastcall] = ACTIONS(1255), + [anon_sym___thiscall] = ACTIONS(1255), + [anon_sym___vectorcall] = ACTIONS(1255), + [anon_sym_LBRACE] = ACTIONS(1257), + [anon_sym_RBRACE] = ACTIONS(1257), + [anon_sym_signed] = ACTIONS(1255), + [anon_sym_unsigned] = ACTIONS(1255), + [anon_sym_long] = ACTIONS(1255), + [anon_sym_short] = ACTIONS(1255), + [anon_sym_static] = ACTIONS(1255), + [anon_sym_auto] = ACTIONS(1255), + [anon_sym_register] = ACTIONS(1255), + [anon_sym_inline] = ACTIONS(1255), + [anon_sym___inline] = ACTIONS(1255), + [anon_sym___inline__] = ACTIONS(1255), + [anon_sym___forceinline] = ACTIONS(1255), + [anon_sym_thread_local] = ACTIONS(1255), + [anon_sym___thread] = ACTIONS(1255), + [anon_sym_const] = ACTIONS(1255), + [anon_sym_constexpr] = ACTIONS(1255), + [anon_sym_volatile] = ACTIONS(1255), + [anon_sym_restrict] = ACTIONS(1255), + [anon_sym___restrict__] = ACTIONS(1255), + [anon_sym__Atomic] = ACTIONS(1255), + [anon_sym__Noreturn] = ACTIONS(1255), + [anon_sym_noreturn] = ACTIONS(1255), + [anon_sym_alignas] = ACTIONS(1255), + [anon_sym__Alignas] = ACTIONS(1255), + [sym_primitive_type] = ACTIONS(1255), + [anon_sym_enum] = ACTIONS(1255), + [anon_sym_struct] = ACTIONS(1255), + [anon_sym_union] = ACTIONS(1255), + [anon_sym_if] = ACTIONS(1255), + [anon_sym_switch] = ACTIONS(1255), + [anon_sym_case] = ACTIONS(1255), + [anon_sym_default] = ACTIONS(1255), + [anon_sym_while] = ACTIONS(1255), + [anon_sym_do] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1255), + [anon_sym_return] = ACTIONS(1255), + [anon_sym_break] = ACTIONS(1255), + [anon_sym_continue] = ACTIONS(1255), + [anon_sym_goto] = ACTIONS(1255), + [anon_sym___try] = ACTIONS(1255), + [anon_sym___leave] = ACTIONS(1255), + [anon_sym_DASH_DASH] = ACTIONS(1257), + [anon_sym_PLUS_PLUS] = ACTIONS(1257), + [anon_sym_sizeof] = ACTIONS(1255), + [anon_sym___alignof__] = ACTIONS(1255), + [anon_sym___alignof] = ACTIONS(1255), + [anon_sym__alignof] = ACTIONS(1255), + [anon_sym_alignof] = ACTIONS(1255), + [anon_sym__Alignof] = ACTIONS(1255), + [anon_sym_offsetof] = ACTIONS(1255), + [anon_sym__Generic] = ACTIONS(1255), + [anon_sym_asm] = ACTIONS(1255), + [anon_sym___asm__] = ACTIONS(1255), + [sym_number_literal] = ACTIONS(1257), + [anon_sym_L_SQUOTE] = ACTIONS(1257), + [anon_sym_u_SQUOTE] = ACTIONS(1257), + [anon_sym_U_SQUOTE] = ACTIONS(1257), + [anon_sym_u8_SQUOTE] = ACTIONS(1257), + [anon_sym_SQUOTE] = ACTIONS(1257), + [anon_sym_L_DQUOTE] = ACTIONS(1257), + [anon_sym_u_DQUOTE] = ACTIONS(1257), + [anon_sym_U_DQUOTE] = ACTIONS(1257), + [anon_sym_u8_DQUOTE] = ACTIONS(1257), + [anon_sym_DQUOTE] = ACTIONS(1257), + [sym_true] = ACTIONS(1255), + [sym_false] = ACTIONS(1255), + [anon_sym_NULL] = ACTIONS(1255), + [anon_sym_nullptr] = ACTIONS(1255), [sym_comment] = ACTIONS(3), }, - [358] = { - [sym_identifier] = ACTIONS(1315), - [aux_sym_preproc_include_token1] = ACTIONS(1315), - [aux_sym_preproc_def_token1] = ACTIONS(1315), - [aux_sym_preproc_if_token1] = ACTIONS(1315), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1315), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1315), - [sym_preproc_directive] = ACTIONS(1315), - [anon_sym_LPAREN2] = ACTIONS(1317), - [anon_sym_BANG] = ACTIONS(1317), - [anon_sym_TILDE] = ACTIONS(1317), - [anon_sym_DASH] = ACTIONS(1315), - [anon_sym_PLUS] = ACTIONS(1315), - [anon_sym_STAR] = ACTIONS(1317), - [anon_sym_AMP] = ACTIONS(1317), - [anon_sym_SEMI] = ACTIONS(1317), - [anon_sym___extension__] = ACTIONS(1315), - [anon_sym_typedef] = ACTIONS(1315), - [anon_sym_extern] = ACTIONS(1315), - [anon_sym___attribute__] = ACTIONS(1315), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1317), - [anon_sym___declspec] = ACTIONS(1315), - [anon_sym___cdecl] = ACTIONS(1315), - [anon_sym___clrcall] = ACTIONS(1315), - [anon_sym___stdcall] = ACTIONS(1315), - [anon_sym___fastcall] = ACTIONS(1315), - [anon_sym___thiscall] = ACTIONS(1315), - [anon_sym___vectorcall] = ACTIONS(1315), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_RBRACE] = ACTIONS(1317), - [anon_sym_signed] = ACTIONS(1315), - [anon_sym_unsigned] = ACTIONS(1315), - [anon_sym_long] = ACTIONS(1315), - [anon_sym_short] = ACTIONS(1315), - [anon_sym_static] = ACTIONS(1315), - [anon_sym_auto] = ACTIONS(1315), - [anon_sym_register] = ACTIONS(1315), - [anon_sym_inline] = ACTIONS(1315), - [anon_sym___inline] = ACTIONS(1315), - [anon_sym___inline__] = ACTIONS(1315), - [anon_sym___forceinline] = ACTIONS(1315), - [anon_sym_thread_local] = ACTIONS(1315), - [anon_sym___thread] = ACTIONS(1315), - [anon_sym_const] = ACTIONS(1315), - [anon_sym_constexpr] = ACTIONS(1315), - [anon_sym_volatile] = ACTIONS(1315), - [anon_sym_restrict] = ACTIONS(1315), - [anon_sym___restrict__] = ACTIONS(1315), - [anon_sym__Atomic] = ACTIONS(1315), - [anon_sym__Noreturn] = ACTIONS(1315), - [anon_sym_noreturn] = ACTIONS(1315), - [anon_sym_alignas] = ACTIONS(1315), - [anon_sym__Alignas] = ACTIONS(1315), - [sym_primitive_type] = ACTIONS(1315), - [anon_sym_enum] = ACTIONS(1315), - [anon_sym_struct] = ACTIONS(1315), - [anon_sym_union] = ACTIONS(1315), - [anon_sym_if] = ACTIONS(1315), - [anon_sym_switch] = ACTIONS(1315), - [anon_sym_case] = ACTIONS(1315), - [anon_sym_default] = ACTIONS(1315), - [anon_sym_while] = ACTIONS(1315), - [anon_sym_do] = ACTIONS(1315), - [anon_sym_for] = ACTIONS(1315), - [anon_sym_return] = ACTIONS(1315), - [anon_sym_break] = ACTIONS(1315), - [anon_sym_continue] = ACTIONS(1315), - [anon_sym_goto] = ACTIONS(1315), - [anon_sym___try] = ACTIONS(1315), - [anon_sym___leave] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_PLUS_PLUS] = ACTIONS(1317), - [anon_sym_sizeof] = ACTIONS(1315), - [anon_sym___alignof__] = ACTIONS(1315), - [anon_sym___alignof] = ACTIONS(1315), - [anon_sym__alignof] = ACTIONS(1315), - [anon_sym_alignof] = ACTIONS(1315), - [anon_sym__Alignof] = ACTIONS(1315), - [anon_sym_offsetof] = ACTIONS(1315), - [anon_sym__Generic] = ACTIONS(1315), - [anon_sym_asm] = ACTIONS(1315), - [anon_sym___asm__] = ACTIONS(1315), - [sym_number_literal] = ACTIONS(1317), - [anon_sym_L_SQUOTE] = ACTIONS(1317), - [anon_sym_u_SQUOTE] = ACTIONS(1317), - [anon_sym_U_SQUOTE] = ACTIONS(1317), - [anon_sym_u8_SQUOTE] = ACTIONS(1317), - [anon_sym_SQUOTE] = ACTIONS(1317), - [anon_sym_L_DQUOTE] = ACTIONS(1317), - [anon_sym_u_DQUOTE] = ACTIONS(1317), - [anon_sym_U_DQUOTE] = ACTIONS(1317), - [anon_sym_u8_DQUOTE] = ACTIONS(1317), - [anon_sym_DQUOTE] = ACTIONS(1317), - [sym_true] = ACTIONS(1315), - [sym_false] = ACTIONS(1315), - [anon_sym_NULL] = ACTIONS(1315), - [anon_sym_nullptr] = ACTIONS(1315), + [310] = { + [sym_expression] = STATE(680), + [sym__string] = STATE(672), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(668), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(668), + [sym_call_expression] = STATE(668), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(668), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(668), + [sym_initializer_list] = STATE(676), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_identifier] = ACTIONS(1375), + [anon_sym_COMMA] = ACTIONS(1377), + [anon_sym_RPAREN] = ACTIONS(1377), + [anon_sym_LPAREN2] = ACTIONS(1377), + [anon_sym_BANG] = ACTIONS(1379), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1383), + [anon_sym_STAR] = ACTIONS(1383), + [anon_sym_SLASH] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1383), + [anon_sym_PIPE_PIPE] = ACTIONS(1377), + [anon_sym_AMP_AMP] = ACTIONS(1377), + [anon_sym_PIPE] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(1383), + [anon_sym_EQ_EQ] = ACTIONS(1377), + [anon_sym_BANG_EQ] = ACTIONS(1377), + [anon_sym_GT] = ACTIONS(1383), + [anon_sym_GT_EQ] = ACTIONS(1377), + [anon_sym_LT_EQ] = ACTIONS(1377), + [anon_sym_LT] = ACTIONS(1383), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_GT_GT] = ACTIONS(1383), + [anon_sym_SEMI] = ACTIONS(1377), + [anon_sym___attribute__] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1385), + [anon_sym_RBRACE] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_EQ] = ACTIONS(1383), + [anon_sym_COLON] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1377), + [anon_sym_STAR_EQ] = ACTIONS(1377), + [anon_sym_SLASH_EQ] = ACTIONS(1377), + [anon_sym_PERCENT_EQ] = ACTIONS(1377), + [anon_sym_PLUS_EQ] = ACTIONS(1377), + [anon_sym_DASH_EQ] = ACTIONS(1377), + [anon_sym_LT_LT_EQ] = ACTIONS(1377), + [anon_sym_GT_GT_EQ] = ACTIONS(1377), + [anon_sym_AMP_EQ] = ACTIONS(1377), + [anon_sym_CARET_EQ] = ACTIONS(1377), + [anon_sym_PIPE_EQ] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_sizeof] = ACTIONS(1387), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [anon_sym_DOT] = ACTIONS(1383), + [anon_sym_DASH_GT] = ACTIONS(1377), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [359] = { - [sym_identifier] = ACTIONS(1323), - [aux_sym_preproc_include_token1] = ACTIONS(1323), - [aux_sym_preproc_def_token1] = ACTIONS(1323), - [aux_sym_preproc_if_token1] = ACTIONS(1323), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1323), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1323), - [sym_preproc_directive] = ACTIONS(1323), - [anon_sym_LPAREN2] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1325), - [anon_sym_TILDE] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1323), - [anon_sym_PLUS] = ACTIONS(1323), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_AMP] = ACTIONS(1325), - [anon_sym_SEMI] = ACTIONS(1325), - [anon_sym___extension__] = ACTIONS(1323), - [anon_sym_typedef] = ACTIONS(1323), - [anon_sym_extern] = ACTIONS(1323), - [anon_sym___attribute__] = ACTIONS(1323), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), - [anon_sym___declspec] = ACTIONS(1323), - [anon_sym___cdecl] = ACTIONS(1323), - [anon_sym___clrcall] = ACTIONS(1323), - [anon_sym___stdcall] = ACTIONS(1323), - [anon_sym___fastcall] = ACTIONS(1323), - [anon_sym___thiscall] = ACTIONS(1323), - [anon_sym___vectorcall] = ACTIONS(1323), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_RBRACE] = ACTIONS(1325), - [anon_sym_signed] = ACTIONS(1323), - [anon_sym_unsigned] = ACTIONS(1323), - [anon_sym_long] = ACTIONS(1323), - [anon_sym_short] = ACTIONS(1323), - [anon_sym_static] = ACTIONS(1323), - [anon_sym_auto] = ACTIONS(1323), - [anon_sym_register] = ACTIONS(1323), - [anon_sym_inline] = ACTIONS(1323), - [anon_sym___inline] = ACTIONS(1323), - [anon_sym___inline__] = ACTIONS(1323), - [anon_sym___forceinline] = ACTIONS(1323), - [anon_sym_thread_local] = ACTIONS(1323), - [anon_sym___thread] = ACTIONS(1323), - [anon_sym_const] = ACTIONS(1323), - [anon_sym_constexpr] = ACTIONS(1323), - [anon_sym_volatile] = ACTIONS(1323), - [anon_sym_restrict] = ACTIONS(1323), - [anon_sym___restrict__] = ACTIONS(1323), - [anon_sym__Atomic] = ACTIONS(1323), - [anon_sym__Noreturn] = ACTIONS(1323), - [anon_sym_noreturn] = ACTIONS(1323), - [anon_sym_alignas] = ACTIONS(1323), - [anon_sym__Alignas] = ACTIONS(1323), - [sym_primitive_type] = ACTIONS(1323), - [anon_sym_enum] = ACTIONS(1323), - [anon_sym_struct] = ACTIONS(1323), - [anon_sym_union] = ACTIONS(1323), - [anon_sym_if] = ACTIONS(1323), - [anon_sym_switch] = ACTIONS(1323), - [anon_sym_case] = ACTIONS(1323), - [anon_sym_default] = ACTIONS(1323), - [anon_sym_while] = ACTIONS(1323), - [anon_sym_do] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1323), - [anon_sym_return] = ACTIONS(1323), - [anon_sym_break] = ACTIONS(1323), - [anon_sym_continue] = ACTIONS(1323), - [anon_sym_goto] = ACTIONS(1323), - [anon_sym___try] = ACTIONS(1323), - [anon_sym___leave] = ACTIONS(1323), - [anon_sym_DASH_DASH] = ACTIONS(1325), - [anon_sym_PLUS_PLUS] = ACTIONS(1325), - [anon_sym_sizeof] = ACTIONS(1323), - [anon_sym___alignof__] = ACTIONS(1323), - [anon_sym___alignof] = ACTIONS(1323), - [anon_sym__alignof] = ACTIONS(1323), - [anon_sym_alignof] = ACTIONS(1323), - [anon_sym__Alignof] = ACTIONS(1323), - [anon_sym_offsetof] = ACTIONS(1323), - [anon_sym__Generic] = ACTIONS(1323), - [anon_sym_asm] = ACTIONS(1323), - [anon_sym___asm__] = ACTIONS(1323), - [sym_number_literal] = ACTIONS(1325), - [anon_sym_L_SQUOTE] = ACTIONS(1325), - [anon_sym_u_SQUOTE] = ACTIONS(1325), - [anon_sym_U_SQUOTE] = ACTIONS(1325), - [anon_sym_u8_SQUOTE] = ACTIONS(1325), - [anon_sym_SQUOTE] = ACTIONS(1325), - [anon_sym_L_DQUOTE] = ACTIONS(1325), - [anon_sym_u_DQUOTE] = ACTIONS(1325), - [anon_sym_U_DQUOTE] = ACTIONS(1325), - [anon_sym_u8_DQUOTE] = ACTIONS(1325), - [anon_sym_DQUOTE] = ACTIONS(1325), - [sym_true] = ACTIONS(1323), - [sym_false] = ACTIONS(1323), - [anon_sym_NULL] = ACTIONS(1323), - [anon_sym_nullptr] = ACTIONS(1323), + [311] = { + [ts_builtin_sym_end] = ACTIONS(1273), + [sym_identifier] = ACTIONS(1271), + [aux_sym_preproc_include_token1] = ACTIONS(1271), + [aux_sym_preproc_def_token1] = ACTIONS(1271), + [anon_sym_COMMA] = ACTIONS(1273), + [aux_sym_preproc_if_token1] = ACTIONS(1271), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1271), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1271), + [sym_preproc_directive] = ACTIONS(1271), + [anon_sym_LPAREN2] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_TILDE] = ACTIONS(1273), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_PLUS] = ACTIONS(1271), + [anon_sym_STAR] = ACTIONS(1273), + [anon_sym_AMP] = ACTIONS(1273), + [anon_sym___extension__] = ACTIONS(1271), + [anon_sym_typedef] = ACTIONS(1271), + [anon_sym_extern] = ACTIONS(1271), + [anon_sym___attribute__] = ACTIONS(1271), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1273), + [anon_sym___declspec] = ACTIONS(1271), + [anon_sym___cdecl] = ACTIONS(1271), + [anon_sym___clrcall] = ACTIONS(1271), + [anon_sym___stdcall] = ACTIONS(1271), + [anon_sym___fastcall] = ACTIONS(1271), + [anon_sym___thiscall] = ACTIONS(1271), + [anon_sym___vectorcall] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_RBRACE] = ACTIONS(1273), + [anon_sym_signed] = ACTIONS(1271), + [anon_sym_unsigned] = ACTIONS(1271), + [anon_sym_long] = ACTIONS(1271), + [anon_sym_short] = ACTIONS(1271), + [anon_sym_static] = ACTIONS(1271), + [anon_sym_auto] = ACTIONS(1271), + [anon_sym_register] = ACTIONS(1271), + [anon_sym_inline] = ACTIONS(1271), + [anon_sym___inline] = ACTIONS(1271), + [anon_sym___inline__] = ACTIONS(1271), + [anon_sym___forceinline] = ACTIONS(1271), + [anon_sym_thread_local] = ACTIONS(1271), + [anon_sym___thread] = ACTIONS(1271), + [anon_sym_const] = ACTIONS(1271), + [anon_sym_constexpr] = ACTIONS(1271), + [anon_sym_volatile] = ACTIONS(1271), + [anon_sym_restrict] = ACTIONS(1271), + [anon_sym___restrict__] = ACTIONS(1271), + [anon_sym__Atomic] = ACTIONS(1271), + [anon_sym__Noreturn] = ACTIONS(1271), + [anon_sym_noreturn] = ACTIONS(1271), + [anon_sym_alignas] = ACTIONS(1271), + [anon_sym__Alignas] = ACTIONS(1271), + [sym_primitive_type] = ACTIONS(1271), + [anon_sym_enum] = ACTIONS(1271), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_union] = ACTIONS(1271), + [anon_sym_if] = ACTIONS(1271), + [anon_sym_switch] = ACTIONS(1271), + [anon_sym_case] = ACTIONS(1271), + [anon_sym_default] = ACTIONS(1271), + [anon_sym_while] = ACTIONS(1271), + [anon_sym_do] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1271), + [anon_sym_return] = ACTIONS(1271), + [anon_sym_break] = ACTIONS(1271), + [anon_sym_continue] = ACTIONS(1271), + [anon_sym_goto] = ACTIONS(1271), + [anon_sym_DASH_DASH] = ACTIONS(1273), + [anon_sym_PLUS_PLUS] = ACTIONS(1273), + [anon_sym_sizeof] = ACTIONS(1271), + [anon_sym___alignof__] = ACTIONS(1271), + [anon_sym___alignof] = ACTIONS(1271), + [anon_sym__alignof] = ACTIONS(1271), + [anon_sym_alignof] = ACTIONS(1271), + [anon_sym__Alignof] = ACTIONS(1271), + [anon_sym_offsetof] = ACTIONS(1271), + [anon_sym__Generic] = ACTIONS(1271), + [anon_sym_asm] = ACTIONS(1271), + [anon_sym___asm__] = ACTIONS(1271), + [sym_number_literal] = ACTIONS(1273), + [anon_sym_L_SQUOTE] = ACTIONS(1273), + [anon_sym_u_SQUOTE] = ACTIONS(1273), + [anon_sym_U_SQUOTE] = ACTIONS(1273), + [anon_sym_u8_SQUOTE] = ACTIONS(1273), + [anon_sym_SQUOTE] = ACTIONS(1273), + [anon_sym_L_DQUOTE] = ACTIONS(1273), + [anon_sym_u_DQUOTE] = ACTIONS(1273), + [anon_sym_U_DQUOTE] = ACTIONS(1273), + [anon_sym_u8_DQUOTE] = ACTIONS(1273), + [anon_sym_DQUOTE] = ACTIONS(1273), + [sym_true] = ACTIONS(1271), + [sym_false] = ACTIONS(1271), + [anon_sym_NULL] = ACTIONS(1271), + [anon_sym_nullptr] = ACTIONS(1271), [sym_comment] = ACTIONS(3), }, - [360] = { - [sym_identifier] = ACTIONS(1339), - [aux_sym_preproc_include_token1] = ACTIONS(1339), - [aux_sym_preproc_def_token1] = ACTIONS(1339), - [aux_sym_preproc_if_token1] = ACTIONS(1339), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1339), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1339), - [sym_preproc_directive] = ACTIONS(1339), - [anon_sym_LPAREN2] = ACTIONS(1341), - [anon_sym_BANG] = ACTIONS(1341), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_DASH] = ACTIONS(1339), - [anon_sym_PLUS] = ACTIONS(1339), - [anon_sym_STAR] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(1341), - [anon_sym_SEMI] = ACTIONS(1341), - [anon_sym___extension__] = ACTIONS(1339), - [anon_sym_typedef] = ACTIONS(1339), - [anon_sym_extern] = ACTIONS(1339), - [anon_sym___attribute__] = ACTIONS(1339), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1341), - [anon_sym___declspec] = ACTIONS(1339), - [anon_sym___cdecl] = ACTIONS(1339), - [anon_sym___clrcall] = ACTIONS(1339), - [anon_sym___stdcall] = ACTIONS(1339), - [anon_sym___fastcall] = ACTIONS(1339), - [anon_sym___thiscall] = ACTIONS(1339), - [anon_sym___vectorcall] = ACTIONS(1339), - [anon_sym_LBRACE] = ACTIONS(1341), - [anon_sym_RBRACE] = ACTIONS(1341), - [anon_sym_signed] = ACTIONS(1339), - [anon_sym_unsigned] = ACTIONS(1339), - [anon_sym_long] = ACTIONS(1339), - [anon_sym_short] = ACTIONS(1339), - [anon_sym_static] = ACTIONS(1339), - [anon_sym_auto] = ACTIONS(1339), - [anon_sym_register] = ACTIONS(1339), - [anon_sym_inline] = ACTIONS(1339), - [anon_sym___inline] = ACTIONS(1339), - [anon_sym___inline__] = ACTIONS(1339), - [anon_sym___forceinline] = ACTIONS(1339), - [anon_sym_thread_local] = ACTIONS(1339), - [anon_sym___thread] = ACTIONS(1339), - [anon_sym_const] = ACTIONS(1339), - [anon_sym_constexpr] = ACTIONS(1339), - [anon_sym_volatile] = ACTIONS(1339), - [anon_sym_restrict] = ACTIONS(1339), - [anon_sym___restrict__] = ACTIONS(1339), - [anon_sym__Atomic] = ACTIONS(1339), - [anon_sym__Noreturn] = ACTIONS(1339), - [anon_sym_noreturn] = ACTIONS(1339), - [anon_sym_alignas] = ACTIONS(1339), - [anon_sym__Alignas] = ACTIONS(1339), - [sym_primitive_type] = ACTIONS(1339), - [anon_sym_enum] = ACTIONS(1339), - [anon_sym_struct] = ACTIONS(1339), - [anon_sym_union] = ACTIONS(1339), - [anon_sym_if] = ACTIONS(1339), - [anon_sym_switch] = ACTIONS(1339), - [anon_sym_case] = ACTIONS(1339), - [anon_sym_default] = ACTIONS(1339), - [anon_sym_while] = ACTIONS(1339), - [anon_sym_do] = ACTIONS(1339), - [anon_sym_for] = ACTIONS(1339), - [anon_sym_return] = ACTIONS(1339), - [anon_sym_break] = ACTIONS(1339), - [anon_sym_continue] = ACTIONS(1339), - [anon_sym_goto] = ACTIONS(1339), - [anon_sym___try] = ACTIONS(1339), - [anon_sym___leave] = ACTIONS(1339), - [anon_sym_DASH_DASH] = ACTIONS(1341), - [anon_sym_PLUS_PLUS] = ACTIONS(1341), - [anon_sym_sizeof] = ACTIONS(1339), - [anon_sym___alignof__] = ACTIONS(1339), - [anon_sym___alignof] = ACTIONS(1339), - [anon_sym__alignof] = ACTIONS(1339), - [anon_sym_alignof] = ACTIONS(1339), - [anon_sym__Alignof] = ACTIONS(1339), - [anon_sym_offsetof] = ACTIONS(1339), - [anon_sym__Generic] = ACTIONS(1339), - [anon_sym_asm] = ACTIONS(1339), - [anon_sym___asm__] = ACTIONS(1339), - [sym_number_literal] = ACTIONS(1341), - [anon_sym_L_SQUOTE] = ACTIONS(1341), - [anon_sym_u_SQUOTE] = ACTIONS(1341), - [anon_sym_U_SQUOTE] = ACTIONS(1341), - [anon_sym_u8_SQUOTE] = ACTIONS(1341), - [anon_sym_SQUOTE] = ACTIONS(1341), - [anon_sym_L_DQUOTE] = ACTIONS(1341), - [anon_sym_u_DQUOTE] = ACTIONS(1341), - [anon_sym_U_DQUOTE] = ACTIONS(1341), - [anon_sym_u8_DQUOTE] = ACTIONS(1341), - [anon_sym_DQUOTE] = ACTIONS(1341), - [sym_true] = ACTIONS(1339), - [sym_false] = ACTIONS(1339), - [anon_sym_NULL] = ACTIONS(1339), - [anon_sym_nullptr] = ACTIONS(1339), + [312] = { + [sym_expression] = STATE(680), + [sym__string] = STATE(672), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(668), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(668), + [sym_call_expression] = STATE(668), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(668), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(668), + [sym_initializer_list] = STATE(676), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(679), + [sym_null] = STATE(672), + [sym_identifier] = ACTIONS(1383), + [anon_sym_COMMA] = ACTIONS(1377), + [aux_sym_preproc_if_token2] = ACTIONS(1377), + [aux_sym_preproc_else_token1] = ACTIONS(1377), + [aux_sym_preproc_elif_token1] = ACTIONS(1383), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1377), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1377), + [anon_sym_LPAREN2] = ACTIONS(1377), + [anon_sym_BANG] = ACTIONS(1389), + [anon_sym_TILDE] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1383), + [anon_sym_STAR] = ACTIONS(1383), + [anon_sym_SLASH] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1383), + [anon_sym_PIPE_PIPE] = ACTIONS(1377), + [anon_sym_AMP_AMP] = ACTIONS(1377), + [anon_sym_PIPE] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(1383), + [anon_sym_EQ_EQ] = ACTIONS(1377), + [anon_sym_BANG_EQ] = ACTIONS(1377), + [anon_sym_GT] = ACTIONS(1383), + [anon_sym_GT_EQ] = ACTIONS(1377), + [anon_sym_LT_EQ] = ACTIONS(1377), + [anon_sym_LT] = ACTIONS(1383), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_GT_GT] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1385), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_EQ] = ACTIONS(1383), + [anon_sym_QMARK] = ACTIONS(1377), + [anon_sym_STAR_EQ] = ACTIONS(1377), + [anon_sym_SLASH_EQ] = ACTIONS(1377), + [anon_sym_PERCENT_EQ] = ACTIONS(1377), + [anon_sym_PLUS_EQ] = ACTIONS(1377), + [anon_sym_DASH_EQ] = ACTIONS(1377), + [anon_sym_LT_LT_EQ] = ACTIONS(1377), + [anon_sym_GT_GT_EQ] = ACTIONS(1377), + [anon_sym_AMP_EQ] = ACTIONS(1377), + [anon_sym_CARET_EQ] = ACTIONS(1377), + [anon_sym_PIPE_EQ] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_sizeof] = ACTIONS(1393), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [anon_sym_DOT] = ACTIONS(1383), + [anon_sym_DASH_GT] = ACTIONS(1377), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [361] = { - [sym_identifier] = ACTIONS(1283), - [aux_sym_preproc_include_token1] = ACTIONS(1283), - [aux_sym_preproc_def_token1] = ACTIONS(1283), - [aux_sym_preproc_if_token1] = ACTIONS(1283), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1283), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1283), - [sym_preproc_directive] = ACTIONS(1283), - [anon_sym_LPAREN2] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym___extension__] = ACTIONS(1283), - [anon_sym_typedef] = ACTIONS(1283), - [anon_sym_extern] = ACTIONS(1283), - [anon_sym___attribute__] = ACTIONS(1283), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1285), - [anon_sym___declspec] = ACTIONS(1283), - [anon_sym___cdecl] = ACTIONS(1283), - [anon_sym___clrcall] = ACTIONS(1283), - [anon_sym___stdcall] = ACTIONS(1283), - [anon_sym___fastcall] = ACTIONS(1283), - [anon_sym___thiscall] = ACTIONS(1283), - [anon_sym___vectorcall] = ACTIONS(1283), - [anon_sym_LBRACE] = ACTIONS(1285), - [anon_sym_RBRACE] = ACTIONS(1285), - [anon_sym_signed] = ACTIONS(1283), - [anon_sym_unsigned] = ACTIONS(1283), - [anon_sym_long] = ACTIONS(1283), - [anon_sym_short] = ACTIONS(1283), - [anon_sym_static] = ACTIONS(1283), - [anon_sym_auto] = ACTIONS(1283), - [anon_sym_register] = ACTIONS(1283), - [anon_sym_inline] = ACTIONS(1283), - [anon_sym___inline] = ACTIONS(1283), - [anon_sym___inline__] = ACTIONS(1283), - [anon_sym___forceinline] = ACTIONS(1283), - [anon_sym_thread_local] = ACTIONS(1283), - [anon_sym___thread] = ACTIONS(1283), - [anon_sym_const] = ACTIONS(1283), - [anon_sym_constexpr] = ACTIONS(1283), - [anon_sym_volatile] = ACTIONS(1283), - [anon_sym_restrict] = ACTIONS(1283), - [anon_sym___restrict__] = ACTIONS(1283), - [anon_sym__Atomic] = ACTIONS(1283), - [anon_sym__Noreturn] = ACTIONS(1283), - [anon_sym_noreturn] = ACTIONS(1283), - [anon_sym_alignas] = ACTIONS(1283), - [anon_sym__Alignas] = ACTIONS(1283), - [sym_primitive_type] = ACTIONS(1283), - [anon_sym_enum] = ACTIONS(1283), - [anon_sym_struct] = ACTIONS(1283), - [anon_sym_union] = ACTIONS(1283), - [anon_sym_if] = ACTIONS(1283), - [anon_sym_switch] = ACTIONS(1283), - [anon_sym_case] = ACTIONS(1283), - [anon_sym_default] = ACTIONS(1283), - [anon_sym_while] = ACTIONS(1283), - [anon_sym_do] = ACTIONS(1283), - [anon_sym_for] = ACTIONS(1283), - [anon_sym_return] = ACTIONS(1283), - [anon_sym_break] = ACTIONS(1283), - [anon_sym_continue] = ACTIONS(1283), - [anon_sym_goto] = ACTIONS(1283), - [anon_sym___try] = ACTIONS(1283), - [anon_sym___leave] = ACTIONS(1283), - [anon_sym_DASH_DASH] = ACTIONS(1285), - [anon_sym_PLUS_PLUS] = ACTIONS(1285), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym___alignof__] = ACTIONS(1283), - [anon_sym___alignof] = ACTIONS(1283), - [anon_sym__alignof] = ACTIONS(1283), - [anon_sym_alignof] = ACTIONS(1283), - [anon_sym__Alignof] = ACTIONS(1283), - [anon_sym_offsetof] = ACTIONS(1283), - [anon_sym__Generic] = ACTIONS(1283), - [anon_sym_asm] = ACTIONS(1283), - [anon_sym___asm__] = ACTIONS(1283), - [sym_number_literal] = ACTIONS(1285), - [anon_sym_L_SQUOTE] = ACTIONS(1285), - [anon_sym_u_SQUOTE] = ACTIONS(1285), - [anon_sym_U_SQUOTE] = ACTIONS(1285), - [anon_sym_u8_SQUOTE] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_L_DQUOTE] = ACTIONS(1285), - [anon_sym_u_DQUOTE] = ACTIONS(1285), - [anon_sym_U_DQUOTE] = ACTIONS(1285), - [anon_sym_u8_DQUOTE] = ACTIONS(1285), - [anon_sym_DQUOTE] = ACTIONS(1285), - [sym_true] = ACTIONS(1283), - [sym_false] = ACTIONS(1283), - [anon_sym_NULL] = ACTIONS(1283), - [anon_sym_nullptr] = ACTIONS(1283), - [sym_comment] = ACTIONS(3), - }, - [362] = { - [sym_identifier] = ACTIONS(1347), - [aux_sym_preproc_include_token1] = ACTIONS(1347), - [aux_sym_preproc_def_token1] = ACTIONS(1347), - [aux_sym_preproc_if_token1] = ACTIONS(1347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1347), - [sym_preproc_directive] = ACTIONS(1347), - [anon_sym_LPAREN2] = ACTIONS(1349), - [anon_sym_BANG] = ACTIONS(1349), - [anon_sym_TILDE] = ACTIONS(1349), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_STAR] = ACTIONS(1349), - [anon_sym_AMP] = ACTIONS(1349), - [anon_sym_SEMI] = ACTIONS(1349), - [anon_sym___extension__] = ACTIONS(1347), - [anon_sym_typedef] = ACTIONS(1347), - [anon_sym_extern] = ACTIONS(1347), - [anon_sym___attribute__] = ACTIONS(1347), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1349), - [anon_sym___declspec] = ACTIONS(1347), - [anon_sym___cdecl] = ACTIONS(1347), - [anon_sym___clrcall] = ACTIONS(1347), - [anon_sym___stdcall] = ACTIONS(1347), - [anon_sym___fastcall] = ACTIONS(1347), - [anon_sym___thiscall] = ACTIONS(1347), - [anon_sym___vectorcall] = ACTIONS(1347), - [anon_sym_LBRACE] = ACTIONS(1349), - [anon_sym_RBRACE] = ACTIONS(1349), - [anon_sym_signed] = ACTIONS(1347), - [anon_sym_unsigned] = ACTIONS(1347), - [anon_sym_long] = ACTIONS(1347), - [anon_sym_short] = ACTIONS(1347), - [anon_sym_static] = ACTIONS(1347), - [anon_sym_auto] = ACTIONS(1347), - [anon_sym_register] = ACTIONS(1347), - [anon_sym_inline] = ACTIONS(1347), - [anon_sym___inline] = ACTIONS(1347), - [anon_sym___inline__] = ACTIONS(1347), - [anon_sym___forceinline] = ACTIONS(1347), - [anon_sym_thread_local] = ACTIONS(1347), - [anon_sym___thread] = ACTIONS(1347), - [anon_sym_const] = ACTIONS(1347), - [anon_sym_constexpr] = ACTIONS(1347), - [anon_sym_volatile] = ACTIONS(1347), - [anon_sym_restrict] = ACTIONS(1347), - [anon_sym___restrict__] = ACTIONS(1347), - [anon_sym__Atomic] = ACTIONS(1347), - [anon_sym__Noreturn] = ACTIONS(1347), - [anon_sym_noreturn] = ACTIONS(1347), - [anon_sym_alignas] = ACTIONS(1347), - [anon_sym__Alignas] = ACTIONS(1347), - [sym_primitive_type] = ACTIONS(1347), - [anon_sym_enum] = ACTIONS(1347), - [anon_sym_struct] = ACTIONS(1347), - [anon_sym_union] = ACTIONS(1347), - [anon_sym_if] = ACTIONS(1347), - [anon_sym_switch] = ACTIONS(1347), - [anon_sym_case] = ACTIONS(1347), - [anon_sym_default] = ACTIONS(1347), - [anon_sym_while] = ACTIONS(1347), - [anon_sym_do] = ACTIONS(1347), - [anon_sym_for] = ACTIONS(1347), - [anon_sym_return] = ACTIONS(1347), - [anon_sym_break] = ACTIONS(1347), - [anon_sym_continue] = ACTIONS(1347), - [anon_sym_goto] = ACTIONS(1347), - [anon_sym___try] = ACTIONS(1347), - [anon_sym___leave] = ACTIONS(1347), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_sizeof] = ACTIONS(1347), - [anon_sym___alignof__] = ACTIONS(1347), - [anon_sym___alignof] = ACTIONS(1347), - [anon_sym__alignof] = ACTIONS(1347), - [anon_sym_alignof] = ACTIONS(1347), - [anon_sym__Alignof] = ACTIONS(1347), - [anon_sym_offsetof] = ACTIONS(1347), - [anon_sym__Generic] = ACTIONS(1347), - [anon_sym_asm] = ACTIONS(1347), - [anon_sym___asm__] = ACTIONS(1347), - [sym_number_literal] = ACTIONS(1349), - [anon_sym_L_SQUOTE] = ACTIONS(1349), - [anon_sym_u_SQUOTE] = ACTIONS(1349), - [anon_sym_U_SQUOTE] = ACTIONS(1349), - [anon_sym_u8_SQUOTE] = ACTIONS(1349), - [anon_sym_SQUOTE] = ACTIONS(1349), - [anon_sym_L_DQUOTE] = ACTIONS(1349), - [anon_sym_u_DQUOTE] = ACTIONS(1349), - [anon_sym_U_DQUOTE] = ACTIONS(1349), - [anon_sym_u8_DQUOTE] = ACTIONS(1349), - [anon_sym_DQUOTE] = ACTIONS(1349), - [sym_true] = ACTIONS(1347), - [sym_false] = ACTIONS(1347), - [anon_sym_NULL] = ACTIONS(1347), - [anon_sym_nullptr] = ACTIONS(1347), + [313] = { + [ts_builtin_sym_end] = ACTIONS(1337), + [sym_identifier] = ACTIONS(1335), + [aux_sym_preproc_include_token1] = ACTIONS(1335), + [aux_sym_preproc_def_token1] = ACTIONS(1335), + [anon_sym_COMMA] = ACTIONS(1337), + [aux_sym_preproc_if_token1] = ACTIONS(1335), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1335), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1335), + [sym_preproc_directive] = ACTIONS(1335), + [anon_sym_LPAREN2] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1337), + [anon_sym_TILDE] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1335), + [anon_sym_PLUS] = ACTIONS(1335), + [anon_sym_STAR] = ACTIONS(1337), + [anon_sym_AMP] = ACTIONS(1337), + [anon_sym___extension__] = ACTIONS(1335), + [anon_sym_typedef] = ACTIONS(1335), + [anon_sym_extern] = ACTIONS(1335), + [anon_sym___attribute__] = ACTIONS(1335), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1337), + [anon_sym___declspec] = ACTIONS(1335), + [anon_sym___cdecl] = ACTIONS(1335), + [anon_sym___clrcall] = ACTIONS(1335), + [anon_sym___stdcall] = ACTIONS(1335), + [anon_sym___fastcall] = ACTIONS(1335), + [anon_sym___thiscall] = ACTIONS(1335), + [anon_sym___vectorcall] = ACTIONS(1335), + [anon_sym_LBRACE] = ACTIONS(1337), + [anon_sym_RBRACE] = ACTIONS(1337), + [anon_sym_signed] = ACTIONS(1335), + [anon_sym_unsigned] = ACTIONS(1335), + [anon_sym_long] = ACTIONS(1335), + [anon_sym_short] = ACTIONS(1335), + [anon_sym_static] = ACTIONS(1335), + [anon_sym_auto] = ACTIONS(1335), + [anon_sym_register] = ACTIONS(1335), + [anon_sym_inline] = ACTIONS(1335), + [anon_sym___inline] = ACTIONS(1335), + [anon_sym___inline__] = ACTIONS(1335), + [anon_sym___forceinline] = ACTIONS(1335), + [anon_sym_thread_local] = ACTIONS(1335), + [anon_sym___thread] = ACTIONS(1335), + [anon_sym_const] = ACTIONS(1335), + [anon_sym_constexpr] = ACTIONS(1335), + [anon_sym_volatile] = ACTIONS(1335), + [anon_sym_restrict] = ACTIONS(1335), + [anon_sym___restrict__] = ACTIONS(1335), + [anon_sym__Atomic] = ACTIONS(1335), + [anon_sym__Noreturn] = ACTIONS(1335), + [anon_sym_noreturn] = ACTIONS(1335), + [anon_sym_alignas] = ACTIONS(1335), + [anon_sym__Alignas] = ACTIONS(1335), + [sym_primitive_type] = ACTIONS(1335), + [anon_sym_enum] = ACTIONS(1335), + [anon_sym_struct] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1335), + [anon_sym_if] = ACTIONS(1335), + [anon_sym_switch] = ACTIONS(1335), + [anon_sym_case] = ACTIONS(1335), + [anon_sym_default] = ACTIONS(1335), + [anon_sym_while] = ACTIONS(1335), + [anon_sym_do] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1335), + [anon_sym_return] = ACTIONS(1335), + [anon_sym_break] = ACTIONS(1335), + [anon_sym_continue] = ACTIONS(1335), + [anon_sym_goto] = ACTIONS(1335), + [anon_sym_DASH_DASH] = ACTIONS(1337), + [anon_sym_PLUS_PLUS] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(1335), + [anon_sym___alignof__] = ACTIONS(1335), + [anon_sym___alignof] = ACTIONS(1335), + [anon_sym__alignof] = ACTIONS(1335), + [anon_sym_alignof] = ACTIONS(1335), + [anon_sym__Alignof] = ACTIONS(1335), + [anon_sym_offsetof] = ACTIONS(1335), + [anon_sym__Generic] = ACTIONS(1335), + [anon_sym_asm] = ACTIONS(1335), + [anon_sym___asm__] = ACTIONS(1335), + [sym_number_literal] = ACTIONS(1337), + [anon_sym_L_SQUOTE] = ACTIONS(1337), + [anon_sym_u_SQUOTE] = ACTIONS(1337), + [anon_sym_U_SQUOTE] = ACTIONS(1337), + [anon_sym_u8_SQUOTE] = ACTIONS(1337), + [anon_sym_SQUOTE] = ACTIONS(1337), + [anon_sym_L_DQUOTE] = ACTIONS(1337), + [anon_sym_u_DQUOTE] = ACTIONS(1337), + [anon_sym_U_DQUOTE] = ACTIONS(1337), + [anon_sym_u8_DQUOTE] = ACTIONS(1337), + [anon_sym_DQUOTE] = ACTIONS(1337), + [sym_true] = ACTIONS(1335), + [sym_false] = ACTIONS(1335), + [anon_sym_NULL] = ACTIONS(1335), + [anon_sym_nullptr] = ACTIONS(1335), [sym_comment] = ACTIONS(3), }, - [363] = { - [sym_identifier] = ACTIONS(1307), - [aux_sym_preproc_include_token1] = ACTIONS(1307), - [aux_sym_preproc_def_token1] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1307), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1307), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1307), - [sym_preproc_directive] = ACTIONS(1307), - [anon_sym_LPAREN2] = ACTIONS(1309), - [anon_sym_BANG] = ACTIONS(1309), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_DASH] = ACTIONS(1307), - [anon_sym_PLUS] = ACTIONS(1307), - [anon_sym_STAR] = ACTIONS(1309), - [anon_sym_AMP] = ACTIONS(1309), - [anon_sym_SEMI] = ACTIONS(1309), - [anon_sym___extension__] = ACTIONS(1307), - [anon_sym_typedef] = ACTIONS(1307), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym___attribute__] = ACTIONS(1307), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1309), - [anon_sym___declspec] = ACTIONS(1307), - [anon_sym___cdecl] = ACTIONS(1307), - [anon_sym___clrcall] = ACTIONS(1307), - [anon_sym___stdcall] = ACTIONS(1307), - [anon_sym___fastcall] = ACTIONS(1307), - [anon_sym___thiscall] = ACTIONS(1307), - [anon_sym___vectorcall] = ACTIONS(1307), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_RBRACE] = ACTIONS(1309), - [anon_sym_signed] = ACTIONS(1307), - [anon_sym_unsigned] = ACTIONS(1307), - [anon_sym_long] = ACTIONS(1307), - [anon_sym_short] = ACTIONS(1307), - [anon_sym_static] = ACTIONS(1307), - [anon_sym_auto] = ACTIONS(1307), - [anon_sym_register] = ACTIONS(1307), - [anon_sym_inline] = ACTIONS(1307), - [anon_sym___inline] = ACTIONS(1307), - [anon_sym___inline__] = ACTIONS(1307), - [anon_sym___forceinline] = ACTIONS(1307), - [anon_sym_thread_local] = ACTIONS(1307), - [anon_sym___thread] = ACTIONS(1307), - [anon_sym_const] = ACTIONS(1307), - [anon_sym_constexpr] = ACTIONS(1307), - [anon_sym_volatile] = ACTIONS(1307), - [anon_sym_restrict] = ACTIONS(1307), - [anon_sym___restrict__] = ACTIONS(1307), - [anon_sym__Atomic] = ACTIONS(1307), - [anon_sym__Noreturn] = ACTIONS(1307), - [anon_sym_noreturn] = ACTIONS(1307), - [anon_sym_alignas] = ACTIONS(1307), - [anon_sym__Alignas] = ACTIONS(1307), - [sym_primitive_type] = ACTIONS(1307), - [anon_sym_enum] = ACTIONS(1307), - [anon_sym_struct] = ACTIONS(1307), - [anon_sym_union] = ACTIONS(1307), - [anon_sym_if] = ACTIONS(1307), - [anon_sym_switch] = ACTIONS(1307), - [anon_sym_case] = ACTIONS(1307), - [anon_sym_default] = ACTIONS(1307), - [anon_sym_while] = ACTIONS(1307), - [anon_sym_do] = ACTIONS(1307), - [anon_sym_for] = ACTIONS(1307), - [anon_sym_return] = ACTIONS(1307), - [anon_sym_break] = ACTIONS(1307), - [anon_sym_continue] = ACTIONS(1307), - [anon_sym_goto] = ACTIONS(1307), - [anon_sym___try] = ACTIONS(1307), - [anon_sym___leave] = ACTIONS(1307), - [anon_sym_DASH_DASH] = ACTIONS(1309), - [anon_sym_PLUS_PLUS] = ACTIONS(1309), - [anon_sym_sizeof] = ACTIONS(1307), - [anon_sym___alignof__] = ACTIONS(1307), - [anon_sym___alignof] = ACTIONS(1307), - [anon_sym__alignof] = ACTIONS(1307), - [anon_sym_alignof] = ACTIONS(1307), - [anon_sym__Alignof] = ACTIONS(1307), - [anon_sym_offsetof] = ACTIONS(1307), - [anon_sym__Generic] = ACTIONS(1307), - [anon_sym_asm] = ACTIONS(1307), - [anon_sym___asm__] = ACTIONS(1307), - [sym_number_literal] = ACTIONS(1309), - [anon_sym_L_SQUOTE] = ACTIONS(1309), - [anon_sym_u_SQUOTE] = ACTIONS(1309), - [anon_sym_U_SQUOTE] = ACTIONS(1309), - [anon_sym_u8_SQUOTE] = ACTIONS(1309), - [anon_sym_SQUOTE] = ACTIONS(1309), - [anon_sym_L_DQUOTE] = ACTIONS(1309), - [anon_sym_u_DQUOTE] = ACTIONS(1309), - [anon_sym_U_DQUOTE] = ACTIONS(1309), - [anon_sym_u8_DQUOTE] = ACTIONS(1309), - [anon_sym_DQUOTE] = ACTIONS(1309), - [sym_true] = ACTIONS(1307), - [sym_false] = ACTIONS(1307), - [anon_sym_NULL] = ACTIONS(1307), - [anon_sym_nullptr] = ACTIONS(1307), + [314] = { + [sym_attribute_declaration] = STATE(330), + [sym_compound_statement] = STATE(172), + [sym_attributed_statement] = STATE(172), + [sym_statement] = STATE(186), + [sym_labeled_statement] = STATE(172), + [sym_expression_statement] = STATE(172), + [sym_if_statement] = STATE(172), + [sym_switch_statement] = STATE(172), + [sym_case_statement] = STATE(172), + [sym_while_statement] = STATE(172), + [sym_do_statement] = STATE(172), + [sym_for_statement] = STATE(172), + [sym_return_statement] = STATE(172), + [sym_break_statement] = STATE(172), + [sym_continue_statement] = STATE(172), + [sym_goto_statement] = STATE(172), + [sym_seh_try_statement] = STATE(172), + [sym_seh_leave_statement] = STATE(172), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_attributed_declarator_repeat1] = STATE(330), + [sym_identifier] = ACTIONS(1395), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1088), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_case] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(1401), + [anon_sym_while] = ACTIONS(1090), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(1092), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym___try] = ACTIONS(1094), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [364] = { - [sym_identifier] = ACTIONS(1343), - [aux_sym_preproc_include_token1] = ACTIONS(1343), - [aux_sym_preproc_def_token1] = ACTIONS(1343), - [aux_sym_preproc_if_token1] = ACTIONS(1343), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1343), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1343), - [sym_preproc_directive] = ACTIONS(1343), - [anon_sym_LPAREN2] = ACTIONS(1345), - [anon_sym_BANG] = ACTIONS(1345), - [anon_sym_TILDE] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1343), - [anon_sym_STAR] = ACTIONS(1345), - [anon_sym_AMP] = ACTIONS(1345), - [anon_sym_SEMI] = ACTIONS(1345), - [anon_sym___extension__] = ACTIONS(1343), - [anon_sym_typedef] = ACTIONS(1343), - [anon_sym_extern] = ACTIONS(1343), - [anon_sym___attribute__] = ACTIONS(1343), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1345), - [anon_sym___declspec] = ACTIONS(1343), - [anon_sym___cdecl] = ACTIONS(1343), - [anon_sym___clrcall] = ACTIONS(1343), - [anon_sym___stdcall] = ACTIONS(1343), - [anon_sym___fastcall] = ACTIONS(1343), - [anon_sym___thiscall] = ACTIONS(1343), - [anon_sym___vectorcall] = ACTIONS(1343), - [anon_sym_LBRACE] = ACTIONS(1345), - [anon_sym_RBRACE] = ACTIONS(1345), - [anon_sym_signed] = ACTIONS(1343), - [anon_sym_unsigned] = ACTIONS(1343), - [anon_sym_long] = ACTIONS(1343), - [anon_sym_short] = ACTIONS(1343), - [anon_sym_static] = ACTIONS(1343), - [anon_sym_auto] = ACTIONS(1343), - [anon_sym_register] = ACTIONS(1343), - [anon_sym_inline] = ACTIONS(1343), - [anon_sym___inline] = ACTIONS(1343), - [anon_sym___inline__] = ACTIONS(1343), - [anon_sym___forceinline] = ACTIONS(1343), - [anon_sym_thread_local] = ACTIONS(1343), - [anon_sym___thread] = ACTIONS(1343), - [anon_sym_const] = ACTIONS(1343), - [anon_sym_constexpr] = ACTIONS(1343), - [anon_sym_volatile] = ACTIONS(1343), - [anon_sym_restrict] = ACTIONS(1343), - [anon_sym___restrict__] = ACTIONS(1343), - [anon_sym__Atomic] = ACTIONS(1343), - [anon_sym__Noreturn] = ACTIONS(1343), - [anon_sym_noreturn] = ACTIONS(1343), - [anon_sym_alignas] = ACTIONS(1343), - [anon_sym__Alignas] = 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_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___try] = ACTIONS(1343), - [anon_sym___leave] = ACTIONS(1343), - [anon_sym_DASH_DASH] = ACTIONS(1345), - [anon_sym_PLUS_PLUS] = ACTIONS(1345), - [anon_sym_sizeof] = ACTIONS(1343), - [anon_sym___alignof__] = ACTIONS(1343), - [anon_sym___alignof] = ACTIONS(1343), - [anon_sym__alignof] = ACTIONS(1343), - [anon_sym_alignof] = ACTIONS(1343), - [anon_sym__Alignof] = ACTIONS(1343), - [anon_sym_offsetof] = ACTIONS(1343), - [anon_sym__Generic] = ACTIONS(1343), - [anon_sym_asm] = ACTIONS(1343), - [anon_sym___asm__] = ACTIONS(1343), - [sym_number_literal] = ACTIONS(1345), - [anon_sym_L_SQUOTE] = ACTIONS(1345), - [anon_sym_u_SQUOTE] = ACTIONS(1345), - [anon_sym_U_SQUOTE] = ACTIONS(1345), - [anon_sym_u8_SQUOTE] = ACTIONS(1345), - [anon_sym_SQUOTE] = ACTIONS(1345), - [anon_sym_L_DQUOTE] = ACTIONS(1345), - [anon_sym_u_DQUOTE] = ACTIONS(1345), - [anon_sym_U_DQUOTE] = ACTIONS(1345), - [anon_sym_u8_DQUOTE] = ACTIONS(1345), - [anon_sym_DQUOTE] = ACTIONS(1345), - [sym_true] = ACTIONS(1343), - [sym_false] = ACTIONS(1343), - [anon_sym_NULL] = ACTIONS(1343), - [anon_sym_nullptr] = ACTIONS(1343), + [315] = { + [sym_attribute_declaration] = STATE(347), + [sym_compound_statement] = STATE(159), + [sym_attributed_statement] = STATE(159), + [sym_statement] = STATE(210), + [sym_labeled_statement] = STATE(159), + [sym_expression_statement] = STATE(159), + [sym_if_statement] = STATE(159), + [sym_switch_statement] = STATE(159), + [sym_case_statement] = STATE(159), + [sym_while_statement] = STATE(159), + [sym_do_statement] = STATE(159), + [sym_for_statement] = STATE(159), + [sym_return_statement] = STATE(159), + [sym_break_statement] = STATE(159), + [sym_continue_statement] = STATE(159), + [sym_goto_statement] = STATE(159), + [sym_seh_try_statement] = STATE(159), + [sym_seh_leave_statement] = STATE(159), + [sym_expression] = STATE(1019), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1826), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_attributed_declarator_repeat1] = STATE(347), + [sym_identifier] = ACTIONS(1403), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(930), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(59), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_case] = ACTIONS(63), + [anon_sym_default] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym___try] = ACTIONS(932), + [anon_sym___leave] = ACTIONS(934), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [365] = { - [ts_builtin_sym_end] = ACTIONS(1297), - [sym_identifier] = ACTIONS(1295), - [aux_sym_preproc_include_token1] = ACTIONS(1295), - [aux_sym_preproc_def_token1] = ACTIONS(1295), - [anon_sym_COMMA] = ACTIONS(1297), - [aux_sym_preproc_if_token1] = ACTIONS(1295), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1295), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1295), - [sym_preproc_directive] = ACTIONS(1295), - [anon_sym_LPAREN2] = ACTIONS(1297), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_TILDE] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_PLUS] = ACTIONS(1295), - [anon_sym_STAR] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1297), - [anon_sym___extension__] = ACTIONS(1295), - [anon_sym_typedef] = ACTIONS(1295), - [anon_sym_extern] = ACTIONS(1295), - [anon_sym___attribute__] = ACTIONS(1295), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1297), - [anon_sym___declspec] = ACTIONS(1295), - [anon_sym___cdecl] = ACTIONS(1295), - [anon_sym___clrcall] = ACTIONS(1295), - [anon_sym___stdcall] = ACTIONS(1295), - [anon_sym___fastcall] = ACTIONS(1295), - [anon_sym___thiscall] = ACTIONS(1295), - [anon_sym___vectorcall] = ACTIONS(1295), - [anon_sym_LBRACE] = ACTIONS(1297), - [anon_sym_RBRACE] = ACTIONS(1297), - [anon_sym_signed] = ACTIONS(1295), - [anon_sym_unsigned] = ACTIONS(1295), - [anon_sym_long] = ACTIONS(1295), - [anon_sym_short] = ACTIONS(1295), - [anon_sym_static] = ACTIONS(1295), - [anon_sym_auto] = ACTIONS(1295), - [anon_sym_register] = ACTIONS(1295), - [anon_sym_inline] = ACTIONS(1295), - [anon_sym___inline] = ACTIONS(1295), - [anon_sym___inline__] = ACTIONS(1295), - [anon_sym___forceinline] = ACTIONS(1295), - [anon_sym_thread_local] = ACTIONS(1295), - [anon_sym___thread] = ACTIONS(1295), - [anon_sym_const] = ACTIONS(1295), - [anon_sym_constexpr] = ACTIONS(1295), - [anon_sym_volatile] = ACTIONS(1295), - [anon_sym_restrict] = ACTIONS(1295), - [anon_sym___restrict__] = ACTIONS(1295), - [anon_sym__Atomic] = ACTIONS(1295), - [anon_sym__Noreturn] = ACTIONS(1295), - [anon_sym_noreturn] = ACTIONS(1295), - [anon_sym_alignas] = ACTIONS(1295), - [anon_sym__Alignas] = ACTIONS(1295), - [sym_primitive_type] = ACTIONS(1295), - [anon_sym_enum] = ACTIONS(1295), - [anon_sym_struct] = ACTIONS(1295), - [anon_sym_union] = ACTIONS(1295), - [anon_sym_if] = ACTIONS(1295), - [anon_sym_switch] = ACTIONS(1295), - [anon_sym_case] = ACTIONS(1295), - [anon_sym_default] = ACTIONS(1295), - [anon_sym_while] = ACTIONS(1295), - [anon_sym_do] = ACTIONS(1295), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_return] = ACTIONS(1295), - [anon_sym_break] = ACTIONS(1295), - [anon_sym_continue] = ACTIONS(1295), - [anon_sym_goto] = ACTIONS(1295), - [anon_sym_DASH_DASH] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1297), - [anon_sym_sizeof] = ACTIONS(1295), - [anon_sym___alignof__] = ACTIONS(1295), - [anon_sym___alignof] = ACTIONS(1295), - [anon_sym__alignof] = ACTIONS(1295), - [anon_sym_alignof] = ACTIONS(1295), - [anon_sym__Alignof] = ACTIONS(1295), - [anon_sym_offsetof] = ACTIONS(1295), - [anon_sym__Generic] = ACTIONS(1295), - [anon_sym_asm] = ACTIONS(1295), - [anon_sym___asm__] = ACTIONS(1295), - [sym_number_literal] = ACTIONS(1297), - [anon_sym_L_SQUOTE] = ACTIONS(1297), - [anon_sym_u_SQUOTE] = ACTIONS(1297), - [anon_sym_U_SQUOTE] = ACTIONS(1297), - [anon_sym_u8_SQUOTE] = ACTIONS(1297), - [anon_sym_SQUOTE] = ACTIONS(1297), - [anon_sym_L_DQUOTE] = ACTIONS(1297), - [anon_sym_u_DQUOTE] = ACTIONS(1297), - [anon_sym_U_DQUOTE] = ACTIONS(1297), - [anon_sym_u8_DQUOTE] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1297), - [sym_true] = ACTIONS(1295), - [sym_false] = ACTIONS(1295), - [anon_sym_NULL] = ACTIONS(1295), - [anon_sym_nullptr] = ACTIONS(1295), - [sym_comment] = ACTIONS(3), - }, - [366] = { - [ts_builtin_sym_end] = ACTIONS(1353), - [sym_identifier] = ACTIONS(1351), - [aux_sym_preproc_include_token1] = ACTIONS(1351), - [aux_sym_preproc_def_token1] = ACTIONS(1351), - [anon_sym_COMMA] = ACTIONS(1353), - [aux_sym_preproc_if_token1] = ACTIONS(1351), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1351), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1351), - [sym_preproc_directive] = ACTIONS(1351), - [anon_sym_LPAREN2] = ACTIONS(1353), - [anon_sym_BANG] = ACTIONS(1353), - [anon_sym_TILDE] = ACTIONS(1353), - [anon_sym_DASH] = ACTIONS(1351), - [anon_sym_PLUS] = ACTIONS(1351), - [anon_sym_STAR] = ACTIONS(1353), - [anon_sym_AMP] = ACTIONS(1353), - [anon_sym___extension__] = ACTIONS(1351), - [anon_sym_typedef] = ACTIONS(1351), - [anon_sym_extern] = ACTIONS(1351), - [anon_sym___attribute__] = ACTIONS(1351), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1353), - [anon_sym___declspec] = ACTIONS(1351), - [anon_sym___cdecl] = ACTIONS(1351), - [anon_sym___clrcall] = ACTIONS(1351), - [anon_sym___stdcall] = ACTIONS(1351), - [anon_sym___fastcall] = ACTIONS(1351), - [anon_sym___thiscall] = ACTIONS(1351), - [anon_sym___vectorcall] = ACTIONS(1351), - [anon_sym_LBRACE] = ACTIONS(1353), - [anon_sym_RBRACE] = ACTIONS(1353), - [anon_sym_signed] = ACTIONS(1351), - [anon_sym_unsigned] = ACTIONS(1351), - [anon_sym_long] = ACTIONS(1351), - [anon_sym_short] = ACTIONS(1351), - [anon_sym_static] = ACTIONS(1351), - [anon_sym_auto] = ACTIONS(1351), - [anon_sym_register] = ACTIONS(1351), - [anon_sym_inline] = ACTIONS(1351), - [anon_sym___inline] = ACTIONS(1351), - [anon_sym___inline__] = ACTIONS(1351), - [anon_sym___forceinline] = ACTIONS(1351), - [anon_sym_thread_local] = ACTIONS(1351), - [anon_sym___thread] = ACTIONS(1351), - [anon_sym_const] = ACTIONS(1351), - [anon_sym_constexpr] = ACTIONS(1351), - [anon_sym_volatile] = ACTIONS(1351), - [anon_sym_restrict] = ACTIONS(1351), - [anon_sym___restrict__] = ACTIONS(1351), - [anon_sym__Atomic] = ACTIONS(1351), - [anon_sym__Noreturn] = ACTIONS(1351), - [anon_sym_noreturn] = ACTIONS(1351), - [anon_sym_alignas] = ACTIONS(1351), - [anon_sym__Alignas] = ACTIONS(1351), - [sym_primitive_type] = ACTIONS(1351), - [anon_sym_enum] = ACTIONS(1351), - [anon_sym_struct] = ACTIONS(1351), - [anon_sym_union] = ACTIONS(1351), - [anon_sym_if] = ACTIONS(1351), - [anon_sym_switch] = ACTIONS(1351), - [anon_sym_case] = ACTIONS(1351), - [anon_sym_default] = ACTIONS(1351), - [anon_sym_while] = ACTIONS(1351), - [anon_sym_do] = ACTIONS(1351), - [anon_sym_for] = ACTIONS(1351), - [anon_sym_return] = ACTIONS(1351), - [anon_sym_break] = ACTIONS(1351), - [anon_sym_continue] = ACTIONS(1351), - [anon_sym_goto] = ACTIONS(1351), - [anon_sym_DASH_DASH] = ACTIONS(1353), - [anon_sym_PLUS_PLUS] = ACTIONS(1353), - [anon_sym_sizeof] = ACTIONS(1351), - [anon_sym___alignof__] = ACTIONS(1351), - [anon_sym___alignof] = ACTIONS(1351), - [anon_sym__alignof] = ACTIONS(1351), - [anon_sym_alignof] = ACTIONS(1351), - [anon_sym__Alignof] = ACTIONS(1351), - [anon_sym_offsetof] = ACTIONS(1351), - [anon_sym__Generic] = ACTIONS(1351), - [anon_sym_asm] = ACTIONS(1351), - [anon_sym___asm__] = ACTIONS(1351), - [sym_number_literal] = ACTIONS(1353), - [anon_sym_L_SQUOTE] = ACTIONS(1353), - [anon_sym_u_SQUOTE] = ACTIONS(1353), - [anon_sym_U_SQUOTE] = ACTIONS(1353), - [anon_sym_u8_SQUOTE] = ACTIONS(1353), - [anon_sym_SQUOTE] = ACTIONS(1353), - [anon_sym_L_DQUOTE] = ACTIONS(1353), - [anon_sym_u_DQUOTE] = ACTIONS(1353), - [anon_sym_U_DQUOTE] = ACTIONS(1353), - [anon_sym_u8_DQUOTE] = ACTIONS(1353), - [anon_sym_DQUOTE] = ACTIONS(1353), - [sym_true] = ACTIONS(1351), - [sym_false] = ACTIONS(1351), - [anon_sym_NULL] = ACTIONS(1351), - [anon_sym_nullptr] = ACTIONS(1351), + [316] = { + [sym_attribute_declaration] = STATE(349), + [sym_compound_statement] = STATE(112), + [sym_attributed_statement] = STATE(112), + [sym_statement] = STATE(83), + [sym_labeled_statement] = STATE(112), + [sym_expression_statement] = STATE(112), + [sym_if_statement] = STATE(112), + [sym_switch_statement] = STATE(112), + [sym_case_statement] = STATE(112), + [sym_while_statement] = STATE(112), + [sym_do_statement] = STATE(112), + [sym_for_statement] = STATE(112), + [sym_return_statement] = STATE(112), + [sym_break_statement] = STATE(112), + [sym_continue_statement] = STATE(112), + [sym_goto_statement] = STATE(112), + [sym_seh_try_statement] = STATE(112), + [sym_seh_leave_statement] = STATE(112), + [sym_expression] = STATE(1029), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1759), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_attributed_declarator_repeat1] = STATE(349), + [sym_identifier] = ACTIONS(1405), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym___try] = ACTIONS(155), + [anon_sym___leave] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [367] = { - [sym_attribute_declaration] = STATE(403), - [sym_compound_statement] = STATE(212), - [sym_attributed_statement] = STATE(211), - [sym_labeled_statement] = STATE(208), - [sym_expression_statement] = STATE(207), - [sym_if_statement] = STATE(206), - [sym_switch_statement] = STATE(202), - [sym_case_statement] = STATE(194), - [sym_while_statement] = STATE(192), - [sym_do_statement] = STATE(191), - [sym_for_statement] = STATE(189), - [sym_return_statement] = STATE(186), - [sym_break_statement] = STATE(185), - [sym_continue_statement] = STATE(184), - [sym_goto_statement] = STATE(183), - [sym_seh_try_statement] = STATE(159), - [sym_seh_leave_statement] = STATE(180), - [sym__expression] = STATE(1088), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1880), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [aux_sym_attributed_declarator_repeat1] = STATE(403), - [sym_identifier] = ACTIONS(1385), + [317] = { + [sym_attribute_declaration] = STATE(318), + [sym_compound_statement] = STATE(229), + [sym_attributed_statement] = STATE(229), + [sym_statement] = STATE(236), + [sym_labeled_statement] = STATE(229), + [sym_expression_statement] = STATE(229), + [sym_if_statement] = STATE(229), + [sym_switch_statement] = STATE(229), + [sym_case_statement] = STATE(229), + [sym_while_statement] = STATE(229), + [sym_do_statement] = STATE(229), + [sym_for_statement] = STATE(229), + [sym_return_statement] = STATE(229), + [sym_break_statement] = STATE(229), + [sym_continue_statement] = STATE(229), + [sym_goto_statement] = STATE(229), + [sym_seh_try_statement] = STATE(229), + [sym_seh_leave_statement] = STATE(229), + [sym_expression] = STATE(1004), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1799), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_attributed_declarator_repeat1] = STATE(318), + [sym_identifier] = ACTIONS(1407), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -53267,22 +48137,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(980), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1387), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_case] = ACTIONS(63), - [anon_sym_default] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_return] = ACTIONS(73), - [anon_sym_break] = ACTIONS(75), - [anon_sym_continue] = ACTIONS(77), - [anon_sym_goto] = ACTIONS(79), - [anon_sym___try] = ACTIONS(982), - [anon_sym___leave] = ACTIONS(984), + [anon_sym_SEMI] = ACTIONS(424), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(432), + [anon_sym_if] = ACTIONS(434), + [anon_sym_switch] = ACTIONS(436), + [anon_sym_case] = ACTIONS(438), + [anon_sym_default] = ACTIONS(440), + [anon_sym_while] = ACTIONS(442), + [anon_sym_do] = ACTIONS(444), + [anon_sym_for] = ACTIONS(446), + [anon_sym_return] = ACTIONS(448), + [anon_sym_break] = ACTIONS(450), + [anon_sym_continue] = ACTIONS(452), + [anon_sym_goto] = ACTIONS(454), + [anon_sym___try] = ACTIONS(456), + [anon_sym___leave] = ACTIONS(458), [anon_sym_DASH_DASH] = ACTIONS(81), [anon_sym_PLUS_PLUS] = ACTIONS(81), [anon_sym_sizeof] = ACTIONS(83), @@ -53312,51 +48182,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [368] = { - [sym_attribute_declaration] = STATE(405), - [sym_compound_statement] = STATE(100), - [sym_attributed_statement] = STATE(100), - [sym_labeled_statement] = STATE(100), - [sym_expression_statement] = STATE(100), - [sym_if_statement] = STATE(100), - [sym_switch_statement] = STATE(100), - [sym_case_statement] = STATE(100), - [sym_while_statement] = STATE(100), - [sym_do_statement] = STATE(100), - [sym_for_statement] = STATE(100), - [sym_return_statement] = STATE(100), - [sym_break_statement] = STATE(100), - [sym_continue_statement] = STATE(100), - [sym_goto_statement] = STATE(100), - [sym_seh_try_statement] = STATE(100), - [sym_seh_leave_statement] = STATE(100), - [sym__expression] = STATE(1097), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1839), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [aux_sym_attributed_declarator_repeat1] = STATE(405), - [sym_identifier] = ACTIONS(1389), + [318] = { + [sym_attribute_declaration] = STATE(318), + [sym_compound_statement] = STATE(229), + [sym_attributed_statement] = STATE(229), + [sym_statement] = STATE(236), + [sym_labeled_statement] = STATE(229), + [sym_expression_statement] = STATE(229), + [sym_if_statement] = STATE(229), + [sym_switch_statement] = STATE(229), + [sym_case_statement] = STATE(229), + [sym_while_statement] = STATE(229), + [sym_do_statement] = STATE(229), + [sym_for_statement] = STATE(229), + [sym_return_statement] = STATE(229), + [sym_break_statement] = STATE(229), + [sym_continue_statement] = STATE(229), + [sym_goto_statement] = STATE(229), + [sym_seh_try_statement] = STATE(229), + [sym_seh_leave_statement] = STATE(229), + [sym_expression] = STATE(1004), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1799), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_attributed_declarator_repeat1] = STATE(318), + [sym_identifier] = ACTIONS(1409), + [anon_sym_LPAREN2] = ACTIONS(1412), + [anon_sym_BANG] = ACTIONS(1415), + [anon_sym_TILDE] = ACTIONS(1415), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_STAR] = ACTIONS(1421), + [anon_sym_AMP] = ACTIONS(1421), + [anon_sym_SEMI] = ACTIONS(1424), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1427), + [anon_sym_LBRACE] = ACTIONS(1430), + [anon_sym_if] = ACTIONS(1433), + [anon_sym_switch] = ACTIONS(1436), + [anon_sym_case] = ACTIONS(1439), + [anon_sym_default] = ACTIONS(1442), + [anon_sym_while] = ACTIONS(1445), + [anon_sym_do] = ACTIONS(1448), + [anon_sym_for] = ACTIONS(1451), + [anon_sym_return] = ACTIONS(1454), + [anon_sym_break] = ACTIONS(1457), + [anon_sym_continue] = ACTIONS(1460), + [anon_sym_goto] = ACTIONS(1463), + [anon_sym___try] = ACTIONS(1466), + [anon_sym___leave] = ACTIONS(1469), + [anon_sym_DASH_DASH] = ACTIONS(1472), + [anon_sym_PLUS_PLUS] = ACTIONS(1472), + [anon_sym_sizeof] = ACTIONS(1475), + [anon_sym___alignof__] = ACTIONS(1478), + [anon_sym___alignof] = ACTIONS(1478), + [anon_sym__alignof] = ACTIONS(1478), + [anon_sym_alignof] = ACTIONS(1478), + [anon_sym__Alignof] = ACTIONS(1478), + [anon_sym_offsetof] = ACTIONS(1481), + [anon_sym__Generic] = ACTIONS(1484), + [anon_sym_asm] = ACTIONS(1487), + [anon_sym___asm__] = ACTIONS(1487), + [sym_number_literal] = ACTIONS(1490), + [anon_sym_L_SQUOTE] = ACTIONS(1493), + [anon_sym_u_SQUOTE] = ACTIONS(1493), + [anon_sym_U_SQUOTE] = ACTIONS(1493), + [anon_sym_u8_SQUOTE] = ACTIONS(1493), + [anon_sym_SQUOTE] = ACTIONS(1493), + [anon_sym_L_DQUOTE] = ACTIONS(1496), + [anon_sym_u_DQUOTE] = ACTIONS(1496), + [anon_sym_U_DQUOTE] = ACTIONS(1496), + [anon_sym_u8_DQUOTE] = ACTIONS(1496), + [anon_sym_DQUOTE] = ACTIONS(1496), + [sym_true] = ACTIONS(1499), + [sym_false] = ACTIONS(1499), + [anon_sym_NULL] = ACTIONS(1502), + [anon_sym_nullptr] = ACTIONS(1502), + [sym_comment] = ACTIONS(3), + }, + [319] = { + [sym_attribute_declaration] = STATE(349), + [sym_compound_statement] = STATE(112), + [sym_attributed_statement] = STATE(112), + [sym_statement] = STATE(81), + [sym_labeled_statement] = STATE(112), + [sym_expression_statement] = STATE(112), + [sym_if_statement] = STATE(112), + [sym_switch_statement] = STATE(112), + [sym_case_statement] = STATE(112), + [sym_while_statement] = STATE(112), + [sym_do_statement] = STATE(112), + [sym_for_statement] = STATE(112), + [sym_return_statement] = STATE(112), + [sym_break_statement] = STATE(112), + [sym_continue_statement] = STATE(112), + [sym_goto_statement] = STATE(112), + [sym_seh_try_statement] = STATE(112), + [sym_seh_leave_statement] = STATE(112), + [sym_expression] = STATE(1029), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1759), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_attributed_declarator_repeat1] = STATE(349), + [sym_identifier] = ACTIONS(1405), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -53365,7 +48332,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym_SEMI] = ACTIONS(123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1387), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), [anon_sym_LBRACE] = ACTIONS(131), [anon_sym_if] = ACTIONS(133), [anon_sym_switch] = ACTIONS(135), @@ -53409,51 +48376,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [369] = { - [sym_attribute_declaration] = STATE(381), - [sym_compound_statement] = STATE(2012), - [sym_attributed_statement] = STATE(2012), - [sym_labeled_statement] = STATE(2012), - [sym_expression_statement] = STATE(2012), - [sym_if_statement] = STATE(2012), - [sym_switch_statement] = STATE(2012), - [sym_case_statement] = STATE(2012), - [sym_while_statement] = STATE(2012), - [sym_do_statement] = STATE(2012), - [sym_for_statement] = STATE(2012), - [sym_return_statement] = STATE(2012), - [sym_break_statement] = STATE(2012), - [sym_continue_statement] = STATE(2012), - [sym_goto_statement] = STATE(2012), - [sym_seh_try_statement] = STATE(2012), - [sym_seh_leave_statement] = STATE(2012), - [sym__expression] = STATE(1089), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1976), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [aux_sym_attributed_declarator_repeat1] = STATE(381), - [sym_identifier] = ACTIONS(1391), + [320] = { + [sym_attribute_declaration] = STATE(317), + [sym_compound_statement] = STATE(229), + [sym_attributed_statement] = STATE(229), + [sym_statement] = STATE(240), + [sym_labeled_statement] = STATE(229), + [sym_expression_statement] = STATE(229), + [sym_if_statement] = STATE(229), + [sym_switch_statement] = STATE(229), + [sym_case_statement] = STATE(229), + [sym_while_statement] = STATE(229), + [sym_do_statement] = STATE(229), + [sym_for_statement] = STATE(229), + [sym_return_statement] = STATE(229), + [sym_break_statement] = STATE(229), + [sym_continue_statement] = STATE(229), + [sym_goto_statement] = STATE(229), + [sym_seh_try_statement] = STATE(229), + [sym_seh_leave_statement] = STATE(229), + [sym_expression] = STATE(1004), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1799), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_attributed_declarator_repeat1] = STATE(317), + [sym_identifier] = ACTIONS(1407), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -53461,22 +48428,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(368), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1387), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1088), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_case] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1395), - [anon_sym_while] = ACTIONS(1090), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(1092), - [anon_sym_return] = ACTIONS(73), - [anon_sym_break] = ACTIONS(75), - [anon_sym_continue] = ACTIONS(77), - [anon_sym_goto] = ACTIONS(79), - [anon_sym___try] = ACTIONS(1094), - [anon_sym___leave] = ACTIONS(404), + [anon_sym_SEMI] = ACTIONS(424), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(432), + [anon_sym_if] = ACTIONS(434), + [anon_sym_switch] = ACTIONS(436), + [anon_sym_case] = ACTIONS(438), + [anon_sym_default] = ACTIONS(440), + [anon_sym_while] = ACTIONS(442), + [anon_sym_do] = ACTIONS(444), + [anon_sym_for] = ACTIONS(446), + [anon_sym_return] = ACTIONS(448), + [anon_sym_break] = ACTIONS(450), + [anon_sym_continue] = ACTIONS(452), + [anon_sym_goto] = ACTIONS(454), + [anon_sym___try] = ACTIONS(456), + [anon_sym___leave] = ACTIONS(458), [anon_sym_DASH_DASH] = ACTIONS(81), [anon_sym_PLUS_PLUS] = ACTIONS(81), [anon_sym_sizeof] = ACTIONS(83), @@ -53506,51 +48473,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [370] = { - [sym_attribute_declaration] = STATE(405), - [sym_compound_statement] = STATE(104), - [sym_attributed_statement] = STATE(104), - [sym_labeled_statement] = STATE(104), - [sym_expression_statement] = STATE(104), - [sym_if_statement] = STATE(104), - [sym_switch_statement] = STATE(104), - [sym_case_statement] = STATE(104), - [sym_while_statement] = STATE(104), - [sym_do_statement] = STATE(104), - [sym_for_statement] = STATE(104), - [sym_return_statement] = STATE(104), - [sym_break_statement] = STATE(104), - [sym_continue_statement] = STATE(104), - [sym_goto_statement] = STATE(104), - [sym_seh_try_statement] = STATE(104), - [sym_seh_leave_statement] = STATE(104), - [sym__expression] = STATE(1097), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1839), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [aux_sym_attributed_declarator_repeat1] = STATE(405), - [sym_identifier] = ACTIONS(1389), + [321] = { + [sym_attribute_declaration] = STATE(317), + [sym_compound_statement] = STATE(229), + [sym_attributed_statement] = STATE(229), + [sym_statement] = STATE(250), + [sym_labeled_statement] = STATE(229), + [sym_expression_statement] = STATE(229), + [sym_if_statement] = STATE(229), + [sym_switch_statement] = STATE(229), + [sym_case_statement] = STATE(229), + [sym_while_statement] = STATE(229), + [sym_do_statement] = STATE(229), + [sym_for_statement] = STATE(229), + [sym_return_statement] = STATE(229), + [sym_break_statement] = STATE(229), + [sym_continue_statement] = STATE(229), + [sym_goto_statement] = STATE(229), + [sym_seh_try_statement] = STATE(229), + [sym_seh_leave_statement] = STATE(229), + [sym_expression] = STATE(1004), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1799), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_attributed_declarator_repeat1] = STATE(317), + [sym_identifier] = ACTIONS(1407), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -53558,22 +48525,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1387), - [anon_sym_LBRACE] = ACTIONS(131), - [anon_sym_if] = ACTIONS(133), - [anon_sym_switch] = ACTIONS(135), - [anon_sym_case] = ACTIONS(137), - [anon_sym_default] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_do] = ACTIONS(143), - [anon_sym_for] = ACTIONS(145), - [anon_sym_return] = ACTIONS(147), - [anon_sym_break] = ACTIONS(149), - [anon_sym_continue] = ACTIONS(151), - [anon_sym_goto] = ACTIONS(153), - [anon_sym___try] = ACTIONS(155), - [anon_sym___leave] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(424), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(432), + [anon_sym_if] = ACTIONS(434), + [anon_sym_switch] = ACTIONS(436), + [anon_sym_case] = ACTIONS(438), + [anon_sym_default] = ACTIONS(440), + [anon_sym_while] = ACTIONS(442), + [anon_sym_do] = ACTIONS(444), + [anon_sym_for] = ACTIONS(446), + [anon_sym_return] = ACTIONS(448), + [anon_sym_break] = ACTIONS(450), + [anon_sym_continue] = ACTIONS(452), + [anon_sym_goto] = ACTIONS(454), + [anon_sym___try] = ACTIONS(456), + [anon_sym___leave] = ACTIONS(458), [anon_sym_DASH_DASH] = ACTIONS(81), [anon_sym_PLUS_PLUS] = ACTIONS(81), [anon_sym_sizeof] = ACTIONS(83), @@ -53603,51 +48570,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [371] = { - [sym_attribute_declaration] = STATE(405), - [sym_compound_statement] = STATE(108), - [sym_attributed_statement] = STATE(118), - [sym_labeled_statement] = STATE(119), - [sym_expression_statement] = STATE(123), - [sym_if_statement] = STATE(120), - [sym_switch_statement] = STATE(76), - [sym_case_statement] = STATE(115), - [sym_while_statement] = STATE(111), - [sym_do_statement] = STATE(107), - [sym_for_statement] = STATE(102), - [sym_return_statement] = STATE(98), - [sym_break_statement] = STATE(97), - [sym_continue_statement] = STATE(95), - [sym_goto_statement] = STATE(90), - [sym_seh_try_statement] = STATE(86), - [sym_seh_leave_statement] = STATE(85), - [sym__expression] = STATE(1097), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1839), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [aux_sym_attributed_declarator_repeat1] = STATE(405), - [sym_identifier] = ACTIONS(1389), + [322] = { + [sym_attribute_declaration] = STATE(317), + [sym_compound_statement] = STATE(229), + [sym_attributed_statement] = STATE(229), + [sym_statement] = STATE(143), + [sym_labeled_statement] = STATE(229), + [sym_expression_statement] = STATE(229), + [sym_if_statement] = STATE(229), + [sym_switch_statement] = STATE(229), + [sym_case_statement] = STATE(229), + [sym_while_statement] = STATE(229), + [sym_do_statement] = STATE(229), + [sym_for_statement] = STATE(229), + [sym_return_statement] = STATE(229), + [sym_break_statement] = STATE(229), + [sym_continue_statement] = STATE(229), + [sym_goto_statement] = STATE(229), + [sym_seh_try_statement] = STATE(229), + [sym_seh_leave_statement] = STATE(229), + [sym_expression] = STATE(1004), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1799), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_attributed_declarator_repeat1] = STATE(317), + [sym_identifier] = ACTIONS(1407), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -53655,22 +48622,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1387), - [anon_sym_LBRACE] = ACTIONS(131), - [anon_sym_if] = ACTIONS(133), - [anon_sym_switch] = ACTIONS(135), - [anon_sym_case] = ACTIONS(137), - [anon_sym_default] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_do] = ACTIONS(143), - [anon_sym_for] = ACTIONS(145), - [anon_sym_return] = ACTIONS(147), - [anon_sym_break] = ACTIONS(149), - [anon_sym_continue] = ACTIONS(151), - [anon_sym_goto] = ACTIONS(153), - [anon_sym___try] = ACTIONS(155), - [anon_sym___leave] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(424), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(432), + [anon_sym_if] = ACTIONS(434), + [anon_sym_switch] = ACTIONS(436), + [anon_sym_case] = ACTIONS(438), + [anon_sym_default] = ACTIONS(440), + [anon_sym_while] = ACTIONS(442), + [anon_sym_do] = ACTIONS(444), + [anon_sym_for] = ACTIONS(446), + [anon_sym_return] = ACTIONS(448), + [anon_sym_break] = ACTIONS(450), + [anon_sym_continue] = ACTIONS(452), + [anon_sym_goto] = ACTIONS(454), + [anon_sym___try] = ACTIONS(456), + [anon_sym___leave] = ACTIONS(458), [anon_sym_DASH_DASH] = ACTIONS(81), [anon_sym_PLUS_PLUS] = ACTIONS(81), [anon_sym_sizeof] = ACTIONS(83), @@ -53700,148 +48667,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [372] = { - [sym_attribute_declaration] = STATE(372), - [sym_compound_statement] = STATE(181), - [sym_attributed_statement] = STATE(181), - [sym_labeled_statement] = STATE(181), - [sym_expression_statement] = STATE(181), - [sym_if_statement] = STATE(181), - [sym_switch_statement] = STATE(181), - [sym_case_statement] = STATE(181), - [sym_while_statement] = STATE(181), - [sym_do_statement] = STATE(181), - [sym_for_statement] = STATE(181), - [sym_return_statement] = STATE(181), - [sym_break_statement] = STATE(181), - [sym_continue_statement] = STATE(181), - [sym_goto_statement] = STATE(181), - [sym_seh_try_statement] = STATE(181), - [sym_seh_leave_statement] = STATE(181), - [sym__expression] = STATE(1088), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1880), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [aux_sym_attributed_declarator_repeat1] = STATE(372), - [sym_identifier] = ACTIONS(1397), - [anon_sym_LPAREN2] = ACTIONS(1400), - [anon_sym_BANG] = ACTIONS(1403), - [anon_sym_TILDE] = ACTIONS(1403), - [anon_sym_DASH] = ACTIONS(1406), - [anon_sym_PLUS] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(1409), - [anon_sym_AMP] = ACTIONS(1409), - [anon_sym_SEMI] = ACTIONS(1412), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1415), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_if] = ACTIONS(1421), - [anon_sym_switch] = ACTIONS(1424), - [anon_sym_case] = ACTIONS(1427), - [anon_sym_default] = ACTIONS(1430), - [anon_sym_while] = ACTIONS(1433), - [anon_sym_do] = ACTIONS(1436), - [anon_sym_for] = ACTIONS(1439), - [anon_sym_return] = ACTIONS(1442), - [anon_sym_break] = ACTIONS(1445), - [anon_sym_continue] = ACTIONS(1448), - [anon_sym_goto] = ACTIONS(1451), - [anon_sym___try] = ACTIONS(1454), - [anon_sym___leave] = ACTIONS(1457), - [anon_sym_DASH_DASH] = ACTIONS(1460), - [anon_sym_PLUS_PLUS] = ACTIONS(1460), - [anon_sym_sizeof] = ACTIONS(1463), - [anon_sym___alignof__] = ACTIONS(1466), - [anon_sym___alignof] = ACTIONS(1466), - [anon_sym__alignof] = ACTIONS(1466), - [anon_sym_alignof] = ACTIONS(1466), - [anon_sym__Alignof] = ACTIONS(1466), - [anon_sym_offsetof] = ACTIONS(1469), - [anon_sym__Generic] = ACTIONS(1472), - [anon_sym_asm] = ACTIONS(1475), - [anon_sym___asm__] = ACTIONS(1475), - [sym_number_literal] = ACTIONS(1478), - [anon_sym_L_SQUOTE] = ACTIONS(1481), - [anon_sym_u_SQUOTE] = ACTIONS(1481), - [anon_sym_U_SQUOTE] = ACTIONS(1481), - [anon_sym_u8_SQUOTE] = ACTIONS(1481), - [anon_sym_SQUOTE] = ACTIONS(1481), - [anon_sym_L_DQUOTE] = ACTIONS(1484), - [anon_sym_u_DQUOTE] = ACTIONS(1484), - [anon_sym_U_DQUOTE] = ACTIONS(1484), - [anon_sym_u8_DQUOTE] = ACTIONS(1484), - [anon_sym_DQUOTE] = ACTIONS(1484), - [sym_true] = ACTIONS(1487), - [sym_false] = ACTIONS(1487), - [anon_sym_NULL] = ACTIONS(1490), - [anon_sym_nullptr] = ACTIONS(1490), + [323] = { + [sym_attribute_declaration] = STATE(347), + [sym_compound_statement] = STATE(159), + [sym_attributed_statement] = STATE(159), + [sym_statement] = STATE(195), + [sym_labeled_statement] = STATE(159), + [sym_expression_statement] = STATE(159), + [sym_if_statement] = STATE(159), + [sym_switch_statement] = STATE(159), + [sym_case_statement] = STATE(159), + [sym_while_statement] = STATE(159), + [sym_do_statement] = STATE(159), + [sym_for_statement] = STATE(159), + [sym_return_statement] = STATE(159), + [sym_break_statement] = STATE(159), + [sym_continue_statement] = STATE(159), + [sym_goto_statement] = STATE(159), + [sym_seh_try_statement] = STATE(159), + [sym_seh_leave_statement] = STATE(159), + [sym_expression] = STATE(1019), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1826), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_attributed_declarator_repeat1] = STATE(347), + [sym_identifier] = ACTIONS(1403), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(930), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(59), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_case] = ACTIONS(63), + [anon_sym_default] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym___try] = ACTIONS(932), + [anon_sym___leave] = ACTIONS(934), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [373] = { - [sym_attribute_declaration] = STATE(381), - [sym_compound_statement] = STATE(452), - [sym_attributed_statement] = STATE(452), - [sym_labeled_statement] = STATE(452), - [sym_expression_statement] = STATE(452), - [sym_if_statement] = STATE(452), - [sym_switch_statement] = STATE(452), - [sym_case_statement] = STATE(452), - [sym_while_statement] = STATE(452), - [sym_do_statement] = STATE(452), - [sym_for_statement] = STATE(452), - [sym_return_statement] = STATE(452), - [sym_break_statement] = STATE(452), - [sym_continue_statement] = STATE(452), - [sym_goto_statement] = STATE(452), - [sym_seh_try_statement] = STATE(452), - [sym_seh_leave_statement] = STATE(452), - [sym__expression] = STATE(1089), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1976), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [aux_sym_attributed_declarator_repeat1] = STATE(381), - [sym_identifier] = ACTIONS(1391), + [324] = { + [sym_attribute_declaration] = STATE(314), + [sym_compound_statement] = STATE(172), + [sym_attributed_statement] = STATE(172), + [sym_statement] = STATE(400), + [sym_labeled_statement] = STATE(172), + [sym_expression_statement] = STATE(172), + [sym_if_statement] = STATE(172), + [sym_switch_statement] = STATE(172), + [sym_case_statement] = STATE(172), + [sym_while_statement] = STATE(172), + [sym_do_statement] = STATE(172), + [sym_for_statement] = STATE(172), + [sym_return_statement] = STATE(172), + [sym_break_statement] = STATE(172), + [sym_continue_statement] = STATE(172), + [sym_goto_statement] = STATE(172), + [sym_seh_try_statement] = STATE(172), + [sym_seh_leave_statement] = STATE(172), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_attributed_declarator_repeat1] = STATE(314), + [sym_identifier] = ACTIONS(1395), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -53850,12 +48817,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym_SEMI] = ACTIONS(368), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1387), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_if] = ACTIONS(1088), [anon_sym_switch] = ACTIONS(61), - [anon_sym_case] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1395), + [anon_sym_case] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(1401), [anon_sym_while] = ACTIONS(1090), [anon_sym_do] = ACTIONS(69), [anon_sym_for] = ACTIONS(1092), @@ -53894,51 +48861,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [374] = { - [sym_attribute_declaration] = STATE(381), - [sym_compound_statement] = STATE(289), - [sym_attributed_statement] = STATE(289), - [sym_labeled_statement] = STATE(289), - [sym_expression_statement] = STATE(289), - [sym_if_statement] = STATE(289), - [sym_switch_statement] = STATE(289), - [sym_case_statement] = STATE(289), - [sym_while_statement] = STATE(289), - [sym_do_statement] = STATE(289), - [sym_for_statement] = STATE(289), - [sym_return_statement] = STATE(289), - [sym_break_statement] = STATE(289), - [sym_continue_statement] = STATE(289), - [sym_goto_statement] = STATE(289), - [sym_seh_try_statement] = STATE(289), - [sym_seh_leave_statement] = STATE(289), - [sym__expression] = STATE(1089), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1976), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [aux_sym_attributed_declarator_repeat1] = STATE(381), - [sym_identifier] = ACTIONS(1391), + [325] = { + [sym_attribute_declaration] = STATE(314), + [sym_compound_statement] = STATE(172), + [sym_attributed_statement] = STATE(172), + [sym_statement] = STATE(1848), + [sym_labeled_statement] = STATE(172), + [sym_expression_statement] = STATE(172), + [sym_if_statement] = STATE(172), + [sym_switch_statement] = STATE(172), + [sym_case_statement] = STATE(172), + [sym_while_statement] = STATE(172), + [sym_do_statement] = STATE(172), + [sym_for_statement] = STATE(172), + [sym_return_statement] = STATE(172), + [sym_break_statement] = STATE(172), + [sym_continue_statement] = STATE(172), + [sym_goto_statement] = STATE(172), + [sym_seh_try_statement] = STATE(172), + [sym_seh_leave_statement] = STATE(172), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_attributed_declarator_repeat1] = STATE(314), + [sym_identifier] = ACTIONS(1395), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -53947,12 +48914,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym_SEMI] = ACTIONS(368), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1387), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_if] = ACTIONS(1088), [anon_sym_switch] = ACTIONS(61), - [anon_sym_case] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1395), + [anon_sym_case] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(1401), [anon_sym_while] = ACTIONS(1090), [anon_sym_do] = ACTIONS(69), [anon_sym_for] = ACTIONS(1092), @@ -53991,51 +48958,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [375] = { - [sym_attribute_declaration] = STATE(381), - [sym_compound_statement] = STATE(301), - [sym_attributed_statement] = STATE(301), - [sym_labeled_statement] = STATE(301), - [sym_expression_statement] = STATE(301), - [sym_if_statement] = STATE(301), - [sym_switch_statement] = STATE(301), - [sym_case_statement] = STATE(301), - [sym_while_statement] = STATE(301), - [sym_do_statement] = STATE(301), - [sym_for_statement] = STATE(301), - [sym_return_statement] = STATE(301), - [sym_break_statement] = STATE(301), - [sym_continue_statement] = STATE(301), - [sym_goto_statement] = STATE(301), - [sym_seh_try_statement] = STATE(301), - [sym_seh_leave_statement] = STATE(301), - [sym__expression] = STATE(1089), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1976), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [aux_sym_attributed_declarator_repeat1] = STATE(381), - [sym_identifier] = ACTIONS(1391), + [326] = { + [sym_attribute_declaration] = STATE(314), + [sym_compound_statement] = STATE(172), + [sym_attributed_statement] = STATE(172), + [sym_statement] = STATE(210), + [sym_labeled_statement] = STATE(172), + [sym_expression_statement] = STATE(172), + [sym_if_statement] = STATE(172), + [sym_switch_statement] = STATE(172), + [sym_case_statement] = STATE(172), + [sym_while_statement] = STATE(172), + [sym_do_statement] = STATE(172), + [sym_for_statement] = STATE(172), + [sym_return_statement] = STATE(172), + [sym_break_statement] = STATE(172), + [sym_continue_statement] = STATE(172), + [sym_goto_statement] = STATE(172), + [sym_seh_try_statement] = STATE(172), + [sym_seh_leave_statement] = STATE(172), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_attributed_declarator_repeat1] = STATE(314), + [sym_identifier] = ACTIONS(1395), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -54044,12 +49011,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym_SEMI] = ACTIONS(368), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1387), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_if] = ACTIONS(1088), [anon_sym_switch] = ACTIONS(61), - [anon_sym_case] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1395), + [anon_sym_case] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(1401), [anon_sym_while] = ACTIONS(1090), [anon_sym_do] = ACTIONS(69), [anon_sym_for] = ACTIONS(1092), @@ -54088,148 +49055,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [376] = { - [sym_attribute_declaration] = STATE(376), - [sym_compound_statement] = STATE(181), - [sym_attributed_statement] = STATE(181), - [sym_labeled_statement] = STATE(181), - [sym_expression_statement] = STATE(181), - [sym_if_statement] = STATE(181), - [sym_switch_statement] = STATE(181), - [sym_case_statement] = STATE(181), - [sym_while_statement] = STATE(181), - [sym_do_statement] = STATE(181), - [sym_for_statement] = STATE(181), - [sym_return_statement] = STATE(181), - [sym_break_statement] = STATE(181), - [sym_continue_statement] = STATE(181), - [sym_goto_statement] = STATE(181), - [sym_seh_try_statement] = STATE(181), - [sym_seh_leave_statement] = STATE(181), - [sym__expression] = STATE(1089), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1976), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [aux_sym_attributed_declarator_repeat1] = STATE(376), - [sym_identifier] = ACTIONS(1493), - [anon_sym_LPAREN2] = ACTIONS(1400), - [anon_sym_BANG] = ACTIONS(1403), - [anon_sym_TILDE] = ACTIONS(1403), - [anon_sym_DASH] = ACTIONS(1406), - [anon_sym_PLUS] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(1409), - [anon_sym_AMP] = ACTIONS(1409), - [anon_sym_SEMI] = ACTIONS(1496), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1415), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_if] = ACTIONS(1499), - [anon_sym_switch] = ACTIONS(1424), - [anon_sym_case] = ACTIONS(1502), - [anon_sym_default] = ACTIONS(1505), - [anon_sym_while] = ACTIONS(1508), - [anon_sym_do] = ACTIONS(1436), - [anon_sym_for] = ACTIONS(1511), - [anon_sym_return] = ACTIONS(1442), - [anon_sym_break] = ACTIONS(1445), - [anon_sym_continue] = ACTIONS(1448), - [anon_sym_goto] = ACTIONS(1451), - [anon_sym___try] = ACTIONS(1514), - [anon_sym___leave] = ACTIONS(1517), - [anon_sym_DASH_DASH] = ACTIONS(1460), - [anon_sym_PLUS_PLUS] = ACTIONS(1460), - [anon_sym_sizeof] = ACTIONS(1463), - [anon_sym___alignof__] = ACTIONS(1466), - [anon_sym___alignof] = ACTIONS(1466), - [anon_sym__alignof] = ACTIONS(1466), - [anon_sym_alignof] = ACTIONS(1466), - [anon_sym__Alignof] = ACTIONS(1466), - [anon_sym_offsetof] = ACTIONS(1469), - [anon_sym__Generic] = ACTIONS(1472), - [anon_sym_asm] = ACTIONS(1475), - [anon_sym___asm__] = ACTIONS(1475), - [sym_number_literal] = ACTIONS(1478), - [anon_sym_L_SQUOTE] = ACTIONS(1481), - [anon_sym_u_SQUOTE] = ACTIONS(1481), - [anon_sym_U_SQUOTE] = ACTIONS(1481), - [anon_sym_u8_SQUOTE] = ACTIONS(1481), - [anon_sym_SQUOTE] = ACTIONS(1481), - [anon_sym_L_DQUOTE] = ACTIONS(1484), - [anon_sym_u_DQUOTE] = ACTIONS(1484), - [anon_sym_U_DQUOTE] = ACTIONS(1484), - [anon_sym_u8_DQUOTE] = ACTIONS(1484), - [anon_sym_DQUOTE] = ACTIONS(1484), - [sym_true] = ACTIONS(1487), - [sym_false] = ACTIONS(1487), - [anon_sym_NULL] = ACTIONS(1490), - [anon_sym_nullptr] = ACTIONS(1490), - [sym_comment] = ACTIONS(3), - }, - [377] = { - [sym_attribute_declaration] = STATE(381), - [sym_compound_statement] = STATE(219), - [sym_attributed_statement] = STATE(219), - [sym_labeled_statement] = STATE(219), - [sym_expression_statement] = STATE(219), - [sym_if_statement] = STATE(219), - [sym_switch_statement] = STATE(219), - [sym_case_statement] = STATE(219), - [sym_while_statement] = STATE(219), - [sym_do_statement] = STATE(219), - [sym_for_statement] = STATE(219), - [sym_return_statement] = STATE(219), - [sym_break_statement] = STATE(219), - [sym_continue_statement] = STATE(219), - [sym_goto_statement] = STATE(219), - [sym_seh_try_statement] = STATE(219), - [sym_seh_leave_statement] = STATE(219), - [sym__expression] = STATE(1089), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1976), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [aux_sym_attributed_declarator_repeat1] = STATE(381), - [sym_identifier] = ACTIONS(1391), + [327] = { + [sym_attribute_declaration] = STATE(314), + [sym_compound_statement] = STATE(172), + [sym_attributed_statement] = STATE(172), + [sym_statement] = STATE(195), + [sym_labeled_statement] = STATE(172), + [sym_expression_statement] = STATE(172), + [sym_if_statement] = STATE(172), + [sym_switch_statement] = STATE(172), + [sym_case_statement] = STATE(172), + [sym_while_statement] = STATE(172), + [sym_do_statement] = STATE(172), + [sym_for_statement] = STATE(172), + [sym_return_statement] = STATE(172), + [sym_break_statement] = STATE(172), + [sym_continue_statement] = STATE(172), + [sym_goto_statement] = STATE(172), + [sym_seh_try_statement] = STATE(172), + [sym_seh_leave_statement] = STATE(172), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_attributed_declarator_repeat1] = STATE(314), + [sym_identifier] = ACTIONS(1395), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -54238,12 +49108,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym_SEMI] = ACTIONS(368), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1387), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_if] = ACTIONS(1088), [anon_sym_switch] = ACTIONS(61), - [anon_sym_case] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1395), + [anon_sym_case] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(1401), [anon_sym_while] = ACTIONS(1090), [anon_sym_do] = ACTIONS(69), [anon_sym_for] = ACTIONS(1092), @@ -54282,51 +49152,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [378] = { - [sym_attribute_declaration] = STATE(381), - [sym_compound_statement] = STATE(212), - [sym_attributed_statement] = STATE(211), - [sym_labeled_statement] = STATE(208), - [sym_expression_statement] = STATE(207), - [sym_if_statement] = STATE(206), - [sym_switch_statement] = STATE(202), - [sym_case_statement] = STATE(194), - [sym_while_statement] = STATE(192), - [sym_do_statement] = STATE(191), - [sym_for_statement] = STATE(189), - [sym_return_statement] = STATE(186), - [sym_break_statement] = STATE(185), - [sym_continue_statement] = STATE(184), - [sym_goto_statement] = STATE(183), - [sym_seh_try_statement] = STATE(159), - [sym_seh_leave_statement] = STATE(180), - [sym__expression] = STATE(1089), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1976), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [aux_sym_attributed_declarator_repeat1] = STATE(381), - [sym_identifier] = ACTIONS(1391), + [328] = { + [sym_attribute_declaration] = STATE(314), + [sym_compound_statement] = STATE(172), + [sym_attributed_statement] = STATE(172), + [sym_statement] = STATE(1962), + [sym_labeled_statement] = STATE(172), + [sym_expression_statement] = STATE(172), + [sym_if_statement] = STATE(172), + [sym_switch_statement] = STATE(172), + [sym_case_statement] = STATE(172), + [sym_while_statement] = STATE(172), + [sym_do_statement] = STATE(172), + [sym_for_statement] = STATE(172), + [sym_return_statement] = STATE(172), + [sym_break_statement] = STATE(172), + [sym_continue_statement] = STATE(172), + [sym_goto_statement] = STATE(172), + [sym_seh_try_statement] = STATE(172), + [sym_seh_leave_statement] = STATE(172), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_attributed_declarator_repeat1] = STATE(314), + [sym_identifier] = ACTIONS(1395), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -54335,12 +49205,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym_SEMI] = ACTIONS(368), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1387), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_if] = ACTIONS(1088), [anon_sym_switch] = ACTIONS(61), - [anon_sym_case] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1395), + [anon_sym_case] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(1401), [anon_sym_while] = ACTIONS(1090), [anon_sym_do] = ACTIONS(69), [anon_sym_for] = ACTIONS(1092), @@ -54379,51 +49249,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [379] = { - [sym_attribute_declaration] = STATE(393), - [sym_compound_statement] = STATE(291), - [sym_attributed_statement] = STATE(291), - [sym_labeled_statement] = STATE(291), - [sym_expression_statement] = STATE(291), - [sym_if_statement] = STATE(291), - [sym_switch_statement] = STATE(291), - [sym_case_statement] = STATE(291), - [sym_while_statement] = STATE(291), - [sym_do_statement] = STATE(291), - [sym_for_statement] = STATE(291), - [sym_return_statement] = STATE(291), - [sym_break_statement] = STATE(291), - [sym_continue_statement] = STATE(291), - [sym_goto_statement] = STATE(291), - [sym_seh_try_statement] = STATE(291), - [sym_seh_leave_statement] = STATE(291), - [sym__expression] = STATE(1089), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1976), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [aux_sym_attributed_declarator_repeat1] = STATE(393), - [sym_identifier] = ACTIONS(1520), + [329] = { + [sym_attribute_declaration] = STATE(317), + [sym_compound_statement] = STATE(229), + [sym_attributed_statement] = STATE(229), + [sym_statement] = STATE(208), + [sym_labeled_statement] = STATE(229), + [sym_expression_statement] = STATE(229), + [sym_if_statement] = STATE(229), + [sym_switch_statement] = STATE(229), + [sym_case_statement] = STATE(229), + [sym_while_statement] = STATE(229), + [sym_do_statement] = STATE(229), + [sym_for_statement] = STATE(229), + [sym_return_statement] = STATE(229), + [sym_break_statement] = STATE(229), + [sym_continue_statement] = STATE(229), + [sym_goto_statement] = STATE(229), + [sym_seh_try_statement] = STATE(229), + [sym_seh_leave_statement] = STATE(229), + [sym_expression] = STATE(1004), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1799), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_attributed_declarator_repeat1] = STATE(317), + [sym_identifier] = ACTIONS(1407), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -54431,22 +49301,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(368), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1387), - [anon_sym_LBRACE] = ACTIONS(376), - [anon_sym_if] = ACTIONS(380), - [anon_sym_switch] = ACTIONS(382), - [anon_sym_case] = ACTIONS(384), - [anon_sym_default] = ACTIONS(386), - [anon_sym_while] = ACTIONS(388), - [anon_sym_do] = ACTIONS(390), - [anon_sym_for] = ACTIONS(392), - [anon_sym_return] = ACTIONS(394), - [anon_sym_break] = ACTIONS(396), - [anon_sym_continue] = ACTIONS(398), - [anon_sym_goto] = ACTIONS(400), - [anon_sym___try] = ACTIONS(402), - [anon_sym___leave] = ACTIONS(404), + [anon_sym_SEMI] = ACTIONS(424), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(432), + [anon_sym_if] = ACTIONS(434), + [anon_sym_switch] = ACTIONS(436), + [anon_sym_case] = ACTIONS(438), + [anon_sym_default] = ACTIONS(440), + [anon_sym_while] = ACTIONS(442), + [anon_sym_do] = ACTIONS(444), + [anon_sym_for] = ACTIONS(446), + [anon_sym_return] = ACTIONS(448), + [anon_sym_break] = ACTIONS(450), + [anon_sym_continue] = ACTIONS(452), + [anon_sym_goto] = ACTIONS(454), + [anon_sym___try] = ACTIONS(456), + [anon_sym___leave] = ACTIONS(458), [anon_sym_DASH_DASH] = ACTIONS(81), [anon_sym_PLUS_PLUS] = ACTIONS(81), [anon_sym_sizeof] = ACTIONS(83), @@ -54476,148 +49346,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [380] = { - [sym_attribute_declaration] = STATE(380), - [sym_compound_statement] = STATE(92), - [sym_attributed_statement] = STATE(92), - [sym_labeled_statement] = STATE(92), - [sym_expression_statement] = STATE(92), - [sym_if_statement] = STATE(92), - [sym_switch_statement] = STATE(92), - [sym_case_statement] = STATE(92), - [sym_while_statement] = STATE(92), - [sym_do_statement] = STATE(92), - [sym_for_statement] = STATE(92), - [sym_return_statement] = STATE(92), - [sym_break_statement] = STATE(92), - [sym_continue_statement] = STATE(92), - [sym_goto_statement] = STATE(92), - [sym_seh_try_statement] = STATE(92), - [sym_seh_leave_statement] = STATE(92), - [sym__expression] = STATE(1097), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1839), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [aux_sym_attributed_declarator_repeat1] = STATE(380), - [sym_identifier] = ACTIONS(1522), - [anon_sym_LPAREN2] = ACTIONS(1400), - [anon_sym_BANG] = ACTIONS(1403), - [anon_sym_TILDE] = ACTIONS(1403), - [anon_sym_DASH] = ACTIONS(1406), - [anon_sym_PLUS] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(1409), - [anon_sym_AMP] = ACTIONS(1409), - [anon_sym_SEMI] = ACTIONS(1525), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1415), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_if] = ACTIONS(1531), - [anon_sym_switch] = ACTIONS(1534), - [anon_sym_case] = ACTIONS(1537), - [anon_sym_default] = ACTIONS(1540), - [anon_sym_while] = ACTIONS(1543), - [anon_sym_do] = ACTIONS(1546), - [anon_sym_for] = ACTIONS(1549), - [anon_sym_return] = ACTIONS(1552), - [anon_sym_break] = ACTIONS(1555), - [anon_sym_continue] = ACTIONS(1558), - [anon_sym_goto] = ACTIONS(1561), - [anon_sym___try] = ACTIONS(1564), - [anon_sym___leave] = ACTIONS(1567), - [anon_sym_DASH_DASH] = ACTIONS(1460), - [anon_sym_PLUS_PLUS] = ACTIONS(1460), - [anon_sym_sizeof] = ACTIONS(1463), - [anon_sym___alignof__] = ACTIONS(1466), - [anon_sym___alignof] = ACTIONS(1466), - [anon_sym__alignof] = ACTIONS(1466), - [anon_sym_alignof] = ACTIONS(1466), - [anon_sym__Alignof] = ACTIONS(1466), - [anon_sym_offsetof] = ACTIONS(1469), - [anon_sym__Generic] = ACTIONS(1472), - [anon_sym_asm] = ACTIONS(1475), - [anon_sym___asm__] = ACTIONS(1475), - [sym_number_literal] = ACTIONS(1478), - [anon_sym_L_SQUOTE] = ACTIONS(1481), - [anon_sym_u_SQUOTE] = ACTIONS(1481), - [anon_sym_U_SQUOTE] = ACTIONS(1481), - [anon_sym_u8_SQUOTE] = ACTIONS(1481), - [anon_sym_SQUOTE] = ACTIONS(1481), - [anon_sym_L_DQUOTE] = ACTIONS(1484), - [anon_sym_u_DQUOTE] = ACTIONS(1484), - [anon_sym_U_DQUOTE] = ACTIONS(1484), - [anon_sym_u8_DQUOTE] = ACTIONS(1484), - [anon_sym_DQUOTE] = ACTIONS(1484), - [sym_true] = ACTIONS(1487), - [sym_false] = ACTIONS(1487), - [anon_sym_NULL] = ACTIONS(1490), - [anon_sym_nullptr] = ACTIONS(1490), + [330] = { + [sym_attribute_declaration] = STATE(330), + [sym_compound_statement] = STATE(172), + [sym_attributed_statement] = STATE(172), + [sym_statement] = STATE(186), + [sym_labeled_statement] = STATE(172), + [sym_expression_statement] = STATE(172), + [sym_if_statement] = STATE(172), + [sym_switch_statement] = STATE(172), + [sym_case_statement] = STATE(172), + [sym_while_statement] = STATE(172), + [sym_do_statement] = STATE(172), + [sym_for_statement] = STATE(172), + [sym_return_statement] = STATE(172), + [sym_break_statement] = STATE(172), + [sym_continue_statement] = STATE(172), + [sym_goto_statement] = STATE(172), + [sym_seh_try_statement] = STATE(172), + [sym_seh_leave_statement] = STATE(172), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_attributed_declarator_repeat1] = STATE(330), + [sym_identifier] = ACTIONS(1505), + [anon_sym_LPAREN2] = ACTIONS(1412), + [anon_sym_BANG] = ACTIONS(1415), + [anon_sym_TILDE] = ACTIONS(1415), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_STAR] = ACTIONS(1421), + [anon_sym_AMP] = ACTIONS(1421), + [anon_sym_SEMI] = ACTIONS(1508), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1427), + [anon_sym_LBRACE] = ACTIONS(1511), + [anon_sym_if] = ACTIONS(1514), + [anon_sym_switch] = ACTIONS(1517), + [anon_sym_case] = ACTIONS(1520), + [anon_sym_default] = ACTIONS(1523), + [anon_sym_while] = ACTIONS(1526), + [anon_sym_do] = ACTIONS(1529), + [anon_sym_for] = ACTIONS(1532), + [anon_sym_return] = ACTIONS(1535), + [anon_sym_break] = ACTIONS(1538), + [anon_sym_continue] = ACTIONS(1541), + [anon_sym_goto] = ACTIONS(1544), + [anon_sym___try] = ACTIONS(1547), + [anon_sym___leave] = ACTIONS(1550), + [anon_sym_DASH_DASH] = ACTIONS(1472), + [anon_sym_PLUS_PLUS] = ACTIONS(1472), + [anon_sym_sizeof] = ACTIONS(1475), + [anon_sym___alignof__] = ACTIONS(1478), + [anon_sym___alignof] = ACTIONS(1478), + [anon_sym__alignof] = ACTIONS(1478), + [anon_sym_alignof] = ACTIONS(1478), + [anon_sym__Alignof] = ACTIONS(1478), + [anon_sym_offsetof] = ACTIONS(1481), + [anon_sym__Generic] = ACTIONS(1484), + [anon_sym_asm] = ACTIONS(1487), + [anon_sym___asm__] = ACTIONS(1487), + [sym_number_literal] = ACTIONS(1490), + [anon_sym_L_SQUOTE] = ACTIONS(1493), + [anon_sym_u_SQUOTE] = ACTIONS(1493), + [anon_sym_U_SQUOTE] = ACTIONS(1493), + [anon_sym_u8_SQUOTE] = ACTIONS(1493), + [anon_sym_SQUOTE] = ACTIONS(1493), + [anon_sym_L_DQUOTE] = ACTIONS(1496), + [anon_sym_u_DQUOTE] = ACTIONS(1496), + [anon_sym_U_DQUOTE] = ACTIONS(1496), + [anon_sym_u8_DQUOTE] = ACTIONS(1496), + [anon_sym_DQUOTE] = ACTIONS(1496), + [sym_true] = ACTIONS(1499), + [sym_false] = ACTIONS(1499), + [anon_sym_NULL] = ACTIONS(1502), + [anon_sym_nullptr] = ACTIONS(1502), [sym_comment] = ACTIONS(3), }, - [381] = { - [sym_attribute_declaration] = STATE(376), - [sym_compound_statement] = STATE(181), - [sym_attributed_statement] = STATE(181), - [sym_labeled_statement] = STATE(181), - [sym_expression_statement] = STATE(181), - [sym_if_statement] = STATE(181), - [sym_switch_statement] = STATE(181), - [sym_case_statement] = STATE(181), - [sym_while_statement] = STATE(181), - [sym_do_statement] = STATE(181), - [sym_for_statement] = STATE(181), - [sym_return_statement] = STATE(181), - [sym_break_statement] = STATE(181), - [sym_continue_statement] = STATE(181), - [sym_goto_statement] = STATE(181), - [sym_seh_try_statement] = STATE(181), - [sym_seh_leave_statement] = STATE(181), - [sym__expression] = STATE(1089), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1976), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [aux_sym_attributed_declarator_repeat1] = STATE(376), - [sym_identifier] = ACTIONS(1391), + [331] = { + [sym_attribute_declaration] = STATE(352), + [sym_compound_statement] = STATE(172), + [sym_attributed_statement] = STATE(172), + [sym_statement] = STATE(176), + [sym_labeled_statement] = STATE(172), + [sym_expression_statement] = STATE(172), + [sym_if_statement] = STATE(172), + [sym_switch_statement] = STATE(172), + [sym_case_statement] = STATE(172), + [sym_while_statement] = STATE(172), + [sym_do_statement] = STATE(172), + [sym_for_statement] = STATE(172), + [sym_return_statement] = STATE(172), + [sym_break_statement] = STATE(172), + [sym_continue_statement] = STATE(172), + [sym_goto_statement] = STATE(172), + [sym_seh_try_statement] = STATE(172), + [sym_seh_leave_statement] = STATE(172), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_attributed_declarator_repeat1] = STATE(352), + [sym_identifier] = ACTIONS(1553), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -54626,20 +49496,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym_SEMI] = ACTIONS(368), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1387), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1088), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_case] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1395), - [anon_sym_while] = ACTIONS(1090), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(1092), - [anon_sym_return] = ACTIONS(73), - [anon_sym_break] = ACTIONS(75), - [anon_sym_continue] = ACTIONS(77), - [anon_sym_goto] = ACTIONS(79), - [anon_sym___try] = ACTIONS(1094), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(376), + [anon_sym_if] = ACTIONS(380), + [anon_sym_switch] = ACTIONS(382), + [anon_sym_case] = ACTIONS(384), + [anon_sym_default] = ACTIONS(386), + [anon_sym_while] = ACTIONS(388), + [anon_sym_do] = ACTIONS(390), + [anon_sym_for] = ACTIONS(392), + [anon_sym_return] = ACTIONS(394), + [anon_sym_break] = ACTIONS(396), + [anon_sym_continue] = ACTIONS(398), + [anon_sym_goto] = ACTIONS(400), + [anon_sym___try] = ACTIONS(402), [anon_sym___leave] = ACTIONS(404), [anon_sym_DASH_DASH] = ACTIONS(81), [anon_sym_PLUS_PLUS] = ACTIONS(81), @@ -54670,51 +49540,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [382] = { - [sym_attribute_declaration] = STATE(381), - [sym_compound_statement] = STATE(1999), - [sym_attributed_statement] = STATE(1999), - [sym_labeled_statement] = STATE(1999), - [sym_expression_statement] = STATE(1999), - [sym_if_statement] = STATE(1999), - [sym_switch_statement] = STATE(1999), - [sym_case_statement] = STATE(1999), - [sym_while_statement] = STATE(1999), - [sym_do_statement] = STATE(1999), - [sym_for_statement] = STATE(1999), - [sym_return_statement] = STATE(1999), - [sym_break_statement] = STATE(1999), - [sym_continue_statement] = STATE(1999), - [sym_goto_statement] = STATE(1999), - [sym_seh_try_statement] = STATE(1999), - [sym_seh_leave_statement] = STATE(1999), - [sym__expression] = STATE(1089), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1976), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [aux_sym_attributed_declarator_repeat1] = STATE(381), - [sym_identifier] = ACTIONS(1391), + [332] = { + [sym_attribute_declaration] = STATE(314), + [sym_compound_statement] = STATE(172), + [sym_attributed_statement] = STATE(172), + [sym_statement] = STATE(1949), + [sym_labeled_statement] = STATE(172), + [sym_expression_statement] = STATE(172), + [sym_if_statement] = STATE(172), + [sym_switch_statement] = STATE(172), + [sym_case_statement] = STATE(172), + [sym_while_statement] = STATE(172), + [sym_do_statement] = STATE(172), + [sym_for_statement] = STATE(172), + [sym_return_statement] = STATE(172), + [sym_break_statement] = STATE(172), + [sym_continue_statement] = STATE(172), + [sym_goto_statement] = STATE(172), + [sym_seh_try_statement] = STATE(172), + [sym_seh_leave_statement] = STATE(172), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_attributed_declarator_repeat1] = STATE(314), + [sym_identifier] = ACTIONS(1395), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -54723,12 +49593,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym_SEMI] = ACTIONS(368), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1387), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_if] = ACTIONS(1088), [anon_sym_switch] = ACTIONS(61), - [anon_sym_case] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1395), + [anon_sym_case] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(1401), [anon_sym_while] = ACTIONS(1090), [anon_sym_do] = ACTIONS(69), [anon_sym_for] = ACTIONS(1092), @@ -54767,51 +49637,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [383] = { - [sym_attribute_declaration] = STATE(393), - [sym_compound_statement] = STATE(293), - [sym_attributed_statement] = STATE(299), - [sym_labeled_statement] = STATE(300), - [sym_expression_statement] = STATE(303), - [sym_if_statement] = STATE(305), - [sym_switch_statement] = STATE(282), - [sym_case_statement] = STATE(279), - [sym_while_statement] = STATE(277), - [sym_do_statement] = STATE(274), - [sym_for_statement] = STATE(260), - [sym_return_statement] = STATE(253), - [sym_break_statement] = STATE(245), - [sym_continue_statement] = STATE(243), - [sym_goto_statement] = STATE(234), - [sym_seh_try_statement] = STATE(231), - [sym_seh_leave_statement] = STATE(227), - [sym__expression] = STATE(1089), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1976), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [aux_sym_attributed_declarator_repeat1] = STATE(393), - [sym_identifier] = ACTIONS(1520), + [333] = { + [sym_attribute_declaration] = STATE(352), + [sym_compound_statement] = STATE(172), + [sym_attributed_statement] = STATE(172), + [sym_statement] = STATE(223), + [sym_labeled_statement] = STATE(172), + [sym_expression_statement] = STATE(172), + [sym_if_statement] = STATE(172), + [sym_switch_statement] = STATE(172), + [sym_case_statement] = STATE(172), + [sym_while_statement] = STATE(172), + [sym_do_statement] = STATE(172), + [sym_for_statement] = STATE(172), + [sym_return_statement] = STATE(172), + [sym_break_statement] = STATE(172), + [sym_continue_statement] = STATE(172), + [sym_goto_statement] = STATE(172), + [sym_seh_try_statement] = STATE(172), + [sym_seh_leave_statement] = STATE(172), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_attributed_declarator_repeat1] = STATE(352), + [sym_identifier] = ACTIONS(1553), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -54820,7 +49690,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym_SEMI] = ACTIONS(368), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1387), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), [anon_sym_LBRACE] = ACTIONS(376), [anon_sym_if] = ACTIONS(380), [anon_sym_switch] = ACTIONS(382), @@ -54864,51 +49734,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [384] = { - [sym_attribute_declaration] = STATE(404), - [sym_compound_statement] = STATE(156), - [sym_attributed_statement] = STATE(156), - [sym_labeled_statement] = STATE(156), - [sym_expression_statement] = STATE(156), - [sym_if_statement] = STATE(156), - [sym_switch_statement] = STATE(156), - [sym_case_statement] = STATE(156), - [sym_while_statement] = STATE(156), - [sym_do_statement] = STATE(156), - [sym_for_statement] = STATE(156), - [sym_return_statement] = STATE(156), - [sym_break_statement] = STATE(156), - [sym_continue_statement] = STATE(156), - [sym_goto_statement] = STATE(156), - [sym_seh_try_statement] = STATE(156), - [sym_seh_leave_statement] = STATE(156), - [sym__expression] = STATE(1054), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1853), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [aux_sym_attributed_declarator_repeat1] = STATE(404), - [sym_identifier] = ACTIONS(1570), + [334] = { + [sym_attribute_declaration] = STATE(317), + [sym_compound_statement] = STATE(229), + [sym_attributed_statement] = STATE(229), + [sym_statement] = STATE(213), + [sym_labeled_statement] = STATE(229), + [sym_expression_statement] = STATE(229), + [sym_if_statement] = STATE(229), + [sym_switch_statement] = STATE(229), + [sym_case_statement] = STATE(229), + [sym_while_statement] = STATE(229), + [sym_do_statement] = STATE(229), + [sym_for_statement] = STATE(229), + [sym_return_statement] = STATE(229), + [sym_break_statement] = STATE(229), + [sym_continue_statement] = STATE(229), + [sym_goto_statement] = STATE(229), + [sym_seh_try_statement] = STATE(229), + [sym_seh_leave_statement] = STATE(229), + [sym_expression] = STATE(1004), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1799), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_attributed_declarator_repeat1] = STATE(317), + [sym_identifier] = ACTIONS(1407), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -54917,7 +49787,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym_SEMI] = ACTIONS(424), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1387), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), [anon_sym_LBRACE] = ACTIONS(432), [anon_sym_if] = ACTIONS(434), [anon_sym_switch] = ACTIONS(436), @@ -54961,51 +49831,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [385] = { - [sym_attribute_declaration] = STATE(404), - [sym_compound_statement] = STATE(215), - [sym_attributed_statement] = STATE(215), - [sym_labeled_statement] = STATE(215), - [sym_expression_statement] = STATE(215), - [sym_if_statement] = STATE(215), - [sym_switch_statement] = STATE(215), - [sym_case_statement] = STATE(215), - [sym_while_statement] = STATE(215), - [sym_do_statement] = STATE(215), - [sym_for_statement] = STATE(215), - [sym_return_statement] = STATE(215), - [sym_break_statement] = STATE(215), - [sym_continue_statement] = STATE(215), - [sym_goto_statement] = STATE(215), - [sym_seh_try_statement] = STATE(215), - [sym_seh_leave_statement] = STATE(215), - [sym__expression] = STATE(1054), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1853), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [aux_sym_attributed_declarator_repeat1] = STATE(404), - [sym_identifier] = ACTIONS(1570), + [335] = { + [sym_attribute_declaration] = STATE(347), + [sym_compound_statement] = STATE(159), + [sym_attributed_statement] = STATE(159), + [sym_statement] = STATE(145), + [sym_labeled_statement] = STATE(159), + [sym_expression_statement] = STATE(159), + [sym_if_statement] = STATE(159), + [sym_switch_statement] = STATE(159), + [sym_case_statement] = STATE(159), + [sym_while_statement] = STATE(159), + [sym_do_statement] = STATE(159), + [sym_for_statement] = STATE(159), + [sym_return_statement] = STATE(159), + [sym_break_statement] = STATE(159), + [sym_continue_statement] = STATE(159), + [sym_goto_statement] = STATE(159), + [sym_seh_try_statement] = STATE(159), + [sym_seh_leave_statement] = STATE(159), + [sym_expression] = STATE(1019), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1826), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_attributed_declarator_repeat1] = STATE(347), + [sym_identifier] = ACTIONS(1403), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -55013,22 +49883,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(424), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1387), - [anon_sym_LBRACE] = ACTIONS(432), - [anon_sym_if] = ACTIONS(434), - [anon_sym_switch] = ACTIONS(436), - [anon_sym_case] = ACTIONS(438), - [anon_sym_default] = ACTIONS(440), - [anon_sym_while] = ACTIONS(442), - [anon_sym_do] = ACTIONS(444), - [anon_sym_for] = ACTIONS(446), - [anon_sym_return] = ACTIONS(448), - [anon_sym_break] = ACTIONS(450), - [anon_sym_continue] = ACTIONS(452), - [anon_sym_goto] = ACTIONS(454), - [anon_sym___try] = ACTIONS(456), - [anon_sym___leave] = ACTIONS(458), + [anon_sym_SEMI] = ACTIONS(930), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(59), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_case] = ACTIONS(63), + [anon_sym_default] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym___try] = ACTIONS(932), + [anon_sym___leave] = ACTIONS(934), [anon_sym_DASH_DASH] = ACTIONS(81), [anon_sym_PLUS_PLUS] = ACTIONS(81), [anon_sym_sizeof] = ACTIONS(83), @@ -55058,51 +49928,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [386] = { - [sym_attribute_declaration] = STATE(404), - [sym_compound_statement] = STATE(221), - [sym_attributed_statement] = STATE(221), - [sym_labeled_statement] = STATE(221), - [sym_expression_statement] = STATE(221), - [sym_if_statement] = STATE(221), - [sym_switch_statement] = STATE(221), - [sym_case_statement] = STATE(221), - [sym_while_statement] = STATE(221), - [sym_do_statement] = STATE(221), - [sym_for_statement] = STATE(221), - [sym_return_statement] = STATE(221), - [sym_break_statement] = STATE(221), - [sym_continue_statement] = STATE(221), - [sym_goto_statement] = STATE(221), - [sym_seh_try_statement] = STATE(221), - [sym_seh_leave_statement] = STATE(221), - [sym__expression] = STATE(1054), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1853), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [aux_sym_attributed_declarator_repeat1] = STATE(404), - [sym_identifier] = ACTIONS(1570), + [336] = { + [sym_attribute_declaration] = STATE(352), + [sym_compound_statement] = STATE(172), + [sym_attributed_statement] = STATE(172), + [sym_statement] = STATE(212), + [sym_labeled_statement] = STATE(172), + [sym_expression_statement] = STATE(172), + [sym_if_statement] = STATE(172), + [sym_switch_statement] = STATE(172), + [sym_case_statement] = STATE(172), + [sym_while_statement] = STATE(172), + [sym_do_statement] = STATE(172), + [sym_for_statement] = STATE(172), + [sym_return_statement] = STATE(172), + [sym_break_statement] = STATE(172), + [sym_continue_statement] = STATE(172), + [sym_goto_statement] = STATE(172), + [sym_seh_try_statement] = STATE(172), + [sym_seh_leave_statement] = STATE(172), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_attributed_declarator_repeat1] = STATE(352), + [sym_identifier] = ACTIONS(1553), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -55110,22 +49980,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(424), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1387), - [anon_sym_LBRACE] = ACTIONS(432), - [anon_sym_if] = ACTIONS(434), - [anon_sym_switch] = ACTIONS(436), - [anon_sym_case] = ACTIONS(438), - [anon_sym_default] = ACTIONS(440), - [anon_sym_while] = ACTIONS(442), - [anon_sym_do] = ACTIONS(444), - [anon_sym_for] = ACTIONS(446), - [anon_sym_return] = ACTIONS(448), - [anon_sym_break] = ACTIONS(450), - [anon_sym_continue] = ACTIONS(452), - [anon_sym_goto] = ACTIONS(454), - [anon_sym___try] = ACTIONS(456), - [anon_sym___leave] = ACTIONS(458), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(376), + [anon_sym_if] = ACTIONS(380), + [anon_sym_switch] = ACTIONS(382), + [anon_sym_case] = ACTIONS(384), + [anon_sym_default] = ACTIONS(386), + [anon_sym_while] = ACTIONS(388), + [anon_sym_do] = ACTIONS(390), + [anon_sym_for] = ACTIONS(392), + [anon_sym_return] = ACTIONS(394), + [anon_sym_break] = ACTIONS(396), + [anon_sym_continue] = ACTIONS(398), + [anon_sym_goto] = ACTIONS(400), + [anon_sym___try] = ACTIONS(402), + [anon_sym___leave] = ACTIONS(404), [anon_sym_DASH_DASH] = ACTIONS(81), [anon_sym_PLUS_PLUS] = ACTIONS(81), [anon_sym_sizeof] = ACTIONS(83), @@ -55155,51 +50025,342 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [387] = { - [sym_attribute_declaration] = STATE(381), - [sym_compound_statement] = STATE(1965), - [sym_attributed_statement] = STATE(1965), - [sym_labeled_statement] = STATE(1965), - [sym_expression_statement] = STATE(1965), - [sym_if_statement] = STATE(1965), - [sym_switch_statement] = STATE(1965), - [sym_case_statement] = STATE(1965), - [sym_while_statement] = STATE(1965), - [sym_do_statement] = STATE(1965), - [sym_for_statement] = STATE(1965), - [sym_return_statement] = STATE(1965), - [sym_break_statement] = STATE(1965), - [sym_continue_statement] = STATE(1965), - [sym_goto_statement] = STATE(1965), - [sym_seh_try_statement] = STATE(1965), - [sym_seh_leave_statement] = STATE(1965), - [sym__expression] = STATE(1089), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1976), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [aux_sym_attributed_declarator_repeat1] = STATE(381), - [sym_identifier] = ACTIONS(1391), + [337] = { + [sym_attribute_declaration] = STATE(337), + [sym_compound_statement] = STATE(112), + [sym_attributed_statement] = STATE(112), + [sym_statement] = STATE(96), + [sym_labeled_statement] = STATE(112), + [sym_expression_statement] = STATE(112), + [sym_if_statement] = STATE(112), + [sym_switch_statement] = STATE(112), + [sym_case_statement] = STATE(112), + [sym_while_statement] = STATE(112), + [sym_do_statement] = STATE(112), + [sym_for_statement] = STATE(112), + [sym_return_statement] = STATE(112), + [sym_break_statement] = STATE(112), + [sym_continue_statement] = STATE(112), + [sym_goto_statement] = STATE(112), + [sym_seh_try_statement] = STATE(112), + [sym_seh_leave_statement] = STATE(112), + [sym_expression] = STATE(1029), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1759), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_attributed_declarator_repeat1] = STATE(337), + [sym_identifier] = ACTIONS(1555), + [anon_sym_LPAREN2] = ACTIONS(1412), + [anon_sym_BANG] = ACTIONS(1415), + [anon_sym_TILDE] = ACTIONS(1415), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_STAR] = ACTIONS(1421), + [anon_sym_AMP] = ACTIONS(1421), + [anon_sym_SEMI] = ACTIONS(1558), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1427), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_if] = ACTIONS(1564), + [anon_sym_switch] = ACTIONS(1567), + [anon_sym_case] = ACTIONS(1570), + [anon_sym_default] = ACTIONS(1573), + [anon_sym_while] = ACTIONS(1576), + [anon_sym_do] = ACTIONS(1579), + [anon_sym_for] = ACTIONS(1582), + [anon_sym_return] = ACTIONS(1585), + [anon_sym_break] = ACTIONS(1588), + [anon_sym_continue] = ACTIONS(1591), + [anon_sym_goto] = ACTIONS(1594), + [anon_sym___try] = ACTIONS(1597), + [anon_sym___leave] = ACTIONS(1600), + [anon_sym_DASH_DASH] = ACTIONS(1472), + [anon_sym_PLUS_PLUS] = ACTIONS(1472), + [anon_sym_sizeof] = ACTIONS(1475), + [anon_sym___alignof__] = ACTIONS(1478), + [anon_sym___alignof] = ACTIONS(1478), + [anon_sym__alignof] = ACTIONS(1478), + [anon_sym_alignof] = ACTIONS(1478), + [anon_sym__Alignof] = ACTIONS(1478), + [anon_sym_offsetof] = ACTIONS(1481), + [anon_sym__Generic] = ACTIONS(1484), + [anon_sym_asm] = ACTIONS(1487), + [anon_sym___asm__] = ACTIONS(1487), + [sym_number_literal] = ACTIONS(1490), + [anon_sym_L_SQUOTE] = ACTIONS(1493), + [anon_sym_u_SQUOTE] = ACTIONS(1493), + [anon_sym_U_SQUOTE] = ACTIONS(1493), + [anon_sym_u8_SQUOTE] = ACTIONS(1493), + [anon_sym_SQUOTE] = ACTIONS(1493), + [anon_sym_L_DQUOTE] = ACTIONS(1496), + [anon_sym_u_DQUOTE] = ACTIONS(1496), + [anon_sym_U_DQUOTE] = ACTIONS(1496), + [anon_sym_u8_DQUOTE] = ACTIONS(1496), + [anon_sym_DQUOTE] = ACTIONS(1496), + [sym_true] = ACTIONS(1499), + [sym_false] = ACTIONS(1499), + [anon_sym_NULL] = ACTIONS(1502), + [anon_sym_nullptr] = ACTIONS(1502), + [sym_comment] = ACTIONS(3), + }, + [338] = { + [sym_attribute_declaration] = STATE(338), + [sym_compound_statement] = STATE(159), + [sym_attributed_statement] = STATE(159), + [sym_statement] = STATE(186), + [sym_labeled_statement] = STATE(159), + [sym_expression_statement] = STATE(159), + [sym_if_statement] = STATE(159), + [sym_switch_statement] = STATE(159), + [sym_case_statement] = STATE(159), + [sym_while_statement] = STATE(159), + [sym_do_statement] = STATE(159), + [sym_for_statement] = STATE(159), + [sym_return_statement] = STATE(159), + [sym_break_statement] = STATE(159), + [sym_continue_statement] = STATE(159), + [sym_goto_statement] = STATE(159), + [sym_seh_try_statement] = STATE(159), + [sym_seh_leave_statement] = STATE(159), + [sym_expression] = STATE(1019), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1826), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_attributed_declarator_repeat1] = STATE(338), + [sym_identifier] = ACTIONS(1603), + [anon_sym_LPAREN2] = ACTIONS(1412), + [anon_sym_BANG] = ACTIONS(1415), + [anon_sym_TILDE] = ACTIONS(1415), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_STAR] = ACTIONS(1421), + [anon_sym_AMP] = ACTIONS(1421), + [anon_sym_SEMI] = ACTIONS(1606), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1427), + [anon_sym_LBRACE] = ACTIONS(1511), + [anon_sym_if] = ACTIONS(1609), + [anon_sym_switch] = ACTIONS(1517), + [anon_sym_case] = ACTIONS(1612), + [anon_sym_default] = ACTIONS(1615), + [anon_sym_while] = ACTIONS(1618), + [anon_sym_do] = ACTIONS(1529), + [anon_sym_for] = ACTIONS(1621), + [anon_sym_return] = ACTIONS(1535), + [anon_sym_break] = ACTIONS(1538), + [anon_sym_continue] = ACTIONS(1541), + [anon_sym_goto] = ACTIONS(1544), + [anon_sym___try] = ACTIONS(1624), + [anon_sym___leave] = ACTIONS(1627), + [anon_sym_DASH_DASH] = ACTIONS(1472), + [anon_sym_PLUS_PLUS] = ACTIONS(1472), + [anon_sym_sizeof] = ACTIONS(1475), + [anon_sym___alignof__] = ACTIONS(1478), + [anon_sym___alignof] = ACTIONS(1478), + [anon_sym__alignof] = ACTIONS(1478), + [anon_sym_alignof] = ACTIONS(1478), + [anon_sym__Alignof] = ACTIONS(1478), + [anon_sym_offsetof] = ACTIONS(1481), + [anon_sym__Generic] = ACTIONS(1484), + [anon_sym_asm] = ACTIONS(1487), + [anon_sym___asm__] = ACTIONS(1487), + [sym_number_literal] = ACTIONS(1490), + [anon_sym_L_SQUOTE] = ACTIONS(1493), + [anon_sym_u_SQUOTE] = ACTIONS(1493), + [anon_sym_U_SQUOTE] = ACTIONS(1493), + [anon_sym_u8_SQUOTE] = ACTIONS(1493), + [anon_sym_SQUOTE] = ACTIONS(1493), + [anon_sym_L_DQUOTE] = ACTIONS(1496), + [anon_sym_u_DQUOTE] = ACTIONS(1496), + [anon_sym_U_DQUOTE] = ACTIONS(1496), + [anon_sym_u8_DQUOTE] = ACTIONS(1496), + [anon_sym_DQUOTE] = ACTIONS(1496), + [sym_true] = ACTIONS(1499), + [sym_false] = ACTIONS(1499), + [anon_sym_NULL] = ACTIONS(1502), + [anon_sym_nullptr] = ACTIONS(1502), + [sym_comment] = ACTIONS(3), + }, + [339] = { + [sym_attribute_declaration] = STATE(347), + [sym_compound_statement] = STATE(159), + [sym_attributed_statement] = STATE(159), + [sym_statement] = STATE(238), + [sym_labeled_statement] = STATE(159), + [sym_expression_statement] = STATE(159), + [sym_if_statement] = STATE(159), + [sym_switch_statement] = STATE(159), + [sym_case_statement] = STATE(159), + [sym_while_statement] = STATE(159), + [sym_do_statement] = STATE(159), + [sym_for_statement] = STATE(159), + [sym_return_statement] = STATE(159), + [sym_break_statement] = STATE(159), + [sym_continue_statement] = STATE(159), + [sym_goto_statement] = STATE(159), + [sym_seh_try_statement] = STATE(159), + [sym_seh_leave_statement] = STATE(159), + [sym_expression] = STATE(1019), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1826), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_attributed_declarator_repeat1] = STATE(347), + [sym_identifier] = ACTIONS(1403), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(930), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(59), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_case] = ACTIONS(63), + [anon_sym_default] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym___try] = ACTIONS(932), + [anon_sym___leave] = ACTIONS(934), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [340] = { + [sym_attribute_declaration] = STATE(314), + [sym_compound_statement] = STATE(172), + [sym_attributed_statement] = STATE(172), + [sym_statement] = STATE(238), + [sym_labeled_statement] = STATE(172), + [sym_expression_statement] = STATE(172), + [sym_if_statement] = STATE(172), + [sym_switch_statement] = STATE(172), + [sym_case_statement] = STATE(172), + [sym_while_statement] = STATE(172), + [sym_do_statement] = STATE(172), + [sym_for_statement] = STATE(172), + [sym_return_statement] = STATE(172), + [sym_break_statement] = STATE(172), + [sym_continue_statement] = STATE(172), + [sym_goto_statement] = STATE(172), + [sym_seh_try_statement] = STATE(172), + [sym_seh_leave_statement] = STATE(172), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_attributed_declarator_repeat1] = STATE(314), + [sym_identifier] = ACTIONS(1395), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -55208,12 +50369,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym_SEMI] = ACTIONS(368), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1387), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_if] = ACTIONS(1088), [anon_sym_switch] = ACTIONS(61), - [anon_sym_case] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1395), + [anon_sym_case] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(1401), [anon_sym_while] = ACTIONS(1090), [anon_sym_do] = ACTIONS(69), [anon_sym_for] = ACTIONS(1092), @@ -55252,148 +50413,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [388] = { - [sym_attribute_declaration] = STATE(388), - [sym_compound_statement] = STATE(178), - [sym_attributed_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_switch_statement] = STATE(178), - [sym_case_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_goto_statement] = STATE(178), - [sym_seh_try_statement] = STATE(178), - [sym_seh_leave_statement] = STATE(178), - [sym__expression] = STATE(1054), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1853), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [aux_sym_attributed_declarator_repeat1] = STATE(388), - [sym_identifier] = ACTIONS(1572), - [anon_sym_LPAREN2] = ACTIONS(1400), - [anon_sym_BANG] = ACTIONS(1403), - [anon_sym_TILDE] = ACTIONS(1403), - [anon_sym_DASH] = ACTIONS(1406), - [anon_sym_PLUS] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(1409), - [anon_sym_AMP] = ACTIONS(1409), - [anon_sym_SEMI] = ACTIONS(1575), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1415), - [anon_sym_LBRACE] = ACTIONS(1578), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_switch] = ACTIONS(1584), - [anon_sym_case] = ACTIONS(1587), - [anon_sym_default] = ACTIONS(1590), - [anon_sym_while] = ACTIONS(1593), - [anon_sym_do] = ACTIONS(1596), - [anon_sym_for] = ACTIONS(1599), - [anon_sym_return] = ACTIONS(1602), - [anon_sym_break] = ACTIONS(1605), - [anon_sym_continue] = ACTIONS(1608), - [anon_sym_goto] = ACTIONS(1611), - [anon_sym___try] = ACTIONS(1614), - [anon_sym___leave] = ACTIONS(1617), - [anon_sym_DASH_DASH] = ACTIONS(1460), - [anon_sym_PLUS_PLUS] = ACTIONS(1460), - [anon_sym_sizeof] = ACTIONS(1463), - [anon_sym___alignof__] = ACTIONS(1466), - [anon_sym___alignof] = ACTIONS(1466), - [anon_sym__alignof] = ACTIONS(1466), - [anon_sym_alignof] = ACTIONS(1466), - [anon_sym__Alignof] = ACTIONS(1466), - [anon_sym_offsetof] = ACTIONS(1469), - [anon_sym__Generic] = ACTIONS(1472), - [anon_sym_asm] = ACTIONS(1475), - [anon_sym___asm__] = ACTIONS(1475), - [sym_number_literal] = ACTIONS(1478), - [anon_sym_L_SQUOTE] = ACTIONS(1481), - [anon_sym_u_SQUOTE] = ACTIONS(1481), - [anon_sym_U_SQUOTE] = ACTIONS(1481), - [anon_sym_u8_SQUOTE] = ACTIONS(1481), - [anon_sym_SQUOTE] = ACTIONS(1481), - [anon_sym_L_DQUOTE] = ACTIONS(1484), - [anon_sym_u_DQUOTE] = ACTIONS(1484), - [anon_sym_U_DQUOTE] = ACTIONS(1484), - [anon_sym_u8_DQUOTE] = ACTIONS(1484), - [anon_sym_DQUOTE] = ACTIONS(1484), - [sym_true] = ACTIONS(1487), - [sym_false] = ACTIONS(1487), - [anon_sym_NULL] = ACTIONS(1490), - [anon_sym_nullptr] = ACTIONS(1490), - [sym_comment] = ACTIONS(3), - }, - [389] = { - [sym_attribute_declaration] = STATE(405), - [sym_compound_statement] = STATE(114), - [sym_attributed_statement] = STATE(114), - [sym_labeled_statement] = STATE(114), - [sym_expression_statement] = STATE(114), - [sym_if_statement] = STATE(114), - [sym_switch_statement] = STATE(114), - [sym_case_statement] = STATE(114), - [sym_while_statement] = STATE(114), - [sym_do_statement] = STATE(114), - [sym_for_statement] = STATE(114), - [sym_return_statement] = STATE(114), - [sym_break_statement] = STATE(114), - [sym_continue_statement] = STATE(114), - [sym_goto_statement] = STATE(114), - [sym_seh_try_statement] = STATE(114), - [sym_seh_leave_statement] = STATE(114), - [sym__expression] = STATE(1097), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1839), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [aux_sym_attributed_declarator_repeat1] = STATE(405), - [sym_identifier] = ACTIONS(1389), + [341] = { + [sym_attribute_declaration] = STATE(352), + [sym_compound_statement] = STATE(172), + [sym_attributed_statement] = STATE(172), + [sym_statement] = STATE(144), + [sym_labeled_statement] = STATE(172), + [sym_expression_statement] = STATE(172), + [sym_if_statement] = STATE(172), + [sym_switch_statement] = STATE(172), + [sym_case_statement] = STATE(172), + [sym_while_statement] = STATE(172), + [sym_do_statement] = STATE(172), + [sym_for_statement] = STATE(172), + [sym_return_statement] = STATE(172), + [sym_break_statement] = STATE(172), + [sym_continue_statement] = STATE(172), + [sym_goto_statement] = STATE(172), + [sym_seh_try_statement] = STATE(172), + [sym_seh_leave_statement] = STATE(172), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_attributed_declarator_repeat1] = STATE(352), + [sym_identifier] = ACTIONS(1553), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -55401,22 +50465,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1387), - [anon_sym_LBRACE] = ACTIONS(131), - [anon_sym_if] = ACTIONS(133), - [anon_sym_switch] = ACTIONS(135), - [anon_sym_case] = ACTIONS(137), - [anon_sym_default] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_do] = ACTIONS(143), - [anon_sym_for] = ACTIONS(145), - [anon_sym_return] = ACTIONS(147), - [anon_sym_break] = ACTIONS(149), - [anon_sym_continue] = ACTIONS(151), - [anon_sym_goto] = ACTIONS(153), - [anon_sym___try] = ACTIONS(155), - [anon_sym___leave] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(376), + [anon_sym_if] = ACTIONS(380), + [anon_sym_switch] = ACTIONS(382), + [anon_sym_case] = ACTIONS(384), + [anon_sym_default] = ACTIONS(386), + [anon_sym_while] = ACTIONS(388), + [anon_sym_do] = ACTIONS(390), + [anon_sym_for] = ACTIONS(392), + [anon_sym_return] = ACTIONS(394), + [anon_sym_break] = ACTIONS(396), + [anon_sym_continue] = ACTIONS(398), + [anon_sym_goto] = ACTIONS(400), + [anon_sym___try] = ACTIONS(402), + [anon_sym___leave] = ACTIONS(404), [anon_sym_DASH_DASH] = ACTIONS(81), [anon_sym_PLUS_PLUS] = ACTIONS(81), [anon_sym_sizeof] = ACTIONS(83), @@ -55446,51 +50510,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [390] = { - [sym_attribute_declaration] = STATE(403), - [sym_compound_statement] = STATE(301), - [sym_attributed_statement] = STATE(301), - [sym_labeled_statement] = STATE(301), - [sym_expression_statement] = STATE(301), - [sym_if_statement] = STATE(301), - [sym_switch_statement] = STATE(301), - [sym_case_statement] = STATE(301), - [sym_while_statement] = STATE(301), - [sym_do_statement] = STATE(301), - [sym_for_statement] = STATE(301), - [sym_return_statement] = STATE(301), - [sym_break_statement] = STATE(301), - [sym_continue_statement] = STATE(301), - [sym_goto_statement] = STATE(301), - [sym_seh_try_statement] = STATE(301), - [sym_seh_leave_statement] = STATE(301), - [sym__expression] = STATE(1088), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1880), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [aux_sym_attributed_declarator_repeat1] = STATE(403), - [sym_identifier] = ACTIONS(1385), + [342] = { + [sym_attribute_declaration] = STATE(342), + [sym_compound_statement] = STATE(172), + [sym_attributed_statement] = STATE(172), + [sym_statement] = STATE(158), + [sym_labeled_statement] = STATE(172), + [sym_expression_statement] = STATE(172), + [sym_if_statement] = STATE(172), + [sym_switch_statement] = STATE(172), + [sym_case_statement] = STATE(172), + [sym_while_statement] = STATE(172), + [sym_do_statement] = STATE(172), + [sym_for_statement] = STATE(172), + [sym_return_statement] = STATE(172), + [sym_break_statement] = STATE(172), + [sym_continue_statement] = STATE(172), + [sym_goto_statement] = STATE(172), + [sym_seh_try_statement] = STATE(172), + [sym_seh_leave_statement] = STATE(172), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_attributed_declarator_repeat1] = STATE(342), + [sym_identifier] = ACTIONS(1630), + [anon_sym_LPAREN2] = ACTIONS(1412), + [anon_sym_BANG] = ACTIONS(1415), + [anon_sym_TILDE] = ACTIONS(1415), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_STAR] = ACTIONS(1421), + [anon_sym_AMP] = ACTIONS(1421), + [anon_sym_SEMI] = ACTIONS(1508), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1427), + [anon_sym_LBRACE] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(1636), + [anon_sym_switch] = ACTIONS(1639), + [anon_sym_case] = ACTIONS(1642), + [anon_sym_default] = ACTIONS(1645), + [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___try] = ACTIONS(1669), + [anon_sym___leave] = ACTIONS(1550), + [anon_sym_DASH_DASH] = ACTIONS(1472), + [anon_sym_PLUS_PLUS] = ACTIONS(1472), + [anon_sym_sizeof] = ACTIONS(1475), + [anon_sym___alignof__] = ACTIONS(1478), + [anon_sym___alignof] = ACTIONS(1478), + [anon_sym__alignof] = ACTIONS(1478), + [anon_sym_alignof] = ACTIONS(1478), + [anon_sym__Alignof] = ACTIONS(1478), + [anon_sym_offsetof] = ACTIONS(1481), + [anon_sym__Generic] = ACTIONS(1484), + [anon_sym_asm] = ACTIONS(1487), + [anon_sym___asm__] = ACTIONS(1487), + [sym_number_literal] = ACTIONS(1490), + [anon_sym_L_SQUOTE] = ACTIONS(1493), + [anon_sym_u_SQUOTE] = ACTIONS(1493), + [anon_sym_U_SQUOTE] = ACTIONS(1493), + [anon_sym_u8_SQUOTE] = ACTIONS(1493), + [anon_sym_SQUOTE] = ACTIONS(1493), + [anon_sym_L_DQUOTE] = ACTIONS(1496), + [anon_sym_u_DQUOTE] = ACTIONS(1496), + [anon_sym_U_DQUOTE] = ACTIONS(1496), + [anon_sym_u8_DQUOTE] = ACTIONS(1496), + [anon_sym_DQUOTE] = ACTIONS(1496), + [sym_true] = ACTIONS(1499), + [sym_false] = ACTIONS(1499), + [anon_sym_NULL] = ACTIONS(1502), + [anon_sym_nullptr] = ACTIONS(1502), + [sym_comment] = ACTIONS(3), + }, + [343] = { + [sym_attribute_declaration] = STATE(314), + [sym_compound_statement] = STATE(172), + [sym_attributed_statement] = STATE(172), + [sym_statement] = STATE(249), + [sym_labeled_statement] = STATE(172), + [sym_expression_statement] = STATE(172), + [sym_if_statement] = STATE(172), + [sym_switch_statement] = STATE(172), + [sym_case_statement] = STATE(172), + [sym_while_statement] = STATE(172), + [sym_do_statement] = STATE(172), + [sym_for_statement] = STATE(172), + [sym_return_statement] = STATE(172), + [sym_break_statement] = STATE(172), + [sym_continue_statement] = STATE(172), + [sym_goto_statement] = STATE(172), + [sym_seh_try_statement] = STATE(172), + [sym_seh_leave_statement] = STATE(172), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_attributed_declarator_repeat1] = STATE(314), + [sym_identifier] = ACTIONS(1395), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -55498,22 +50659,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(980), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1387), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(59), + [anon_sym_if] = ACTIONS(1088), [anon_sym_switch] = ACTIONS(61), - [anon_sym_case] = ACTIONS(63), - [anon_sym_default] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), + [anon_sym_case] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(1401), + [anon_sym_while] = ACTIONS(1090), [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), + [anon_sym_for] = ACTIONS(1092), [anon_sym_return] = ACTIONS(73), [anon_sym_break] = ACTIONS(75), [anon_sym_continue] = ACTIONS(77), [anon_sym_goto] = ACTIONS(79), - [anon_sym___try] = ACTIONS(982), - [anon_sym___leave] = ACTIONS(984), + [anon_sym___try] = ACTIONS(1094), + [anon_sym___leave] = ACTIONS(404), [anon_sym_DASH_DASH] = ACTIONS(81), [anon_sym_PLUS_PLUS] = ACTIONS(81), [anon_sym_sizeof] = ACTIONS(83), @@ -55543,51 +50704,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [391] = { - [sym_attribute_declaration] = STATE(405), - [sym_compound_statement] = STATE(75), - [sym_attributed_statement] = STATE(75), - [sym_labeled_statement] = STATE(75), - [sym_expression_statement] = STATE(75), - [sym_if_statement] = STATE(75), - [sym_switch_statement] = STATE(75), - [sym_case_statement] = STATE(75), - [sym_while_statement] = STATE(75), - [sym_do_statement] = STATE(75), - [sym_for_statement] = STATE(75), - [sym_return_statement] = STATE(75), - [sym_break_statement] = STATE(75), - [sym_continue_statement] = STATE(75), - [sym_goto_statement] = STATE(75), - [sym_seh_try_statement] = STATE(75), - [sym_seh_leave_statement] = STATE(75), - [sym__expression] = STATE(1097), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1839), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [aux_sym_attributed_declarator_repeat1] = STATE(405), - [sym_identifier] = ACTIONS(1389), + [344] = { + [sym_attribute_declaration] = STATE(349), + [sym_compound_statement] = STATE(112), + [sym_attributed_statement] = STATE(112), + [sym_statement] = STATE(93), + [sym_labeled_statement] = STATE(112), + [sym_expression_statement] = STATE(112), + [sym_if_statement] = STATE(112), + [sym_switch_statement] = STATE(112), + [sym_case_statement] = STATE(112), + [sym_while_statement] = STATE(112), + [sym_do_statement] = STATE(112), + [sym_for_statement] = STATE(112), + [sym_return_statement] = STATE(112), + [sym_break_statement] = STATE(112), + [sym_continue_statement] = STATE(112), + [sym_goto_statement] = STATE(112), + [sym_seh_try_statement] = STATE(112), + [sym_seh_leave_statement] = STATE(112), + [sym_expression] = STATE(1029), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1759), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_attributed_declarator_repeat1] = STATE(349), + [sym_identifier] = ACTIONS(1405), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -55596,7 +50757,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym_SEMI] = ACTIONS(123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1387), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), [anon_sym_LBRACE] = ACTIONS(131), [anon_sym_if] = ACTIONS(133), [anon_sym_switch] = ACTIONS(135), @@ -55640,148 +50801,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [392] = { - [sym_attribute_declaration] = STATE(392), - [sym_compound_statement] = STATE(262), - [sym_attributed_statement] = STATE(262), - [sym_labeled_statement] = STATE(262), - [sym_expression_statement] = STATE(262), - [sym_if_statement] = STATE(262), - [sym_switch_statement] = STATE(262), - [sym_case_statement] = STATE(262), - [sym_while_statement] = STATE(262), - [sym_do_statement] = STATE(262), - [sym_for_statement] = STATE(262), - [sym_return_statement] = STATE(262), - [sym_break_statement] = STATE(262), - [sym_continue_statement] = STATE(262), - [sym_goto_statement] = STATE(262), - [sym_seh_try_statement] = STATE(262), - [sym_seh_leave_statement] = STATE(262), - [sym__expression] = STATE(1089), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1976), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [aux_sym_attributed_declarator_repeat1] = STATE(392), - [sym_identifier] = ACTIONS(1620), - [anon_sym_LPAREN2] = ACTIONS(1400), - [anon_sym_BANG] = ACTIONS(1403), - [anon_sym_TILDE] = ACTIONS(1403), - [anon_sym_DASH] = ACTIONS(1406), - [anon_sym_PLUS] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(1409), - [anon_sym_AMP] = ACTIONS(1409), - [anon_sym_SEMI] = ACTIONS(1496), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1415), - [anon_sym_LBRACE] = ACTIONS(1623), - [anon_sym_if] = ACTIONS(1626), - [anon_sym_switch] = ACTIONS(1629), - [anon_sym_case] = ACTIONS(1632), - [anon_sym_default] = ACTIONS(1635), - [anon_sym_while] = ACTIONS(1638), - [anon_sym_do] = ACTIONS(1641), - [anon_sym_for] = ACTIONS(1644), - [anon_sym_return] = ACTIONS(1647), - [anon_sym_break] = ACTIONS(1650), - [anon_sym_continue] = ACTIONS(1653), - [anon_sym_goto] = ACTIONS(1656), - [anon_sym___try] = ACTIONS(1659), - [anon_sym___leave] = ACTIONS(1517), - [anon_sym_DASH_DASH] = ACTIONS(1460), - [anon_sym_PLUS_PLUS] = ACTIONS(1460), - [anon_sym_sizeof] = ACTIONS(1463), - [anon_sym___alignof__] = ACTIONS(1466), - [anon_sym___alignof] = ACTIONS(1466), - [anon_sym__alignof] = ACTIONS(1466), - [anon_sym_alignof] = ACTIONS(1466), - [anon_sym__Alignof] = ACTIONS(1466), - [anon_sym_offsetof] = ACTIONS(1469), - [anon_sym__Generic] = ACTIONS(1472), - [anon_sym_asm] = ACTIONS(1475), - [anon_sym___asm__] = ACTIONS(1475), - [sym_number_literal] = ACTIONS(1478), - [anon_sym_L_SQUOTE] = ACTIONS(1481), - [anon_sym_u_SQUOTE] = ACTIONS(1481), - [anon_sym_U_SQUOTE] = ACTIONS(1481), - [anon_sym_u8_SQUOTE] = ACTIONS(1481), - [anon_sym_SQUOTE] = ACTIONS(1481), - [anon_sym_L_DQUOTE] = ACTIONS(1484), - [anon_sym_u_DQUOTE] = ACTIONS(1484), - [anon_sym_U_DQUOTE] = ACTIONS(1484), - [anon_sym_u8_DQUOTE] = ACTIONS(1484), - [anon_sym_DQUOTE] = ACTIONS(1484), - [sym_true] = ACTIONS(1487), - [sym_false] = ACTIONS(1487), - [anon_sym_NULL] = ACTIONS(1490), - [anon_sym_nullptr] = ACTIONS(1490), - [sym_comment] = ACTIONS(3), - }, - [393] = { - [sym_attribute_declaration] = STATE(392), - [sym_compound_statement] = STATE(262), - [sym_attributed_statement] = STATE(262), - [sym_labeled_statement] = STATE(262), - [sym_expression_statement] = STATE(262), - [sym_if_statement] = STATE(262), - [sym_switch_statement] = STATE(262), - [sym_case_statement] = STATE(262), - [sym_while_statement] = STATE(262), - [sym_do_statement] = STATE(262), - [sym_for_statement] = STATE(262), - [sym_return_statement] = STATE(262), - [sym_break_statement] = STATE(262), - [sym_continue_statement] = STATE(262), - [sym_goto_statement] = STATE(262), - [sym_seh_try_statement] = STATE(262), - [sym_seh_leave_statement] = STATE(262), - [sym__expression] = STATE(1089), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1976), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [aux_sym_attributed_declarator_repeat1] = STATE(392), - [sym_identifier] = ACTIONS(1520), + [345] = { + [sym_attribute_declaration] = STATE(347), + [sym_compound_statement] = STATE(159), + [sym_attributed_statement] = STATE(159), + [sym_statement] = STATE(249), + [sym_labeled_statement] = STATE(159), + [sym_expression_statement] = STATE(159), + [sym_if_statement] = STATE(159), + [sym_switch_statement] = STATE(159), + [sym_case_statement] = STATE(159), + [sym_while_statement] = STATE(159), + [sym_do_statement] = STATE(159), + [sym_for_statement] = STATE(159), + [sym_return_statement] = STATE(159), + [sym_break_statement] = STATE(159), + [sym_continue_statement] = STATE(159), + [sym_goto_statement] = STATE(159), + [sym_seh_try_statement] = STATE(159), + [sym_seh_leave_statement] = STATE(159), + [sym_expression] = STATE(1019), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1826), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_attributed_declarator_repeat1] = STATE(347), + [sym_identifier] = ACTIONS(1403), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -55789,22 +50853,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(368), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1387), - [anon_sym_LBRACE] = ACTIONS(376), - [anon_sym_if] = ACTIONS(380), - [anon_sym_switch] = ACTIONS(382), - [anon_sym_case] = ACTIONS(384), - [anon_sym_default] = ACTIONS(386), - [anon_sym_while] = ACTIONS(388), - [anon_sym_do] = ACTIONS(390), - [anon_sym_for] = ACTIONS(392), - [anon_sym_return] = ACTIONS(394), - [anon_sym_break] = ACTIONS(396), - [anon_sym_continue] = ACTIONS(398), - [anon_sym_goto] = ACTIONS(400), - [anon_sym___try] = ACTIONS(402), - [anon_sym___leave] = ACTIONS(404), + [anon_sym_SEMI] = ACTIONS(930), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(59), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_case] = ACTIONS(63), + [anon_sym_default] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym___try] = ACTIONS(932), + [anon_sym___leave] = ACTIONS(934), [anon_sym_DASH_DASH] = ACTIONS(81), [anon_sym_PLUS_PLUS] = ACTIONS(81), [anon_sym_sizeof] = ACTIONS(83), @@ -55834,51 +50898,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [394] = { - [sym_attribute_declaration] = STATE(404), - [sym_compound_statement] = STATE(295), - [sym_attributed_statement] = STATE(295), - [sym_labeled_statement] = STATE(295), - [sym_expression_statement] = STATE(295), - [sym_if_statement] = STATE(295), - [sym_switch_statement] = STATE(295), - [sym_case_statement] = STATE(295), - [sym_while_statement] = STATE(295), - [sym_do_statement] = STATE(295), - [sym_for_statement] = STATE(295), - [sym_return_statement] = STATE(295), - [sym_break_statement] = STATE(295), - [sym_continue_statement] = STATE(295), - [sym_goto_statement] = STATE(295), - [sym_seh_try_statement] = STATE(295), - [sym_seh_leave_statement] = STATE(295), - [sym__expression] = STATE(1054), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1853), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [aux_sym_attributed_declarator_repeat1] = STATE(404), - [sym_identifier] = ACTIONS(1570), + [346] = { + [sym_attribute_declaration] = STATE(352), + [sym_compound_statement] = STATE(172), + [sym_attributed_statement] = STATE(172), + [sym_statement] = STATE(180), + [sym_labeled_statement] = STATE(172), + [sym_expression_statement] = STATE(172), + [sym_if_statement] = STATE(172), + [sym_switch_statement] = STATE(172), + [sym_case_statement] = STATE(172), + [sym_while_statement] = STATE(172), + [sym_do_statement] = STATE(172), + [sym_for_statement] = STATE(172), + [sym_return_statement] = STATE(172), + [sym_break_statement] = STATE(172), + [sym_continue_statement] = STATE(172), + [sym_goto_statement] = STATE(172), + [sym_seh_try_statement] = STATE(172), + [sym_seh_leave_statement] = STATE(172), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_attributed_declarator_repeat1] = STATE(352), + [sym_identifier] = ACTIONS(1553), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -55886,22 +50950,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(424), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1387), - [anon_sym_LBRACE] = ACTIONS(432), - [anon_sym_if] = ACTIONS(434), - [anon_sym_switch] = ACTIONS(436), - [anon_sym_case] = ACTIONS(438), - [anon_sym_default] = ACTIONS(440), - [anon_sym_while] = ACTIONS(442), - [anon_sym_do] = ACTIONS(444), - [anon_sym_for] = ACTIONS(446), - [anon_sym_return] = ACTIONS(448), - [anon_sym_break] = ACTIONS(450), - [anon_sym_continue] = ACTIONS(452), - [anon_sym_goto] = ACTIONS(454), - [anon_sym___try] = ACTIONS(456), - [anon_sym___leave] = ACTIONS(458), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(376), + [anon_sym_if] = ACTIONS(380), + [anon_sym_switch] = ACTIONS(382), + [anon_sym_case] = ACTIONS(384), + [anon_sym_default] = ACTIONS(386), + [anon_sym_while] = ACTIONS(388), + [anon_sym_do] = ACTIONS(390), + [anon_sym_for] = ACTIONS(392), + [anon_sym_return] = ACTIONS(394), + [anon_sym_break] = ACTIONS(396), + [anon_sym_continue] = ACTIONS(398), + [anon_sym_goto] = ACTIONS(400), + [anon_sym___try] = ACTIONS(402), + [anon_sym___leave] = ACTIONS(404), [anon_sym_DASH_DASH] = ACTIONS(81), [anon_sym_PLUS_PLUS] = ACTIONS(81), [anon_sym_sizeof] = ACTIONS(83), @@ -55931,51 +50995,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [395] = { - [sym_attribute_declaration] = STATE(403), - [sym_compound_statement] = STATE(219), - [sym_attributed_statement] = STATE(219), - [sym_labeled_statement] = STATE(219), - [sym_expression_statement] = STATE(219), - [sym_if_statement] = STATE(219), - [sym_switch_statement] = STATE(219), - [sym_case_statement] = STATE(219), - [sym_while_statement] = STATE(219), - [sym_do_statement] = STATE(219), - [sym_for_statement] = STATE(219), - [sym_return_statement] = STATE(219), - [sym_break_statement] = STATE(219), - [sym_continue_statement] = STATE(219), - [sym_goto_statement] = STATE(219), - [sym_seh_try_statement] = STATE(219), - [sym_seh_leave_statement] = STATE(219), - [sym__expression] = STATE(1088), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1880), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [aux_sym_attributed_declarator_repeat1] = STATE(403), - [sym_identifier] = ACTIONS(1385), + [347] = { + [sym_attribute_declaration] = STATE(338), + [sym_compound_statement] = STATE(159), + [sym_attributed_statement] = STATE(159), + [sym_statement] = STATE(186), + [sym_labeled_statement] = STATE(159), + [sym_expression_statement] = STATE(159), + [sym_if_statement] = STATE(159), + [sym_switch_statement] = STATE(159), + [sym_case_statement] = STATE(159), + [sym_while_statement] = STATE(159), + [sym_do_statement] = STATE(159), + [sym_for_statement] = STATE(159), + [sym_return_statement] = STATE(159), + [sym_break_statement] = STATE(159), + [sym_continue_statement] = STATE(159), + [sym_goto_statement] = STATE(159), + [sym_seh_try_statement] = STATE(159), + [sym_seh_leave_statement] = STATE(159), + [sym_expression] = STATE(1019), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1826), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_attributed_declarator_repeat1] = STATE(338), + [sym_identifier] = ACTIONS(1403), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -55983,8 +51047,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(980), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1387), + [anon_sym_SEMI] = ACTIONS(930), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_if] = ACTIONS(59), [anon_sym_switch] = ACTIONS(61), @@ -55997,8 +51061,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(75), [anon_sym_continue] = ACTIONS(77), [anon_sym_goto] = ACTIONS(79), - [anon_sym___try] = ACTIONS(982), - [anon_sym___leave] = ACTIONS(984), + [anon_sym___try] = ACTIONS(932), + [anon_sym___leave] = ACTIONS(934), [anon_sym_DASH_DASH] = ACTIONS(81), [anon_sym_PLUS_PLUS] = ACTIONS(81), [anon_sym_sizeof] = ACTIONS(83), @@ -56028,51 +51092,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [396] = { - [sym_attribute_declaration] = STATE(404), - [sym_compound_statement] = STATE(288), - [sym_attributed_statement] = STATE(287), - [sym_labeled_statement] = STATE(286), - [sym_expression_statement] = STATE(284), - [sym_if_statement] = STATE(283), - [sym_switch_statement] = STATE(272), - [sym_case_statement] = STATE(271), - [sym_while_statement] = STATE(270), - [sym_do_statement] = STATE(268), - [sym_for_statement] = STATE(259), - [sym_return_statement] = STATE(257), - [sym_break_statement] = STATE(256), - [sym_continue_statement] = STATE(254), - [sym_goto_statement] = STATE(252), - [sym_seh_try_statement] = STATE(249), - [sym_seh_leave_statement] = STATE(248), - [sym__expression] = STATE(1054), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1853), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [aux_sym_attributed_declarator_repeat1] = STATE(404), - [sym_identifier] = ACTIONS(1570), + [348] = { + [sym_attribute_declaration] = STATE(349), + [sym_compound_statement] = STATE(112), + [sym_attributed_statement] = STATE(112), + [sym_statement] = STATE(109), + [sym_labeled_statement] = STATE(112), + [sym_expression_statement] = STATE(112), + [sym_if_statement] = STATE(112), + [sym_switch_statement] = STATE(112), + [sym_case_statement] = STATE(112), + [sym_while_statement] = STATE(112), + [sym_do_statement] = STATE(112), + [sym_for_statement] = STATE(112), + [sym_return_statement] = STATE(112), + [sym_break_statement] = STATE(112), + [sym_continue_statement] = STATE(112), + [sym_goto_statement] = STATE(112), + [sym_seh_try_statement] = STATE(112), + [sym_seh_leave_statement] = STATE(112), + [sym_expression] = STATE(1029), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1759), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_attributed_declarator_repeat1] = STATE(349), + [sym_identifier] = ACTIONS(1405), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -56080,22 +51144,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(424), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1387), - [anon_sym_LBRACE] = ACTIONS(432), - [anon_sym_if] = ACTIONS(434), - [anon_sym_switch] = ACTIONS(436), - [anon_sym_case] = ACTIONS(438), - [anon_sym_default] = ACTIONS(440), - [anon_sym_while] = ACTIONS(442), - [anon_sym_do] = ACTIONS(444), - [anon_sym_for] = ACTIONS(446), - [anon_sym_return] = ACTIONS(448), - [anon_sym_break] = ACTIONS(450), - [anon_sym_continue] = ACTIONS(452), - [anon_sym_goto] = ACTIONS(454), - [anon_sym___try] = ACTIONS(456), - [anon_sym___leave] = ACTIONS(458), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym___try] = ACTIONS(155), + [anon_sym___leave] = ACTIONS(157), [anon_sym_DASH_DASH] = ACTIONS(81), [anon_sym_PLUS_PLUS] = ACTIONS(81), [anon_sym_sizeof] = ACTIONS(83), @@ -56125,51 +51189,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [397] = { - [sym_attribute_declaration] = STATE(403), - [sym_compound_statement] = STATE(289), - [sym_attributed_statement] = STATE(289), - [sym_labeled_statement] = STATE(289), - [sym_expression_statement] = STATE(289), - [sym_if_statement] = STATE(289), - [sym_switch_statement] = STATE(289), - [sym_case_statement] = STATE(289), - [sym_while_statement] = STATE(289), - [sym_do_statement] = STATE(289), - [sym_for_statement] = STATE(289), - [sym_return_statement] = STATE(289), - [sym_break_statement] = STATE(289), - [sym_continue_statement] = STATE(289), - [sym_goto_statement] = STATE(289), - [sym_seh_try_statement] = STATE(289), - [sym_seh_leave_statement] = STATE(289), - [sym__expression] = STATE(1088), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1880), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [aux_sym_attributed_declarator_repeat1] = STATE(403), - [sym_identifier] = ACTIONS(1385), + [349] = { + [sym_attribute_declaration] = STATE(337), + [sym_compound_statement] = STATE(112), + [sym_attributed_statement] = STATE(112), + [sym_statement] = STATE(96), + [sym_labeled_statement] = STATE(112), + [sym_expression_statement] = STATE(112), + [sym_if_statement] = STATE(112), + [sym_switch_statement] = STATE(112), + [sym_case_statement] = STATE(112), + [sym_while_statement] = STATE(112), + [sym_do_statement] = STATE(112), + [sym_for_statement] = STATE(112), + [sym_return_statement] = STATE(112), + [sym_break_statement] = STATE(112), + [sym_continue_statement] = STATE(112), + [sym_goto_statement] = STATE(112), + [sym_seh_try_statement] = STATE(112), + [sym_seh_leave_statement] = STATE(112), + [sym_expression] = STATE(1029), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1759), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_attributed_declarator_repeat1] = STATE(337), + [sym_identifier] = ACTIONS(1405), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -56177,22 +51241,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(980), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1387), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_case] = ACTIONS(63), - [anon_sym_default] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_return] = ACTIONS(73), - [anon_sym_break] = ACTIONS(75), - [anon_sym_continue] = ACTIONS(77), - [anon_sym_goto] = ACTIONS(79), - [anon_sym___try] = ACTIONS(982), - [anon_sym___leave] = ACTIONS(984), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym___try] = ACTIONS(155), + [anon_sym___leave] = ACTIONS(157), [anon_sym_DASH_DASH] = ACTIONS(81), [anon_sym_PLUS_PLUS] = ACTIONS(81), [anon_sym_sizeof] = ACTIONS(83), @@ -56222,51 +51286,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [398] = { - [sym_attribute_declaration] = STATE(403), - [sym_compound_statement] = STATE(158), - [sym_attributed_statement] = STATE(158), - [sym_labeled_statement] = STATE(158), - [sym_expression_statement] = STATE(158), - [sym_if_statement] = STATE(158), - [sym_switch_statement] = STATE(158), - [sym_case_statement] = STATE(158), - [sym_while_statement] = STATE(158), - [sym_do_statement] = STATE(158), - [sym_for_statement] = STATE(158), - [sym_return_statement] = STATE(158), - [sym_break_statement] = STATE(158), - [sym_continue_statement] = STATE(158), - [sym_goto_statement] = STATE(158), - [sym_seh_try_statement] = STATE(158), - [sym_seh_leave_statement] = STATE(158), - [sym__expression] = STATE(1088), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1880), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [aux_sym_attributed_declarator_repeat1] = STATE(403), - [sym_identifier] = ACTIONS(1385), + [350] = { + [sym_attribute_declaration] = STATE(349), + [sym_compound_statement] = STATE(112), + [sym_attributed_statement] = STATE(112), + [sym_statement] = STATE(75), + [sym_labeled_statement] = STATE(112), + [sym_expression_statement] = STATE(112), + [sym_if_statement] = STATE(112), + [sym_switch_statement] = STATE(112), + [sym_case_statement] = STATE(112), + [sym_while_statement] = STATE(112), + [sym_do_statement] = STATE(112), + [sym_for_statement] = STATE(112), + [sym_return_statement] = STATE(112), + [sym_break_statement] = STATE(112), + [sym_continue_statement] = STATE(112), + [sym_goto_statement] = STATE(112), + [sym_seh_try_statement] = STATE(112), + [sym_seh_leave_statement] = STATE(112), + [sym_expression] = STATE(1029), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1759), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_attributed_declarator_repeat1] = STATE(349), + [sym_identifier] = ACTIONS(1405), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -56274,22 +51338,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(980), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1387), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_case] = ACTIONS(63), - [anon_sym_default] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_return] = ACTIONS(73), - [anon_sym_break] = ACTIONS(75), - [anon_sym_continue] = ACTIONS(77), - [anon_sym_goto] = ACTIONS(79), - [anon_sym___try] = ACTIONS(982), - [anon_sym___leave] = ACTIONS(984), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym___try] = ACTIONS(155), + [anon_sym___leave] = ACTIONS(157), [anon_sym_DASH_DASH] = ACTIONS(81), [anon_sym_PLUS_PLUS] = ACTIONS(81), [anon_sym_sizeof] = ACTIONS(83), @@ -56319,51 +51383,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [399] = { - [sym_attribute_declaration] = STATE(381), - [sym_compound_statement] = STATE(2020), - [sym_attributed_statement] = STATE(2020), - [sym_labeled_statement] = STATE(2020), - [sym_expression_statement] = STATE(2020), - [sym_if_statement] = STATE(2020), - [sym_switch_statement] = STATE(2020), - [sym_case_statement] = STATE(2020), - [sym_while_statement] = STATE(2020), - [sym_do_statement] = STATE(2020), - [sym_for_statement] = STATE(2020), - [sym_return_statement] = STATE(2020), - [sym_break_statement] = STATE(2020), - [sym_continue_statement] = STATE(2020), - [sym_goto_statement] = STATE(2020), - [sym_seh_try_statement] = STATE(2020), - [sym_seh_leave_statement] = STATE(2020), - [sym__expression] = STATE(1089), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1976), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [aux_sym_attributed_declarator_repeat1] = STATE(381), - [sym_identifier] = ACTIONS(1391), + [351] = { + [sym_attribute_declaration] = STATE(314), + [sym_compound_statement] = STATE(172), + [sym_attributed_statement] = STATE(172), + [sym_statement] = STATE(1970), + [sym_labeled_statement] = STATE(172), + [sym_expression_statement] = STATE(172), + [sym_if_statement] = STATE(172), + [sym_switch_statement] = STATE(172), + [sym_case_statement] = STATE(172), + [sym_while_statement] = STATE(172), + [sym_do_statement] = STATE(172), + [sym_for_statement] = STATE(172), + [sym_return_statement] = STATE(172), + [sym_break_statement] = STATE(172), + [sym_continue_statement] = STATE(172), + [sym_goto_statement] = STATE(172), + [sym_seh_try_statement] = STATE(172), + [sym_seh_leave_statement] = STATE(172), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_attributed_declarator_repeat1] = STATE(314), + [sym_identifier] = ACTIONS(1395), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -56372,12 +51436,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym_SEMI] = ACTIONS(368), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1387), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_if] = ACTIONS(1088), [anon_sym_switch] = ACTIONS(61), - [anon_sym_case] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1395), + [anon_sym_case] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(1401), [anon_sym_while] = ACTIONS(1090), [anon_sym_do] = ACTIONS(69), [anon_sym_for] = ACTIONS(1092), @@ -56416,51 +51480,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [400] = { - [sym_attribute_declaration] = STATE(393), - [sym_compound_statement] = STATE(168), - [sym_attributed_statement] = STATE(168), - [sym_labeled_statement] = STATE(168), - [sym_expression_statement] = STATE(168), - [sym_if_statement] = STATE(168), - [sym_switch_statement] = STATE(168), - [sym_case_statement] = STATE(168), - [sym_while_statement] = STATE(168), - [sym_do_statement] = STATE(168), - [sym_for_statement] = STATE(168), - [sym_return_statement] = STATE(168), - [sym_break_statement] = STATE(168), - [sym_continue_statement] = STATE(168), - [sym_goto_statement] = STATE(168), - [sym_seh_try_statement] = STATE(168), - [sym_seh_leave_statement] = STATE(168), - [sym__expression] = STATE(1089), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1976), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [aux_sym_attributed_declarator_repeat1] = STATE(393), - [sym_identifier] = ACTIONS(1520), + [352] = { + [sym_attribute_declaration] = STATE(342), + [sym_compound_statement] = STATE(172), + [sym_attributed_statement] = STATE(172), + [sym_statement] = STATE(158), + [sym_labeled_statement] = STATE(172), + [sym_expression_statement] = STATE(172), + [sym_if_statement] = STATE(172), + [sym_switch_statement] = STATE(172), + [sym_case_statement] = STATE(172), + [sym_while_statement] = STATE(172), + [sym_do_statement] = STATE(172), + [sym_for_statement] = STATE(172), + [sym_return_statement] = STATE(172), + [sym_break_statement] = STATE(172), + [sym_continue_statement] = STATE(172), + [sym_goto_statement] = STATE(172), + [sym_seh_try_statement] = STATE(172), + [sym_seh_leave_statement] = STATE(172), + [sym_expression] = STATE(1014), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1860), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_attributed_declarator_repeat1] = STATE(342), + [sym_identifier] = ACTIONS(1553), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -56469,7 +51533,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym_SEMI] = ACTIONS(368), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1387), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), [anon_sym_LBRACE] = ACTIONS(376), [anon_sym_if] = ACTIONS(380), [anon_sym_switch] = ACTIONS(382), @@ -56513,886 +51577,1169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [401] = { - [sym_attribute_declaration] = STATE(393), - [sym_compound_statement] = STATE(165), - [sym_attributed_statement] = STATE(165), - [sym_labeled_statement] = STATE(165), - [sym_expression_statement] = STATE(165), - [sym_if_statement] = STATE(165), - [sym_switch_statement] = STATE(165), - [sym_case_statement] = STATE(165), - [sym_while_statement] = STATE(165), - [sym_do_statement] = STATE(165), - [sym_for_statement] = STATE(165), - [sym_return_statement] = STATE(165), - [sym_break_statement] = STATE(165), - [sym_continue_statement] = STATE(165), - [sym_goto_statement] = STATE(165), - [sym_seh_try_statement] = STATE(165), - [sym_seh_leave_statement] = STATE(165), - [sym__expression] = STATE(1089), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1976), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [aux_sym_attributed_declarator_repeat1] = STATE(393), - [sym_identifier] = ACTIONS(1520), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(368), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1387), - [anon_sym_LBRACE] = ACTIONS(376), - [anon_sym_if] = ACTIONS(380), - [anon_sym_switch] = ACTIONS(382), - [anon_sym_case] = ACTIONS(384), - [anon_sym_default] = ACTIONS(386), - [anon_sym_while] = ACTIONS(388), - [anon_sym_do] = ACTIONS(390), - [anon_sym_for] = ACTIONS(392), - [anon_sym_return] = ACTIONS(394), - [anon_sym_break] = ACTIONS(396), - [anon_sym_continue] = ACTIONS(398), - [anon_sym_goto] = ACTIONS(400), - [anon_sym___try] = ACTIONS(402), - [anon_sym___leave] = ACTIONS(404), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [353] = { + [ts_builtin_sym_end] = ACTIONS(1367), + [sym_identifier] = ACTIONS(1365), + [aux_sym_preproc_include_token1] = ACTIONS(1365), + [aux_sym_preproc_def_token1] = ACTIONS(1365), + [aux_sym_preproc_if_token1] = ACTIONS(1365), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1365), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1365), + [sym_preproc_directive] = ACTIONS(1365), + [anon_sym_LPAREN2] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1367), + [anon_sym_TILDE] = ACTIONS(1367), + [anon_sym_DASH] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1365), + [anon_sym_STAR] = ACTIONS(1367), + [anon_sym_AMP] = ACTIONS(1367), + [anon_sym___extension__] = ACTIONS(1365), + [anon_sym_typedef] = ACTIONS(1365), + [anon_sym_extern] = ACTIONS(1365), + [anon_sym___attribute__] = ACTIONS(1365), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1367), + [anon_sym___declspec] = ACTIONS(1365), + [anon_sym___cdecl] = ACTIONS(1365), + [anon_sym___clrcall] = ACTIONS(1365), + [anon_sym___stdcall] = ACTIONS(1365), + [anon_sym___fastcall] = ACTIONS(1365), + [anon_sym___thiscall] = ACTIONS(1365), + [anon_sym___vectorcall] = ACTIONS(1365), + [anon_sym_LBRACE] = ACTIONS(1367), + [anon_sym_signed] = ACTIONS(1365), + [anon_sym_unsigned] = ACTIONS(1365), + [anon_sym_long] = ACTIONS(1365), + [anon_sym_short] = ACTIONS(1365), + [anon_sym_static] = ACTIONS(1365), + [anon_sym_auto] = ACTIONS(1365), + [anon_sym_register] = ACTIONS(1365), + [anon_sym_inline] = ACTIONS(1365), + [anon_sym___inline] = ACTIONS(1365), + [anon_sym___inline__] = ACTIONS(1365), + [anon_sym___forceinline] = ACTIONS(1365), + [anon_sym_thread_local] = ACTIONS(1365), + [anon_sym___thread] = ACTIONS(1365), + [anon_sym_const] = ACTIONS(1365), + [anon_sym_constexpr] = ACTIONS(1365), + [anon_sym_volatile] = ACTIONS(1365), + [anon_sym_restrict] = ACTIONS(1365), + [anon_sym___restrict__] = ACTIONS(1365), + [anon_sym__Atomic] = ACTIONS(1365), + [anon_sym__Noreturn] = ACTIONS(1365), + [anon_sym_noreturn] = ACTIONS(1365), + [anon_sym_alignas] = ACTIONS(1365), + [anon_sym__Alignas] = ACTIONS(1365), + [sym_primitive_type] = ACTIONS(1365), + [anon_sym_enum] = ACTIONS(1365), + [anon_sym_struct] = ACTIONS(1365), + [anon_sym_union] = ACTIONS(1365), + [anon_sym_if] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1365), + [anon_sym_case] = ACTIONS(1365), + [anon_sym_default] = ACTIONS(1365), + [anon_sym_while] = ACTIONS(1365), + [anon_sym_do] = ACTIONS(1365), + [anon_sym_for] = ACTIONS(1365), + [anon_sym_return] = ACTIONS(1365), + [anon_sym_break] = ACTIONS(1365), + [anon_sym_continue] = ACTIONS(1365), + [anon_sym_goto] = ACTIONS(1365), + [anon_sym_DASH_DASH] = ACTIONS(1367), + [anon_sym_PLUS_PLUS] = ACTIONS(1367), + [anon_sym_sizeof] = ACTIONS(1365), + [anon_sym___alignof__] = ACTIONS(1365), + [anon_sym___alignof] = ACTIONS(1365), + [anon_sym__alignof] = ACTIONS(1365), + [anon_sym_alignof] = ACTIONS(1365), + [anon_sym__Alignof] = ACTIONS(1365), + [anon_sym_offsetof] = ACTIONS(1365), + [anon_sym__Generic] = ACTIONS(1365), + [anon_sym_asm] = ACTIONS(1365), + [anon_sym___asm__] = ACTIONS(1365), + [sym_number_literal] = ACTIONS(1367), + [anon_sym_L_SQUOTE] = ACTIONS(1367), + [anon_sym_u_SQUOTE] = ACTIONS(1367), + [anon_sym_U_SQUOTE] = ACTIONS(1367), + [anon_sym_u8_SQUOTE] = ACTIONS(1367), + [anon_sym_SQUOTE] = ACTIONS(1367), + [anon_sym_L_DQUOTE] = ACTIONS(1367), + [anon_sym_u_DQUOTE] = ACTIONS(1367), + [anon_sym_U_DQUOTE] = ACTIONS(1367), + [anon_sym_u8_DQUOTE] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1367), + [sym_true] = ACTIONS(1365), + [sym_false] = ACTIONS(1365), + [anon_sym_NULL] = ACTIONS(1365), + [anon_sym_nullptr] = ACTIONS(1365), [sym_comment] = ACTIONS(3), }, - [402] = { - [sym_attribute_declaration] = STATE(393), - [sym_compound_statement] = STATE(157), - [sym_attributed_statement] = STATE(157), - [sym_labeled_statement] = STATE(157), - [sym_expression_statement] = STATE(157), - [sym_if_statement] = STATE(157), - [sym_switch_statement] = STATE(157), - [sym_case_statement] = STATE(157), - [sym_while_statement] = STATE(157), - [sym_do_statement] = STATE(157), - [sym_for_statement] = STATE(157), - [sym_return_statement] = STATE(157), - [sym_break_statement] = STATE(157), - [sym_continue_statement] = STATE(157), - [sym_goto_statement] = STATE(157), - [sym_seh_try_statement] = STATE(157), - [sym_seh_leave_statement] = STATE(157), - [sym__expression] = STATE(1089), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1976), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [aux_sym_attributed_declarator_repeat1] = STATE(393), - [sym_identifier] = ACTIONS(1520), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(368), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1387), - [anon_sym_LBRACE] = ACTIONS(376), - [anon_sym_if] = ACTIONS(380), - [anon_sym_switch] = ACTIONS(382), - [anon_sym_case] = ACTIONS(384), - [anon_sym_default] = ACTIONS(386), - [anon_sym_while] = ACTIONS(388), - [anon_sym_do] = ACTIONS(390), - [anon_sym_for] = ACTIONS(392), - [anon_sym_return] = ACTIONS(394), - [anon_sym_break] = ACTIONS(396), - [anon_sym_continue] = ACTIONS(398), - [anon_sym_goto] = ACTIONS(400), - [anon_sym___try] = ACTIONS(402), - [anon_sym___leave] = ACTIONS(404), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [354] = { + [ts_builtin_sym_end] = ACTIONS(1329), + [sym_identifier] = ACTIONS(1327), + [aux_sym_preproc_include_token1] = ACTIONS(1327), + [aux_sym_preproc_def_token1] = ACTIONS(1327), + [aux_sym_preproc_if_token1] = ACTIONS(1327), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1327), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1327), + [sym_preproc_directive] = ACTIONS(1327), + [anon_sym_LPAREN2] = ACTIONS(1329), + [anon_sym_BANG] = ACTIONS(1329), + [anon_sym_TILDE] = ACTIONS(1329), + [anon_sym_DASH] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1327), + [anon_sym_STAR] = ACTIONS(1329), + [anon_sym_AMP] = ACTIONS(1329), + [anon_sym___extension__] = ACTIONS(1327), + [anon_sym_typedef] = ACTIONS(1327), + [anon_sym_extern] = ACTIONS(1327), + [anon_sym___attribute__] = ACTIONS(1327), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1329), + [anon_sym___declspec] = ACTIONS(1327), + [anon_sym___cdecl] = ACTIONS(1327), + [anon_sym___clrcall] = ACTIONS(1327), + [anon_sym___stdcall] = ACTIONS(1327), + [anon_sym___fastcall] = ACTIONS(1327), + [anon_sym___thiscall] = ACTIONS(1327), + [anon_sym___vectorcall] = ACTIONS(1327), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_signed] = ACTIONS(1327), + [anon_sym_unsigned] = ACTIONS(1327), + [anon_sym_long] = ACTIONS(1327), + [anon_sym_short] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(1327), + [anon_sym_auto] = ACTIONS(1327), + [anon_sym_register] = ACTIONS(1327), + [anon_sym_inline] = ACTIONS(1327), + [anon_sym___inline] = ACTIONS(1327), + [anon_sym___inline__] = ACTIONS(1327), + [anon_sym___forceinline] = ACTIONS(1327), + [anon_sym_thread_local] = ACTIONS(1327), + [anon_sym___thread] = ACTIONS(1327), + [anon_sym_const] = ACTIONS(1327), + [anon_sym_constexpr] = ACTIONS(1327), + [anon_sym_volatile] = ACTIONS(1327), + [anon_sym_restrict] = ACTIONS(1327), + [anon_sym___restrict__] = ACTIONS(1327), + [anon_sym__Atomic] = ACTIONS(1327), + [anon_sym__Noreturn] = ACTIONS(1327), + [anon_sym_noreturn] = ACTIONS(1327), + [anon_sym_alignas] = ACTIONS(1327), + [anon_sym__Alignas] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1327), + [anon_sym_enum] = ACTIONS(1327), + [anon_sym_struct] = ACTIONS(1327), + [anon_sym_union] = ACTIONS(1327), + [anon_sym_if] = ACTIONS(1327), + [anon_sym_switch] = ACTIONS(1327), + [anon_sym_case] = ACTIONS(1327), + [anon_sym_default] = ACTIONS(1327), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_do] = ACTIONS(1327), + [anon_sym_for] = ACTIONS(1327), + [anon_sym_return] = ACTIONS(1327), + [anon_sym_break] = ACTIONS(1327), + [anon_sym_continue] = ACTIONS(1327), + [anon_sym_goto] = ACTIONS(1327), + [anon_sym_DASH_DASH] = ACTIONS(1329), + [anon_sym_PLUS_PLUS] = ACTIONS(1329), + [anon_sym_sizeof] = ACTIONS(1327), + [anon_sym___alignof__] = ACTIONS(1327), + [anon_sym___alignof] = ACTIONS(1327), + [anon_sym__alignof] = ACTIONS(1327), + [anon_sym_alignof] = ACTIONS(1327), + [anon_sym__Alignof] = ACTIONS(1327), + [anon_sym_offsetof] = ACTIONS(1327), + [anon_sym__Generic] = ACTIONS(1327), + [anon_sym_asm] = ACTIONS(1327), + [anon_sym___asm__] = ACTIONS(1327), + [sym_number_literal] = ACTIONS(1329), + [anon_sym_L_SQUOTE] = ACTIONS(1329), + [anon_sym_u_SQUOTE] = ACTIONS(1329), + [anon_sym_U_SQUOTE] = ACTIONS(1329), + [anon_sym_u8_SQUOTE] = ACTIONS(1329), + [anon_sym_SQUOTE] = ACTIONS(1329), + [anon_sym_L_DQUOTE] = ACTIONS(1329), + [anon_sym_u_DQUOTE] = ACTIONS(1329), + [anon_sym_U_DQUOTE] = ACTIONS(1329), + [anon_sym_u8_DQUOTE] = ACTIONS(1329), + [anon_sym_DQUOTE] = ACTIONS(1329), + [sym_true] = ACTIONS(1327), + [sym_false] = ACTIONS(1327), + [anon_sym_NULL] = ACTIONS(1327), + [anon_sym_nullptr] = ACTIONS(1327), [sym_comment] = ACTIONS(3), }, - [403] = { - [sym_attribute_declaration] = STATE(372), - [sym_compound_statement] = STATE(181), - [sym_attributed_statement] = STATE(181), - [sym_labeled_statement] = STATE(181), - [sym_expression_statement] = STATE(181), - [sym_if_statement] = STATE(181), - [sym_switch_statement] = STATE(181), - [sym_case_statement] = STATE(181), - [sym_while_statement] = STATE(181), - [sym_do_statement] = STATE(181), - [sym_for_statement] = STATE(181), - [sym_return_statement] = STATE(181), - [sym_break_statement] = STATE(181), - [sym_continue_statement] = STATE(181), - [sym_goto_statement] = STATE(181), - [sym_seh_try_statement] = STATE(181), - [sym_seh_leave_statement] = STATE(181), - [sym__expression] = STATE(1088), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1880), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [aux_sym_attributed_declarator_repeat1] = STATE(372), - [sym_identifier] = ACTIONS(1385), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(980), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1387), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_case] = ACTIONS(63), - [anon_sym_default] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_return] = ACTIONS(73), - [anon_sym_break] = ACTIONS(75), - [anon_sym_continue] = ACTIONS(77), - [anon_sym_goto] = ACTIONS(79), - [anon_sym___try] = ACTIONS(982), - [anon_sym___leave] = ACTIONS(984), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [355] = { + [ts_builtin_sym_end] = ACTIONS(1309), + [sym_identifier] = ACTIONS(1307), + [aux_sym_preproc_include_token1] = ACTIONS(1307), + [aux_sym_preproc_def_token1] = ACTIONS(1307), + [aux_sym_preproc_if_token1] = ACTIONS(1307), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1307), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1307), + [sym_preproc_directive] = ACTIONS(1307), + [anon_sym_LPAREN2] = ACTIONS(1309), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_TILDE] = ACTIONS(1309), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(1307), + [anon_sym_STAR] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1309), + [anon_sym___extension__] = ACTIONS(1307), + [anon_sym_typedef] = ACTIONS(1307), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym___attribute__] = ACTIONS(1307), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1309), + [anon_sym___declspec] = ACTIONS(1307), + [anon_sym___cdecl] = ACTIONS(1307), + [anon_sym___clrcall] = ACTIONS(1307), + [anon_sym___stdcall] = ACTIONS(1307), + [anon_sym___fastcall] = ACTIONS(1307), + [anon_sym___thiscall] = ACTIONS(1307), + [anon_sym___vectorcall] = ACTIONS(1307), + [anon_sym_LBRACE] = ACTIONS(1309), + [anon_sym_signed] = ACTIONS(1307), + [anon_sym_unsigned] = ACTIONS(1307), + [anon_sym_long] = ACTIONS(1307), + [anon_sym_short] = ACTIONS(1307), + [anon_sym_static] = ACTIONS(1307), + [anon_sym_auto] = ACTIONS(1307), + [anon_sym_register] = ACTIONS(1307), + [anon_sym_inline] = ACTIONS(1307), + [anon_sym___inline] = ACTIONS(1307), + [anon_sym___inline__] = ACTIONS(1307), + [anon_sym___forceinline] = ACTIONS(1307), + [anon_sym_thread_local] = ACTIONS(1307), + [anon_sym___thread] = ACTIONS(1307), + [anon_sym_const] = ACTIONS(1307), + [anon_sym_constexpr] = ACTIONS(1307), + [anon_sym_volatile] = ACTIONS(1307), + [anon_sym_restrict] = ACTIONS(1307), + [anon_sym___restrict__] = ACTIONS(1307), + [anon_sym__Atomic] = ACTIONS(1307), + [anon_sym__Noreturn] = ACTIONS(1307), + [anon_sym_noreturn] = ACTIONS(1307), + [anon_sym_alignas] = ACTIONS(1307), + [anon_sym__Alignas] = ACTIONS(1307), + [sym_primitive_type] = ACTIONS(1307), + [anon_sym_enum] = ACTIONS(1307), + [anon_sym_struct] = ACTIONS(1307), + [anon_sym_union] = ACTIONS(1307), + [anon_sym_if] = ACTIONS(1307), + [anon_sym_switch] = ACTIONS(1307), + [anon_sym_case] = ACTIONS(1307), + [anon_sym_default] = ACTIONS(1307), + [anon_sym_while] = ACTIONS(1307), + [anon_sym_do] = ACTIONS(1307), + [anon_sym_for] = ACTIONS(1307), + [anon_sym_return] = ACTIONS(1307), + [anon_sym_break] = ACTIONS(1307), + [anon_sym_continue] = ACTIONS(1307), + [anon_sym_goto] = ACTIONS(1307), + [anon_sym_DASH_DASH] = ACTIONS(1309), + [anon_sym_PLUS_PLUS] = ACTIONS(1309), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym___alignof__] = ACTIONS(1307), + [anon_sym___alignof] = ACTIONS(1307), + [anon_sym__alignof] = ACTIONS(1307), + [anon_sym_alignof] = ACTIONS(1307), + [anon_sym__Alignof] = ACTIONS(1307), + [anon_sym_offsetof] = ACTIONS(1307), + [anon_sym__Generic] = ACTIONS(1307), + [anon_sym_asm] = ACTIONS(1307), + [anon_sym___asm__] = ACTIONS(1307), + [sym_number_literal] = ACTIONS(1309), + [anon_sym_L_SQUOTE] = ACTIONS(1309), + [anon_sym_u_SQUOTE] = ACTIONS(1309), + [anon_sym_U_SQUOTE] = ACTIONS(1309), + [anon_sym_u8_SQUOTE] = ACTIONS(1309), + [anon_sym_SQUOTE] = ACTIONS(1309), + [anon_sym_L_DQUOTE] = ACTIONS(1309), + [anon_sym_u_DQUOTE] = ACTIONS(1309), + [anon_sym_U_DQUOTE] = ACTIONS(1309), + [anon_sym_u8_DQUOTE] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1309), + [sym_true] = ACTIONS(1307), + [sym_false] = ACTIONS(1307), + [anon_sym_NULL] = ACTIONS(1307), + [anon_sym_nullptr] = ACTIONS(1307), [sym_comment] = ACTIONS(3), }, - [404] = { - [sym_attribute_declaration] = STATE(388), - [sym_compound_statement] = STATE(178), - [sym_attributed_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_switch_statement] = STATE(178), - [sym_case_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_goto_statement] = STATE(178), - [sym_seh_try_statement] = STATE(178), - [sym_seh_leave_statement] = STATE(178), - [sym__expression] = STATE(1054), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1853), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [aux_sym_attributed_declarator_repeat1] = STATE(388), - [sym_identifier] = ACTIONS(1570), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(424), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1387), - [anon_sym_LBRACE] = ACTIONS(432), - [anon_sym_if] = ACTIONS(434), - [anon_sym_switch] = ACTIONS(436), - [anon_sym_case] = ACTIONS(438), - [anon_sym_default] = ACTIONS(440), - [anon_sym_while] = ACTIONS(442), - [anon_sym_do] = ACTIONS(444), - [anon_sym_for] = ACTIONS(446), - [anon_sym_return] = ACTIONS(448), - [anon_sym_break] = ACTIONS(450), - [anon_sym_continue] = ACTIONS(452), - [anon_sym_goto] = ACTIONS(454), - [anon_sym___try] = ACTIONS(456), - [anon_sym___leave] = ACTIONS(458), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [356] = { + [ts_builtin_sym_end] = ACTIONS(1281), + [sym_identifier] = ACTIONS(1279), + [aux_sym_preproc_include_token1] = ACTIONS(1279), + [aux_sym_preproc_def_token1] = ACTIONS(1279), + [aux_sym_preproc_if_token1] = ACTIONS(1279), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1279), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1279), + [sym_preproc_directive] = ACTIONS(1279), + [anon_sym_LPAREN2] = ACTIONS(1281), + [anon_sym_BANG] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1281), + [anon_sym_DASH] = ACTIONS(1279), + [anon_sym_PLUS] = ACTIONS(1279), + [anon_sym_STAR] = ACTIONS(1281), + [anon_sym_AMP] = ACTIONS(1281), + [anon_sym___extension__] = ACTIONS(1279), + [anon_sym_typedef] = ACTIONS(1279), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym___attribute__] = ACTIONS(1279), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1281), + [anon_sym___declspec] = ACTIONS(1279), + [anon_sym___cdecl] = ACTIONS(1279), + [anon_sym___clrcall] = ACTIONS(1279), + [anon_sym___stdcall] = ACTIONS(1279), + [anon_sym___fastcall] = ACTIONS(1279), + [anon_sym___thiscall] = ACTIONS(1279), + [anon_sym___vectorcall] = ACTIONS(1279), + [anon_sym_LBRACE] = ACTIONS(1281), + [anon_sym_signed] = ACTIONS(1279), + [anon_sym_unsigned] = ACTIONS(1279), + [anon_sym_long] = ACTIONS(1279), + [anon_sym_short] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(1279), + [anon_sym_auto] = ACTIONS(1279), + [anon_sym_register] = ACTIONS(1279), + [anon_sym_inline] = ACTIONS(1279), + [anon_sym___inline] = ACTIONS(1279), + [anon_sym___inline__] = ACTIONS(1279), + [anon_sym___forceinline] = ACTIONS(1279), + [anon_sym_thread_local] = ACTIONS(1279), + [anon_sym___thread] = ACTIONS(1279), + [anon_sym_const] = ACTIONS(1279), + [anon_sym_constexpr] = ACTIONS(1279), + [anon_sym_volatile] = ACTIONS(1279), + [anon_sym_restrict] = ACTIONS(1279), + [anon_sym___restrict__] = ACTIONS(1279), + [anon_sym__Atomic] = ACTIONS(1279), + [anon_sym__Noreturn] = ACTIONS(1279), + [anon_sym_noreturn] = ACTIONS(1279), + [anon_sym_alignas] = ACTIONS(1279), + [anon_sym__Alignas] = ACTIONS(1279), + [sym_primitive_type] = ACTIONS(1279), + [anon_sym_enum] = ACTIONS(1279), + [anon_sym_struct] = ACTIONS(1279), + [anon_sym_union] = ACTIONS(1279), + [anon_sym_if] = ACTIONS(1279), + [anon_sym_switch] = ACTIONS(1279), + [anon_sym_case] = ACTIONS(1279), + [anon_sym_default] = ACTIONS(1279), + [anon_sym_while] = ACTIONS(1279), + [anon_sym_do] = ACTIONS(1279), + [anon_sym_for] = ACTIONS(1279), + [anon_sym_return] = ACTIONS(1279), + [anon_sym_break] = ACTIONS(1279), + [anon_sym_continue] = ACTIONS(1279), + [anon_sym_goto] = ACTIONS(1279), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1279), + [anon_sym___alignof__] = ACTIONS(1279), + [anon_sym___alignof] = ACTIONS(1279), + [anon_sym__alignof] = ACTIONS(1279), + [anon_sym_alignof] = ACTIONS(1279), + [anon_sym__Alignof] = ACTIONS(1279), + [anon_sym_offsetof] = ACTIONS(1279), + [anon_sym__Generic] = ACTIONS(1279), + [anon_sym_asm] = ACTIONS(1279), + [anon_sym___asm__] = ACTIONS(1279), + [sym_number_literal] = ACTIONS(1281), + [anon_sym_L_SQUOTE] = ACTIONS(1281), + [anon_sym_u_SQUOTE] = ACTIONS(1281), + [anon_sym_U_SQUOTE] = ACTIONS(1281), + [anon_sym_u8_SQUOTE] = ACTIONS(1281), + [anon_sym_SQUOTE] = ACTIONS(1281), + [anon_sym_L_DQUOTE] = ACTIONS(1281), + [anon_sym_u_DQUOTE] = ACTIONS(1281), + [anon_sym_U_DQUOTE] = ACTIONS(1281), + [anon_sym_u8_DQUOTE] = ACTIONS(1281), + [anon_sym_DQUOTE] = ACTIONS(1281), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [anon_sym_NULL] = ACTIONS(1279), + [anon_sym_nullptr] = ACTIONS(1279), [sym_comment] = ACTIONS(3), }, - [405] = { - [sym_attribute_declaration] = STATE(380), - [sym_compound_statement] = STATE(92), - [sym_attributed_statement] = STATE(92), - [sym_labeled_statement] = STATE(92), - [sym_expression_statement] = STATE(92), - [sym_if_statement] = STATE(92), - [sym_switch_statement] = STATE(92), - [sym_case_statement] = STATE(92), - [sym_while_statement] = STATE(92), - [sym_do_statement] = STATE(92), - [sym_for_statement] = STATE(92), - [sym_return_statement] = STATE(92), - [sym_break_statement] = STATE(92), - [sym_continue_statement] = STATE(92), - [sym_goto_statement] = STATE(92), - [sym_seh_try_statement] = STATE(92), - [sym_seh_leave_statement] = STATE(92), - [sym__expression] = STATE(1097), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1839), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [aux_sym_attributed_declarator_repeat1] = STATE(380), - [sym_identifier] = ACTIONS(1389), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1387), - [anon_sym_LBRACE] = ACTIONS(131), - [anon_sym_if] = ACTIONS(133), - [anon_sym_switch] = ACTIONS(135), - [anon_sym_case] = ACTIONS(137), - [anon_sym_default] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_do] = ACTIONS(143), - [anon_sym_for] = ACTIONS(145), - [anon_sym_return] = ACTIONS(147), - [anon_sym_break] = ACTIONS(149), - [anon_sym_continue] = ACTIONS(151), - [anon_sym_goto] = ACTIONS(153), - [anon_sym___try] = ACTIONS(155), - [anon_sym___leave] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - }, - [406] = { - [ts_builtin_sym_end] = ACTIONS(1662), - [sym_identifier] = ACTIONS(1664), - [aux_sym_preproc_include_token1] = ACTIONS(1664), - [aux_sym_preproc_def_token1] = ACTIONS(1664), - [aux_sym_preproc_if_token1] = ACTIONS(1664), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1664), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1664), - [sym_preproc_directive] = ACTIONS(1664), - [anon_sym_LPAREN2] = ACTIONS(1662), - [anon_sym_BANG] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1662), - [anon_sym_DASH] = ACTIONS(1664), - [anon_sym_PLUS] = ACTIONS(1664), - [anon_sym_STAR] = ACTIONS(1662), - [anon_sym_AMP] = ACTIONS(1662), - [anon_sym___extension__] = ACTIONS(1664), - [anon_sym_typedef] = ACTIONS(1664), - [anon_sym_extern] = ACTIONS(1664), - [anon_sym___attribute__] = ACTIONS(1664), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1662), - [anon_sym___declspec] = ACTIONS(1664), - [anon_sym___cdecl] = ACTIONS(1664), - [anon_sym___clrcall] = ACTIONS(1664), - [anon_sym___stdcall] = ACTIONS(1664), - [anon_sym___fastcall] = ACTIONS(1664), - [anon_sym___thiscall] = ACTIONS(1664), - [anon_sym___vectorcall] = ACTIONS(1664), - [anon_sym_LBRACE] = ACTIONS(1662), - [anon_sym_signed] = ACTIONS(1664), - [anon_sym_unsigned] = ACTIONS(1664), - [anon_sym_long] = ACTIONS(1664), - [anon_sym_short] = ACTIONS(1664), - [anon_sym_static] = ACTIONS(1664), - [anon_sym_auto] = ACTIONS(1664), - [anon_sym_register] = ACTIONS(1664), - [anon_sym_inline] = ACTIONS(1664), - [anon_sym___inline] = ACTIONS(1664), - [anon_sym___inline__] = ACTIONS(1664), - [anon_sym___forceinline] = ACTIONS(1664), - [anon_sym_thread_local] = ACTIONS(1664), - [anon_sym___thread] = ACTIONS(1664), - [anon_sym_const] = ACTIONS(1664), - [anon_sym_constexpr] = ACTIONS(1664), - [anon_sym_volatile] = ACTIONS(1664), - [anon_sym_restrict] = ACTIONS(1664), - [anon_sym___restrict__] = ACTIONS(1664), - [anon_sym__Atomic] = ACTIONS(1664), - [anon_sym__Noreturn] = ACTIONS(1664), - [anon_sym_noreturn] = ACTIONS(1664), - [anon_sym_alignas] = ACTIONS(1664), - [anon_sym__Alignas] = ACTIONS(1664), - [sym_primitive_type] = ACTIONS(1664), - [anon_sym_enum] = ACTIONS(1664), - [anon_sym_struct] = ACTIONS(1664), - [anon_sym_union] = ACTIONS(1664), - [anon_sym_if] = ACTIONS(1664), - [anon_sym_switch] = ACTIONS(1664), - [anon_sym_case] = ACTIONS(1664), - [anon_sym_default] = ACTIONS(1664), - [anon_sym_while] = ACTIONS(1664), - [anon_sym_do] = ACTIONS(1664), - [anon_sym_for] = ACTIONS(1664), - [anon_sym_return] = ACTIONS(1664), - [anon_sym_break] = ACTIONS(1664), - [anon_sym_continue] = ACTIONS(1664), - [anon_sym_goto] = ACTIONS(1664), - [anon_sym_DASH_DASH] = ACTIONS(1662), - [anon_sym_PLUS_PLUS] = ACTIONS(1662), - [anon_sym_sizeof] = ACTIONS(1664), - [anon_sym___alignof__] = ACTIONS(1664), - [anon_sym___alignof] = ACTIONS(1664), - [anon_sym__alignof] = ACTIONS(1664), - [anon_sym_alignof] = ACTIONS(1664), - [anon_sym__Alignof] = ACTIONS(1664), - [anon_sym_offsetof] = ACTIONS(1664), - [anon_sym__Generic] = ACTIONS(1664), - [anon_sym_asm] = ACTIONS(1664), - [anon_sym___asm__] = ACTIONS(1664), - [sym_number_literal] = ACTIONS(1662), - [anon_sym_L_SQUOTE] = ACTIONS(1662), - [anon_sym_u_SQUOTE] = ACTIONS(1662), - [anon_sym_U_SQUOTE] = ACTIONS(1662), - [anon_sym_u8_SQUOTE] = ACTIONS(1662), - [anon_sym_SQUOTE] = ACTIONS(1662), - [anon_sym_L_DQUOTE] = ACTIONS(1662), - [anon_sym_u_DQUOTE] = ACTIONS(1662), - [anon_sym_U_DQUOTE] = ACTIONS(1662), - [anon_sym_u8_DQUOTE] = ACTIONS(1662), - [anon_sym_DQUOTE] = ACTIONS(1662), - [sym_true] = ACTIONS(1664), - [sym_false] = ACTIONS(1664), - [anon_sym_NULL] = ACTIONS(1664), - [anon_sym_nullptr] = ACTIONS(1664), + [357] = { + [ts_builtin_sym_end] = ACTIONS(1325), + [sym_identifier] = ACTIONS(1323), + [aux_sym_preproc_include_token1] = ACTIONS(1323), + [aux_sym_preproc_def_token1] = ACTIONS(1323), + [aux_sym_preproc_if_token1] = ACTIONS(1323), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1323), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1323), + [sym_preproc_directive] = ACTIONS(1323), + [anon_sym_LPAREN2] = ACTIONS(1325), + [anon_sym_BANG] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1325), + [anon_sym_DASH] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1323), + [anon_sym_STAR] = ACTIONS(1325), + [anon_sym_AMP] = ACTIONS(1325), + [anon_sym___extension__] = ACTIONS(1323), + [anon_sym_typedef] = ACTIONS(1323), + [anon_sym_extern] = ACTIONS(1323), + [anon_sym___attribute__] = ACTIONS(1323), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym___declspec] = ACTIONS(1323), + [anon_sym___cdecl] = ACTIONS(1323), + [anon_sym___clrcall] = ACTIONS(1323), + [anon_sym___stdcall] = ACTIONS(1323), + [anon_sym___fastcall] = ACTIONS(1323), + [anon_sym___thiscall] = ACTIONS(1323), + [anon_sym___vectorcall] = ACTIONS(1323), + [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_signed] = ACTIONS(1323), + [anon_sym_unsigned] = ACTIONS(1323), + [anon_sym_long] = ACTIONS(1323), + [anon_sym_short] = ACTIONS(1323), + [anon_sym_static] = ACTIONS(1323), + [anon_sym_auto] = ACTIONS(1323), + [anon_sym_register] = ACTIONS(1323), + [anon_sym_inline] = ACTIONS(1323), + [anon_sym___inline] = ACTIONS(1323), + [anon_sym___inline__] = ACTIONS(1323), + [anon_sym___forceinline] = ACTIONS(1323), + [anon_sym_thread_local] = ACTIONS(1323), + [anon_sym___thread] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_constexpr] = ACTIONS(1323), + [anon_sym_volatile] = ACTIONS(1323), + [anon_sym_restrict] = ACTIONS(1323), + [anon_sym___restrict__] = ACTIONS(1323), + [anon_sym__Atomic] = ACTIONS(1323), + [anon_sym__Noreturn] = ACTIONS(1323), + [anon_sym_noreturn] = ACTIONS(1323), + [anon_sym_alignas] = ACTIONS(1323), + [anon_sym__Alignas] = ACTIONS(1323), + [sym_primitive_type] = ACTIONS(1323), + [anon_sym_enum] = ACTIONS(1323), + [anon_sym_struct] = ACTIONS(1323), + [anon_sym_union] = ACTIONS(1323), + [anon_sym_if] = ACTIONS(1323), + [anon_sym_switch] = ACTIONS(1323), + [anon_sym_case] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1323), + [anon_sym_while] = ACTIONS(1323), + [anon_sym_do] = ACTIONS(1323), + [anon_sym_for] = ACTIONS(1323), + [anon_sym_return] = ACTIONS(1323), + [anon_sym_break] = ACTIONS(1323), + [anon_sym_continue] = ACTIONS(1323), + [anon_sym_goto] = ACTIONS(1323), + [anon_sym_DASH_DASH] = ACTIONS(1325), + [anon_sym_PLUS_PLUS] = ACTIONS(1325), + [anon_sym_sizeof] = ACTIONS(1323), + [anon_sym___alignof__] = ACTIONS(1323), + [anon_sym___alignof] = ACTIONS(1323), + [anon_sym__alignof] = ACTIONS(1323), + [anon_sym_alignof] = ACTIONS(1323), + [anon_sym__Alignof] = ACTIONS(1323), + [anon_sym_offsetof] = ACTIONS(1323), + [anon_sym__Generic] = ACTIONS(1323), + [anon_sym_asm] = ACTIONS(1323), + [anon_sym___asm__] = ACTIONS(1323), + [sym_number_literal] = ACTIONS(1325), + [anon_sym_L_SQUOTE] = ACTIONS(1325), + [anon_sym_u_SQUOTE] = ACTIONS(1325), + [anon_sym_U_SQUOTE] = ACTIONS(1325), + [anon_sym_u8_SQUOTE] = ACTIONS(1325), + [anon_sym_SQUOTE] = ACTIONS(1325), + [anon_sym_L_DQUOTE] = ACTIONS(1325), + [anon_sym_u_DQUOTE] = ACTIONS(1325), + [anon_sym_U_DQUOTE] = ACTIONS(1325), + [anon_sym_u8_DQUOTE] = ACTIONS(1325), + [anon_sym_DQUOTE] = ACTIONS(1325), + [sym_true] = ACTIONS(1323), + [sym_false] = ACTIONS(1323), + [anon_sym_NULL] = ACTIONS(1323), + [anon_sym_nullptr] = ACTIONS(1323), [sym_comment] = ACTIONS(3), }, - [407] = { - [ts_builtin_sym_end] = ACTIONS(1261), - [sym_identifier] = ACTIONS(1259), - [aux_sym_preproc_include_token1] = ACTIONS(1259), - [aux_sym_preproc_def_token1] = ACTIONS(1259), - [aux_sym_preproc_if_token1] = ACTIONS(1259), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1259), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1259), - [sym_preproc_directive] = ACTIONS(1259), - [anon_sym_LPAREN2] = ACTIONS(1261), - [anon_sym_BANG] = ACTIONS(1261), - [anon_sym_TILDE] = ACTIONS(1261), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_STAR] = ACTIONS(1261), - [anon_sym_AMP] = ACTIONS(1261), - [anon_sym___extension__] = ACTIONS(1259), - [anon_sym_typedef] = ACTIONS(1259), - [anon_sym_extern] = ACTIONS(1259), - [anon_sym___attribute__] = ACTIONS(1259), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1261), - [anon_sym___declspec] = ACTIONS(1259), - [anon_sym___cdecl] = ACTIONS(1259), - [anon_sym___clrcall] = ACTIONS(1259), - [anon_sym___stdcall] = ACTIONS(1259), - [anon_sym___fastcall] = ACTIONS(1259), - [anon_sym___thiscall] = ACTIONS(1259), - [anon_sym___vectorcall] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(1261), - [anon_sym_signed] = ACTIONS(1259), - [anon_sym_unsigned] = ACTIONS(1259), - [anon_sym_long] = ACTIONS(1259), - [anon_sym_short] = ACTIONS(1259), - [anon_sym_static] = ACTIONS(1259), - [anon_sym_auto] = ACTIONS(1259), - [anon_sym_register] = ACTIONS(1259), - [anon_sym_inline] = ACTIONS(1259), - [anon_sym___inline] = ACTIONS(1259), - [anon_sym___inline__] = ACTIONS(1259), - [anon_sym___forceinline] = ACTIONS(1259), - [anon_sym_thread_local] = ACTIONS(1259), - [anon_sym___thread] = ACTIONS(1259), - [anon_sym_const] = ACTIONS(1259), - [anon_sym_constexpr] = ACTIONS(1259), - [anon_sym_volatile] = ACTIONS(1259), - [anon_sym_restrict] = ACTIONS(1259), - [anon_sym___restrict__] = ACTIONS(1259), - [anon_sym__Atomic] = ACTIONS(1259), - [anon_sym__Noreturn] = ACTIONS(1259), - [anon_sym_noreturn] = ACTIONS(1259), - [anon_sym_alignas] = ACTIONS(1259), - [anon_sym__Alignas] = ACTIONS(1259), - [sym_primitive_type] = ACTIONS(1259), - [anon_sym_enum] = ACTIONS(1259), - [anon_sym_struct] = ACTIONS(1259), - [anon_sym_union] = ACTIONS(1259), - [anon_sym_if] = ACTIONS(1259), - [anon_sym_switch] = ACTIONS(1259), - [anon_sym_case] = ACTIONS(1259), - [anon_sym_default] = ACTIONS(1259), - [anon_sym_while] = ACTIONS(1259), - [anon_sym_do] = ACTIONS(1259), - [anon_sym_for] = ACTIONS(1259), - [anon_sym_return] = ACTIONS(1259), - [anon_sym_break] = ACTIONS(1259), - [anon_sym_continue] = ACTIONS(1259), - [anon_sym_goto] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1261), - [anon_sym_PLUS_PLUS] = ACTIONS(1261), - [anon_sym_sizeof] = ACTIONS(1259), - [anon_sym___alignof__] = ACTIONS(1259), - [anon_sym___alignof] = ACTIONS(1259), - [anon_sym__alignof] = ACTIONS(1259), - [anon_sym_alignof] = ACTIONS(1259), - [anon_sym__Alignof] = ACTIONS(1259), - [anon_sym_offsetof] = ACTIONS(1259), - [anon_sym__Generic] = ACTIONS(1259), - [anon_sym_asm] = ACTIONS(1259), - [anon_sym___asm__] = ACTIONS(1259), - [sym_number_literal] = ACTIONS(1261), - [anon_sym_L_SQUOTE] = ACTIONS(1261), - [anon_sym_u_SQUOTE] = ACTIONS(1261), - [anon_sym_U_SQUOTE] = ACTIONS(1261), - [anon_sym_u8_SQUOTE] = ACTIONS(1261), - [anon_sym_SQUOTE] = ACTIONS(1261), - [anon_sym_L_DQUOTE] = ACTIONS(1261), - [anon_sym_u_DQUOTE] = ACTIONS(1261), - [anon_sym_U_DQUOTE] = ACTIONS(1261), - [anon_sym_u8_DQUOTE] = ACTIONS(1261), - [anon_sym_DQUOTE] = ACTIONS(1261), - [sym_true] = ACTIONS(1259), - [sym_false] = ACTIONS(1259), - [anon_sym_NULL] = ACTIONS(1259), - [anon_sym_nullptr] = ACTIONS(1259), + [358] = { + [ts_builtin_sym_end] = ACTIONS(1363), + [sym_identifier] = ACTIONS(1361), + [aux_sym_preproc_include_token1] = ACTIONS(1361), + [aux_sym_preproc_def_token1] = ACTIONS(1361), + [aux_sym_preproc_if_token1] = ACTIONS(1361), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1361), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1361), + [sym_preproc_directive] = ACTIONS(1361), + [anon_sym_LPAREN2] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_TILDE] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1361), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_AMP] = ACTIONS(1363), + [anon_sym___extension__] = ACTIONS(1361), + [anon_sym_typedef] = ACTIONS(1361), + [anon_sym_extern] = ACTIONS(1361), + [anon_sym___attribute__] = ACTIONS(1361), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1363), + [anon_sym___declspec] = ACTIONS(1361), + [anon_sym___cdecl] = ACTIONS(1361), + [anon_sym___clrcall] = ACTIONS(1361), + [anon_sym___stdcall] = ACTIONS(1361), + [anon_sym___fastcall] = ACTIONS(1361), + [anon_sym___thiscall] = ACTIONS(1361), + [anon_sym___vectorcall] = ACTIONS(1361), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_signed] = ACTIONS(1361), + [anon_sym_unsigned] = ACTIONS(1361), + [anon_sym_long] = ACTIONS(1361), + [anon_sym_short] = ACTIONS(1361), + [anon_sym_static] = ACTIONS(1361), + [anon_sym_auto] = ACTIONS(1361), + [anon_sym_register] = ACTIONS(1361), + [anon_sym_inline] = ACTIONS(1361), + [anon_sym___inline] = ACTIONS(1361), + [anon_sym___inline__] = ACTIONS(1361), + [anon_sym___forceinline] = ACTIONS(1361), + [anon_sym_thread_local] = ACTIONS(1361), + [anon_sym___thread] = ACTIONS(1361), + [anon_sym_const] = ACTIONS(1361), + [anon_sym_constexpr] = ACTIONS(1361), + [anon_sym_volatile] = ACTIONS(1361), + [anon_sym_restrict] = ACTIONS(1361), + [anon_sym___restrict__] = ACTIONS(1361), + [anon_sym__Atomic] = ACTIONS(1361), + [anon_sym__Noreturn] = ACTIONS(1361), + [anon_sym_noreturn] = ACTIONS(1361), + [anon_sym_alignas] = ACTIONS(1361), + [anon_sym__Alignas] = ACTIONS(1361), + [sym_primitive_type] = ACTIONS(1361), + [anon_sym_enum] = ACTIONS(1361), + [anon_sym_struct] = ACTIONS(1361), + [anon_sym_union] = ACTIONS(1361), + [anon_sym_if] = ACTIONS(1361), + [anon_sym_switch] = ACTIONS(1361), + [anon_sym_case] = ACTIONS(1361), + [anon_sym_default] = ACTIONS(1361), + [anon_sym_while] = ACTIONS(1361), + [anon_sym_do] = ACTIONS(1361), + [anon_sym_for] = ACTIONS(1361), + [anon_sym_return] = ACTIONS(1361), + [anon_sym_break] = ACTIONS(1361), + [anon_sym_continue] = ACTIONS(1361), + [anon_sym_goto] = ACTIONS(1361), + [anon_sym_DASH_DASH] = ACTIONS(1363), + [anon_sym_PLUS_PLUS] = ACTIONS(1363), + [anon_sym_sizeof] = ACTIONS(1361), + [anon_sym___alignof__] = ACTIONS(1361), + [anon_sym___alignof] = ACTIONS(1361), + [anon_sym__alignof] = ACTIONS(1361), + [anon_sym_alignof] = ACTIONS(1361), + [anon_sym__Alignof] = ACTIONS(1361), + [anon_sym_offsetof] = ACTIONS(1361), + [anon_sym__Generic] = ACTIONS(1361), + [anon_sym_asm] = ACTIONS(1361), + [anon_sym___asm__] = ACTIONS(1361), + [sym_number_literal] = ACTIONS(1363), + [anon_sym_L_SQUOTE] = ACTIONS(1363), + [anon_sym_u_SQUOTE] = ACTIONS(1363), + [anon_sym_U_SQUOTE] = ACTIONS(1363), + [anon_sym_u8_SQUOTE] = ACTIONS(1363), + [anon_sym_SQUOTE] = ACTIONS(1363), + [anon_sym_L_DQUOTE] = ACTIONS(1363), + [anon_sym_u_DQUOTE] = ACTIONS(1363), + [anon_sym_U_DQUOTE] = ACTIONS(1363), + [anon_sym_u8_DQUOTE] = ACTIONS(1363), + [anon_sym_DQUOTE] = ACTIONS(1363), + [sym_true] = ACTIONS(1361), + [sym_false] = ACTIONS(1361), + [anon_sym_NULL] = ACTIONS(1361), + [anon_sym_nullptr] = ACTIONS(1361), [sym_comment] = ACTIONS(3), }, - [408] = { - [ts_builtin_sym_end] = ACTIONS(1337), - [sym_identifier] = ACTIONS(1335), - [aux_sym_preproc_include_token1] = ACTIONS(1335), - [aux_sym_preproc_def_token1] = ACTIONS(1335), - [aux_sym_preproc_if_token1] = ACTIONS(1335), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1335), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1335), - [sym_preproc_directive] = ACTIONS(1335), - [anon_sym_LPAREN2] = ACTIONS(1337), - [anon_sym_BANG] = ACTIONS(1337), - [anon_sym_TILDE] = ACTIONS(1337), - [anon_sym_DASH] = ACTIONS(1335), - [anon_sym_PLUS] = ACTIONS(1335), - [anon_sym_STAR] = ACTIONS(1337), - [anon_sym_AMP] = ACTIONS(1337), - [anon_sym___extension__] = ACTIONS(1335), - [anon_sym_typedef] = ACTIONS(1335), - [anon_sym_extern] = ACTIONS(1335), - [anon_sym___attribute__] = ACTIONS(1335), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1337), - [anon_sym___declspec] = ACTIONS(1335), - [anon_sym___cdecl] = ACTIONS(1335), - [anon_sym___clrcall] = ACTIONS(1335), - [anon_sym___stdcall] = ACTIONS(1335), - [anon_sym___fastcall] = ACTIONS(1335), - [anon_sym___thiscall] = ACTIONS(1335), - [anon_sym___vectorcall] = ACTIONS(1335), - [anon_sym_LBRACE] = ACTIONS(1337), - [anon_sym_signed] = ACTIONS(1335), - [anon_sym_unsigned] = ACTIONS(1335), - [anon_sym_long] = ACTIONS(1335), - [anon_sym_short] = ACTIONS(1335), - [anon_sym_static] = ACTIONS(1335), - [anon_sym_auto] = ACTIONS(1335), - [anon_sym_register] = ACTIONS(1335), - [anon_sym_inline] = ACTIONS(1335), - [anon_sym___inline] = ACTIONS(1335), - [anon_sym___inline__] = ACTIONS(1335), - [anon_sym___forceinline] = ACTIONS(1335), - [anon_sym_thread_local] = ACTIONS(1335), - [anon_sym___thread] = ACTIONS(1335), - [anon_sym_const] = ACTIONS(1335), - [anon_sym_constexpr] = ACTIONS(1335), - [anon_sym_volatile] = ACTIONS(1335), - [anon_sym_restrict] = ACTIONS(1335), - [anon_sym___restrict__] = ACTIONS(1335), - [anon_sym__Atomic] = ACTIONS(1335), - [anon_sym__Noreturn] = ACTIONS(1335), - [anon_sym_noreturn] = ACTIONS(1335), - [anon_sym_alignas] = ACTIONS(1335), - [anon_sym__Alignas] = ACTIONS(1335), - [sym_primitive_type] = ACTIONS(1335), - [anon_sym_enum] = ACTIONS(1335), - [anon_sym_struct] = ACTIONS(1335), - [anon_sym_union] = ACTIONS(1335), - [anon_sym_if] = ACTIONS(1335), - [anon_sym_switch] = ACTIONS(1335), - [anon_sym_case] = ACTIONS(1335), - [anon_sym_default] = ACTIONS(1335), - [anon_sym_while] = ACTIONS(1335), - [anon_sym_do] = ACTIONS(1335), - [anon_sym_for] = ACTIONS(1335), - [anon_sym_return] = ACTIONS(1335), - [anon_sym_break] = ACTIONS(1335), - [anon_sym_continue] = ACTIONS(1335), - [anon_sym_goto] = ACTIONS(1335), - [anon_sym_DASH_DASH] = ACTIONS(1337), - [anon_sym_PLUS_PLUS] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(1335), - [anon_sym___alignof__] = ACTIONS(1335), - [anon_sym___alignof] = ACTIONS(1335), - [anon_sym__alignof] = ACTIONS(1335), - [anon_sym_alignof] = ACTIONS(1335), - [anon_sym__Alignof] = ACTIONS(1335), - [anon_sym_offsetof] = ACTIONS(1335), - [anon_sym__Generic] = ACTIONS(1335), - [anon_sym_asm] = ACTIONS(1335), - [anon_sym___asm__] = ACTIONS(1335), - [sym_number_literal] = ACTIONS(1337), - [anon_sym_L_SQUOTE] = ACTIONS(1337), - [anon_sym_u_SQUOTE] = ACTIONS(1337), - [anon_sym_U_SQUOTE] = ACTIONS(1337), - [anon_sym_u8_SQUOTE] = ACTIONS(1337), - [anon_sym_SQUOTE] = ACTIONS(1337), - [anon_sym_L_DQUOTE] = ACTIONS(1337), - [anon_sym_u_DQUOTE] = ACTIONS(1337), - [anon_sym_U_DQUOTE] = ACTIONS(1337), - [anon_sym_u8_DQUOTE] = ACTIONS(1337), - [anon_sym_DQUOTE] = ACTIONS(1337), - [sym_true] = ACTIONS(1335), - [sym_false] = ACTIONS(1335), - [anon_sym_NULL] = ACTIONS(1335), - [anon_sym_nullptr] = ACTIONS(1335), + [359] = { + [ts_builtin_sym_end] = ACTIONS(1672), + [sym_identifier] = ACTIONS(1674), + [aux_sym_preproc_include_token1] = ACTIONS(1674), + [aux_sym_preproc_def_token1] = ACTIONS(1674), + [aux_sym_preproc_if_token1] = ACTIONS(1674), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1674), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1674), + [sym_preproc_directive] = ACTIONS(1674), + [anon_sym_LPAREN2] = ACTIONS(1672), + [anon_sym_BANG] = ACTIONS(1672), + [anon_sym_TILDE] = ACTIONS(1672), + [anon_sym_DASH] = ACTIONS(1674), + [anon_sym_PLUS] = ACTIONS(1674), + [anon_sym_STAR] = ACTIONS(1672), + [anon_sym_AMP] = ACTIONS(1672), + [anon_sym___extension__] = ACTIONS(1674), + [anon_sym_typedef] = ACTIONS(1674), + [anon_sym_extern] = ACTIONS(1674), + [anon_sym___attribute__] = ACTIONS(1674), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1672), + [anon_sym___declspec] = ACTIONS(1674), + [anon_sym___cdecl] = ACTIONS(1674), + [anon_sym___clrcall] = ACTIONS(1674), + [anon_sym___stdcall] = ACTIONS(1674), + [anon_sym___fastcall] = ACTIONS(1674), + [anon_sym___thiscall] = ACTIONS(1674), + [anon_sym___vectorcall] = ACTIONS(1674), + [anon_sym_LBRACE] = ACTIONS(1672), + [anon_sym_signed] = ACTIONS(1674), + [anon_sym_unsigned] = ACTIONS(1674), + [anon_sym_long] = ACTIONS(1674), + [anon_sym_short] = ACTIONS(1674), + [anon_sym_static] = ACTIONS(1674), + [anon_sym_auto] = ACTIONS(1674), + [anon_sym_register] = ACTIONS(1674), + [anon_sym_inline] = ACTIONS(1674), + [anon_sym___inline] = ACTIONS(1674), + [anon_sym___inline__] = ACTIONS(1674), + [anon_sym___forceinline] = ACTIONS(1674), + [anon_sym_thread_local] = ACTIONS(1674), + [anon_sym___thread] = ACTIONS(1674), + [anon_sym_const] = ACTIONS(1674), + [anon_sym_constexpr] = ACTIONS(1674), + [anon_sym_volatile] = ACTIONS(1674), + [anon_sym_restrict] = ACTIONS(1674), + [anon_sym___restrict__] = ACTIONS(1674), + [anon_sym__Atomic] = ACTIONS(1674), + [anon_sym__Noreturn] = ACTIONS(1674), + [anon_sym_noreturn] = ACTIONS(1674), + [anon_sym_alignas] = ACTIONS(1674), + [anon_sym__Alignas] = ACTIONS(1674), + [sym_primitive_type] = ACTIONS(1674), + [anon_sym_enum] = ACTIONS(1674), + [anon_sym_struct] = ACTIONS(1674), + [anon_sym_union] = ACTIONS(1674), + [anon_sym_if] = ACTIONS(1674), + [anon_sym_switch] = ACTIONS(1674), + [anon_sym_case] = ACTIONS(1674), + [anon_sym_default] = ACTIONS(1674), + [anon_sym_while] = ACTIONS(1674), + [anon_sym_do] = ACTIONS(1674), + [anon_sym_for] = ACTIONS(1674), + [anon_sym_return] = ACTIONS(1674), + [anon_sym_break] = ACTIONS(1674), + [anon_sym_continue] = ACTIONS(1674), + [anon_sym_goto] = ACTIONS(1674), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_sizeof] = ACTIONS(1674), + [anon_sym___alignof__] = ACTIONS(1674), + [anon_sym___alignof] = ACTIONS(1674), + [anon_sym__alignof] = ACTIONS(1674), + [anon_sym_alignof] = ACTIONS(1674), + [anon_sym__Alignof] = ACTIONS(1674), + [anon_sym_offsetof] = ACTIONS(1674), + [anon_sym__Generic] = ACTIONS(1674), + [anon_sym_asm] = ACTIONS(1674), + [anon_sym___asm__] = ACTIONS(1674), + [sym_number_literal] = ACTIONS(1672), + [anon_sym_L_SQUOTE] = ACTIONS(1672), + [anon_sym_u_SQUOTE] = ACTIONS(1672), + [anon_sym_U_SQUOTE] = ACTIONS(1672), + [anon_sym_u8_SQUOTE] = ACTIONS(1672), + [anon_sym_SQUOTE] = ACTIONS(1672), + [anon_sym_L_DQUOTE] = ACTIONS(1672), + [anon_sym_u_DQUOTE] = ACTIONS(1672), + [anon_sym_U_DQUOTE] = ACTIONS(1672), + [anon_sym_u8_DQUOTE] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1672), + [sym_true] = ACTIONS(1674), + [sym_false] = ACTIONS(1674), + [anon_sym_NULL] = ACTIONS(1674), + [anon_sym_nullptr] = ACTIONS(1674), [sym_comment] = ACTIONS(3), }, - [409] = { - [ts_builtin_sym_end] = ACTIONS(1345), - [sym_identifier] = ACTIONS(1343), - [aux_sym_preproc_include_token1] = ACTIONS(1343), - [aux_sym_preproc_def_token1] = ACTIONS(1343), - [aux_sym_preproc_if_token1] = ACTIONS(1343), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1343), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1343), - [sym_preproc_directive] = ACTIONS(1343), - [anon_sym_LPAREN2] = ACTIONS(1345), - [anon_sym_BANG] = ACTIONS(1345), - [anon_sym_TILDE] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1343), - [anon_sym_STAR] = ACTIONS(1345), - [anon_sym_AMP] = ACTIONS(1345), - [anon_sym___extension__] = ACTIONS(1343), - [anon_sym_typedef] = ACTIONS(1343), - [anon_sym_extern] = ACTIONS(1343), - [anon_sym___attribute__] = ACTIONS(1343), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1345), - [anon_sym___declspec] = ACTIONS(1343), - [anon_sym___cdecl] = ACTIONS(1343), - [anon_sym___clrcall] = ACTIONS(1343), - [anon_sym___stdcall] = ACTIONS(1343), - [anon_sym___fastcall] = ACTIONS(1343), - [anon_sym___thiscall] = ACTIONS(1343), - [anon_sym___vectorcall] = ACTIONS(1343), - [anon_sym_LBRACE] = ACTIONS(1345), - [anon_sym_signed] = ACTIONS(1343), - [anon_sym_unsigned] = ACTIONS(1343), - [anon_sym_long] = ACTIONS(1343), - [anon_sym_short] = ACTIONS(1343), - [anon_sym_static] = ACTIONS(1343), - [anon_sym_auto] = ACTIONS(1343), - [anon_sym_register] = ACTIONS(1343), - [anon_sym_inline] = ACTIONS(1343), - [anon_sym___inline] = ACTIONS(1343), - [anon_sym___inline__] = ACTIONS(1343), - [anon_sym___forceinline] = ACTIONS(1343), - [anon_sym_thread_local] = ACTIONS(1343), - [anon_sym___thread] = ACTIONS(1343), - [anon_sym_const] = ACTIONS(1343), - [anon_sym_constexpr] = ACTIONS(1343), - [anon_sym_volatile] = ACTIONS(1343), - [anon_sym_restrict] = ACTIONS(1343), - [anon_sym___restrict__] = ACTIONS(1343), - [anon_sym__Atomic] = ACTIONS(1343), - [anon_sym__Noreturn] = ACTIONS(1343), - [anon_sym_noreturn] = ACTIONS(1343), - [anon_sym_alignas] = ACTIONS(1343), - [anon_sym__Alignas] = 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_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_DASH_DASH] = ACTIONS(1345), - [anon_sym_PLUS_PLUS] = ACTIONS(1345), - [anon_sym_sizeof] = ACTIONS(1343), - [anon_sym___alignof__] = ACTIONS(1343), - [anon_sym___alignof] = ACTIONS(1343), - [anon_sym__alignof] = ACTIONS(1343), - [anon_sym_alignof] = ACTIONS(1343), - [anon_sym__Alignof] = ACTIONS(1343), - [anon_sym_offsetof] = ACTIONS(1343), - [anon_sym__Generic] = ACTIONS(1343), - [anon_sym_asm] = ACTIONS(1343), - [anon_sym___asm__] = ACTIONS(1343), - [sym_number_literal] = ACTIONS(1345), - [anon_sym_L_SQUOTE] = ACTIONS(1345), - [anon_sym_u_SQUOTE] = ACTIONS(1345), - [anon_sym_U_SQUOTE] = ACTIONS(1345), - [anon_sym_u8_SQUOTE] = ACTIONS(1345), - [anon_sym_SQUOTE] = ACTIONS(1345), - [anon_sym_L_DQUOTE] = ACTIONS(1345), - [anon_sym_u_DQUOTE] = ACTIONS(1345), - [anon_sym_U_DQUOTE] = ACTIONS(1345), - [anon_sym_u8_DQUOTE] = ACTIONS(1345), - [anon_sym_DQUOTE] = ACTIONS(1345), - [sym_true] = ACTIONS(1343), - [sym_false] = ACTIONS(1343), - [anon_sym_NULL] = ACTIONS(1343), - [anon_sym_nullptr] = ACTIONS(1343), + [360] = { + [ts_builtin_sym_end] = ACTIONS(1253), + [sym_identifier] = ACTIONS(1251), + [aux_sym_preproc_include_token1] = ACTIONS(1251), + [aux_sym_preproc_def_token1] = ACTIONS(1251), + [aux_sym_preproc_if_token1] = ACTIONS(1251), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1251), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1251), + [sym_preproc_directive] = ACTIONS(1251), + [anon_sym_LPAREN2] = ACTIONS(1253), + [anon_sym_BANG] = ACTIONS(1253), + [anon_sym_TILDE] = ACTIONS(1253), + [anon_sym_DASH] = ACTIONS(1251), + [anon_sym_PLUS] = ACTIONS(1251), + [anon_sym_STAR] = ACTIONS(1253), + [anon_sym_AMP] = ACTIONS(1253), + [anon_sym___extension__] = ACTIONS(1251), + [anon_sym_typedef] = ACTIONS(1251), + [anon_sym_extern] = ACTIONS(1251), + [anon_sym___attribute__] = ACTIONS(1251), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1253), + [anon_sym___declspec] = ACTIONS(1251), + [anon_sym___cdecl] = ACTIONS(1251), + [anon_sym___clrcall] = ACTIONS(1251), + [anon_sym___stdcall] = ACTIONS(1251), + [anon_sym___fastcall] = ACTIONS(1251), + [anon_sym___thiscall] = ACTIONS(1251), + [anon_sym___vectorcall] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1253), + [anon_sym_signed] = ACTIONS(1251), + [anon_sym_unsigned] = ACTIONS(1251), + [anon_sym_long] = ACTIONS(1251), + [anon_sym_short] = ACTIONS(1251), + [anon_sym_static] = ACTIONS(1251), + [anon_sym_auto] = ACTIONS(1251), + [anon_sym_register] = ACTIONS(1251), + [anon_sym_inline] = ACTIONS(1251), + [anon_sym___inline] = ACTIONS(1251), + [anon_sym___inline__] = ACTIONS(1251), + [anon_sym___forceinline] = ACTIONS(1251), + [anon_sym_thread_local] = ACTIONS(1251), + [anon_sym___thread] = ACTIONS(1251), + [anon_sym_const] = ACTIONS(1251), + [anon_sym_constexpr] = ACTIONS(1251), + [anon_sym_volatile] = ACTIONS(1251), + [anon_sym_restrict] = ACTIONS(1251), + [anon_sym___restrict__] = ACTIONS(1251), + [anon_sym__Atomic] = ACTIONS(1251), + [anon_sym__Noreturn] = ACTIONS(1251), + [anon_sym_noreturn] = ACTIONS(1251), + [anon_sym_alignas] = ACTIONS(1251), + [anon_sym__Alignas] = ACTIONS(1251), + [sym_primitive_type] = ACTIONS(1251), + [anon_sym_enum] = ACTIONS(1251), + [anon_sym_struct] = ACTIONS(1251), + [anon_sym_union] = ACTIONS(1251), + [anon_sym_if] = ACTIONS(1251), + [anon_sym_switch] = ACTIONS(1251), + [anon_sym_case] = ACTIONS(1251), + [anon_sym_default] = ACTIONS(1251), + [anon_sym_while] = ACTIONS(1251), + [anon_sym_do] = ACTIONS(1251), + [anon_sym_for] = ACTIONS(1251), + [anon_sym_return] = ACTIONS(1251), + [anon_sym_break] = ACTIONS(1251), + [anon_sym_continue] = ACTIONS(1251), + [anon_sym_goto] = ACTIONS(1251), + [anon_sym_DASH_DASH] = ACTIONS(1253), + [anon_sym_PLUS_PLUS] = ACTIONS(1253), + [anon_sym_sizeof] = ACTIONS(1251), + [anon_sym___alignof__] = ACTIONS(1251), + [anon_sym___alignof] = ACTIONS(1251), + [anon_sym__alignof] = ACTIONS(1251), + [anon_sym_alignof] = ACTIONS(1251), + [anon_sym__Alignof] = ACTIONS(1251), + [anon_sym_offsetof] = ACTIONS(1251), + [anon_sym__Generic] = ACTIONS(1251), + [anon_sym_asm] = ACTIONS(1251), + [anon_sym___asm__] = ACTIONS(1251), + [sym_number_literal] = ACTIONS(1253), + [anon_sym_L_SQUOTE] = ACTIONS(1253), + [anon_sym_u_SQUOTE] = ACTIONS(1253), + [anon_sym_U_SQUOTE] = ACTIONS(1253), + [anon_sym_u8_SQUOTE] = ACTIONS(1253), + [anon_sym_SQUOTE] = ACTIONS(1253), + [anon_sym_L_DQUOTE] = ACTIONS(1253), + [anon_sym_u_DQUOTE] = ACTIONS(1253), + [anon_sym_U_DQUOTE] = ACTIONS(1253), + [anon_sym_u8_DQUOTE] = ACTIONS(1253), + [anon_sym_DQUOTE] = ACTIONS(1253), + [sym_true] = ACTIONS(1251), + [sym_false] = ACTIONS(1251), + [anon_sym_NULL] = ACTIONS(1251), + [anon_sym_nullptr] = ACTIONS(1251), [sym_comment] = ACTIONS(3), }, - [410] = { - [ts_builtin_sym_end] = ACTIONS(1305), - [sym_identifier] = ACTIONS(1303), - [aux_sym_preproc_include_token1] = ACTIONS(1303), - [aux_sym_preproc_def_token1] = ACTIONS(1303), - [aux_sym_preproc_if_token1] = ACTIONS(1303), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1303), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1303), - [sym_preproc_directive] = ACTIONS(1303), - [anon_sym_LPAREN2] = ACTIONS(1305), - [anon_sym_BANG] = ACTIONS(1305), + [361] = { + [ts_builtin_sym_end] = ACTIONS(1321), + [sym_identifier] = ACTIONS(1319), + [aux_sym_preproc_include_token1] = ACTIONS(1319), + [aux_sym_preproc_def_token1] = ACTIONS(1319), + [aux_sym_preproc_if_token1] = ACTIONS(1319), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1319), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1319), + [sym_preproc_directive] = ACTIONS(1319), + [anon_sym_LPAREN2] = ACTIONS(1321), + [anon_sym_BANG] = ACTIONS(1321), + [anon_sym_TILDE] = ACTIONS(1321), + [anon_sym_DASH] = ACTIONS(1319), + [anon_sym_PLUS] = ACTIONS(1319), + [anon_sym_STAR] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(1321), + [anon_sym___extension__] = ACTIONS(1319), + [anon_sym_typedef] = ACTIONS(1319), + [anon_sym_extern] = ACTIONS(1319), + [anon_sym___attribute__] = ACTIONS(1319), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1321), + [anon_sym___declspec] = ACTIONS(1319), + [anon_sym___cdecl] = ACTIONS(1319), + [anon_sym___clrcall] = ACTIONS(1319), + [anon_sym___stdcall] = ACTIONS(1319), + [anon_sym___fastcall] = ACTIONS(1319), + [anon_sym___thiscall] = ACTIONS(1319), + [anon_sym___vectorcall] = ACTIONS(1319), + [anon_sym_LBRACE] = ACTIONS(1321), + [anon_sym_signed] = ACTIONS(1319), + [anon_sym_unsigned] = ACTIONS(1319), + [anon_sym_long] = ACTIONS(1319), + [anon_sym_short] = ACTIONS(1319), + [anon_sym_static] = ACTIONS(1319), + [anon_sym_auto] = ACTIONS(1319), + [anon_sym_register] = ACTIONS(1319), + [anon_sym_inline] = ACTIONS(1319), + [anon_sym___inline] = ACTIONS(1319), + [anon_sym___inline__] = ACTIONS(1319), + [anon_sym___forceinline] = ACTIONS(1319), + [anon_sym_thread_local] = ACTIONS(1319), + [anon_sym___thread] = ACTIONS(1319), + [anon_sym_const] = ACTIONS(1319), + [anon_sym_constexpr] = ACTIONS(1319), + [anon_sym_volatile] = ACTIONS(1319), + [anon_sym_restrict] = ACTIONS(1319), + [anon_sym___restrict__] = ACTIONS(1319), + [anon_sym__Atomic] = ACTIONS(1319), + [anon_sym__Noreturn] = ACTIONS(1319), + [anon_sym_noreturn] = ACTIONS(1319), + [anon_sym_alignas] = ACTIONS(1319), + [anon_sym__Alignas] = ACTIONS(1319), + [sym_primitive_type] = ACTIONS(1319), + [anon_sym_enum] = ACTIONS(1319), + [anon_sym_struct] = ACTIONS(1319), + [anon_sym_union] = ACTIONS(1319), + [anon_sym_if] = ACTIONS(1319), + [anon_sym_switch] = ACTIONS(1319), + [anon_sym_case] = ACTIONS(1319), + [anon_sym_default] = ACTIONS(1319), + [anon_sym_while] = ACTIONS(1319), + [anon_sym_do] = ACTIONS(1319), + [anon_sym_for] = ACTIONS(1319), + [anon_sym_return] = ACTIONS(1319), + [anon_sym_break] = ACTIONS(1319), + [anon_sym_continue] = ACTIONS(1319), + [anon_sym_goto] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1321), + [anon_sym_PLUS_PLUS] = ACTIONS(1321), + [anon_sym_sizeof] = ACTIONS(1319), + [anon_sym___alignof__] = ACTIONS(1319), + [anon_sym___alignof] = ACTIONS(1319), + [anon_sym__alignof] = ACTIONS(1319), + [anon_sym_alignof] = ACTIONS(1319), + [anon_sym__Alignof] = ACTIONS(1319), + [anon_sym_offsetof] = ACTIONS(1319), + [anon_sym__Generic] = ACTIONS(1319), + [anon_sym_asm] = ACTIONS(1319), + [anon_sym___asm__] = ACTIONS(1319), + [sym_number_literal] = ACTIONS(1321), + [anon_sym_L_SQUOTE] = ACTIONS(1321), + [anon_sym_u_SQUOTE] = ACTIONS(1321), + [anon_sym_U_SQUOTE] = ACTIONS(1321), + [anon_sym_u8_SQUOTE] = ACTIONS(1321), + [anon_sym_SQUOTE] = ACTIONS(1321), + [anon_sym_L_DQUOTE] = ACTIONS(1321), + [anon_sym_u_DQUOTE] = ACTIONS(1321), + [anon_sym_U_DQUOTE] = ACTIONS(1321), + [anon_sym_u8_DQUOTE] = ACTIONS(1321), + [anon_sym_DQUOTE] = ACTIONS(1321), + [sym_true] = ACTIONS(1319), + [sym_false] = ACTIONS(1319), + [anon_sym_NULL] = ACTIONS(1319), + [anon_sym_nullptr] = ACTIONS(1319), + [sym_comment] = ACTIONS(3), + }, + [362] = { + [ts_builtin_sym_end] = ACTIONS(1269), + [sym_identifier] = ACTIONS(1267), + [aux_sym_preproc_include_token1] = ACTIONS(1267), + [aux_sym_preproc_def_token1] = ACTIONS(1267), + [aux_sym_preproc_if_token1] = ACTIONS(1267), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1267), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1267), + [sym_preproc_directive] = ACTIONS(1267), + [anon_sym_LPAREN2] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1269), + [anon_sym_TILDE] = ACTIONS(1269), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_AMP] = ACTIONS(1269), + [anon_sym___extension__] = ACTIONS(1267), + [anon_sym_typedef] = ACTIONS(1267), + [anon_sym_extern] = ACTIONS(1267), + [anon_sym___attribute__] = ACTIONS(1267), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1269), + [anon_sym___declspec] = ACTIONS(1267), + [anon_sym___cdecl] = ACTIONS(1267), + [anon_sym___clrcall] = ACTIONS(1267), + [anon_sym___stdcall] = ACTIONS(1267), + [anon_sym___fastcall] = ACTIONS(1267), + [anon_sym___thiscall] = ACTIONS(1267), + [anon_sym___vectorcall] = ACTIONS(1267), + [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_signed] = ACTIONS(1267), + [anon_sym_unsigned] = ACTIONS(1267), + [anon_sym_long] = ACTIONS(1267), + [anon_sym_short] = ACTIONS(1267), + [anon_sym_static] = ACTIONS(1267), + [anon_sym_auto] = ACTIONS(1267), + [anon_sym_register] = ACTIONS(1267), + [anon_sym_inline] = ACTIONS(1267), + [anon_sym___inline] = ACTIONS(1267), + [anon_sym___inline__] = ACTIONS(1267), + [anon_sym___forceinline] = ACTIONS(1267), + [anon_sym_thread_local] = ACTIONS(1267), + [anon_sym___thread] = ACTIONS(1267), + [anon_sym_const] = ACTIONS(1267), + [anon_sym_constexpr] = ACTIONS(1267), + [anon_sym_volatile] = ACTIONS(1267), + [anon_sym_restrict] = ACTIONS(1267), + [anon_sym___restrict__] = ACTIONS(1267), + [anon_sym__Atomic] = ACTIONS(1267), + [anon_sym__Noreturn] = ACTIONS(1267), + [anon_sym_noreturn] = ACTIONS(1267), + [anon_sym_alignas] = ACTIONS(1267), + [anon_sym__Alignas] = ACTIONS(1267), + [sym_primitive_type] = ACTIONS(1267), + [anon_sym_enum] = ACTIONS(1267), + [anon_sym_struct] = ACTIONS(1267), + [anon_sym_union] = ACTIONS(1267), + [anon_sym_if] = ACTIONS(1267), + [anon_sym_switch] = ACTIONS(1267), + [anon_sym_case] = ACTIONS(1267), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_while] = ACTIONS(1267), + [anon_sym_do] = ACTIONS(1267), + [anon_sym_for] = ACTIONS(1267), + [anon_sym_return] = ACTIONS(1267), + [anon_sym_break] = ACTIONS(1267), + [anon_sym_continue] = ACTIONS(1267), + [anon_sym_goto] = ACTIONS(1267), + [anon_sym_DASH_DASH] = ACTIONS(1269), + [anon_sym_PLUS_PLUS] = ACTIONS(1269), + [anon_sym_sizeof] = ACTIONS(1267), + [anon_sym___alignof__] = ACTIONS(1267), + [anon_sym___alignof] = ACTIONS(1267), + [anon_sym__alignof] = ACTIONS(1267), + [anon_sym_alignof] = ACTIONS(1267), + [anon_sym__Alignof] = ACTIONS(1267), + [anon_sym_offsetof] = ACTIONS(1267), + [anon_sym__Generic] = ACTIONS(1267), + [anon_sym_asm] = ACTIONS(1267), + [anon_sym___asm__] = ACTIONS(1267), + [sym_number_literal] = ACTIONS(1269), + [anon_sym_L_SQUOTE] = ACTIONS(1269), + [anon_sym_u_SQUOTE] = ACTIONS(1269), + [anon_sym_U_SQUOTE] = ACTIONS(1269), + [anon_sym_u8_SQUOTE] = ACTIONS(1269), + [anon_sym_SQUOTE] = ACTIONS(1269), + [anon_sym_L_DQUOTE] = ACTIONS(1269), + [anon_sym_u_DQUOTE] = ACTIONS(1269), + [anon_sym_U_DQUOTE] = ACTIONS(1269), + [anon_sym_u8_DQUOTE] = ACTIONS(1269), + [anon_sym_DQUOTE] = ACTIONS(1269), + [sym_true] = ACTIONS(1267), + [sym_false] = ACTIONS(1267), + [anon_sym_NULL] = ACTIONS(1267), + [anon_sym_nullptr] = ACTIONS(1267), + [sym_comment] = ACTIONS(3), + }, + [363] = { + [ts_builtin_sym_end] = ACTIONS(1676), + [sym_identifier] = ACTIONS(1678), + [aux_sym_preproc_include_token1] = ACTIONS(1678), + [aux_sym_preproc_def_token1] = ACTIONS(1678), + [aux_sym_preproc_if_token1] = ACTIONS(1678), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1678), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1678), + [sym_preproc_directive] = ACTIONS(1678), + [anon_sym_LPAREN2] = ACTIONS(1676), + [anon_sym_BANG] = ACTIONS(1676), + [anon_sym_TILDE] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1678), + [anon_sym_PLUS] = ACTIONS(1678), + [anon_sym_STAR] = ACTIONS(1676), + [anon_sym_AMP] = ACTIONS(1676), + [anon_sym___extension__] = ACTIONS(1678), + [anon_sym_typedef] = ACTIONS(1678), + [anon_sym_extern] = ACTIONS(1678), + [anon_sym___attribute__] = ACTIONS(1678), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1676), + [anon_sym___declspec] = ACTIONS(1678), + [anon_sym___cdecl] = ACTIONS(1678), + [anon_sym___clrcall] = ACTIONS(1678), + [anon_sym___stdcall] = ACTIONS(1678), + [anon_sym___fastcall] = ACTIONS(1678), + [anon_sym___thiscall] = ACTIONS(1678), + [anon_sym___vectorcall] = ACTIONS(1678), + [anon_sym_LBRACE] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1678), + [anon_sym_unsigned] = ACTIONS(1678), + [anon_sym_long] = ACTIONS(1678), + [anon_sym_short] = ACTIONS(1678), + [anon_sym_static] = ACTIONS(1678), + [anon_sym_auto] = ACTIONS(1678), + [anon_sym_register] = ACTIONS(1678), + [anon_sym_inline] = ACTIONS(1678), + [anon_sym___inline] = ACTIONS(1678), + [anon_sym___inline__] = ACTIONS(1678), + [anon_sym___forceinline] = ACTIONS(1678), + [anon_sym_thread_local] = ACTIONS(1678), + [anon_sym___thread] = ACTIONS(1678), + [anon_sym_const] = ACTIONS(1678), + [anon_sym_constexpr] = ACTIONS(1678), + [anon_sym_volatile] = ACTIONS(1678), + [anon_sym_restrict] = ACTIONS(1678), + [anon_sym___restrict__] = ACTIONS(1678), + [anon_sym__Atomic] = ACTIONS(1678), + [anon_sym__Noreturn] = ACTIONS(1678), + [anon_sym_noreturn] = ACTIONS(1678), + [anon_sym_alignas] = ACTIONS(1678), + [anon_sym__Alignas] = ACTIONS(1678), + [sym_primitive_type] = ACTIONS(1678), + [anon_sym_enum] = ACTIONS(1678), + [anon_sym_struct] = ACTIONS(1678), + [anon_sym_union] = ACTIONS(1678), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_switch] = ACTIONS(1678), + [anon_sym_case] = ACTIONS(1678), + [anon_sym_default] = ACTIONS(1678), + [anon_sym_while] = ACTIONS(1678), + [anon_sym_do] = ACTIONS(1678), + [anon_sym_for] = ACTIONS(1678), + [anon_sym_return] = ACTIONS(1678), + [anon_sym_break] = ACTIONS(1678), + [anon_sym_continue] = ACTIONS(1678), + [anon_sym_goto] = ACTIONS(1678), + [anon_sym_DASH_DASH] = ACTIONS(1676), + [anon_sym_PLUS_PLUS] = ACTIONS(1676), + [anon_sym_sizeof] = ACTIONS(1678), + [anon_sym___alignof__] = ACTIONS(1678), + [anon_sym___alignof] = ACTIONS(1678), + [anon_sym__alignof] = ACTIONS(1678), + [anon_sym_alignof] = ACTIONS(1678), + [anon_sym__Alignof] = ACTIONS(1678), + [anon_sym_offsetof] = ACTIONS(1678), + [anon_sym__Generic] = ACTIONS(1678), + [anon_sym_asm] = ACTIONS(1678), + [anon_sym___asm__] = ACTIONS(1678), + [sym_number_literal] = ACTIONS(1676), + [anon_sym_L_SQUOTE] = ACTIONS(1676), + [anon_sym_u_SQUOTE] = ACTIONS(1676), + [anon_sym_U_SQUOTE] = ACTIONS(1676), + [anon_sym_u8_SQUOTE] = ACTIONS(1676), + [anon_sym_SQUOTE] = ACTIONS(1676), + [anon_sym_L_DQUOTE] = ACTIONS(1676), + [anon_sym_u_DQUOTE] = ACTIONS(1676), + [anon_sym_U_DQUOTE] = ACTIONS(1676), + [anon_sym_u8_DQUOTE] = ACTIONS(1676), + [anon_sym_DQUOTE] = ACTIONS(1676), + [sym_true] = ACTIONS(1678), + [sym_false] = ACTIONS(1678), + [anon_sym_NULL] = ACTIONS(1678), + [anon_sym_nullptr] = ACTIONS(1678), + [sym_comment] = ACTIONS(3), + }, + [364] = { + [ts_builtin_sym_end] = ACTIONS(1293), + [sym_identifier] = ACTIONS(1291), + [aux_sym_preproc_include_token1] = ACTIONS(1291), + [aux_sym_preproc_def_token1] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1291), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1291), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1291), + [sym_preproc_directive] = ACTIONS(1291), + [anon_sym_LPAREN2] = ACTIONS(1293), + [anon_sym_BANG] = ACTIONS(1293), + [anon_sym_TILDE] = ACTIONS(1293), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_AMP] = ACTIONS(1293), + [anon_sym___extension__] = ACTIONS(1291), + [anon_sym_typedef] = ACTIONS(1291), + [anon_sym_extern] = ACTIONS(1291), + [anon_sym___attribute__] = ACTIONS(1291), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1293), + [anon_sym___declspec] = ACTIONS(1291), + [anon_sym___cdecl] = ACTIONS(1291), + [anon_sym___clrcall] = ACTIONS(1291), + [anon_sym___stdcall] = ACTIONS(1291), + [anon_sym___fastcall] = ACTIONS(1291), + [anon_sym___thiscall] = ACTIONS(1291), + [anon_sym___vectorcall] = ACTIONS(1291), + [anon_sym_LBRACE] = ACTIONS(1293), + [anon_sym_signed] = ACTIONS(1291), + [anon_sym_unsigned] = ACTIONS(1291), + [anon_sym_long] = ACTIONS(1291), + [anon_sym_short] = ACTIONS(1291), + [anon_sym_static] = ACTIONS(1291), + [anon_sym_auto] = ACTIONS(1291), + [anon_sym_register] = ACTIONS(1291), + [anon_sym_inline] = ACTIONS(1291), + [anon_sym___inline] = ACTIONS(1291), + [anon_sym___inline__] = ACTIONS(1291), + [anon_sym___forceinline] = ACTIONS(1291), + [anon_sym_thread_local] = ACTIONS(1291), + [anon_sym___thread] = ACTIONS(1291), + [anon_sym_const] = ACTIONS(1291), + [anon_sym_constexpr] = ACTIONS(1291), + [anon_sym_volatile] = ACTIONS(1291), + [anon_sym_restrict] = ACTIONS(1291), + [anon_sym___restrict__] = ACTIONS(1291), + [anon_sym__Atomic] = ACTIONS(1291), + [anon_sym__Noreturn] = ACTIONS(1291), + [anon_sym_noreturn] = ACTIONS(1291), + [anon_sym_alignas] = ACTIONS(1291), + [anon_sym__Alignas] = ACTIONS(1291), + [sym_primitive_type] = ACTIONS(1291), + [anon_sym_enum] = ACTIONS(1291), + [anon_sym_struct] = ACTIONS(1291), + [anon_sym_union] = ACTIONS(1291), + [anon_sym_if] = ACTIONS(1291), + [anon_sym_switch] = ACTIONS(1291), + [anon_sym_case] = ACTIONS(1291), + [anon_sym_default] = ACTIONS(1291), + [anon_sym_while] = ACTIONS(1291), + [anon_sym_do] = ACTIONS(1291), + [anon_sym_for] = ACTIONS(1291), + [anon_sym_return] = ACTIONS(1291), + [anon_sym_break] = ACTIONS(1291), + [anon_sym_continue] = ACTIONS(1291), + [anon_sym_goto] = ACTIONS(1291), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_sizeof] = ACTIONS(1291), + [anon_sym___alignof__] = ACTIONS(1291), + [anon_sym___alignof] = ACTIONS(1291), + [anon_sym__alignof] = ACTIONS(1291), + [anon_sym_alignof] = ACTIONS(1291), + [anon_sym__Alignof] = ACTIONS(1291), + [anon_sym_offsetof] = ACTIONS(1291), + [anon_sym__Generic] = ACTIONS(1291), + [anon_sym_asm] = ACTIONS(1291), + [anon_sym___asm__] = ACTIONS(1291), + [sym_number_literal] = ACTIONS(1293), + [anon_sym_L_SQUOTE] = ACTIONS(1293), + [anon_sym_u_SQUOTE] = ACTIONS(1293), + [anon_sym_U_SQUOTE] = ACTIONS(1293), + [anon_sym_u8_SQUOTE] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1293), + [anon_sym_L_DQUOTE] = ACTIONS(1293), + [anon_sym_u_DQUOTE] = ACTIONS(1293), + [anon_sym_U_DQUOTE] = ACTIONS(1293), + [anon_sym_u8_DQUOTE] = ACTIONS(1293), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_true] = ACTIONS(1291), + [sym_false] = ACTIONS(1291), + [anon_sym_NULL] = ACTIONS(1291), + [anon_sym_nullptr] = ACTIONS(1291), + [sym_comment] = ACTIONS(3), + }, + [365] = { + [ts_builtin_sym_end] = ACTIONS(1305), + [sym_identifier] = ACTIONS(1303), + [aux_sym_preproc_include_token1] = ACTIONS(1303), + [aux_sym_preproc_def_token1] = ACTIONS(1303), + [aux_sym_preproc_if_token1] = ACTIONS(1303), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1303), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1303), + [sym_preproc_directive] = ACTIONS(1303), + [anon_sym_LPAREN2] = ACTIONS(1305), + [anon_sym_BANG] = ACTIONS(1305), [anon_sym_TILDE] = ACTIONS(1305), [anon_sym_DASH] = ACTIONS(1303), [anon_sym_PLUS] = ACTIONS(1303), @@ -57478,391 +52825,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1303), [sym_comment] = ACTIONS(3), }, - [411] = { - [ts_builtin_sym_end] = ACTIONS(1357), - [sym_identifier] = ACTIONS(1355), - [aux_sym_preproc_include_token1] = ACTIONS(1355), - [aux_sym_preproc_def_token1] = ACTIONS(1355), - [aux_sym_preproc_if_token1] = ACTIONS(1355), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1355), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1355), - [sym_preproc_directive] = ACTIONS(1355), - [anon_sym_LPAREN2] = ACTIONS(1357), - [anon_sym_BANG] = ACTIONS(1357), - [anon_sym_TILDE] = ACTIONS(1357), - [anon_sym_DASH] = ACTIONS(1355), - [anon_sym_PLUS] = ACTIONS(1355), - [anon_sym_STAR] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(1357), - [anon_sym___extension__] = ACTIONS(1355), - [anon_sym_typedef] = ACTIONS(1355), - [anon_sym_extern] = ACTIONS(1355), - [anon_sym___attribute__] = ACTIONS(1355), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1357), - [anon_sym___declspec] = ACTIONS(1355), - [anon_sym___cdecl] = ACTIONS(1355), - [anon_sym___clrcall] = ACTIONS(1355), - [anon_sym___stdcall] = ACTIONS(1355), - [anon_sym___fastcall] = ACTIONS(1355), - [anon_sym___thiscall] = ACTIONS(1355), - [anon_sym___vectorcall] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(1357), - [anon_sym_signed] = ACTIONS(1355), - [anon_sym_unsigned] = ACTIONS(1355), - [anon_sym_long] = ACTIONS(1355), - [anon_sym_short] = ACTIONS(1355), - [anon_sym_static] = ACTIONS(1355), - [anon_sym_auto] = ACTIONS(1355), - [anon_sym_register] = ACTIONS(1355), - [anon_sym_inline] = ACTIONS(1355), - [anon_sym___inline] = ACTIONS(1355), - [anon_sym___inline__] = ACTIONS(1355), - [anon_sym___forceinline] = ACTIONS(1355), - [anon_sym_thread_local] = ACTIONS(1355), - [anon_sym___thread] = ACTIONS(1355), - [anon_sym_const] = ACTIONS(1355), - [anon_sym_constexpr] = ACTIONS(1355), - [anon_sym_volatile] = ACTIONS(1355), - [anon_sym_restrict] = ACTIONS(1355), - [anon_sym___restrict__] = ACTIONS(1355), - [anon_sym__Atomic] = ACTIONS(1355), - [anon_sym__Noreturn] = ACTIONS(1355), - [anon_sym_noreturn] = ACTIONS(1355), - [anon_sym_alignas] = ACTIONS(1355), - [anon_sym__Alignas] = 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_DASH_DASH] = ACTIONS(1357), - [anon_sym_PLUS_PLUS] = ACTIONS(1357), - [anon_sym_sizeof] = ACTIONS(1355), - [anon_sym___alignof__] = ACTIONS(1355), - [anon_sym___alignof] = ACTIONS(1355), - [anon_sym__alignof] = ACTIONS(1355), - [anon_sym_alignof] = ACTIONS(1355), - [anon_sym__Alignof] = ACTIONS(1355), - [anon_sym_offsetof] = ACTIONS(1355), - [anon_sym__Generic] = ACTIONS(1355), - [anon_sym_asm] = ACTIONS(1355), - [anon_sym___asm__] = ACTIONS(1355), - [sym_number_literal] = ACTIONS(1357), - [anon_sym_L_SQUOTE] = ACTIONS(1357), - [anon_sym_u_SQUOTE] = ACTIONS(1357), - [anon_sym_U_SQUOTE] = ACTIONS(1357), - [anon_sym_u8_SQUOTE] = ACTIONS(1357), - [anon_sym_SQUOTE] = ACTIONS(1357), - [anon_sym_L_DQUOTE] = ACTIONS(1357), - [anon_sym_u_DQUOTE] = ACTIONS(1357), - [anon_sym_U_DQUOTE] = ACTIONS(1357), - [anon_sym_u8_DQUOTE] = ACTIONS(1357), - [anon_sym_DQUOTE] = ACTIONS(1357), - [sym_true] = ACTIONS(1355), - [sym_false] = ACTIONS(1355), - [anon_sym_NULL] = ACTIONS(1355), - [anon_sym_nullptr] = ACTIONS(1355), + [366] = { + [ts_builtin_sym_end] = ACTIONS(1341), + [sym_identifier] = ACTIONS(1339), + [aux_sym_preproc_include_token1] = ACTIONS(1339), + [aux_sym_preproc_def_token1] = ACTIONS(1339), + [aux_sym_preproc_if_token1] = ACTIONS(1339), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1339), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1339), + [sym_preproc_directive] = ACTIONS(1339), + [anon_sym_LPAREN2] = ACTIONS(1341), + [anon_sym_BANG] = ACTIONS(1341), + [anon_sym_TILDE] = ACTIONS(1341), + [anon_sym_DASH] = ACTIONS(1339), + [anon_sym_PLUS] = ACTIONS(1339), + [anon_sym_STAR] = ACTIONS(1341), + [anon_sym_AMP] = ACTIONS(1341), + [anon_sym___extension__] = ACTIONS(1339), + [anon_sym_typedef] = ACTIONS(1339), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym___attribute__] = ACTIONS(1339), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1341), + [anon_sym___declspec] = ACTIONS(1339), + [anon_sym___cdecl] = ACTIONS(1339), + [anon_sym___clrcall] = ACTIONS(1339), + [anon_sym___stdcall] = ACTIONS(1339), + [anon_sym___fastcall] = ACTIONS(1339), + [anon_sym___thiscall] = ACTIONS(1339), + [anon_sym___vectorcall] = ACTIONS(1339), + [anon_sym_LBRACE] = ACTIONS(1341), + [anon_sym_signed] = ACTIONS(1339), + [anon_sym_unsigned] = ACTIONS(1339), + [anon_sym_long] = ACTIONS(1339), + [anon_sym_short] = ACTIONS(1339), + [anon_sym_static] = ACTIONS(1339), + [anon_sym_auto] = ACTIONS(1339), + [anon_sym_register] = ACTIONS(1339), + [anon_sym_inline] = ACTIONS(1339), + [anon_sym___inline] = ACTIONS(1339), + [anon_sym___inline__] = ACTIONS(1339), + [anon_sym___forceinline] = ACTIONS(1339), + [anon_sym_thread_local] = ACTIONS(1339), + [anon_sym___thread] = ACTIONS(1339), + [anon_sym_const] = ACTIONS(1339), + [anon_sym_constexpr] = ACTIONS(1339), + [anon_sym_volatile] = ACTIONS(1339), + [anon_sym_restrict] = ACTIONS(1339), + [anon_sym___restrict__] = ACTIONS(1339), + [anon_sym__Atomic] = ACTIONS(1339), + [anon_sym__Noreturn] = ACTIONS(1339), + [anon_sym_noreturn] = ACTIONS(1339), + [anon_sym_alignas] = ACTIONS(1339), + [anon_sym__Alignas] = ACTIONS(1339), + [sym_primitive_type] = ACTIONS(1339), + [anon_sym_enum] = ACTIONS(1339), + [anon_sym_struct] = ACTIONS(1339), + [anon_sym_union] = ACTIONS(1339), + [anon_sym_if] = ACTIONS(1339), + [anon_sym_switch] = ACTIONS(1339), + [anon_sym_case] = ACTIONS(1339), + [anon_sym_default] = ACTIONS(1339), + [anon_sym_while] = ACTIONS(1339), + [anon_sym_do] = ACTIONS(1339), + [anon_sym_for] = ACTIONS(1339), + [anon_sym_return] = ACTIONS(1339), + [anon_sym_break] = ACTIONS(1339), + [anon_sym_continue] = ACTIONS(1339), + [anon_sym_goto] = ACTIONS(1339), + [anon_sym_DASH_DASH] = ACTIONS(1341), + [anon_sym_PLUS_PLUS] = ACTIONS(1341), + [anon_sym_sizeof] = ACTIONS(1339), + [anon_sym___alignof__] = ACTIONS(1339), + [anon_sym___alignof] = ACTIONS(1339), + [anon_sym__alignof] = ACTIONS(1339), + [anon_sym_alignof] = ACTIONS(1339), + [anon_sym__Alignof] = ACTIONS(1339), + [anon_sym_offsetof] = ACTIONS(1339), + [anon_sym__Generic] = ACTIONS(1339), + [anon_sym_asm] = ACTIONS(1339), + [anon_sym___asm__] = ACTIONS(1339), + [sym_number_literal] = ACTIONS(1341), + [anon_sym_L_SQUOTE] = ACTIONS(1341), + [anon_sym_u_SQUOTE] = ACTIONS(1341), + [anon_sym_U_SQUOTE] = ACTIONS(1341), + [anon_sym_u8_SQUOTE] = ACTIONS(1341), + [anon_sym_SQUOTE] = ACTIONS(1341), + [anon_sym_L_DQUOTE] = ACTIONS(1341), + [anon_sym_u_DQUOTE] = ACTIONS(1341), + [anon_sym_U_DQUOTE] = ACTIONS(1341), + [anon_sym_u8_DQUOTE] = ACTIONS(1341), + [anon_sym_DQUOTE] = ACTIONS(1341), + [sym_true] = ACTIONS(1339), + [sym_false] = ACTIONS(1339), + [anon_sym_NULL] = ACTIONS(1339), + [anon_sym_nullptr] = ACTIONS(1339), [sym_comment] = ACTIONS(3), }, - [412] = { - [ts_builtin_sym_end] = ACTIONS(1301), - [sym_identifier] = ACTIONS(1299), - [aux_sym_preproc_include_token1] = ACTIONS(1299), - [aux_sym_preproc_def_token1] = ACTIONS(1299), - [aux_sym_preproc_if_token1] = ACTIONS(1299), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1299), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1299), - [sym_preproc_directive] = ACTIONS(1299), - [anon_sym_LPAREN2] = ACTIONS(1301), - [anon_sym_BANG] = ACTIONS(1301), - [anon_sym_TILDE] = ACTIONS(1301), - [anon_sym_DASH] = ACTIONS(1299), - [anon_sym_PLUS] = ACTIONS(1299), - [anon_sym_STAR] = ACTIONS(1301), - [anon_sym_AMP] = ACTIONS(1301), - [anon_sym___extension__] = ACTIONS(1299), - [anon_sym_typedef] = ACTIONS(1299), - [anon_sym_extern] = ACTIONS(1299), - [anon_sym___attribute__] = ACTIONS(1299), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1301), - [anon_sym___declspec] = ACTIONS(1299), - [anon_sym___cdecl] = ACTIONS(1299), - [anon_sym___clrcall] = ACTIONS(1299), - [anon_sym___stdcall] = ACTIONS(1299), - [anon_sym___fastcall] = ACTIONS(1299), - [anon_sym___thiscall] = ACTIONS(1299), - [anon_sym___vectorcall] = ACTIONS(1299), - [anon_sym_LBRACE] = ACTIONS(1301), - [anon_sym_signed] = ACTIONS(1299), - [anon_sym_unsigned] = ACTIONS(1299), - [anon_sym_long] = ACTIONS(1299), - [anon_sym_short] = ACTIONS(1299), - [anon_sym_static] = ACTIONS(1299), - [anon_sym_auto] = ACTIONS(1299), - [anon_sym_register] = ACTIONS(1299), - [anon_sym_inline] = ACTIONS(1299), - [anon_sym___inline] = ACTIONS(1299), - [anon_sym___inline__] = ACTIONS(1299), - [anon_sym___forceinline] = ACTIONS(1299), - [anon_sym_thread_local] = ACTIONS(1299), - [anon_sym___thread] = ACTIONS(1299), - [anon_sym_const] = ACTIONS(1299), - [anon_sym_constexpr] = ACTIONS(1299), - [anon_sym_volatile] = ACTIONS(1299), - [anon_sym_restrict] = ACTIONS(1299), - [anon_sym___restrict__] = ACTIONS(1299), - [anon_sym__Atomic] = ACTIONS(1299), - [anon_sym__Noreturn] = ACTIONS(1299), - [anon_sym_noreturn] = ACTIONS(1299), - [anon_sym_alignas] = ACTIONS(1299), - [anon_sym__Alignas] = ACTIONS(1299), - [sym_primitive_type] = ACTIONS(1299), - [anon_sym_enum] = ACTIONS(1299), - [anon_sym_struct] = ACTIONS(1299), - [anon_sym_union] = ACTIONS(1299), - [anon_sym_if] = ACTIONS(1299), - [anon_sym_switch] = ACTIONS(1299), - [anon_sym_case] = ACTIONS(1299), - [anon_sym_default] = ACTIONS(1299), - [anon_sym_while] = ACTIONS(1299), - [anon_sym_do] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1299), - [anon_sym_return] = ACTIONS(1299), - [anon_sym_break] = ACTIONS(1299), - [anon_sym_continue] = ACTIONS(1299), - [anon_sym_goto] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1301), - [anon_sym_PLUS_PLUS] = ACTIONS(1301), - [anon_sym_sizeof] = ACTIONS(1299), - [anon_sym___alignof__] = ACTIONS(1299), - [anon_sym___alignof] = ACTIONS(1299), - [anon_sym__alignof] = ACTIONS(1299), - [anon_sym_alignof] = ACTIONS(1299), - [anon_sym__Alignof] = ACTIONS(1299), - [anon_sym_offsetof] = ACTIONS(1299), - [anon_sym__Generic] = ACTIONS(1299), - [anon_sym_asm] = ACTIONS(1299), - [anon_sym___asm__] = ACTIONS(1299), - [sym_number_literal] = ACTIONS(1301), - [anon_sym_L_SQUOTE] = ACTIONS(1301), - [anon_sym_u_SQUOTE] = ACTIONS(1301), - [anon_sym_U_SQUOTE] = ACTIONS(1301), - [anon_sym_u8_SQUOTE] = ACTIONS(1301), - [anon_sym_SQUOTE] = ACTIONS(1301), - [anon_sym_L_DQUOTE] = ACTIONS(1301), - [anon_sym_u_DQUOTE] = ACTIONS(1301), - [anon_sym_U_DQUOTE] = ACTIONS(1301), - [anon_sym_u8_DQUOTE] = ACTIONS(1301), - [anon_sym_DQUOTE] = ACTIONS(1301), - [sym_true] = ACTIONS(1299), - [sym_false] = ACTIONS(1299), - [anon_sym_NULL] = ACTIONS(1299), - [anon_sym_nullptr] = ACTIONS(1299), - [sym_comment] = ACTIONS(3), - }, - [413] = { - [ts_builtin_sym_end] = ACTIONS(1273), - [sym_identifier] = ACTIONS(1271), - [aux_sym_preproc_include_token1] = ACTIONS(1271), - [aux_sym_preproc_def_token1] = ACTIONS(1271), - [aux_sym_preproc_if_token1] = ACTIONS(1271), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1271), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1271), - [sym_preproc_directive] = ACTIONS(1271), - [anon_sym_LPAREN2] = ACTIONS(1273), - [anon_sym_BANG] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1273), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_PLUS] = ACTIONS(1271), - [anon_sym_STAR] = ACTIONS(1273), - [anon_sym_AMP] = ACTIONS(1273), - [anon_sym___extension__] = ACTIONS(1271), - [anon_sym_typedef] = ACTIONS(1271), - [anon_sym_extern] = ACTIONS(1271), - [anon_sym___attribute__] = ACTIONS(1271), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1273), - [anon_sym___declspec] = ACTIONS(1271), - [anon_sym___cdecl] = ACTIONS(1271), - [anon_sym___clrcall] = ACTIONS(1271), - [anon_sym___stdcall] = ACTIONS(1271), - [anon_sym___fastcall] = ACTIONS(1271), - [anon_sym___thiscall] = ACTIONS(1271), - [anon_sym___vectorcall] = ACTIONS(1271), - [anon_sym_LBRACE] = ACTIONS(1273), - [anon_sym_signed] = ACTIONS(1271), - [anon_sym_unsigned] = ACTIONS(1271), - [anon_sym_long] = ACTIONS(1271), - [anon_sym_short] = ACTIONS(1271), - [anon_sym_static] = ACTIONS(1271), - [anon_sym_auto] = ACTIONS(1271), - [anon_sym_register] = ACTIONS(1271), - [anon_sym_inline] = ACTIONS(1271), - [anon_sym___inline] = ACTIONS(1271), - [anon_sym___inline__] = ACTIONS(1271), - [anon_sym___forceinline] = ACTIONS(1271), - [anon_sym_thread_local] = ACTIONS(1271), - [anon_sym___thread] = ACTIONS(1271), - [anon_sym_const] = ACTIONS(1271), - [anon_sym_constexpr] = ACTIONS(1271), - [anon_sym_volatile] = ACTIONS(1271), - [anon_sym_restrict] = ACTIONS(1271), - [anon_sym___restrict__] = ACTIONS(1271), - [anon_sym__Atomic] = ACTIONS(1271), - [anon_sym__Noreturn] = ACTIONS(1271), - [anon_sym_noreturn] = ACTIONS(1271), - [anon_sym_alignas] = ACTIONS(1271), - [anon_sym__Alignas] = ACTIONS(1271), - [sym_primitive_type] = ACTIONS(1271), - [anon_sym_enum] = ACTIONS(1271), - [anon_sym_struct] = ACTIONS(1271), - [anon_sym_union] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1271), - [anon_sym_switch] = ACTIONS(1271), - [anon_sym_case] = ACTIONS(1271), - [anon_sym_default] = ACTIONS(1271), - [anon_sym_while] = ACTIONS(1271), - [anon_sym_do] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1271), - [anon_sym_return] = ACTIONS(1271), - [anon_sym_break] = ACTIONS(1271), - [anon_sym_continue] = ACTIONS(1271), - [anon_sym_goto] = ACTIONS(1271), - [anon_sym_DASH_DASH] = ACTIONS(1273), - [anon_sym_PLUS_PLUS] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1271), - [anon_sym___alignof__] = ACTIONS(1271), - [anon_sym___alignof] = ACTIONS(1271), - [anon_sym__alignof] = ACTIONS(1271), - [anon_sym_alignof] = ACTIONS(1271), - [anon_sym__Alignof] = ACTIONS(1271), - [anon_sym_offsetof] = ACTIONS(1271), - [anon_sym__Generic] = ACTIONS(1271), - [anon_sym_asm] = ACTIONS(1271), - [anon_sym___asm__] = ACTIONS(1271), - [sym_number_literal] = ACTIONS(1273), - [anon_sym_L_SQUOTE] = ACTIONS(1273), - [anon_sym_u_SQUOTE] = ACTIONS(1273), - [anon_sym_U_SQUOTE] = ACTIONS(1273), - [anon_sym_u8_SQUOTE] = ACTIONS(1273), - [anon_sym_SQUOTE] = ACTIONS(1273), - [anon_sym_L_DQUOTE] = ACTIONS(1273), - [anon_sym_u_DQUOTE] = ACTIONS(1273), - [anon_sym_U_DQUOTE] = ACTIONS(1273), - [anon_sym_u8_DQUOTE] = ACTIONS(1273), - [anon_sym_DQUOTE] = ACTIONS(1273), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [anon_sym_NULL] = ACTIONS(1271), - [anon_sym_nullptr] = ACTIONS(1271), - [sym_comment] = ACTIONS(3), - }, - [414] = { - [ts_builtin_sym_end] = ACTIONS(1317), - [sym_identifier] = ACTIONS(1315), - [aux_sym_preproc_include_token1] = ACTIONS(1315), - [aux_sym_preproc_def_token1] = ACTIONS(1315), - [aux_sym_preproc_if_token1] = ACTIONS(1315), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1315), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1315), - [sym_preproc_directive] = ACTIONS(1315), - [anon_sym_LPAREN2] = ACTIONS(1317), - [anon_sym_BANG] = ACTIONS(1317), - [anon_sym_TILDE] = ACTIONS(1317), - [anon_sym_DASH] = ACTIONS(1315), - [anon_sym_PLUS] = ACTIONS(1315), - [anon_sym_STAR] = ACTIONS(1317), - [anon_sym_AMP] = ACTIONS(1317), - [anon_sym___extension__] = ACTIONS(1315), - [anon_sym_typedef] = ACTIONS(1315), - [anon_sym_extern] = ACTIONS(1315), - [anon_sym___attribute__] = ACTIONS(1315), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1317), - [anon_sym___declspec] = ACTIONS(1315), - [anon_sym___cdecl] = ACTIONS(1315), - [anon_sym___clrcall] = ACTIONS(1315), - [anon_sym___stdcall] = ACTIONS(1315), - [anon_sym___fastcall] = ACTIONS(1315), - [anon_sym___thiscall] = ACTIONS(1315), - [anon_sym___vectorcall] = ACTIONS(1315), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_signed] = ACTIONS(1315), - [anon_sym_unsigned] = ACTIONS(1315), - [anon_sym_long] = ACTIONS(1315), - [anon_sym_short] = ACTIONS(1315), - [anon_sym_static] = ACTIONS(1315), - [anon_sym_auto] = ACTIONS(1315), - [anon_sym_register] = ACTIONS(1315), - [anon_sym_inline] = ACTIONS(1315), - [anon_sym___inline] = ACTIONS(1315), - [anon_sym___inline__] = ACTIONS(1315), - [anon_sym___forceinline] = ACTIONS(1315), - [anon_sym_thread_local] = ACTIONS(1315), - [anon_sym___thread] = ACTIONS(1315), - [anon_sym_const] = ACTIONS(1315), - [anon_sym_constexpr] = ACTIONS(1315), - [anon_sym_volatile] = ACTIONS(1315), - [anon_sym_restrict] = ACTIONS(1315), - [anon_sym___restrict__] = ACTIONS(1315), - [anon_sym__Atomic] = ACTIONS(1315), - [anon_sym__Noreturn] = ACTIONS(1315), - [anon_sym_noreturn] = ACTIONS(1315), - [anon_sym_alignas] = ACTIONS(1315), - [anon_sym__Alignas] = ACTIONS(1315), - [sym_primitive_type] = ACTIONS(1315), - [anon_sym_enum] = ACTIONS(1315), - [anon_sym_struct] = ACTIONS(1315), - [anon_sym_union] = ACTIONS(1315), - [anon_sym_if] = ACTIONS(1315), - [anon_sym_switch] = ACTIONS(1315), - [anon_sym_case] = ACTIONS(1315), - [anon_sym_default] = ACTIONS(1315), - [anon_sym_while] = ACTIONS(1315), - [anon_sym_do] = ACTIONS(1315), - [anon_sym_for] = ACTIONS(1315), - [anon_sym_return] = ACTIONS(1315), - [anon_sym_break] = ACTIONS(1315), - [anon_sym_continue] = ACTIONS(1315), - [anon_sym_goto] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_PLUS_PLUS] = ACTIONS(1317), - [anon_sym_sizeof] = ACTIONS(1315), - [anon_sym___alignof__] = ACTIONS(1315), - [anon_sym___alignof] = ACTIONS(1315), - [anon_sym__alignof] = ACTIONS(1315), - [anon_sym_alignof] = ACTIONS(1315), - [anon_sym__Alignof] = ACTIONS(1315), - [anon_sym_offsetof] = ACTIONS(1315), - [anon_sym__Generic] = ACTIONS(1315), - [anon_sym_asm] = ACTIONS(1315), - [anon_sym___asm__] = ACTIONS(1315), - [sym_number_literal] = ACTIONS(1317), - [anon_sym_L_SQUOTE] = ACTIONS(1317), - [anon_sym_u_SQUOTE] = ACTIONS(1317), - [anon_sym_U_SQUOTE] = ACTIONS(1317), - [anon_sym_u8_SQUOTE] = ACTIONS(1317), - [anon_sym_SQUOTE] = ACTIONS(1317), - [anon_sym_L_DQUOTE] = ACTIONS(1317), - [anon_sym_u_DQUOTE] = ACTIONS(1317), - [anon_sym_U_DQUOTE] = ACTIONS(1317), - [anon_sym_u8_DQUOTE] = ACTIONS(1317), - [anon_sym_DQUOTE] = ACTIONS(1317), - [sym_true] = ACTIONS(1315), - [sym_false] = ACTIONS(1315), - [anon_sym_NULL] = ACTIONS(1315), - [anon_sym_nullptr] = ACTIONS(1315), - [sym_comment] = ACTIONS(3), - }, - [415] = { + [367] = { [ts_builtin_sym_end] = ACTIONS(1333), [sym_identifier] = ACTIONS(1331), [aux_sym_preproc_include_token1] = ACTIONS(1331), @@ -57958,295 +53017,487 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1331), [sym_comment] = ACTIONS(3), }, - [416] = { - [ts_builtin_sym_end] = ACTIONS(1349), - [sym_identifier] = ACTIONS(1347), - [aux_sym_preproc_include_token1] = ACTIONS(1347), - [aux_sym_preproc_def_token1] = ACTIONS(1347), - [aux_sym_preproc_if_token1] = ACTIONS(1347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1347), - [sym_preproc_directive] = ACTIONS(1347), - [anon_sym_LPAREN2] = ACTIONS(1349), - [anon_sym_BANG] = ACTIONS(1349), - [anon_sym_TILDE] = ACTIONS(1349), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_STAR] = ACTIONS(1349), - [anon_sym_AMP] = ACTIONS(1349), - [anon_sym___extension__] = ACTIONS(1347), - [anon_sym_typedef] = ACTIONS(1347), - [anon_sym_extern] = ACTIONS(1347), - [anon_sym___attribute__] = ACTIONS(1347), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1349), - [anon_sym___declspec] = ACTIONS(1347), - [anon_sym___cdecl] = ACTIONS(1347), - [anon_sym___clrcall] = ACTIONS(1347), - [anon_sym___stdcall] = ACTIONS(1347), - [anon_sym___fastcall] = ACTIONS(1347), - [anon_sym___thiscall] = ACTIONS(1347), - [anon_sym___vectorcall] = ACTIONS(1347), - [anon_sym_LBRACE] = ACTIONS(1349), - [anon_sym_signed] = ACTIONS(1347), - [anon_sym_unsigned] = ACTIONS(1347), - [anon_sym_long] = ACTIONS(1347), - [anon_sym_short] = ACTIONS(1347), - [anon_sym_static] = ACTIONS(1347), - [anon_sym_auto] = ACTIONS(1347), - [anon_sym_register] = ACTIONS(1347), - [anon_sym_inline] = ACTIONS(1347), - [anon_sym___inline] = ACTIONS(1347), - [anon_sym___inline__] = ACTIONS(1347), - [anon_sym___forceinline] = ACTIONS(1347), - [anon_sym_thread_local] = ACTIONS(1347), - [anon_sym___thread] = ACTIONS(1347), - [anon_sym_const] = ACTIONS(1347), - [anon_sym_constexpr] = ACTIONS(1347), - [anon_sym_volatile] = ACTIONS(1347), - [anon_sym_restrict] = ACTIONS(1347), - [anon_sym___restrict__] = ACTIONS(1347), - [anon_sym__Atomic] = ACTIONS(1347), - [anon_sym__Noreturn] = ACTIONS(1347), - [anon_sym_noreturn] = ACTIONS(1347), - [anon_sym_alignas] = ACTIONS(1347), - [anon_sym__Alignas] = ACTIONS(1347), - [sym_primitive_type] = ACTIONS(1347), - [anon_sym_enum] = ACTIONS(1347), - [anon_sym_struct] = ACTIONS(1347), - [anon_sym_union] = ACTIONS(1347), - [anon_sym_if] = ACTIONS(1347), - [anon_sym_switch] = ACTIONS(1347), - [anon_sym_case] = ACTIONS(1347), - [anon_sym_default] = ACTIONS(1347), - [anon_sym_while] = ACTIONS(1347), - [anon_sym_do] = ACTIONS(1347), - [anon_sym_for] = ACTIONS(1347), - [anon_sym_return] = ACTIONS(1347), - [anon_sym_break] = ACTIONS(1347), - [anon_sym_continue] = ACTIONS(1347), - [anon_sym_goto] = ACTIONS(1347), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_sizeof] = ACTIONS(1347), - [anon_sym___alignof__] = ACTIONS(1347), - [anon_sym___alignof] = ACTIONS(1347), - [anon_sym__alignof] = ACTIONS(1347), - [anon_sym_alignof] = ACTIONS(1347), - [anon_sym__Alignof] = ACTIONS(1347), - [anon_sym_offsetof] = ACTIONS(1347), - [anon_sym__Generic] = ACTIONS(1347), - [anon_sym_asm] = ACTIONS(1347), - [anon_sym___asm__] = ACTIONS(1347), - [sym_number_literal] = ACTIONS(1349), - [anon_sym_L_SQUOTE] = ACTIONS(1349), - [anon_sym_u_SQUOTE] = ACTIONS(1349), - [anon_sym_U_SQUOTE] = ACTIONS(1349), - [anon_sym_u8_SQUOTE] = ACTIONS(1349), - [anon_sym_SQUOTE] = ACTIONS(1349), - [anon_sym_L_DQUOTE] = ACTIONS(1349), - [anon_sym_u_DQUOTE] = ACTIONS(1349), - [anon_sym_U_DQUOTE] = ACTIONS(1349), - [anon_sym_u8_DQUOTE] = ACTIONS(1349), - [anon_sym_DQUOTE] = ACTIONS(1349), - [sym_true] = ACTIONS(1347), - [sym_false] = ACTIONS(1347), - [anon_sym_NULL] = ACTIONS(1347), - [anon_sym_nullptr] = ACTIONS(1347), + [368] = { + [ts_builtin_sym_end] = ACTIONS(1289), + [sym_identifier] = ACTIONS(1287), + [aux_sym_preproc_include_token1] = ACTIONS(1287), + [aux_sym_preproc_def_token1] = ACTIONS(1287), + [aux_sym_preproc_if_token1] = ACTIONS(1287), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1287), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1287), + [sym_preproc_directive] = ACTIONS(1287), + [anon_sym_LPAREN2] = ACTIONS(1289), + [anon_sym_BANG] = ACTIONS(1289), + [anon_sym_TILDE] = ACTIONS(1289), + [anon_sym_DASH] = ACTIONS(1287), + [anon_sym_PLUS] = ACTIONS(1287), + [anon_sym_STAR] = ACTIONS(1289), + [anon_sym_AMP] = ACTIONS(1289), + [anon_sym___extension__] = ACTIONS(1287), + [anon_sym_typedef] = ACTIONS(1287), + [anon_sym_extern] = ACTIONS(1287), + [anon_sym___attribute__] = ACTIONS(1287), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1289), + [anon_sym___declspec] = ACTIONS(1287), + [anon_sym___cdecl] = ACTIONS(1287), + [anon_sym___clrcall] = ACTIONS(1287), + [anon_sym___stdcall] = ACTIONS(1287), + [anon_sym___fastcall] = ACTIONS(1287), + [anon_sym___thiscall] = ACTIONS(1287), + [anon_sym___vectorcall] = ACTIONS(1287), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_signed] = ACTIONS(1287), + [anon_sym_unsigned] = ACTIONS(1287), + [anon_sym_long] = ACTIONS(1287), + [anon_sym_short] = ACTIONS(1287), + [anon_sym_static] = ACTIONS(1287), + [anon_sym_auto] = ACTIONS(1287), + [anon_sym_register] = ACTIONS(1287), + [anon_sym_inline] = ACTIONS(1287), + [anon_sym___inline] = ACTIONS(1287), + [anon_sym___inline__] = ACTIONS(1287), + [anon_sym___forceinline] = ACTIONS(1287), + [anon_sym_thread_local] = ACTIONS(1287), + [anon_sym___thread] = ACTIONS(1287), + [anon_sym_const] = ACTIONS(1287), + [anon_sym_constexpr] = ACTIONS(1287), + [anon_sym_volatile] = ACTIONS(1287), + [anon_sym_restrict] = ACTIONS(1287), + [anon_sym___restrict__] = ACTIONS(1287), + [anon_sym__Atomic] = ACTIONS(1287), + [anon_sym__Noreturn] = ACTIONS(1287), + [anon_sym_noreturn] = ACTIONS(1287), + [anon_sym_alignas] = ACTIONS(1287), + [anon_sym__Alignas] = ACTIONS(1287), + [sym_primitive_type] = ACTIONS(1287), + [anon_sym_enum] = ACTIONS(1287), + [anon_sym_struct] = ACTIONS(1287), + [anon_sym_union] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1287), + [anon_sym_switch] = ACTIONS(1287), + [anon_sym_case] = ACTIONS(1287), + [anon_sym_default] = ACTIONS(1287), + [anon_sym_while] = ACTIONS(1287), + [anon_sym_do] = ACTIONS(1287), + [anon_sym_for] = ACTIONS(1287), + [anon_sym_return] = ACTIONS(1287), + [anon_sym_break] = ACTIONS(1287), + [anon_sym_continue] = ACTIONS(1287), + [anon_sym_goto] = ACTIONS(1287), + [anon_sym_DASH_DASH] = ACTIONS(1289), + [anon_sym_PLUS_PLUS] = ACTIONS(1289), + [anon_sym_sizeof] = ACTIONS(1287), + [anon_sym___alignof__] = ACTIONS(1287), + [anon_sym___alignof] = ACTIONS(1287), + [anon_sym__alignof] = ACTIONS(1287), + [anon_sym_alignof] = ACTIONS(1287), + [anon_sym__Alignof] = ACTIONS(1287), + [anon_sym_offsetof] = ACTIONS(1287), + [anon_sym__Generic] = ACTIONS(1287), + [anon_sym_asm] = ACTIONS(1287), + [anon_sym___asm__] = ACTIONS(1287), + [sym_number_literal] = ACTIONS(1289), + [anon_sym_L_SQUOTE] = ACTIONS(1289), + [anon_sym_u_SQUOTE] = ACTIONS(1289), + [anon_sym_U_SQUOTE] = ACTIONS(1289), + [anon_sym_u8_SQUOTE] = ACTIONS(1289), + [anon_sym_SQUOTE] = ACTIONS(1289), + [anon_sym_L_DQUOTE] = ACTIONS(1289), + [anon_sym_u_DQUOTE] = ACTIONS(1289), + [anon_sym_U_DQUOTE] = ACTIONS(1289), + [anon_sym_u8_DQUOTE] = ACTIONS(1289), + [anon_sym_DQUOTE] = ACTIONS(1289), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [anon_sym_NULL] = ACTIONS(1287), + [anon_sym_nullptr] = ACTIONS(1287), [sym_comment] = ACTIONS(3), }, - [417] = { - [ts_builtin_sym_end] = ACTIONS(1293), - [sym_identifier] = ACTIONS(1291), - [aux_sym_preproc_include_token1] = ACTIONS(1291), - [aux_sym_preproc_def_token1] = ACTIONS(1291), - [aux_sym_preproc_if_token1] = ACTIONS(1291), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1291), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1291), - [sym_preproc_directive] = ACTIONS(1291), - [anon_sym_LPAREN2] = ACTIONS(1293), - [anon_sym_BANG] = ACTIONS(1293), - [anon_sym_TILDE] = ACTIONS(1293), - [anon_sym_DASH] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1291), - [anon_sym_STAR] = ACTIONS(1293), - [anon_sym_AMP] = ACTIONS(1293), - [anon_sym___extension__] = ACTIONS(1291), - [anon_sym_typedef] = ACTIONS(1291), - [anon_sym_extern] = ACTIONS(1291), - [anon_sym___attribute__] = ACTIONS(1291), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1293), - [anon_sym___declspec] = ACTIONS(1291), - [anon_sym___cdecl] = ACTIONS(1291), - [anon_sym___clrcall] = ACTIONS(1291), - [anon_sym___stdcall] = ACTIONS(1291), - [anon_sym___fastcall] = ACTIONS(1291), - [anon_sym___thiscall] = ACTIONS(1291), - [anon_sym___vectorcall] = ACTIONS(1291), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_signed] = ACTIONS(1291), - [anon_sym_unsigned] = ACTIONS(1291), - [anon_sym_long] = ACTIONS(1291), - [anon_sym_short] = ACTIONS(1291), - [anon_sym_static] = ACTIONS(1291), - [anon_sym_auto] = ACTIONS(1291), - [anon_sym_register] = ACTIONS(1291), - [anon_sym_inline] = ACTIONS(1291), - [anon_sym___inline] = ACTIONS(1291), - [anon_sym___inline__] = ACTIONS(1291), - [anon_sym___forceinline] = ACTIONS(1291), - [anon_sym_thread_local] = ACTIONS(1291), - [anon_sym___thread] = ACTIONS(1291), - [anon_sym_const] = ACTIONS(1291), - [anon_sym_constexpr] = ACTIONS(1291), - [anon_sym_volatile] = ACTIONS(1291), - [anon_sym_restrict] = ACTIONS(1291), - [anon_sym___restrict__] = ACTIONS(1291), - [anon_sym__Atomic] = ACTIONS(1291), - [anon_sym__Noreturn] = ACTIONS(1291), - [anon_sym_noreturn] = ACTIONS(1291), - [anon_sym_alignas] = ACTIONS(1291), - [anon_sym__Alignas] = ACTIONS(1291), - [sym_primitive_type] = ACTIONS(1291), - [anon_sym_enum] = ACTIONS(1291), - [anon_sym_struct] = ACTIONS(1291), - [anon_sym_union] = ACTIONS(1291), - [anon_sym_if] = ACTIONS(1291), - [anon_sym_switch] = ACTIONS(1291), - [anon_sym_case] = ACTIONS(1291), - [anon_sym_default] = ACTIONS(1291), - [anon_sym_while] = ACTIONS(1291), - [anon_sym_do] = ACTIONS(1291), - [anon_sym_for] = ACTIONS(1291), - [anon_sym_return] = ACTIONS(1291), - [anon_sym_break] = ACTIONS(1291), - [anon_sym_continue] = ACTIONS(1291), - [anon_sym_goto] = ACTIONS(1291), - [anon_sym_DASH_DASH] = ACTIONS(1293), - [anon_sym_PLUS_PLUS] = ACTIONS(1293), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym___alignof__] = ACTIONS(1291), - [anon_sym___alignof] = ACTIONS(1291), - [anon_sym__alignof] = ACTIONS(1291), - [anon_sym_alignof] = ACTIONS(1291), - [anon_sym__Alignof] = ACTIONS(1291), - [anon_sym_offsetof] = ACTIONS(1291), - [anon_sym__Generic] = ACTIONS(1291), - [anon_sym_asm] = ACTIONS(1291), - [anon_sym___asm__] = ACTIONS(1291), - [sym_number_literal] = ACTIONS(1293), - [anon_sym_L_SQUOTE] = ACTIONS(1293), - [anon_sym_u_SQUOTE] = ACTIONS(1293), - [anon_sym_U_SQUOTE] = ACTIONS(1293), - [anon_sym_u8_SQUOTE] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1293), - [anon_sym_L_DQUOTE] = ACTIONS(1293), - [anon_sym_u_DQUOTE] = ACTIONS(1293), - [anon_sym_U_DQUOTE] = ACTIONS(1293), - [anon_sym_u8_DQUOTE] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1293), - [sym_true] = ACTIONS(1291), - [sym_false] = ACTIONS(1291), - [anon_sym_NULL] = ACTIONS(1291), - [anon_sym_nullptr] = ACTIONS(1291), + [369] = { + [ts_builtin_sym_end] = ACTIONS(1353), + [sym_identifier] = ACTIONS(1351), + [aux_sym_preproc_include_token1] = ACTIONS(1351), + [aux_sym_preproc_def_token1] = ACTIONS(1351), + [aux_sym_preproc_if_token1] = ACTIONS(1351), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1351), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1351), + [sym_preproc_directive] = ACTIONS(1351), + [anon_sym_LPAREN2] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1353), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_DASH] = ACTIONS(1351), + [anon_sym_PLUS] = ACTIONS(1351), + [anon_sym_STAR] = ACTIONS(1353), + [anon_sym_AMP] = ACTIONS(1353), + [anon_sym___extension__] = ACTIONS(1351), + [anon_sym_typedef] = ACTIONS(1351), + [anon_sym_extern] = ACTIONS(1351), + [anon_sym___attribute__] = ACTIONS(1351), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1353), + [anon_sym___declspec] = ACTIONS(1351), + [anon_sym___cdecl] = ACTIONS(1351), + [anon_sym___clrcall] = ACTIONS(1351), + [anon_sym___stdcall] = ACTIONS(1351), + [anon_sym___fastcall] = ACTIONS(1351), + [anon_sym___thiscall] = ACTIONS(1351), + [anon_sym___vectorcall] = ACTIONS(1351), + [anon_sym_LBRACE] = ACTIONS(1353), + [anon_sym_signed] = ACTIONS(1351), + [anon_sym_unsigned] = ACTIONS(1351), + [anon_sym_long] = ACTIONS(1351), + [anon_sym_short] = ACTIONS(1351), + [anon_sym_static] = ACTIONS(1351), + [anon_sym_auto] = ACTIONS(1351), + [anon_sym_register] = ACTIONS(1351), + [anon_sym_inline] = ACTIONS(1351), + [anon_sym___inline] = ACTIONS(1351), + [anon_sym___inline__] = ACTIONS(1351), + [anon_sym___forceinline] = ACTIONS(1351), + [anon_sym_thread_local] = ACTIONS(1351), + [anon_sym___thread] = ACTIONS(1351), + [anon_sym_const] = ACTIONS(1351), + [anon_sym_constexpr] = ACTIONS(1351), + [anon_sym_volatile] = ACTIONS(1351), + [anon_sym_restrict] = ACTIONS(1351), + [anon_sym___restrict__] = ACTIONS(1351), + [anon_sym__Atomic] = ACTIONS(1351), + [anon_sym__Noreturn] = ACTIONS(1351), + [anon_sym_noreturn] = ACTIONS(1351), + [anon_sym_alignas] = ACTIONS(1351), + [anon_sym__Alignas] = ACTIONS(1351), + [sym_primitive_type] = ACTIONS(1351), + [anon_sym_enum] = ACTIONS(1351), + [anon_sym_struct] = ACTIONS(1351), + [anon_sym_union] = ACTIONS(1351), + [anon_sym_if] = ACTIONS(1351), + [anon_sym_switch] = ACTIONS(1351), + [anon_sym_case] = ACTIONS(1351), + [anon_sym_default] = ACTIONS(1351), + [anon_sym_while] = ACTIONS(1351), + [anon_sym_do] = ACTIONS(1351), + [anon_sym_for] = ACTIONS(1351), + [anon_sym_return] = ACTIONS(1351), + [anon_sym_break] = ACTIONS(1351), + [anon_sym_continue] = ACTIONS(1351), + [anon_sym_goto] = ACTIONS(1351), + [anon_sym_DASH_DASH] = ACTIONS(1353), + [anon_sym_PLUS_PLUS] = ACTIONS(1353), + [anon_sym_sizeof] = ACTIONS(1351), + [anon_sym___alignof__] = ACTIONS(1351), + [anon_sym___alignof] = ACTIONS(1351), + [anon_sym__alignof] = ACTIONS(1351), + [anon_sym_alignof] = ACTIONS(1351), + [anon_sym__Alignof] = ACTIONS(1351), + [anon_sym_offsetof] = ACTIONS(1351), + [anon_sym__Generic] = ACTIONS(1351), + [anon_sym_asm] = ACTIONS(1351), + [anon_sym___asm__] = ACTIONS(1351), + [sym_number_literal] = ACTIONS(1353), + [anon_sym_L_SQUOTE] = ACTIONS(1353), + [anon_sym_u_SQUOTE] = ACTIONS(1353), + [anon_sym_U_SQUOTE] = ACTIONS(1353), + [anon_sym_u8_SQUOTE] = ACTIONS(1353), + [anon_sym_SQUOTE] = ACTIONS(1353), + [anon_sym_L_DQUOTE] = ACTIONS(1353), + [anon_sym_u_DQUOTE] = ACTIONS(1353), + [anon_sym_U_DQUOTE] = ACTIONS(1353), + [anon_sym_u8_DQUOTE] = ACTIONS(1353), + [anon_sym_DQUOTE] = ACTIONS(1353), + [sym_true] = ACTIONS(1351), + [sym_false] = ACTIONS(1351), + [anon_sym_NULL] = ACTIONS(1351), + [anon_sym_nullptr] = ACTIONS(1351), [sym_comment] = ACTIONS(3), }, - [418] = { - [ts_builtin_sym_end] = ACTIONS(1249), - [sym_identifier] = ACTIONS(1247), - [aux_sym_preproc_include_token1] = ACTIONS(1247), - [aux_sym_preproc_def_token1] = ACTIONS(1247), - [aux_sym_preproc_if_token1] = ACTIONS(1247), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1247), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1247), - [sym_preproc_directive] = ACTIONS(1247), - [anon_sym_LPAREN2] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1249), - [anon_sym_TILDE] = ACTIONS(1249), - [anon_sym_DASH] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1247), - [anon_sym_STAR] = ACTIONS(1249), - [anon_sym_AMP] = ACTIONS(1249), - [anon_sym___extension__] = ACTIONS(1247), - [anon_sym_typedef] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1247), - [anon_sym___attribute__] = ACTIONS(1247), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1249), - [anon_sym___declspec] = ACTIONS(1247), - [anon_sym___cdecl] = ACTIONS(1247), - [anon_sym___clrcall] = ACTIONS(1247), - [anon_sym___stdcall] = ACTIONS(1247), - [anon_sym___fastcall] = ACTIONS(1247), - [anon_sym___thiscall] = ACTIONS(1247), - [anon_sym___vectorcall] = ACTIONS(1247), - [anon_sym_LBRACE] = ACTIONS(1249), - [anon_sym_signed] = ACTIONS(1247), - [anon_sym_unsigned] = ACTIONS(1247), - [anon_sym_long] = ACTIONS(1247), - [anon_sym_short] = ACTIONS(1247), - [anon_sym_static] = ACTIONS(1247), - [anon_sym_auto] = ACTIONS(1247), - [anon_sym_register] = ACTIONS(1247), - [anon_sym_inline] = ACTIONS(1247), - [anon_sym___inline] = ACTIONS(1247), - [anon_sym___inline__] = ACTIONS(1247), - [anon_sym___forceinline] = ACTIONS(1247), - [anon_sym_thread_local] = ACTIONS(1247), - [anon_sym___thread] = ACTIONS(1247), - [anon_sym_const] = ACTIONS(1247), - [anon_sym_constexpr] = ACTIONS(1247), - [anon_sym_volatile] = ACTIONS(1247), - [anon_sym_restrict] = ACTIONS(1247), - [anon_sym___restrict__] = ACTIONS(1247), - [anon_sym__Atomic] = ACTIONS(1247), - [anon_sym__Noreturn] = ACTIONS(1247), - [anon_sym_noreturn] = ACTIONS(1247), - [anon_sym_alignas] = ACTIONS(1247), - [anon_sym__Alignas] = ACTIONS(1247), - [sym_primitive_type] = ACTIONS(1247), - [anon_sym_enum] = ACTIONS(1247), - [anon_sym_struct] = ACTIONS(1247), - [anon_sym_union] = ACTIONS(1247), - [anon_sym_if] = ACTIONS(1247), - [anon_sym_switch] = ACTIONS(1247), - [anon_sym_case] = ACTIONS(1247), - [anon_sym_default] = ACTIONS(1247), - [anon_sym_while] = ACTIONS(1247), - [anon_sym_do] = ACTIONS(1247), - [anon_sym_for] = ACTIONS(1247), - [anon_sym_return] = ACTIONS(1247), - [anon_sym_break] = ACTIONS(1247), - [anon_sym_continue] = ACTIONS(1247), - [anon_sym_goto] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1249), - [anon_sym_PLUS_PLUS] = ACTIONS(1249), - [anon_sym_sizeof] = ACTIONS(1247), - [anon_sym___alignof__] = ACTIONS(1247), - [anon_sym___alignof] = ACTIONS(1247), - [anon_sym__alignof] = ACTIONS(1247), - [anon_sym_alignof] = ACTIONS(1247), - [anon_sym__Alignof] = ACTIONS(1247), - [anon_sym_offsetof] = ACTIONS(1247), - [anon_sym__Generic] = ACTIONS(1247), - [anon_sym_asm] = ACTIONS(1247), - [anon_sym___asm__] = ACTIONS(1247), - [sym_number_literal] = ACTIONS(1249), - [anon_sym_L_SQUOTE] = ACTIONS(1249), - [anon_sym_u_SQUOTE] = ACTIONS(1249), - [anon_sym_U_SQUOTE] = ACTIONS(1249), - [anon_sym_u8_SQUOTE] = ACTIONS(1249), - [anon_sym_SQUOTE] = ACTIONS(1249), - [anon_sym_L_DQUOTE] = ACTIONS(1249), - [anon_sym_u_DQUOTE] = ACTIONS(1249), - [anon_sym_U_DQUOTE] = ACTIONS(1249), - [anon_sym_u8_DQUOTE] = ACTIONS(1249), - [anon_sym_DQUOTE] = ACTIONS(1249), - [sym_true] = ACTIONS(1247), - [sym_false] = ACTIONS(1247), - [anon_sym_NULL] = ACTIONS(1247), - [anon_sym_nullptr] = ACTIONS(1247), + [370] = { + [ts_builtin_sym_end] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1255), + [aux_sym_preproc_include_token1] = ACTIONS(1255), + [aux_sym_preproc_def_token1] = ACTIONS(1255), + [aux_sym_preproc_if_token1] = ACTIONS(1255), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1255), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1255), + [sym_preproc_directive] = ACTIONS(1255), + [anon_sym_LPAREN2] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(1257), + [anon_sym_TILDE] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1255), + [anon_sym_STAR] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1257), + [anon_sym___extension__] = ACTIONS(1255), + [anon_sym_typedef] = ACTIONS(1255), + [anon_sym_extern] = ACTIONS(1255), + [anon_sym___attribute__] = ACTIONS(1255), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1257), + [anon_sym___declspec] = ACTIONS(1255), + [anon_sym___cdecl] = ACTIONS(1255), + [anon_sym___clrcall] = ACTIONS(1255), + [anon_sym___stdcall] = ACTIONS(1255), + [anon_sym___fastcall] = ACTIONS(1255), + [anon_sym___thiscall] = ACTIONS(1255), + [anon_sym___vectorcall] = ACTIONS(1255), + [anon_sym_LBRACE] = ACTIONS(1257), + [anon_sym_signed] = ACTIONS(1255), + [anon_sym_unsigned] = ACTIONS(1255), + [anon_sym_long] = ACTIONS(1255), + [anon_sym_short] = ACTIONS(1255), + [anon_sym_static] = ACTIONS(1255), + [anon_sym_auto] = ACTIONS(1255), + [anon_sym_register] = ACTIONS(1255), + [anon_sym_inline] = ACTIONS(1255), + [anon_sym___inline] = ACTIONS(1255), + [anon_sym___inline__] = ACTIONS(1255), + [anon_sym___forceinline] = ACTIONS(1255), + [anon_sym_thread_local] = ACTIONS(1255), + [anon_sym___thread] = ACTIONS(1255), + [anon_sym_const] = ACTIONS(1255), + [anon_sym_constexpr] = ACTIONS(1255), + [anon_sym_volatile] = ACTIONS(1255), + [anon_sym_restrict] = ACTIONS(1255), + [anon_sym___restrict__] = ACTIONS(1255), + [anon_sym__Atomic] = ACTIONS(1255), + [anon_sym__Noreturn] = ACTIONS(1255), + [anon_sym_noreturn] = ACTIONS(1255), + [anon_sym_alignas] = ACTIONS(1255), + [anon_sym__Alignas] = ACTIONS(1255), + [sym_primitive_type] = ACTIONS(1255), + [anon_sym_enum] = ACTIONS(1255), + [anon_sym_struct] = ACTIONS(1255), + [anon_sym_union] = ACTIONS(1255), + [anon_sym_if] = ACTIONS(1255), + [anon_sym_switch] = ACTIONS(1255), + [anon_sym_case] = ACTIONS(1255), + [anon_sym_default] = ACTIONS(1255), + [anon_sym_while] = ACTIONS(1255), + [anon_sym_do] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1255), + [anon_sym_return] = ACTIONS(1255), + [anon_sym_break] = ACTIONS(1255), + [anon_sym_continue] = ACTIONS(1255), + [anon_sym_goto] = ACTIONS(1255), + [anon_sym_DASH_DASH] = ACTIONS(1257), + [anon_sym_PLUS_PLUS] = ACTIONS(1257), + [anon_sym_sizeof] = ACTIONS(1255), + [anon_sym___alignof__] = ACTIONS(1255), + [anon_sym___alignof] = ACTIONS(1255), + [anon_sym__alignof] = ACTIONS(1255), + [anon_sym_alignof] = ACTIONS(1255), + [anon_sym__Alignof] = ACTIONS(1255), + [anon_sym_offsetof] = ACTIONS(1255), + [anon_sym__Generic] = ACTIONS(1255), + [anon_sym_asm] = ACTIONS(1255), + [anon_sym___asm__] = ACTIONS(1255), + [sym_number_literal] = ACTIONS(1257), + [anon_sym_L_SQUOTE] = ACTIONS(1257), + [anon_sym_u_SQUOTE] = ACTIONS(1257), + [anon_sym_U_SQUOTE] = ACTIONS(1257), + [anon_sym_u8_SQUOTE] = ACTIONS(1257), + [anon_sym_SQUOTE] = ACTIONS(1257), + [anon_sym_L_DQUOTE] = ACTIONS(1257), + [anon_sym_u_DQUOTE] = ACTIONS(1257), + [anon_sym_U_DQUOTE] = ACTIONS(1257), + [anon_sym_u8_DQUOTE] = ACTIONS(1257), + [anon_sym_DQUOTE] = ACTIONS(1257), + [sym_true] = ACTIONS(1255), + [sym_false] = ACTIONS(1255), + [anon_sym_NULL] = ACTIONS(1255), + [anon_sym_nullptr] = ACTIONS(1255), [sym_comment] = ACTIONS(3), }, - [419] = { + [371] = { + [ts_builtin_sym_end] = ACTIONS(1349), + [sym_identifier] = ACTIONS(1347), + [aux_sym_preproc_include_token1] = ACTIONS(1347), + [aux_sym_preproc_def_token1] = ACTIONS(1347), + [aux_sym_preproc_if_token1] = ACTIONS(1347), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1347), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1347), + [sym_preproc_directive] = ACTIONS(1347), + [anon_sym_LPAREN2] = ACTIONS(1349), + [anon_sym_BANG] = ACTIONS(1349), + [anon_sym_TILDE] = ACTIONS(1349), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_STAR] = ACTIONS(1349), + [anon_sym_AMP] = ACTIONS(1349), + [anon_sym___extension__] = ACTIONS(1347), + [anon_sym_typedef] = ACTIONS(1347), + [anon_sym_extern] = ACTIONS(1347), + [anon_sym___attribute__] = ACTIONS(1347), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1349), + [anon_sym___declspec] = ACTIONS(1347), + [anon_sym___cdecl] = ACTIONS(1347), + [anon_sym___clrcall] = ACTIONS(1347), + [anon_sym___stdcall] = ACTIONS(1347), + [anon_sym___fastcall] = ACTIONS(1347), + [anon_sym___thiscall] = ACTIONS(1347), + [anon_sym___vectorcall] = ACTIONS(1347), + [anon_sym_LBRACE] = ACTIONS(1349), + [anon_sym_signed] = ACTIONS(1347), + [anon_sym_unsigned] = ACTIONS(1347), + [anon_sym_long] = ACTIONS(1347), + [anon_sym_short] = ACTIONS(1347), + [anon_sym_static] = ACTIONS(1347), + [anon_sym_auto] = ACTIONS(1347), + [anon_sym_register] = ACTIONS(1347), + [anon_sym_inline] = ACTIONS(1347), + [anon_sym___inline] = ACTIONS(1347), + [anon_sym___inline__] = ACTIONS(1347), + [anon_sym___forceinline] = ACTIONS(1347), + [anon_sym_thread_local] = ACTIONS(1347), + [anon_sym___thread] = ACTIONS(1347), + [anon_sym_const] = ACTIONS(1347), + [anon_sym_constexpr] = ACTIONS(1347), + [anon_sym_volatile] = ACTIONS(1347), + [anon_sym_restrict] = ACTIONS(1347), + [anon_sym___restrict__] = ACTIONS(1347), + [anon_sym__Atomic] = ACTIONS(1347), + [anon_sym__Noreturn] = ACTIONS(1347), + [anon_sym_noreturn] = ACTIONS(1347), + [anon_sym_alignas] = ACTIONS(1347), + [anon_sym__Alignas] = ACTIONS(1347), + [sym_primitive_type] = ACTIONS(1347), + [anon_sym_enum] = ACTIONS(1347), + [anon_sym_struct] = ACTIONS(1347), + [anon_sym_union] = ACTIONS(1347), + [anon_sym_if] = ACTIONS(1347), + [anon_sym_switch] = ACTIONS(1347), + [anon_sym_case] = ACTIONS(1347), + [anon_sym_default] = ACTIONS(1347), + [anon_sym_while] = ACTIONS(1347), + [anon_sym_do] = ACTIONS(1347), + [anon_sym_for] = ACTIONS(1347), + [anon_sym_return] = ACTIONS(1347), + [anon_sym_break] = ACTIONS(1347), + [anon_sym_continue] = ACTIONS(1347), + [anon_sym_goto] = ACTIONS(1347), + [anon_sym_DASH_DASH] = ACTIONS(1349), + [anon_sym_PLUS_PLUS] = ACTIONS(1349), + [anon_sym_sizeof] = ACTIONS(1347), + [anon_sym___alignof__] = ACTIONS(1347), + [anon_sym___alignof] = ACTIONS(1347), + [anon_sym__alignof] = ACTIONS(1347), + [anon_sym_alignof] = ACTIONS(1347), + [anon_sym__Alignof] = ACTIONS(1347), + [anon_sym_offsetof] = ACTIONS(1347), + [anon_sym__Generic] = ACTIONS(1347), + [anon_sym_asm] = ACTIONS(1347), + [anon_sym___asm__] = ACTIONS(1347), + [sym_number_literal] = ACTIONS(1349), + [anon_sym_L_SQUOTE] = ACTIONS(1349), + [anon_sym_u_SQUOTE] = ACTIONS(1349), + [anon_sym_U_SQUOTE] = ACTIONS(1349), + [anon_sym_u8_SQUOTE] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1349), + [anon_sym_L_DQUOTE] = ACTIONS(1349), + [anon_sym_u_DQUOTE] = ACTIONS(1349), + [anon_sym_U_DQUOTE] = ACTIONS(1349), + [anon_sym_u8_DQUOTE] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(1349), + [sym_true] = ACTIONS(1347), + [sym_false] = ACTIONS(1347), + [anon_sym_NULL] = ACTIONS(1347), + [anon_sym_nullptr] = ACTIONS(1347), + [sym_comment] = ACTIONS(3), + }, + [372] = { + [ts_builtin_sym_end] = ACTIONS(1345), + [sym_identifier] = ACTIONS(1343), + [aux_sym_preproc_include_token1] = ACTIONS(1343), + [aux_sym_preproc_def_token1] = ACTIONS(1343), + [aux_sym_preproc_if_token1] = ACTIONS(1343), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1343), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1343), + [sym_preproc_directive] = ACTIONS(1343), + [anon_sym_LPAREN2] = ACTIONS(1345), + [anon_sym_BANG] = ACTIONS(1345), + [anon_sym_TILDE] = ACTIONS(1345), + [anon_sym_DASH] = ACTIONS(1343), + [anon_sym_PLUS] = ACTIONS(1343), + [anon_sym_STAR] = ACTIONS(1345), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym___extension__] = ACTIONS(1343), + [anon_sym_typedef] = ACTIONS(1343), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym___attribute__] = ACTIONS(1343), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1345), + [anon_sym___declspec] = ACTIONS(1343), + [anon_sym___cdecl] = ACTIONS(1343), + [anon_sym___clrcall] = ACTIONS(1343), + [anon_sym___stdcall] = ACTIONS(1343), + [anon_sym___fastcall] = ACTIONS(1343), + [anon_sym___thiscall] = ACTIONS(1343), + [anon_sym___vectorcall] = ACTIONS(1343), + [anon_sym_LBRACE] = ACTIONS(1345), + [anon_sym_signed] = ACTIONS(1343), + [anon_sym_unsigned] = ACTIONS(1343), + [anon_sym_long] = ACTIONS(1343), + [anon_sym_short] = ACTIONS(1343), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_auto] = ACTIONS(1343), + [anon_sym_register] = ACTIONS(1343), + [anon_sym_inline] = ACTIONS(1343), + [anon_sym___inline] = ACTIONS(1343), + [anon_sym___inline__] = ACTIONS(1343), + [anon_sym___forceinline] = ACTIONS(1343), + [anon_sym_thread_local] = ACTIONS(1343), + [anon_sym___thread] = ACTIONS(1343), + [anon_sym_const] = ACTIONS(1343), + [anon_sym_constexpr] = ACTIONS(1343), + [anon_sym_volatile] = ACTIONS(1343), + [anon_sym_restrict] = ACTIONS(1343), + [anon_sym___restrict__] = ACTIONS(1343), + [anon_sym__Atomic] = ACTIONS(1343), + [anon_sym__Noreturn] = ACTIONS(1343), + [anon_sym_noreturn] = ACTIONS(1343), + [anon_sym_alignas] = ACTIONS(1343), + [anon_sym__Alignas] = 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_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_DASH_DASH] = ACTIONS(1345), + [anon_sym_PLUS_PLUS] = ACTIONS(1345), + [anon_sym_sizeof] = ACTIONS(1343), + [anon_sym___alignof__] = ACTIONS(1343), + [anon_sym___alignof] = ACTIONS(1343), + [anon_sym__alignof] = ACTIONS(1343), + [anon_sym_alignof] = ACTIONS(1343), + [anon_sym__Alignof] = ACTIONS(1343), + [anon_sym_offsetof] = ACTIONS(1343), + [anon_sym__Generic] = ACTIONS(1343), + [anon_sym_asm] = ACTIONS(1343), + [anon_sym___asm__] = ACTIONS(1343), + [sym_number_literal] = ACTIONS(1345), + [anon_sym_L_SQUOTE] = ACTIONS(1345), + [anon_sym_u_SQUOTE] = ACTIONS(1345), + [anon_sym_U_SQUOTE] = ACTIONS(1345), + [anon_sym_u8_SQUOTE] = ACTIONS(1345), + [anon_sym_SQUOTE] = ACTIONS(1345), + [anon_sym_L_DQUOTE] = ACTIONS(1345), + [anon_sym_u_DQUOTE] = ACTIONS(1345), + [anon_sym_U_DQUOTE] = ACTIONS(1345), + [anon_sym_u8_DQUOTE] = ACTIONS(1345), + [anon_sym_DQUOTE] = ACTIONS(1345), + [sym_true] = ACTIONS(1343), + [sym_false] = ACTIONS(1343), + [anon_sym_NULL] = ACTIONS(1343), + [anon_sym_nullptr] = ACTIONS(1343), + [sym_comment] = ACTIONS(3), + }, + [373] = { [ts_builtin_sym_end] = ACTIONS(1313), [sym_identifier] = ACTIONS(1311), [aux_sym_preproc_include_token1] = ACTIONS(1311), @@ -58342,1321 +53593,930 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1311), [sym_comment] = ACTIONS(3), }, - [420] = { - [ts_builtin_sym_end] = ACTIONS(1269), - [sym_identifier] = ACTIONS(1267), - [aux_sym_preproc_include_token1] = ACTIONS(1267), - [aux_sym_preproc_def_token1] = ACTIONS(1267), - [aux_sym_preproc_if_token1] = ACTIONS(1267), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1267), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1267), - [sym_preproc_directive] = ACTIONS(1267), - [anon_sym_LPAREN2] = ACTIONS(1269), - [anon_sym_BANG] = ACTIONS(1269), - [anon_sym_TILDE] = ACTIONS(1269), - [anon_sym_DASH] = ACTIONS(1267), - [anon_sym_PLUS] = ACTIONS(1267), - [anon_sym_STAR] = ACTIONS(1269), - [anon_sym_AMP] = ACTIONS(1269), - [anon_sym___extension__] = ACTIONS(1267), - [anon_sym_typedef] = ACTIONS(1267), - [anon_sym_extern] = ACTIONS(1267), - [anon_sym___attribute__] = ACTIONS(1267), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1269), - [anon_sym___declspec] = ACTIONS(1267), - [anon_sym___cdecl] = ACTIONS(1267), - [anon_sym___clrcall] = ACTIONS(1267), - [anon_sym___stdcall] = ACTIONS(1267), - [anon_sym___fastcall] = ACTIONS(1267), - [anon_sym___thiscall] = ACTIONS(1267), - [anon_sym___vectorcall] = ACTIONS(1267), - [anon_sym_LBRACE] = ACTIONS(1269), - [anon_sym_signed] = ACTIONS(1267), - [anon_sym_unsigned] = ACTIONS(1267), - [anon_sym_long] = ACTIONS(1267), - [anon_sym_short] = ACTIONS(1267), - [anon_sym_static] = ACTIONS(1267), - [anon_sym_auto] = ACTIONS(1267), - [anon_sym_register] = ACTIONS(1267), - [anon_sym_inline] = ACTIONS(1267), - [anon_sym___inline] = ACTIONS(1267), - [anon_sym___inline__] = ACTIONS(1267), - [anon_sym___forceinline] = ACTIONS(1267), - [anon_sym_thread_local] = ACTIONS(1267), - [anon_sym___thread] = ACTIONS(1267), - [anon_sym_const] = ACTIONS(1267), - [anon_sym_constexpr] = ACTIONS(1267), - [anon_sym_volatile] = ACTIONS(1267), - [anon_sym_restrict] = ACTIONS(1267), - [anon_sym___restrict__] = ACTIONS(1267), - [anon_sym__Atomic] = ACTIONS(1267), - [anon_sym__Noreturn] = ACTIONS(1267), - [anon_sym_noreturn] = ACTIONS(1267), - [anon_sym_alignas] = ACTIONS(1267), - [anon_sym__Alignas] = ACTIONS(1267), - [sym_primitive_type] = ACTIONS(1267), - [anon_sym_enum] = ACTIONS(1267), - [anon_sym_struct] = ACTIONS(1267), - [anon_sym_union] = ACTIONS(1267), - [anon_sym_if] = ACTIONS(1267), - [anon_sym_switch] = ACTIONS(1267), - [anon_sym_case] = ACTIONS(1267), - [anon_sym_default] = ACTIONS(1267), - [anon_sym_while] = ACTIONS(1267), - [anon_sym_do] = ACTIONS(1267), - [anon_sym_for] = ACTIONS(1267), - [anon_sym_return] = ACTIONS(1267), - [anon_sym_break] = ACTIONS(1267), - [anon_sym_continue] = ACTIONS(1267), - [anon_sym_goto] = ACTIONS(1267), - [anon_sym_DASH_DASH] = ACTIONS(1269), - [anon_sym_PLUS_PLUS] = ACTIONS(1269), - [anon_sym_sizeof] = ACTIONS(1267), - [anon_sym___alignof__] = ACTIONS(1267), - [anon_sym___alignof] = ACTIONS(1267), - [anon_sym__alignof] = ACTIONS(1267), - [anon_sym_alignof] = ACTIONS(1267), - [anon_sym__Alignof] = ACTIONS(1267), - [anon_sym_offsetof] = ACTIONS(1267), - [anon_sym__Generic] = ACTIONS(1267), - [anon_sym_asm] = ACTIONS(1267), - [anon_sym___asm__] = ACTIONS(1267), - [sym_number_literal] = ACTIONS(1269), - [anon_sym_L_SQUOTE] = ACTIONS(1269), - [anon_sym_u_SQUOTE] = ACTIONS(1269), - [anon_sym_U_SQUOTE] = ACTIONS(1269), - [anon_sym_u8_SQUOTE] = ACTIONS(1269), - [anon_sym_SQUOTE] = ACTIONS(1269), - [anon_sym_L_DQUOTE] = ACTIONS(1269), - [anon_sym_u_DQUOTE] = ACTIONS(1269), - [anon_sym_U_DQUOTE] = ACTIONS(1269), - [anon_sym_u8_DQUOTE] = ACTIONS(1269), - [anon_sym_DQUOTE] = ACTIONS(1269), - [sym_true] = ACTIONS(1267), - [sym_false] = ACTIONS(1267), - [anon_sym_NULL] = ACTIONS(1267), - [anon_sym_nullptr] = ACTIONS(1267), - [sym_comment] = ACTIONS(3), - }, - [421] = { - [ts_builtin_sym_end] = ACTIONS(1257), - [sym_identifier] = ACTIONS(1255), - [aux_sym_preproc_include_token1] = ACTIONS(1255), - [aux_sym_preproc_def_token1] = ACTIONS(1255), - [aux_sym_preproc_if_token1] = ACTIONS(1255), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1255), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1255), - [sym_preproc_directive] = ACTIONS(1255), - [anon_sym_LPAREN2] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_TILDE] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1257), - [anon_sym___extension__] = ACTIONS(1255), - [anon_sym_typedef] = ACTIONS(1255), - [anon_sym_extern] = ACTIONS(1255), - [anon_sym___attribute__] = ACTIONS(1255), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1257), - [anon_sym___declspec] = ACTIONS(1255), - [anon_sym___cdecl] = ACTIONS(1255), - [anon_sym___clrcall] = ACTIONS(1255), - [anon_sym___stdcall] = ACTIONS(1255), - [anon_sym___fastcall] = ACTIONS(1255), - [anon_sym___thiscall] = ACTIONS(1255), - [anon_sym___vectorcall] = ACTIONS(1255), - [anon_sym_LBRACE] = ACTIONS(1257), - [anon_sym_signed] = ACTIONS(1255), - [anon_sym_unsigned] = ACTIONS(1255), - [anon_sym_long] = ACTIONS(1255), - [anon_sym_short] = ACTIONS(1255), - [anon_sym_static] = ACTIONS(1255), - [anon_sym_auto] = ACTIONS(1255), - [anon_sym_register] = ACTIONS(1255), - [anon_sym_inline] = ACTIONS(1255), - [anon_sym___inline] = ACTIONS(1255), - [anon_sym___inline__] = ACTIONS(1255), - [anon_sym___forceinline] = ACTIONS(1255), - [anon_sym_thread_local] = ACTIONS(1255), - [anon_sym___thread] = ACTIONS(1255), - [anon_sym_const] = ACTIONS(1255), - [anon_sym_constexpr] = ACTIONS(1255), - [anon_sym_volatile] = ACTIONS(1255), - [anon_sym_restrict] = ACTIONS(1255), - [anon_sym___restrict__] = ACTIONS(1255), - [anon_sym__Atomic] = ACTIONS(1255), - [anon_sym__Noreturn] = ACTIONS(1255), - [anon_sym_noreturn] = ACTIONS(1255), - [anon_sym_alignas] = ACTIONS(1255), - [anon_sym__Alignas] = ACTIONS(1255), - [sym_primitive_type] = ACTIONS(1255), - [anon_sym_enum] = ACTIONS(1255), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_union] = ACTIONS(1255), - [anon_sym_if] = ACTIONS(1255), - [anon_sym_switch] = ACTIONS(1255), - [anon_sym_case] = ACTIONS(1255), - [anon_sym_default] = ACTIONS(1255), - [anon_sym_while] = ACTIONS(1255), - [anon_sym_do] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1255), - [anon_sym_return] = ACTIONS(1255), - [anon_sym_break] = ACTIONS(1255), - [anon_sym_continue] = ACTIONS(1255), - [anon_sym_goto] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1257), - [anon_sym_sizeof] = ACTIONS(1255), - [anon_sym___alignof__] = ACTIONS(1255), - [anon_sym___alignof] = ACTIONS(1255), - [anon_sym__alignof] = ACTIONS(1255), - [anon_sym_alignof] = ACTIONS(1255), - [anon_sym__Alignof] = ACTIONS(1255), - [anon_sym_offsetof] = ACTIONS(1255), - [anon_sym__Generic] = ACTIONS(1255), - [anon_sym_asm] = ACTIONS(1255), - [anon_sym___asm__] = ACTIONS(1255), - [sym_number_literal] = ACTIONS(1257), - [anon_sym_L_SQUOTE] = ACTIONS(1257), - [anon_sym_u_SQUOTE] = ACTIONS(1257), - [anon_sym_U_SQUOTE] = ACTIONS(1257), - [anon_sym_u8_SQUOTE] = ACTIONS(1257), - [anon_sym_SQUOTE] = ACTIONS(1257), - [anon_sym_L_DQUOTE] = ACTIONS(1257), - [anon_sym_u_DQUOTE] = ACTIONS(1257), - [anon_sym_U_DQUOTE] = ACTIONS(1257), - [anon_sym_u8_DQUOTE] = ACTIONS(1257), - [anon_sym_DQUOTE] = ACTIONS(1257), - [sym_true] = ACTIONS(1255), - [sym_false] = ACTIONS(1255), - [anon_sym_NULL] = ACTIONS(1255), - [anon_sym_nullptr] = ACTIONS(1255), + [374] = { + [ts_builtin_sym_end] = ACTIONS(1265), + [sym_identifier] = ACTIONS(1263), + [aux_sym_preproc_include_token1] = ACTIONS(1263), + [aux_sym_preproc_def_token1] = ACTIONS(1263), + [aux_sym_preproc_if_token1] = ACTIONS(1263), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1263), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1263), + [sym_preproc_directive] = ACTIONS(1263), + [anon_sym_LPAREN2] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_TILDE] = ACTIONS(1265), + [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1263), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_AMP] = ACTIONS(1265), + [anon_sym___extension__] = ACTIONS(1263), + [anon_sym_typedef] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1263), + [anon_sym___attribute__] = ACTIONS(1263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1265), + [anon_sym___declspec] = ACTIONS(1263), + [anon_sym___cdecl] = ACTIONS(1263), + [anon_sym___clrcall] = ACTIONS(1263), + [anon_sym___stdcall] = ACTIONS(1263), + [anon_sym___fastcall] = ACTIONS(1263), + [anon_sym___thiscall] = ACTIONS(1263), + [anon_sym___vectorcall] = ACTIONS(1263), + [anon_sym_LBRACE] = ACTIONS(1265), + [anon_sym_signed] = ACTIONS(1263), + [anon_sym_unsigned] = ACTIONS(1263), + [anon_sym_long] = ACTIONS(1263), + [anon_sym_short] = ACTIONS(1263), + [anon_sym_static] = ACTIONS(1263), + [anon_sym_auto] = ACTIONS(1263), + [anon_sym_register] = ACTIONS(1263), + [anon_sym_inline] = ACTIONS(1263), + [anon_sym___inline] = ACTIONS(1263), + [anon_sym___inline__] = ACTIONS(1263), + [anon_sym___forceinline] = ACTIONS(1263), + [anon_sym_thread_local] = ACTIONS(1263), + [anon_sym___thread] = ACTIONS(1263), + [anon_sym_const] = ACTIONS(1263), + [anon_sym_constexpr] = ACTIONS(1263), + [anon_sym_volatile] = ACTIONS(1263), + [anon_sym_restrict] = ACTIONS(1263), + [anon_sym___restrict__] = ACTIONS(1263), + [anon_sym__Atomic] = ACTIONS(1263), + [anon_sym__Noreturn] = ACTIONS(1263), + [anon_sym_noreturn] = ACTIONS(1263), + [anon_sym_alignas] = ACTIONS(1263), + [anon_sym__Alignas] = ACTIONS(1263), + [sym_primitive_type] = ACTIONS(1263), + [anon_sym_enum] = ACTIONS(1263), + [anon_sym_struct] = ACTIONS(1263), + [anon_sym_union] = ACTIONS(1263), + [anon_sym_if] = ACTIONS(1263), + [anon_sym_switch] = ACTIONS(1263), + [anon_sym_case] = ACTIONS(1263), + [anon_sym_default] = ACTIONS(1263), + [anon_sym_while] = ACTIONS(1263), + [anon_sym_do] = ACTIONS(1263), + [anon_sym_for] = ACTIONS(1263), + [anon_sym_return] = ACTIONS(1263), + [anon_sym_break] = ACTIONS(1263), + [anon_sym_continue] = ACTIONS(1263), + [anon_sym_goto] = ACTIONS(1263), + [anon_sym_DASH_DASH] = ACTIONS(1265), + [anon_sym_PLUS_PLUS] = ACTIONS(1265), + [anon_sym_sizeof] = ACTIONS(1263), + [anon_sym___alignof__] = ACTIONS(1263), + [anon_sym___alignof] = ACTIONS(1263), + [anon_sym__alignof] = ACTIONS(1263), + [anon_sym_alignof] = ACTIONS(1263), + [anon_sym__Alignof] = ACTIONS(1263), + [anon_sym_offsetof] = ACTIONS(1263), + [anon_sym__Generic] = ACTIONS(1263), + [anon_sym_asm] = ACTIONS(1263), + [anon_sym___asm__] = ACTIONS(1263), + [sym_number_literal] = ACTIONS(1265), + [anon_sym_L_SQUOTE] = ACTIONS(1265), + [anon_sym_u_SQUOTE] = ACTIONS(1265), + [anon_sym_U_SQUOTE] = ACTIONS(1265), + [anon_sym_u8_SQUOTE] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1265), + [anon_sym_L_DQUOTE] = ACTIONS(1265), + [anon_sym_u_DQUOTE] = ACTIONS(1265), + [anon_sym_U_DQUOTE] = ACTIONS(1265), + [anon_sym_u8_DQUOTE] = ACTIONS(1265), + [anon_sym_DQUOTE] = ACTIONS(1265), + [sym_true] = ACTIONS(1263), + [sym_false] = ACTIONS(1263), + [anon_sym_NULL] = ACTIONS(1263), + [anon_sym_nullptr] = ACTIONS(1263), [sym_comment] = ACTIONS(3), }, - [422] = { - [ts_builtin_sym_end] = ACTIONS(1341), - [sym_identifier] = ACTIONS(1339), - [aux_sym_preproc_include_token1] = ACTIONS(1339), - [aux_sym_preproc_def_token1] = ACTIONS(1339), - [aux_sym_preproc_if_token1] = ACTIONS(1339), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1339), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1339), - [sym_preproc_directive] = ACTIONS(1339), - [anon_sym_LPAREN2] = ACTIONS(1341), - [anon_sym_BANG] = ACTIONS(1341), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_DASH] = ACTIONS(1339), - [anon_sym_PLUS] = ACTIONS(1339), - [anon_sym_STAR] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(1341), - [anon_sym___extension__] = ACTIONS(1339), - [anon_sym_typedef] = ACTIONS(1339), - [anon_sym_extern] = ACTIONS(1339), - [anon_sym___attribute__] = ACTIONS(1339), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1341), - [anon_sym___declspec] = ACTIONS(1339), - [anon_sym___cdecl] = ACTIONS(1339), - [anon_sym___clrcall] = ACTIONS(1339), - [anon_sym___stdcall] = ACTIONS(1339), - [anon_sym___fastcall] = ACTIONS(1339), - [anon_sym___thiscall] = ACTIONS(1339), - [anon_sym___vectorcall] = ACTIONS(1339), - [anon_sym_LBRACE] = ACTIONS(1341), - [anon_sym_signed] = ACTIONS(1339), - [anon_sym_unsigned] = ACTIONS(1339), - [anon_sym_long] = ACTIONS(1339), - [anon_sym_short] = ACTIONS(1339), - [anon_sym_static] = ACTIONS(1339), - [anon_sym_auto] = ACTIONS(1339), - [anon_sym_register] = ACTIONS(1339), - [anon_sym_inline] = ACTIONS(1339), - [anon_sym___inline] = ACTIONS(1339), - [anon_sym___inline__] = ACTIONS(1339), - [anon_sym___forceinline] = ACTIONS(1339), - [anon_sym_thread_local] = ACTIONS(1339), - [anon_sym___thread] = ACTIONS(1339), - [anon_sym_const] = ACTIONS(1339), - [anon_sym_constexpr] = ACTIONS(1339), - [anon_sym_volatile] = ACTIONS(1339), - [anon_sym_restrict] = ACTIONS(1339), - [anon_sym___restrict__] = ACTIONS(1339), - [anon_sym__Atomic] = ACTIONS(1339), - [anon_sym__Noreturn] = ACTIONS(1339), - [anon_sym_noreturn] = ACTIONS(1339), - [anon_sym_alignas] = ACTIONS(1339), - [anon_sym__Alignas] = ACTIONS(1339), - [sym_primitive_type] = ACTIONS(1339), - [anon_sym_enum] = ACTIONS(1339), - [anon_sym_struct] = ACTIONS(1339), - [anon_sym_union] = ACTIONS(1339), - [anon_sym_if] = ACTIONS(1339), - [anon_sym_switch] = ACTIONS(1339), - [anon_sym_case] = ACTIONS(1339), - [anon_sym_default] = ACTIONS(1339), - [anon_sym_while] = ACTIONS(1339), - [anon_sym_do] = ACTIONS(1339), - [anon_sym_for] = ACTIONS(1339), - [anon_sym_return] = ACTIONS(1339), - [anon_sym_break] = ACTIONS(1339), - [anon_sym_continue] = ACTIONS(1339), - [anon_sym_goto] = ACTIONS(1339), - [anon_sym_DASH_DASH] = ACTIONS(1341), - [anon_sym_PLUS_PLUS] = ACTIONS(1341), - [anon_sym_sizeof] = ACTIONS(1339), - [anon_sym___alignof__] = ACTIONS(1339), - [anon_sym___alignof] = ACTIONS(1339), - [anon_sym__alignof] = ACTIONS(1339), - [anon_sym_alignof] = ACTIONS(1339), - [anon_sym__Alignof] = ACTIONS(1339), - [anon_sym_offsetof] = ACTIONS(1339), - [anon_sym__Generic] = ACTIONS(1339), - [anon_sym_asm] = ACTIONS(1339), - [anon_sym___asm__] = ACTIONS(1339), - [sym_number_literal] = ACTIONS(1341), - [anon_sym_L_SQUOTE] = ACTIONS(1341), - [anon_sym_u_SQUOTE] = ACTIONS(1341), - [anon_sym_U_SQUOTE] = ACTIONS(1341), - [anon_sym_u8_SQUOTE] = ACTIONS(1341), - [anon_sym_SQUOTE] = ACTIONS(1341), - [anon_sym_L_DQUOTE] = ACTIONS(1341), - [anon_sym_u_DQUOTE] = ACTIONS(1341), - [anon_sym_U_DQUOTE] = ACTIONS(1341), - [anon_sym_u8_DQUOTE] = ACTIONS(1341), - [anon_sym_DQUOTE] = ACTIONS(1341), - [sym_true] = ACTIONS(1339), - [sym_false] = ACTIONS(1339), - [anon_sym_NULL] = ACTIONS(1339), - [anon_sym_nullptr] = ACTIONS(1339), + [375] = { + [ts_builtin_sym_end] = ACTIONS(1297), + [sym_identifier] = ACTIONS(1295), + [aux_sym_preproc_include_token1] = ACTIONS(1295), + [aux_sym_preproc_def_token1] = ACTIONS(1295), + [aux_sym_preproc_if_token1] = ACTIONS(1295), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1295), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1295), + [sym_preproc_directive] = ACTIONS(1295), + [anon_sym_LPAREN2] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_TILDE] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1295), + [anon_sym_STAR] = ACTIONS(1297), + [anon_sym_AMP] = ACTIONS(1297), + [anon_sym___extension__] = ACTIONS(1295), + [anon_sym_typedef] = ACTIONS(1295), + [anon_sym_extern] = ACTIONS(1295), + [anon_sym___attribute__] = ACTIONS(1295), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1297), + [anon_sym___declspec] = ACTIONS(1295), + [anon_sym___cdecl] = ACTIONS(1295), + [anon_sym___clrcall] = ACTIONS(1295), + [anon_sym___stdcall] = ACTIONS(1295), + [anon_sym___fastcall] = ACTIONS(1295), + [anon_sym___thiscall] = ACTIONS(1295), + [anon_sym___vectorcall] = ACTIONS(1295), + [anon_sym_LBRACE] = ACTIONS(1297), + [anon_sym_signed] = ACTIONS(1295), + [anon_sym_unsigned] = ACTIONS(1295), + [anon_sym_long] = ACTIONS(1295), + [anon_sym_short] = ACTIONS(1295), + [anon_sym_static] = ACTIONS(1295), + [anon_sym_auto] = ACTIONS(1295), + [anon_sym_register] = ACTIONS(1295), + [anon_sym_inline] = ACTIONS(1295), + [anon_sym___inline] = ACTIONS(1295), + [anon_sym___inline__] = ACTIONS(1295), + [anon_sym___forceinline] = ACTIONS(1295), + [anon_sym_thread_local] = ACTIONS(1295), + [anon_sym___thread] = ACTIONS(1295), + [anon_sym_const] = ACTIONS(1295), + [anon_sym_constexpr] = ACTIONS(1295), + [anon_sym_volatile] = ACTIONS(1295), + [anon_sym_restrict] = ACTIONS(1295), + [anon_sym___restrict__] = ACTIONS(1295), + [anon_sym__Atomic] = ACTIONS(1295), + [anon_sym__Noreturn] = ACTIONS(1295), + [anon_sym_noreturn] = ACTIONS(1295), + [anon_sym_alignas] = ACTIONS(1295), + [anon_sym__Alignas] = ACTIONS(1295), + [sym_primitive_type] = ACTIONS(1295), + [anon_sym_enum] = ACTIONS(1295), + [anon_sym_struct] = ACTIONS(1295), + [anon_sym_union] = ACTIONS(1295), + [anon_sym_if] = ACTIONS(1295), + [anon_sym_switch] = ACTIONS(1295), + [anon_sym_case] = ACTIONS(1295), + [anon_sym_default] = ACTIONS(1295), + [anon_sym_while] = ACTIONS(1295), + [anon_sym_do] = ACTIONS(1295), + [anon_sym_for] = ACTIONS(1295), + [anon_sym_return] = ACTIONS(1295), + [anon_sym_break] = ACTIONS(1295), + [anon_sym_continue] = ACTIONS(1295), + [anon_sym_goto] = ACTIONS(1295), + [anon_sym_DASH_DASH] = ACTIONS(1297), + [anon_sym_PLUS_PLUS] = ACTIONS(1297), + [anon_sym_sizeof] = ACTIONS(1295), + [anon_sym___alignof__] = ACTIONS(1295), + [anon_sym___alignof] = ACTIONS(1295), + [anon_sym__alignof] = ACTIONS(1295), + [anon_sym_alignof] = ACTIONS(1295), + [anon_sym__Alignof] = ACTIONS(1295), + [anon_sym_offsetof] = ACTIONS(1295), + [anon_sym__Generic] = ACTIONS(1295), + [anon_sym_asm] = ACTIONS(1295), + [anon_sym___asm__] = ACTIONS(1295), + [sym_number_literal] = ACTIONS(1297), + [anon_sym_L_SQUOTE] = ACTIONS(1297), + [anon_sym_u_SQUOTE] = ACTIONS(1297), + [anon_sym_U_SQUOTE] = ACTIONS(1297), + [anon_sym_u8_SQUOTE] = ACTIONS(1297), + [anon_sym_SQUOTE] = ACTIONS(1297), + [anon_sym_L_DQUOTE] = ACTIONS(1297), + [anon_sym_u_DQUOTE] = ACTIONS(1297), + [anon_sym_U_DQUOTE] = ACTIONS(1297), + [anon_sym_u8_DQUOTE] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1297), + [sym_true] = ACTIONS(1295), + [sym_false] = ACTIONS(1295), + [anon_sym_NULL] = ACTIONS(1295), + [anon_sym_nullptr] = ACTIONS(1295), [sym_comment] = ACTIONS(3), }, - [423] = { - [ts_builtin_sym_end] = ACTIONS(1329), - [sym_identifier] = ACTIONS(1327), - [aux_sym_preproc_include_token1] = ACTIONS(1327), - [aux_sym_preproc_def_token1] = ACTIONS(1327), - [aux_sym_preproc_if_token1] = ACTIONS(1327), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1327), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1327), - [sym_preproc_directive] = ACTIONS(1327), - [anon_sym_LPAREN2] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_TILDE] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1327), - [anon_sym_STAR] = ACTIONS(1329), - [anon_sym_AMP] = ACTIONS(1329), - [anon_sym___extension__] = ACTIONS(1327), - [anon_sym_typedef] = ACTIONS(1327), - [anon_sym_extern] = ACTIONS(1327), - [anon_sym___attribute__] = ACTIONS(1327), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1329), - [anon_sym___declspec] = ACTIONS(1327), - [anon_sym___cdecl] = ACTIONS(1327), - [anon_sym___clrcall] = ACTIONS(1327), - [anon_sym___stdcall] = ACTIONS(1327), - [anon_sym___fastcall] = ACTIONS(1327), - [anon_sym___thiscall] = ACTIONS(1327), - [anon_sym___vectorcall] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(1329), - [anon_sym_signed] = ACTIONS(1327), - [anon_sym_unsigned] = ACTIONS(1327), - [anon_sym_long] = ACTIONS(1327), - [anon_sym_short] = ACTIONS(1327), - [anon_sym_static] = ACTIONS(1327), - [anon_sym_auto] = ACTIONS(1327), - [anon_sym_register] = ACTIONS(1327), - [anon_sym_inline] = ACTIONS(1327), - [anon_sym___inline] = ACTIONS(1327), - [anon_sym___inline__] = ACTIONS(1327), - [anon_sym___forceinline] = ACTIONS(1327), - [anon_sym_thread_local] = ACTIONS(1327), - [anon_sym___thread] = ACTIONS(1327), - [anon_sym_const] = ACTIONS(1327), - [anon_sym_constexpr] = ACTIONS(1327), - [anon_sym_volatile] = ACTIONS(1327), - [anon_sym_restrict] = ACTIONS(1327), - [anon_sym___restrict__] = ACTIONS(1327), - [anon_sym__Atomic] = ACTIONS(1327), - [anon_sym__Noreturn] = ACTIONS(1327), - [anon_sym_noreturn] = ACTIONS(1327), - [anon_sym_alignas] = ACTIONS(1327), - [anon_sym__Alignas] = ACTIONS(1327), - [sym_primitive_type] = ACTIONS(1327), - [anon_sym_enum] = ACTIONS(1327), - [anon_sym_struct] = ACTIONS(1327), - [anon_sym_union] = ACTIONS(1327), - [anon_sym_if] = ACTIONS(1327), - [anon_sym_switch] = ACTIONS(1327), - [anon_sym_case] = ACTIONS(1327), - [anon_sym_default] = ACTIONS(1327), - [anon_sym_while] = ACTIONS(1327), - [anon_sym_do] = ACTIONS(1327), - [anon_sym_for] = ACTIONS(1327), - [anon_sym_return] = ACTIONS(1327), - [anon_sym_break] = ACTIONS(1327), - [anon_sym_continue] = ACTIONS(1327), - [anon_sym_goto] = ACTIONS(1327), - [anon_sym_DASH_DASH] = ACTIONS(1329), - [anon_sym_PLUS_PLUS] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(1327), - [anon_sym___alignof__] = ACTIONS(1327), - [anon_sym___alignof] = ACTIONS(1327), - [anon_sym__alignof] = ACTIONS(1327), - [anon_sym_alignof] = ACTIONS(1327), - [anon_sym__Alignof] = ACTIONS(1327), - [anon_sym_offsetof] = ACTIONS(1327), - [anon_sym__Generic] = ACTIONS(1327), - [anon_sym_asm] = ACTIONS(1327), - [anon_sym___asm__] = ACTIONS(1327), - [sym_number_literal] = ACTIONS(1329), - [anon_sym_L_SQUOTE] = ACTIONS(1329), - [anon_sym_u_SQUOTE] = ACTIONS(1329), - [anon_sym_U_SQUOTE] = ACTIONS(1329), - [anon_sym_u8_SQUOTE] = ACTIONS(1329), - [anon_sym_SQUOTE] = ACTIONS(1329), - [anon_sym_L_DQUOTE] = ACTIONS(1329), - [anon_sym_u_DQUOTE] = ACTIONS(1329), - [anon_sym_U_DQUOTE] = ACTIONS(1329), - [anon_sym_u8_DQUOTE] = ACTIONS(1329), - [anon_sym_DQUOTE] = ACTIONS(1329), - [sym_true] = ACTIONS(1327), - [sym_false] = ACTIONS(1327), - [anon_sym_NULL] = ACTIONS(1327), - [anon_sym_nullptr] = ACTIONS(1327), + [376] = { + [ts_builtin_sym_end] = ACTIONS(1261), + [sym_identifier] = ACTIONS(1259), + [aux_sym_preproc_include_token1] = ACTIONS(1259), + [aux_sym_preproc_def_token1] = ACTIONS(1259), + [aux_sym_preproc_if_token1] = ACTIONS(1259), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1259), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1259), + [sym_preproc_directive] = ACTIONS(1259), + [anon_sym_LPAREN2] = ACTIONS(1261), + [anon_sym_BANG] = ACTIONS(1261), + [anon_sym_TILDE] = ACTIONS(1261), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1261), + [anon_sym_AMP] = ACTIONS(1261), + [anon_sym___extension__] = ACTIONS(1259), + [anon_sym_typedef] = ACTIONS(1259), + [anon_sym_extern] = ACTIONS(1259), + [anon_sym___attribute__] = ACTIONS(1259), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1261), + [anon_sym___declspec] = ACTIONS(1259), + [anon_sym___cdecl] = ACTIONS(1259), + [anon_sym___clrcall] = ACTIONS(1259), + [anon_sym___stdcall] = ACTIONS(1259), + [anon_sym___fastcall] = ACTIONS(1259), + [anon_sym___thiscall] = ACTIONS(1259), + [anon_sym___vectorcall] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_signed] = ACTIONS(1259), + [anon_sym_unsigned] = ACTIONS(1259), + [anon_sym_long] = ACTIONS(1259), + [anon_sym_short] = ACTIONS(1259), + [anon_sym_static] = ACTIONS(1259), + [anon_sym_auto] = ACTIONS(1259), + [anon_sym_register] = ACTIONS(1259), + [anon_sym_inline] = ACTIONS(1259), + [anon_sym___inline] = ACTIONS(1259), + [anon_sym___inline__] = ACTIONS(1259), + [anon_sym___forceinline] = ACTIONS(1259), + [anon_sym_thread_local] = ACTIONS(1259), + [anon_sym___thread] = ACTIONS(1259), + [anon_sym_const] = ACTIONS(1259), + [anon_sym_constexpr] = ACTIONS(1259), + [anon_sym_volatile] = ACTIONS(1259), + [anon_sym_restrict] = ACTIONS(1259), + [anon_sym___restrict__] = ACTIONS(1259), + [anon_sym__Atomic] = ACTIONS(1259), + [anon_sym__Noreturn] = ACTIONS(1259), + [anon_sym_noreturn] = ACTIONS(1259), + [anon_sym_alignas] = ACTIONS(1259), + [anon_sym__Alignas] = ACTIONS(1259), + [sym_primitive_type] = ACTIONS(1259), + [anon_sym_enum] = ACTIONS(1259), + [anon_sym_struct] = ACTIONS(1259), + [anon_sym_union] = ACTIONS(1259), + [anon_sym_if] = ACTIONS(1259), + [anon_sym_switch] = ACTIONS(1259), + [anon_sym_case] = ACTIONS(1259), + [anon_sym_default] = ACTIONS(1259), + [anon_sym_while] = ACTIONS(1259), + [anon_sym_do] = ACTIONS(1259), + [anon_sym_for] = ACTIONS(1259), + [anon_sym_return] = ACTIONS(1259), + [anon_sym_break] = ACTIONS(1259), + [anon_sym_continue] = ACTIONS(1259), + [anon_sym_goto] = ACTIONS(1259), + [anon_sym_DASH_DASH] = ACTIONS(1261), + [anon_sym_PLUS_PLUS] = ACTIONS(1261), + [anon_sym_sizeof] = ACTIONS(1259), + [anon_sym___alignof__] = ACTIONS(1259), + [anon_sym___alignof] = ACTIONS(1259), + [anon_sym__alignof] = ACTIONS(1259), + [anon_sym_alignof] = ACTIONS(1259), + [anon_sym__Alignof] = ACTIONS(1259), + [anon_sym_offsetof] = ACTIONS(1259), + [anon_sym__Generic] = ACTIONS(1259), + [anon_sym_asm] = ACTIONS(1259), + [anon_sym___asm__] = ACTIONS(1259), + [sym_number_literal] = ACTIONS(1261), + [anon_sym_L_SQUOTE] = ACTIONS(1261), + [anon_sym_u_SQUOTE] = ACTIONS(1261), + [anon_sym_U_SQUOTE] = ACTIONS(1261), + [anon_sym_u8_SQUOTE] = ACTIONS(1261), + [anon_sym_SQUOTE] = ACTIONS(1261), + [anon_sym_L_DQUOTE] = ACTIONS(1261), + [anon_sym_u_DQUOTE] = ACTIONS(1261), + [anon_sym_U_DQUOTE] = ACTIONS(1261), + [anon_sym_u8_DQUOTE] = ACTIONS(1261), + [anon_sym_DQUOTE] = ACTIONS(1261), + [sym_true] = ACTIONS(1259), + [sym_false] = ACTIONS(1259), + [anon_sym_NULL] = ACTIONS(1259), + [anon_sym_nullptr] = ACTIONS(1259), [sym_comment] = ACTIONS(3), }, - [424] = { - [ts_builtin_sym_end] = ACTIONS(1281), - [sym_identifier] = ACTIONS(1279), - [aux_sym_preproc_include_token1] = ACTIONS(1279), - [aux_sym_preproc_def_token1] = ACTIONS(1279), - [aux_sym_preproc_if_token1] = ACTIONS(1279), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1279), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1279), - [sym_preproc_directive] = ACTIONS(1279), - [anon_sym_LPAREN2] = ACTIONS(1281), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_STAR] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym___extension__] = ACTIONS(1279), - [anon_sym_typedef] = ACTIONS(1279), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym___attribute__] = ACTIONS(1279), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1281), - [anon_sym___declspec] = ACTIONS(1279), - [anon_sym___cdecl] = ACTIONS(1279), - [anon_sym___clrcall] = ACTIONS(1279), - [anon_sym___stdcall] = ACTIONS(1279), - [anon_sym___fastcall] = ACTIONS(1279), - [anon_sym___thiscall] = ACTIONS(1279), - [anon_sym___vectorcall] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_signed] = ACTIONS(1279), - [anon_sym_unsigned] = ACTIONS(1279), - [anon_sym_long] = ACTIONS(1279), - [anon_sym_short] = ACTIONS(1279), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_auto] = ACTIONS(1279), - [anon_sym_register] = ACTIONS(1279), - [anon_sym_inline] = ACTIONS(1279), - [anon_sym___inline] = ACTIONS(1279), - [anon_sym___inline__] = ACTIONS(1279), - [anon_sym___forceinline] = ACTIONS(1279), - [anon_sym_thread_local] = ACTIONS(1279), - [anon_sym___thread] = ACTIONS(1279), - [anon_sym_const] = ACTIONS(1279), - [anon_sym_constexpr] = ACTIONS(1279), - [anon_sym_volatile] = ACTIONS(1279), - [anon_sym_restrict] = ACTIONS(1279), - [anon_sym___restrict__] = ACTIONS(1279), - [anon_sym__Atomic] = ACTIONS(1279), - [anon_sym__Noreturn] = ACTIONS(1279), - [anon_sym_noreturn] = ACTIONS(1279), - [anon_sym_alignas] = ACTIONS(1279), - [anon_sym__Alignas] = ACTIONS(1279), - [sym_primitive_type] = ACTIONS(1279), - [anon_sym_enum] = ACTIONS(1279), - [anon_sym_struct] = ACTIONS(1279), - [anon_sym_union] = ACTIONS(1279), - [anon_sym_if] = ACTIONS(1279), - [anon_sym_switch] = ACTIONS(1279), - [anon_sym_case] = ACTIONS(1279), - [anon_sym_default] = ACTIONS(1279), - [anon_sym_while] = ACTIONS(1279), - [anon_sym_do] = ACTIONS(1279), - [anon_sym_for] = ACTIONS(1279), - [anon_sym_return] = ACTIONS(1279), - [anon_sym_break] = ACTIONS(1279), - [anon_sym_continue] = ACTIONS(1279), - [anon_sym_goto] = ACTIONS(1279), - [anon_sym_DASH_DASH] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym___alignof__] = ACTIONS(1279), - [anon_sym___alignof] = ACTIONS(1279), - [anon_sym__alignof] = ACTIONS(1279), - [anon_sym_alignof] = ACTIONS(1279), - [anon_sym__Alignof] = ACTIONS(1279), - [anon_sym_offsetof] = ACTIONS(1279), - [anon_sym__Generic] = ACTIONS(1279), - [anon_sym_asm] = ACTIONS(1279), - [anon_sym___asm__] = ACTIONS(1279), - [sym_number_literal] = ACTIONS(1281), - [anon_sym_L_SQUOTE] = ACTIONS(1281), - [anon_sym_u_SQUOTE] = ACTIONS(1281), - [anon_sym_U_SQUOTE] = ACTIONS(1281), - [anon_sym_u8_SQUOTE] = ACTIONS(1281), - [anon_sym_SQUOTE] = ACTIONS(1281), - [anon_sym_L_DQUOTE] = ACTIONS(1281), - [anon_sym_u_DQUOTE] = ACTIONS(1281), - [anon_sym_U_DQUOTE] = ACTIONS(1281), - [anon_sym_u8_DQUOTE] = ACTIONS(1281), - [anon_sym_DQUOTE] = ACTIONS(1281), - [sym_true] = ACTIONS(1279), - [sym_false] = ACTIONS(1279), - [anon_sym_NULL] = ACTIONS(1279), - [anon_sym_nullptr] = ACTIONS(1279), + [377] = { + [ts_builtin_sym_end] = ACTIONS(1301), + [sym_identifier] = ACTIONS(1299), + [aux_sym_preproc_include_token1] = ACTIONS(1299), + [aux_sym_preproc_def_token1] = ACTIONS(1299), + [aux_sym_preproc_if_token1] = ACTIONS(1299), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1299), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1299), + [sym_preproc_directive] = ACTIONS(1299), + [anon_sym_LPAREN2] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_TILDE] = ACTIONS(1301), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1301), + [anon_sym___extension__] = ACTIONS(1299), + [anon_sym_typedef] = ACTIONS(1299), + [anon_sym_extern] = ACTIONS(1299), + [anon_sym___attribute__] = ACTIONS(1299), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1301), + [anon_sym___declspec] = ACTIONS(1299), + [anon_sym___cdecl] = ACTIONS(1299), + [anon_sym___clrcall] = ACTIONS(1299), + [anon_sym___stdcall] = ACTIONS(1299), + [anon_sym___fastcall] = ACTIONS(1299), + [anon_sym___thiscall] = ACTIONS(1299), + [anon_sym___vectorcall] = ACTIONS(1299), + [anon_sym_LBRACE] = ACTIONS(1301), + [anon_sym_signed] = ACTIONS(1299), + [anon_sym_unsigned] = ACTIONS(1299), + [anon_sym_long] = ACTIONS(1299), + [anon_sym_short] = ACTIONS(1299), + [anon_sym_static] = ACTIONS(1299), + [anon_sym_auto] = ACTIONS(1299), + [anon_sym_register] = ACTIONS(1299), + [anon_sym_inline] = ACTIONS(1299), + [anon_sym___inline] = ACTIONS(1299), + [anon_sym___inline__] = ACTIONS(1299), + [anon_sym___forceinline] = ACTIONS(1299), + [anon_sym_thread_local] = ACTIONS(1299), + [anon_sym___thread] = ACTIONS(1299), + [anon_sym_const] = ACTIONS(1299), + [anon_sym_constexpr] = ACTIONS(1299), + [anon_sym_volatile] = ACTIONS(1299), + [anon_sym_restrict] = ACTIONS(1299), + [anon_sym___restrict__] = ACTIONS(1299), + [anon_sym__Atomic] = ACTIONS(1299), + [anon_sym__Noreturn] = ACTIONS(1299), + [anon_sym_noreturn] = ACTIONS(1299), + [anon_sym_alignas] = ACTIONS(1299), + [anon_sym__Alignas] = ACTIONS(1299), + [sym_primitive_type] = ACTIONS(1299), + [anon_sym_enum] = ACTIONS(1299), + [anon_sym_struct] = ACTIONS(1299), + [anon_sym_union] = ACTIONS(1299), + [anon_sym_if] = ACTIONS(1299), + [anon_sym_switch] = ACTIONS(1299), + [anon_sym_case] = ACTIONS(1299), + [anon_sym_default] = ACTIONS(1299), + [anon_sym_while] = ACTIONS(1299), + [anon_sym_do] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1299), + [anon_sym_return] = ACTIONS(1299), + [anon_sym_break] = ACTIONS(1299), + [anon_sym_continue] = ACTIONS(1299), + [anon_sym_goto] = ACTIONS(1299), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_sizeof] = ACTIONS(1299), + [anon_sym___alignof__] = ACTIONS(1299), + [anon_sym___alignof] = ACTIONS(1299), + [anon_sym__alignof] = ACTIONS(1299), + [anon_sym_alignof] = ACTIONS(1299), + [anon_sym__Alignof] = ACTIONS(1299), + [anon_sym_offsetof] = ACTIONS(1299), + [anon_sym__Generic] = ACTIONS(1299), + [anon_sym_asm] = ACTIONS(1299), + [anon_sym___asm__] = ACTIONS(1299), + [sym_number_literal] = ACTIONS(1301), + [anon_sym_L_SQUOTE] = ACTIONS(1301), + [anon_sym_u_SQUOTE] = ACTIONS(1301), + [anon_sym_U_SQUOTE] = ACTIONS(1301), + [anon_sym_u8_SQUOTE] = ACTIONS(1301), + [anon_sym_SQUOTE] = ACTIONS(1301), + [anon_sym_L_DQUOTE] = ACTIONS(1301), + [anon_sym_u_DQUOTE] = ACTIONS(1301), + [anon_sym_U_DQUOTE] = ACTIONS(1301), + [anon_sym_u8_DQUOTE] = ACTIONS(1301), + [anon_sym_DQUOTE] = ACTIONS(1301), + [sym_true] = ACTIONS(1299), + [sym_false] = ACTIONS(1299), + [anon_sym_NULL] = ACTIONS(1299), + [anon_sym_nullptr] = ACTIONS(1299), [sym_comment] = ACTIONS(3), }, - [425] = { - [ts_builtin_sym_end] = ACTIONS(1289), - [sym_identifier] = ACTIONS(1287), - [aux_sym_preproc_include_token1] = ACTIONS(1287), - [aux_sym_preproc_def_token1] = ACTIONS(1287), - [aux_sym_preproc_if_token1] = ACTIONS(1287), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1287), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1287), - [sym_preproc_directive] = ACTIONS(1287), - [anon_sym_LPAREN2] = ACTIONS(1289), - [anon_sym_BANG] = ACTIONS(1289), - [anon_sym_TILDE] = ACTIONS(1289), - [anon_sym_DASH] = ACTIONS(1287), - [anon_sym_PLUS] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_AMP] = ACTIONS(1289), - [anon_sym___extension__] = ACTIONS(1287), - [anon_sym_typedef] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1287), - [anon_sym___attribute__] = ACTIONS(1287), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1289), - [anon_sym___declspec] = ACTIONS(1287), - [anon_sym___cdecl] = ACTIONS(1287), - [anon_sym___clrcall] = ACTIONS(1287), - [anon_sym___stdcall] = ACTIONS(1287), - [anon_sym___fastcall] = ACTIONS(1287), - [anon_sym___thiscall] = ACTIONS(1287), - [anon_sym___vectorcall] = ACTIONS(1287), - [anon_sym_LBRACE] = ACTIONS(1289), - [anon_sym_signed] = ACTIONS(1287), - [anon_sym_unsigned] = ACTIONS(1287), - [anon_sym_long] = ACTIONS(1287), - [anon_sym_short] = ACTIONS(1287), - [anon_sym_static] = ACTIONS(1287), - [anon_sym_auto] = ACTIONS(1287), - [anon_sym_register] = ACTIONS(1287), - [anon_sym_inline] = ACTIONS(1287), - [anon_sym___inline] = ACTIONS(1287), - [anon_sym___inline__] = ACTIONS(1287), - [anon_sym___forceinline] = ACTIONS(1287), - [anon_sym_thread_local] = ACTIONS(1287), - [anon_sym___thread] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), - [anon_sym_constexpr] = ACTIONS(1287), - [anon_sym_volatile] = ACTIONS(1287), - [anon_sym_restrict] = ACTIONS(1287), - [anon_sym___restrict__] = ACTIONS(1287), - [anon_sym__Atomic] = ACTIONS(1287), - [anon_sym__Noreturn] = ACTIONS(1287), - [anon_sym_noreturn] = ACTIONS(1287), - [anon_sym_alignas] = ACTIONS(1287), - [anon_sym__Alignas] = ACTIONS(1287), - [sym_primitive_type] = ACTIONS(1287), - [anon_sym_enum] = ACTIONS(1287), - [anon_sym_struct] = ACTIONS(1287), - [anon_sym_union] = ACTIONS(1287), - [anon_sym_if] = ACTIONS(1287), - [anon_sym_switch] = ACTIONS(1287), - [anon_sym_case] = ACTIONS(1287), - [anon_sym_default] = ACTIONS(1287), - [anon_sym_while] = ACTIONS(1287), - [anon_sym_do] = ACTIONS(1287), - [anon_sym_for] = ACTIONS(1287), - [anon_sym_return] = ACTIONS(1287), - [anon_sym_break] = ACTIONS(1287), - [anon_sym_continue] = ACTIONS(1287), - [anon_sym_goto] = ACTIONS(1287), - [anon_sym_DASH_DASH] = ACTIONS(1289), - [anon_sym_PLUS_PLUS] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1287), - [anon_sym___alignof__] = ACTIONS(1287), - [anon_sym___alignof] = ACTIONS(1287), - [anon_sym__alignof] = ACTIONS(1287), - [anon_sym_alignof] = ACTIONS(1287), - [anon_sym__Alignof] = ACTIONS(1287), - [anon_sym_offsetof] = ACTIONS(1287), - [anon_sym__Generic] = ACTIONS(1287), - [anon_sym_asm] = ACTIONS(1287), - [anon_sym___asm__] = ACTIONS(1287), - [sym_number_literal] = ACTIONS(1289), - [anon_sym_L_SQUOTE] = ACTIONS(1289), - [anon_sym_u_SQUOTE] = ACTIONS(1289), - [anon_sym_U_SQUOTE] = ACTIONS(1289), - [anon_sym_u8_SQUOTE] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1289), - [anon_sym_L_DQUOTE] = ACTIONS(1289), - [anon_sym_u_DQUOTE] = ACTIONS(1289), - [anon_sym_U_DQUOTE] = ACTIONS(1289), - [anon_sym_u8_DQUOTE] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1289), - [sym_true] = ACTIONS(1287), - [sym_false] = ACTIONS(1287), - [anon_sym_NULL] = ACTIONS(1287), - [anon_sym_nullptr] = ACTIONS(1287), + [378] = { + [ts_builtin_sym_end] = ACTIONS(1317), + [sym_identifier] = ACTIONS(1315), + [aux_sym_preproc_include_token1] = ACTIONS(1315), + [aux_sym_preproc_def_token1] = ACTIONS(1315), + [aux_sym_preproc_if_token1] = ACTIONS(1315), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1315), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1315), + [sym_preproc_directive] = ACTIONS(1315), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_DASH] = ACTIONS(1315), + [anon_sym_PLUS] = ACTIONS(1315), + [anon_sym_STAR] = ACTIONS(1317), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym___extension__] = ACTIONS(1315), + [anon_sym_typedef] = ACTIONS(1315), + [anon_sym_extern] = ACTIONS(1315), + [anon_sym___attribute__] = ACTIONS(1315), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1317), + [anon_sym___declspec] = ACTIONS(1315), + [anon_sym___cdecl] = ACTIONS(1315), + [anon_sym___clrcall] = ACTIONS(1315), + [anon_sym___stdcall] = ACTIONS(1315), + [anon_sym___fastcall] = ACTIONS(1315), + [anon_sym___thiscall] = ACTIONS(1315), + [anon_sym___vectorcall] = ACTIONS(1315), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_signed] = ACTIONS(1315), + [anon_sym_unsigned] = ACTIONS(1315), + [anon_sym_long] = ACTIONS(1315), + [anon_sym_short] = ACTIONS(1315), + [anon_sym_static] = ACTIONS(1315), + [anon_sym_auto] = ACTIONS(1315), + [anon_sym_register] = ACTIONS(1315), + [anon_sym_inline] = ACTIONS(1315), + [anon_sym___inline] = ACTIONS(1315), + [anon_sym___inline__] = ACTIONS(1315), + [anon_sym___forceinline] = ACTIONS(1315), + [anon_sym_thread_local] = ACTIONS(1315), + [anon_sym___thread] = ACTIONS(1315), + [anon_sym_const] = ACTIONS(1315), + [anon_sym_constexpr] = ACTIONS(1315), + [anon_sym_volatile] = ACTIONS(1315), + [anon_sym_restrict] = ACTIONS(1315), + [anon_sym___restrict__] = ACTIONS(1315), + [anon_sym__Atomic] = ACTIONS(1315), + [anon_sym__Noreturn] = ACTIONS(1315), + [anon_sym_noreturn] = ACTIONS(1315), + [anon_sym_alignas] = ACTIONS(1315), + [anon_sym__Alignas] = ACTIONS(1315), + [sym_primitive_type] = ACTIONS(1315), + [anon_sym_enum] = ACTIONS(1315), + [anon_sym_struct] = ACTIONS(1315), + [anon_sym_union] = ACTIONS(1315), + [anon_sym_if] = ACTIONS(1315), + [anon_sym_switch] = ACTIONS(1315), + [anon_sym_case] = ACTIONS(1315), + [anon_sym_default] = ACTIONS(1315), + [anon_sym_while] = ACTIONS(1315), + [anon_sym_do] = ACTIONS(1315), + [anon_sym_for] = ACTIONS(1315), + [anon_sym_return] = ACTIONS(1315), + [anon_sym_break] = ACTIONS(1315), + [anon_sym_continue] = ACTIONS(1315), + [anon_sym_goto] = ACTIONS(1315), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_sizeof] = ACTIONS(1315), + [anon_sym___alignof__] = ACTIONS(1315), + [anon_sym___alignof] = ACTIONS(1315), + [anon_sym__alignof] = ACTIONS(1315), + [anon_sym_alignof] = ACTIONS(1315), + [anon_sym__Alignof] = ACTIONS(1315), + [anon_sym_offsetof] = ACTIONS(1315), + [anon_sym__Generic] = ACTIONS(1315), + [anon_sym_asm] = ACTIONS(1315), + [anon_sym___asm__] = ACTIONS(1315), + [sym_number_literal] = ACTIONS(1317), + [anon_sym_L_SQUOTE] = ACTIONS(1317), + [anon_sym_u_SQUOTE] = ACTIONS(1317), + [anon_sym_U_SQUOTE] = ACTIONS(1317), + [anon_sym_u8_SQUOTE] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(1317), + [anon_sym_L_DQUOTE] = ACTIONS(1317), + [anon_sym_u_DQUOTE] = ACTIONS(1317), + [anon_sym_U_DQUOTE] = ACTIONS(1317), + [anon_sym_u8_DQUOTE] = ACTIONS(1317), + [anon_sym_DQUOTE] = ACTIONS(1317), + [sym_true] = ACTIONS(1315), + [sym_false] = ACTIONS(1315), + [anon_sym_NULL] = ACTIONS(1315), + [anon_sym_nullptr] = ACTIONS(1315), [sym_comment] = ACTIONS(3), }, - [426] = { - [ts_builtin_sym_end] = ACTIONS(1285), - [sym_identifier] = ACTIONS(1283), - [aux_sym_preproc_include_token1] = ACTIONS(1283), - [aux_sym_preproc_def_token1] = ACTIONS(1283), - [aux_sym_preproc_if_token1] = ACTIONS(1283), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1283), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1283), - [sym_preproc_directive] = ACTIONS(1283), - [anon_sym_LPAREN2] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1285), - [anon_sym___extension__] = ACTIONS(1283), - [anon_sym_typedef] = ACTIONS(1283), - [anon_sym_extern] = ACTIONS(1283), - [anon_sym___attribute__] = ACTIONS(1283), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1285), - [anon_sym___declspec] = ACTIONS(1283), - [anon_sym___cdecl] = ACTIONS(1283), - [anon_sym___clrcall] = ACTIONS(1283), - [anon_sym___stdcall] = ACTIONS(1283), - [anon_sym___fastcall] = ACTIONS(1283), - [anon_sym___thiscall] = ACTIONS(1283), - [anon_sym___vectorcall] = ACTIONS(1283), - [anon_sym_LBRACE] = ACTIONS(1285), - [anon_sym_signed] = ACTIONS(1283), - [anon_sym_unsigned] = ACTIONS(1283), - [anon_sym_long] = ACTIONS(1283), - [anon_sym_short] = ACTIONS(1283), - [anon_sym_static] = ACTIONS(1283), - [anon_sym_auto] = ACTIONS(1283), - [anon_sym_register] = ACTIONS(1283), - [anon_sym_inline] = ACTIONS(1283), - [anon_sym___inline] = ACTIONS(1283), - [anon_sym___inline__] = ACTIONS(1283), - [anon_sym___forceinline] = ACTIONS(1283), - [anon_sym_thread_local] = ACTIONS(1283), - [anon_sym___thread] = ACTIONS(1283), - [anon_sym_const] = ACTIONS(1283), - [anon_sym_constexpr] = ACTIONS(1283), - [anon_sym_volatile] = ACTIONS(1283), - [anon_sym_restrict] = ACTIONS(1283), - [anon_sym___restrict__] = ACTIONS(1283), - [anon_sym__Atomic] = ACTIONS(1283), - [anon_sym__Noreturn] = ACTIONS(1283), - [anon_sym_noreturn] = ACTIONS(1283), - [anon_sym_alignas] = ACTIONS(1283), - [anon_sym__Alignas] = ACTIONS(1283), - [sym_primitive_type] = ACTIONS(1283), - [anon_sym_enum] = ACTIONS(1283), - [anon_sym_struct] = ACTIONS(1283), - [anon_sym_union] = ACTIONS(1283), - [anon_sym_if] = ACTIONS(1283), - [anon_sym_switch] = ACTIONS(1283), - [anon_sym_case] = ACTIONS(1283), - [anon_sym_default] = ACTIONS(1283), - [anon_sym_while] = ACTIONS(1283), - [anon_sym_do] = ACTIONS(1283), - [anon_sym_for] = ACTIONS(1283), - [anon_sym_return] = ACTIONS(1283), - [anon_sym_break] = ACTIONS(1283), - [anon_sym_continue] = ACTIONS(1283), - [anon_sym_goto] = ACTIONS(1283), - [anon_sym_DASH_DASH] = ACTIONS(1285), - [anon_sym_PLUS_PLUS] = ACTIONS(1285), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym___alignof__] = ACTIONS(1283), - [anon_sym___alignof] = ACTIONS(1283), - [anon_sym__alignof] = ACTIONS(1283), - [anon_sym_alignof] = ACTIONS(1283), - [anon_sym__Alignof] = ACTIONS(1283), - [anon_sym_offsetof] = ACTIONS(1283), - [anon_sym__Generic] = ACTIONS(1283), - [anon_sym_asm] = ACTIONS(1283), - [anon_sym___asm__] = ACTIONS(1283), - [sym_number_literal] = ACTIONS(1285), - [anon_sym_L_SQUOTE] = ACTIONS(1285), - [anon_sym_u_SQUOTE] = ACTIONS(1285), - [anon_sym_U_SQUOTE] = ACTIONS(1285), - [anon_sym_u8_SQUOTE] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_L_DQUOTE] = ACTIONS(1285), - [anon_sym_u_DQUOTE] = ACTIONS(1285), - [anon_sym_U_DQUOTE] = ACTIONS(1285), - [anon_sym_u8_DQUOTE] = ACTIONS(1285), - [anon_sym_DQUOTE] = ACTIONS(1285), - [sym_true] = ACTIONS(1283), - [sym_false] = ACTIONS(1283), - [anon_sym_NULL] = ACTIONS(1283), - [anon_sym_nullptr] = ACTIONS(1283), + [379] = { + [ts_builtin_sym_end] = ACTIONS(1277), + [sym_identifier] = ACTIONS(1275), + [aux_sym_preproc_include_token1] = ACTIONS(1275), + [aux_sym_preproc_def_token1] = ACTIONS(1275), + [aux_sym_preproc_if_token1] = ACTIONS(1275), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1275), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1275), + [sym_preproc_directive] = ACTIONS(1275), + [anon_sym_LPAREN2] = ACTIONS(1277), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_TILDE] = ACTIONS(1277), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_PLUS] = ACTIONS(1275), + [anon_sym_STAR] = ACTIONS(1277), + [anon_sym_AMP] = ACTIONS(1277), + [anon_sym___extension__] = ACTIONS(1275), + [anon_sym_typedef] = ACTIONS(1275), + [anon_sym_extern] = ACTIONS(1275), + [anon_sym___attribute__] = ACTIONS(1275), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1277), + [anon_sym___declspec] = ACTIONS(1275), + [anon_sym___cdecl] = ACTIONS(1275), + [anon_sym___clrcall] = ACTIONS(1275), + [anon_sym___stdcall] = ACTIONS(1275), + [anon_sym___fastcall] = ACTIONS(1275), + [anon_sym___thiscall] = ACTIONS(1275), + [anon_sym___vectorcall] = ACTIONS(1275), + [anon_sym_LBRACE] = ACTIONS(1277), + [anon_sym_signed] = ACTIONS(1275), + [anon_sym_unsigned] = ACTIONS(1275), + [anon_sym_long] = ACTIONS(1275), + [anon_sym_short] = ACTIONS(1275), + [anon_sym_static] = ACTIONS(1275), + [anon_sym_auto] = ACTIONS(1275), + [anon_sym_register] = ACTIONS(1275), + [anon_sym_inline] = ACTIONS(1275), + [anon_sym___inline] = ACTIONS(1275), + [anon_sym___inline__] = ACTIONS(1275), + [anon_sym___forceinline] = ACTIONS(1275), + [anon_sym_thread_local] = ACTIONS(1275), + [anon_sym___thread] = ACTIONS(1275), + [anon_sym_const] = ACTIONS(1275), + [anon_sym_constexpr] = ACTIONS(1275), + [anon_sym_volatile] = ACTIONS(1275), + [anon_sym_restrict] = ACTIONS(1275), + [anon_sym___restrict__] = ACTIONS(1275), + [anon_sym__Atomic] = ACTIONS(1275), + [anon_sym__Noreturn] = ACTIONS(1275), + [anon_sym_noreturn] = ACTIONS(1275), + [anon_sym_alignas] = ACTIONS(1275), + [anon_sym__Alignas] = ACTIONS(1275), + [sym_primitive_type] = ACTIONS(1275), + [anon_sym_enum] = ACTIONS(1275), + [anon_sym_struct] = ACTIONS(1275), + [anon_sym_union] = ACTIONS(1275), + [anon_sym_if] = ACTIONS(1275), + [anon_sym_switch] = ACTIONS(1275), + [anon_sym_case] = ACTIONS(1275), + [anon_sym_default] = ACTIONS(1275), + [anon_sym_while] = ACTIONS(1275), + [anon_sym_do] = ACTIONS(1275), + [anon_sym_for] = ACTIONS(1275), + [anon_sym_return] = ACTIONS(1275), + [anon_sym_break] = ACTIONS(1275), + [anon_sym_continue] = ACTIONS(1275), + [anon_sym_goto] = ACTIONS(1275), + [anon_sym_DASH_DASH] = ACTIONS(1277), + [anon_sym_PLUS_PLUS] = ACTIONS(1277), + [anon_sym_sizeof] = ACTIONS(1275), + [anon_sym___alignof__] = ACTIONS(1275), + [anon_sym___alignof] = ACTIONS(1275), + [anon_sym__alignof] = ACTIONS(1275), + [anon_sym_alignof] = ACTIONS(1275), + [anon_sym__Alignof] = ACTIONS(1275), + [anon_sym_offsetof] = ACTIONS(1275), + [anon_sym__Generic] = ACTIONS(1275), + [anon_sym_asm] = ACTIONS(1275), + [anon_sym___asm__] = ACTIONS(1275), + [sym_number_literal] = ACTIONS(1277), + [anon_sym_L_SQUOTE] = ACTIONS(1277), + [anon_sym_u_SQUOTE] = ACTIONS(1277), + [anon_sym_U_SQUOTE] = ACTIONS(1277), + [anon_sym_u8_SQUOTE] = ACTIONS(1277), + [anon_sym_SQUOTE] = ACTIONS(1277), + [anon_sym_L_DQUOTE] = ACTIONS(1277), + [anon_sym_u_DQUOTE] = ACTIONS(1277), + [anon_sym_U_DQUOTE] = ACTIONS(1277), + [anon_sym_u8_DQUOTE] = ACTIONS(1277), + [anon_sym_DQUOTE] = ACTIONS(1277), + [sym_true] = ACTIONS(1275), + [sym_false] = ACTIONS(1275), + [anon_sym_NULL] = ACTIONS(1275), + [anon_sym_nullptr] = ACTIONS(1275), [sym_comment] = ACTIONS(3), }, - [427] = { - [ts_builtin_sym_end] = ACTIONS(1325), - [sym_identifier] = ACTIONS(1323), - [aux_sym_preproc_include_token1] = ACTIONS(1323), - [aux_sym_preproc_def_token1] = ACTIONS(1323), - [aux_sym_preproc_if_token1] = ACTIONS(1323), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1323), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1323), - [sym_preproc_directive] = ACTIONS(1323), - [anon_sym_LPAREN2] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1325), - [anon_sym_TILDE] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1323), - [anon_sym_PLUS] = ACTIONS(1323), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_AMP] = ACTIONS(1325), - [anon_sym___extension__] = ACTIONS(1323), - [anon_sym_typedef] = ACTIONS(1323), - [anon_sym_extern] = ACTIONS(1323), - [anon_sym___attribute__] = ACTIONS(1323), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), - [anon_sym___declspec] = ACTIONS(1323), - [anon_sym___cdecl] = ACTIONS(1323), - [anon_sym___clrcall] = ACTIONS(1323), - [anon_sym___stdcall] = ACTIONS(1323), - [anon_sym___fastcall] = ACTIONS(1323), - [anon_sym___thiscall] = ACTIONS(1323), - [anon_sym___vectorcall] = ACTIONS(1323), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_signed] = ACTIONS(1323), - [anon_sym_unsigned] = ACTIONS(1323), - [anon_sym_long] = ACTIONS(1323), - [anon_sym_short] = ACTIONS(1323), - [anon_sym_static] = ACTIONS(1323), - [anon_sym_auto] = ACTIONS(1323), - [anon_sym_register] = ACTIONS(1323), - [anon_sym_inline] = ACTIONS(1323), - [anon_sym___inline] = ACTIONS(1323), - [anon_sym___inline__] = ACTIONS(1323), - [anon_sym___forceinline] = ACTIONS(1323), - [anon_sym_thread_local] = ACTIONS(1323), - [anon_sym___thread] = ACTIONS(1323), - [anon_sym_const] = ACTIONS(1323), - [anon_sym_constexpr] = ACTIONS(1323), - [anon_sym_volatile] = ACTIONS(1323), - [anon_sym_restrict] = ACTIONS(1323), - [anon_sym___restrict__] = ACTIONS(1323), - [anon_sym__Atomic] = ACTIONS(1323), - [anon_sym__Noreturn] = ACTIONS(1323), - [anon_sym_noreturn] = ACTIONS(1323), - [anon_sym_alignas] = ACTIONS(1323), - [anon_sym__Alignas] = ACTIONS(1323), - [sym_primitive_type] = ACTIONS(1323), - [anon_sym_enum] = ACTIONS(1323), - [anon_sym_struct] = ACTIONS(1323), - [anon_sym_union] = ACTIONS(1323), - [anon_sym_if] = ACTIONS(1323), - [anon_sym_switch] = ACTIONS(1323), - [anon_sym_case] = ACTIONS(1323), - [anon_sym_default] = ACTIONS(1323), - [anon_sym_while] = ACTIONS(1323), - [anon_sym_do] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1323), - [anon_sym_return] = ACTIONS(1323), - [anon_sym_break] = ACTIONS(1323), - [anon_sym_continue] = ACTIONS(1323), - [anon_sym_goto] = ACTIONS(1323), - [anon_sym_DASH_DASH] = ACTIONS(1325), - [anon_sym_PLUS_PLUS] = ACTIONS(1325), - [anon_sym_sizeof] = ACTIONS(1323), - [anon_sym___alignof__] = ACTIONS(1323), - [anon_sym___alignof] = ACTIONS(1323), - [anon_sym__alignof] = ACTIONS(1323), - [anon_sym_alignof] = ACTIONS(1323), - [anon_sym__Alignof] = ACTIONS(1323), - [anon_sym_offsetof] = ACTIONS(1323), - [anon_sym__Generic] = ACTIONS(1323), - [anon_sym_asm] = ACTIONS(1323), - [anon_sym___asm__] = ACTIONS(1323), - [sym_number_literal] = ACTIONS(1325), - [anon_sym_L_SQUOTE] = ACTIONS(1325), - [anon_sym_u_SQUOTE] = ACTIONS(1325), - [anon_sym_U_SQUOTE] = ACTIONS(1325), - [anon_sym_u8_SQUOTE] = ACTIONS(1325), - [anon_sym_SQUOTE] = ACTIONS(1325), - [anon_sym_L_DQUOTE] = ACTIONS(1325), - [anon_sym_u_DQUOTE] = ACTIONS(1325), - [anon_sym_U_DQUOTE] = ACTIONS(1325), - [anon_sym_u8_DQUOTE] = ACTIONS(1325), - [anon_sym_DQUOTE] = ACTIONS(1325), - [sym_true] = ACTIONS(1323), - [sym_false] = ACTIONS(1323), - [anon_sym_NULL] = ACTIONS(1323), - [anon_sym_nullptr] = ACTIONS(1323), + [380] = { + [ts_builtin_sym_end] = ACTIONS(1680), + [sym_identifier] = ACTIONS(1683), + [aux_sym_preproc_include_token1] = ACTIONS(1683), + [aux_sym_preproc_def_token1] = ACTIONS(1683), + [aux_sym_preproc_if_token1] = ACTIONS(1683), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1683), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1683), + [sym_preproc_directive] = ACTIONS(1683), + [anon_sym_LPAREN2] = ACTIONS(1680), + [anon_sym_BANG] = ACTIONS(1680), + [anon_sym_TILDE] = ACTIONS(1680), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_PLUS] = ACTIONS(1683), + [anon_sym_STAR] = ACTIONS(1680), + [anon_sym_AMP] = ACTIONS(1680), + [anon_sym___extension__] = ACTIONS(1683), + [anon_sym_typedef] = ACTIONS(1683), + [anon_sym_extern] = ACTIONS(1683), + [anon_sym___attribute__] = ACTIONS(1683), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1680), + [anon_sym___declspec] = ACTIONS(1683), + [anon_sym___cdecl] = ACTIONS(1683), + [anon_sym___clrcall] = ACTIONS(1683), + [anon_sym___stdcall] = ACTIONS(1683), + [anon_sym___fastcall] = ACTIONS(1683), + [anon_sym___thiscall] = ACTIONS(1683), + [anon_sym___vectorcall] = ACTIONS(1683), + [anon_sym_LBRACE] = ACTIONS(1680), + [anon_sym_signed] = ACTIONS(1683), + [anon_sym_unsigned] = ACTIONS(1683), + [anon_sym_long] = ACTIONS(1683), + [anon_sym_short] = ACTIONS(1683), + [anon_sym_static] = ACTIONS(1683), + [anon_sym_auto] = ACTIONS(1683), + [anon_sym_register] = ACTIONS(1683), + [anon_sym_inline] = ACTIONS(1683), + [anon_sym___inline] = ACTIONS(1683), + [anon_sym___inline__] = ACTIONS(1683), + [anon_sym___forceinline] = ACTIONS(1683), + [anon_sym_thread_local] = ACTIONS(1683), + [anon_sym___thread] = ACTIONS(1683), + [anon_sym_const] = ACTIONS(1683), + [anon_sym_constexpr] = ACTIONS(1683), + [anon_sym_volatile] = ACTIONS(1683), + [anon_sym_restrict] = ACTIONS(1683), + [anon_sym___restrict__] = ACTIONS(1683), + [anon_sym__Atomic] = ACTIONS(1683), + [anon_sym__Noreturn] = ACTIONS(1683), + [anon_sym_noreturn] = ACTIONS(1683), + [anon_sym_alignas] = ACTIONS(1683), + [anon_sym__Alignas] = ACTIONS(1683), + [sym_primitive_type] = ACTIONS(1683), + [anon_sym_enum] = ACTIONS(1683), + [anon_sym_struct] = ACTIONS(1683), + [anon_sym_union] = ACTIONS(1683), + [anon_sym_if] = ACTIONS(1683), + [anon_sym_switch] = ACTIONS(1683), + [anon_sym_case] = ACTIONS(1683), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_while] = ACTIONS(1683), + [anon_sym_do] = ACTIONS(1683), + [anon_sym_for] = ACTIONS(1683), + [anon_sym_return] = ACTIONS(1683), + [anon_sym_break] = ACTIONS(1683), + [anon_sym_continue] = ACTIONS(1683), + [anon_sym_goto] = ACTIONS(1683), + [anon_sym_DASH_DASH] = ACTIONS(1680), + [anon_sym_PLUS_PLUS] = ACTIONS(1680), + [anon_sym_sizeof] = ACTIONS(1683), + [anon_sym___alignof__] = ACTIONS(1683), + [anon_sym___alignof] = ACTIONS(1683), + [anon_sym__alignof] = ACTIONS(1683), + [anon_sym_alignof] = ACTIONS(1683), + [anon_sym__Alignof] = ACTIONS(1683), + [anon_sym_offsetof] = ACTIONS(1683), + [anon_sym__Generic] = ACTIONS(1683), + [anon_sym_asm] = ACTIONS(1683), + [anon_sym___asm__] = ACTIONS(1683), + [sym_number_literal] = ACTIONS(1680), + [anon_sym_L_SQUOTE] = ACTIONS(1680), + [anon_sym_u_SQUOTE] = ACTIONS(1680), + [anon_sym_U_SQUOTE] = ACTIONS(1680), + [anon_sym_u8_SQUOTE] = ACTIONS(1680), + [anon_sym_SQUOTE] = ACTIONS(1680), + [anon_sym_L_DQUOTE] = ACTIONS(1680), + [anon_sym_u_DQUOTE] = ACTIONS(1680), + [anon_sym_U_DQUOTE] = ACTIONS(1680), + [anon_sym_u8_DQUOTE] = ACTIONS(1680), + [anon_sym_DQUOTE] = ACTIONS(1680), + [sym_true] = ACTIONS(1683), + [sym_false] = ACTIONS(1683), + [anon_sym_NULL] = ACTIONS(1683), + [anon_sym_nullptr] = ACTIONS(1683), [sym_comment] = ACTIONS(3), }, - [428] = { - [ts_builtin_sym_end] = ACTIONS(1265), - [sym_identifier] = ACTIONS(1263), - [aux_sym_preproc_include_token1] = ACTIONS(1263), - [aux_sym_preproc_def_token1] = ACTIONS(1263), - [aux_sym_preproc_if_token1] = ACTIONS(1263), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1263), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1263), - [sym_preproc_directive] = ACTIONS(1263), - [anon_sym_LPAREN2] = ACTIONS(1265), - [anon_sym_BANG] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1265), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_AMP] = ACTIONS(1265), - [anon_sym___extension__] = ACTIONS(1263), - [anon_sym_typedef] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym___attribute__] = ACTIONS(1263), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1265), - [anon_sym___declspec] = ACTIONS(1263), - [anon_sym___cdecl] = ACTIONS(1263), - [anon_sym___clrcall] = ACTIONS(1263), - [anon_sym___stdcall] = ACTIONS(1263), - [anon_sym___fastcall] = ACTIONS(1263), - [anon_sym___thiscall] = ACTIONS(1263), - [anon_sym___vectorcall] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1265), - [anon_sym_signed] = ACTIONS(1263), - [anon_sym_unsigned] = ACTIONS(1263), - [anon_sym_long] = ACTIONS(1263), - [anon_sym_short] = ACTIONS(1263), - [anon_sym_static] = ACTIONS(1263), - [anon_sym_auto] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_inline] = ACTIONS(1263), - [anon_sym___inline] = ACTIONS(1263), - [anon_sym___inline__] = ACTIONS(1263), - [anon_sym___forceinline] = ACTIONS(1263), - [anon_sym_thread_local] = ACTIONS(1263), - [anon_sym___thread] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [anon_sym_constexpr] = ACTIONS(1263), - [anon_sym_volatile] = ACTIONS(1263), - [anon_sym_restrict] = ACTIONS(1263), - [anon_sym___restrict__] = ACTIONS(1263), - [anon_sym__Atomic] = ACTIONS(1263), - [anon_sym__Noreturn] = ACTIONS(1263), - [anon_sym_noreturn] = ACTIONS(1263), - [anon_sym_alignas] = ACTIONS(1263), - [anon_sym__Alignas] = ACTIONS(1263), - [sym_primitive_type] = ACTIONS(1263), - [anon_sym_enum] = ACTIONS(1263), - [anon_sym_struct] = ACTIONS(1263), - [anon_sym_union] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_switch] = ACTIONS(1263), - [anon_sym_case] = ACTIONS(1263), - [anon_sym_default] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_goto] = ACTIONS(1263), - [anon_sym_DASH_DASH] = ACTIONS(1265), - [anon_sym_PLUS_PLUS] = ACTIONS(1265), - [anon_sym_sizeof] = ACTIONS(1263), - [anon_sym___alignof__] = ACTIONS(1263), - [anon_sym___alignof] = ACTIONS(1263), - [anon_sym__alignof] = ACTIONS(1263), - [anon_sym_alignof] = ACTIONS(1263), - [anon_sym__Alignof] = ACTIONS(1263), - [anon_sym_offsetof] = ACTIONS(1263), - [anon_sym__Generic] = ACTIONS(1263), - [anon_sym_asm] = ACTIONS(1263), - [anon_sym___asm__] = ACTIONS(1263), - [sym_number_literal] = ACTIONS(1265), - [anon_sym_L_SQUOTE] = ACTIONS(1265), - [anon_sym_u_SQUOTE] = ACTIONS(1265), - [anon_sym_U_SQUOTE] = ACTIONS(1265), - [anon_sym_u8_SQUOTE] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1265), - [anon_sym_L_DQUOTE] = ACTIONS(1265), - [anon_sym_u_DQUOTE] = ACTIONS(1265), - [anon_sym_U_DQUOTE] = ACTIONS(1265), - [anon_sym_u8_DQUOTE] = ACTIONS(1265), - [anon_sym_DQUOTE] = ACTIONS(1265), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [anon_sym_NULL] = ACTIONS(1263), - [anon_sym_nullptr] = ACTIONS(1263), + [381] = { + [sym_expression] = STATE(838), + [sym__string] = STATE(672), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(668), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(668), + [sym_call_expression] = STATE(668), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(668), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(668), + [sym_initializer_list] = STATE(676), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_identifier] = ACTIONS(1375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1377), + [anon_sym_LPAREN2] = ACTIONS(1377), + [anon_sym_BANG] = ACTIONS(1686), + [anon_sym_TILDE] = ACTIONS(1688), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1383), + [anon_sym_STAR] = ACTIONS(1383), + [anon_sym_SLASH] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1383), + [anon_sym_PIPE_PIPE] = ACTIONS(1377), + [anon_sym_AMP_AMP] = ACTIONS(1377), + [anon_sym_PIPE] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(1383), + [anon_sym_EQ_EQ] = ACTIONS(1377), + [anon_sym_BANG_EQ] = ACTIONS(1377), + [anon_sym_GT] = ACTIONS(1383), + [anon_sym_GT_EQ] = ACTIONS(1377), + [anon_sym_LT_EQ] = ACTIONS(1377), + [anon_sym_LT] = ACTIONS(1383), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_GT_GT] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1385), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_RBRACK] = ACTIONS(1377), + [anon_sym_EQ] = ACTIONS(1383), + [anon_sym_QMARK] = ACTIONS(1377), + [anon_sym_STAR_EQ] = ACTIONS(1377), + [anon_sym_SLASH_EQ] = ACTIONS(1377), + [anon_sym_PERCENT_EQ] = ACTIONS(1377), + [anon_sym_PLUS_EQ] = ACTIONS(1377), + [anon_sym_DASH_EQ] = ACTIONS(1377), + [anon_sym_LT_LT_EQ] = ACTIONS(1377), + [anon_sym_GT_GT_EQ] = ACTIONS(1377), + [anon_sym_AMP_EQ] = ACTIONS(1377), + [anon_sym_CARET_EQ] = ACTIONS(1377), + [anon_sym_PIPE_EQ] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_sizeof] = ACTIONS(1690), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [anon_sym_DOT] = ACTIONS(1383), + [anon_sym_DASH_GT] = ACTIONS(1377), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [429] = { - [ts_builtin_sym_end] = ACTIONS(1666), - [sym_identifier] = ACTIONS(1668), - [aux_sym_preproc_include_token1] = ACTIONS(1668), - [aux_sym_preproc_def_token1] = ACTIONS(1668), - [aux_sym_preproc_if_token1] = ACTIONS(1668), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1668), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1668), - [sym_preproc_directive] = ACTIONS(1668), - [anon_sym_LPAREN2] = ACTIONS(1666), - [anon_sym_BANG] = ACTIONS(1666), - [anon_sym_TILDE] = ACTIONS(1666), - [anon_sym_DASH] = ACTIONS(1668), - [anon_sym_PLUS] = ACTIONS(1668), - [anon_sym_STAR] = ACTIONS(1666), - [anon_sym_AMP] = ACTIONS(1666), - [anon_sym___extension__] = ACTIONS(1668), - [anon_sym_typedef] = ACTIONS(1668), - [anon_sym_extern] = ACTIONS(1668), - [anon_sym___attribute__] = ACTIONS(1668), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), - [anon_sym___declspec] = ACTIONS(1668), - [anon_sym___cdecl] = ACTIONS(1668), - [anon_sym___clrcall] = ACTIONS(1668), - [anon_sym___stdcall] = ACTIONS(1668), - [anon_sym___fastcall] = ACTIONS(1668), - [anon_sym___thiscall] = ACTIONS(1668), - [anon_sym___vectorcall] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(1666), - [anon_sym_signed] = ACTIONS(1668), - [anon_sym_unsigned] = ACTIONS(1668), - [anon_sym_long] = ACTIONS(1668), - [anon_sym_short] = ACTIONS(1668), - [anon_sym_static] = ACTIONS(1668), - [anon_sym_auto] = ACTIONS(1668), - [anon_sym_register] = ACTIONS(1668), - [anon_sym_inline] = ACTIONS(1668), - [anon_sym___inline] = ACTIONS(1668), - [anon_sym___inline__] = ACTIONS(1668), - [anon_sym___forceinline] = ACTIONS(1668), - [anon_sym_thread_local] = ACTIONS(1668), - [anon_sym___thread] = ACTIONS(1668), - [anon_sym_const] = ACTIONS(1668), - [anon_sym_constexpr] = ACTIONS(1668), - [anon_sym_volatile] = ACTIONS(1668), - [anon_sym_restrict] = ACTIONS(1668), - [anon_sym___restrict__] = ACTIONS(1668), - [anon_sym__Atomic] = ACTIONS(1668), - [anon_sym__Noreturn] = ACTIONS(1668), - [anon_sym_noreturn] = ACTIONS(1668), - [anon_sym_alignas] = ACTIONS(1668), - [anon_sym__Alignas] = ACTIONS(1668), - [sym_primitive_type] = ACTIONS(1668), - [anon_sym_enum] = ACTIONS(1668), - [anon_sym_struct] = ACTIONS(1668), - [anon_sym_union] = ACTIONS(1668), - [anon_sym_if] = ACTIONS(1668), - [anon_sym_switch] = ACTIONS(1668), - [anon_sym_case] = ACTIONS(1668), - [anon_sym_default] = ACTIONS(1668), - [anon_sym_while] = ACTIONS(1668), - [anon_sym_do] = ACTIONS(1668), - [anon_sym_for] = ACTIONS(1668), - [anon_sym_return] = ACTIONS(1668), - [anon_sym_break] = ACTIONS(1668), - [anon_sym_continue] = ACTIONS(1668), - [anon_sym_goto] = ACTIONS(1668), - [anon_sym_DASH_DASH] = ACTIONS(1666), - [anon_sym_PLUS_PLUS] = ACTIONS(1666), - [anon_sym_sizeof] = ACTIONS(1668), - [anon_sym___alignof__] = ACTIONS(1668), - [anon_sym___alignof] = ACTIONS(1668), - [anon_sym__alignof] = ACTIONS(1668), - [anon_sym_alignof] = ACTIONS(1668), - [anon_sym__Alignof] = ACTIONS(1668), - [anon_sym_offsetof] = ACTIONS(1668), - [anon_sym__Generic] = ACTIONS(1668), - [anon_sym_asm] = ACTIONS(1668), - [anon_sym___asm__] = ACTIONS(1668), - [sym_number_literal] = ACTIONS(1666), - [anon_sym_L_SQUOTE] = ACTIONS(1666), - [anon_sym_u_SQUOTE] = ACTIONS(1666), - [anon_sym_U_SQUOTE] = ACTIONS(1666), - [anon_sym_u8_SQUOTE] = ACTIONS(1666), - [anon_sym_SQUOTE] = ACTIONS(1666), - [anon_sym_L_DQUOTE] = ACTIONS(1666), - [anon_sym_u_DQUOTE] = ACTIONS(1666), - [anon_sym_U_DQUOTE] = ACTIONS(1666), - [anon_sym_u8_DQUOTE] = ACTIONS(1666), - [anon_sym_DQUOTE] = ACTIONS(1666), - [sym_true] = ACTIONS(1668), - [sym_false] = ACTIONS(1668), - [anon_sym_NULL] = ACTIONS(1668), - [anon_sym_nullptr] = ACTIONS(1668), + [382] = { + [sym_type_qualifier] = STATE(983), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_expression] = STATE(1044), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1879), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_type_descriptor] = STATE(1973), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__type_definition_type_repeat1] = STATE(983), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(1692), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(1694), + [anon_sym_unsigned] = ACTIONS(1694), + [anon_sym_long] = ACTIONS(1694), + [anon_sym_short] = ACTIONS(1694), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(1696), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [430] = { - [ts_builtin_sym_end] = ACTIONS(1253), - [sym_identifier] = ACTIONS(1251), - [aux_sym_preproc_include_token1] = ACTIONS(1251), - [aux_sym_preproc_def_token1] = ACTIONS(1251), - [aux_sym_preproc_if_token1] = ACTIONS(1251), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1251), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1251), - [sym_preproc_directive] = ACTIONS(1251), - [anon_sym_LPAREN2] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1253), - [anon_sym_TILDE] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_AMP] = ACTIONS(1253), - [anon_sym___extension__] = ACTIONS(1251), - [anon_sym_typedef] = ACTIONS(1251), - [anon_sym_extern] = ACTIONS(1251), - [anon_sym___attribute__] = ACTIONS(1251), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1253), - [anon_sym___declspec] = ACTIONS(1251), - [anon_sym___cdecl] = ACTIONS(1251), - [anon_sym___clrcall] = ACTIONS(1251), - [anon_sym___stdcall] = ACTIONS(1251), - [anon_sym___fastcall] = ACTIONS(1251), - [anon_sym___thiscall] = ACTIONS(1251), - [anon_sym___vectorcall] = ACTIONS(1251), - [anon_sym_LBRACE] = ACTIONS(1253), - [anon_sym_signed] = ACTIONS(1251), - [anon_sym_unsigned] = ACTIONS(1251), - [anon_sym_long] = ACTIONS(1251), - [anon_sym_short] = ACTIONS(1251), - [anon_sym_static] = ACTIONS(1251), - [anon_sym_auto] = ACTIONS(1251), - [anon_sym_register] = ACTIONS(1251), - [anon_sym_inline] = ACTIONS(1251), - [anon_sym___inline] = ACTIONS(1251), - [anon_sym___inline__] = ACTIONS(1251), - [anon_sym___forceinline] = ACTIONS(1251), - [anon_sym_thread_local] = ACTIONS(1251), - [anon_sym___thread] = ACTIONS(1251), - [anon_sym_const] = ACTIONS(1251), - [anon_sym_constexpr] = ACTIONS(1251), - [anon_sym_volatile] = ACTIONS(1251), - [anon_sym_restrict] = ACTIONS(1251), - [anon_sym___restrict__] = ACTIONS(1251), - [anon_sym__Atomic] = ACTIONS(1251), - [anon_sym__Noreturn] = ACTIONS(1251), - [anon_sym_noreturn] = ACTIONS(1251), - [anon_sym_alignas] = ACTIONS(1251), - [anon_sym__Alignas] = ACTIONS(1251), - [sym_primitive_type] = ACTIONS(1251), - [anon_sym_enum] = ACTIONS(1251), - [anon_sym_struct] = ACTIONS(1251), - [anon_sym_union] = ACTIONS(1251), - [anon_sym_if] = ACTIONS(1251), - [anon_sym_switch] = ACTIONS(1251), - [anon_sym_case] = ACTIONS(1251), - [anon_sym_default] = ACTIONS(1251), - [anon_sym_while] = ACTIONS(1251), - [anon_sym_do] = ACTIONS(1251), - [anon_sym_for] = ACTIONS(1251), - [anon_sym_return] = ACTIONS(1251), - [anon_sym_break] = ACTIONS(1251), - [anon_sym_continue] = ACTIONS(1251), - [anon_sym_goto] = ACTIONS(1251), - [anon_sym_DASH_DASH] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1253), - [anon_sym_sizeof] = ACTIONS(1251), - [anon_sym___alignof__] = ACTIONS(1251), - [anon_sym___alignof] = ACTIONS(1251), - [anon_sym__alignof] = ACTIONS(1251), - [anon_sym_alignof] = ACTIONS(1251), - [anon_sym__Alignof] = ACTIONS(1251), - [anon_sym_offsetof] = ACTIONS(1251), - [anon_sym__Generic] = ACTIONS(1251), - [anon_sym_asm] = ACTIONS(1251), - [anon_sym___asm__] = ACTIONS(1251), - [sym_number_literal] = ACTIONS(1253), - [anon_sym_L_SQUOTE] = ACTIONS(1253), - [anon_sym_u_SQUOTE] = ACTIONS(1253), - [anon_sym_U_SQUOTE] = ACTIONS(1253), - [anon_sym_u8_SQUOTE] = ACTIONS(1253), - [anon_sym_SQUOTE] = ACTIONS(1253), - [anon_sym_L_DQUOTE] = ACTIONS(1253), - [anon_sym_u_DQUOTE] = ACTIONS(1253), - [anon_sym_U_DQUOTE] = ACTIONS(1253), - [anon_sym_u8_DQUOTE] = ACTIONS(1253), - [anon_sym_DQUOTE] = ACTIONS(1253), - [sym_true] = ACTIONS(1251), - [sym_false] = ACTIONS(1251), - [anon_sym_NULL] = ACTIONS(1251), - [anon_sym_nullptr] = ACTIONS(1251), - [sym_comment] = ACTIONS(3), - }, - [431] = { - [ts_builtin_sym_end] = ACTIONS(1321), - [sym_identifier] = ACTIONS(1319), - [aux_sym_preproc_include_token1] = ACTIONS(1319), - [aux_sym_preproc_def_token1] = ACTIONS(1319), - [aux_sym_preproc_if_token1] = ACTIONS(1319), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1319), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1319), - [sym_preproc_directive] = ACTIONS(1319), - [anon_sym_LPAREN2] = ACTIONS(1321), - [anon_sym_BANG] = ACTIONS(1321), - [anon_sym_TILDE] = ACTIONS(1321), - [anon_sym_DASH] = ACTIONS(1319), - [anon_sym_PLUS] = ACTIONS(1319), - [anon_sym_STAR] = ACTIONS(1321), - [anon_sym_AMP] = ACTIONS(1321), - [anon_sym___extension__] = ACTIONS(1319), - [anon_sym_typedef] = ACTIONS(1319), - [anon_sym_extern] = ACTIONS(1319), - [anon_sym___attribute__] = ACTIONS(1319), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1321), - [anon_sym___declspec] = ACTIONS(1319), - [anon_sym___cdecl] = ACTIONS(1319), - [anon_sym___clrcall] = ACTIONS(1319), - [anon_sym___stdcall] = ACTIONS(1319), - [anon_sym___fastcall] = ACTIONS(1319), - [anon_sym___thiscall] = ACTIONS(1319), - [anon_sym___vectorcall] = ACTIONS(1319), - [anon_sym_LBRACE] = ACTIONS(1321), - [anon_sym_signed] = ACTIONS(1319), - [anon_sym_unsigned] = ACTIONS(1319), - [anon_sym_long] = ACTIONS(1319), - [anon_sym_short] = ACTIONS(1319), - [anon_sym_static] = ACTIONS(1319), - [anon_sym_auto] = ACTIONS(1319), - [anon_sym_register] = ACTIONS(1319), - [anon_sym_inline] = ACTIONS(1319), - [anon_sym___inline] = ACTIONS(1319), - [anon_sym___inline__] = ACTIONS(1319), - [anon_sym___forceinline] = ACTIONS(1319), - [anon_sym_thread_local] = ACTIONS(1319), - [anon_sym___thread] = ACTIONS(1319), - [anon_sym_const] = ACTIONS(1319), - [anon_sym_constexpr] = ACTIONS(1319), - [anon_sym_volatile] = ACTIONS(1319), - [anon_sym_restrict] = ACTIONS(1319), - [anon_sym___restrict__] = ACTIONS(1319), - [anon_sym__Atomic] = ACTIONS(1319), - [anon_sym__Noreturn] = ACTIONS(1319), - [anon_sym_noreturn] = ACTIONS(1319), - [anon_sym_alignas] = ACTIONS(1319), - [anon_sym__Alignas] = ACTIONS(1319), - [sym_primitive_type] = ACTIONS(1319), - [anon_sym_enum] = ACTIONS(1319), - [anon_sym_struct] = ACTIONS(1319), - [anon_sym_union] = ACTIONS(1319), - [anon_sym_if] = ACTIONS(1319), - [anon_sym_switch] = ACTIONS(1319), - [anon_sym_case] = ACTIONS(1319), - [anon_sym_default] = ACTIONS(1319), - [anon_sym_while] = ACTIONS(1319), - [anon_sym_do] = ACTIONS(1319), - [anon_sym_for] = ACTIONS(1319), - [anon_sym_return] = ACTIONS(1319), - [anon_sym_break] = ACTIONS(1319), - [anon_sym_continue] = ACTIONS(1319), - [anon_sym_goto] = ACTIONS(1319), - [anon_sym_DASH_DASH] = ACTIONS(1321), - [anon_sym_PLUS_PLUS] = ACTIONS(1321), - [anon_sym_sizeof] = ACTIONS(1319), - [anon_sym___alignof__] = ACTIONS(1319), - [anon_sym___alignof] = ACTIONS(1319), - [anon_sym__alignof] = ACTIONS(1319), - [anon_sym_alignof] = ACTIONS(1319), - [anon_sym__Alignof] = ACTIONS(1319), - [anon_sym_offsetof] = ACTIONS(1319), - [anon_sym__Generic] = ACTIONS(1319), - [anon_sym_asm] = ACTIONS(1319), - [anon_sym___asm__] = ACTIONS(1319), - [sym_number_literal] = ACTIONS(1321), - [anon_sym_L_SQUOTE] = ACTIONS(1321), - [anon_sym_u_SQUOTE] = ACTIONS(1321), - [anon_sym_U_SQUOTE] = ACTIONS(1321), - [anon_sym_u8_SQUOTE] = ACTIONS(1321), - [anon_sym_SQUOTE] = ACTIONS(1321), - [anon_sym_L_DQUOTE] = ACTIONS(1321), - [anon_sym_u_DQUOTE] = ACTIONS(1321), - [anon_sym_U_DQUOTE] = ACTIONS(1321), - [anon_sym_u8_DQUOTE] = ACTIONS(1321), - [anon_sym_DQUOTE] = ACTIONS(1321), - [sym_true] = ACTIONS(1319), - [sym_false] = ACTIONS(1319), - [anon_sym_NULL] = ACTIONS(1319), - [anon_sym_nullptr] = ACTIONS(1319), - [sym_comment] = ACTIONS(3), - }, - [432] = { - [ts_builtin_sym_end] = ACTIONS(1309), - [sym_identifier] = ACTIONS(1307), - [aux_sym_preproc_include_token1] = ACTIONS(1307), - [aux_sym_preproc_def_token1] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1307), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1307), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1307), - [sym_preproc_directive] = ACTIONS(1307), - [anon_sym_LPAREN2] = ACTIONS(1309), - [anon_sym_BANG] = ACTIONS(1309), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_DASH] = ACTIONS(1307), - [anon_sym_PLUS] = ACTIONS(1307), - [anon_sym_STAR] = ACTIONS(1309), - [anon_sym_AMP] = ACTIONS(1309), - [anon_sym___extension__] = ACTIONS(1307), - [anon_sym_typedef] = ACTIONS(1307), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym___attribute__] = ACTIONS(1307), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1309), - [anon_sym___declspec] = ACTIONS(1307), - [anon_sym___cdecl] = ACTIONS(1307), - [anon_sym___clrcall] = ACTIONS(1307), - [anon_sym___stdcall] = ACTIONS(1307), - [anon_sym___fastcall] = ACTIONS(1307), - [anon_sym___thiscall] = ACTIONS(1307), - [anon_sym___vectorcall] = ACTIONS(1307), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_signed] = ACTIONS(1307), - [anon_sym_unsigned] = ACTIONS(1307), - [anon_sym_long] = ACTIONS(1307), - [anon_sym_short] = ACTIONS(1307), - [anon_sym_static] = ACTIONS(1307), - [anon_sym_auto] = ACTIONS(1307), - [anon_sym_register] = ACTIONS(1307), - [anon_sym_inline] = ACTIONS(1307), - [anon_sym___inline] = ACTIONS(1307), - [anon_sym___inline__] = ACTIONS(1307), - [anon_sym___forceinline] = ACTIONS(1307), - [anon_sym_thread_local] = ACTIONS(1307), - [anon_sym___thread] = ACTIONS(1307), - [anon_sym_const] = ACTIONS(1307), - [anon_sym_constexpr] = ACTIONS(1307), - [anon_sym_volatile] = ACTIONS(1307), - [anon_sym_restrict] = ACTIONS(1307), - [anon_sym___restrict__] = ACTIONS(1307), - [anon_sym__Atomic] = ACTIONS(1307), - [anon_sym__Noreturn] = ACTIONS(1307), - [anon_sym_noreturn] = ACTIONS(1307), - [anon_sym_alignas] = ACTIONS(1307), - [anon_sym__Alignas] = ACTIONS(1307), - [sym_primitive_type] = ACTIONS(1307), - [anon_sym_enum] = ACTIONS(1307), - [anon_sym_struct] = ACTIONS(1307), - [anon_sym_union] = ACTIONS(1307), - [anon_sym_if] = ACTIONS(1307), - [anon_sym_switch] = ACTIONS(1307), - [anon_sym_case] = ACTIONS(1307), - [anon_sym_default] = ACTIONS(1307), - [anon_sym_while] = ACTIONS(1307), - [anon_sym_do] = ACTIONS(1307), - [anon_sym_for] = ACTIONS(1307), - [anon_sym_return] = ACTIONS(1307), - [anon_sym_break] = ACTIONS(1307), - [anon_sym_continue] = ACTIONS(1307), - [anon_sym_goto] = ACTIONS(1307), - [anon_sym_DASH_DASH] = ACTIONS(1309), - [anon_sym_PLUS_PLUS] = ACTIONS(1309), - [anon_sym_sizeof] = ACTIONS(1307), - [anon_sym___alignof__] = ACTIONS(1307), - [anon_sym___alignof] = ACTIONS(1307), - [anon_sym__alignof] = ACTIONS(1307), - [anon_sym_alignof] = ACTIONS(1307), - [anon_sym__Alignof] = ACTIONS(1307), - [anon_sym_offsetof] = ACTIONS(1307), - [anon_sym__Generic] = ACTIONS(1307), - [anon_sym_asm] = ACTIONS(1307), - [anon_sym___asm__] = ACTIONS(1307), - [sym_number_literal] = ACTIONS(1309), - [anon_sym_L_SQUOTE] = ACTIONS(1309), - [anon_sym_u_SQUOTE] = ACTIONS(1309), - [anon_sym_U_SQUOTE] = ACTIONS(1309), - [anon_sym_u8_SQUOTE] = ACTIONS(1309), - [anon_sym_SQUOTE] = ACTIONS(1309), - [anon_sym_L_DQUOTE] = ACTIONS(1309), - [anon_sym_u_DQUOTE] = ACTIONS(1309), - [anon_sym_U_DQUOTE] = ACTIONS(1309), - [anon_sym_u8_DQUOTE] = ACTIONS(1309), - [anon_sym_DQUOTE] = ACTIONS(1309), - [sym_true] = ACTIONS(1307), - [sym_false] = ACTIONS(1307), - [anon_sym_NULL] = ACTIONS(1307), - [anon_sym_nullptr] = ACTIONS(1307), - [sym_comment] = ACTIONS(3), - }, - [433] = { - [sym__expression] = STATE(880), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(725), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(725), - [sym_call_expression] = STATE(725), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(725), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(725), - [sym_initializer_list] = STATE(723), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym_identifier] = ACTIONS(1365), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1367), - [anon_sym_LPAREN2] = ACTIONS(1367), - [anon_sym_BANG] = ACTIONS(1670), - [anon_sym_TILDE] = ACTIONS(1672), - [anon_sym_DASH] = ACTIONS(1373), - [anon_sym_PLUS] = ACTIONS(1373), - [anon_sym_STAR] = ACTIONS(1373), - [anon_sym_SLASH] = ACTIONS(1373), - [anon_sym_PERCENT] = ACTIONS(1373), - [anon_sym_PIPE_PIPE] = ACTIONS(1367), - [anon_sym_AMP_AMP] = ACTIONS(1367), - [anon_sym_PIPE] = ACTIONS(1373), - [anon_sym_CARET] = ACTIONS(1373), - [anon_sym_AMP] = ACTIONS(1373), - [anon_sym_EQ_EQ] = ACTIONS(1367), - [anon_sym_BANG_EQ] = ACTIONS(1367), - [anon_sym_GT] = ACTIONS(1373), - [anon_sym_GT_EQ] = ACTIONS(1367), - [anon_sym_LT_EQ] = ACTIONS(1367), - [anon_sym_LT] = ACTIONS(1373), - [anon_sym_LT_LT] = ACTIONS(1373), - [anon_sym_GT_GT] = ACTIONS(1373), - [anon_sym_LBRACE] = ACTIONS(1375), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_RBRACK] = ACTIONS(1367), - [anon_sym_EQ] = ACTIONS(1373), - [anon_sym_QMARK] = ACTIONS(1367), - [anon_sym_STAR_EQ] = ACTIONS(1367), - [anon_sym_SLASH_EQ] = ACTIONS(1367), - [anon_sym_PERCENT_EQ] = ACTIONS(1367), - [anon_sym_PLUS_EQ] = ACTIONS(1367), - [anon_sym_DASH_EQ] = ACTIONS(1367), - [anon_sym_LT_LT_EQ] = ACTIONS(1367), - [anon_sym_GT_GT_EQ] = ACTIONS(1367), - [anon_sym_AMP_EQ] = ACTIONS(1367), - [anon_sym_CARET_EQ] = ACTIONS(1367), - [anon_sym_PIPE_EQ] = ACTIONS(1367), - [anon_sym_DASH_DASH] = ACTIONS(1367), - [anon_sym_PLUS_PLUS] = ACTIONS(1367), - [anon_sym_sizeof] = ACTIONS(1674), + [383] = { + [sym_type_qualifier] = STATE(983), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_expression] = STATE(1044), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1879), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_type_descriptor] = STATE(1734), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__type_definition_type_repeat1] = STATE(983), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(1692), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(1694), + [anon_sym_unsigned] = ACTIONS(1694), + [anon_sym_long] = ACTIONS(1694), + [anon_sym_short] = ACTIONS(1694), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(1696), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), [anon_sym___alignof__] = ACTIONS(85), [anon_sym___alignof] = ACTIONS(85), [anon_sym__alignof] = ACTIONS(85), @@ -59666,8 +54526,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(89), [anon_sym_asm] = ACTIONS(91), [anon_sym___asm__] = ACTIONS(91), - [anon_sym_DOT] = ACTIONS(1373), - [anon_sym_DASH_GT] = ACTIONS(1367), [sym_number_literal] = ACTIONS(159), [anon_sym_L_SQUOTE] = ACTIONS(95), [anon_sym_u_SQUOTE] = ACTIONS(95), @@ -59685,44 +54543,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [434] = { - [sym_type_qualifier] = STATE(1034), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(1127), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym__expression] = STATE(1080), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1991), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_type_descriptor] = STATE(1855), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym_macro_type_specifier] = STATE(822), - [aux_sym__type_definition_type_repeat1] = STATE(1034), - [aux_sym_sized_type_specifier_repeat1] = STATE(1141), - [sym_identifier] = ACTIONS(1676), + [384] = { + [sym_type_qualifier] = STATE(983), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_expression] = STATE(1044), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1879), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_type_descriptor] = STATE(1846), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__type_definition_type_repeat1] = STATE(983), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(1692), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -59731,10 +54588,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1678), - [anon_sym_unsigned] = ACTIONS(1678), - [anon_sym_long] = ACTIONS(1678), - [anon_sym_short] = ACTIONS(1678), + [anon_sym_signed] = ACTIONS(1694), + [anon_sym_unsigned] = ACTIONS(1694), + [anon_sym_long] = ACTIONS(1694), + [anon_sym_short] = ACTIONS(1694), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -59746,7 +54603,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(1680), + [anon_sym_enum] = ACTIONS(1696), [anon_sym_struct] = ACTIONS(55), [anon_sym_union] = ACTIONS(57), [anon_sym_DASH_DASH] = ACTIONS(81), @@ -59778,44 +54635,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [435] = { - [sym_type_qualifier] = STATE(1034), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(1127), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym__expression] = STATE(1080), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1991), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_type_descriptor] = STATE(1865), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym_macro_type_specifier] = STATE(822), - [aux_sym__type_definition_type_repeat1] = STATE(1034), - [aux_sym_sized_type_specifier_repeat1] = STATE(1141), - [sym_identifier] = ACTIONS(1676), + [385] = { + [sym_type_qualifier] = STATE(983), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_expression] = STATE(1044), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1879), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_type_descriptor] = STATE(1871), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__type_definition_type_repeat1] = STATE(983), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(1692), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -59824,10 +54680,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1678), - [anon_sym_unsigned] = ACTIONS(1678), - [anon_sym_long] = ACTIONS(1678), - [anon_sym_short] = ACTIONS(1678), + [anon_sym_signed] = ACTIONS(1694), + [anon_sym_unsigned] = ACTIONS(1694), + [anon_sym_long] = ACTIONS(1694), + [anon_sym_short] = ACTIONS(1694), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -59839,7 +54695,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(1680), + [anon_sym_enum] = ACTIONS(1696), [anon_sym_struct] = ACTIONS(55), [anon_sym_union] = ACTIONS(57), [anon_sym_DASH_DASH] = ACTIONS(81), @@ -59871,44 +54727,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [436] = { - [sym_type_qualifier] = STATE(1034), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(1127), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym__expression] = STATE(1080), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1991), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_type_descriptor] = STATE(1896), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym_macro_type_specifier] = STATE(822), - [aux_sym__type_definition_type_repeat1] = STATE(1034), - [aux_sym_sized_type_specifier_repeat1] = STATE(1141), - [sym_identifier] = ACTIONS(1676), + [386] = { + [sym_type_qualifier] = STATE(983), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_expression] = STATE(1044), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1879), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_type_descriptor] = STATE(1801), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__type_definition_type_repeat1] = STATE(983), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(1692), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -59917,10 +54772,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1678), - [anon_sym_unsigned] = ACTIONS(1678), - [anon_sym_long] = ACTIONS(1678), - [anon_sym_short] = ACTIONS(1678), + [anon_sym_signed] = ACTIONS(1694), + [anon_sym_unsigned] = ACTIONS(1694), + [anon_sym_long] = ACTIONS(1694), + [anon_sym_short] = ACTIONS(1694), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -59932,7 +54787,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(1680), + [anon_sym_enum] = ACTIONS(1696), [anon_sym_struct] = ACTIONS(55), [anon_sym_union] = ACTIONS(57), [anon_sym_DASH_DASH] = ACTIONS(81), @@ -59964,44 +54819,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [437] = { - [sym_type_qualifier] = STATE(1034), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(1127), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym__expression] = STATE(1080), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1991), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_type_descriptor] = STATE(1861), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym_macro_type_specifier] = STATE(822), - [aux_sym__type_definition_type_repeat1] = STATE(1034), - [aux_sym_sized_type_specifier_repeat1] = STATE(1141), - [sym_identifier] = ACTIONS(1676), + [387] = { + [sym_type_qualifier] = STATE(983), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_expression] = STATE(1044), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1879), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_type_descriptor] = STATE(1735), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__type_definition_type_repeat1] = STATE(983), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(1692), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -60010,10 +54864,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1678), - [anon_sym_unsigned] = ACTIONS(1678), - [anon_sym_long] = ACTIONS(1678), - [anon_sym_short] = ACTIONS(1678), + [anon_sym_signed] = ACTIONS(1694), + [anon_sym_unsigned] = ACTIONS(1694), + [anon_sym_long] = ACTIONS(1694), + [anon_sym_short] = ACTIONS(1694), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -60025,7 +54879,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(1680), + [anon_sym_enum] = ACTIONS(1696), [anon_sym_struct] = ACTIONS(55), [anon_sym_union] = ACTIONS(57), [anon_sym_DASH_DASH] = ACTIONS(81), @@ -60057,44 +54911,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [438] = { - [sym_type_qualifier] = STATE(1034), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(1127), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym__expression] = STATE(1080), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1991), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_type_descriptor] = STATE(1816), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym_macro_type_specifier] = STATE(822), - [aux_sym__type_definition_type_repeat1] = STATE(1034), - [aux_sym_sized_type_specifier_repeat1] = STATE(1141), - [sym_identifier] = ACTIONS(1676), + [388] = { + [sym_type_qualifier] = STATE(983), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_expression] = STATE(1044), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1879), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_type_descriptor] = STATE(1945), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__type_definition_type_repeat1] = STATE(983), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(1692), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -60103,10 +54956,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1678), - [anon_sym_unsigned] = ACTIONS(1678), - [anon_sym_long] = ACTIONS(1678), - [anon_sym_short] = ACTIONS(1678), + [anon_sym_signed] = ACTIONS(1694), + [anon_sym_unsigned] = ACTIONS(1694), + [anon_sym_long] = ACTIONS(1694), + [anon_sym_short] = ACTIONS(1694), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -60118,7 +54971,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(1680), + [anon_sym_enum] = ACTIONS(1696), [anon_sym_struct] = ACTIONS(55), [anon_sym_union] = ACTIONS(57), [anon_sym_DASH_DASH] = ACTIONS(81), @@ -60150,44 +55003,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [439] = { - [sym_type_qualifier] = STATE(1034), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(1127), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym__expression] = STATE(1080), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1991), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_type_descriptor] = STATE(1877), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym_macro_type_specifier] = STATE(822), - [aux_sym__type_definition_type_repeat1] = STATE(1034), - [aux_sym_sized_type_specifier_repeat1] = STATE(1141), - [sym_identifier] = ACTIONS(1676), + [389] = { + [sym_type_qualifier] = STATE(983), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_expression] = STATE(1044), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1879), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_type_descriptor] = STATE(1930), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__type_definition_type_repeat1] = STATE(983), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(1692), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -60196,10 +55048,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1678), - [anon_sym_unsigned] = ACTIONS(1678), - [anon_sym_long] = ACTIONS(1678), - [anon_sym_short] = ACTIONS(1678), + [anon_sym_signed] = ACTIONS(1694), + [anon_sym_unsigned] = ACTIONS(1694), + [anon_sym_long] = ACTIONS(1694), + [anon_sym_short] = ACTIONS(1694), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -60211,7 +55063,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(1680), + [anon_sym_enum] = ACTIONS(1696), [anon_sym_struct] = ACTIONS(55), [anon_sym_union] = ACTIONS(57), [anon_sym_DASH_DASH] = ACTIONS(81), @@ -60243,44 +55095,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [440] = { - [sym_type_qualifier] = STATE(1034), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(1127), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym__expression] = STATE(1080), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1991), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_type_descriptor] = STATE(1787), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym_macro_type_specifier] = STATE(822), - [aux_sym__type_definition_type_repeat1] = STATE(1034), - [aux_sym_sized_type_specifier_repeat1] = STATE(1141), - [sym_identifier] = ACTIONS(1676), + [390] = { + [sym_type_qualifier] = STATE(983), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_expression] = STATE(1044), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1879), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_type_descriptor] = STATE(1811), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__type_definition_type_repeat1] = STATE(983), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(1692), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -60289,10 +55140,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1678), - [anon_sym_unsigned] = ACTIONS(1678), - [anon_sym_long] = ACTIONS(1678), - [anon_sym_short] = ACTIONS(1678), + [anon_sym_signed] = ACTIONS(1694), + [anon_sym_unsigned] = ACTIONS(1694), + [anon_sym_long] = ACTIONS(1694), + [anon_sym_short] = ACTIONS(1694), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -60304,7 +55155,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(1680), + [anon_sym_enum] = ACTIONS(1696), [anon_sym_struct] = ACTIONS(55), [anon_sym_union] = ACTIONS(57), [anon_sym_DASH_DASH] = ACTIONS(81), @@ -60336,44 +55187,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [441] = { - [sym_type_qualifier] = STATE(1034), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(1127), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym__expression] = STATE(1080), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1991), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_type_descriptor] = STATE(1988), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym_macro_type_specifier] = STATE(822), - [aux_sym__type_definition_type_repeat1] = STATE(1034), - [aux_sym_sized_type_specifier_repeat1] = STATE(1141), - [sym_identifier] = ACTIONS(1676), + [391] = { + [sym_type_qualifier] = STATE(983), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_expression] = STATE(1044), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1879), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_type_descriptor] = STATE(1764), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__type_definition_type_repeat1] = STATE(983), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(1692), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -60382,10 +55232,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1678), - [anon_sym_unsigned] = ACTIONS(1678), - [anon_sym_long] = ACTIONS(1678), - [anon_sym_short] = ACTIONS(1678), + [anon_sym_signed] = ACTIONS(1694), + [anon_sym_unsigned] = ACTIONS(1694), + [anon_sym_long] = ACTIONS(1694), + [anon_sym_short] = ACTIONS(1694), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -60397,7 +55247,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(1680), + [anon_sym_enum] = ACTIONS(1696), [anon_sym_struct] = ACTIONS(55), [anon_sym_union] = ACTIONS(57), [anon_sym_DASH_DASH] = ACTIONS(81), @@ -60429,44 +55279,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [442] = { - [sym_type_qualifier] = STATE(1034), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(1127), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym__expression] = STATE(1080), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1991), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_type_descriptor] = STATE(1805), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym_macro_type_specifier] = STATE(822), - [aux_sym__type_definition_type_repeat1] = STATE(1034), - [aux_sym_sized_type_specifier_repeat1] = STATE(1141), - [sym_identifier] = ACTIONS(1676), + [392] = { + [sym_type_qualifier] = STATE(983), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_expression] = STATE(1044), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1879), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_type_descriptor] = STATE(1823), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__type_definition_type_repeat1] = STATE(983), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(1692), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -60475,10 +55324,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1678), - [anon_sym_unsigned] = ACTIONS(1678), - [anon_sym_long] = ACTIONS(1678), - [anon_sym_short] = ACTIONS(1678), + [anon_sym_signed] = ACTIONS(1694), + [anon_sym_unsigned] = ACTIONS(1694), + [anon_sym_long] = ACTIONS(1694), + [anon_sym_short] = ACTIONS(1694), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -60490,7 +55339,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(1680), + [anon_sym_enum] = ACTIONS(1696), [anon_sym_struct] = ACTIONS(55), [anon_sym_union] = ACTIONS(57), [anon_sym_DASH_DASH] = ACTIONS(81), @@ -60522,44 +55371,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [443] = { - [sym_type_qualifier] = STATE(1034), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(1127), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym__expression] = STATE(1080), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1991), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_type_descriptor] = STATE(1995), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym_macro_type_specifier] = STATE(822), - [aux_sym__type_definition_type_repeat1] = STATE(1034), - [aux_sym_sized_type_specifier_repeat1] = STATE(1141), - [sym_identifier] = ACTIONS(1676), + [393] = { + [sym_type_qualifier] = STATE(983), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_expression] = STATE(1044), + [sym__string] = STATE(672), + [sym_comma_expression] = STATE(1879), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_type_descriptor] = STATE(1767), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__type_definition_type_repeat1] = STATE(983), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(1692), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -60568,10 +55416,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1678), - [anon_sym_unsigned] = ACTIONS(1678), - [anon_sym_long] = ACTIONS(1678), - [anon_sym_short] = ACTIONS(1678), + [anon_sym_signed] = ACTIONS(1694), + [anon_sym_unsigned] = ACTIONS(1694), + [anon_sym_long] = ACTIONS(1694), + [anon_sym_short] = ACTIONS(1694), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -60583,7 +55431,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(1680), + [anon_sym_enum] = ACTIONS(1696), [anon_sym_struct] = ACTIONS(55), [anon_sym_union] = ACTIONS(57), [anon_sym_DASH_DASH] = ACTIONS(81), @@ -60615,44 +55463,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [444] = { - [sym_type_qualifier] = STATE(1034), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(1127), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym__expression] = STATE(1080), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1991), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_type_descriptor] = STATE(2027), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym_macro_type_specifier] = STATE(822), - [aux_sym__type_definition_type_repeat1] = STATE(1034), - [aux_sym_sized_type_specifier_repeat1] = STATE(1141), - [sym_identifier] = ACTIONS(1676), + [394] = { + [sym_type_qualifier] = STATE(983), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_expression] = STATE(1051), + [sym__string] = STATE(672), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_type_descriptor] = STATE(1889), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__type_definition_type_repeat1] = STATE(983), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(1692), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -60661,10 +55507,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1678), - [anon_sym_unsigned] = ACTIONS(1678), - [anon_sym_long] = ACTIONS(1678), - [anon_sym_short] = ACTIONS(1678), + [anon_sym_signed] = ACTIONS(1694), + [anon_sym_unsigned] = ACTIONS(1694), + [anon_sym_long] = ACTIONS(1694), + [anon_sym_short] = ACTIONS(1694), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -60676,7 +55522,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(1680), + [anon_sym_enum] = ACTIONS(1696), [anon_sym_struct] = ACTIONS(55), [anon_sym_union] = ACTIONS(57), [anon_sym_DASH_DASH] = ACTIONS(81), @@ -60708,44 +55554,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [445] = { - [sym_type_qualifier] = STATE(1034), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(1127), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym__expression] = STATE(1080), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_comma_expression] = STATE(1991), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_type_descriptor] = STATE(1851), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym_macro_type_specifier] = STATE(822), - [aux_sym__type_definition_type_repeat1] = STATE(1034), - [aux_sym_sized_type_specifier_repeat1] = STATE(1141), - [sym_identifier] = ACTIONS(1676), + [395] = { + [sym_type_qualifier] = STATE(983), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_expression] = STATE(1060), + [sym__string] = STATE(672), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_type_descriptor] = STATE(1916), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__type_definition_type_repeat1] = STATE(983), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(1692), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -60754,10 +55598,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1678), - [anon_sym_unsigned] = ACTIONS(1678), - [anon_sym_long] = ACTIONS(1678), - [anon_sym_short] = ACTIONS(1678), + [anon_sym_signed] = ACTIONS(1694), + [anon_sym_unsigned] = ACTIONS(1694), + [anon_sym_long] = ACTIONS(1694), + [anon_sym_short] = ACTIONS(1694), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -60769,7 +55613,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(1680), + [anon_sym_enum] = ACTIONS(1696), [anon_sym_struct] = ACTIONS(55), [anon_sym_union] = ACTIONS(57), [anon_sym_DASH_DASH] = ACTIONS(81), @@ -60801,429 +55645,244 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [446] = { - [sym_type_qualifier] = STATE(1034), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(1127), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym__expression] = STATE(1119), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_type_descriptor] = STATE(1898), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym_macro_type_specifier] = STATE(822), - [aux_sym__type_definition_type_repeat1] = STATE(1034), - [aux_sym_sized_type_specifier_repeat1] = STATE(1141), - [sym_identifier] = ACTIONS(1676), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1678), - [anon_sym_unsigned] = ACTIONS(1678), - [anon_sym_long] = ACTIONS(1678), - [anon_sym_short] = ACTIONS(1678), - [anon_sym_const] = ACTIONS(47), - [anon_sym_constexpr] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym___restrict__] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(47), - [anon_sym__Noreturn] = ACTIONS(47), - [anon_sym_noreturn] = ACTIONS(47), - [anon_sym_alignas] = ACTIONS(49), - [anon_sym__Alignas] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(1680), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - }, - [447] = { - [sym_type_qualifier] = STATE(1034), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(1127), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym__expression] = STATE(1122), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_type_descriptor] = STATE(1998), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym_macro_type_specifier] = STATE(822), - [aux_sym__type_definition_type_repeat1] = STATE(1034), - [aux_sym_sized_type_specifier_repeat1] = STATE(1141), - [sym_identifier] = ACTIONS(1676), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1678), - [anon_sym_unsigned] = ACTIONS(1678), - [anon_sym_long] = ACTIONS(1678), - [anon_sym_short] = ACTIONS(1678), - [anon_sym_const] = ACTIONS(47), - [anon_sym_constexpr] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym___restrict__] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(47), - [anon_sym__Noreturn] = ACTIONS(47), - [anon_sym_noreturn] = ACTIONS(47), - [anon_sym_alignas] = ACTIONS(49), - [anon_sym__Alignas] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(1680), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - }, - [448] = { - [sym_identifier] = ACTIONS(1682), - [anon_sym_COMMA] = ACTIONS(1684), - [anon_sym_RPAREN] = ACTIONS(1684), - [anon_sym_LPAREN2] = ACTIONS(1684), - [anon_sym_BANG] = ACTIONS(1684), - [anon_sym_TILDE] = ACTIONS(1684), - [anon_sym_DASH] = ACTIONS(1682), - [anon_sym_PLUS] = ACTIONS(1682), - [anon_sym_STAR] = ACTIONS(1684), - [anon_sym_AMP] = ACTIONS(1684), - [anon_sym_SEMI] = ACTIONS(1684), - [anon_sym___extension__] = ACTIONS(1682), - [anon_sym_extern] = ACTIONS(1682), - [anon_sym___attribute__] = ACTIONS(1682), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1684), - [anon_sym___declspec] = ACTIONS(1682), - [anon_sym_LBRACE] = ACTIONS(1684), - [anon_sym_signed] = ACTIONS(1682), - [anon_sym_unsigned] = ACTIONS(1682), - [anon_sym_long] = ACTIONS(1682), - [anon_sym_short] = ACTIONS(1682), - [anon_sym_LBRACK] = ACTIONS(1682), - [anon_sym_static] = ACTIONS(1682), - [anon_sym_EQ] = ACTIONS(1684), - [anon_sym_auto] = ACTIONS(1682), - [anon_sym_register] = ACTIONS(1682), - [anon_sym_inline] = ACTIONS(1682), - [anon_sym___inline] = ACTIONS(1682), - [anon_sym___inline__] = ACTIONS(1682), - [anon_sym___forceinline] = ACTIONS(1682), - [anon_sym_thread_local] = ACTIONS(1682), - [anon_sym___thread] = ACTIONS(1682), - [anon_sym_const] = ACTIONS(1682), - [anon_sym_constexpr] = ACTIONS(1682), - [anon_sym_volatile] = ACTIONS(1682), - [anon_sym_restrict] = ACTIONS(1682), - [anon_sym___restrict__] = ACTIONS(1682), - [anon_sym__Atomic] = ACTIONS(1682), - [anon_sym__Noreturn] = ACTIONS(1682), - [anon_sym_noreturn] = ACTIONS(1682), - [anon_sym_alignas] = ACTIONS(1682), - [anon_sym__Alignas] = ACTIONS(1682), - [sym_primitive_type] = ACTIONS(1682), - [anon_sym_enum] = ACTIONS(1682), - [anon_sym_COLON] = ACTIONS(1684), - [anon_sym_struct] = ACTIONS(1682), - [anon_sym_union] = ACTIONS(1682), - [anon_sym_if] = ACTIONS(1682), - [anon_sym_switch] = ACTIONS(1682), - [anon_sym_case] = ACTIONS(1682), - [anon_sym_default] = ACTIONS(1682), - [anon_sym_while] = ACTIONS(1682), - [anon_sym_do] = ACTIONS(1682), - [anon_sym_for] = ACTIONS(1682), - [anon_sym_return] = ACTIONS(1682), - [anon_sym_break] = ACTIONS(1682), - [anon_sym_continue] = ACTIONS(1682), - [anon_sym_goto] = ACTIONS(1682), - [anon_sym___try] = ACTIONS(1682), - [anon_sym___leave] = ACTIONS(1682), - [anon_sym_DASH_DASH] = ACTIONS(1684), - [anon_sym_PLUS_PLUS] = ACTIONS(1684), - [anon_sym_sizeof] = ACTIONS(1682), - [anon_sym___alignof__] = ACTIONS(1682), - [anon_sym___alignof] = ACTIONS(1682), - [anon_sym__alignof] = ACTIONS(1682), - [anon_sym_alignof] = ACTIONS(1682), - [anon_sym__Alignof] = ACTIONS(1682), - [anon_sym_offsetof] = ACTIONS(1682), - [anon_sym__Generic] = ACTIONS(1682), - [anon_sym_asm] = ACTIONS(1682), - [anon_sym___asm__] = ACTIONS(1682), - [sym_number_literal] = ACTIONS(1684), - [anon_sym_L_SQUOTE] = ACTIONS(1684), - [anon_sym_u_SQUOTE] = ACTIONS(1684), - [anon_sym_U_SQUOTE] = ACTIONS(1684), - [anon_sym_u8_SQUOTE] = ACTIONS(1684), - [anon_sym_SQUOTE] = ACTIONS(1684), - [anon_sym_L_DQUOTE] = ACTIONS(1684), - [anon_sym_u_DQUOTE] = ACTIONS(1684), - [anon_sym_U_DQUOTE] = ACTIONS(1684), - [anon_sym_u8_DQUOTE] = ACTIONS(1684), - [anon_sym_DQUOTE] = ACTIONS(1684), - [sym_true] = ACTIONS(1682), - [sym_false] = ACTIONS(1682), - [anon_sym_NULL] = ACTIONS(1682), - [anon_sym_nullptr] = ACTIONS(1682), + [396] = { + [sym_identifier] = ACTIONS(1698), + [anon_sym_COMMA] = ACTIONS(1700), + [anon_sym_RPAREN] = ACTIONS(1700), + [anon_sym_LPAREN2] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(1700), + [anon_sym_TILDE] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1698), + [anon_sym_STAR] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1700), + [anon_sym_SEMI] = ACTIONS(1700), + [anon_sym___extension__] = ACTIONS(1698), + [anon_sym_extern] = ACTIONS(1698), + [anon_sym___attribute__] = ACTIONS(1698), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1700), + [anon_sym___declspec] = ACTIONS(1698), + [anon_sym_LBRACE] = ACTIONS(1700), + [anon_sym_signed] = ACTIONS(1698), + [anon_sym_unsigned] = ACTIONS(1698), + [anon_sym_long] = ACTIONS(1698), + [anon_sym_short] = ACTIONS(1698), + [anon_sym_LBRACK] = ACTIONS(1698), + [anon_sym_static] = ACTIONS(1698), + [anon_sym_EQ] = ACTIONS(1700), + [anon_sym_auto] = ACTIONS(1698), + [anon_sym_register] = ACTIONS(1698), + [anon_sym_inline] = ACTIONS(1698), + [anon_sym___inline] = ACTIONS(1698), + [anon_sym___inline__] = ACTIONS(1698), + [anon_sym___forceinline] = ACTIONS(1698), + [anon_sym_thread_local] = ACTIONS(1698), + [anon_sym___thread] = ACTIONS(1698), + [anon_sym_const] = ACTIONS(1698), + [anon_sym_constexpr] = ACTIONS(1698), + [anon_sym_volatile] = ACTIONS(1698), + [anon_sym_restrict] = ACTIONS(1698), + [anon_sym___restrict__] = ACTIONS(1698), + [anon_sym__Atomic] = ACTIONS(1698), + [anon_sym__Noreturn] = ACTIONS(1698), + [anon_sym_noreturn] = ACTIONS(1698), + [anon_sym_alignas] = ACTIONS(1698), + [anon_sym__Alignas] = ACTIONS(1698), + [sym_primitive_type] = ACTIONS(1698), + [anon_sym_enum] = ACTIONS(1698), + [anon_sym_COLON] = ACTIONS(1700), + [anon_sym_struct] = ACTIONS(1698), + [anon_sym_union] = ACTIONS(1698), + [anon_sym_if] = ACTIONS(1698), + [anon_sym_switch] = ACTIONS(1698), + [anon_sym_case] = ACTIONS(1698), + [anon_sym_default] = ACTIONS(1698), + [anon_sym_while] = ACTIONS(1698), + [anon_sym_do] = ACTIONS(1698), + [anon_sym_for] = ACTIONS(1698), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_break] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(1698), + [anon_sym_goto] = ACTIONS(1698), + [anon_sym___try] = ACTIONS(1698), + [anon_sym___leave] = ACTIONS(1698), + [anon_sym_DASH_DASH] = ACTIONS(1700), + [anon_sym_PLUS_PLUS] = ACTIONS(1700), + [anon_sym_sizeof] = ACTIONS(1698), + [anon_sym___alignof__] = ACTIONS(1698), + [anon_sym___alignof] = ACTIONS(1698), + [anon_sym__alignof] = ACTIONS(1698), + [anon_sym_alignof] = ACTIONS(1698), + [anon_sym__Alignof] = ACTIONS(1698), + [anon_sym_offsetof] = ACTIONS(1698), + [anon_sym__Generic] = ACTIONS(1698), + [anon_sym_asm] = ACTIONS(1698), + [anon_sym___asm__] = ACTIONS(1698), + [sym_number_literal] = ACTIONS(1700), + [anon_sym_L_SQUOTE] = ACTIONS(1700), + [anon_sym_u_SQUOTE] = ACTIONS(1700), + [anon_sym_U_SQUOTE] = ACTIONS(1700), + [anon_sym_u8_SQUOTE] = ACTIONS(1700), + [anon_sym_SQUOTE] = ACTIONS(1700), + [anon_sym_L_DQUOTE] = ACTIONS(1700), + [anon_sym_u_DQUOTE] = ACTIONS(1700), + [anon_sym_U_DQUOTE] = ACTIONS(1700), + [anon_sym_u8_DQUOTE] = ACTIONS(1700), + [anon_sym_DQUOTE] = ACTIONS(1700), + [sym_true] = ACTIONS(1698), + [sym_false] = ACTIONS(1698), + [anon_sym_NULL] = ACTIONS(1698), + [anon_sym_nullptr] = ACTIONS(1698), [sym_comment] = ACTIONS(3), }, - [449] = { - [sym_identifier] = ACTIONS(1686), - [anon_sym_COMMA] = ACTIONS(1688), - [anon_sym_RPAREN] = ACTIONS(1688), - [anon_sym_LPAREN2] = ACTIONS(1688), - [anon_sym_BANG] = ACTIONS(1688), - [anon_sym_TILDE] = ACTIONS(1688), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(1688), - [anon_sym_AMP] = ACTIONS(1688), - [anon_sym_SEMI] = ACTIONS(1688), - [anon_sym___extension__] = ACTIONS(1686), - [anon_sym_extern] = ACTIONS(1686), - [anon_sym___attribute__] = ACTIONS(1686), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1688), - [anon_sym___declspec] = ACTIONS(1686), - [anon_sym_LBRACE] = ACTIONS(1688), - [anon_sym_signed] = ACTIONS(1686), - [anon_sym_unsigned] = ACTIONS(1686), - [anon_sym_long] = ACTIONS(1686), - [anon_sym_short] = ACTIONS(1686), - [anon_sym_LBRACK] = ACTIONS(1686), - [anon_sym_static] = ACTIONS(1686), - [anon_sym_EQ] = ACTIONS(1688), - [anon_sym_auto] = ACTIONS(1686), - [anon_sym_register] = ACTIONS(1686), - [anon_sym_inline] = ACTIONS(1686), - [anon_sym___inline] = ACTIONS(1686), - [anon_sym___inline__] = ACTIONS(1686), - [anon_sym___forceinline] = ACTIONS(1686), - [anon_sym_thread_local] = ACTIONS(1686), - [anon_sym___thread] = ACTIONS(1686), - [anon_sym_const] = ACTIONS(1686), - [anon_sym_constexpr] = ACTIONS(1686), - [anon_sym_volatile] = ACTIONS(1686), - [anon_sym_restrict] = ACTIONS(1686), - [anon_sym___restrict__] = ACTIONS(1686), - [anon_sym__Atomic] = ACTIONS(1686), - [anon_sym__Noreturn] = ACTIONS(1686), - [anon_sym_noreturn] = ACTIONS(1686), - [anon_sym_alignas] = ACTIONS(1686), - [anon_sym__Alignas] = ACTIONS(1686), - [sym_primitive_type] = ACTIONS(1686), - [anon_sym_enum] = ACTIONS(1686), - [anon_sym_COLON] = ACTIONS(1688), - [anon_sym_struct] = ACTIONS(1686), - [anon_sym_union] = ACTIONS(1686), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_switch] = ACTIONS(1686), - [anon_sym_case] = ACTIONS(1686), - [anon_sym_default] = ACTIONS(1686), - [anon_sym_while] = ACTIONS(1686), - [anon_sym_do] = ACTIONS(1686), - [anon_sym_for] = ACTIONS(1686), - [anon_sym_return] = ACTIONS(1686), - [anon_sym_break] = ACTIONS(1686), - [anon_sym_continue] = ACTIONS(1686), - [anon_sym_goto] = ACTIONS(1686), - [anon_sym___try] = ACTIONS(1686), - [anon_sym___leave] = ACTIONS(1686), - [anon_sym_DASH_DASH] = ACTIONS(1688), - [anon_sym_PLUS_PLUS] = ACTIONS(1688), - [anon_sym_sizeof] = ACTIONS(1686), - [anon_sym___alignof__] = ACTIONS(1686), - [anon_sym___alignof] = ACTIONS(1686), - [anon_sym__alignof] = ACTIONS(1686), - [anon_sym_alignof] = ACTIONS(1686), - [anon_sym__Alignof] = ACTIONS(1686), - [anon_sym_offsetof] = ACTIONS(1686), - [anon_sym__Generic] = ACTIONS(1686), - [anon_sym_asm] = ACTIONS(1686), - [anon_sym___asm__] = ACTIONS(1686), - [sym_number_literal] = ACTIONS(1688), - [anon_sym_L_SQUOTE] = ACTIONS(1688), - [anon_sym_u_SQUOTE] = ACTIONS(1688), - [anon_sym_U_SQUOTE] = ACTIONS(1688), - [anon_sym_u8_SQUOTE] = ACTIONS(1688), - [anon_sym_SQUOTE] = ACTIONS(1688), - [anon_sym_L_DQUOTE] = ACTIONS(1688), - [anon_sym_u_DQUOTE] = ACTIONS(1688), - [anon_sym_U_DQUOTE] = ACTIONS(1688), - [anon_sym_u8_DQUOTE] = ACTIONS(1688), - [anon_sym_DQUOTE] = ACTIONS(1688), - [sym_true] = ACTIONS(1686), - [sym_false] = ACTIONS(1686), - [anon_sym_NULL] = ACTIONS(1686), - [anon_sym_nullptr] = ACTIONS(1686), + [397] = { + [sym_identifier] = ACTIONS(1702), + [anon_sym_COMMA] = ACTIONS(1704), + [anon_sym_RPAREN] = ACTIONS(1704), + [anon_sym_LPAREN2] = ACTIONS(1704), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1702), + [anon_sym_STAR] = ACTIONS(1704), + [anon_sym_AMP] = ACTIONS(1704), + [anon_sym_SEMI] = ACTIONS(1704), + [anon_sym___extension__] = ACTIONS(1702), + [anon_sym_extern] = ACTIONS(1702), + [anon_sym___attribute__] = ACTIONS(1702), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1704), + [anon_sym___declspec] = ACTIONS(1702), + [anon_sym_LBRACE] = ACTIONS(1704), + [anon_sym_signed] = ACTIONS(1702), + [anon_sym_unsigned] = ACTIONS(1702), + [anon_sym_long] = ACTIONS(1702), + [anon_sym_short] = ACTIONS(1702), + [anon_sym_LBRACK] = ACTIONS(1702), + [anon_sym_static] = ACTIONS(1702), + [anon_sym_EQ] = ACTIONS(1704), + [anon_sym_auto] = ACTIONS(1702), + [anon_sym_register] = ACTIONS(1702), + [anon_sym_inline] = ACTIONS(1702), + [anon_sym___inline] = ACTIONS(1702), + [anon_sym___inline__] = ACTIONS(1702), + [anon_sym___forceinline] = ACTIONS(1702), + [anon_sym_thread_local] = ACTIONS(1702), + [anon_sym___thread] = ACTIONS(1702), + [anon_sym_const] = ACTIONS(1702), + [anon_sym_constexpr] = ACTIONS(1702), + [anon_sym_volatile] = ACTIONS(1702), + [anon_sym_restrict] = ACTIONS(1702), + [anon_sym___restrict__] = ACTIONS(1702), + [anon_sym__Atomic] = ACTIONS(1702), + [anon_sym__Noreturn] = ACTIONS(1702), + [anon_sym_noreturn] = ACTIONS(1702), + [anon_sym_alignas] = ACTIONS(1702), + [anon_sym__Alignas] = ACTIONS(1702), + [sym_primitive_type] = ACTIONS(1702), + [anon_sym_enum] = ACTIONS(1702), + [anon_sym_COLON] = ACTIONS(1704), + [anon_sym_struct] = ACTIONS(1702), + [anon_sym_union] = ACTIONS(1702), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_switch] = ACTIONS(1702), + [anon_sym_case] = ACTIONS(1702), + [anon_sym_default] = ACTIONS(1702), + [anon_sym_while] = ACTIONS(1702), + [anon_sym_do] = ACTIONS(1702), + [anon_sym_for] = ACTIONS(1702), + [anon_sym_return] = ACTIONS(1702), + [anon_sym_break] = ACTIONS(1702), + [anon_sym_continue] = ACTIONS(1702), + [anon_sym_goto] = ACTIONS(1702), + [anon_sym___try] = ACTIONS(1702), + [anon_sym___leave] = ACTIONS(1702), + [anon_sym_DASH_DASH] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1704), + [anon_sym_sizeof] = ACTIONS(1702), + [anon_sym___alignof__] = ACTIONS(1702), + [anon_sym___alignof] = ACTIONS(1702), + [anon_sym__alignof] = ACTIONS(1702), + [anon_sym_alignof] = ACTIONS(1702), + [anon_sym__Alignof] = ACTIONS(1702), + [anon_sym_offsetof] = ACTIONS(1702), + [anon_sym__Generic] = ACTIONS(1702), + [anon_sym_asm] = ACTIONS(1702), + [anon_sym___asm__] = ACTIONS(1702), + [sym_number_literal] = ACTIONS(1704), + [anon_sym_L_SQUOTE] = ACTIONS(1704), + [anon_sym_u_SQUOTE] = ACTIONS(1704), + [anon_sym_U_SQUOTE] = ACTIONS(1704), + [anon_sym_u8_SQUOTE] = ACTIONS(1704), + [anon_sym_SQUOTE] = ACTIONS(1704), + [anon_sym_L_DQUOTE] = ACTIONS(1704), + [anon_sym_u_DQUOTE] = ACTIONS(1704), + [anon_sym_U_DQUOTE] = ACTIONS(1704), + [anon_sym_u8_DQUOTE] = ACTIONS(1704), + [anon_sym_DQUOTE] = ACTIONS(1704), + [sym_true] = ACTIONS(1702), + [sym_false] = ACTIONS(1702), + [anon_sym_NULL] = ACTIONS(1702), + [anon_sym_nullptr] = ACTIONS(1702), [sym_comment] = ACTIONS(3), }, - [450] = { - [sym__expression] = STATE(747), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_initializer_list] = STATE(723), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym_identifier] = ACTIONS(1690), - [anon_sym_COMMA] = ACTIONS(1367), - [anon_sym_RPAREN] = ACTIONS(1367), - [anon_sym_LPAREN2] = ACTIONS(1367), + [398] = { + [sym_expression] = STATE(680), + [sym__string] = STATE(672), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_initializer_list] = STATE(676), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_identifier] = ACTIONS(1706), + [anon_sym_COMMA] = ACTIONS(1377), + [anon_sym_RPAREN] = ACTIONS(1377), + [anon_sym_LPAREN2] = ACTIONS(1377), [anon_sym_BANG] = ACTIONS(23), [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(1373), - [anon_sym_PLUS] = ACTIONS(1373), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_SLASH] = ACTIONS(1373), - [anon_sym_PERCENT] = ACTIONS(1367), - [anon_sym_PIPE_PIPE] = ACTIONS(1367), - [anon_sym_AMP_AMP] = ACTIONS(1367), - [anon_sym_PIPE] = ACTIONS(1373), - [anon_sym_CARET] = ACTIONS(1367), - [anon_sym_AMP] = ACTIONS(1373), - [anon_sym_EQ_EQ] = ACTIONS(1367), - [anon_sym_BANG_EQ] = ACTIONS(1367), - [anon_sym_GT] = ACTIONS(1373), - [anon_sym_GT_EQ] = ACTIONS(1367), - [anon_sym_LT_EQ] = ACTIONS(1367), - [anon_sym_LT] = ACTIONS(1373), - [anon_sym_LT_LT] = ACTIONS(1367), - [anon_sym_GT_GT] = ACTIONS(1367), - [anon_sym_SEMI] = ACTIONS(1367), - [anon_sym___attribute__] = ACTIONS(1373), - [anon_sym_LBRACE] = ACTIONS(1375), - [anon_sym_RBRACE] = ACTIONS(1367), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_COLON] = ACTIONS(1367), - [anon_sym_QMARK] = ACTIONS(1367), - [anon_sym_DASH_DASH] = ACTIONS(1367), - [anon_sym_PLUS_PLUS] = ACTIONS(1367), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1383), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_SLASH] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1377), + [anon_sym_PIPE_PIPE] = ACTIONS(1377), + [anon_sym_AMP_AMP] = ACTIONS(1377), + [anon_sym_PIPE] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1383), + [anon_sym_EQ_EQ] = ACTIONS(1377), + [anon_sym_BANG_EQ] = ACTIONS(1377), + [anon_sym_GT] = ACTIONS(1383), + [anon_sym_GT_EQ] = ACTIONS(1377), + [anon_sym_LT_EQ] = ACTIONS(1377), + [anon_sym_LT] = ACTIONS(1383), + [anon_sym_LT_LT] = ACTIONS(1377), + [anon_sym_GT_GT] = ACTIONS(1377), + [anon_sym_SEMI] = ACTIONS(1377), + [anon_sym___attribute__] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1385), + [anon_sym_RBRACE] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_COLON] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), [anon_sym_sizeof] = ACTIONS(83), [anon_sym___alignof__] = ACTIONS(85), [anon_sym___alignof] = ACTIONS(85), @@ -61234,8 +55893,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(89), [anon_sym_asm] = ACTIONS(91), [anon_sym___asm__] = ACTIONS(91), - [anon_sym_DOT] = ACTIONS(1373), - [anon_sym_DASH_GT] = ACTIONS(1367), + [anon_sym_DOT] = ACTIONS(1383), + [anon_sym_DASH_GT] = ACTIONS(1377), [sym_number_literal] = ACTIONS(159), [anon_sym_L_SQUOTE] = ACTIONS(95), [anon_sym_u_SQUOTE] = ACTIONS(95), @@ -61253,66 +55912,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [451] = { - [sym__expression] = STATE(747), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(844), - [sym_initializer_list] = STATE(723), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(732), - [sym_null] = STATE(725), - [sym_identifier] = ACTIONS(1373), - [anon_sym_COMMA] = ACTIONS(1367), - [aux_sym_preproc_if_token2] = ACTIONS(1367), - [aux_sym_preproc_else_token1] = ACTIONS(1367), - [aux_sym_preproc_elif_token1] = ACTIONS(1373), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1367), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1367), - [anon_sym_LPAREN2] = ACTIONS(1367), - [anon_sym_BANG] = ACTIONS(1692), - [anon_sym_TILDE] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1373), - [anon_sym_PLUS] = ACTIONS(1373), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_SLASH] = ACTIONS(1373), - [anon_sym_PERCENT] = ACTIONS(1367), - [anon_sym_PIPE_PIPE] = ACTIONS(1367), - [anon_sym_AMP_AMP] = ACTIONS(1367), - [anon_sym_PIPE] = ACTIONS(1373), - [anon_sym_CARET] = ACTIONS(1367), - [anon_sym_AMP] = ACTIONS(1373), - [anon_sym_EQ_EQ] = ACTIONS(1367), - [anon_sym_BANG_EQ] = ACTIONS(1367), - [anon_sym_GT] = ACTIONS(1373), - [anon_sym_GT_EQ] = ACTIONS(1367), - [anon_sym_LT_EQ] = ACTIONS(1367), - [anon_sym_LT] = ACTIONS(1373), - [anon_sym_LT_LT] = ACTIONS(1367), - [anon_sym_GT_GT] = ACTIONS(1367), - [anon_sym_LBRACE] = ACTIONS(1375), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_QMARK] = ACTIONS(1367), - [anon_sym_DASH_DASH] = ACTIONS(1367), - [anon_sym_PLUS_PLUS] = ACTIONS(1367), - [anon_sym_sizeof] = ACTIONS(1696), + [399] = { + [sym_expression] = STATE(680), + [sym__string] = STATE(672), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(793), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(793), + [sym_call_expression] = STATE(793), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(793), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(793), + [sym_initializer_list] = STATE(676), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(679), + [sym_null] = STATE(672), + [sym_identifier] = ACTIONS(1383), + [anon_sym_COMMA] = ACTIONS(1377), + [aux_sym_preproc_if_token2] = ACTIONS(1377), + [aux_sym_preproc_else_token1] = ACTIONS(1377), + [aux_sym_preproc_elif_token1] = ACTIONS(1383), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1377), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1377), + [anon_sym_LPAREN2] = ACTIONS(1377), + [anon_sym_BANG] = ACTIONS(1708), + [anon_sym_TILDE] = ACTIONS(1710), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1383), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_SLASH] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1377), + [anon_sym_PIPE_PIPE] = ACTIONS(1377), + [anon_sym_AMP_AMP] = ACTIONS(1377), + [anon_sym_PIPE] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1383), + [anon_sym_EQ_EQ] = ACTIONS(1377), + [anon_sym_BANG_EQ] = ACTIONS(1377), + [anon_sym_GT] = ACTIONS(1383), + [anon_sym_GT_EQ] = ACTIONS(1377), + [anon_sym_LT_EQ] = ACTIONS(1377), + [anon_sym_LT] = ACTIONS(1383), + [anon_sym_LT_LT] = ACTIONS(1377), + [anon_sym_GT_GT] = ACTIONS(1377), + [anon_sym_LBRACE] = ACTIONS(1385), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_sizeof] = ACTIONS(1712), [anon_sym___alignof__] = ACTIONS(85), [anon_sym___alignof] = ACTIONS(85), [anon_sym__alignof] = ACTIONS(85), @@ -61322,8 +55980,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(89), [anon_sym_asm] = ACTIONS(91), [anon_sym___asm__] = ACTIONS(91), - [anon_sym_DOT] = ACTIONS(1373), - [anon_sym_DASH_GT] = ACTIONS(1367), + [anon_sym_DOT] = ACTIONS(1383), + [anon_sym_DASH_GT] = ACTIONS(1377), [sym_number_literal] = ACTIONS(159), [anon_sym_L_SQUOTE] = ACTIONS(95), [anon_sym_u_SQUOTE] = ACTIONS(95), @@ -61341,8 +55999,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [452] = { - [sym_else_clause] = STATE(306), + [400] = { + [sym_else_clause] = STATE(157), [sym_identifier] = ACTIONS(1117), [anon_sym_LPAREN2] = ACTIONS(1119), [anon_sym_BANG] = ACTIONS(1119), @@ -61387,7 +56045,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1117), [anon_sym_union] = ACTIONS(1117), [anon_sym_if] = ACTIONS(1117), - [anon_sym_else] = ACTIONS(1698), + [anon_sym_else] = ACTIONS(1714), [anon_sym_switch] = ACTIONS(1117), [anon_sym_while] = ACTIONS(1117), [anon_sym_do] = ACTIONS(1117), @@ -61427,84 +56085,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1117), [sym_comment] = ACTIONS(3), }, - [453] = { - [sym_string_literal] = STATE(670), - [aux_sym_sized_type_specifier_repeat1] = STATE(787), - [sym_identifier] = ACTIONS(1700), - [anon_sym_COMMA] = ACTIONS(1702), - [anon_sym_LPAREN2] = ACTIONS(1704), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_STAR] = ACTIONS(1710), - [anon_sym_SLASH] = ACTIONS(1708), - [anon_sym_PERCENT] = ACTIONS(1708), - [anon_sym_PIPE_PIPE] = ACTIONS(1702), - [anon_sym_AMP_AMP] = ACTIONS(1702), - [anon_sym_PIPE] = ACTIONS(1708), - [anon_sym_CARET] = ACTIONS(1708), - [anon_sym_AMP] = ACTIONS(1708), - [anon_sym_EQ_EQ] = ACTIONS(1702), - [anon_sym_BANG_EQ] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1708), - [anon_sym_GT_EQ] = ACTIONS(1702), - [anon_sym_LT_EQ] = ACTIONS(1702), - [anon_sym_LT] = ACTIONS(1708), - [anon_sym_LT_LT] = ACTIONS(1708), - [anon_sym_GT_GT] = ACTIONS(1708), - [anon_sym_SEMI] = ACTIONS(1702), - [anon_sym___extension__] = ACTIONS(1700), - [anon_sym_extern] = ACTIONS(1700), - [anon_sym___attribute__] = ACTIONS(1700), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1713), - [anon_sym___declspec] = ACTIONS(1700), - [anon_sym___based] = ACTIONS(1700), - [anon_sym___cdecl] = ACTIONS(1700), - [anon_sym___clrcall] = ACTIONS(1700), - [anon_sym___stdcall] = ACTIONS(1700), - [anon_sym___fastcall] = ACTIONS(1700), - [anon_sym___thiscall] = ACTIONS(1700), - [anon_sym___vectorcall] = ACTIONS(1700), - [anon_sym_signed] = ACTIONS(1715), - [anon_sym_unsigned] = ACTIONS(1715), - [anon_sym_long] = ACTIONS(1715), - [anon_sym_short] = ACTIONS(1715), - [anon_sym_LBRACK] = ACTIONS(1708), - [anon_sym_static] = ACTIONS(1700), - [anon_sym_EQ] = ACTIONS(1717), - [anon_sym_auto] = ACTIONS(1700), - [anon_sym_register] = ACTIONS(1700), - [anon_sym_inline] = ACTIONS(1700), - [anon_sym___inline] = ACTIONS(1700), - [anon_sym___inline__] = ACTIONS(1700), - [anon_sym___forceinline] = ACTIONS(1700), - [anon_sym_thread_local] = ACTIONS(1700), - [anon_sym___thread] = ACTIONS(1700), - [anon_sym_const] = ACTIONS(1700), - [anon_sym_constexpr] = ACTIONS(1700), - [anon_sym_volatile] = ACTIONS(1700), - [anon_sym_restrict] = ACTIONS(1700), - [anon_sym___restrict__] = ACTIONS(1700), - [anon_sym__Atomic] = ACTIONS(1700), - [anon_sym__Noreturn] = ACTIONS(1700), - [anon_sym_noreturn] = ACTIONS(1700), - [anon_sym_alignas] = ACTIONS(1700), - [anon_sym__Alignas] = ACTIONS(1700), - [anon_sym_COLON] = ACTIONS(1719), - [anon_sym_QMARK] = ACTIONS(1702), - [anon_sym_STAR_EQ] = ACTIONS(1721), - [anon_sym_SLASH_EQ] = ACTIONS(1721), - [anon_sym_PERCENT_EQ] = ACTIONS(1721), - [anon_sym_PLUS_EQ] = ACTIONS(1721), - [anon_sym_DASH_EQ] = ACTIONS(1721), - [anon_sym_LT_LT_EQ] = ACTIONS(1721), - [anon_sym_GT_GT_EQ] = ACTIONS(1721), - [anon_sym_AMP_EQ] = ACTIONS(1721), - [anon_sym_CARET_EQ] = ACTIONS(1721), - [anon_sym_PIPE_EQ] = ACTIONS(1721), - [anon_sym_DASH_DASH] = ACTIONS(1702), - [anon_sym_PLUS_PLUS] = ACTIONS(1702), - [anon_sym_DOT] = ACTIONS(1702), - [anon_sym_DASH_GT] = ACTIONS(1702), + [401] = { + [sym_string_literal] = STATE(616), + [aux_sym_sized_type_specifier_repeat1] = STATE(782), + [sym_identifier] = ACTIONS(1716), + [anon_sym_COMMA] = ACTIONS(1718), + [anon_sym_LPAREN2] = ACTIONS(1720), + [anon_sym_DASH] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1724), + [anon_sym_STAR] = ACTIONS(1726), + [anon_sym_SLASH] = ACTIONS(1724), + [anon_sym_PERCENT] = ACTIONS(1724), + [anon_sym_PIPE_PIPE] = ACTIONS(1718), + [anon_sym_AMP_AMP] = ACTIONS(1718), + [anon_sym_PIPE] = ACTIONS(1724), + [anon_sym_CARET] = ACTIONS(1724), + [anon_sym_AMP] = ACTIONS(1724), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_GT] = ACTIONS(1724), + [anon_sym_GT_EQ] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1718), + [anon_sym_LT] = ACTIONS(1724), + [anon_sym_LT_LT] = ACTIONS(1724), + [anon_sym_GT_GT] = ACTIONS(1724), + [anon_sym_SEMI] = ACTIONS(1718), + [anon_sym___extension__] = ACTIONS(1716), + [anon_sym_extern] = ACTIONS(1716), + [anon_sym___attribute__] = ACTIONS(1716), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1729), + [anon_sym___declspec] = ACTIONS(1716), + [anon_sym___based] = ACTIONS(1716), + [anon_sym___cdecl] = ACTIONS(1716), + [anon_sym___clrcall] = ACTIONS(1716), + [anon_sym___stdcall] = ACTIONS(1716), + [anon_sym___fastcall] = ACTIONS(1716), + [anon_sym___thiscall] = ACTIONS(1716), + [anon_sym___vectorcall] = ACTIONS(1716), + [anon_sym_signed] = ACTIONS(1731), + [anon_sym_unsigned] = ACTIONS(1731), + [anon_sym_long] = ACTIONS(1731), + [anon_sym_short] = ACTIONS(1731), + [anon_sym_LBRACK] = ACTIONS(1724), + [anon_sym_static] = ACTIONS(1716), + [anon_sym_EQ] = ACTIONS(1733), + [anon_sym_auto] = ACTIONS(1716), + [anon_sym_register] = ACTIONS(1716), + [anon_sym_inline] = ACTIONS(1716), + [anon_sym___inline] = ACTIONS(1716), + [anon_sym___inline__] = ACTIONS(1716), + [anon_sym___forceinline] = ACTIONS(1716), + [anon_sym_thread_local] = ACTIONS(1716), + [anon_sym___thread] = ACTIONS(1716), + [anon_sym_const] = ACTIONS(1716), + [anon_sym_constexpr] = ACTIONS(1716), + [anon_sym_volatile] = ACTIONS(1716), + [anon_sym_restrict] = ACTIONS(1716), + [anon_sym___restrict__] = ACTIONS(1716), + [anon_sym__Atomic] = ACTIONS(1716), + [anon_sym__Noreturn] = ACTIONS(1716), + [anon_sym_noreturn] = ACTIONS(1716), + [anon_sym_alignas] = ACTIONS(1716), + [anon_sym__Alignas] = ACTIONS(1716), + [anon_sym_COLON] = ACTIONS(1735), + [anon_sym_QMARK] = ACTIONS(1718), + [anon_sym_STAR_EQ] = ACTIONS(1737), + [anon_sym_SLASH_EQ] = ACTIONS(1737), + [anon_sym_PERCENT_EQ] = ACTIONS(1737), + [anon_sym_PLUS_EQ] = ACTIONS(1737), + [anon_sym_DASH_EQ] = ACTIONS(1737), + [anon_sym_LT_LT_EQ] = ACTIONS(1737), + [anon_sym_GT_GT_EQ] = ACTIONS(1737), + [anon_sym_AMP_EQ] = ACTIONS(1737), + [anon_sym_CARET_EQ] = ACTIONS(1737), + [anon_sym_PIPE_EQ] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1718), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_DOT] = ACTIONS(1718), + [anon_sym_DASH_GT] = ACTIONS(1718), [anon_sym_L_DQUOTE] = ACTIONS(97), [anon_sym_u_DQUOTE] = ACTIONS(97), [anon_sym_U_DQUOTE] = ACTIONS(97), @@ -61512,84 +56170,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [454] = { - [sym_string_literal] = STATE(670), - [aux_sym_sized_type_specifier_repeat1] = STATE(787), - [sym_identifier] = ACTIONS(1700), - [anon_sym_COMMA] = ACTIONS(1702), - [anon_sym_LPAREN2] = ACTIONS(1704), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_STAR] = ACTIONS(1710), - [anon_sym_SLASH] = ACTIONS(1708), - [anon_sym_PERCENT] = ACTIONS(1708), - [anon_sym_PIPE_PIPE] = ACTIONS(1702), - [anon_sym_AMP_AMP] = ACTIONS(1702), - [anon_sym_PIPE] = ACTIONS(1708), - [anon_sym_CARET] = ACTIONS(1708), - [anon_sym_AMP] = ACTIONS(1708), - [anon_sym_EQ_EQ] = ACTIONS(1702), - [anon_sym_BANG_EQ] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1708), - [anon_sym_GT_EQ] = ACTIONS(1702), - [anon_sym_LT_EQ] = ACTIONS(1702), - [anon_sym_LT] = ACTIONS(1708), - [anon_sym_LT_LT] = ACTIONS(1708), - [anon_sym_GT_GT] = ACTIONS(1708), - [anon_sym_SEMI] = ACTIONS(1723), - [anon_sym___extension__] = ACTIONS(1700), - [anon_sym_extern] = ACTIONS(1700), - [anon_sym___attribute__] = ACTIONS(1700), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1713), - [anon_sym___declspec] = ACTIONS(1700), - [anon_sym___based] = ACTIONS(1700), - [anon_sym___cdecl] = ACTIONS(1700), - [anon_sym___clrcall] = ACTIONS(1700), - [anon_sym___stdcall] = ACTIONS(1700), - [anon_sym___fastcall] = ACTIONS(1700), - [anon_sym___thiscall] = ACTIONS(1700), - [anon_sym___vectorcall] = ACTIONS(1700), - [anon_sym_signed] = ACTIONS(1715), - [anon_sym_unsigned] = ACTIONS(1715), - [anon_sym_long] = ACTIONS(1715), - [anon_sym_short] = ACTIONS(1715), - [anon_sym_LBRACK] = ACTIONS(1708), - [anon_sym_static] = ACTIONS(1700), - [anon_sym_EQ] = ACTIONS(1717), - [anon_sym_auto] = ACTIONS(1700), - [anon_sym_register] = ACTIONS(1700), - [anon_sym_inline] = ACTIONS(1700), - [anon_sym___inline] = ACTIONS(1700), - [anon_sym___inline__] = ACTIONS(1700), - [anon_sym___forceinline] = ACTIONS(1700), - [anon_sym_thread_local] = ACTIONS(1700), - [anon_sym___thread] = ACTIONS(1700), - [anon_sym_const] = ACTIONS(1700), - [anon_sym_constexpr] = ACTIONS(1700), - [anon_sym_volatile] = ACTIONS(1700), - [anon_sym_restrict] = ACTIONS(1700), - [anon_sym___restrict__] = ACTIONS(1700), - [anon_sym__Atomic] = ACTIONS(1700), - [anon_sym__Noreturn] = ACTIONS(1700), - [anon_sym_noreturn] = ACTIONS(1700), - [anon_sym_alignas] = ACTIONS(1700), - [anon_sym__Alignas] = ACTIONS(1700), - [anon_sym_COLON] = ACTIONS(1726), - [anon_sym_QMARK] = ACTIONS(1702), - [anon_sym_STAR_EQ] = ACTIONS(1721), - [anon_sym_SLASH_EQ] = ACTIONS(1721), - [anon_sym_PERCENT_EQ] = ACTIONS(1721), - [anon_sym_PLUS_EQ] = ACTIONS(1721), - [anon_sym_DASH_EQ] = ACTIONS(1721), - [anon_sym_LT_LT_EQ] = ACTIONS(1721), - [anon_sym_GT_GT_EQ] = ACTIONS(1721), - [anon_sym_AMP_EQ] = ACTIONS(1721), - [anon_sym_CARET_EQ] = ACTIONS(1721), - [anon_sym_PIPE_EQ] = ACTIONS(1721), - [anon_sym_DASH_DASH] = ACTIONS(1702), - [anon_sym_PLUS_PLUS] = ACTIONS(1702), - [anon_sym_DOT] = ACTIONS(1702), - [anon_sym_DASH_GT] = ACTIONS(1702), + [402] = { + [sym_string_literal] = STATE(616), + [aux_sym_sized_type_specifier_repeat1] = STATE(782), + [sym_identifier] = ACTIONS(1716), + [anon_sym_COMMA] = ACTIONS(1718), + [anon_sym_LPAREN2] = ACTIONS(1720), + [anon_sym_DASH] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1724), + [anon_sym_STAR] = ACTIONS(1726), + [anon_sym_SLASH] = ACTIONS(1724), + [anon_sym_PERCENT] = ACTIONS(1724), + [anon_sym_PIPE_PIPE] = ACTIONS(1718), + [anon_sym_AMP_AMP] = ACTIONS(1718), + [anon_sym_PIPE] = ACTIONS(1724), + [anon_sym_CARET] = ACTIONS(1724), + [anon_sym_AMP] = ACTIONS(1724), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_GT] = ACTIONS(1724), + [anon_sym_GT_EQ] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1718), + [anon_sym_LT] = ACTIONS(1724), + [anon_sym_LT_LT] = ACTIONS(1724), + [anon_sym_GT_GT] = ACTIONS(1724), + [anon_sym_SEMI] = ACTIONS(1718), + [anon_sym___extension__] = ACTIONS(1716), + [anon_sym_extern] = ACTIONS(1716), + [anon_sym___attribute__] = ACTIONS(1716), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1729), + [anon_sym___declspec] = ACTIONS(1716), + [anon_sym___based] = ACTIONS(1716), + [anon_sym___cdecl] = ACTIONS(1716), + [anon_sym___clrcall] = ACTIONS(1716), + [anon_sym___stdcall] = ACTIONS(1716), + [anon_sym___fastcall] = ACTIONS(1716), + [anon_sym___thiscall] = ACTIONS(1716), + [anon_sym___vectorcall] = ACTIONS(1716), + [anon_sym_signed] = ACTIONS(1731), + [anon_sym_unsigned] = ACTIONS(1731), + [anon_sym_long] = ACTIONS(1731), + [anon_sym_short] = ACTIONS(1731), + [anon_sym_LBRACK] = ACTIONS(1724), + [anon_sym_static] = ACTIONS(1716), + [anon_sym_EQ] = ACTIONS(1733), + [anon_sym_auto] = ACTIONS(1716), + [anon_sym_register] = ACTIONS(1716), + [anon_sym_inline] = ACTIONS(1716), + [anon_sym___inline] = ACTIONS(1716), + [anon_sym___inline__] = ACTIONS(1716), + [anon_sym___forceinline] = ACTIONS(1716), + [anon_sym_thread_local] = ACTIONS(1716), + [anon_sym___thread] = ACTIONS(1716), + [anon_sym_const] = ACTIONS(1716), + [anon_sym_constexpr] = ACTIONS(1716), + [anon_sym_volatile] = ACTIONS(1716), + [anon_sym_restrict] = ACTIONS(1716), + [anon_sym___restrict__] = ACTIONS(1716), + [anon_sym__Atomic] = ACTIONS(1716), + [anon_sym__Noreturn] = ACTIONS(1716), + [anon_sym_noreturn] = ACTIONS(1716), + [anon_sym_alignas] = ACTIONS(1716), + [anon_sym__Alignas] = ACTIONS(1716), + [anon_sym_COLON] = ACTIONS(1739), + [anon_sym_QMARK] = ACTIONS(1718), + [anon_sym_STAR_EQ] = ACTIONS(1737), + [anon_sym_SLASH_EQ] = ACTIONS(1737), + [anon_sym_PERCENT_EQ] = ACTIONS(1737), + [anon_sym_PLUS_EQ] = ACTIONS(1737), + [anon_sym_DASH_EQ] = ACTIONS(1737), + [anon_sym_LT_LT_EQ] = ACTIONS(1737), + [anon_sym_GT_GT_EQ] = ACTIONS(1737), + [anon_sym_AMP_EQ] = ACTIONS(1737), + [anon_sym_CARET_EQ] = ACTIONS(1737), + [anon_sym_PIPE_EQ] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1718), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_DOT] = ACTIONS(1718), + [anon_sym_DASH_GT] = ACTIONS(1718), [anon_sym_L_DQUOTE] = ACTIONS(97), [anon_sym_u_DQUOTE] = ACTIONS(97), [anon_sym_U_DQUOTE] = ACTIONS(97), @@ -61597,169 +56255,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [455] = { - [sym_identifier] = ACTIONS(1728), - [anon_sym_LPAREN2] = ACTIONS(1731), - [anon_sym_BANG] = ACTIONS(1731), - [anon_sym_TILDE] = ACTIONS(1731), - [anon_sym_DASH] = ACTIONS(1733), - [anon_sym_PLUS] = ACTIONS(1733), - [anon_sym_STAR] = ACTIONS(1731), - [anon_sym_AMP] = ACTIONS(1731), - [anon_sym_SEMI] = ACTIONS(1731), - [anon_sym___extension__] = ACTIONS(1735), - [anon_sym_extern] = ACTIONS(1735), - [anon_sym___attribute__] = ACTIONS(1735), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1737), - [anon_sym___declspec] = ACTIONS(1735), - [anon_sym_LBRACE] = ACTIONS(1731), - [anon_sym_signed] = ACTIONS(1735), - [anon_sym_unsigned] = ACTIONS(1735), - [anon_sym_long] = ACTIONS(1735), - [anon_sym_short] = ACTIONS(1735), - [anon_sym_static] = ACTIONS(1735), - [anon_sym_auto] = ACTIONS(1735), - [anon_sym_register] = ACTIONS(1735), - [anon_sym_inline] = ACTIONS(1735), - [anon_sym___inline] = ACTIONS(1735), - [anon_sym___inline__] = ACTIONS(1735), - [anon_sym___forceinline] = ACTIONS(1735), - [anon_sym_thread_local] = ACTIONS(1735), - [anon_sym___thread] = ACTIONS(1735), - [anon_sym_const] = ACTIONS(1735), - [anon_sym_constexpr] = ACTIONS(1735), - [anon_sym_volatile] = ACTIONS(1735), - [anon_sym_restrict] = ACTIONS(1735), - [anon_sym___restrict__] = ACTIONS(1735), - [anon_sym__Atomic] = ACTIONS(1735), - [anon_sym__Noreturn] = ACTIONS(1735), - [anon_sym_noreturn] = ACTIONS(1735), - [anon_sym_alignas] = ACTIONS(1735), - [anon_sym__Alignas] = ACTIONS(1735), - [sym_primitive_type] = ACTIONS(1735), - [anon_sym_enum] = ACTIONS(1735), - [anon_sym_struct] = ACTIONS(1735), - [anon_sym_union] = ACTIONS(1735), - [anon_sym_if] = ACTIONS(1733), - [anon_sym_switch] = ACTIONS(1733), - [anon_sym_case] = ACTIONS(1733), - [anon_sym_default] = ACTIONS(1733), - [anon_sym_while] = ACTIONS(1733), - [anon_sym_do] = ACTIONS(1733), - [anon_sym_for] = ACTIONS(1733), - [anon_sym_return] = ACTIONS(1733), - [anon_sym_break] = ACTIONS(1733), - [anon_sym_continue] = ACTIONS(1733), - [anon_sym_goto] = ACTIONS(1733), - [anon_sym___try] = ACTIONS(1733), - [anon_sym___leave] = ACTIONS(1733), - [anon_sym_DASH_DASH] = ACTIONS(1731), - [anon_sym_PLUS_PLUS] = ACTIONS(1731), - [anon_sym_sizeof] = ACTIONS(1733), - [anon_sym___alignof__] = ACTIONS(1733), - [anon_sym___alignof] = ACTIONS(1733), - [anon_sym__alignof] = ACTIONS(1733), - [anon_sym_alignof] = ACTIONS(1733), - [anon_sym__Alignof] = ACTIONS(1733), - [anon_sym_offsetof] = ACTIONS(1733), - [anon_sym__Generic] = ACTIONS(1733), - [anon_sym_asm] = ACTIONS(1733), - [anon_sym___asm__] = ACTIONS(1733), - [sym_number_literal] = ACTIONS(1731), - [anon_sym_L_SQUOTE] = ACTIONS(1731), - [anon_sym_u_SQUOTE] = ACTIONS(1731), - [anon_sym_U_SQUOTE] = ACTIONS(1731), - [anon_sym_u8_SQUOTE] = ACTIONS(1731), - [anon_sym_SQUOTE] = ACTIONS(1731), - [anon_sym_L_DQUOTE] = ACTIONS(1731), - [anon_sym_u_DQUOTE] = ACTIONS(1731), - [anon_sym_U_DQUOTE] = ACTIONS(1731), - [anon_sym_u8_DQUOTE] = ACTIONS(1731), - [anon_sym_DQUOTE] = ACTIONS(1731), - [sym_true] = ACTIONS(1733), - [sym_false] = ACTIONS(1733), - [anon_sym_NULL] = ACTIONS(1733), - [anon_sym_nullptr] = ACTIONS(1733), + [403] = { + [sym_string_literal] = STATE(616), + [aux_sym_sized_type_specifier_repeat1] = STATE(782), + [sym_identifier] = ACTIONS(1716), + [anon_sym_COMMA] = ACTIONS(1718), + [anon_sym_LPAREN2] = ACTIONS(1720), + [anon_sym_DASH] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1724), + [anon_sym_STAR] = ACTIONS(1726), + [anon_sym_SLASH] = ACTIONS(1724), + [anon_sym_PERCENT] = ACTIONS(1724), + [anon_sym_PIPE_PIPE] = ACTIONS(1718), + [anon_sym_AMP_AMP] = ACTIONS(1718), + [anon_sym_PIPE] = ACTIONS(1724), + [anon_sym_CARET] = ACTIONS(1724), + [anon_sym_AMP] = ACTIONS(1724), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_GT] = ACTIONS(1724), + [anon_sym_GT_EQ] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1718), + [anon_sym_LT] = ACTIONS(1724), + [anon_sym_LT_LT] = ACTIONS(1724), + [anon_sym_GT_GT] = ACTIONS(1724), + [anon_sym_SEMI] = ACTIONS(1741), + [anon_sym___extension__] = ACTIONS(1716), + [anon_sym_extern] = ACTIONS(1716), + [anon_sym___attribute__] = ACTIONS(1716), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1729), + [anon_sym___declspec] = ACTIONS(1716), + [anon_sym___based] = ACTIONS(1716), + [anon_sym___cdecl] = ACTIONS(1716), + [anon_sym___clrcall] = ACTIONS(1716), + [anon_sym___stdcall] = ACTIONS(1716), + [anon_sym___fastcall] = ACTIONS(1716), + [anon_sym___thiscall] = ACTIONS(1716), + [anon_sym___vectorcall] = ACTIONS(1716), + [anon_sym_signed] = ACTIONS(1731), + [anon_sym_unsigned] = ACTIONS(1731), + [anon_sym_long] = ACTIONS(1731), + [anon_sym_short] = ACTIONS(1731), + [anon_sym_LBRACK] = ACTIONS(1724), + [anon_sym_static] = ACTIONS(1716), + [anon_sym_EQ] = ACTIONS(1733), + [anon_sym_auto] = ACTIONS(1716), + [anon_sym_register] = ACTIONS(1716), + [anon_sym_inline] = ACTIONS(1716), + [anon_sym___inline] = ACTIONS(1716), + [anon_sym___inline__] = ACTIONS(1716), + [anon_sym___forceinline] = ACTIONS(1716), + [anon_sym_thread_local] = ACTIONS(1716), + [anon_sym___thread] = ACTIONS(1716), + [anon_sym_const] = ACTIONS(1716), + [anon_sym_constexpr] = ACTIONS(1716), + [anon_sym_volatile] = ACTIONS(1716), + [anon_sym_restrict] = ACTIONS(1716), + [anon_sym___restrict__] = ACTIONS(1716), + [anon_sym__Atomic] = ACTIONS(1716), + [anon_sym__Noreturn] = ACTIONS(1716), + [anon_sym_noreturn] = ACTIONS(1716), + [anon_sym_alignas] = ACTIONS(1716), + [anon_sym__Alignas] = ACTIONS(1716), + [anon_sym_COLON] = ACTIONS(1739), + [anon_sym_QMARK] = ACTIONS(1718), + [anon_sym_STAR_EQ] = ACTIONS(1737), + [anon_sym_SLASH_EQ] = ACTIONS(1737), + [anon_sym_PERCENT_EQ] = ACTIONS(1737), + [anon_sym_PLUS_EQ] = ACTIONS(1737), + [anon_sym_DASH_EQ] = ACTIONS(1737), + [anon_sym_LT_LT_EQ] = ACTIONS(1737), + [anon_sym_GT_GT_EQ] = ACTIONS(1737), + [anon_sym_AMP_EQ] = ACTIONS(1737), + [anon_sym_CARET_EQ] = ACTIONS(1737), + [anon_sym_PIPE_EQ] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1718), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_DOT] = ACTIONS(1718), + [anon_sym_DASH_GT] = ACTIONS(1718), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [456] = { - [sym_string_literal] = STATE(670), - [aux_sym_sized_type_specifier_repeat1] = STATE(787), - [sym_identifier] = ACTIONS(1700), - [anon_sym_COMMA] = ACTIONS(1702), - [anon_sym_LPAREN2] = ACTIONS(1704), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_STAR] = ACTIONS(1710), - [anon_sym_SLASH] = ACTIONS(1708), - [anon_sym_PERCENT] = ACTIONS(1708), - [anon_sym_PIPE_PIPE] = ACTIONS(1702), - [anon_sym_AMP_AMP] = ACTIONS(1702), - [anon_sym_PIPE] = ACTIONS(1708), - [anon_sym_CARET] = ACTIONS(1708), - [anon_sym_AMP] = ACTIONS(1708), - [anon_sym_EQ_EQ] = ACTIONS(1702), - [anon_sym_BANG_EQ] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1708), - [anon_sym_GT_EQ] = ACTIONS(1702), - [anon_sym_LT_EQ] = ACTIONS(1702), - [anon_sym_LT] = ACTIONS(1708), - [anon_sym_LT_LT] = ACTIONS(1708), - [anon_sym_GT_GT] = ACTIONS(1708), - [anon_sym_SEMI] = ACTIONS(1723), - [anon_sym___extension__] = ACTIONS(1700), - [anon_sym_extern] = ACTIONS(1700), - [anon_sym___attribute__] = ACTIONS(1700), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1713), - [anon_sym___declspec] = ACTIONS(1700), - [anon_sym___based] = ACTIONS(1700), - [anon_sym___cdecl] = ACTIONS(1700), - [anon_sym___clrcall] = ACTIONS(1700), - [anon_sym___stdcall] = ACTIONS(1700), - [anon_sym___fastcall] = ACTIONS(1700), - [anon_sym___thiscall] = ACTIONS(1700), - [anon_sym___vectorcall] = ACTIONS(1700), - [anon_sym_signed] = ACTIONS(1715), - [anon_sym_unsigned] = ACTIONS(1715), - [anon_sym_long] = ACTIONS(1715), - [anon_sym_short] = ACTIONS(1715), - [anon_sym_LBRACK] = ACTIONS(1708), - [anon_sym_static] = ACTIONS(1700), - [anon_sym_EQ] = ACTIONS(1717), - [anon_sym_auto] = ACTIONS(1700), - [anon_sym_register] = ACTIONS(1700), - [anon_sym_inline] = ACTIONS(1700), - [anon_sym___inline] = ACTIONS(1700), - [anon_sym___inline__] = ACTIONS(1700), - [anon_sym___forceinline] = ACTIONS(1700), - [anon_sym_thread_local] = ACTIONS(1700), - [anon_sym___thread] = ACTIONS(1700), - [anon_sym_const] = ACTIONS(1700), - [anon_sym_constexpr] = ACTIONS(1700), - [anon_sym_volatile] = ACTIONS(1700), - [anon_sym_restrict] = ACTIONS(1700), - [anon_sym___restrict__] = ACTIONS(1700), - [anon_sym__Atomic] = ACTIONS(1700), - [anon_sym__Noreturn] = ACTIONS(1700), - [anon_sym_noreturn] = ACTIONS(1700), - [anon_sym_alignas] = ACTIONS(1700), - [anon_sym__Alignas] = ACTIONS(1700), - [anon_sym_COLON] = ACTIONS(1719), - [anon_sym_QMARK] = ACTIONS(1702), - [anon_sym_STAR_EQ] = ACTIONS(1721), - [anon_sym_SLASH_EQ] = ACTIONS(1721), - [anon_sym_PERCENT_EQ] = ACTIONS(1721), - [anon_sym_PLUS_EQ] = ACTIONS(1721), - [anon_sym_DASH_EQ] = ACTIONS(1721), - [anon_sym_LT_LT_EQ] = ACTIONS(1721), - [anon_sym_GT_GT_EQ] = ACTIONS(1721), - [anon_sym_AMP_EQ] = ACTIONS(1721), - [anon_sym_CARET_EQ] = ACTIONS(1721), - [anon_sym_PIPE_EQ] = ACTIONS(1721), - [anon_sym_DASH_DASH] = ACTIONS(1702), - [anon_sym_PLUS_PLUS] = ACTIONS(1702), - [anon_sym_DOT] = ACTIONS(1702), - [anon_sym_DASH_GT] = ACTIONS(1702), + [404] = { + [sym_string_literal] = STATE(616), + [aux_sym_sized_type_specifier_repeat1] = STATE(782), + [sym_identifier] = ACTIONS(1716), + [anon_sym_COMMA] = ACTIONS(1718), + [anon_sym_LPAREN2] = ACTIONS(1720), + [anon_sym_DASH] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1724), + [anon_sym_STAR] = ACTIONS(1726), + [anon_sym_SLASH] = ACTIONS(1724), + [anon_sym_PERCENT] = ACTIONS(1724), + [anon_sym_PIPE_PIPE] = ACTIONS(1718), + [anon_sym_AMP_AMP] = ACTIONS(1718), + [anon_sym_PIPE] = ACTIONS(1724), + [anon_sym_CARET] = ACTIONS(1724), + [anon_sym_AMP] = ACTIONS(1724), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_GT] = ACTIONS(1724), + [anon_sym_GT_EQ] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1718), + [anon_sym_LT] = ACTIONS(1724), + [anon_sym_LT_LT] = ACTIONS(1724), + [anon_sym_GT_GT] = ACTIONS(1724), + [anon_sym_SEMI] = ACTIONS(1718), + [anon_sym___extension__] = ACTIONS(1716), + [anon_sym_extern] = ACTIONS(1716), + [anon_sym___attribute__] = ACTIONS(1716), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1729), + [anon_sym___declspec] = ACTIONS(1716), + [anon_sym___based] = ACTIONS(1716), + [anon_sym___cdecl] = ACTIONS(1716), + [anon_sym___clrcall] = ACTIONS(1716), + [anon_sym___stdcall] = ACTIONS(1716), + [anon_sym___fastcall] = ACTIONS(1716), + [anon_sym___thiscall] = ACTIONS(1716), + [anon_sym___vectorcall] = ACTIONS(1716), + [anon_sym_signed] = ACTIONS(1731), + [anon_sym_unsigned] = ACTIONS(1731), + [anon_sym_long] = ACTIONS(1731), + [anon_sym_short] = ACTIONS(1731), + [anon_sym_LBRACK] = ACTIONS(1724), + [anon_sym_static] = ACTIONS(1716), + [anon_sym_EQ] = ACTIONS(1733), + [anon_sym_auto] = ACTIONS(1716), + [anon_sym_register] = ACTIONS(1716), + [anon_sym_inline] = ACTIONS(1716), + [anon_sym___inline] = ACTIONS(1716), + [anon_sym___inline__] = ACTIONS(1716), + [anon_sym___forceinline] = ACTIONS(1716), + [anon_sym_thread_local] = ACTIONS(1716), + [anon_sym___thread] = ACTIONS(1716), + [anon_sym_const] = ACTIONS(1716), + [anon_sym_constexpr] = ACTIONS(1716), + [anon_sym_volatile] = ACTIONS(1716), + [anon_sym_restrict] = ACTIONS(1716), + [anon_sym___restrict__] = ACTIONS(1716), + [anon_sym__Atomic] = ACTIONS(1716), + [anon_sym__Noreturn] = ACTIONS(1716), + [anon_sym_noreturn] = ACTIONS(1716), + [anon_sym_alignas] = ACTIONS(1716), + [anon_sym__Alignas] = ACTIONS(1716), + [anon_sym_COLON] = ACTIONS(1744), + [anon_sym_QMARK] = ACTIONS(1718), + [anon_sym_STAR_EQ] = ACTIONS(1737), + [anon_sym_SLASH_EQ] = ACTIONS(1737), + [anon_sym_PERCENT_EQ] = ACTIONS(1737), + [anon_sym_PLUS_EQ] = ACTIONS(1737), + [anon_sym_DASH_EQ] = ACTIONS(1737), + [anon_sym_LT_LT_EQ] = ACTIONS(1737), + [anon_sym_GT_GT_EQ] = ACTIONS(1737), + [anon_sym_AMP_EQ] = ACTIONS(1737), + [anon_sym_CARET_EQ] = ACTIONS(1737), + [anon_sym_PIPE_EQ] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1718), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_DOT] = ACTIONS(1718), + [anon_sym_DASH_GT] = ACTIONS(1718), [anon_sym_L_DQUOTE] = ACTIONS(97), [anon_sym_u_DQUOTE] = ACTIONS(97), [anon_sym_U_DQUOTE] = ACTIONS(97), @@ -61767,84 +56425,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [457] = { - [sym_string_literal] = STATE(670), - [aux_sym_sized_type_specifier_repeat1] = STATE(787), - [sym_identifier] = ACTIONS(1700), - [anon_sym_COMMA] = ACTIONS(1702), - [anon_sym_LPAREN2] = ACTIONS(1704), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_STAR] = ACTIONS(1710), - [anon_sym_SLASH] = ACTIONS(1708), - [anon_sym_PERCENT] = ACTIONS(1708), - [anon_sym_PIPE_PIPE] = ACTIONS(1702), - [anon_sym_AMP_AMP] = ACTIONS(1702), - [anon_sym_PIPE] = ACTIONS(1708), - [anon_sym_CARET] = ACTIONS(1708), - [anon_sym_AMP] = ACTIONS(1708), - [anon_sym_EQ_EQ] = ACTIONS(1702), - [anon_sym_BANG_EQ] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1708), - [anon_sym_GT_EQ] = ACTIONS(1702), - [anon_sym_LT_EQ] = ACTIONS(1702), - [anon_sym_LT] = ACTIONS(1708), - [anon_sym_LT_LT] = ACTIONS(1708), - [anon_sym_GT_GT] = ACTIONS(1708), - [anon_sym_SEMI] = ACTIONS(1702), - [anon_sym___extension__] = ACTIONS(1700), - [anon_sym_extern] = ACTIONS(1700), - [anon_sym___attribute__] = ACTIONS(1700), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1713), - [anon_sym___declspec] = ACTIONS(1700), - [anon_sym___based] = ACTIONS(1700), - [anon_sym___cdecl] = ACTIONS(1700), - [anon_sym___clrcall] = ACTIONS(1700), - [anon_sym___stdcall] = ACTIONS(1700), - [anon_sym___fastcall] = ACTIONS(1700), - [anon_sym___thiscall] = ACTIONS(1700), - [anon_sym___vectorcall] = ACTIONS(1700), - [anon_sym_signed] = ACTIONS(1715), - [anon_sym_unsigned] = ACTIONS(1715), - [anon_sym_long] = ACTIONS(1715), - [anon_sym_short] = ACTIONS(1715), - [anon_sym_LBRACK] = ACTIONS(1708), - [anon_sym_static] = ACTIONS(1700), - [anon_sym_EQ] = ACTIONS(1717), - [anon_sym_auto] = ACTIONS(1700), - [anon_sym_register] = ACTIONS(1700), - [anon_sym_inline] = ACTIONS(1700), - [anon_sym___inline] = ACTIONS(1700), - [anon_sym___inline__] = ACTIONS(1700), - [anon_sym___forceinline] = ACTIONS(1700), - [anon_sym_thread_local] = ACTIONS(1700), - [anon_sym___thread] = ACTIONS(1700), - [anon_sym_const] = ACTIONS(1700), - [anon_sym_constexpr] = ACTIONS(1700), - [anon_sym_volatile] = ACTIONS(1700), - [anon_sym_restrict] = ACTIONS(1700), - [anon_sym___restrict__] = ACTIONS(1700), - [anon_sym__Atomic] = ACTIONS(1700), - [anon_sym__Noreturn] = ACTIONS(1700), - [anon_sym_noreturn] = ACTIONS(1700), - [anon_sym_alignas] = ACTIONS(1700), - [anon_sym__Alignas] = ACTIONS(1700), - [anon_sym_COLON] = ACTIONS(1726), - [anon_sym_QMARK] = ACTIONS(1702), - [anon_sym_STAR_EQ] = ACTIONS(1721), - [anon_sym_SLASH_EQ] = ACTIONS(1721), - [anon_sym_PERCENT_EQ] = ACTIONS(1721), - [anon_sym_PLUS_EQ] = ACTIONS(1721), - [anon_sym_DASH_EQ] = ACTIONS(1721), - [anon_sym_LT_LT_EQ] = ACTIONS(1721), - [anon_sym_GT_GT_EQ] = ACTIONS(1721), - [anon_sym_AMP_EQ] = ACTIONS(1721), - [anon_sym_CARET_EQ] = ACTIONS(1721), - [anon_sym_PIPE_EQ] = ACTIONS(1721), - [anon_sym_DASH_DASH] = ACTIONS(1702), - [anon_sym_PLUS_PLUS] = ACTIONS(1702), - [anon_sym_DOT] = ACTIONS(1702), - [anon_sym_DASH_GT] = ACTIONS(1702), + [405] = { + [sym_identifier] = ACTIONS(1746), + [anon_sym_LPAREN2] = ACTIONS(1749), + [anon_sym_BANG] = ACTIONS(1749), + [anon_sym_TILDE] = ACTIONS(1749), + [anon_sym_DASH] = ACTIONS(1751), + [anon_sym_PLUS] = ACTIONS(1751), + [anon_sym_STAR] = ACTIONS(1749), + [anon_sym_AMP] = ACTIONS(1749), + [anon_sym_SEMI] = ACTIONS(1749), + [anon_sym___extension__] = ACTIONS(1753), + [anon_sym_extern] = ACTIONS(1753), + [anon_sym___attribute__] = ACTIONS(1753), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1755), + [anon_sym___declspec] = ACTIONS(1753), + [anon_sym_LBRACE] = ACTIONS(1749), + [anon_sym_signed] = ACTIONS(1753), + [anon_sym_unsigned] = ACTIONS(1753), + [anon_sym_long] = ACTIONS(1753), + [anon_sym_short] = ACTIONS(1753), + [anon_sym_static] = ACTIONS(1753), + [anon_sym_auto] = ACTIONS(1753), + [anon_sym_register] = ACTIONS(1753), + [anon_sym_inline] = ACTIONS(1753), + [anon_sym___inline] = ACTIONS(1753), + [anon_sym___inline__] = ACTIONS(1753), + [anon_sym___forceinline] = ACTIONS(1753), + [anon_sym_thread_local] = ACTIONS(1753), + [anon_sym___thread] = ACTIONS(1753), + [anon_sym_const] = ACTIONS(1753), + [anon_sym_constexpr] = ACTIONS(1753), + [anon_sym_volatile] = ACTIONS(1753), + [anon_sym_restrict] = ACTIONS(1753), + [anon_sym___restrict__] = ACTIONS(1753), + [anon_sym__Atomic] = ACTIONS(1753), + [anon_sym__Noreturn] = ACTIONS(1753), + [anon_sym_noreturn] = ACTIONS(1753), + [anon_sym_alignas] = ACTIONS(1753), + [anon_sym__Alignas] = ACTIONS(1753), + [sym_primitive_type] = ACTIONS(1753), + [anon_sym_enum] = ACTIONS(1753), + [anon_sym_struct] = ACTIONS(1753), + [anon_sym_union] = ACTIONS(1753), + [anon_sym_if] = ACTIONS(1751), + [anon_sym_switch] = ACTIONS(1751), + [anon_sym_case] = ACTIONS(1751), + [anon_sym_default] = ACTIONS(1751), + [anon_sym_while] = ACTIONS(1751), + [anon_sym_do] = ACTIONS(1751), + [anon_sym_for] = ACTIONS(1751), + [anon_sym_return] = ACTIONS(1751), + [anon_sym_break] = ACTIONS(1751), + [anon_sym_continue] = ACTIONS(1751), + [anon_sym_goto] = ACTIONS(1751), + [anon_sym___try] = ACTIONS(1751), + [anon_sym___leave] = ACTIONS(1751), + [anon_sym_DASH_DASH] = ACTIONS(1749), + [anon_sym_PLUS_PLUS] = ACTIONS(1749), + [anon_sym_sizeof] = ACTIONS(1751), + [anon_sym___alignof__] = ACTIONS(1751), + [anon_sym___alignof] = ACTIONS(1751), + [anon_sym__alignof] = ACTIONS(1751), + [anon_sym_alignof] = ACTIONS(1751), + [anon_sym__Alignof] = ACTIONS(1751), + [anon_sym_offsetof] = ACTIONS(1751), + [anon_sym__Generic] = ACTIONS(1751), + [anon_sym_asm] = ACTIONS(1751), + [anon_sym___asm__] = ACTIONS(1751), + [sym_number_literal] = ACTIONS(1749), + [anon_sym_L_SQUOTE] = ACTIONS(1749), + [anon_sym_u_SQUOTE] = ACTIONS(1749), + [anon_sym_U_SQUOTE] = ACTIONS(1749), + [anon_sym_u8_SQUOTE] = ACTIONS(1749), + [anon_sym_SQUOTE] = ACTIONS(1749), + [anon_sym_L_DQUOTE] = ACTIONS(1749), + [anon_sym_u_DQUOTE] = ACTIONS(1749), + [anon_sym_U_DQUOTE] = ACTIONS(1749), + [anon_sym_u8_DQUOTE] = ACTIONS(1749), + [anon_sym_DQUOTE] = ACTIONS(1749), + [sym_true] = ACTIONS(1751), + [sym_false] = ACTIONS(1751), + [anon_sym_NULL] = ACTIONS(1751), + [anon_sym_nullptr] = ACTIONS(1751), + [sym_comment] = ACTIONS(3), + }, + [406] = { + [sym_string_literal] = STATE(616), + [aux_sym_sized_type_specifier_repeat1] = STATE(782), + [sym_identifier] = ACTIONS(1716), + [anon_sym_COMMA] = ACTIONS(1718), + [anon_sym_LPAREN2] = ACTIONS(1720), + [anon_sym_DASH] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1724), + [anon_sym_STAR] = ACTIONS(1726), + [anon_sym_SLASH] = ACTIONS(1724), + [anon_sym_PERCENT] = ACTIONS(1724), + [anon_sym_PIPE_PIPE] = ACTIONS(1718), + [anon_sym_AMP_AMP] = ACTIONS(1718), + [anon_sym_PIPE] = ACTIONS(1724), + [anon_sym_CARET] = ACTIONS(1724), + [anon_sym_AMP] = ACTIONS(1724), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_GT] = ACTIONS(1724), + [anon_sym_GT_EQ] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1718), + [anon_sym_LT] = ACTIONS(1724), + [anon_sym_LT_LT] = ACTIONS(1724), + [anon_sym_GT_GT] = ACTIONS(1724), + [anon_sym_SEMI] = ACTIONS(1718), + [anon_sym___extension__] = ACTIONS(1716), + [anon_sym_extern] = ACTIONS(1716), + [anon_sym___attribute__] = ACTIONS(1716), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1729), + [anon_sym___declspec] = ACTIONS(1716), + [anon_sym___based] = ACTIONS(1716), + [anon_sym___cdecl] = ACTIONS(1716), + [anon_sym___clrcall] = ACTIONS(1716), + [anon_sym___stdcall] = ACTIONS(1716), + [anon_sym___fastcall] = ACTIONS(1716), + [anon_sym___thiscall] = ACTIONS(1716), + [anon_sym___vectorcall] = ACTIONS(1716), + [anon_sym_signed] = ACTIONS(1731), + [anon_sym_unsigned] = ACTIONS(1731), + [anon_sym_long] = ACTIONS(1731), + [anon_sym_short] = ACTIONS(1731), + [anon_sym_LBRACK] = ACTIONS(1724), + [anon_sym_static] = ACTIONS(1716), + [anon_sym_EQ] = ACTIONS(1733), + [anon_sym_auto] = ACTIONS(1716), + [anon_sym_register] = ACTIONS(1716), + [anon_sym_inline] = ACTIONS(1716), + [anon_sym___inline] = ACTIONS(1716), + [anon_sym___inline__] = ACTIONS(1716), + [anon_sym___forceinline] = ACTIONS(1716), + [anon_sym_thread_local] = ACTIONS(1716), + [anon_sym___thread] = ACTIONS(1716), + [anon_sym_const] = ACTIONS(1716), + [anon_sym_constexpr] = ACTIONS(1716), + [anon_sym_volatile] = ACTIONS(1716), + [anon_sym_restrict] = ACTIONS(1716), + [anon_sym___restrict__] = ACTIONS(1716), + [anon_sym__Atomic] = ACTIONS(1716), + [anon_sym__Noreturn] = ACTIONS(1716), + [anon_sym_noreturn] = ACTIONS(1716), + [anon_sym_alignas] = ACTIONS(1716), + [anon_sym__Alignas] = ACTIONS(1716), + [anon_sym_COLON] = ACTIONS(1758), + [anon_sym_QMARK] = ACTIONS(1718), + [anon_sym_STAR_EQ] = ACTIONS(1737), + [anon_sym_SLASH_EQ] = ACTIONS(1737), + [anon_sym_PERCENT_EQ] = ACTIONS(1737), + [anon_sym_PLUS_EQ] = ACTIONS(1737), + [anon_sym_DASH_EQ] = ACTIONS(1737), + [anon_sym_LT_LT_EQ] = ACTIONS(1737), + [anon_sym_GT_GT_EQ] = ACTIONS(1737), + [anon_sym_AMP_EQ] = ACTIONS(1737), + [anon_sym_CARET_EQ] = ACTIONS(1737), + [anon_sym_PIPE_EQ] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1718), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_DOT] = ACTIONS(1718), + [anon_sym_DASH_GT] = ACTIONS(1718), [anon_sym_L_DQUOTE] = ACTIONS(97), [anon_sym_u_DQUOTE] = ACTIONS(97), [anon_sym_U_DQUOTE] = ACTIONS(97), @@ -61852,84 +56595,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [458] = { - [sym_string_literal] = STATE(670), - [aux_sym_sized_type_specifier_repeat1] = STATE(787), - [sym_identifier] = ACTIONS(1700), - [anon_sym_COMMA] = ACTIONS(1702), - [anon_sym_LPAREN2] = ACTIONS(1704), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_STAR] = ACTIONS(1710), - [anon_sym_SLASH] = ACTIONS(1708), - [anon_sym_PERCENT] = ACTIONS(1708), - [anon_sym_PIPE_PIPE] = ACTIONS(1702), - [anon_sym_AMP_AMP] = ACTIONS(1702), - [anon_sym_PIPE] = ACTIONS(1708), - [anon_sym_CARET] = ACTIONS(1708), - [anon_sym_AMP] = ACTIONS(1708), - [anon_sym_EQ_EQ] = ACTIONS(1702), - [anon_sym_BANG_EQ] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1708), - [anon_sym_GT_EQ] = ACTIONS(1702), - [anon_sym_LT_EQ] = ACTIONS(1702), - [anon_sym_LT] = ACTIONS(1708), - [anon_sym_LT_LT] = ACTIONS(1708), - [anon_sym_GT_GT] = ACTIONS(1708), - [anon_sym_SEMI] = ACTIONS(1702), - [anon_sym___extension__] = ACTIONS(1700), - [anon_sym_extern] = ACTIONS(1700), - [anon_sym___attribute__] = ACTIONS(1700), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1713), - [anon_sym___declspec] = ACTIONS(1700), - [anon_sym___based] = ACTIONS(1700), - [anon_sym___cdecl] = ACTIONS(1700), - [anon_sym___clrcall] = ACTIONS(1700), - [anon_sym___stdcall] = ACTIONS(1700), - [anon_sym___fastcall] = ACTIONS(1700), - [anon_sym___thiscall] = ACTIONS(1700), - [anon_sym___vectorcall] = ACTIONS(1700), - [anon_sym_signed] = ACTIONS(1715), - [anon_sym_unsigned] = ACTIONS(1715), - [anon_sym_long] = ACTIONS(1715), - [anon_sym_short] = ACTIONS(1715), - [anon_sym_LBRACK] = ACTIONS(1708), - [anon_sym_static] = ACTIONS(1700), - [anon_sym_EQ] = ACTIONS(1717), - [anon_sym_auto] = ACTIONS(1700), - [anon_sym_register] = ACTIONS(1700), - [anon_sym_inline] = ACTIONS(1700), - [anon_sym___inline] = ACTIONS(1700), - [anon_sym___inline__] = ACTIONS(1700), - [anon_sym___forceinline] = ACTIONS(1700), - [anon_sym_thread_local] = ACTIONS(1700), - [anon_sym___thread] = ACTIONS(1700), - [anon_sym_const] = ACTIONS(1700), - [anon_sym_constexpr] = ACTIONS(1700), - [anon_sym_volatile] = ACTIONS(1700), - [anon_sym_restrict] = ACTIONS(1700), - [anon_sym___restrict__] = ACTIONS(1700), - [anon_sym__Atomic] = ACTIONS(1700), - [anon_sym__Noreturn] = ACTIONS(1700), - [anon_sym_noreturn] = ACTIONS(1700), - [anon_sym_alignas] = ACTIONS(1700), - [anon_sym__Alignas] = ACTIONS(1700), - [anon_sym_COLON] = ACTIONS(1740), - [anon_sym_QMARK] = ACTIONS(1702), - [anon_sym_STAR_EQ] = ACTIONS(1721), - [anon_sym_SLASH_EQ] = ACTIONS(1721), - [anon_sym_PERCENT_EQ] = ACTIONS(1721), - [anon_sym_PLUS_EQ] = ACTIONS(1721), - [anon_sym_DASH_EQ] = ACTIONS(1721), - [anon_sym_LT_LT_EQ] = ACTIONS(1721), - [anon_sym_GT_GT_EQ] = ACTIONS(1721), - [anon_sym_AMP_EQ] = ACTIONS(1721), - [anon_sym_CARET_EQ] = ACTIONS(1721), - [anon_sym_PIPE_EQ] = ACTIONS(1721), - [anon_sym_DASH_DASH] = ACTIONS(1702), - [anon_sym_PLUS_PLUS] = ACTIONS(1702), - [anon_sym_DOT] = ACTIONS(1702), - [anon_sym_DASH_GT] = ACTIONS(1702), + [407] = { + [sym_string_literal] = STATE(616), + [aux_sym_sized_type_specifier_repeat1] = STATE(782), + [sym_identifier] = ACTIONS(1716), + [anon_sym_COMMA] = ACTIONS(1718), + [anon_sym_LPAREN2] = ACTIONS(1720), + [anon_sym_DASH] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1724), + [anon_sym_STAR] = ACTIONS(1726), + [anon_sym_SLASH] = ACTIONS(1724), + [anon_sym_PERCENT] = ACTIONS(1724), + [anon_sym_PIPE_PIPE] = ACTIONS(1718), + [anon_sym_AMP_AMP] = ACTIONS(1718), + [anon_sym_PIPE] = ACTIONS(1724), + [anon_sym_CARET] = ACTIONS(1724), + [anon_sym_AMP] = ACTIONS(1724), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_GT] = ACTIONS(1724), + [anon_sym_GT_EQ] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1718), + [anon_sym_LT] = ACTIONS(1724), + [anon_sym_LT_LT] = ACTIONS(1724), + [anon_sym_GT_GT] = ACTIONS(1724), + [anon_sym_SEMI] = ACTIONS(1718), + [anon_sym___extension__] = ACTIONS(1716), + [anon_sym_extern] = ACTIONS(1716), + [anon_sym___attribute__] = ACTIONS(1716), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1729), + [anon_sym___declspec] = ACTIONS(1716), + [anon_sym___based] = ACTIONS(1716), + [anon_sym___cdecl] = ACTIONS(1716), + [anon_sym___clrcall] = ACTIONS(1716), + [anon_sym___stdcall] = ACTIONS(1716), + [anon_sym___fastcall] = ACTIONS(1716), + [anon_sym___thiscall] = ACTIONS(1716), + [anon_sym___vectorcall] = ACTIONS(1716), + [anon_sym_signed] = ACTIONS(1731), + [anon_sym_unsigned] = ACTIONS(1731), + [anon_sym_long] = ACTIONS(1731), + [anon_sym_short] = ACTIONS(1731), + [anon_sym_LBRACK] = ACTIONS(1724), + [anon_sym_static] = ACTIONS(1716), + [anon_sym_EQ] = ACTIONS(1733), + [anon_sym_auto] = ACTIONS(1716), + [anon_sym_register] = ACTIONS(1716), + [anon_sym_inline] = ACTIONS(1716), + [anon_sym___inline] = ACTIONS(1716), + [anon_sym___inline__] = ACTIONS(1716), + [anon_sym___forceinline] = ACTIONS(1716), + [anon_sym_thread_local] = ACTIONS(1716), + [anon_sym___thread] = ACTIONS(1716), + [anon_sym_const] = ACTIONS(1716), + [anon_sym_constexpr] = ACTIONS(1716), + [anon_sym_volatile] = ACTIONS(1716), + [anon_sym_restrict] = ACTIONS(1716), + [anon_sym___restrict__] = ACTIONS(1716), + [anon_sym__Atomic] = ACTIONS(1716), + [anon_sym__Noreturn] = ACTIONS(1716), + [anon_sym_noreturn] = ACTIONS(1716), + [anon_sym_alignas] = ACTIONS(1716), + [anon_sym__Alignas] = ACTIONS(1716), + [anon_sym_COLON] = ACTIONS(1760), + [anon_sym_QMARK] = ACTIONS(1718), + [anon_sym_STAR_EQ] = ACTIONS(1737), + [anon_sym_SLASH_EQ] = ACTIONS(1737), + [anon_sym_PERCENT_EQ] = ACTIONS(1737), + [anon_sym_PLUS_EQ] = ACTIONS(1737), + [anon_sym_DASH_EQ] = ACTIONS(1737), + [anon_sym_LT_LT_EQ] = ACTIONS(1737), + [anon_sym_GT_GT_EQ] = ACTIONS(1737), + [anon_sym_AMP_EQ] = ACTIONS(1737), + [anon_sym_CARET_EQ] = ACTIONS(1737), + [anon_sym_PIPE_EQ] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1718), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_DOT] = ACTIONS(1718), + [anon_sym_DASH_GT] = ACTIONS(1718), [anon_sym_L_DQUOTE] = ACTIONS(97), [anon_sym_u_DQUOTE] = ACTIONS(97), [anon_sym_U_DQUOTE] = ACTIONS(97), @@ -61937,84 +56680,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [459] = { - [sym_string_literal] = STATE(670), - [aux_sym_sized_type_specifier_repeat1] = STATE(787), - [sym_identifier] = ACTIONS(1700), - [anon_sym_COMMA] = ACTIONS(1702), - [anon_sym_LPAREN2] = ACTIONS(1704), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_STAR] = ACTIONS(1710), - [anon_sym_SLASH] = ACTIONS(1708), - [anon_sym_PERCENT] = ACTIONS(1708), - [anon_sym_PIPE_PIPE] = ACTIONS(1702), - [anon_sym_AMP_AMP] = ACTIONS(1702), - [anon_sym_PIPE] = ACTIONS(1708), - [anon_sym_CARET] = ACTIONS(1708), - [anon_sym_AMP] = ACTIONS(1708), - [anon_sym_EQ_EQ] = ACTIONS(1702), - [anon_sym_BANG_EQ] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1708), - [anon_sym_GT_EQ] = ACTIONS(1702), - [anon_sym_LT_EQ] = ACTIONS(1702), - [anon_sym_LT] = ACTIONS(1708), - [anon_sym_LT_LT] = ACTIONS(1708), - [anon_sym_GT_GT] = ACTIONS(1708), - [anon_sym_SEMI] = ACTIONS(1723), - [anon_sym___extension__] = ACTIONS(1700), - [anon_sym_extern] = ACTIONS(1700), - [anon_sym___attribute__] = ACTIONS(1700), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1713), - [anon_sym___declspec] = ACTIONS(1700), - [anon_sym___based] = ACTIONS(1700), - [anon_sym___cdecl] = ACTIONS(1700), - [anon_sym___clrcall] = ACTIONS(1700), - [anon_sym___stdcall] = ACTIONS(1700), - [anon_sym___fastcall] = ACTIONS(1700), - [anon_sym___thiscall] = ACTIONS(1700), - [anon_sym___vectorcall] = ACTIONS(1700), - [anon_sym_signed] = ACTIONS(1715), - [anon_sym_unsigned] = ACTIONS(1715), - [anon_sym_long] = ACTIONS(1715), - [anon_sym_short] = ACTIONS(1715), - [anon_sym_LBRACK] = ACTIONS(1708), - [anon_sym_static] = ACTIONS(1700), - [anon_sym_EQ] = ACTIONS(1717), - [anon_sym_auto] = ACTIONS(1700), - [anon_sym_register] = ACTIONS(1700), - [anon_sym_inline] = ACTIONS(1700), - [anon_sym___inline] = ACTIONS(1700), - [anon_sym___inline__] = ACTIONS(1700), - [anon_sym___forceinline] = ACTIONS(1700), - [anon_sym_thread_local] = ACTIONS(1700), - [anon_sym___thread] = ACTIONS(1700), - [anon_sym_const] = ACTIONS(1700), - [anon_sym_constexpr] = ACTIONS(1700), - [anon_sym_volatile] = ACTIONS(1700), - [anon_sym_restrict] = ACTIONS(1700), - [anon_sym___restrict__] = ACTIONS(1700), - [anon_sym__Atomic] = ACTIONS(1700), - [anon_sym__Noreturn] = ACTIONS(1700), - [anon_sym_noreturn] = ACTIONS(1700), - [anon_sym_alignas] = ACTIONS(1700), - [anon_sym__Alignas] = ACTIONS(1700), - [anon_sym_COLON] = ACTIONS(1740), - [anon_sym_QMARK] = ACTIONS(1702), - [anon_sym_STAR_EQ] = ACTIONS(1721), - [anon_sym_SLASH_EQ] = ACTIONS(1721), - [anon_sym_PERCENT_EQ] = ACTIONS(1721), - [anon_sym_PLUS_EQ] = ACTIONS(1721), - [anon_sym_DASH_EQ] = ACTIONS(1721), - [anon_sym_LT_LT_EQ] = ACTIONS(1721), - [anon_sym_GT_GT_EQ] = ACTIONS(1721), - [anon_sym_AMP_EQ] = ACTIONS(1721), - [anon_sym_CARET_EQ] = ACTIONS(1721), - [anon_sym_PIPE_EQ] = ACTIONS(1721), - [anon_sym_DASH_DASH] = ACTIONS(1702), - [anon_sym_PLUS_PLUS] = ACTIONS(1702), - [anon_sym_DOT] = ACTIONS(1702), - [anon_sym_DASH_GT] = ACTIONS(1702), + [408] = { + [sym_string_literal] = STATE(616), + [aux_sym_sized_type_specifier_repeat1] = STATE(782), + [sym_identifier] = ACTIONS(1716), + [anon_sym_COMMA] = ACTIONS(1718), + [anon_sym_LPAREN2] = ACTIONS(1720), + [anon_sym_DASH] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1724), + [anon_sym_STAR] = ACTIONS(1726), + [anon_sym_SLASH] = ACTIONS(1724), + [anon_sym_PERCENT] = ACTIONS(1724), + [anon_sym_PIPE_PIPE] = ACTIONS(1718), + [anon_sym_AMP_AMP] = ACTIONS(1718), + [anon_sym_PIPE] = ACTIONS(1724), + [anon_sym_CARET] = ACTIONS(1724), + [anon_sym_AMP] = ACTIONS(1724), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_GT] = ACTIONS(1724), + [anon_sym_GT_EQ] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1718), + [anon_sym_LT] = ACTIONS(1724), + [anon_sym_LT_LT] = ACTIONS(1724), + [anon_sym_GT_GT] = ACTIONS(1724), + [anon_sym_SEMI] = ACTIONS(1741), + [anon_sym___extension__] = ACTIONS(1716), + [anon_sym_extern] = ACTIONS(1716), + [anon_sym___attribute__] = ACTIONS(1716), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1729), + [anon_sym___declspec] = ACTIONS(1716), + [anon_sym___based] = ACTIONS(1716), + [anon_sym___cdecl] = ACTIONS(1716), + [anon_sym___clrcall] = ACTIONS(1716), + [anon_sym___stdcall] = ACTIONS(1716), + [anon_sym___fastcall] = ACTIONS(1716), + [anon_sym___thiscall] = ACTIONS(1716), + [anon_sym___vectorcall] = ACTIONS(1716), + [anon_sym_signed] = ACTIONS(1731), + [anon_sym_unsigned] = ACTIONS(1731), + [anon_sym_long] = ACTIONS(1731), + [anon_sym_short] = ACTIONS(1731), + [anon_sym_LBRACK] = ACTIONS(1724), + [anon_sym_static] = ACTIONS(1716), + [anon_sym_EQ] = ACTIONS(1733), + [anon_sym_auto] = ACTIONS(1716), + [anon_sym_register] = ACTIONS(1716), + [anon_sym_inline] = ACTIONS(1716), + [anon_sym___inline] = ACTIONS(1716), + [anon_sym___inline__] = ACTIONS(1716), + [anon_sym___forceinline] = ACTIONS(1716), + [anon_sym_thread_local] = ACTIONS(1716), + [anon_sym___thread] = ACTIONS(1716), + [anon_sym_const] = ACTIONS(1716), + [anon_sym_constexpr] = ACTIONS(1716), + [anon_sym_volatile] = ACTIONS(1716), + [anon_sym_restrict] = ACTIONS(1716), + [anon_sym___restrict__] = ACTIONS(1716), + [anon_sym__Atomic] = ACTIONS(1716), + [anon_sym__Noreturn] = ACTIONS(1716), + [anon_sym_noreturn] = ACTIONS(1716), + [anon_sym_alignas] = ACTIONS(1716), + [anon_sym__Alignas] = ACTIONS(1716), + [anon_sym_COLON] = ACTIONS(1744), + [anon_sym_QMARK] = ACTIONS(1718), + [anon_sym_STAR_EQ] = ACTIONS(1737), + [anon_sym_SLASH_EQ] = ACTIONS(1737), + [anon_sym_PERCENT_EQ] = ACTIONS(1737), + [anon_sym_PLUS_EQ] = ACTIONS(1737), + [anon_sym_DASH_EQ] = ACTIONS(1737), + [anon_sym_LT_LT_EQ] = ACTIONS(1737), + [anon_sym_GT_GT_EQ] = ACTIONS(1737), + [anon_sym_AMP_EQ] = ACTIONS(1737), + [anon_sym_CARET_EQ] = ACTIONS(1737), + [anon_sym_PIPE_EQ] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1718), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_DOT] = ACTIONS(1718), + [anon_sym_DASH_GT] = ACTIONS(1718), [anon_sym_L_DQUOTE] = ACTIONS(97), [anon_sym_u_DQUOTE] = ACTIONS(97), [anon_sym_U_DQUOTE] = ACTIONS(97), @@ -62022,84 +56765,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [460] = { - [sym_string_literal] = STATE(670), - [aux_sym_sized_type_specifier_repeat1] = STATE(787), - [sym_identifier] = ACTIONS(1700), - [anon_sym_COMMA] = ACTIONS(1702), - [anon_sym_LPAREN2] = ACTIONS(1704), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_STAR] = ACTIONS(1710), - [anon_sym_SLASH] = ACTIONS(1708), - [anon_sym_PERCENT] = ACTIONS(1708), - [anon_sym_PIPE_PIPE] = ACTIONS(1702), - [anon_sym_AMP_AMP] = ACTIONS(1702), - [anon_sym_PIPE] = ACTIONS(1708), - [anon_sym_CARET] = ACTIONS(1708), - [anon_sym_AMP] = ACTIONS(1708), - [anon_sym_EQ_EQ] = ACTIONS(1702), - [anon_sym_BANG_EQ] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1708), - [anon_sym_GT_EQ] = ACTIONS(1702), - [anon_sym_LT_EQ] = ACTIONS(1702), - [anon_sym_LT] = ACTIONS(1708), - [anon_sym_LT_LT] = ACTIONS(1708), - [anon_sym_GT_GT] = ACTIONS(1708), - [anon_sym_SEMI] = ACTIONS(1702), - [anon_sym___extension__] = ACTIONS(1700), - [anon_sym_extern] = ACTIONS(1700), - [anon_sym___attribute__] = ACTIONS(1700), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1713), - [anon_sym___declspec] = ACTIONS(1700), - [anon_sym___based] = ACTIONS(1700), - [anon_sym___cdecl] = ACTIONS(1700), - [anon_sym___clrcall] = ACTIONS(1700), - [anon_sym___stdcall] = ACTIONS(1700), - [anon_sym___fastcall] = ACTIONS(1700), - [anon_sym___thiscall] = ACTIONS(1700), - [anon_sym___vectorcall] = ACTIONS(1700), - [anon_sym_signed] = ACTIONS(1715), - [anon_sym_unsigned] = ACTIONS(1715), - [anon_sym_long] = ACTIONS(1715), - [anon_sym_short] = ACTIONS(1715), - [anon_sym_LBRACK] = ACTIONS(1708), - [anon_sym_static] = ACTIONS(1700), - [anon_sym_EQ] = ACTIONS(1717), - [anon_sym_auto] = ACTIONS(1700), - [anon_sym_register] = ACTIONS(1700), - [anon_sym_inline] = ACTIONS(1700), - [anon_sym___inline] = ACTIONS(1700), - [anon_sym___inline__] = ACTIONS(1700), - [anon_sym___forceinline] = ACTIONS(1700), - [anon_sym_thread_local] = ACTIONS(1700), - [anon_sym___thread] = ACTIONS(1700), - [anon_sym_const] = ACTIONS(1700), - [anon_sym_constexpr] = ACTIONS(1700), - [anon_sym_volatile] = ACTIONS(1700), - [anon_sym_restrict] = ACTIONS(1700), - [anon_sym___restrict__] = ACTIONS(1700), - [anon_sym__Atomic] = ACTIONS(1700), - [anon_sym__Noreturn] = ACTIONS(1700), - [anon_sym_noreturn] = ACTIONS(1700), - [anon_sym_alignas] = ACTIONS(1700), - [anon_sym__Alignas] = ACTIONS(1700), - [anon_sym_COLON] = ACTIONS(1742), - [anon_sym_QMARK] = ACTIONS(1702), - [anon_sym_STAR_EQ] = ACTIONS(1721), - [anon_sym_SLASH_EQ] = ACTIONS(1721), - [anon_sym_PERCENT_EQ] = ACTIONS(1721), - [anon_sym_PLUS_EQ] = ACTIONS(1721), - [anon_sym_DASH_EQ] = ACTIONS(1721), - [anon_sym_LT_LT_EQ] = ACTIONS(1721), - [anon_sym_GT_GT_EQ] = ACTIONS(1721), - [anon_sym_AMP_EQ] = ACTIONS(1721), - [anon_sym_CARET_EQ] = ACTIONS(1721), - [anon_sym_PIPE_EQ] = ACTIONS(1721), - [anon_sym_DASH_DASH] = ACTIONS(1702), - [anon_sym_PLUS_PLUS] = ACTIONS(1702), - [anon_sym_DOT] = ACTIONS(1702), - [anon_sym_DASH_GT] = ACTIONS(1702), + [409] = { + [sym_string_literal] = STATE(616), + [aux_sym_sized_type_specifier_repeat1] = STATE(782), + [sym_identifier] = ACTIONS(1716), + [anon_sym_COMMA] = ACTIONS(1718), + [anon_sym_LPAREN2] = ACTIONS(1720), + [anon_sym_DASH] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1724), + [anon_sym_STAR] = ACTIONS(1726), + [anon_sym_SLASH] = ACTIONS(1724), + [anon_sym_PERCENT] = ACTIONS(1724), + [anon_sym_PIPE_PIPE] = ACTIONS(1718), + [anon_sym_AMP_AMP] = ACTIONS(1718), + [anon_sym_PIPE] = ACTIONS(1724), + [anon_sym_CARET] = ACTIONS(1724), + [anon_sym_AMP] = ACTIONS(1724), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_GT] = ACTIONS(1724), + [anon_sym_GT_EQ] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1718), + [anon_sym_LT] = ACTIONS(1724), + [anon_sym_LT_LT] = ACTIONS(1724), + [anon_sym_GT_GT] = ACTIONS(1724), + [anon_sym_SEMI] = ACTIONS(1741), + [anon_sym___extension__] = ACTIONS(1716), + [anon_sym_extern] = ACTIONS(1716), + [anon_sym___attribute__] = ACTIONS(1716), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1729), + [anon_sym___declspec] = ACTIONS(1716), + [anon_sym___based] = ACTIONS(1716), + [anon_sym___cdecl] = ACTIONS(1716), + [anon_sym___clrcall] = ACTIONS(1716), + [anon_sym___stdcall] = ACTIONS(1716), + [anon_sym___fastcall] = ACTIONS(1716), + [anon_sym___thiscall] = ACTIONS(1716), + [anon_sym___vectorcall] = ACTIONS(1716), + [anon_sym_signed] = ACTIONS(1731), + [anon_sym_unsigned] = ACTIONS(1731), + [anon_sym_long] = ACTIONS(1731), + [anon_sym_short] = ACTIONS(1731), + [anon_sym_LBRACK] = ACTIONS(1724), + [anon_sym_static] = ACTIONS(1716), + [anon_sym_EQ] = ACTIONS(1733), + [anon_sym_auto] = ACTIONS(1716), + [anon_sym_register] = ACTIONS(1716), + [anon_sym_inline] = ACTIONS(1716), + [anon_sym___inline] = ACTIONS(1716), + [anon_sym___inline__] = ACTIONS(1716), + [anon_sym___forceinline] = ACTIONS(1716), + [anon_sym_thread_local] = ACTIONS(1716), + [anon_sym___thread] = ACTIONS(1716), + [anon_sym_const] = ACTIONS(1716), + [anon_sym_constexpr] = ACTIONS(1716), + [anon_sym_volatile] = ACTIONS(1716), + [anon_sym_restrict] = ACTIONS(1716), + [anon_sym___restrict__] = ACTIONS(1716), + [anon_sym__Atomic] = ACTIONS(1716), + [anon_sym__Noreturn] = ACTIONS(1716), + [anon_sym_noreturn] = ACTIONS(1716), + [anon_sym_alignas] = ACTIONS(1716), + [anon_sym__Alignas] = ACTIONS(1716), + [anon_sym_COLON] = ACTIONS(1735), + [anon_sym_QMARK] = ACTIONS(1718), + [anon_sym_STAR_EQ] = ACTIONS(1737), + [anon_sym_SLASH_EQ] = ACTIONS(1737), + [anon_sym_PERCENT_EQ] = ACTIONS(1737), + [anon_sym_PLUS_EQ] = ACTIONS(1737), + [anon_sym_DASH_EQ] = ACTIONS(1737), + [anon_sym_LT_LT_EQ] = ACTIONS(1737), + [anon_sym_GT_GT_EQ] = ACTIONS(1737), + [anon_sym_AMP_EQ] = ACTIONS(1737), + [anon_sym_CARET_EQ] = ACTIONS(1737), + [anon_sym_PIPE_EQ] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1718), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_DOT] = ACTIONS(1718), + [anon_sym_DASH_GT] = ACTIONS(1718), [anon_sym_L_DQUOTE] = ACTIONS(97), [anon_sym_u_DQUOTE] = ACTIONS(97), [anon_sym_U_DQUOTE] = ACTIONS(97), @@ -62107,84 +56850,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [461] = { - [sym_string_literal] = STATE(670), - [aux_sym_sized_type_specifier_repeat1] = STATE(787), - [sym_identifier] = ACTIONS(1700), - [anon_sym_COMMA] = ACTIONS(1702), - [anon_sym_LPAREN2] = ACTIONS(1704), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_STAR] = ACTIONS(1710), - [anon_sym_SLASH] = ACTIONS(1708), - [anon_sym_PERCENT] = ACTIONS(1708), - [anon_sym_PIPE_PIPE] = ACTIONS(1702), - [anon_sym_AMP_AMP] = ACTIONS(1702), - [anon_sym_PIPE] = ACTIONS(1708), - [anon_sym_CARET] = ACTIONS(1708), - [anon_sym_AMP] = ACTIONS(1708), - [anon_sym_EQ_EQ] = ACTIONS(1702), - [anon_sym_BANG_EQ] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1708), - [anon_sym_GT_EQ] = ACTIONS(1702), - [anon_sym_LT_EQ] = ACTIONS(1702), - [anon_sym_LT] = ACTIONS(1708), - [anon_sym_LT_LT] = ACTIONS(1708), - [anon_sym_GT_GT] = ACTIONS(1708), - [anon_sym_SEMI] = ACTIONS(1702), - [anon_sym___extension__] = ACTIONS(1700), - [anon_sym_extern] = ACTIONS(1700), - [anon_sym___attribute__] = ACTIONS(1700), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1713), - [anon_sym___declspec] = ACTIONS(1700), - [anon_sym___based] = ACTIONS(1700), - [anon_sym___cdecl] = ACTIONS(1700), - [anon_sym___clrcall] = ACTIONS(1700), - [anon_sym___stdcall] = ACTIONS(1700), - [anon_sym___fastcall] = ACTIONS(1700), - [anon_sym___thiscall] = ACTIONS(1700), - [anon_sym___vectorcall] = ACTIONS(1700), - [anon_sym_signed] = ACTIONS(1715), - [anon_sym_unsigned] = ACTIONS(1715), - [anon_sym_long] = ACTIONS(1715), - [anon_sym_short] = ACTIONS(1715), - [anon_sym_LBRACK] = ACTIONS(1708), - [anon_sym_static] = ACTIONS(1700), - [anon_sym_EQ] = ACTIONS(1717), - [anon_sym_auto] = ACTIONS(1700), - [anon_sym_register] = ACTIONS(1700), - [anon_sym_inline] = ACTIONS(1700), - [anon_sym___inline] = ACTIONS(1700), - [anon_sym___inline__] = ACTIONS(1700), - [anon_sym___forceinline] = ACTIONS(1700), - [anon_sym_thread_local] = ACTIONS(1700), - [anon_sym___thread] = ACTIONS(1700), - [anon_sym_const] = ACTIONS(1700), - [anon_sym_constexpr] = ACTIONS(1700), - [anon_sym_volatile] = ACTIONS(1700), - [anon_sym_restrict] = ACTIONS(1700), - [anon_sym___restrict__] = ACTIONS(1700), - [anon_sym__Atomic] = ACTIONS(1700), - [anon_sym__Noreturn] = ACTIONS(1700), - [anon_sym_noreturn] = ACTIONS(1700), - [anon_sym_alignas] = ACTIONS(1700), - [anon_sym__Alignas] = ACTIONS(1700), - [anon_sym_COLON] = ACTIONS(1744), - [anon_sym_QMARK] = ACTIONS(1702), - [anon_sym_STAR_EQ] = ACTIONS(1721), - [anon_sym_SLASH_EQ] = ACTIONS(1721), - [anon_sym_PERCENT_EQ] = ACTIONS(1721), - [anon_sym_PLUS_EQ] = ACTIONS(1721), - [anon_sym_DASH_EQ] = ACTIONS(1721), - [anon_sym_LT_LT_EQ] = ACTIONS(1721), - [anon_sym_GT_GT_EQ] = ACTIONS(1721), - [anon_sym_AMP_EQ] = ACTIONS(1721), - [anon_sym_CARET_EQ] = ACTIONS(1721), - [anon_sym_PIPE_EQ] = ACTIONS(1721), - [anon_sym_DASH_DASH] = ACTIONS(1702), - [anon_sym_PLUS_PLUS] = ACTIONS(1702), - [anon_sym_DOT] = ACTIONS(1702), - [anon_sym_DASH_GT] = ACTIONS(1702), + [410] = { + [sym_string_literal] = STATE(616), + [aux_sym_sized_type_specifier_repeat1] = STATE(782), + [sym_identifier] = ACTIONS(1716), + [anon_sym_LPAREN2] = ACTIONS(1720), + [anon_sym_DASH] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1724), + [anon_sym_STAR] = ACTIONS(1726), + [anon_sym_SLASH] = ACTIONS(1724), + [anon_sym_PERCENT] = ACTIONS(1724), + [anon_sym_PIPE_PIPE] = ACTIONS(1718), + [anon_sym_AMP_AMP] = ACTIONS(1718), + [anon_sym_PIPE] = ACTIONS(1724), + [anon_sym_CARET] = ACTIONS(1724), + [anon_sym_AMP] = ACTIONS(1724), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_GT] = ACTIONS(1724), + [anon_sym_GT_EQ] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1718), + [anon_sym_LT] = ACTIONS(1724), + [anon_sym_LT_LT] = ACTIONS(1724), + [anon_sym_GT_GT] = ACTIONS(1724), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym___extension__] = ACTIONS(1716), + [anon_sym_extern] = ACTIONS(1716), + [anon_sym___attribute__] = ACTIONS(1716), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1729), + [anon_sym___declspec] = ACTIONS(1716), + [anon_sym___based] = ACTIONS(1716), + [anon_sym___cdecl] = ACTIONS(1716), + [anon_sym___clrcall] = ACTIONS(1716), + [anon_sym___stdcall] = ACTIONS(1716), + [anon_sym___fastcall] = ACTIONS(1716), + [anon_sym___thiscall] = ACTIONS(1716), + [anon_sym___vectorcall] = ACTIONS(1716), + [anon_sym_signed] = ACTIONS(1731), + [anon_sym_unsigned] = ACTIONS(1731), + [anon_sym_long] = ACTIONS(1731), + [anon_sym_short] = ACTIONS(1731), + [anon_sym_LBRACK] = ACTIONS(1724), + [anon_sym_static] = ACTIONS(1716), + [anon_sym_EQ] = ACTIONS(1733), + [anon_sym_auto] = ACTIONS(1716), + [anon_sym_register] = ACTIONS(1716), + [anon_sym_inline] = ACTIONS(1716), + [anon_sym___inline] = ACTIONS(1716), + [anon_sym___inline__] = ACTIONS(1716), + [anon_sym___forceinline] = ACTIONS(1716), + [anon_sym_thread_local] = ACTIONS(1716), + [anon_sym___thread] = ACTIONS(1716), + [anon_sym_const] = ACTIONS(1716), + [anon_sym_constexpr] = ACTIONS(1716), + [anon_sym_volatile] = ACTIONS(1716), + [anon_sym_restrict] = ACTIONS(1716), + [anon_sym___restrict__] = ACTIONS(1716), + [anon_sym__Atomic] = ACTIONS(1716), + [anon_sym__Noreturn] = ACTIONS(1716), + [anon_sym_noreturn] = ACTIONS(1716), + [anon_sym_alignas] = ACTIONS(1716), + [anon_sym__Alignas] = ACTIONS(1716), + [anon_sym_COLON] = ACTIONS(1760), + [anon_sym_QMARK] = ACTIONS(1718), + [anon_sym_STAR_EQ] = ACTIONS(1737), + [anon_sym_SLASH_EQ] = ACTIONS(1737), + [anon_sym_PERCENT_EQ] = ACTIONS(1737), + [anon_sym_PLUS_EQ] = ACTIONS(1737), + [anon_sym_DASH_EQ] = ACTIONS(1737), + [anon_sym_LT_LT_EQ] = ACTIONS(1737), + [anon_sym_GT_GT_EQ] = ACTIONS(1737), + [anon_sym_AMP_EQ] = ACTIONS(1737), + [anon_sym_CARET_EQ] = ACTIONS(1737), + [anon_sym_PIPE_EQ] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1718), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_DOT] = ACTIONS(1718), + [anon_sym_DASH_GT] = ACTIONS(1718), [anon_sym_L_DQUOTE] = ACTIONS(97), [anon_sym_u_DQUOTE] = ACTIONS(97), [anon_sym_U_DQUOTE] = ACTIONS(97), @@ -62192,62 +56934,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [462] = { - [sym__expression] = STATE(880), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(941), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(941), - [sym_call_expression] = STATE(941), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(941), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(941), - [sym_initializer_list] = STATE(723), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [sym_identifier] = ACTIONS(1746), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1367), - [anon_sym_LPAREN2] = ACTIONS(1367), - [anon_sym_BANG] = ACTIONS(1748), - [anon_sym_TILDE] = ACTIONS(1750), - [anon_sym_DASH] = ACTIONS(1373), - [anon_sym_PLUS] = ACTIONS(1373), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_SLASH] = ACTIONS(1373), - [anon_sym_PERCENT] = ACTIONS(1367), - [anon_sym_PIPE_PIPE] = ACTIONS(1367), - [anon_sym_AMP_AMP] = ACTIONS(1367), - [anon_sym_PIPE] = ACTIONS(1373), - [anon_sym_CARET] = ACTIONS(1367), - [anon_sym_AMP] = ACTIONS(1373), - [anon_sym_EQ_EQ] = ACTIONS(1367), - [anon_sym_BANG_EQ] = ACTIONS(1367), - [anon_sym_GT] = ACTIONS(1373), - [anon_sym_GT_EQ] = ACTIONS(1367), - [anon_sym_LT_EQ] = ACTIONS(1367), - [anon_sym_LT] = ACTIONS(1373), - [anon_sym_LT_LT] = ACTIONS(1367), - [anon_sym_GT_GT] = ACTIONS(1367), - [anon_sym_LBRACE] = ACTIONS(1375), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_RBRACK] = ACTIONS(1367), - [anon_sym_QMARK] = ACTIONS(1367), - [anon_sym_DASH_DASH] = ACTIONS(1367), - [anon_sym_PLUS_PLUS] = ACTIONS(1367), - [anon_sym_sizeof] = ACTIONS(1752), + [411] = { + [sym_string_literal] = STATE(616), + [aux_sym_sized_type_specifier_repeat1] = STATE(782), + [sym_identifier] = ACTIONS(1716), + [anon_sym_COMMA] = ACTIONS(1718), + [anon_sym_LPAREN2] = ACTIONS(1720), + [anon_sym_DASH] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1724), + [anon_sym_STAR] = ACTIONS(1726), + [anon_sym_SLASH] = ACTIONS(1724), + [anon_sym_PERCENT] = ACTIONS(1724), + [anon_sym_PIPE_PIPE] = ACTIONS(1718), + [anon_sym_AMP_AMP] = ACTIONS(1718), + [anon_sym_PIPE] = ACTIONS(1724), + [anon_sym_CARET] = ACTIONS(1724), + [anon_sym_AMP] = ACTIONS(1724), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_GT] = ACTIONS(1724), + [anon_sym_GT_EQ] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1718), + [anon_sym_LT] = ACTIONS(1724), + [anon_sym_LT_LT] = ACTIONS(1724), + [anon_sym_GT_GT] = ACTIONS(1724), + [anon_sym_SEMI] = ACTIONS(1718), + [anon_sym___extension__] = ACTIONS(1716), + [anon_sym_extern] = ACTIONS(1716), + [anon_sym___attribute__] = ACTIONS(1716), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1729), + [anon_sym___declspec] = ACTIONS(1716), + [anon_sym___based] = ACTIONS(1716), + [anon_sym___cdecl] = ACTIONS(1716), + [anon_sym___clrcall] = ACTIONS(1716), + [anon_sym___stdcall] = ACTIONS(1716), + [anon_sym___fastcall] = ACTIONS(1716), + [anon_sym___thiscall] = ACTIONS(1716), + [anon_sym___vectorcall] = ACTIONS(1716), + [anon_sym_signed] = ACTIONS(1731), + [anon_sym_unsigned] = ACTIONS(1731), + [anon_sym_long] = ACTIONS(1731), + [anon_sym_short] = ACTIONS(1731), + [anon_sym_LBRACK] = ACTIONS(1724), + [anon_sym_static] = ACTIONS(1716), + [anon_sym_EQ] = ACTIONS(1733), + [anon_sym_auto] = ACTIONS(1716), + [anon_sym_register] = ACTIONS(1716), + [anon_sym_inline] = ACTIONS(1716), + [anon_sym___inline] = ACTIONS(1716), + [anon_sym___inline__] = ACTIONS(1716), + [anon_sym___forceinline] = ACTIONS(1716), + [anon_sym_thread_local] = ACTIONS(1716), + [anon_sym___thread] = ACTIONS(1716), + [anon_sym_const] = ACTIONS(1716), + [anon_sym_constexpr] = ACTIONS(1716), + [anon_sym_volatile] = ACTIONS(1716), + [anon_sym_restrict] = ACTIONS(1716), + [anon_sym___restrict__] = ACTIONS(1716), + [anon_sym__Atomic] = ACTIONS(1716), + [anon_sym__Noreturn] = ACTIONS(1716), + [anon_sym_noreturn] = ACTIONS(1716), + [anon_sym_alignas] = ACTIONS(1716), + [anon_sym__Alignas] = ACTIONS(1716), + [anon_sym_QMARK] = ACTIONS(1718), + [anon_sym_STAR_EQ] = ACTIONS(1737), + [anon_sym_SLASH_EQ] = ACTIONS(1737), + [anon_sym_PERCENT_EQ] = ACTIONS(1737), + [anon_sym_PLUS_EQ] = ACTIONS(1737), + [anon_sym_DASH_EQ] = ACTIONS(1737), + [anon_sym_LT_LT_EQ] = ACTIONS(1737), + [anon_sym_GT_GT_EQ] = ACTIONS(1737), + [anon_sym_AMP_EQ] = ACTIONS(1737), + [anon_sym_CARET_EQ] = ACTIONS(1737), + [anon_sym_PIPE_EQ] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1718), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_DOT] = ACTIONS(1718), + [anon_sym_DASH_GT] = ACTIONS(1718), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [412] = { + [sym_expression] = STATE(838), + [sym__string] = STATE(672), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(891), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(891), + [sym_call_expression] = STATE(891), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(891), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(891), + [sym_initializer_list] = STATE(676), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [sym_identifier] = ACTIONS(1765), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1377), + [anon_sym_LPAREN2] = ACTIONS(1377), + [anon_sym_BANG] = ACTIONS(1767), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1383), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_SLASH] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1377), + [anon_sym_PIPE_PIPE] = ACTIONS(1377), + [anon_sym_AMP_AMP] = ACTIONS(1377), + [anon_sym_PIPE] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1383), + [anon_sym_EQ_EQ] = ACTIONS(1377), + [anon_sym_BANG_EQ] = ACTIONS(1377), + [anon_sym_GT] = ACTIONS(1383), + [anon_sym_GT_EQ] = ACTIONS(1377), + [anon_sym_LT_EQ] = ACTIONS(1377), + [anon_sym_LT] = ACTIONS(1383), + [anon_sym_LT_LT] = ACTIONS(1377), + [anon_sym_GT_GT] = ACTIONS(1377), + [anon_sym_LBRACE] = ACTIONS(1385), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_RBRACK] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_sizeof] = ACTIONS(1771), [anon_sym___alignof__] = ACTIONS(85), [anon_sym___alignof] = ACTIONS(85), [anon_sym__alignof] = ACTIONS(85), @@ -62257,8 +57082,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(89), [anon_sym_asm] = ACTIONS(91), [anon_sym___asm__] = ACTIONS(91), - [anon_sym_DOT] = ACTIONS(1373), - [anon_sym_DASH_GT] = ACTIONS(1367), + [anon_sym_DOT] = ACTIONS(1383), + [anon_sym_DASH_GT] = ACTIONS(1377), [sym_number_literal] = ACTIONS(159), [anon_sym_L_SQUOTE] = ACTIONS(95), [anon_sym_u_SQUOTE] = ACTIONS(95), @@ -62276,218 +57101,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [463] = { - [sym_string_literal] = STATE(670), - [aux_sym_sized_type_specifier_repeat1] = STATE(787), - [sym_identifier] = ACTIONS(1700), - [anon_sym_COMMA] = ACTIONS(1702), - [anon_sym_LPAREN2] = ACTIONS(1704), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_STAR] = ACTIONS(1710), - [anon_sym_SLASH] = ACTIONS(1708), - [anon_sym_PERCENT] = ACTIONS(1708), - [anon_sym_PIPE_PIPE] = ACTIONS(1702), - [anon_sym_AMP_AMP] = ACTIONS(1702), - [anon_sym_PIPE] = ACTIONS(1708), - [anon_sym_CARET] = ACTIONS(1708), - [anon_sym_AMP] = ACTIONS(1708), - [anon_sym_EQ_EQ] = ACTIONS(1702), - [anon_sym_BANG_EQ] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1708), - [anon_sym_GT_EQ] = ACTIONS(1702), - [anon_sym_LT_EQ] = ACTIONS(1702), - [anon_sym_LT] = ACTIONS(1708), - [anon_sym_LT_LT] = ACTIONS(1708), - [anon_sym_GT_GT] = ACTIONS(1708), - [anon_sym_SEMI] = ACTIONS(1702), - [anon_sym___extension__] = ACTIONS(1700), - [anon_sym_extern] = ACTIONS(1700), - [anon_sym___attribute__] = ACTIONS(1700), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1713), - [anon_sym___declspec] = ACTIONS(1700), - [anon_sym___based] = ACTIONS(1700), - [anon_sym___cdecl] = ACTIONS(1700), - [anon_sym___clrcall] = ACTIONS(1700), - [anon_sym___stdcall] = ACTIONS(1700), - [anon_sym___fastcall] = ACTIONS(1700), - [anon_sym___thiscall] = ACTIONS(1700), - [anon_sym___vectorcall] = ACTIONS(1700), - [anon_sym_signed] = ACTIONS(1715), - [anon_sym_unsigned] = ACTIONS(1715), - [anon_sym_long] = ACTIONS(1715), - [anon_sym_short] = ACTIONS(1715), - [anon_sym_LBRACK] = ACTIONS(1708), - [anon_sym_static] = ACTIONS(1700), - [anon_sym_EQ] = ACTIONS(1717), - [anon_sym_auto] = ACTIONS(1700), - [anon_sym_register] = ACTIONS(1700), - [anon_sym_inline] = ACTIONS(1700), - [anon_sym___inline] = ACTIONS(1700), - [anon_sym___inline__] = ACTIONS(1700), - [anon_sym___forceinline] = ACTIONS(1700), - [anon_sym_thread_local] = ACTIONS(1700), - [anon_sym___thread] = ACTIONS(1700), - [anon_sym_const] = ACTIONS(1700), - [anon_sym_constexpr] = ACTIONS(1700), - [anon_sym_volatile] = ACTIONS(1700), - [anon_sym_restrict] = ACTIONS(1700), - [anon_sym___restrict__] = ACTIONS(1700), - [anon_sym__Atomic] = ACTIONS(1700), - [anon_sym__Noreturn] = ACTIONS(1700), - [anon_sym_noreturn] = ACTIONS(1700), - [anon_sym_alignas] = ACTIONS(1700), - [anon_sym__Alignas] = ACTIONS(1700), - [anon_sym_QMARK] = ACTIONS(1702), - [anon_sym_STAR_EQ] = ACTIONS(1721), - [anon_sym_SLASH_EQ] = ACTIONS(1721), - [anon_sym_PERCENT_EQ] = ACTIONS(1721), - [anon_sym_PLUS_EQ] = ACTIONS(1721), - [anon_sym_DASH_EQ] = ACTIONS(1721), - [anon_sym_LT_LT_EQ] = ACTIONS(1721), - [anon_sym_GT_GT_EQ] = ACTIONS(1721), - [anon_sym_AMP_EQ] = ACTIONS(1721), - [anon_sym_CARET_EQ] = ACTIONS(1721), - [anon_sym_PIPE_EQ] = ACTIONS(1721), - [anon_sym_DASH_DASH] = ACTIONS(1702), - [anon_sym_PLUS_PLUS] = ACTIONS(1702), - [anon_sym_DOT] = ACTIONS(1702), - [anon_sym_DASH_GT] = ACTIONS(1702), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_comment] = ACTIONS(3), - }, - [464] = { - [sym_string_literal] = STATE(670), - [aux_sym_sized_type_specifier_repeat1] = STATE(787), - [sym_identifier] = ACTIONS(1700), - [anon_sym_LPAREN2] = ACTIONS(1704), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_STAR] = ACTIONS(1710), - [anon_sym_SLASH] = ACTIONS(1708), - [anon_sym_PERCENT] = ACTIONS(1708), - [anon_sym_PIPE_PIPE] = ACTIONS(1702), - [anon_sym_AMP_AMP] = ACTIONS(1702), - [anon_sym_PIPE] = ACTIONS(1708), - [anon_sym_CARET] = ACTIONS(1708), - [anon_sym_AMP] = ACTIONS(1708), - [anon_sym_EQ_EQ] = ACTIONS(1702), - [anon_sym_BANG_EQ] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1708), - [anon_sym_GT_EQ] = ACTIONS(1702), - [anon_sym_LT_EQ] = ACTIONS(1702), - [anon_sym_LT] = ACTIONS(1708), - [anon_sym_LT_LT] = ACTIONS(1708), - [anon_sym_GT_GT] = ACTIONS(1708), - [anon_sym_SEMI] = ACTIONS(1723), - [anon_sym___extension__] = ACTIONS(1700), - [anon_sym_extern] = ACTIONS(1700), - [anon_sym___attribute__] = ACTIONS(1700), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1713), - [anon_sym___declspec] = ACTIONS(1700), - [anon_sym___based] = ACTIONS(1700), - [anon_sym___cdecl] = ACTIONS(1700), - [anon_sym___clrcall] = ACTIONS(1700), - [anon_sym___stdcall] = ACTIONS(1700), - [anon_sym___fastcall] = ACTIONS(1700), - [anon_sym___thiscall] = ACTIONS(1700), - [anon_sym___vectorcall] = ACTIONS(1700), - [anon_sym_signed] = ACTIONS(1715), - [anon_sym_unsigned] = ACTIONS(1715), - [anon_sym_long] = ACTIONS(1715), - [anon_sym_short] = ACTIONS(1715), - [anon_sym_LBRACK] = ACTIONS(1708), - [anon_sym_static] = ACTIONS(1700), - [anon_sym_EQ] = ACTIONS(1717), - [anon_sym_auto] = ACTIONS(1700), - [anon_sym_register] = ACTIONS(1700), - [anon_sym_inline] = ACTIONS(1700), - [anon_sym___inline] = ACTIONS(1700), - [anon_sym___inline__] = ACTIONS(1700), - [anon_sym___forceinline] = ACTIONS(1700), - [anon_sym_thread_local] = ACTIONS(1700), - [anon_sym___thread] = ACTIONS(1700), - [anon_sym_const] = ACTIONS(1700), - [anon_sym_constexpr] = ACTIONS(1700), - [anon_sym_volatile] = ACTIONS(1700), - [anon_sym_restrict] = ACTIONS(1700), - [anon_sym___restrict__] = ACTIONS(1700), - [anon_sym__Atomic] = ACTIONS(1700), - [anon_sym__Noreturn] = ACTIONS(1700), - [anon_sym_noreturn] = ACTIONS(1700), - [anon_sym_alignas] = ACTIONS(1700), - [anon_sym__Alignas] = ACTIONS(1700), - [anon_sym_COLON] = ACTIONS(1744), - [anon_sym_QMARK] = ACTIONS(1702), - [anon_sym_STAR_EQ] = ACTIONS(1721), - [anon_sym_SLASH_EQ] = ACTIONS(1721), - [anon_sym_PERCENT_EQ] = ACTIONS(1721), - [anon_sym_PLUS_EQ] = ACTIONS(1721), - [anon_sym_DASH_EQ] = ACTIONS(1721), - [anon_sym_LT_LT_EQ] = ACTIONS(1721), - [anon_sym_GT_GT_EQ] = ACTIONS(1721), - [anon_sym_AMP_EQ] = ACTIONS(1721), - [anon_sym_CARET_EQ] = ACTIONS(1721), - [anon_sym_PIPE_EQ] = ACTIONS(1721), - [anon_sym_DASH_DASH] = ACTIONS(1702), - [anon_sym_PLUS_PLUS] = ACTIONS(1702), - [anon_sym_DOT] = ACTIONS(1702), - [anon_sym_DASH_GT] = ACTIONS(1702), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_comment] = ACTIONS(3), - }, - [465] = { - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1182), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(752), - [sym_ms_declspec_modifier] = STATE(752), - [sym_ms_based_modifier] = STATE(1943), - [sym_ms_call_modifier] = STATE(1279), - [sym__declarator] = STATE(1434), - [sym__abstract_declarator] = STATE(1563), - [sym_parenthesized_declarator] = STATE(1371), - [sym_abstract_parenthesized_declarator] = STATE(1495), - [sym_attributed_declarator] = STATE(1371), - [sym_pointer_declarator] = STATE(1371), - [sym_abstract_pointer_declarator] = STATE(1495), - [sym_function_declarator] = STATE(1371), - [sym_abstract_function_declarator] = STATE(1495), - [sym_array_declarator] = STATE(1371), - [sym_abstract_array_declarator] = STATE(1495), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(763), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym_variadic_parameter] = STATE(1670), - [sym_parameter_list] = STATE(1494), - [sym_parameter_declaration] = STATE(1670), - [sym_macro_type_specifier] = STATE(822), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), - [sym_identifier] = ACTIONS(1754), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1756), - [anon_sym_RPAREN] = ACTIONS(1758), - [anon_sym_LPAREN2] = ACTIONS(1760), - [anon_sym_STAR] = ACTIONS(1762), + [413] = { + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1139), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(698), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_based_modifier] = STATE(1827), + [sym_ms_call_modifier] = STATE(1231), + [sym__declarator] = STATE(1386), + [sym__abstract_declarator] = STATE(1517), + [sym_parenthesized_declarator] = STATE(1322), + [sym_abstract_parenthesized_declarator] = STATE(1442), + [sym_attributed_declarator] = STATE(1322), + [sym_pointer_declarator] = STATE(1322), + [sym_abstract_pointer_declarator] = STATE(1442), + [sym_function_declarator] = STATE(1322), + [sym_abstract_function_declarator] = STATE(1442), + [sym_array_declarator] = STATE(1322), + [sym_abstract_array_declarator] = STATE(1442), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_variadic_parameter] = STATE(1530), + [sym_parameter_list] = STATE(1443), + [sym_parameter_declaration] = STATE(1530), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(1773), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1775), + [anon_sym_RPAREN] = ACTIONS(1777), + [anon_sym_LPAREN2] = ACTIONS(1779), + [anon_sym_STAR] = ACTIONS(1781), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(1115), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___based] = ACTIONS(1764), + [anon_sym___based] = ACTIONS(1783), [anon_sym___cdecl] = ACTIONS(39), [anon_sym___clrcall] = ACTIONS(39), [anon_sym___stdcall] = ACTIONS(39), @@ -62498,7 +57155,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), [anon_sym_short] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_LBRACK] = ACTIONS(1785), [anon_sym_static] = ACTIONS(45), [anon_sym_auto] = ACTIONS(45), [anon_sym_register] = ACTIONS(45), @@ -62524,58 +57181,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(57), [sym_comment] = ACTIONS(3), }, - [466] = { - [sym_type_qualifier] = STATE(475), - [sym_alignas_qualifier] = STATE(751), - [sym__expression] = STATE(1115), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(941), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(941), - [sym_call_expression] = STATE(941), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(941), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(941), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [aux_sym_array_declarator_repeat1] = STATE(475), - [sym_identifier] = ACTIONS(1746), - [anon_sym_LPAREN2] = ACTIONS(1768), - [anon_sym_BANG] = ACTIONS(1750), - [anon_sym_TILDE] = ACTIONS(1750), - [anon_sym_DASH] = ACTIONS(1748), - [anon_sym_PLUS] = ACTIONS(1748), - [anon_sym_STAR] = ACTIONS(1770), - [anon_sym_AMP] = ACTIONS(1772), - [anon_sym___extension__] = ACTIONS(1774), - [anon_sym_static] = ACTIONS(1776), - [anon_sym_RBRACK] = ACTIONS(1778), - [anon_sym_const] = ACTIONS(1774), - [anon_sym_constexpr] = ACTIONS(1774), - [anon_sym_volatile] = ACTIONS(1774), - [anon_sym_restrict] = ACTIONS(1774), - [anon_sym___restrict__] = ACTIONS(1774), - [anon_sym__Atomic] = ACTIONS(1774), - [anon_sym__Noreturn] = ACTIONS(1774), - [anon_sym_noreturn] = ACTIONS(1774), - [anon_sym_alignas] = ACTIONS(1780), - [anon_sym__Alignas] = ACTIONS(1780), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_sizeof] = ACTIONS(1752), + [414] = { + [sym_type_qualifier] = STATE(422), + [sym_alignas_qualifier] = STATE(700), + [sym_expression] = STATE(1053), + [sym__string] = STATE(672), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(891), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(891), + [sym_call_expression] = STATE(891), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(891), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(891), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_array_declarator_repeat1] = STATE(422), + [sym_identifier] = ACTIONS(1765), + [anon_sym_LPAREN2] = ACTIONS(1787), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_DASH] = ACTIONS(1767), + [anon_sym_PLUS] = ACTIONS(1767), + [anon_sym_STAR] = ACTIONS(1789), + [anon_sym_AMP] = ACTIONS(1791), + [anon_sym___extension__] = ACTIONS(1793), + [anon_sym_static] = ACTIONS(1795), + [anon_sym_RBRACK] = ACTIONS(1797), + [anon_sym_const] = ACTIONS(1793), + [anon_sym_constexpr] = ACTIONS(1793), + [anon_sym_volatile] = ACTIONS(1793), + [anon_sym_restrict] = ACTIONS(1793), + [anon_sym___restrict__] = ACTIONS(1793), + [anon_sym__Atomic] = ACTIONS(1793), + [anon_sym__Noreturn] = ACTIONS(1793), + [anon_sym_noreturn] = ACTIONS(1793), + [anon_sym_alignas] = ACTIONS(1799), + [anon_sym__Alignas] = ACTIONS(1799), + [anon_sym_DASH_DASH] = ACTIONS(1801), + [anon_sym_PLUS_PLUS] = ACTIONS(1801), + [anon_sym_sizeof] = ACTIONS(1771), [anon_sym___alignof__] = ACTIONS(85), [anon_sym___alignof] = ACTIONS(85), [anon_sym__alignof] = ACTIONS(85), @@ -62602,58 +57258,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [467] = { - [sym_type_qualifier] = STATE(473), - [sym_alignas_qualifier] = STATE(751), - [sym__expression] = STATE(1103), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(941), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(941), - [sym_call_expression] = STATE(941), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(941), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(941), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [aux_sym_array_declarator_repeat1] = STATE(473), - [sym_identifier] = ACTIONS(1746), - [anon_sym_LPAREN2] = ACTIONS(1768), - [anon_sym_BANG] = ACTIONS(1750), - [anon_sym_TILDE] = ACTIONS(1750), - [anon_sym_DASH] = ACTIONS(1748), - [anon_sym_PLUS] = ACTIONS(1748), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_AMP] = ACTIONS(1772), - [anon_sym___extension__] = ACTIONS(1774), - [anon_sym_static] = ACTIONS(1786), - [anon_sym_RBRACK] = ACTIONS(1788), - [anon_sym_const] = ACTIONS(1774), - [anon_sym_constexpr] = ACTIONS(1774), - [anon_sym_volatile] = ACTIONS(1774), - [anon_sym_restrict] = ACTIONS(1774), - [anon_sym___restrict__] = ACTIONS(1774), - [anon_sym__Atomic] = ACTIONS(1774), - [anon_sym__Noreturn] = ACTIONS(1774), - [anon_sym_noreturn] = ACTIONS(1774), - [anon_sym_alignas] = ACTIONS(1780), - [anon_sym__Alignas] = ACTIONS(1780), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_sizeof] = ACTIONS(1752), + [415] = { + [sym_type_qualifier] = STATE(658), + [sym_alignas_qualifier] = STATE(700), + [sym_expression] = STATE(1070), + [sym__string] = STATE(672), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(891), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(891), + [sym_call_expression] = STATE(891), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(891), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(891), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_array_declarator_repeat1] = STATE(658), + [sym_identifier] = ACTIONS(1765), + [anon_sym_LPAREN2] = ACTIONS(1787), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_DASH] = ACTIONS(1767), + [anon_sym_PLUS] = ACTIONS(1767), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1791), + [anon_sym___extension__] = ACTIONS(1793), + [anon_sym_static] = ACTIONS(1805), + [anon_sym_RBRACK] = ACTIONS(1807), + [anon_sym_const] = ACTIONS(1793), + [anon_sym_constexpr] = ACTIONS(1793), + [anon_sym_volatile] = ACTIONS(1793), + [anon_sym_restrict] = ACTIONS(1793), + [anon_sym___restrict__] = ACTIONS(1793), + [anon_sym__Atomic] = ACTIONS(1793), + [anon_sym__Noreturn] = ACTIONS(1793), + [anon_sym_noreturn] = ACTIONS(1793), + [anon_sym_alignas] = ACTIONS(1799), + [anon_sym__Alignas] = ACTIONS(1799), + [anon_sym_DASH_DASH] = ACTIONS(1801), + [anon_sym_PLUS_PLUS] = ACTIONS(1801), + [anon_sym_sizeof] = ACTIONS(1771), [anon_sym___alignof__] = ACTIONS(85), [anon_sym___alignof] = ACTIONS(85), [anon_sym__alignof] = ACTIONS(85), @@ -62680,58 +57335,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [468] = { - [sym_type_qualifier] = STATE(706), - [sym_alignas_qualifier] = STATE(751), - [sym__expression] = STATE(1121), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(941), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(941), - [sym_call_expression] = STATE(941), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(941), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(941), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [aux_sym_array_declarator_repeat1] = STATE(706), - [sym_identifier] = ACTIONS(1746), - [anon_sym_LPAREN2] = ACTIONS(1768), - [anon_sym_BANG] = ACTIONS(1750), - [anon_sym_TILDE] = ACTIONS(1750), - [anon_sym_DASH] = ACTIONS(1748), - [anon_sym_PLUS] = ACTIONS(1748), - [anon_sym_STAR] = ACTIONS(1790), - [anon_sym_AMP] = ACTIONS(1772), - [anon_sym___extension__] = ACTIONS(1774), - [anon_sym_static] = ACTIONS(1792), - [anon_sym_RBRACK] = ACTIONS(1794), - [anon_sym_const] = ACTIONS(1774), - [anon_sym_constexpr] = ACTIONS(1774), - [anon_sym_volatile] = ACTIONS(1774), - [anon_sym_restrict] = ACTIONS(1774), - [anon_sym___restrict__] = ACTIONS(1774), - [anon_sym__Atomic] = ACTIONS(1774), - [anon_sym__Noreturn] = ACTIONS(1774), - [anon_sym_noreturn] = ACTIONS(1774), - [anon_sym_alignas] = ACTIONS(1780), - [anon_sym__Alignas] = ACTIONS(1780), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_sizeof] = ACTIONS(1752), + [416] = { + [sym_type_qualifier] = STATE(418), + [sym_alignas_qualifier] = STATE(700), + [sym_expression] = STATE(1072), + [sym__string] = STATE(672), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(891), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(891), + [sym_call_expression] = STATE(891), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(891), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(891), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_array_declarator_repeat1] = STATE(418), + [sym_identifier] = ACTIONS(1765), + [anon_sym_LPAREN2] = ACTIONS(1787), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_DASH] = ACTIONS(1767), + [anon_sym_PLUS] = ACTIONS(1767), + [anon_sym_STAR] = ACTIONS(1809), + [anon_sym_AMP] = ACTIONS(1791), + [anon_sym___extension__] = ACTIONS(1793), + [anon_sym_static] = ACTIONS(1811), + [anon_sym_RBRACK] = ACTIONS(1813), + [anon_sym_const] = ACTIONS(1793), + [anon_sym_constexpr] = ACTIONS(1793), + [anon_sym_volatile] = ACTIONS(1793), + [anon_sym_restrict] = ACTIONS(1793), + [anon_sym___restrict__] = ACTIONS(1793), + [anon_sym__Atomic] = ACTIONS(1793), + [anon_sym__Noreturn] = ACTIONS(1793), + [anon_sym_noreturn] = ACTIONS(1793), + [anon_sym_alignas] = ACTIONS(1799), + [anon_sym__Alignas] = ACTIONS(1799), + [anon_sym_DASH_DASH] = ACTIONS(1801), + [anon_sym_PLUS_PLUS] = ACTIONS(1801), + [anon_sym_sizeof] = ACTIONS(1771), [anon_sym___alignof__] = ACTIONS(85), [anon_sym___alignof] = ACTIONS(85), [anon_sym__alignof] = ACTIONS(85), @@ -62758,58 +57412,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [469] = { - [sym_type_qualifier] = STATE(468), - [sym_alignas_qualifier] = STATE(751), - [sym__expression] = STATE(1111), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(941), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(941), - [sym_call_expression] = STATE(941), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(941), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(941), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [aux_sym_array_declarator_repeat1] = STATE(468), - [sym_identifier] = ACTIONS(1746), - [anon_sym_LPAREN2] = ACTIONS(1768), - [anon_sym_BANG] = ACTIONS(1750), - [anon_sym_TILDE] = ACTIONS(1750), - [anon_sym_DASH] = ACTIONS(1748), - [anon_sym_PLUS] = ACTIONS(1748), - [anon_sym_STAR] = ACTIONS(1796), - [anon_sym_AMP] = ACTIONS(1772), - [anon_sym___extension__] = ACTIONS(1774), - [anon_sym_static] = ACTIONS(1798), - [anon_sym_RBRACK] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1774), - [anon_sym_constexpr] = ACTIONS(1774), - [anon_sym_volatile] = ACTIONS(1774), - [anon_sym_restrict] = ACTIONS(1774), - [anon_sym___restrict__] = ACTIONS(1774), - [anon_sym__Atomic] = ACTIONS(1774), - [anon_sym__Noreturn] = ACTIONS(1774), - [anon_sym_noreturn] = ACTIONS(1774), - [anon_sym_alignas] = ACTIONS(1780), - [anon_sym__Alignas] = ACTIONS(1780), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_sizeof] = ACTIONS(1752), + [417] = { + [sym_type_qualifier] = STATE(419), + [sym_alignas_qualifier] = STATE(700), + [sym_expression] = STATE(1064), + [sym__string] = STATE(672), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(891), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(891), + [sym_call_expression] = STATE(891), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(891), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(891), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_array_declarator_repeat1] = STATE(419), + [sym_identifier] = ACTIONS(1765), + [anon_sym_LPAREN2] = ACTIONS(1787), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_DASH] = ACTIONS(1767), + [anon_sym_PLUS] = ACTIONS(1767), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_AMP] = ACTIONS(1791), + [anon_sym___extension__] = ACTIONS(1793), + [anon_sym_static] = ACTIONS(1817), + [anon_sym_RBRACK] = ACTIONS(1819), + [anon_sym_const] = ACTIONS(1793), + [anon_sym_constexpr] = ACTIONS(1793), + [anon_sym_volatile] = ACTIONS(1793), + [anon_sym_restrict] = ACTIONS(1793), + [anon_sym___restrict__] = ACTIONS(1793), + [anon_sym__Atomic] = ACTIONS(1793), + [anon_sym__Noreturn] = ACTIONS(1793), + [anon_sym_noreturn] = ACTIONS(1793), + [anon_sym_alignas] = ACTIONS(1799), + [anon_sym__Alignas] = ACTIONS(1799), + [anon_sym_DASH_DASH] = ACTIONS(1801), + [anon_sym_PLUS_PLUS] = ACTIONS(1801), + [anon_sym_sizeof] = ACTIONS(1771), [anon_sym___alignof__] = ACTIONS(85), [anon_sym___alignof] = ACTIONS(85), [anon_sym__alignof] = ACTIONS(85), @@ -62836,58 +57489,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [470] = { - [sym_type_qualifier] = STATE(706), - [sym_alignas_qualifier] = STATE(751), - [sym__expression] = STATE(1112), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(941), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(941), - [sym_call_expression] = STATE(941), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(941), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(941), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [aux_sym_array_declarator_repeat1] = STATE(706), - [sym_identifier] = ACTIONS(1746), - [anon_sym_LPAREN2] = ACTIONS(1768), - [anon_sym_BANG] = ACTIONS(1750), - [anon_sym_TILDE] = ACTIONS(1750), - [anon_sym_DASH] = ACTIONS(1748), - [anon_sym_PLUS] = ACTIONS(1748), - [anon_sym_STAR] = ACTIONS(1802), - [anon_sym_AMP] = ACTIONS(1772), - [anon_sym___extension__] = ACTIONS(1774), - [anon_sym_static] = ACTIONS(1792), - [anon_sym_RBRACK] = ACTIONS(1804), - [anon_sym_const] = ACTIONS(1774), - [anon_sym_constexpr] = ACTIONS(1774), - [anon_sym_volatile] = ACTIONS(1774), - [anon_sym_restrict] = ACTIONS(1774), - [anon_sym___restrict__] = ACTIONS(1774), - [anon_sym__Atomic] = ACTIONS(1774), - [anon_sym__Noreturn] = ACTIONS(1774), - [anon_sym_noreturn] = ACTIONS(1774), - [anon_sym_alignas] = ACTIONS(1780), - [anon_sym__Alignas] = ACTIONS(1780), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_sizeof] = ACTIONS(1752), + [418] = { + [sym_type_qualifier] = STATE(658), + [sym_alignas_qualifier] = STATE(700), + [sym_expression] = STATE(1054), + [sym__string] = STATE(672), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(891), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(891), + [sym_call_expression] = STATE(891), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(891), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(891), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_array_declarator_repeat1] = STATE(658), + [sym_identifier] = ACTIONS(1765), + [anon_sym_LPAREN2] = ACTIONS(1787), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_DASH] = ACTIONS(1767), + [anon_sym_PLUS] = ACTIONS(1767), + [anon_sym_STAR] = ACTIONS(1821), + [anon_sym_AMP] = ACTIONS(1791), + [anon_sym___extension__] = ACTIONS(1793), + [anon_sym_static] = ACTIONS(1805), + [anon_sym_RBRACK] = ACTIONS(1823), + [anon_sym_const] = ACTIONS(1793), + [anon_sym_constexpr] = ACTIONS(1793), + [anon_sym_volatile] = ACTIONS(1793), + [anon_sym_restrict] = ACTIONS(1793), + [anon_sym___restrict__] = ACTIONS(1793), + [anon_sym__Atomic] = ACTIONS(1793), + [anon_sym__Noreturn] = ACTIONS(1793), + [anon_sym_noreturn] = ACTIONS(1793), + [anon_sym_alignas] = ACTIONS(1799), + [anon_sym__Alignas] = ACTIONS(1799), + [anon_sym_DASH_DASH] = ACTIONS(1801), + [anon_sym_PLUS_PLUS] = ACTIONS(1801), + [anon_sym_sizeof] = ACTIONS(1771), [anon_sym___alignof__] = ACTIONS(85), [anon_sym___alignof] = ACTIONS(85), [anon_sym__alignof] = ACTIONS(85), @@ -62914,58 +57566,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [471] = { - [sym_type_qualifier] = STATE(706), - [sym_alignas_qualifier] = STATE(751), - [sym__expression] = STATE(1113), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(941), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(941), - [sym_call_expression] = STATE(941), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(941), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(941), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [aux_sym_array_declarator_repeat1] = STATE(706), - [sym_identifier] = ACTIONS(1746), - [anon_sym_LPAREN2] = ACTIONS(1768), - [anon_sym_BANG] = ACTIONS(1750), - [anon_sym_TILDE] = ACTIONS(1750), - [anon_sym_DASH] = ACTIONS(1748), - [anon_sym_PLUS] = ACTIONS(1748), - [anon_sym_STAR] = ACTIONS(1806), - [anon_sym_AMP] = ACTIONS(1772), - [anon_sym___extension__] = ACTIONS(1774), - [anon_sym_static] = ACTIONS(1792), - [anon_sym_RBRACK] = ACTIONS(1808), - [anon_sym_const] = ACTIONS(1774), - [anon_sym_constexpr] = ACTIONS(1774), - [anon_sym_volatile] = ACTIONS(1774), - [anon_sym_restrict] = ACTIONS(1774), - [anon_sym___restrict__] = ACTIONS(1774), - [anon_sym__Atomic] = ACTIONS(1774), - [anon_sym__Noreturn] = ACTIONS(1774), - [anon_sym_noreturn] = ACTIONS(1774), - [anon_sym_alignas] = ACTIONS(1780), - [anon_sym__Alignas] = ACTIONS(1780), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_sizeof] = ACTIONS(1752), + [419] = { + [sym_type_qualifier] = STATE(658), + [sym_alignas_qualifier] = STATE(700), + [sym_expression] = STATE(1063), + [sym__string] = STATE(672), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(891), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(891), + [sym_call_expression] = STATE(891), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(891), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(891), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_array_declarator_repeat1] = STATE(658), + [sym_identifier] = ACTIONS(1765), + [anon_sym_LPAREN2] = ACTIONS(1787), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_DASH] = ACTIONS(1767), + [anon_sym_PLUS] = ACTIONS(1767), + [anon_sym_STAR] = ACTIONS(1825), + [anon_sym_AMP] = ACTIONS(1791), + [anon_sym___extension__] = ACTIONS(1793), + [anon_sym_static] = ACTIONS(1805), + [anon_sym_RBRACK] = ACTIONS(1827), + [anon_sym_const] = ACTIONS(1793), + [anon_sym_constexpr] = ACTIONS(1793), + [anon_sym_volatile] = ACTIONS(1793), + [anon_sym_restrict] = ACTIONS(1793), + [anon_sym___restrict__] = ACTIONS(1793), + [anon_sym__Atomic] = ACTIONS(1793), + [anon_sym__Noreturn] = ACTIONS(1793), + [anon_sym_noreturn] = ACTIONS(1793), + [anon_sym_alignas] = ACTIONS(1799), + [anon_sym__Alignas] = ACTIONS(1799), + [anon_sym_DASH_DASH] = ACTIONS(1801), + [anon_sym_PLUS_PLUS] = ACTIONS(1801), + [anon_sym_sizeof] = ACTIONS(1771), [anon_sym___alignof__] = ACTIONS(85), [anon_sym___alignof] = ACTIONS(85), [anon_sym__alignof] = ACTIONS(85), @@ -62992,58 +57643,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [472] = { - [sym_type_qualifier] = STATE(470), - [sym_alignas_qualifier] = STATE(751), - [sym__expression] = STATE(1104), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(941), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(941), - [sym_call_expression] = STATE(941), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(941), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(941), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [aux_sym_array_declarator_repeat1] = STATE(470), - [sym_identifier] = ACTIONS(1746), - [anon_sym_LPAREN2] = ACTIONS(1768), - [anon_sym_BANG] = ACTIONS(1750), - [anon_sym_TILDE] = ACTIONS(1750), - [anon_sym_DASH] = ACTIONS(1748), - [anon_sym_PLUS] = ACTIONS(1748), - [anon_sym_STAR] = ACTIONS(1810), - [anon_sym_AMP] = ACTIONS(1772), - [anon_sym___extension__] = ACTIONS(1774), - [anon_sym_static] = ACTIONS(1812), - [anon_sym_RBRACK] = ACTIONS(1814), - [anon_sym_const] = ACTIONS(1774), - [anon_sym_constexpr] = ACTIONS(1774), - [anon_sym_volatile] = ACTIONS(1774), - [anon_sym_restrict] = ACTIONS(1774), - [anon_sym___restrict__] = ACTIONS(1774), - [anon_sym__Atomic] = ACTIONS(1774), - [anon_sym__Noreturn] = ACTIONS(1774), - [anon_sym_noreturn] = ACTIONS(1774), - [anon_sym_alignas] = ACTIONS(1780), - [anon_sym__Alignas] = ACTIONS(1780), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_sizeof] = ACTIONS(1752), + [420] = { + [sym_type_qualifier] = STATE(421), + [sym_alignas_qualifier] = STATE(700), + [sym_expression] = STATE(1061), + [sym__string] = STATE(672), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(891), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(891), + [sym_call_expression] = STATE(891), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(891), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(891), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_array_declarator_repeat1] = STATE(421), + [sym_identifier] = ACTIONS(1765), + [anon_sym_LPAREN2] = ACTIONS(1787), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_DASH] = ACTIONS(1767), + [anon_sym_PLUS] = ACTIONS(1767), + [anon_sym_STAR] = ACTIONS(1829), + [anon_sym_AMP] = ACTIONS(1791), + [anon_sym___extension__] = ACTIONS(1793), + [anon_sym_static] = ACTIONS(1831), + [anon_sym_RBRACK] = ACTIONS(1833), + [anon_sym_const] = ACTIONS(1793), + [anon_sym_constexpr] = ACTIONS(1793), + [anon_sym_volatile] = ACTIONS(1793), + [anon_sym_restrict] = ACTIONS(1793), + [anon_sym___restrict__] = ACTIONS(1793), + [anon_sym__Atomic] = ACTIONS(1793), + [anon_sym__Noreturn] = ACTIONS(1793), + [anon_sym_noreturn] = ACTIONS(1793), + [anon_sym_alignas] = ACTIONS(1799), + [anon_sym__Alignas] = ACTIONS(1799), + [anon_sym_DASH_DASH] = ACTIONS(1801), + [anon_sym_PLUS_PLUS] = ACTIONS(1801), + [anon_sym_sizeof] = ACTIONS(1771), [anon_sym___alignof__] = ACTIONS(85), [anon_sym___alignof] = ACTIONS(85), [anon_sym__alignof] = ACTIONS(85), @@ -63070,58 +57720,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [473] = { - [sym_type_qualifier] = STATE(706), - [sym_alignas_qualifier] = STATE(751), - [sym__expression] = STATE(1102), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(941), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(941), - [sym_call_expression] = STATE(941), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(941), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(941), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [aux_sym_array_declarator_repeat1] = STATE(706), - [sym_identifier] = ACTIONS(1746), - [anon_sym_LPAREN2] = ACTIONS(1768), - [anon_sym_BANG] = ACTIONS(1750), - [anon_sym_TILDE] = ACTIONS(1750), - [anon_sym_DASH] = ACTIONS(1748), - [anon_sym_PLUS] = ACTIONS(1748), - [anon_sym_STAR] = ACTIONS(1816), - [anon_sym_AMP] = ACTIONS(1772), - [anon_sym___extension__] = ACTIONS(1774), - [anon_sym_static] = ACTIONS(1792), - [anon_sym_RBRACK] = ACTIONS(1818), - [anon_sym_const] = ACTIONS(1774), - [anon_sym_constexpr] = ACTIONS(1774), - [anon_sym_volatile] = ACTIONS(1774), - [anon_sym_restrict] = ACTIONS(1774), - [anon_sym___restrict__] = ACTIONS(1774), - [anon_sym__Atomic] = ACTIONS(1774), - [anon_sym__Noreturn] = ACTIONS(1774), - [anon_sym_noreturn] = ACTIONS(1774), - [anon_sym_alignas] = ACTIONS(1780), - [anon_sym__Alignas] = ACTIONS(1780), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_sizeof] = ACTIONS(1752), + [421] = { + [sym_type_qualifier] = STATE(658), + [sym_alignas_qualifier] = STATE(700), + [sym_expression] = STATE(1059), + [sym__string] = STATE(672), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(891), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(891), + [sym_call_expression] = STATE(891), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(891), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(891), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_array_declarator_repeat1] = STATE(658), + [sym_identifier] = ACTIONS(1765), + [anon_sym_LPAREN2] = ACTIONS(1787), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_DASH] = ACTIONS(1767), + [anon_sym_PLUS] = ACTIONS(1767), + [anon_sym_STAR] = ACTIONS(1835), + [anon_sym_AMP] = ACTIONS(1791), + [anon_sym___extension__] = ACTIONS(1793), + [anon_sym_static] = ACTIONS(1805), + [anon_sym_RBRACK] = ACTIONS(1837), + [anon_sym_const] = ACTIONS(1793), + [anon_sym_constexpr] = ACTIONS(1793), + [anon_sym_volatile] = ACTIONS(1793), + [anon_sym_restrict] = ACTIONS(1793), + [anon_sym___restrict__] = ACTIONS(1793), + [anon_sym__Atomic] = ACTIONS(1793), + [anon_sym__Noreturn] = ACTIONS(1793), + [anon_sym_noreturn] = ACTIONS(1793), + [anon_sym_alignas] = ACTIONS(1799), + [anon_sym__Alignas] = ACTIONS(1799), + [anon_sym_DASH_DASH] = ACTIONS(1801), + [anon_sym_PLUS_PLUS] = ACTIONS(1801), + [anon_sym_sizeof] = ACTIONS(1771), [anon_sym___alignof__] = ACTIONS(85), [anon_sym___alignof] = ACTIONS(85), [anon_sym__alignof] = ACTIONS(85), @@ -63148,58 +57797,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [474] = { - [sym_type_qualifier] = STATE(471), - [sym_alignas_qualifier] = STATE(751), - [sym__expression] = STATE(1118), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(941), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(941), - [sym_call_expression] = STATE(941), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(941), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(941), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [aux_sym_array_declarator_repeat1] = STATE(471), - [sym_identifier] = ACTIONS(1746), - [anon_sym_LPAREN2] = ACTIONS(1768), - [anon_sym_BANG] = ACTIONS(1750), - [anon_sym_TILDE] = ACTIONS(1750), - [anon_sym_DASH] = ACTIONS(1748), - [anon_sym_PLUS] = ACTIONS(1748), - [anon_sym_STAR] = ACTIONS(1820), - [anon_sym_AMP] = ACTIONS(1772), - [anon_sym___extension__] = ACTIONS(1774), - [anon_sym_static] = ACTIONS(1822), - [anon_sym_RBRACK] = ACTIONS(1824), - [anon_sym_const] = ACTIONS(1774), - [anon_sym_constexpr] = ACTIONS(1774), - [anon_sym_volatile] = ACTIONS(1774), - [anon_sym_restrict] = ACTIONS(1774), - [anon_sym___restrict__] = ACTIONS(1774), - [anon_sym__Atomic] = ACTIONS(1774), - [anon_sym__Noreturn] = ACTIONS(1774), - [anon_sym_noreturn] = ACTIONS(1774), - [anon_sym_alignas] = ACTIONS(1780), - [anon_sym__Alignas] = ACTIONS(1780), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_sizeof] = ACTIONS(1752), + [422] = { + [sym_type_qualifier] = STATE(658), + [sym_alignas_qualifier] = STATE(700), + [sym_expression] = STATE(1052), + [sym__string] = STATE(672), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(891), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(891), + [sym_call_expression] = STATE(891), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(891), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(891), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_array_declarator_repeat1] = STATE(658), + [sym_identifier] = ACTIONS(1765), + [anon_sym_LPAREN2] = ACTIONS(1787), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_DASH] = ACTIONS(1767), + [anon_sym_PLUS] = ACTIONS(1767), + [anon_sym_STAR] = ACTIONS(1839), + [anon_sym_AMP] = ACTIONS(1791), + [anon_sym___extension__] = ACTIONS(1793), + [anon_sym_static] = ACTIONS(1805), + [anon_sym_RBRACK] = ACTIONS(1841), + [anon_sym_const] = ACTIONS(1793), + [anon_sym_constexpr] = ACTIONS(1793), + [anon_sym_volatile] = ACTIONS(1793), + [anon_sym_restrict] = ACTIONS(1793), + [anon_sym___restrict__] = ACTIONS(1793), + [anon_sym__Atomic] = ACTIONS(1793), + [anon_sym__Noreturn] = ACTIONS(1793), + [anon_sym_noreturn] = ACTIONS(1793), + [anon_sym_alignas] = ACTIONS(1799), + [anon_sym__Alignas] = ACTIONS(1799), + [anon_sym_DASH_DASH] = ACTIONS(1801), + [anon_sym_PLUS_PLUS] = ACTIONS(1801), + [anon_sym_sizeof] = ACTIONS(1771), [anon_sym___alignof__] = ACTIONS(85), [anon_sym___alignof] = ACTIONS(85), [anon_sym__alignof] = ACTIONS(85), @@ -63226,58 +57874,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [475] = { - [sym_type_qualifier] = STATE(706), - [sym_alignas_qualifier] = STATE(751), - [sym__expression] = STATE(1105), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(941), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(941), - [sym_call_expression] = STATE(941), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(941), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(941), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [aux_sym_array_declarator_repeat1] = STATE(706), - [sym_identifier] = ACTIONS(1746), - [anon_sym_LPAREN2] = ACTIONS(1768), - [anon_sym_BANG] = ACTIONS(1750), - [anon_sym_TILDE] = ACTIONS(1750), - [anon_sym_DASH] = ACTIONS(1748), - [anon_sym_PLUS] = ACTIONS(1748), - [anon_sym_STAR] = ACTIONS(1826), - [anon_sym_AMP] = ACTIONS(1772), - [anon_sym___extension__] = ACTIONS(1774), - [anon_sym_static] = ACTIONS(1792), - [anon_sym_RBRACK] = ACTIONS(1828), - [anon_sym_const] = ACTIONS(1774), - [anon_sym_constexpr] = ACTIONS(1774), - [anon_sym_volatile] = ACTIONS(1774), - [anon_sym_restrict] = ACTIONS(1774), - [anon_sym___restrict__] = ACTIONS(1774), - [anon_sym__Atomic] = ACTIONS(1774), - [anon_sym__Noreturn] = ACTIONS(1774), - [anon_sym_noreturn] = ACTIONS(1774), - [anon_sym_alignas] = ACTIONS(1780), - [anon_sym__Alignas] = ACTIONS(1780), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_sizeof] = ACTIONS(1752), + [423] = { + [sym_type_qualifier] = STATE(415), + [sym_alignas_qualifier] = STATE(700), + [sym_expression] = STATE(1067), + [sym__string] = STATE(672), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(891), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(891), + [sym_call_expression] = STATE(891), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(891), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(891), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_array_declarator_repeat1] = STATE(415), + [sym_identifier] = ACTIONS(1765), + [anon_sym_LPAREN2] = ACTIONS(1787), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_DASH] = ACTIONS(1767), + [anon_sym_PLUS] = ACTIONS(1767), + [anon_sym_STAR] = ACTIONS(1843), + [anon_sym_AMP] = ACTIONS(1791), + [anon_sym___extension__] = ACTIONS(1793), + [anon_sym_static] = ACTIONS(1845), + [anon_sym_RBRACK] = ACTIONS(1847), + [anon_sym_const] = ACTIONS(1793), + [anon_sym_constexpr] = ACTIONS(1793), + [anon_sym_volatile] = ACTIONS(1793), + [anon_sym_restrict] = ACTIONS(1793), + [anon_sym___restrict__] = ACTIONS(1793), + [anon_sym__Atomic] = ACTIONS(1793), + [anon_sym__Noreturn] = ACTIONS(1793), + [anon_sym_noreturn] = ACTIONS(1793), + [anon_sym_alignas] = ACTIONS(1799), + [anon_sym__Alignas] = ACTIONS(1799), + [anon_sym_DASH_DASH] = ACTIONS(1801), + [anon_sym_PLUS_PLUS] = ACTIONS(1801), + [anon_sym_sizeof] = ACTIONS(1771), [anon_sym___alignof__] = ACTIONS(85), [anon_sym___alignof] = ACTIONS(85), [anon_sym__alignof] = ACTIONS(85), @@ -63304,45 +57951,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [476] = { - [sym_preproc_def] = STATE(479), - [sym_preproc_function_def] = STATE(479), - [sym_preproc_call] = STATE(479), - [sym_preproc_if_in_field_declaration_list] = STATE(479), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(479), - [sym_preproc_else_in_field_declaration_list] = STATE(1937), - [sym_preproc_elif_in_field_declaration_list] = STATE(1937), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1937), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1301), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(752), - [sym_ms_declspec_modifier] = STATE(752), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(763), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym__field_declaration_list_item] = STATE(479), - [sym_field_declaration] = STATE(479), - [sym_macro_type_specifier] = STATE(822), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(479), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), - [sym_identifier] = ACTIONS(1830), - [aux_sym_preproc_def_token1] = ACTIONS(1832), - [aux_sym_preproc_if_token1] = ACTIONS(1834), - [aux_sym_preproc_if_token2] = ACTIONS(1836), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1838), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1838), - [aux_sym_preproc_else_token1] = ACTIONS(1840), - [aux_sym_preproc_elif_token1] = ACTIONS(1842), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1844), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1844), - [sym_preproc_directive] = ACTIONS(1846), + [424] = { + [sym_preproc_def] = STATE(439), + [sym_preproc_function_def] = STATE(439), + [sym_preproc_call] = STATE(439), + [sym_preproc_if_in_field_declaration_list] = STATE(439), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(439), + [sym_preproc_else_in_field_declaration_list] = STATE(1887), + [sym_preproc_elif_in_field_declaration_list] = STATE(1887), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1887), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1256), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(698), + [sym_ms_declspec_modifier] = STATE(698), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym__field_declaration_list_item] = STATE(439), + [sym_field_declaration] = STATE(439), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(439), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(1849), + [aux_sym_preproc_def_token1] = ACTIONS(1851), + [aux_sym_preproc_if_token1] = ACTIONS(1853), + [aux_sym_preproc_if_token2] = ACTIONS(1855), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1857), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1857), + [aux_sym_preproc_else_token1] = ACTIONS(1859), + [aux_sym_preproc_elif_token1] = ACTIONS(1861), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1863), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1863), + [sym_preproc_directive] = ACTIONS(1865), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -63377,118 +58024,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(57), [sym_comment] = ACTIONS(3), }, - [477] = { - [sym__expression] = STATE(1049), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_initializer_list] = STATE(1593), - [sym_initializer_pair] = STATE(1593), - [sym_subscript_designator] = STATE(1426), - [sym_subscript_range_designator] = STATE(1426), - [sym_field_designator] = STATE(1426), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [aux_sym_initializer_pair_repeat1] = STATE(1426), - [sym_identifier] = ACTIONS(1848), - [anon_sym_COMMA] = ACTIONS(1850), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(1375), - [anon_sym_RBRACE] = ACTIONS(1852), - [anon_sym_LBRACK] = ACTIONS(1854), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [anon_sym_DOT] = ACTIONS(1856), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - }, - [478] = { - [sym_preproc_def] = STATE(490), - [sym_preproc_function_def] = STATE(490), - [sym_preproc_call] = STATE(490), - [sym_preproc_if_in_field_declaration_list] = STATE(490), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(490), - [sym_preproc_else_in_field_declaration_list] = STATE(1945), - [sym_preproc_elif_in_field_declaration_list] = STATE(1945), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1945), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1301), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(752), - [sym_ms_declspec_modifier] = STATE(752), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(763), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym__field_declaration_list_item] = STATE(490), - [sym_field_declaration] = STATE(490), - [sym_macro_type_specifier] = STATE(822), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(490), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), - [sym_identifier] = ACTIONS(1830), - [aux_sym_preproc_def_token1] = ACTIONS(1832), - [aux_sym_preproc_if_token1] = ACTIONS(1834), - [aux_sym_preproc_if_token2] = ACTIONS(1858), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1838), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1838), - [aux_sym_preproc_else_token1] = ACTIONS(1840), - [aux_sym_preproc_elif_token1] = ACTIONS(1842), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1844), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1844), - [sym_preproc_directive] = ACTIONS(1846), + [425] = { + [sym_preproc_def] = STATE(444), + [sym_preproc_function_def] = STATE(444), + [sym_preproc_call] = STATE(444), + [sym_preproc_if_in_field_declaration_list] = STATE(444), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(444), + [sym_preproc_else_in_field_declaration_list] = STATE(1795), + [sym_preproc_elif_in_field_declaration_list] = STATE(1795), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1795), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1256), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(698), + [sym_ms_declspec_modifier] = STATE(698), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym__field_declaration_list_item] = STATE(444), + [sym_field_declaration] = STATE(444), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(444), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(1849), + [aux_sym_preproc_def_token1] = ACTIONS(1851), + [aux_sym_preproc_if_token1] = ACTIONS(1853), + [aux_sym_preproc_if_token2] = ACTIONS(1867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1857), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1857), + [aux_sym_preproc_else_token1] = ACTIONS(1859), + [aux_sym_preproc_elif_token1] = ACTIONS(1861), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1863), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1863), + [sym_preproc_directive] = ACTIONS(1865), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -63523,45 +58097,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(57), [sym_comment] = ACTIONS(3), }, - [479] = { - [sym_preproc_def] = STATE(497), - [sym_preproc_function_def] = STATE(497), - [sym_preproc_call] = STATE(497), - [sym_preproc_if_in_field_declaration_list] = STATE(497), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(497), - [sym_preproc_else_in_field_declaration_list] = STATE(1955), - [sym_preproc_elif_in_field_declaration_list] = STATE(1955), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1955), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1301), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(752), - [sym_ms_declspec_modifier] = STATE(752), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(763), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym__field_declaration_list_item] = STATE(497), - [sym_field_declaration] = STATE(497), - [sym_macro_type_specifier] = STATE(822), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(497), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), - [sym_identifier] = ACTIONS(1830), - [aux_sym_preproc_def_token1] = ACTIONS(1832), - [aux_sym_preproc_if_token1] = ACTIONS(1834), - [aux_sym_preproc_if_token2] = ACTIONS(1860), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1838), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1838), - [aux_sym_preproc_else_token1] = ACTIONS(1840), - [aux_sym_preproc_elif_token1] = ACTIONS(1842), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1844), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1844), - [sym_preproc_directive] = ACTIONS(1846), + [426] = { + [sym_preproc_def] = STATE(444), + [sym_preproc_function_def] = STATE(444), + [sym_preproc_call] = STATE(444), + [sym_preproc_if_in_field_declaration_list] = STATE(444), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(444), + [sym_preproc_else_in_field_declaration_list] = STATE(1905), + [sym_preproc_elif_in_field_declaration_list] = STATE(1905), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1905), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1256), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(698), + [sym_ms_declspec_modifier] = STATE(698), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym__field_declaration_list_item] = STATE(444), + [sym_field_declaration] = STATE(444), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(444), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(1849), + [aux_sym_preproc_def_token1] = ACTIONS(1851), + [aux_sym_preproc_if_token1] = ACTIONS(1853), + [aux_sym_preproc_if_token2] = ACTIONS(1869), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1857), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1857), + [aux_sym_preproc_else_token1] = ACTIONS(1859), + [aux_sym_preproc_elif_token1] = ACTIONS(1861), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1863), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1863), + [sym_preproc_directive] = ACTIONS(1865), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -63596,45 +58170,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(57), [sym_comment] = ACTIONS(3), }, - [480] = { - [sym_preproc_def] = STATE(497), - [sym_preproc_function_def] = STATE(497), - [sym_preproc_call] = STATE(497), - [sym_preproc_if_in_field_declaration_list] = STATE(497), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(497), - [sym_preproc_else_in_field_declaration_list] = STATE(1972), - [sym_preproc_elif_in_field_declaration_list] = STATE(1972), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1972), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1301), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(752), - [sym_ms_declspec_modifier] = STATE(752), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(763), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym__field_declaration_list_item] = STATE(497), - [sym_field_declaration] = STATE(497), - [sym_macro_type_specifier] = STATE(822), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(497), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), - [sym_identifier] = ACTIONS(1830), - [aux_sym_preproc_def_token1] = ACTIONS(1832), - [aux_sym_preproc_if_token1] = ACTIONS(1834), - [aux_sym_preproc_if_token2] = ACTIONS(1862), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1838), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1838), - [aux_sym_preproc_else_token1] = ACTIONS(1840), - [aux_sym_preproc_elif_token1] = ACTIONS(1842), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1844), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1844), - [sym_preproc_directive] = ACTIONS(1846), + [427] = { + [sym_preproc_def] = STATE(444), + [sym_preproc_function_def] = STATE(444), + [sym_preproc_call] = STATE(444), + [sym_preproc_if_in_field_declaration_list] = STATE(444), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(444), + [sym_preproc_else_in_field_declaration_list] = STATE(1926), + [sym_preproc_elif_in_field_declaration_list] = STATE(1926), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1926), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1256), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(698), + [sym_ms_declspec_modifier] = STATE(698), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym__field_declaration_list_item] = STATE(444), + [sym_field_declaration] = STATE(444), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(444), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(1849), + [aux_sym_preproc_def_token1] = ACTIONS(1851), + [aux_sym_preproc_if_token1] = ACTIONS(1853), + [aux_sym_preproc_if_token2] = ACTIONS(1871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1857), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1857), + [aux_sym_preproc_else_token1] = ACTIONS(1859), + [aux_sym_preproc_elif_token1] = ACTIONS(1861), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1863), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1863), + [sym_preproc_directive] = ACTIONS(1865), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -63669,45 +58243,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(57), [sym_comment] = ACTIONS(3), }, - [481] = { - [sym_preproc_def] = STATE(497), - [sym_preproc_function_def] = STATE(497), - [sym_preproc_call] = STATE(497), - [sym_preproc_if_in_field_declaration_list] = STATE(497), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(497), - [sym_preproc_else_in_field_declaration_list] = STATE(1789), - [sym_preproc_elif_in_field_declaration_list] = STATE(1789), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1789), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1301), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(752), - [sym_ms_declspec_modifier] = STATE(752), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(763), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym__field_declaration_list_item] = STATE(497), - [sym_field_declaration] = STATE(497), - [sym_macro_type_specifier] = STATE(822), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(497), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), - [sym_identifier] = ACTIONS(1830), - [aux_sym_preproc_def_token1] = ACTIONS(1832), - [aux_sym_preproc_if_token1] = ACTIONS(1834), - [aux_sym_preproc_if_token2] = ACTIONS(1864), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1838), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1838), - [aux_sym_preproc_else_token1] = ACTIONS(1840), - [aux_sym_preproc_elif_token1] = ACTIONS(1842), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1844), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1844), - [sym_preproc_directive] = ACTIONS(1846), + [428] = { + [sym_preproc_def] = STATE(425), + [sym_preproc_function_def] = STATE(425), + [sym_preproc_call] = STATE(425), + [sym_preproc_if_in_field_declaration_list] = STATE(425), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(425), + [sym_preproc_else_in_field_declaration_list] = STATE(1745), + [sym_preproc_elif_in_field_declaration_list] = STATE(1745), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1745), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1256), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(698), + [sym_ms_declspec_modifier] = STATE(698), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym__field_declaration_list_item] = STATE(425), + [sym_field_declaration] = STATE(425), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(425), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(1849), + [aux_sym_preproc_def_token1] = ACTIONS(1851), + [aux_sym_preproc_if_token1] = ACTIONS(1853), + [aux_sym_preproc_if_token2] = ACTIONS(1873), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1857), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1857), + [aux_sym_preproc_else_token1] = ACTIONS(1859), + [aux_sym_preproc_elif_token1] = ACTIONS(1861), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1863), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1863), + [sym_preproc_directive] = ACTIONS(1865), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -63742,45 +58316,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(57), [sym_comment] = ACTIONS(3), }, - [482] = { - [sym_preproc_def] = STATE(497), - [sym_preproc_function_def] = STATE(497), - [sym_preproc_call] = STATE(497), - [sym_preproc_if_in_field_declaration_list] = STATE(497), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(497), - [sym_preproc_else_in_field_declaration_list] = STATE(1938), - [sym_preproc_elif_in_field_declaration_list] = STATE(1938), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1938), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1301), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(752), - [sym_ms_declspec_modifier] = STATE(752), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(763), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym__field_declaration_list_item] = STATE(497), - [sym_field_declaration] = STATE(497), - [sym_macro_type_specifier] = STATE(822), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(497), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), - [sym_identifier] = ACTIONS(1830), - [aux_sym_preproc_def_token1] = ACTIONS(1832), - [aux_sym_preproc_if_token1] = ACTIONS(1834), - [aux_sym_preproc_if_token2] = ACTIONS(1866), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1838), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1838), - [aux_sym_preproc_else_token1] = ACTIONS(1840), - [aux_sym_preproc_elif_token1] = ACTIONS(1842), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1844), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1844), - [sym_preproc_directive] = ACTIONS(1846), + [429] = { + [sym_preproc_def] = STATE(430), + [sym_preproc_function_def] = STATE(430), + [sym_preproc_call] = STATE(430), + [sym_preproc_if_in_field_declaration_list] = STATE(430), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(430), + [sym_preproc_else_in_field_declaration_list] = STATE(1883), + [sym_preproc_elif_in_field_declaration_list] = STATE(1883), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1883), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1256), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(698), + [sym_ms_declspec_modifier] = STATE(698), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym__field_declaration_list_item] = STATE(430), + [sym_field_declaration] = STATE(430), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(430), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(1849), + [aux_sym_preproc_def_token1] = ACTIONS(1851), + [aux_sym_preproc_if_token1] = ACTIONS(1853), + [aux_sym_preproc_if_token2] = ACTIONS(1875), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1857), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1857), + [aux_sym_preproc_else_token1] = ACTIONS(1859), + [aux_sym_preproc_elif_token1] = ACTIONS(1861), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1863), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1863), + [sym_preproc_directive] = ACTIONS(1865), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -63815,45 +58389,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(57), [sym_comment] = ACTIONS(3), }, - [483] = { - [sym_preproc_def] = STATE(480), - [sym_preproc_function_def] = STATE(480), - [sym_preproc_call] = STATE(480), - [sym_preproc_if_in_field_declaration_list] = STATE(480), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(480), - [sym_preproc_else_in_field_declaration_list] = STATE(1994), - [sym_preproc_elif_in_field_declaration_list] = STATE(1994), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1994), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1301), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(752), - [sym_ms_declspec_modifier] = STATE(752), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(763), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym__field_declaration_list_item] = STATE(480), - [sym_field_declaration] = STATE(480), - [sym_macro_type_specifier] = STATE(822), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(480), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), - [sym_identifier] = ACTIONS(1830), - [aux_sym_preproc_def_token1] = ACTIONS(1832), - [aux_sym_preproc_if_token1] = ACTIONS(1834), - [aux_sym_preproc_if_token2] = ACTIONS(1868), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1838), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1838), - [aux_sym_preproc_else_token1] = ACTIONS(1840), - [aux_sym_preproc_elif_token1] = ACTIONS(1842), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1844), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1844), - [sym_preproc_directive] = ACTIONS(1846), + [430] = { + [sym_preproc_def] = STATE(444), + [sym_preproc_function_def] = STATE(444), + [sym_preproc_call] = STATE(444), + [sym_preproc_if_in_field_declaration_list] = STATE(444), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(444), + [sym_preproc_else_in_field_declaration_list] = STATE(1867), + [sym_preproc_elif_in_field_declaration_list] = STATE(1867), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1867), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1256), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(698), + [sym_ms_declspec_modifier] = STATE(698), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym__field_declaration_list_item] = STATE(444), + [sym_field_declaration] = STATE(444), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(444), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(1849), + [aux_sym_preproc_def_token1] = ACTIONS(1851), + [aux_sym_preproc_if_token1] = ACTIONS(1853), + [aux_sym_preproc_if_token2] = ACTIONS(1877), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1857), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1857), + [aux_sym_preproc_else_token1] = ACTIONS(1859), + [aux_sym_preproc_elif_token1] = ACTIONS(1861), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1863), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1863), + [sym_preproc_directive] = ACTIONS(1865), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -63888,45 +58462,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(57), [sym_comment] = ACTIONS(3), }, - [484] = { - [sym_preproc_def] = STATE(497), - [sym_preproc_function_def] = STATE(497), - [sym_preproc_call] = STATE(497), - [sym_preproc_if_in_field_declaration_list] = STATE(497), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(497), - [sym_preproc_else_in_field_declaration_list] = STATE(1973), - [sym_preproc_elif_in_field_declaration_list] = STATE(1973), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1973), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1301), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(752), - [sym_ms_declspec_modifier] = STATE(752), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(763), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym__field_declaration_list_item] = STATE(497), - [sym_field_declaration] = STATE(497), - [sym_macro_type_specifier] = STATE(822), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(497), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), - [sym_identifier] = ACTIONS(1830), - [aux_sym_preproc_def_token1] = ACTIONS(1832), - [aux_sym_preproc_if_token1] = ACTIONS(1834), - [aux_sym_preproc_if_token2] = ACTIONS(1870), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1838), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1838), - [aux_sym_preproc_else_token1] = ACTIONS(1840), - [aux_sym_preproc_elif_token1] = ACTIONS(1842), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1844), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1844), - [sym_preproc_directive] = ACTIONS(1846), + [431] = { + [sym_preproc_def] = STATE(427), + [sym_preproc_function_def] = STATE(427), + [sym_preproc_call] = STATE(427), + [sym_preproc_if_in_field_declaration_list] = STATE(427), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(427), + [sym_preproc_else_in_field_declaration_list] = STATE(1904), + [sym_preproc_elif_in_field_declaration_list] = STATE(1904), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1904), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1256), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(698), + [sym_ms_declspec_modifier] = STATE(698), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym__field_declaration_list_item] = STATE(427), + [sym_field_declaration] = STATE(427), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(427), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(1849), + [aux_sym_preproc_def_token1] = ACTIONS(1851), + [aux_sym_preproc_if_token1] = ACTIONS(1853), + [aux_sym_preproc_if_token2] = ACTIONS(1879), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1857), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1857), + [aux_sym_preproc_else_token1] = ACTIONS(1859), + [aux_sym_preproc_elif_token1] = ACTIONS(1861), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1863), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1863), + [sym_preproc_directive] = ACTIONS(1865), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -63961,45 +58535,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(57), [sym_comment] = ACTIONS(3), }, - [485] = { - [sym_preproc_def] = STATE(489), - [sym_preproc_function_def] = STATE(489), - [sym_preproc_call] = STATE(489), - [sym_preproc_if_in_field_declaration_list] = STATE(489), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(489), - [sym_preproc_else_in_field_declaration_list] = STATE(1788), - [sym_preproc_elif_in_field_declaration_list] = STATE(1788), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1788), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1301), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(752), - [sym_ms_declspec_modifier] = STATE(752), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(763), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym__field_declaration_list_item] = STATE(489), - [sym_field_declaration] = STATE(489), - [sym_macro_type_specifier] = STATE(822), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(489), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), - [sym_identifier] = ACTIONS(1830), - [aux_sym_preproc_def_token1] = ACTIONS(1832), - [aux_sym_preproc_if_token1] = ACTIONS(1834), - [aux_sym_preproc_if_token2] = ACTIONS(1872), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1838), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1838), - [aux_sym_preproc_else_token1] = ACTIONS(1840), - [aux_sym_preproc_elif_token1] = ACTIONS(1842), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1844), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1844), - [sym_preproc_directive] = ACTIONS(1846), + [432] = { + [sym_preproc_def] = STATE(436), + [sym_preproc_function_def] = STATE(436), + [sym_preproc_call] = STATE(436), + [sym_preproc_if_in_field_declaration_list] = STATE(436), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(436), + [sym_preproc_else_in_field_declaration_list] = STATE(1884), + [sym_preproc_elif_in_field_declaration_list] = STATE(1884), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1884), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1256), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(698), + [sym_ms_declspec_modifier] = STATE(698), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym__field_declaration_list_item] = STATE(436), + [sym_field_declaration] = STATE(436), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(436), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(1849), + [aux_sym_preproc_def_token1] = ACTIONS(1851), + [aux_sym_preproc_if_token1] = ACTIONS(1853), + [aux_sym_preproc_if_token2] = ACTIONS(1881), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1857), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1857), + [aux_sym_preproc_else_token1] = ACTIONS(1859), + [aux_sym_preproc_elif_token1] = ACTIONS(1861), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1863), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1863), + [sym_preproc_directive] = ACTIONS(1865), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -64034,45 +58608,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(57), [sym_comment] = ACTIONS(3), }, - [486] = { - [sym_preproc_def] = STATE(487), - [sym_preproc_function_def] = STATE(487), - [sym_preproc_call] = STATE(487), - [sym_preproc_if_in_field_declaration_list] = STATE(487), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(487), - [sym_preproc_else_in_field_declaration_list] = STATE(1975), - [sym_preproc_elif_in_field_declaration_list] = STATE(1975), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1975), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1301), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(752), - [sym_ms_declspec_modifier] = STATE(752), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(763), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym__field_declaration_list_item] = STATE(487), - [sym_field_declaration] = STATE(487), - [sym_macro_type_specifier] = STATE(822), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(487), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), - [sym_identifier] = ACTIONS(1830), - [aux_sym_preproc_def_token1] = ACTIONS(1832), - [aux_sym_preproc_if_token1] = ACTIONS(1834), - [aux_sym_preproc_if_token2] = ACTIONS(1874), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1838), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1838), - [aux_sym_preproc_else_token1] = ACTIONS(1840), - [aux_sym_preproc_elif_token1] = ACTIONS(1842), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1844), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1844), - [sym_preproc_directive] = ACTIONS(1846), + [433] = { + [sym_preproc_def] = STATE(444), + [sym_preproc_function_def] = STATE(444), + [sym_preproc_call] = STATE(444), + [sym_preproc_if_in_field_declaration_list] = STATE(444), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(444), + [sym_preproc_else_in_field_declaration_list] = STATE(1870), + [sym_preproc_elif_in_field_declaration_list] = STATE(1870), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1870), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1256), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(698), + [sym_ms_declspec_modifier] = STATE(698), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym__field_declaration_list_item] = STATE(444), + [sym_field_declaration] = STATE(444), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(444), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(1849), + [aux_sym_preproc_def_token1] = ACTIONS(1851), + [aux_sym_preproc_if_token1] = ACTIONS(1853), + [aux_sym_preproc_if_token2] = ACTIONS(1883), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1857), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1857), + [aux_sym_preproc_else_token1] = ACTIONS(1859), + [aux_sym_preproc_elif_token1] = ACTIONS(1861), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1863), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1863), + [sym_preproc_directive] = ACTIONS(1865), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -64107,45 +58681,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(57), [sym_comment] = ACTIONS(3), }, - [487] = { - [sym_preproc_def] = STATE(497), - [sym_preproc_function_def] = STATE(497), - [sym_preproc_call] = STATE(497), - [sym_preproc_if_in_field_declaration_list] = STATE(497), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(497), - [sym_preproc_else_in_field_declaration_list] = STATE(1967), - [sym_preproc_elif_in_field_declaration_list] = STATE(1967), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1967), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1301), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(752), - [sym_ms_declspec_modifier] = STATE(752), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(763), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym__field_declaration_list_item] = STATE(497), - [sym_field_declaration] = STATE(497), - [sym_macro_type_specifier] = STATE(822), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(497), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), - [sym_identifier] = ACTIONS(1830), - [aux_sym_preproc_def_token1] = ACTIONS(1832), - [aux_sym_preproc_if_token1] = ACTIONS(1834), - [aux_sym_preproc_if_token2] = ACTIONS(1876), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1838), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1838), - [aux_sym_preproc_else_token1] = ACTIONS(1840), - [aux_sym_preproc_elif_token1] = ACTIONS(1842), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1844), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1844), - [sym_preproc_directive] = ACTIONS(1846), + [434] = { + [sym_preproc_def] = STATE(433), + [sym_preproc_function_def] = STATE(433), + [sym_preproc_call] = STATE(433), + [sym_preproc_if_in_field_declaration_list] = STATE(433), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(433), + [sym_preproc_else_in_field_declaration_list] = STATE(1900), + [sym_preproc_elif_in_field_declaration_list] = STATE(1900), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1900), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1256), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(698), + [sym_ms_declspec_modifier] = STATE(698), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym__field_declaration_list_item] = STATE(433), + [sym_field_declaration] = STATE(433), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(433), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(1849), + [aux_sym_preproc_def_token1] = ACTIONS(1851), + [aux_sym_preproc_if_token1] = ACTIONS(1853), + [aux_sym_preproc_if_token2] = ACTIONS(1885), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1857), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1857), + [aux_sym_preproc_else_token1] = ACTIONS(1859), + [aux_sym_preproc_elif_token1] = ACTIONS(1861), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1863), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1863), + [sym_preproc_directive] = ACTIONS(1865), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -64180,45 +58754,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(57), [sym_comment] = ACTIONS(3), }, - [488] = { - [sym_preproc_def] = STATE(484), - [sym_preproc_function_def] = STATE(484), - [sym_preproc_call] = STATE(484), - [sym_preproc_if_in_field_declaration_list] = STATE(484), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(484), - [sym_preproc_else_in_field_declaration_list] = STATE(2002), - [sym_preproc_elif_in_field_declaration_list] = STATE(2002), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(2002), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1301), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(752), - [sym_ms_declspec_modifier] = STATE(752), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(763), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym__field_declaration_list_item] = STATE(484), - [sym_field_declaration] = STATE(484), - [sym_macro_type_specifier] = STATE(822), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(484), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), - [sym_identifier] = ACTIONS(1830), - [aux_sym_preproc_def_token1] = ACTIONS(1832), - [aux_sym_preproc_if_token1] = ACTIONS(1834), - [aux_sym_preproc_if_token2] = ACTIONS(1878), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1838), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1838), - [aux_sym_preproc_else_token1] = ACTIONS(1840), - [aux_sym_preproc_elif_token1] = ACTIONS(1842), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1844), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1844), - [sym_preproc_directive] = ACTIONS(1846), + [435] = { + [sym_preproc_def] = STATE(426), + [sym_preproc_function_def] = STATE(426), + [sym_preproc_call] = STATE(426), + [sym_preproc_if_in_field_declaration_list] = STATE(426), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(426), + [sym_preproc_else_in_field_declaration_list] = STATE(1869), + [sym_preproc_elif_in_field_declaration_list] = STATE(1869), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1869), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1256), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(698), + [sym_ms_declspec_modifier] = STATE(698), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym__field_declaration_list_item] = STATE(426), + [sym_field_declaration] = STATE(426), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(426), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(1849), + [aux_sym_preproc_def_token1] = ACTIONS(1851), + [aux_sym_preproc_if_token1] = ACTIONS(1853), + [aux_sym_preproc_if_token2] = ACTIONS(1887), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1857), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1857), + [aux_sym_preproc_else_token1] = ACTIONS(1859), + [aux_sym_preproc_elif_token1] = ACTIONS(1861), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1863), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1863), + [sym_preproc_directive] = ACTIONS(1865), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -64253,45 +58827,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(57), [sym_comment] = ACTIONS(3), }, - [489] = { - [sym_preproc_def] = STATE(497), - [sym_preproc_function_def] = STATE(497), - [sym_preproc_call] = STATE(497), - [sym_preproc_if_in_field_declaration_list] = STATE(497), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(497), - [sym_preproc_else_in_field_declaration_list] = STATE(1783), - [sym_preproc_elif_in_field_declaration_list] = STATE(1783), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1783), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1301), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(752), - [sym_ms_declspec_modifier] = STATE(752), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(763), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym__field_declaration_list_item] = STATE(497), - [sym_field_declaration] = STATE(497), - [sym_macro_type_specifier] = STATE(822), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(497), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), - [sym_identifier] = ACTIONS(1830), - [aux_sym_preproc_def_token1] = ACTIONS(1832), - [aux_sym_preproc_if_token1] = ACTIONS(1834), - [aux_sym_preproc_if_token2] = ACTIONS(1880), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1838), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1838), - [aux_sym_preproc_else_token1] = ACTIONS(1840), - [aux_sym_preproc_elif_token1] = ACTIONS(1842), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1844), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1844), - [sym_preproc_directive] = ACTIONS(1846), + [436] = { + [sym_preproc_def] = STATE(444), + [sym_preproc_function_def] = STATE(444), + [sym_preproc_call] = STATE(444), + [sym_preproc_if_in_field_declaration_list] = STATE(444), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(444), + [sym_preproc_else_in_field_declaration_list] = STATE(1865), + [sym_preproc_elif_in_field_declaration_list] = STATE(1865), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1865), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1256), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(698), + [sym_ms_declspec_modifier] = STATE(698), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym__field_declaration_list_item] = STATE(444), + [sym_field_declaration] = STATE(444), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(444), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(1849), + [aux_sym_preproc_def_token1] = ACTIONS(1851), + [aux_sym_preproc_if_token1] = ACTIONS(1853), + [aux_sym_preproc_if_token2] = ACTIONS(1889), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1857), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1857), + [aux_sym_preproc_else_token1] = ACTIONS(1859), + [aux_sym_preproc_elif_token1] = ACTIONS(1861), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1863), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1863), + [sym_preproc_directive] = ACTIONS(1865), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -64326,45 +58900,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(57), [sym_comment] = ACTIONS(3), }, - [490] = { - [sym_preproc_def] = STATE(497), - [sym_preproc_function_def] = STATE(497), - [sym_preproc_call] = STATE(497), - [sym_preproc_if_in_field_declaration_list] = STATE(497), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(497), - [sym_preproc_else_in_field_declaration_list] = STATE(1977), - [sym_preproc_elif_in_field_declaration_list] = STATE(1977), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1977), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1301), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(752), - [sym_ms_declspec_modifier] = STATE(752), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(763), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym__field_declaration_list_item] = STATE(497), - [sym_field_declaration] = STATE(497), - [sym_macro_type_specifier] = STATE(822), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(497), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), - [sym_identifier] = ACTIONS(1830), - [aux_sym_preproc_def_token1] = ACTIONS(1832), - [aux_sym_preproc_if_token1] = ACTIONS(1834), - [aux_sym_preproc_if_token2] = ACTIONS(1882), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1838), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1838), - [aux_sym_preproc_else_token1] = ACTIONS(1840), - [aux_sym_preproc_elif_token1] = ACTIONS(1842), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1844), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1844), - [sym_preproc_directive] = ACTIONS(1846), + [437] = { + [sym_preproc_def] = STATE(444), + [sym_preproc_function_def] = STATE(444), + [sym_preproc_call] = STATE(444), + [sym_preproc_if_in_field_declaration_list] = STATE(444), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(444), + [sym_preproc_else_in_field_declaration_list] = STATE(1868), + [sym_preproc_elif_in_field_declaration_list] = STATE(1868), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1868), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1256), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(698), + [sym_ms_declspec_modifier] = STATE(698), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym__field_declaration_list_item] = STATE(444), + [sym_field_declaration] = STATE(444), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(444), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(1849), + [aux_sym_preproc_def_token1] = ACTIONS(1851), + [aux_sym_preproc_if_token1] = ACTIONS(1853), + [aux_sym_preproc_if_token2] = ACTIONS(1891), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1857), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1857), + [aux_sym_preproc_else_token1] = ACTIONS(1859), + [aux_sym_preproc_elif_token1] = ACTIONS(1861), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1863), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1863), + [sym_preproc_directive] = ACTIONS(1865), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -64399,45 +58973,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(57), [sym_comment] = ACTIONS(3), }, - [491] = { - [sym_preproc_def] = STATE(481), - [sym_preproc_function_def] = STATE(481), - [sym_preproc_call] = STATE(481), - [sym_preproc_if_in_field_declaration_list] = STATE(481), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(481), - [sym_preproc_else_in_field_declaration_list] = STATE(1971), - [sym_preproc_elif_in_field_declaration_list] = STATE(1971), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1971), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1301), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(752), - [sym_ms_declspec_modifier] = STATE(752), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(763), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym__field_declaration_list_item] = STATE(481), - [sym_field_declaration] = STATE(481), - [sym_macro_type_specifier] = STATE(822), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(481), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), - [sym_identifier] = ACTIONS(1830), - [aux_sym_preproc_def_token1] = ACTIONS(1832), - [aux_sym_preproc_if_token1] = ACTIONS(1834), - [aux_sym_preproc_if_token2] = ACTIONS(1884), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1838), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1838), - [aux_sym_preproc_else_token1] = ACTIONS(1840), - [aux_sym_preproc_elif_token1] = ACTIONS(1842), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1844), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1844), - [sym_preproc_directive] = ACTIONS(1846), + [438] = { + [sym_preproc_def] = STATE(437), + [sym_preproc_function_def] = STATE(437), + [sym_preproc_call] = STATE(437), + [sym_preproc_if_in_field_declaration_list] = STATE(437), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(437), + [sym_preproc_else_in_field_declaration_list] = STATE(1780), + [sym_preproc_elif_in_field_declaration_list] = STATE(1780), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1780), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1256), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(698), + [sym_ms_declspec_modifier] = STATE(698), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym__field_declaration_list_item] = STATE(437), + [sym_field_declaration] = STATE(437), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(437), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(1849), + [aux_sym_preproc_def_token1] = ACTIONS(1851), + [aux_sym_preproc_if_token1] = ACTIONS(1853), + [aux_sym_preproc_if_token2] = ACTIONS(1893), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1857), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1857), + [aux_sym_preproc_else_token1] = ACTIONS(1859), + [aux_sym_preproc_elif_token1] = ACTIONS(1861), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1863), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1863), + [sym_preproc_directive] = ACTIONS(1865), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -64472,45 +59046,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(57), [sym_comment] = ACTIONS(3), }, - [492] = { - [sym_preproc_def] = STATE(482), - [sym_preproc_function_def] = STATE(482), - [sym_preproc_call] = STATE(482), - [sym_preproc_if_in_field_declaration_list] = STATE(482), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(482), - [sym_preproc_else_in_field_declaration_list] = STATE(1897), - [sym_preproc_elif_in_field_declaration_list] = STATE(1897), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1897), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1301), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(752), - [sym_ms_declspec_modifier] = STATE(752), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(763), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym__field_declaration_list_item] = STATE(482), - [sym_field_declaration] = STATE(482), - [sym_macro_type_specifier] = STATE(822), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(482), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), - [sym_identifier] = ACTIONS(1830), - [aux_sym_preproc_def_token1] = ACTIONS(1832), - [aux_sym_preproc_if_token1] = ACTIONS(1834), - [aux_sym_preproc_if_token2] = ACTIONS(1886), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1838), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1838), - [aux_sym_preproc_else_token1] = ACTIONS(1840), - [aux_sym_preproc_elif_token1] = ACTIONS(1842), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1844), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1844), - [sym_preproc_directive] = ACTIONS(1846), + [439] = { + [sym_preproc_def] = STATE(444), + [sym_preproc_function_def] = STATE(444), + [sym_preproc_call] = STATE(444), + [sym_preproc_if_in_field_declaration_list] = STATE(444), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(444), + [sym_preproc_else_in_field_declaration_list] = STATE(1881), + [sym_preproc_elif_in_field_declaration_list] = STATE(1881), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1881), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1256), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(698), + [sym_ms_declspec_modifier] = STATE(698), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym__field_declaration_list_item] = STATE(444), + [sym_field_declaration] = STATE(444), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(444), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(1849), + [aux_sym_preproc_def_token1] = ACTIONS(1851), + [aux_sym_preproc_if_token1] = ACTIONS(1853), + [aux_sym_preproc_if_token2] = ACTIONS(1895), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1857), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1857), + [aux_sym_preproc_else_token1] = ACTIONS(1859), + [aux_sym_preproc_elif_token1] = ACTIONS(1861), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1863), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1863), + [sym_preproc_directive] = ACTIONS(1865), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -64545,37 +59119,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(57), [sym_comment] = ACTIONS(3), }, - [493] = { - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1182), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(752), - [sym_ms_declspec_modifier] = STATE(752), - [sym_ms_call_modifier] = STATE(1384), - [sym__abstract_declarator] = STATE(1563), - [sym_abstract_parenthesized_declarator] = STATE(1495), - [sym_abstract_pointer_declarator] = STATE(1495), - [sym_abstract_function_declarator] = STATE(1495), - [sym_abstract_array_declarator] = STATE(1495), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(763), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym_variadic_parameter] = STATE(1670), - [sym_parameter_list] = STATE(1494), - [sym_parameter_declaration] = STATE(1670), - [sym_macro_type_specifier] = STATE(822), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), - [sym_identifier] = ACTIONS(1830), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1756), - [anon_sym_RPAREN] = ACTIONS(1758), - [anon_sym_LPAREN2] = ACTIONS(1888), - [anon_sym_STAR] = ACTIONS(1890), + [440] = { + [sym_expression] = STATE(993), + [sym__string] = STATE(672), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_initializer_list] = STATE(1618), + [sym_initializer_pair] = STATE(1618), + [sym_subscript_designator] = STATE(1387), + [sym_subscript_range_designator] = STATE(1387), + [sym_field_designator] = STATE(1387), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_initializer_pair_repeat1] = STATE(1387), + [sym_identifier] = ACTIONS(1897), + [anon_sym_COMMA] = ACTIONS(1899), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(1385), + [anon_sym_RBRACE] = ACTIONS(1901), + [anon_sym_LBRACK] = ACTIONS(1903), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [anon_sym_DOT] = ACTIONS(1905), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [441] = { + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1139), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(698), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(1340), + [sym__abstract_declarator] = STATE(1517), + [sym_abstract_parenthesized_declarator] = STATE(1442), + [sym_abstract_pointer_declarator] = STATE(1442), + [sym_abstract_function_declarator] = STATE(1442), + [sym_abstract_array_declarator] = STATE(1442), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym_variadic_parameter] = STATE(1530), + [sym_parameter_list] = STATE(1443), + [sym_parameter_declaration] = STATE(1530), + [sym_macro_type_specifier] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(1849), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1775), + [anon_sym_RPAREN] = ACTIONS(1777), + [anon_sym_LPAREN2] = ACTIONS(1907), + [anon_sym_STAR] = ACTIONS(1909), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -64591,7 +59237,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), [anon_sym_short] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_LBRACK] = ACTIONS(1785), [anon_sym_static] = ACTIONS(45), [anon_sym_auto] = ACTIONS(45), [anon_sym_register] = ACTIONS(45), @@ -64617,38 +59263,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(57), [sym_comment] = ACTIONS(3), }, - [494] = { - [sym__expression] = STATE(1093), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_initializer_list] = STATE(1745), - [sym_initializer_pair] = STATE(1745), - [sym_subscript_designator] = STATE(1426), - [sym_subscript_range_designator] = STATE(1426), - [sym_field_designator] = STATE(1426), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [aux_sym_initializer_pair_repeat1] = STATE(1426), - [sym_identifier] = ACTIONS(1848), + [442] = { + [sym_expression] = STATE(1008), + [sym__string] = STATE(672), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_initializer_list] = STATE(1643), + [sym_initializer_pair] = STATE(1643), + [sym_subscript_designator] = STATE(1387), + [sym_subscript_range_designator] = STATE(1387), + [sym_field_designator] = STATE(1387), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_initializer_pair_repeat1] = STATE(1387), + [sym_identifier] = ACTIONS(1897), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -64656,9 +59301,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(1375), - [anon_sym_RBRACE] = ACTIONS(1892), - [anon_sym_LBRACK] = ACTIONS(1854), + [anon_sym_LBRACE] = ACTIONS(1385), + [anon_sym_RBRACE] = ACTIONS(1911), + [anon_sym_LBRACK] = ACTIONS(1903), [anon_sym_DASH_DASH] = ACTIONS(81), [anon_sym_PLUS_PLUS] = ACTIONS(81), [anon_sym_sizeof] = ACTIONS(83), @@ -64671,7 +59316,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(89), [anon_sym_asm] = ACTIONS(91), [anon_sym___asm__] = ACTIONS(91), - [anon_sym_DOT] = ACTIONS(1856), + [anon_sym_DOT] = ACTIONS(1905), [sym_number_literal] = ACTIONS(159), [anon_sym_L_SQUOTE] = ACTIONS(95), [anon_sym_u_SQUOTE] = ACTIONS(95), @@ -64689,38 +59334,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [495] = { - [sym__expression] = STATE(1093), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_initializer_list] = STATE(1745), - [sym_initializer_pair] = STATE(1745), - [sym_subscript_designator] = STATE(1426), - [sym_subscript_range_designator] = STATE(1426), - [sym_field_designator] = STATE(1426), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [aux_sym_initializer_pair_repeat1] = STATE(1426), - [sym_identifier] = ACTIONS(1848), + [443] = { + [sym_expression] = STATE(1008), + [sym__string] = STATE(672), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_initializer_list] = STATE(1643), + [sym_initializer_pair] = STATE(1643), + [sym_subscript_designator] = STATE(1387), + [sym_subscript_range_designator] = STATE(1387), + [sym_field_designator] = STATE(1387), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_initializer_pair_repeat1] = STATE(1387), + [sym_identifier] = ACTIONS(1897), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -64728,9 +59372,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(1375), - [anon_sym_RBRACE] = ACTIONS(1894), - [anon_sym_LBRACK] = ACTIONS(1854), + [anon_sym_LBRACE] = ACTIONS(1385), + [anon_sym_RBRACE] = ACTIONS(1913), + [anon_sym_LBRACK] = ACTIONS(1903), [anon_sym_DASH_DASH] = ACTIONS(81), [anon_sym_PLUS_PLUS] = ACTIONS(81), [anon_sym_sizeof] = ACTIONS(83), @@ -64743,7 +59387,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(89), [anon_sym_asm] = ACTIONS(91), [anon_sym___asm__] = ACTIONS(91), - [anon_sym_DOT] = ACTIONS(1856), + [anon_sym_DOT] = ACTIONS(1905), [sym_number_literal] = ACTIONS(159), [anon_sym_L_SQUOTE] = ACTIONS(95), [anon_sym_u_SQUOTE] = ACTIONS(95), @@ -64761,38 +59405,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [496] = { - [sym__expression] = STATE(1093), - [sym__expression_not_binary] = STATE(725), - [sym__string] = STATE(725), - [sym_conditional_expression] = STATE(725), - [sym_assignment_expression] = STATE(725), - [sym_pointer_expression] = STATE(870), - [sym_unary_expression] = STATE(725), - [sym_binary_expression] = STATE(725), - [sym_update_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_sizeof_expression] = STATE(725), - [sym_alignof_expression] = STATE(725), - [sym_offsetof_expression] = STATE(725), - [sym_generic_expression] = STATE(725), - [sym_subscript_expression] = STATE(870), - [sym_call_expression] = STATE(870), - [sym_gnu_asm_expression] = STATE(725), - [sym_field_expression] = STATE(870), - [sym_compound_literal_expression] = STATE(725), - [sym_parenthesized_expression] = STATE(870), - [sym_initializer_list] = STATE(1745), - [sym_initializer_pair] = STATE(1745), - [sym_subscript_designator] = STATE(1426), - [sym_subscript_range_designator] = STATE(1426), - [sym_field_designator] = STATE(1426), - [sym_char_literal] = STATE(725), - [sym_concatenated_string] = STATE(725), - [sym_string_literal] = STATE(707), - [sym_null] = STATE(725), - [aux_sym_initializer_pair_repeat1] = STATE(1426), - [sym_identifier] = ACTIONS(1848), + [444] = { + [sym_preproc_def] = STATE(444), + [sym_preproc_function_def] = STATE(444), + [sym_preproc_call] = STATE(444), + [sym_preproc_if_in_field_declaration_list] = STATE(444), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(444), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1256), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(698), + [sym_ms_declspec_modifier] = STATE(698), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(708), + [sym_type_specifier] = STATE(716), + [sym_sized_type_specifier] = STATE(771), + [sym_enum_specifier] = STATE(771), + [sym_struct_specifier] = STATE(771), + [sym_union_specifier] = STATE(771), + [sym__field_declaration_list_item] = STATE(444), + [sym_field_declaration] = STATE(444), + [sym_macro_type_specifier] = STATE(771), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(444), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_sized_type_specifier_repeat1] = STATE(773), + [sym_identifier] = ACTIONS(1915), + [aux_sym_preproc_def_token1] = ACTIONS(1918), + [aux_sym_preproc_if_token1] = ACTIONS(1921), + [aux_sym_preproc_if_token2] = ACTIONS(1924), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1926), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1926), + [aux_sym_preproc_else_token1] = ACTIONS(1924), + [aux_sym_preproc_elif_token1] = ACTIONS(1924), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1924), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1924), + [sym_preproc_directive] = ACTIONS(1929), + [anon_sym___extension__] = ACTIONS(1932), + [anon_sym_extern] = ACTIONS(1935), + [anon_sym___attribute__] = ACTIONS(1938), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1941), + [anon_sym___declspec] = ACTIONS(1944), + [anon_sym_signed] = ACTIONS(1947), + [anon_sym_unsigned] = ACTIONS(1947), + [anon_sym_long] = ACTIONS(1947), + [anon_sym_short] = ACTIONS(1947), + [anon_sym_static] = ACTIONS(1935), + [anon_sym_auto] = ACTIONS(1935), + [anon_sym_register] = ACTIONS(1935), + [anon_sym_inline] = ACTIONS(1935), + [anon_sym___inline] = ACTIONS(1935), + [anon_sym___inline__] = ACTIONS(1935), + [anon_sym___forceinline] = ACTIONS(1935), + [anon_sym_thread_local] = ACTIONS(1935), + [anon_sym___thread] = ACTIONS(1935), + [anon_sym_const] = ACTIONS(1932), + [anon_sym_constexpr] = ACTIONS(1932), + [anon_sym_volatile] = ACTIONS(1932), + [anon_sym_restrict] = ACTIONS(1932), + [anon_sym___restrict__] = ACTIONS(1932), + [anon_sym__Atomic] = ACTIONS(1932), + [anon_sym__Noreturn] = ACTIONS(1932), + [anon_sym_noreturn] = ACTIONS(1932), + [anon_sym_alignas] = ACTIONS(1950), + [anon_sym__Alignas] = ACTIONS(1950), + [sym_primitive_type] = ACTIONS(1953), + [anon_sym_enum] = ACTIONS(1956), + [anon_sym_struct] = ACTIONS(1959), + [anon_sym_union] = ACTIONS(1962), + [sym_comment] = ACTIONS(3), + }, + [445] = { + [sym_expression] = STATE(1008), + [sym__string] = STATE(672), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(820), + [sym_unary_expression] = STATE(672), + [sym_binary_expression] = STATE(672), + [sym_update_expression] = STATE(672), + [sym_cast_expression] = STATE(672), + [sym_sizeof_expression] = STATE(672), + [sym_alignof_expression] = STATE(672), + [sym_offsetof_expression] = STATE(672), + [sym_generic_expression] = STATE(672), + [sym_subscript_expression] = STATE(820), + [sym_call_expression] = STATE(820), + [sym_gnu_asm_expression] = STATE(672), + [sym_field_expression] = STATE(820), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(820), + [sym_initializer_list] = STATE(1643), + [sym_initializer_pair] = STATE(1643), + [sym_subscript_designator] = STATE(1387), + [sym_subscript_range_designator] = STATE(1387), + [sym_field_designator] = STATE(1387), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(659), + [sym_null] = STATE(672), + [aux_sym_initializer_pair_repeat1] = STATE(1387), + [sym_identifier] = ACTIONS(1897), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -64800,8 +59513,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(1375), - [anon_sym_LBRACK] = ACTIONS(1854), + [anon_sym_LBRACE] = ACTIONS(1385), + [anon_sym_LBRACK] = ACTIONS(1903), [anon_sym_DASH_DASH] = ACTIONS(81), [anon_sym_PLUS_PLUS] = ACTIONS(81), [anon_sym_sizeof] = ACTIONS(83), @@ -64814,7 +59527,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(89), [anon_sym_asm] = ACTIONS(91), [anon_sym___asm__] = ACTIONS(91), - [anon_sym_DOT] = ACTIONS(1856), + [anon_sym_DOT] = ACTIONS(1905), [sym_number_literal] = ACTIONS(159), [anon_sym_L_SQUOTE] = ACTIONS(95), [anon_sym_u_SQUOTE] = ACTIONS(95), @@ -64832,86 +59545,819 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [497] = { - [sym_preproc_def] = STATE(497), - [sym_preproc_function_def] = STATE(497), - [sym_preproc_call] = STATE(497), - [sym_preproc_if_in_field_declaration_list] = STATE(497), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(497), - [sym__declaration_modifiers] = STATE(752), - [sym__declaration_specifiers] = STATE(1301), - [sym_attribute_specifier] = STATE(752), - [sym_attribute_declaration] = STATE(752), - [sym_ms_declspec_modifier] = STATE(752), - [sym_storage_class_specifier] = STATE(752), - [sym_type_qualifier] = STATE(752), - [sym_alignas_qualifier] = STATE(754), - [sym__type_specifier] = STATE(763), - [sym_sized_type_specifier] = STATE(822), - [sym_enum_specifier] = STATE(822), - [sym_struct_specifier] = STATE(822), - [sym_union_specifier] = STATE(822), - [sym__field_declaration_list_item] = STATE(497), - [sym_field_declaration] = STATE(497), - [sym_macro_type_specifier] = STATE(822), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(497), - [aux_sym__declaration_specifiers_repeat1] = STATE(752), - [aux_sym_sized_type_specifier_repeat1] = STATE(785), - [sym_identifier] = ACTIONS(1896), - [aux_sym_preproc_def_token1] = ACTIONS(1899), - [aux_sym_preproc_if_token1] = ACTIONS(1902), - [aux_sym_preproc_if_token2] = ACTIONS(1905), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1907), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1907), - [aux_sym_preproc_else_token1] = ACTIONS(1905), - [aux_sym_preproc_elif_token1] = ACTIONS(1905), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1905), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1905), - [sym_preproc_directive] = ACTIONS(1910), - [anon_sym___extension__] = ACTIONS(1913), - [anon_sym_extern] = ACTIONS(1916), - [anon_sym___attribute__] = ACTIONS(1919), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1922), - [anon_sym___declspec] = ACTIONS(1925), - [anon_sym_signed] = ACTIONS(1928), - [anon_sym_unsigned] = ACTIONS(1928), - [anon_sym_long] = ACTIONS(1928), - [anon_sym_short] = ACTIONS(1928), - [anon_sym_static] = ACTIONS(1916), - [anon_sym_auto] = ACTIONS(1916), - [anon_sym_register] = ACTIONS(1916), - [anon_sym_inline] = ACTIONS(1916), - [anon_sym___inline] = ACTIONS(1916), - [anon_sym___inline__] = ACTIONS(1916), - [anon_sym___forceinline] = ACTIONS(1916), - [anon_sym_thread_local] = ACTIONS(1916), - [anon_sym___thread] = ACTIONS(1916), - [anon_sym_const] = ACTIONS(1913), - [anon_sym_constexpr] = ACTIONS(1913), - [anon_sym_volatile] = ACTIONS(1913), - [anon_sym_restrict] = ACTIONS(1913), - [anon_sym___restrict__] = ACTIONS(1913), - [anon_sym__Atomic] = ACTIONS(1913), - [anon_sym__Noreturn] = ACTIONS(1913), - [anon_sym_noreturn] = ACTIONS(1913), - [anon_sym_alignas] = ACTIONS(1931), - [anon_sym__Alignas] = ACTIONS(1931), - [sym_primitive_type] = ACTIONS(1934), - [anon_sym_enum] = ACTIONS(1937), - [anon_sym_struct] = ACTIONS(1940), - [anon_sym_union] = ACTIONS(1943), - [sym_comment] = ACTIONS(3), - }, }; static const uint16_t ts_small_parse_table[] = { [0] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(51), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_enum, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(1115), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1849), 1, + sym_identifier, + ACTIONS(1965), 1, + aux_sym_preproc_def_token1, + ACTIONS(1967), 1, + aux_sym_preproc_if_token1, + ACTIONS(1971), 1, + sym_preproc_directive, + ACTIONS(1973), 1, + anon_sym_RBRACE, + STATE(708), 1, + sym_alignas_qualifier, + STATE(716), 1, + sym_type_specifier, + STATE(773), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1247), 1, + sym__declaration_specifiers, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(1969), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(771), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(698), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + STATE(450), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [115] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(51), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_enum, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(1115), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1849), 1, + sym_identifier, + ACTIONS(1975), 1, + aux_sym_preproc_def_token1, + ACTIONS(1977), 1, + aux_sym_preproc_if_token1, + ACTIONS(1979), 1, + aux_sym_preproc_if_token2, + ACTIONS(1983), 1, + sym_preproc_directive, + STATE(708), 1, + sym_alignas_qualifier, + STATE(716), 1, + sym_type_specifier, + STATE(773), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1253), 1, + sym__declaration_specifiers, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(1981), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(771), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(698), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + STATE(449), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [230] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1915), 1, + sym_identifier, + ACTIONS(1924), 1, + aux_sym_preproc_if_token2, + ACTIONS(1938), 1, + anon_sym___attribute__, + ACTIONS(1941), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1944), 1, + anon_sym___declspec, + ACTIONS(1953), 1, + sym_primitive_type, + ACTIONS(1956), 1, + anon_sym_enum, + ACTIONS(1959), 1, + anon_sym_struct, + ACTIONS(1962), 1, + anon_sym_union, + ACTIONS(1985), 1, + aux_sym_preproc_def_token1, + ACTIONS(1988), 1, + aux_sym_preproc_if_token1, + ACTIONS(1994), 1, + sym_preproc_directive, + STATE(708), 1, + sym_alignas_qualifier, + STATE(716), 1, + sym_type_specifier, + STATE(773), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1253), 1, + sym__declaration_specifiers, + ACTIONS(1950), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(1991), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(1947), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(771), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(698), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + STATE(448), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + ACTIONS(1932), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(1935), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [345] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(51), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_enum, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(1115), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1849), 1, + sym_identifier, + ACTIONS(1975), 1, + aux_sym_preproc_def_token1, + ACTIONS(1977), 1, + aux_sym_preproc_if_token1, + ACTIONS(1983), 1, + sym_preproc_directive, + ACTIONS(1997), 1, + aux_sym_preproc_if_token2, + STATE(708), 1, + sym_alignas_qualifier, + STATE(716), 1, + sym_type_specifier, + STATE(773), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1253), 1, + sym__declaration_specifiers, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(1981), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(771), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(698), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + STATE(448), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [460] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1915), 1, + sym_identifier, + ACTIONS(1938), 1, + anon_sym___attribute__, + ACTIONS(1941), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1944), 1, + anon_sym___declspec, + ACTIONS(1953), 1, + sym_primitive_type, + ACTIONS(1956), 1, + anon_sym_enum, + ACTIONS(1959), 1, + anon_sym_struct, + ACTIONS(1962), 1, + anon_sym_union, + ACTIONS(1999), 1, + aux_sym_preproc_def_token1, + ACTIONS(2002), 1, + aux_sym_preproc_if_token1, + ACTIONS(2008), 1, + sym_preproc_directive, + ACTIONS(2011), 1, + anon_sym_RBRACE, + STATE(708), 1, + sym_alignas_qualifier, + STATE(716), 1, + sym_type_specifier, + STATE(773), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1247), 1, + sym__declaration_specifiers, + ACTIONS(1950), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2005), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(1947), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(771), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(698), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + STATE(450), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + ACTIONS(1932), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(1935), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [575] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(51), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_enum, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(1115), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1849), 1, + sym_identifier, + ACTIONS(1965), 1, + aux_sym_preproc_def_token1, + ACTIONS(1967), 1, + aux_sym_preproc_if_token1, + ACTIONS(1971), 1, + sym_preproc_directive, + ACTIONS(2013), 1, + anon_sym_RBRACE, + STATE(708), 1, + sym_alignas_qualifier, + STATE(716), 1, + sym_type_specifier, + STATE(773), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1247), 1, + sym__declaration_specifiers, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(1969), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(771), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(698), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + STATE(446), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [690] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(41), 1, + anon_sym_LBRACE, + ACTIONS(83), 1, + anon_sym_sizeof, + ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, + anon_sym__Generic, + ACTIONS(159), 1, + sym_number_literal, + ACTIONS(1706), 1, + sym_identifier, + ACTIONS(2015), 1, + anon_sym_RPAREN, + ACTIONS(2017), 1, + anon_sym___extension__, + STATE(659), 1, + sym_string_literal, + STATE(995), 1, + sym_expression, + STATE(1545), 1, + sym_compound_statement, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(81), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(161), 2, + sym_true, + sym_false, + ACTIONS(85), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(820), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [804] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(41), 1, + anon_sym_LBRACE, + ACTIONS(83), 1, + anon_sym_sizeof, + ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, + anon_sym__Generic, + ACTIONS(159), 1, + sym_number_literal, + ACTIONS(1706), 1, + sym_identifier, + ACTIONS(2019), 1, + anon_sym_RPAREN, + ACTIONS(2021), 1, + anon_sym___extension__, + STATE(659), 1, + sym_string_literal, + STATE(997), 1, + sym_expression, + STATE(1528), 1, + sym_compound_statement, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(81), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(161), 2, + sym_true, + sym_false, + ACTIONS(85), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(820), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [918] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(41), 1, + anon_sym_LBRACE, + ACTIONS(83), 1, + anon_sym_sizeof, + ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, + anon_sym__Generic, + ACTIONS(159), 1, + sym_number_literal, + ACTIONS(1706), 1, + sym_identifier, + ACTIONS(2023), 1, + anon_sym___extension__, + STATE(659), 1, + sym_string_literal, + STATE(1047), 1, + sym_expression, + STATE(1707), 1, + sym_compound_statement, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(81), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(161), 2, + sym_true, + sym_false, + ACTIONS(85), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(820), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [1029] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(41), 1, - anon_sym_LBRACE, ACTIONS(83), 1, anon_sym_sizeof, ACTIONS(87), 1, @@ -64920,18 +60366,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1690), 1, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(1946), 1, + ACTIONS(2025), 1, anon_sym_RPAREN, - ACTIONS(1948), 1, - anon_sym___extension__, - STATE(707), 1, + STATE(659), 1, sym_string_literal, - STATE(1044), 1, - sym__expression, - STATE(1652), 1, - sym_compound_statement, + STATE(1028), 1, + sym_expression, + STATE(1808), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -64971,14 +60415,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(870), 5, + STATE(820), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -64995,373 +60438,351 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [115] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(51), 1, - sym_primitive_type, - ACTIONS(53), 1, - anon_sym_enum, - ACTIONS(55), 1, - anon_sym_struct, - ACTIONS(57), 1, - anon_sym_union, - ACTIONS(1115), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1830), 1, - sym_identifier, - ACTIONS(1950), 1, - aux_sym_preproc_def_token1, - ACTIONS(1952), 1, - aux_sym_preproc_if_token1, - ACTIONS(1954), 1, - aux_sym_preproc_if_token2, - ACTIONS(1958), 1, - sym_preproc_directive, - STATE(754), 1, - sym_alignas_qualifier, - STATE(763), 1, - sym__type_specifier, - STATE(785), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1295), 1, - sym__declaration_specifiers, - ACTIONS(49), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(1956), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(822), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(752), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - STATE(502), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [230] = 25, + [1137] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1896), 1, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, + anon_sym_sizeof, + ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, + anon_sym__Generic, + ACTIONS(159), 1, + sym_number_literal, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(1919), 1, - anon_sym___attribute__, - ACTIONS(1922), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1925), 1, - anon_sym___declspec, - ACTIONS(1934), 1, - sym_primitive_type, - ACTIONS(1937), 1, - anon_sym_enum, - ACTIONS(1940), 1, - anon_sym_struct, - ACTIONS(1943), 1, - anon_sym_union, - ACTIONS(1960), 1, - aux_sym_preproc_def_token1, - ACTIONS(1963), 1, - aux_sym_preproc_if_token1, - ACTIONS(1969), 1, - sym_preproc_directive, - ACTIONS(1972), 1, - anon_sym_RBRACE, - STATE(754), 1, - sym_alignas_qualifier, - STATE(763), 1, - sym__type_specifier, - STATE(785), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1306), 1, - sym__declaration_specifiers, - ACTIONS(1931), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(1966), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(1928), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(822), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(752), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - STATE(500), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - ACTIONS(1913), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(1916), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [345] = 25, + ACTIONS(2027), 1, + anon_sym_SEMI, + STATE(659), 1, + sym_string_literal, + STATE(1002), 1, + sym_expression, + STATE(1748), 1, + sym_comma_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(81), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(161), 2, + sym_true, + sym_false, + ACTIONS(85), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(820), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [1245] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(51), 1, - sym_primitive_type, - ACTIONS(53), 1, - anon_sym_enum, - ACTIONS(55), 1, - anon_sym_struct, - ACTIONS(57), 1, - anon_sym_union, - ACTIONS(1115), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1830), 1, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, + anon_sym_sizeof, + ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, + anon_sym__Generic, + ACTIONS(159), 1, + sym_number_literal, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(1974), 1, - aux_sym_preproc_def_token1, - ACTIONS(1976), 1, - aux_sym_preproc_if_token1, - ACTIONS(1980), 1, - sym_preproc_directive, - ACTIONS(1982), 1, - anon_sym_RBRACE, - STATE(754), 1, - sym_alignas_qualifier, - STATE(763), 1, - sym__type_specifier, - STATE(785), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1306), 1, - sym__declaration_specifiers, - ACTIONS(49), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(1978), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(822), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(752), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - STATE(500), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [460] = 25, + ACTIONS(2029), 1, + anon_sym_COLON, + STATE(659), 1, + sym_string_literal, + STATE(1046), 1, + sym_expression, + STATE(1963), 1, + sym_comma_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(81), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(161), 2, + sym_true, + sym_false, + ACTIONS(85), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(820), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [1353] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1896), 1, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, + anon_sym_sizeof, + ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, + anon_sym__Generic, + ACTIONS(159), 1, + sym_number_literal, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(1905), 1, - aux_sym_preproc_if_token2, - ACTIONS(1919), 1, - anon_sym___attribute__, - ACTIONS(1922), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1925), 1, - anon_sym___declspec, - ACTIONS(1934), 1, - sym_primitive_type, - ACTIONS(1937), 1, - anon_sym_enum, - ACTIONS(1940), 1, - anon_sym_struct, - ACTIONS(1943), 1, - anon_sym_union, - ACTIONS(1984), 1, - aux_sym_preproc_def_token1, - ACTIONS(1987), 1, - aux_sym_preproc_if_token1, - ACTIONS(1993), 1, - sym_preproc_directive, - STATE(754), 1, - sym_alignas_qualifier, - STATE(763), 1, - sym__type_specifier, - STATE(785), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1295), 1, - sym__declaration_specifiers, - ACTIONS(1931), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(1990), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(1928), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(822), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(752), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - STATE(502), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - ACTIONS(1913), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(1916), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [575] = 25, + ACTIONS(2031), 1, + anon_sym_SEMI, + STATE(659), 1, + sym_string_literal, + STATE(1017), 1, + sym_expression, + STATE(1831), 1, + sym_comma_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(81), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(161), 2, + sym_true, + sym_false, + ACTIONS(85), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(820), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [1461] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, + anon_sym__Generic, + ACTIONS(159), 1, + sym_number_literal, + ACTIONS(1375), 1, + sym_identifier, + ACTIONS(1385), 1, + anon_sym_LBRACE, + ACTIONS(1387), 1, + anon_sym_sizeof, + ACTIONS(2033), 1, + anon_sym_LPAREN2, + STATE(659), 1, + sym_string_literal, + STATE(676), 1, + sym_initializer_list, + STATE(680), 1, + sym_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(161), 2, + sym_true, + sym_false, + ACTIONS(1379), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1381), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2035), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(85), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(668), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [1569] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(41), 1, - anon_sym_LBRACE, ACTIONS(83), 1, anon_sym_sizeof, ACTIONS(87), 1, @@ -65370,18 +60791,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1690), 1, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(1996), 1, - anon_sym_RPAREN, - ACTIONS(1998), 1, - anon_sym___extension__, - STATE(707), 1, + ACTIONS(2037), 1, + anon_sym_SEMI, + STATE(659), 1, sym_string_literal, - STATE(1045), 1, - sym__expression, - STATE(1671), 1, - sym_compound_statement, + STATE(1011), 1, + sym_expression, + STATE(1849), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -65421,14 +60840,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(870), 5, + STATE(820), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -65445,193 +60863,96 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [690] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(51), 1, - sym_primitive_type, - ACTIONS(53), 1, - anon_sym_enum, - ACTIONS(55), 1, - anon_sym_struct, - ACTIONS(57), 1, - anon_sym_union, - ACTIONS(1115), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1830), 1, - sym_identifier, - ACTIONS(1974), 1, - aux_sym_preproc_def_token1, - ACTIONS(1976), 1, - aux_sym_preproc_if_token1, - ACTIONS(1980), 1, - sym_preproc_directive, - ACTIONS(2000), 1, - anon_sym_RBRACE, - STATE(754), 1, - sym_alignas_qualifier, - STATE(763), 1, - sym__type_specifier, - STATE(785), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1306), 1, - sym__declaration_specifiers, - ACTIONS(49), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(1978), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(822), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(752), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - STATE(501), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [805] = 25, + [1677] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(51), 1, - sym_primitive_type, - ACTIONS(53), 1, - anon_sym_enum, - ACTIONS(55), 1, - anon_sym_struct, - ACTIONS(57), 1, - anon_sym_union, - ACTIONS(1115), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1830), 1, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, + anon_sym_sizeof, + ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, + anon_sym__Generic, + ACTIONS(159), 1, + sym_number_literal, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(1950), 1, - aux_sym_preproc_def_token1, - ACTIONS(1952), 1, - aux_sym_preproc_if_token1, - ACTIONS(1958), 1, - sym_preproc_directive, - ACTIONS(2002), 1, - aux_sym_preproc_if_token2, - STATE(754), 1, - sym_alignas_qualifier, - STATE(763), 1, - sym__type_specifier, - STATE(785), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1295), 1, - sym__declaration_specifiers, - ACTIONS(49), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(1956), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(822), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(752), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - STATE(499), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [920] = 24, + ACTIONS(2039), 1, + anon_sym_COLON, + STATE(659), 1, + sym_string_literal, + STATE(1020), 1, + sym_expression, + STATE(1968), 1, + sym_comma_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(81), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(161), 2, + sym_true, + sym_false, + ACTIONS(85), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(820), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [1785] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(41), 1, - anon_sym_LBRACE, ACTIONS(83), 1, anon_sym_sizeof, ACTIONS(87), 1, @@ -65640,16 +60961,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1690), 1, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(2004), 1, - anon_sym___extension__, - STATE(707), 1, + ACTIONS(2041), 1, + anon_sym_SEMI, + STATE(659), 1, sym_string_literal, - STATE(1065), 1, - sym__expression, - STATE(1766), 1, - sym_compound_statement, + STATE(1018), 1, + sym_expression, + STATE(1840), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -65689,14 +61010,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(870), 5, + STATE(820), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [1893] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, + anon_sym__Generic, + ACTIONS(159), 1, + sym_number_literal, + ACTIONS(1385), 1, + anon_sym_LBRACE, + ACTIONS(1712), 1, + anon_sym_sizeof, + ACTIONS(2043), 1, + sym_identifier, + ACTIONS(2045), 1, + anon_sym_LPAREN2, + STATE(676), 1, + sym_initializer_list, + STATE(679), 1, + sym_string_literal, + STATE(680), 1, + sym_expression, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(161), 2, + sym_true, + sym_false, + ACTIONS(1708), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1710), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2047), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2049), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(85), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(793), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -65713,7 +61118,92 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1032] = 23, + [2001] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(51), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_enum, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(1115), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1849), 1, + sym_identifier, + ACTIONS(2051), 1, + anon_sym_LBRACE, + STATE(692), 1, + sym_ms_call_modifier, + STATE(708), 1, + sym_alignas_qualifier, + STATE(716), 1, + sym_type_specifier, + STATE(773), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1120), 1, + sym__declaration_specifiers, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(259), 3, + sym_function_definition, + sym_declaration, + sym_declaration_list, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(771), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(698), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [2109] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -65726,16 +61216,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1375), 1, - anon_sym_LBRACE, - ACTIONS(1690), 1, + ACTIONS(1706), 1, sym_identifier, - STATE(707), 1, + ACTIONS(2053), 1, + anon_sym_SEMI, + STATE(659), 1, sym_string_literal, - STATE(723), 1, - sym_initializer_list, - STATE(747), 1, - sym__expression, + STATE(1034), 1, + sym_expression, + STATE(1789), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -65775,14 +61265,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(870), 5, + STATE(820), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -65799,29 +61288,41 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1141] = 22, + [2217] = 23, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, + anon_sym_sizeof, ACTIONS(87), 1, anon_sym_offsetof, ACTIONS(89), 1, anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1365), 1, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(1375), 1, - anon_sym_LBRACE, - ACTIONS(1383), 1, - anon_sym_sizeof, - ACTIONS(2006), 1, - anon_sym_LPAREN2, - STATE(723), 1, - sym_initializer_list, - STATE(732), 1, + ACTIONS(2055), 1, + anon_sym_COLON, + STATE(659), 1, sym_string_literal, - STATE(747), 1, - sym__expression, + STATE(1005), 1, + sym_expression, + STATE(1851), 1, + sym_comma_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(81), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -65831,18 +61332,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1379), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1381), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2008), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2010), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -65861,12 +61350,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(725), 22, - sym__expression_not_binary, + STATE(820), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -65875,16 +61368,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [1248] = 23, + [2325] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -65897,15 +61386,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1690), 1, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(2012), 1, - anon_sym_SEMI, - STATE(707), 1, + ACTIONS(2057), 1, + anon_sym_RPAREN, + STATE(659), 1, sym_string_literal, - STATE(1082), 1, - sym__expression, - STATE(1944), 1, + STATE(1024), 1, + sym_expression, + STATE(1844), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -65946,14 +61435,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(870), 5, + STATE(820), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -65970,7 +61458,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1357] = 23, + [2433] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -65983,15 +61471,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1690), 1, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(2014), 1, + ACTIONS(2059), 1, anon_sym_RPAREN, - STATE(707), 1, + STATE(659), 1, sym_string_literal, - STATE(1084), 1, - sym__expression, - STATE(1985), 1, + STATE(1039), 1, + sym_expression, + STATE(1872), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -66032,14 +61520,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(870), 5, + STATE(820), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -66056,7 +61543,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1466] = 23, + [2541] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -66066,19 +61553,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 1, sym_number_literal, ACTIONS(1375), 1, + sym_identifier, + ACTIONS(1385), 1, anon_sym_LBRACE, - ACTIONS(1696), 1, + ACTIONS(1690), 1, anon_sym_sizeof, - ACTIONS(2016), 1, - sym_identifier, - ACTIONS(2018), 1, + ACTIONS(2061), 1, anon_sym_LPAREN2, - STATE(723), 1, - sym_initializer_list, - STATE(732), 1, + STATE(659), 1, sym_string_literal, - STATE(747), 1, - sym__expression, + STATE(676), 1, + sym_initializer_list, + STATE(838), 1, + sym_expression, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -66088,16 +61575,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1692), 2, + ACTIONS(1686), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1694), 2, + ACTIONS(1688), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2008), 2, + ACTIONS(1791), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2020), 2, + ACTIONS(2063), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -66118,14 +61605,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(844), 5, + STATE(668), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -66142,93 +61628,177 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1575] = 23, + [2649] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(83), 1, - anon_sym_sizeof, - ACTIONS(87), 1, - anon_sym_offsetof, - ACTIONS(89), 1, - anon_sym__Generic, - ACTIONS(159), 1, - sym_number_literal, - ACTIONS(1690), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(51), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_enum, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(1115), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1849), 1, sym_identifier, - ACTIONS(2022), 1, - anon_sym_RPAREN, - STATE(707), 1, - sym_string_literal, - STATE(1095), 1, - sym__expression, - STATE(2003), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(81), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(91), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(101), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(161), 2, - sym_true, - sym_false, - ACTIONS(85), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(95), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(97), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(870), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [1684] = 23, + ACTIONS(2065), 1, + anon_sym_LBRACE, + STATE(693), 1, + sym_ms_call_modifier, + STATE(708), 1, + sym_alignas_qualifier, + STATE(716), 1, + sym_type_specifier, + STATE(773), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1106), 1, + sym__declaration_specifiers, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(115), 3, + sym_function_definition, + sym_declaration, + sym_declaration_list, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(771), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(698), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [2757] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(51), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_enum, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(1115), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1849), 1, + sym_identifier, + ACTIONS(2067), 1, + anon_sym_LBRACE, + STATE(678), 1, + sym_ms_call_modifier, + STATE(708), 1, + sym_alignas_qualifier, + STATE(716), 1, + sym_type_specifier, + STATE(773), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1118), 1, + sym__declaration_specifiers, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(370), 3, + sym_function_definition, + sym_declaration, + sym_declaration_list, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(771), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(698), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [2865] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -66241,15 +61811,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1690), 1, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(2024), 1, - anon_sym_SEMI, - STATE(707), 1, + ACTIONS(2069), 1, + anon_sym_COLON, + STATE(659), 1, sym_string_literal, - STATE(1055), 1, - sym__expression, - STATE(1847), 1, + STATE(1023), 1, + sym_expression, + STATE(1788), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -66290,14 +61860,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(870), 5, + STATE(820), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -66314,7 +61883,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1793] = 23, + [2973] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -66327,15 +61896,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1690), 1, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(2026), 1, - anon_sym_SEMI, - STATE(707), 1, + ACTIONS(2071), 1, + anon_sym_RPAREN, + STATE(659), 1, sym_string_literal, - STATE(1083), 1, - sym__expression, - STATE(1922), 1, + STATE(1032), 1, + sym_expression, + STATE(1847), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -66376,14 +61945,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(870), 5, + STATE(820), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -66400,7 +61968,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1902] = 23, + [3081] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -66413,16 +61981,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1690), 1, + ACTIONS(1385), 1, + anon_sym_LBRACE, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(2028), 1, - anon_sym_RPAREN, - STATE(707), 1, + STATE(659), 1, sym_string_literal, - STATE(1076), 1, - sym__expression, - STATE(1813), 1, - sym_comma_expression, + STATE(1007), 1, + sym_expression, + STATE(1684), 1, + sym_initializer_list, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -66462,14 +62030,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(870), 5, + STATE(820), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -66486,7 +62053,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2011] = 23, + [3189] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -66499,15 +62066,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1690), 1, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(2030), 1, + ACTIONS(2073), 1, anon_sym_SEMI, - STATE(707), 1, + STATE(659), 1, sym_string_literal, - STATE(1059), 1, - sym__expression, - STATE(1948), 1, + STATE(1013), 1, + sym_expression, + STATE(1837), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -66548,14 +62115,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(870), 5, + STATE(820), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -66572,92 +62138,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2120] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, - ACTIONS(89), 1, - anon_sym__Generic, - ACTIONS(159), 1, - sym_number_literal, - ACTIONS(1365), 1, - sym_identifier, - ACTIONS(1375), 1, - anon_sym_LBRACE, - ACTIONS(1674), 1, - anon_sym_sizeof, - ACTIONS(2032), 1, - anon_sym_LPAREN2, - STATE(707), 1, - sym_string_literal, - STATE(723), 1, - sym_initializer_list, - STATE(880), 1, - sym__expression, - ACTIONS(91), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(101), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(161), 2, - sym_true, - sym_false, - ACTIONS(1670), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1672), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1772), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2034), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(85), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(95), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(97), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(725), 22, - sym__expression_not_binary, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_pointer_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_subscript_expression, - sym_call_expression, - sym_gnu_asm_expression, - sym_field_expression, - sym_compound_literal_expression, - sym_parenthesized_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [2227] = 23, + [3297] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -66670,16 +62151,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1375), 1, - anon_sym_LBRACE, - ACTIONS(1690), 1, + ACTIONS(1706), 1, sym_identifier, - STATE(707), 1, + ACTIONS(2075), 1, + anon_sym_COLON, + STATE(659), 1, sym_string_literal, - STATE(1091), 1, - sym__expression, - STATE(1777), 1, - sym_initializer_list, + STATE(1035), 1, + sym_expression, + STATE(1956), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -66719,14 +62200,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(870), 5, + STATE(820), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -66743,7 +62223,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2336] = 23, + [3405] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -66756,16 +62236,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1690), 1, + ACTIONS(1385), 1, + anon_sym_LBRACE, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(2036), 1, - anon_sym_SEMI, - STATE(707), 1, + STATE(659), 1, sym_string_literal, - STATE(1052), 1, - sym__expression, - STATE(1941), 1, - sym_comma_expression, + STATE(1027), 1, + sym_expression, + STATE(1725), 1, + sym_initializer_list, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -66805,14 +62285,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(870), 5, + STATE(820), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -66829,7 +62308,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2445] = 23, + [3513] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -66842,16 +62321,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1690), 1, + ACTIONS(1385), 1, + anon_sym_LBRACE, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(2038), 1, - anon_sym_COLON, - STATE(707), 1, + STATE(659), 1, sym_string_literal, - STATE(1098), 1, - sym__expression, - STATE(1923), 1, - sym_comma_expression, + STATE(1010), 1, + sym_expression, + STATE(1687), 1, + sym_initializer_list, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -66891,14 +62370,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(870), 5, + STATE(820), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -66915,7 +62393,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2554] = 23, + [3621] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -66928,15 +62406,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1690), 1, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(2040), 1, - anon_sym_COLON, - STATE(707), 1, + ACTIONS(2077), 1, + anon_sym_SEMI, + STATE(659), 1, sym_string_literal, - STATE(1057), 1, - sym__expression, - STATE(1803), 1, + STATE(1033), 1, + sym_expression, + STATE(1752), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -66977,14 +62455,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(870), 5, + STATE(820), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -67001,93 +62478,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2663] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, - ACTIONS(89), 1, - anon_sym__Generic, - ACTIONS(159), 1, - sym_number_literal, - ACTIONS(1375), 1, - anon_sym_LBRACE, - ACTIONS(1746), 1, - sym_identifier, - ACTIONS(1752), 1, - anon_sym_sizeof, - ACTIONS(1768), 1, - anon_sym_LPAREN2, - STATE(707), 1, - sym_string_literal, - STATE(723), 1, - sym_initializer_list, - STATE(880), 1, - sym__expression, - ACTIONS(91), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(101), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(161), 2, - sym_true, - sym_false, - ACTIONS(1748), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1750), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1772), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1782), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(85), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(95), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(97), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(941), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [2772] = 23, + [3729] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -67100,15 +62491,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1690), 1, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(2042), 1, - anon_sym_COLON, - STATE(707), 1, + ACTIONS(2079), 1, + anon_sym_RPAREN, + STATE(659), 1, sym_string_literal, - STATE(1090), 1, - sym__expression, - STATE(1901), 1, + STATE(1025), 1, + sym_expression, + STATE(1809), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -67149,14 +62540,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(870), 5, + STATE(820), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -67173,41 +62563,29 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2881] = 23, + [3837] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(83), 1, - anon_sym_sizeof, ACTIONS(87), 1, anon_sym_offsetof, ACTIONS(89), 1, anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1375), 1, + ACTIONS(1385), 1, anon_sym_LBRACE, - ACTIONS(1690), 1, + ACTIONS(1765), 1, sym_identifier, - STATE(707), 1, + ACTIONS(1771), 1, + anon_sym_sizeof, + ACTIONS(1787), 1, + anon_sym_LPAREN2, + STATE(659), 1, sym_string_literal, - STATE(1099), 1, - sym__expression, - STATE(1743), 1, + STATE(676), 1, sym_initializer_list, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(81), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + STATE(838), 1, + sym_expression, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -67217,92 +62595,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(85), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(95), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(97), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(870), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [2990] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(83), 1, - anon_sym_sizeof, - ACTIONS(87), 1, - anon_sym_offsetof, - ACTIONS(89), 1, - anon_sym__Generic, - ACTIONS(159), 1, - sym_number_literal, - ACTIONS(1375), 1, - anon_sym_LBRACE, - ACTIONS(1690), 1, - sym_identifier, - STATE(707), 1, - sym_string_literal, - STATE(1087), 1, - sym__expression, - STATE(1746), 1, - sym_initializer_list, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1767), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1769), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1791), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(81), 2, + ACTIONS(1801), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(101), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(161), 2, - sym_true, - sym_false, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -67321,14 +62625,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(870), 5, + STATE(891), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -67345,7 +62648,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3099] = 23, + [3945] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -67358,15 +62661,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1690), 1, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(2044), 1, - anon_sym_COLON, - STATE(707), 1, + ACTIONS(2081), 1, + anon_sym_RPAREN, + STATE(659), 1, sym_string_literal, - STATE(1075), 1, - sym__expression, - STATE(1802), 1, + STATE(1022), 1, + sym_expression, + STATE(1814), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -67407,14 +62710,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(870), 5, + STATE(820), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -67431,7 +62733,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3208] = 23, + [4053] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -67444,16 +62746,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1690), 1, + ACTIONS(1385), 1, + anon_sym_LBRACE, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(2046), 1, - anon_sym_SEMI, - STATE(707), 1, + STATE(659), 1, sym_string_literal, - STATE(1094), 1, - sym__expression, - STATE(1832), 1, - sym_comma_expression, + STATE(676), 1, + sym_initializer_list, + STATE(680), 1, + sym_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -67493,14 +62795,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(870), 5, + STATE(820), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -67517,7 +62818,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3317] = 23, + [4161] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -67530,15 +62831,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1690), 1, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(2048), 1, - anon_sym_RPAREN, - STATE(707), 1, + ACTIONS(2083), 1, + anon_sym_COLON, + STATE(659), 1, sym_string_literal, - STATE(1086), 1, - sym__expression, - STATE(1899), 1, + STATE(1041), 1, + sym_expression, + STATE(1874), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -67579,14 +62880,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(870), 5, + STATE(820), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -67603,41 +62903,190 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3426] = 23, + [4269] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, + ACTIONS(1716), 1, + anon_sym_const, + ACTIONS(1720), 1, anon_sym_LPAREN2, - ACTIONS(83), 1, - anon_sym_sizeof, + ACTIONS(1726), 1, + anon_sym_STAR, + ACTIONS(1733), 1, + anon_sym_EQ, + STATE(616), 1, + sym_string_literal, + STATE(782), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(1741), 2, + anon_sym_RPAREN, + anon_sym_LBRACK, + ACTIONS(2085), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1729), 10, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(1737), 10, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1724), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1718), 12, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [4359] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(51), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_enum, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(1115), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1849), 1, + sym_identifier, + ACTIONS(2087), 1, + anon_sym_LBRACE, + STATE(696), 1, + sym_ms_call_modifier, + STATE(708), 1, + sym_alignas_qualifier, + STATE(716), 1, + sym_type_specifier, + STATE(773), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1125), 1, + sym__declaration_specifiers, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(309), 3, + sym_function_definition, + sym_declaration, + sym_declaration_list, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(771), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(698), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [4467] = 23, + ACTIONS(3), 1, + sym_comment, ACTIONS(87), 1, anon_sym_offsetof, ACTIONS(89), 1, anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1690), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(2050), 1, - anon_sym_COLON, - STATE(707), 1, + ACTIONS(1385), 1, + anon_sym_LBRACE, + ACTIONS(1393), 1, + anon_sym_sizeof, + ACTIONS(2089), 1, + anon_sym_LPAREN2, + STATE(676), 1, + sym_initializer_list, + STATE(679), 1, sym_string_literal, - STATE(1060), 1, - sym__expression, - STATE(2006), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(81), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + STATE(680), 1, + sym_expression, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -67647,6 +63096,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, + ACTIONS(1389), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1391), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2047), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2091), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -67665,14 +63126,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(870), 5, + STATE(668), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -67689,32 +63149,39 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3535] = 22, + [4575] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, + anon_sym_sizeof, ACTIONS(87), 1, anon_sym_offsetof, ACTIONS(89), 1, anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1365), 1, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(1375), 1, - anon_sym_LBRACE, - ACTIONS(1377), 1, - anon_sym_sizeof, - ACTIONS(2052), 1, - anon_sym_LPAREN2, - STATE(707), 1, + STATE(659), 1, sym_string_literal, - STATE(723), 1, - sym_initializer_list, - STATE(747), 1, - sym__expression, + STATE(992), 1, + sym_expression, + STATE(1523), 1, + sym_comma_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, + ACTIONS(81), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -67724,15 +63191,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1369), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1371), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2054), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -67751,12 +63209,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(725), 22, - sym__expression_not_binary, + STATE(820), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -67765,50 +63227,32 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [3642] = 23, + [4680] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(83), 1, - anon_sym_sizeof, ACTIONS(87), 1, anon_sym_offsetof, ACTIONS(89), 1, anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1690), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(2056), 1, - anon_sym_SEMI, - STATE(707), 1, + ACTIONS(1690), 1, + anon_sym_sizeof, + ACTIONS(2061), 1, + anon_sym_LPAREN2, + ACTIONS(2093), 1, + anon_sym_RBRACK, + STATE(659), 1, sym_string_literal, - STATE(1092), 1, - sym__expression, - STATE(1964), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(81), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + STATE(870), 1, + sym_expression, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -67818,6 +63262,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, + ACTIONS(1686), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1688), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1791), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2063), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -67836,14 +63292,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(870), 5, + STATE(668), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -67860,41 +63315,27 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3751] = 23, + [4785] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(83), 1, - anon_sym_sizeof, ACTIONS(87), 1, anon_sym_offsetof, ACTIONS(89), 1, anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1690), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(2058), 1, - anon_sym_COLON, - STATE(707), 1, + ACTIONS(1690), 1, + anon_sym_sizeof, + ACTIONS(2061), 1, + anon_sym_LPAREN2, + ACTIONS(2095), 1, + anon_sym_RBRACK, + STATE(659), 1, sym_string_literal, - STATE(1062), 1, - sym__expression, - STATE(1858), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(81), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + STATE(870), 1, + sym_expression, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -67904,6 +63345,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, + ACTIONS(1686), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1688), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1791), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2063), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -67922,14 +63375,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(870), 5, + STATE(668), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -67946,41 +63398,27 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3860] = 23, + [4890] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(83), 1, - anon_sym_sizeof, ACTIONS(87), 1, anon_sym_offsetof, ACTIONS(89), 1, anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1690), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(2060), 1, - anon_sym_RPAREN, - STATE(707), 1, + ACTIONS(1690), 1, + anon_sym_sizeof, + ACTIONS(2061), 1, + anon_sym_LPAREN2, + ACTIONS(2097), 1, + anon_sym_RBRACK, + STATE(659), 1, sym_string_literal, - STATE(1073), 1, - sym__expression, - STATE(1812), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(81), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + STATE(870), 1, + sym_expression, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -67990,6 +63428,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, + ACTIONS(1686), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1688), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1791), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2063), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -68008,14 +63458,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(870), 5, + STATE(668), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -68032,41 +63481,27 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3969] = 23, + [4995] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(83), 1, - anon_sym_sizeof, ACTIONS(87), 1, anon_sym_offsetof, ACTIONS(89), 1, anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1690), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(2062), 1, - anon_sym_RPAREN, - STATE(707), 1, + ACTIONS(1690), 1, + anon_sym_sizeof, + ACTIONS(2061), 1, + anon_sym_LPAREN2, + ACTIONS(2099), 1, + anon_sym_RBRACK, + STATE(659), 1, sym_string_literal, - STATE(1064), 1, - sym__expression, - STATE(1810), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(81), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + STATE(870), 1, + sym_expression, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -68076,6 +63511,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, + ACTIONS(1686), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1688), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1791), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2063), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -68094,14 +63541,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(870), 5, + STATE(668), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -68118,7 +63564,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4078] = 21, + [5100] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -68127,18 +63573,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1365), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1674), 1, + ACTIONS(1690), 1, anon_sym_sizeof, - ACTIONS(2032), 1, + ACTIONS(2061), 1, anon_sym_LPAREN2, - ACTIONS(2064), 1, + ACTIONS(2101), 1, anon_sym_RBRACK, - STATE(707), 1, + STATE(659), 1, sym_string_literal, - STATE(925), 1, - sym__expression, + STATE(870), 1, + sym_expression, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -68148,16 +63594,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1670), 2, + ACTIONS(1686), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1672), 2, + ACTIONS(1688), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1772), 2, + ACTIONS(1791), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2034), 2, + ACTIONS(2063), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -68178,12 +63624,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(725), 22, - sym__expression_not_binary, + STATE(668), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -68192,48 +63642,32 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [4182] = 22, + [5205] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(83), 1, - anon_sym_sizeof, ACTIONS(87), 1, anon_sym_offsetof, ACTIONS(89), 1, anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1690), 1, + ACTIONS(1375), 1, sym_identifier, - STATE(707), 1, + ACTIONS(1690), 1, + anon_sym_sizeof, + ACTIONS(2061), 1, + anon_sym_LPAREN2, + ACTIONS(2103), 1, + anon_sym_RBRACK, + STATE(659), 1, sym_string_literal, - STATE(1038), 1, - sym__expression, - STATE(1677), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(81), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + STATE(870), 1, + sym_expression, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -68243,6 +63677,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, + ACTIONS(1686), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1688), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1791), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2063), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -68261,14 +63707,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(870), 5, + STATE(668), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -68285,39 +63730,27 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4288] = 22, + [5310] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(83), 1, - anon_sym_sizeof, ACTIONS(87), 1, anon_sym_offsetof, ACTIONS(89), 1, anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1690), 1, + ACTIONS(1375), 1, sym_identifier, - STATE(707), 1, + ACTIONS(1690), 1, + anon_sym_sizeof, + ACTIONS(2061), 1, + anon_sym_LPAREN2, + ACTIONS(2105), 1, + anon_sym_RBRACK, + STATE(659), 1, sym_string_literal, - STATE(1058), 1, - sym__expression, - STATE(1850), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(81), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + STATE(870), 1, + sym_expression, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -68327,6 +63760,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, + ACTIONS(1686), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1688), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1791), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2063), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -68345,14 +63790,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(870), 5, + STATE(668), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -68369,7 +63813,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4394] = 21, + [5415] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -68378,18 +63822,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1365), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1674), 1, + ACTIONS(1690), 1, anon_sym_sizeof, - ACTIONS(2032), 1, + ACTIONS(2061), 1, anon_sym_LPAREN2, - ACTIONS(2066), 1, + ACTIONS(2107), 1, anon_sym_RBRACK, - STATE(707), 1, + STATE(659), 1, sym_string_literal, - STATE(925), 1, - sym__expression, + STATE(870), 1, + sym_expression, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -68399,16 +63843,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1670), 2, + ACTIONS(1686), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1672), 2, + ACTIONS(1688), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1772), 2, + ACTIONS(1791), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2034), 2, + ACTIONS(2063), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -68429,12 +63873,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(725), 22, - sym__expression_not_binary, + STATE(668), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -68443,16 +63891,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [4498] = 21, + [5520] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -68461,18 +63905,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1365), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1674), 1, + ACTIONS(1690), 1, anon_sym_sizeof, - ACTIONS(2032), 1, + ACTIONS(2061), 1, anon_sym_LPAREN2, - ACTIONS(2068), 1, + ACTIONS(2109), 1, anon_sym_RBRACK, - STATE(707), 1, + STATE(659), 1, sym_string_literal, - STATE(925), 1, - sym__expression, + STATE(870), 1, + sym_expression, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -68482,16 +63926,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1670), 2, + ACTIONS(1686), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1672), 2, + ACTIONS(1688), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1772), 2, + ACTIONS(1791), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2034), 2, + ACTIONS(2063), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -68512,12 +63956,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(725), 22, - sym__expression_not_binary, + STATE(668), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -68526,16 +63974,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [4602] = 21, + [5625] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -68544,18 +63988,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1365), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1674), 1, + ACTIONS(1690), 1, anon_sym_sizeof, - ACTIONS(2032), 1, + ACTIONS(2061), 1, anon_sym_LPAREN2, - ACTIONS(2070), 1, + ACTIONS(2111), 1, anon_sym_RBRACK, - STATE(707), 1, + STATE(659), 1, sym_string_literal, - STATE(925), 1, - sym__expression, + STATE(870), 1, + sym_expression, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -68565,16 +64009,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1670), 2, + ACTIONS(1686), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1672), 2, + ACTIONS(1688), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1772), 2, + ACTIONS(1791), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2034), 2, + ACTIONS(2063), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -68595,12 +64039,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(725), 22, - sym__expression_not_binary, + STATE(668), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -68609,16 +64057,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [4706] = 22, + [5730] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -68631,13 +64075,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1690), 1, + ACTIONS(1706), 1, sym_identifier, - STATE(707), 1, + STATE(659), 1, sym_string_literal, - STATE(1080), 1, - sym__expression, - STATE(1991), 1, + STATE(1044), 1, + sym_expression, + STATE(1879), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -68678,14 +64122,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(870), 5, + STATE(820), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -68702,356 +64145,39 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4812] = 21, + [5835] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, + anon_sym_sizeof, ACTIONS(87), 1, anon_sym_offsetof, ACTIONS(89), 1, anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1365), 1, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(1674), 1, - anon_sym_sizeof, - ACTIONS(2032), 1, - anon_sym_LPAREN2, - ACTIONS(2072), 1, - anon_sym_RBRACK, - STATE(707), 1, + STATE(659), 1, sym_string_literal, - STATE(925), 1, - sym__expression, - ACTIONS(91), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(101), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(161), 2, - sym_true, - sym_false, - ACTIONS(1670), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1672), 2, + STATE(1021), 1, + sym_expression, + STATE(1820), 1, + sym_comma_expression, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1772), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2034), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(85), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(95), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(97), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(725), 22, - sym__expression_not_binary, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_pointer_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_subscript_expression, - sym_call_expression, - sym_gnu_asm_expression, - sym_field_expression, - sym_compound_literal_expression, - sym_parenthesized_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [4916] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(51), 1, - sym_primitive_type, - ACTIONS(53), 1, - anon_sym_enum, - ACTIONS(55), 1, - anon_sym_struct, - ACTIONS(57), 1, - anon_sym_union, - ACTIONS(1115), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1830), 1, - sym_identifier, - ACTIONS(2074), 1, - anon_sym_LBRACE, - STATE(748), 1, - sym_ms_call_modifier, - STATE(754), 1, - sym_alignas_qualifier, - STATE(763), 1, - sym__type_specifier, - STATE(785), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1178), 1, - sym__declaration_specifiers, - ACTIONS(49), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(426), 3, - sym_function_definition, - sym_declaration, - sym_declaration_list, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(822), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(39), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - STATE(752), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [5024] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(51), 1, - sym_primitive_type, - ACTIONS(53), 1, - anon_sym_enum, - ACTIONS(55), 1, - anon_sym_struct, - ACTIONS(57), 1, - anon_sym_union, - ACTIONS(1115), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1830), 1, - sym_identifier, - ACTIONS(2076), 1, - anon_sym_LBRACE, - STATE(736), 1, - sym_ms_call_modifier, - STATE(754), 1, - sym_alignas_qualifier, - STATE(763), 1, - sym__type_specifier, - STATE(785), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1155), 1, - sym__declaration_specifiers, - ACTIONS(49), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(361), 3, - sym_function_definition, - sym_declaration, - sym_declaration_list, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(822), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(39), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - STATE(752), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [5132] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1700), 1, - anon_sym_const, - ACTIONS(1704), 1, - anon_sym_LPAREN2, - ACTIONS(1710), 1, - anon_sym_STAR, - ACTIONS(1717), 1, - anon_sym_EQ, - STATE(670), 1, - sym_string_literal, - STATE(787), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(1723), 2, - anon_sym_RPAREN, - anon_sym_LBRACK, - ACTIONS(2078), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(97), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1713), 10, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(1721), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1708), 11, + ACTIONS(23), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(25), 2, + anon_sym_STAR, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1702), 12, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_QMARK, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [5222] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, - ACTIONS(89), 1, - anon_sym__Generic, - ACTIONS(159), 1, - sym_number_literal, - ACTIONS(1365), 1, - sym_identifier, - ACTIONS(1674), 1, - anon_sym_sizeof, - ACTIONS(2032), 1, - anon_sym_LPAREN2, - ACTIONS(2080), 1, - anon_sym_RBRACK, - STATE(707), 1, - sym_string_literal, - STATE(925), 1, - sym__expression, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -69061,18 +64187,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1670), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1672), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1772), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2034), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -69091,12 +64205,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(725), 22, - sym__expression_not_binary, + STATE(820), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -69105,16 +64223,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [5326] = 21, + [5940] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -69123,18 +64237,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1365), 1, + ACTIONS(1765), 1, sym_identifier, - ACTIONS(1674), 1, + ACTIONS(1771), 1, anon_sym_sizeof, - ACTIONS(2032), 1, + ACTIONS(1787), 1, anon_sym_LPAREN2, - ACTIONS(2082), 1, - anon_sym_RBRACK, - STATE(707), 1, + STATE(659), 1, sym_string_literal, - STATE(925), 1, - sym__expression, + STATE(1048), 1, + sym_expression, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -69144,16 +64256,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1670), 2, + ACTIONS(1767), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1672), 2, + ACTIONS(1769), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1772), 2, + ACTIONS(1791), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2034), 2, + ACTIONS(1801), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -69174,12 +64286,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(725), 22, - sym__expression_not_binary, + STATE(891), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -69188,101 +64304,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [5430] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(51), 1, - sym_primitive_type, - ACTIONS(53), 1, - anon_sym_enum, - ACTIONS(55), 1, - anon_sym_struct, - ACTIONS(57), 1, - anon_sym_union, - ACTIONS(1115), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1830), 1, - sym_identifier, - ACTIONS(2084), 1, - anon_sym_LBRACE, - STATE(744), 1, - sym_ms_call_modifier, - STATE(754), 1, - sym_alignas_qualifier, - STATE(763), 1, - sym__type_specifier, - STATE(785), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1175), 1, - sym__declaration_specifiers, - ACTIONS(49), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(137), 3, - sym_function_definition, - sym_declaration, - sym_declaration_list, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(822), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(39), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - STATE(752), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [5538] = 21, + [6042] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -69291,18 +64318,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1365), 1, + ACTIONS(1765), 1, sym_identifier, - ACTIONS(1674), 1, + ACTIONS(1771), 1, anon_sym_sizeof, - ACTIONS(2032), 1, + ACTIONS(1787), 1, anon_sym_LPAREN2, - ACTIONS(2086), 1, - anon_sym_RBRACK, - STATE(707), 1, + STATE(659), 1, sym_string_literal, - STATE(925), 1, - sym__expression, + STATE(1068), 1, + sym_expression, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -69312,16 +64337,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1670), 2, + ACTIONS(1767), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1672), 2, + ACTIONS(1769), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1772), 2, + ACTIONS(1791), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2034), 2, + ACTIONS(1801), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -69342,95 +64367,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(725), 22, - sym__expression_not_binary, - sym__string, - sym_conditional_expression, - sym_assignment_expression, + STATE(891), 5, sym_pointer_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, sym_subscript_expression, sym_call_expression, - sym_gnu_asm_expression, sym_field_expression, - sym_compound_literal_expression, sym_parenthesized_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [5642] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, - ACTIONS(89), 1, - anon_sym__Generic, - ACTIONS(159), 1, - sym_number_literal, - ACTIONS(1365), 1, - sym_identifier, - ACTIONS(1674), 1, - anon_sym_sizeof, - ACTIONS(2032), 1, - anon_sym_LPAREN2, - ACTIONS(2088), 1, - anon_sym_RBRACK, - STATE(707), 1, - sym_string_literal, - STATE(925), 1, - sym__expression, - ACTIONS(91), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(101), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(161), 2, - sym_true, - sym_false, - ACTIONS(1670), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1672), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1772), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2034), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(85), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(95), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(97), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(725), 22, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -69439,16 +64385,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [5746] = 21, + [6144] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -69457,18 +64399,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1365), 1, - sym_identifier, - ACTIONS(1674), 1, + ACTIONS(1712), 1, anon_sym_sizeof, - ACTIONS(2032), 1, + ACTIONS(2043), 1, + sym_identifier, + ACTIONS(2045), 1, anon_sym_LPAREN2, - ACTIONS(2090), 1, - anon_sym_RBRACK, - STATE(707), 1, + STATE(679), 1, sym_string_literal, - STATE(925), 1, - sym__expression, + STATE(945), 1, + sym_expression, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -69478,16 +64418,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1670), 2, + ACTIONS(1708), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1672), 2, + ACTIONS(1710), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1772), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2034), 2, + ACTIONS(2049), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -69508,12 +64448,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(725), 22, - sym__expression_not_binary, + STATE(793), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -69522,101 +64466,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [5850] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(51), 1, - sym_primitive_type, - ACTIONS(53), 1, - anon_sym_enum, - ACTIONS(55), 1, - anon_sym_struct, - ACTIONS(57), 1, - anon_sym_union, - ACTIONS(1115), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1830), 1, - sym_identifier, - ACTIONS(2092), 1, - anon_sym_LBRACE, - STATE(735), 1, - sym_ms_call_modifier, - STATE(754), 1, - sym_alignas_qualifier, - STATE(763), 1, - sym__type_specifier, - STATE(785), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1169), 1, - sym__declaration_specifiers, - ACTIONS(49), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(356), 3, - sym_function_definition, - sym_declaration, - sym_declaration_list, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(822), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(39), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - STATE(752), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [5958] = 21, + [6246] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -69625,16 +64480,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1696), 1, + ACTIONS(1712), 1, anon_sym_sizeof, - ACTIONS(2016), 1, + ACTIONS(2043), 1, sym_identifier, - ACTIONS(2018), 1, + ACTIONS(2045), 1, anon_sym_LPAREN2, - STATE(732), 1, + STATE(679), 1, sym_string_literal, - STATE(993), 1, - sym__expression, + STATE(685), 1, + sym_expression, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -69644,16 +64499,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1692), 2, + ACTIONS(1708), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1694), 2, + ACTIONS(1710), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2008), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2020), 2, + ACTIONS(2049), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -69674,14 +64529,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(844), 5, + STATE(793), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -69698,107 +64552,25 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6061] = 21, + [6348] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(83), 1, - anon_sym_sizeof, ACTIONS(87), 1, anon_sym_offsetof, ACTIONS(89), 1, anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1690), 1, - sym_identifier, - STATE(707), 1, - sym_string_literal, - STATE(1011), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(81), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(91), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(101), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(161), 2, - sym_true, - sym_false, - ACTIONS(85), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(95), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(97), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(870), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [6164] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, - ACTIONS(89), 1, - anon_sym__Generic, - ACTIONS(159), 1, - sym_number_literal, - ACTIONS(1696), 1, + ACTIONS(1712), 1, anon_sym_sizeof, - ACTIONS(2016), 1, + ACTIONS(2043), 1, sym_identifier, - ACTIONS(2018), 1, + ACTIONS(2045), 1, anon_sym_LPAREN2, - STATE(732), 1, + STATE(679), 1, sym_string_literal, - STATE(996), 1, - sym__expression, + STATE(946), 1, + sym_expression, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -69808,16 +64580,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1692), 2, + ACTIONS(1708), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1694), 2, + ACTIONS(1710), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2008), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2020), 2, + ACTIONS(2049), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -69838,14 +64610,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(844), 5, + STATE(793), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -69862,7 +64633,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6267] = 21, + [6450] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -69871,16 +64642,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1696), 1, - anon_sym_sizeof, - ACTIONS(2016), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(2018), 1, + ACTIONS(1393), 1, + anon_sym_sizeof, + ACTIONS(2089), 1, anon_sym_LPAREN2, - STATE(729), 1, - sym__expression, - STATE(732), 1, + STATE(679), 1, sym_string_literal, + STATE(778), 1, + sym_expression, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -69890,16 +64661,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1692), 2, + ACTIONS(1389), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1694), 2, + ACTIONS(1391), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2008), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2020), 2, + ACTIONS(2091), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -69920,14 +64691,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(844), 5, + STATE(668), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -69944,7 +64714,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6370] = 21, + [6552] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -69953,16 +64723,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1746), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1752), 1, + ACTIONS(1393), 1, anon_sym_sizeof, - ACTIONS(1768), 1, + ACTIONS(2089), 1, anon_sym_LPAREN2, - STATE(707), 1, + STATE(679), 1, sym_string_literal, - STATE(1072), 1, - sym__expression, + STATE(757), 1, + sym_expression, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -69972,16 +64742,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1748), 2, + ACTIONS(1389), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1750), 2, + ACTIONS(1391), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1772), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1782), 2, + ACTIONS(2091), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -70002,14 +64772,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(941), 5, + STATE(668), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -70026,7 +64795,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6473] = 21, + [6654] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -70039,12 +64808,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1690), 1, + ACTIONS(1706), 1, sym_identifier, - STATE(707), 1, + STATE(659), 1, sym_string_literal, - STATE(1010), 1, - sym__expression, + STATE(959), 1, + sym_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -70084,14 +64853,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(870), 5, + STATE(820), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -70108,7 +64876,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6576] = 21, + [6756] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -70117,16 +64885,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1746), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1752), 1, + ACTIONS(1690), 1, anon_sym_sizeof, - ACTIONS(1768), 1, + ACTIONS(2061), 1, anon_sym_LPAREN2, - STATE(707), 1, + STATE(659), 1, sym_string_literal, - STATE(1071), 1, - sym__expression, + STATE(870), 1, + sym_expression, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -70136,16 +64904,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1748), 2, + ACTIONS(1686), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1750), 2, + ACTIONS(1688), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1772), 2, + ACTIONS(1791), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1782), 2, + ACTIONS(2063), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -70166,14 +64934,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(941), 5, + STATE(668), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -70190,37 +64957,25 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6679] = 21, + [6858] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(83), 1, - anon_sym_sizeof, ACTIONS(87), 1, anon_sym_offsetof, ACTIONS(89), 1, anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1690), 1, + ACTIONS(1765), 1, sym_identifier, - STATE(707), 1, + ACTIONS(1771), 1, + anon_sym_sizeof, + ACTIONS(1787), 1, + anon_sym_LPAREN2, + STATE(659), 1, sym_string_literal, - STATE(1006), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(81), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + STATE(1016), 1, + sym_expression, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -70230,6 +64985,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, + ACTIONS(1767), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1769), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1791), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1801), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -70248,14 +65015,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(870), 5, + STATE(891), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -70272,37 +65038,25 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6782] = 21, + [6960] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(83), 1, - anon_sym_sizeof, ACTIONS(87), 1, anon_sym_offsetof, ACTIONS(89), 1, anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1690), 1, + ACTIONS(1712), 1, + anon_sym_sizeof, + ACTIONS(2043), 1, sym_identifier, - STATE(707), 1, + ACTIONS(2045), 1, + anon_sym_LPAREN2, + STATE(679), 1, sym_string_literal, - STATE(1117), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(81), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + STATE(941), 1, + sym_expression, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -70312,6 +65066,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, + ACTIONS(1708), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1710), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2047), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2049), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -70330,14 +65096,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(870), 5, + STATE(793), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -70354,7 +65119,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6885] = 20, + [7062] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -70363,16 +65128,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1365), 1, + ACTIONS(1765), 1, sym_identifier, - ACTIONS(1674), 1, + ACTIONS(1771), 1, anon_sym_sizeof, - ACTIONS(2032), 1, + ACTIONS(1787), 1, anon_sym_LPAREN2, - STATE(707), 1, + STATE(659), 1, sym_string_literal, - STATE(883), 1, - sym__expression, + STATE(871), 1, + sym_expression, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -70382,16 +65147,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1670), 2, + ACTIONS(1767), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1672), 2, + ACTIONS(1769), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1772), 2, + ACTIONS(1791), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2034), 2, + ACTIONS(1801), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -70412,12 +65177,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(725), 22, - sym__expression_not_binary, + STATE(891), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -70426,34 +65195,42 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [6986] = 21, + [7164] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, + anon_sym_sizeof, ACTIONS(87), 1, anon_sym_offsetof, ACTIONS(89), 1, anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1696), 1, - anon_sym_sizeof, - ACTIONS(2016), 1, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(2018), 1, - anon_sym_LPAREN2, - STATE(732), 1, + STATE(659), 1, sym_string_literal, - STATE(997), 1, - sym__expression, + STATE(956), 1, + sym_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(81), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -70463,18 +65240,87 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1692), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1694), 2, + ACTIONS(85), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(820), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [7266] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, + anon_sym_sizeof, + ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, + anon_sym__Generic, + ACTIONS(159), 1, + sym_number_literal, + ACTIONS(1706), 1, + sym_identifier, + STATE(659), 1, + sym_string_literal, + STATE(1069), 1, + sym_expression, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2008), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2020), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(161), 2, + sym_true, + sym_false, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -70493,14 +65339,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(844), 5, + STATE(820), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -70517,7 +65362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7089] = 21, + [7368] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -70526,16 +65371,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1696), 1, - anon_sym_sizeof, - ACTIONS(2016), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(2018), 1, + ACTIONS(1387), 1, + anon_sym_sizeof, + ACTIONS(2033), 1, anon_sym_LPAREN2, - STATE(732), 1, + STATE(659), 1, sym_string_literal, - STATE(995), 1, - sym__expression, + STATE(800), 1, + sym_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -70545,16 +65393,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1692), 2, + ACTIONS(1379), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1694), 2, + ACTIONS(1381), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2008), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2020), 2, + ACTIONS(2035), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -70575,14 +65420,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(844), 5, + STATE(668), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -70599,25 +65443,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7192] = 21, + [7470] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, + anon_sym_sizeof, ACTIONS(87), 1, anon_sym_offsetof, ACTIONS(89), 1, anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1696), 1, - anon_sym_sizeof, - ACTIONS(2016), 1, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(2018), 1, - anon_sym_LPAREN2, - STATE(732), 1, + STATE(659), 1, sym_string_literal, - STATE(994), 1, - sym__expression, + STATE(685), 1, + sym_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(81), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -70627,18 +65483,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1692), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1694), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2008), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2020), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -70657,14 +65501,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(844), 5, + STATE(820), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -70681,7 +65524,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7295] = 21, + [7572] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -70690,16 +65533,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1746), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1752), 1, + ACTIONS(1393), 1, anon_sym_sizeof, - ACTIONS(1768), 1, + ACTIONS(2113), 1, anon_sym_LPAREN2, - STATE(707), 1, + STATE(679), 1, sym_string_literal, - STATE(1070), 1, - sym__expression, + STATE(686), 1, + sym_expression, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -70709,16 +65552,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1748), 2, + ACTIONS(1389), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1750), 2, + ACTIONS(1391), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1772), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1782), 2, + ACTIONS(2091), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -70739,14 +65582,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(941), 5, + STATE(668), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -70763,7 +65605,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7398] = 21, + [7674] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -70772,16 +65614,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1696), 1, - anon_sym_sizeof, - ACTIONS(2016), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(2018), 1, + ACTIONS(1387), 1, + anon_sym_sizeof, + ACTIONS(2033), 1, anon_sym_LPAREN2, - STATE(732), 1, + STATE(659), 1, sym_string_literal, - STATE(998), 1, - sym__expression, + STATE(818), 1, + sym_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -70791,18 +65636,96 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1692), 2, + ACTIONS(1379), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1694), 2, + ACTIONS(1381), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2008), 2, + ACTIONS(2035), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(85), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(668), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [7776] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, + anon_sym_sizeof, + ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, + anon_sym__Generic, + ACTIONS(159), 1, + sym_number_literal, + ACTIONS(1706), 1, + sym_identifier, + STATE(659), 1, + sym_string_literal, + STATE(1015), 1, + sym_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2020), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(161), 2, + sym_true, + sym_false, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -70821,14 +65744,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(844), 5, + STATE(820), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -70845,7 +65767,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7501] = 21, + [7878] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -70854,16 +65776,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1746), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1752), 1, + ACTIONS(1393), 1, anon_sym_sizeof, - ACTIONS(1768), 1, + ACTIONS(2089), 1, anon_sym_LPAREN2, - STATE(707), 1, + STATE(679), 1, sym_string_literal, - STATE(1106), 1, - sym__expression, + STATE(684), 1, + sym_expression, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -70873,16 +65795,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1748), 2, + ACTIONS(1389), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1750), 2, + ACTIONS(1391), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1772), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1782), 2, + ACTIONS(2091), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -70903,14 +65825,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(941), 5, + STATE(668), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -70927,7 +65848,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7604] = 21, + [7980] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -70936,16 +65857,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1696), 1, - anon_sym_sizeof, - ACTIONS(2016), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(2018), 1, + ACTIONS(1393), 1, + anon_sym_sizeof, + ACTIONS(2089), 1, anon_sym_LPAREN2, - STATE(732), 1, + STATE(679), 1, sym_string_literal, - STATE(991), 1, - sym__expression, + STATE(758), 1, + sym_expression, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -70955,16 +65876,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1692), 2, + ACTIONS(1389), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1694), 2, + ACTIONS(1391), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2008), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2020), 2, + ACTIONS(2091), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -70985,14 +65906,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(844), 5, + STATE(668), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -71009,25 +65929,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7707] = 21, + [8082] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, + anon_sym_sizeof, ACTIONS(87), 1, anon_sym_offsetof, ACTIONS(89), 1, anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1696), 1, - anon_sym_sizeof, - ACTIONS(2016), 1, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(2094), 1, - anon_sym_LPAREN2, - STATE(732), 1, + STATE(659), 1, sym_string_literal, - STATE(739), 1, - sym__expression, + STATE(955), 1, + sym_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(81), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -71037,18 +65969,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1692), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1694), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2008), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2020), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -71067,14 +65987,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(844), 5, + STATE(820), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -71091,7 +66010,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7810] = 21, + [8184] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -71100,16 +66019,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1696), 1, - anon_sym_sizeof, - ACTIONS(2016), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(2018), 1, + ACTIONS(1393), 1, + anon_sym_sizeof, + ACTIONS(2089), 1, anon_sym_LPAREN2, - STATE(732), 1, + STATE(679), 1, sym_string_literal, - STATE(740), 1, - sym__expression, + STATE(760), 1, + sym_expression, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -71119,16 +66038,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1692), 2, + ACTIONS(1389), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1694), 2, + ACTIONS(1391), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2008), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2020), 2, + ACTIONS(2091), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -71149,14 +66068,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(844), 5, + STATE(668), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -71173,7 +66091,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7913] = 21, + [8286] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -71182,16 +66100,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1696), 1, - anon_sym_sizeof, - ACTIONS(2016), 1, + ACTIONS(1765), 1, sym_identifier, - ACTIONS(2018), 1, + ACTIONS(1771), 1, + anon_sym_sizeof, + ACTIONS(1787), 1, anon_sym_LPAREN2, - STATE(732), 1, + STATE(659), 1, sym_string_literal, - STATE(989), 1, - sym__expression, + STATE(1043), 1, + sym_expression, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -71201,16 +66119,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1692), 2, + ACTIONS(1767), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1694), 2, + ACTIONS(1769), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2008), 2, + ACTIONS(1791), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2020), 2, + ACTIONS(1801), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -71231,14 +66149,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(844), 5, + STATE(891), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -71255,7 +66172,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8016] = 20, + [8388] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -71264,16 +66181,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1365), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1383), 1, + ACTIONS(1387), 1, anon_sym_sizeof, - ACTIONS(2096), 1, + ACTIONS(2115), 1, anon_sym_LPAREN2, - STATE(732), 1, + STATE(659), 1, sym_string_literal, - STATE(739), 1, - sym__expression, + STATE(686), 1, + sym_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -71289,10 +66209,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1381), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2008), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2010), 2, + ACTIONS(2035), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -71313,12 +66230,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(725), 22, - sym__expression_not_binary, + STATE(668), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -71327,46 +66248,33 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [8117] = 21, + [8490] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(83), 1, - anon_sym_sizeof, ACTIONS(87), 1, anon_sym_offsetof, ACTIONS(89), 1, anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1690), 1, + ACTIONS(1375), 1, sym_identifier, - STATE(707), 1, + ACTIONS(1387), 1, + anon_sym_sizeof, + ACTIONS(2033), 1, + anon_sym_LPAREN2, + STATE(659), 1, sym_string_literal, - STATE(1047), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, + STATE(684), 1, + sym_expression, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(81), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -71376,6 +66284,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, + ACTIONS(1379), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1381), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2035), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -71394,14 +66311,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(870), 5, + STATE(668), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -71418,7 +66334,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8220] = 21, + [8592] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -71427,16 +66343,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1696), 1, + ACTIONS(1712), 1, anon_sym_sizeof, - ACTIONS(2016), 1, + ACTIONS(2043), 1, sym_identifier, - ACTIONS(2018), 1, + ACTIONS(2045), 1, anon_sym_LPAREN2, - STATE(731), 1, - sym__expression, - STATE(732), 1, + STATE(679), 1, sym_string_literal, + STATE(936), 1, + sym_expression, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -71446,16 +66362,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1692), 2, + ACTIONS(1708), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1694), 2, + ACTIONS(1710), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2008), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2020), 2, + ACTIONS(2049), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -71476,14 +66392,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(844), 5, + STATE(793), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -71500,7 +66415,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8323] = 21, + [8694] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -71509,16 +66424,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1746), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1752), 1, + ACTIONS(1393), 1, anon_sym_sizeof, - ACTIONS(1768), 1, + ACTIONS(2089), 1, anon_sym_LPAREN2, - STATE(707), 1, + STATE(679), 1, sym_string_literal, - STATE(1078), 1, - sym__expression, + STATE(695), 1, + sym_expression, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -71528,16 +66443,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1748), 2, + ACTIONS(1389), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1750), 2, + ACTIONS(1391), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1772), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1782), 2, + ACTIONS(2091), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -71558,14 +66473,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(941), 5, + STATE(668), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -71582,37 +66496,28 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8426] = 21, + [8796] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(83), 1, - anon_sym_sizeof, ACTIONS(87), 1, anon_sym_offsetof, ACTIONS(89), 1, anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1690), 1, + ACTIONS(1375), 1, sym_identifier, - STATE(707), 1, + ACTIONS(1387), 1, + anon_sym_sizeof, + ACTIONS(2033), 1, + anon_sym_LPAREN2, + STATE(659), 1, sym_string_literal, - STATE(1120), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, + STATE(689), 1, + sym_expression, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(81), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -71622,86 +66527,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(85), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(95), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(97), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(870), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [8529] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, - ACTIONS(89), 1, - anon_sym__Generic, - ACTIONS(159), 1, - sym_number_literal, - ACTIONS(1696), 1, - anon_sym_sizeof, - ACTIONS(2016), 1, - sym_identifier, - ACTIONS(2018), 1, - anon_sym_LPAREN2, - STATE(732), 1, - sym_string_literal, - STATE(986), 1, - sym__expression, - ACTIONS(91), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(101), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(161), 2, - sym_true, - sym_false, - ACTIONS(1692), 2, + ACTIONS(1379), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1694), 2, + ACTIONS(1381), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2008), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2020), 2, + ACTIONS(2035), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -71722,14 +66554,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(844), 5, + STATE(668), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -71746,25 +66577,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8632] = 21, + [8898] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, + anon_sym_sizeof, ACTIONS(87), 1, anon_sym_offsetof, ACTIONS(89), 1, anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1746), 1, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(1752), 1, - anon_sym_sizeof, - ACTIONS(1768), 1, - anon_sym_LPAREN2, - STATE(707), 1, + STATE(659), 1, sym_string_literal, - STATE(1069), 1, - sym__expression, + STATE(1057), 1, + sym_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(81), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -71774,18 +66617,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1748), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1750), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1772), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1782), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -71804,14 +66635,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(941), 5, + STATE(820), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -71828,25 +66658,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8735] = 21, + [9000] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, + anon_sym_sizeof, ACTIONS(87), 1, anon_sym_offsetof, ACTIONS(89), 1, anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1746), 1, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(1752), 1, - anon_sym_sizeof, - ACTIONS(1768), 1, - anon_sym_LPAREN2, - STATE(707), 1, + STATE(659), 1, sym_string_literal, - STATE(1096), 1, - sym__expression, + STATE(1066), 1, + sym_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(81), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -71856,18 +66698,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1748), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1750), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1772), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1782), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -71886,14 +66716,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(941), 5, + STATE(820), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -71910,7 +66739,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8838] = 21, + [9102] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -71919,16 +66748,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1746), 1, + ACTIONS(1765), 1, sym_identifier, - ACTIONS(1752), 1, + ACTIONS(1771), 1, anon_sym_sizeof, - ACTIONS(1768), 1, + ACTIONS(1787), 1, anon_sym_LPAREN2, - STATE(707), 1, + STATE(659), 1, sym_string_literal, - STATE(1068), 1, - sym__expression, + STATE(1012), 1, + sym_expression, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -71938,16 +66767,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1748), 2, + ACTIONS(1767), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1750), 2, + ACTIONS(1769), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1772), 2, + ACTIONS(1791), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1782), 2, + ACTIONS(1801), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -71968,14 +66797,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(941), 5, + STATE(891), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -71992,7 +66820,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8941] = 21, + [9204] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -72005,12 +66833,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1690), 1, + ACTIONS(1706), 1, sym_identifier, - STATE(707), 1, + STATE(659), 1, sym_string_literal, - STATE(1077), 1, - sym__expression, + STATE(1055), 1, + sym_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -72050,14 +66878,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(870), 5, + STATE(820), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -72074,25 +66901,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9044] = 21, + [9306] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, + anon_sym_sizeof, ACTIONS(87), 1, anon_sym_offsetof, ACTIONS(89), 1, anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1696), 1, - anon_sym_sizeof, - ACTIONS(2016), 1, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(2018), 1, - anon_sym_LPAREN2, - STATE(732), 1, + STATE(659), 1, sym_string_literal, - STATE(988), 1, - sym__expression, + STATE(1065), 1, + sym_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(81), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -72102,18 +66941,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1692), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1694), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2008), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2020), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -72132,14 +66959,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(844), 5, + STATE(820), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -72156,7 +66982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9147] = 20, + [9408] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -72165,16 +66991,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1365), 1, - sym_identifier, - ACTIONS(1674), 1, + ACTIONS(1712), 1, anon_sym_sizeof, - ACTIONS(2032), 1, + ACTIONS(2043), 1, + sym_identifier, + ACTIONS(2045), 1, anon_sym_LPAREN2, - STATE(707), 1, + STATE(679), 1, sym_string_literal, - STATE(885), 1, - sym__expression, + STATE(950), 1, + sym_expression, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -72184,99 +67010,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1670), 2, + ACTIONS(1708), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1672), 2, + ACTIONS(1710), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1772), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2034), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(85), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(95), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(97), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(725), 22, - sym__expression_not_binary, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_pointer_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_subscript_expression, - sym_call_expression, - sym_gnu_asm_expression, - sym_field_expression, - sym_compound_literal_expression, - sym_parenthesized_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [9248] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(83), 1, - anon_sym_sizeof, - ACTIONS(87), 1, - anon_sym_offsetof, - ACTIONS(89), 1, - anon_sym__Generic, - ACTIONS(159), 1, - sym_number_literal, - ACTIONS(1690), 1, - sym_identifier, - STATE(707), 1, - sym_string_literal, - STATE(1007), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(81), 2, + ACTIONS(2049), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(101), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(161), 2, - sym_true, - sym_false, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -72295,14 +67040,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(870), 5, + STATE(793), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -72319,7 +67063,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9351] = 20, + [9510] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -72328,16 +67072,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1365), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1383), 1, + ACTIONS(1393), 1, anon_sym_sizeof, - ACTIONS(2006), 1, + ACTIONS(2089), 1, anon_sym_LPAREN2, - STATE(732), 1, + STATE(679), 1, sym_string_literal, - STATE(811), 1, - sym__expression, + STATE(754), 1, + sym_expression, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -72347,16 +67091,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1379), 2, + ACTIONS(1389), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1381), 2, + ACTIONS(1391), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2008), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2010), 2, + ACTIONS(2091), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -72377,12 +67121,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(725), 22, - sym__expression_not_binary, + STATE(668), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -72391,16 +67139,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [9452] = 20, + [9612] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -72409,16 +67153,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1365), 1, + ACTIONS(1765), 1, sym_identifier, - ACTIONS(1383), 1, + ACTIONS(1771), 1, anon_sym_sizeof, - ACTIONS(2006), 1, + ACTIONS(1787), 1, anon_sym_LPAREN2, - STATE(732), 1, + STATE(659), 1, sym_string_literal, - STATE(740), 1, - sym__expression, + STATE(841), 1, + sym_expression, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -72428,16 +67172,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1379), 2, + ACTIONS(1767), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1381), 2, + ACTIONS(1769), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2008), 2, + ACTIONS(1791), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2010), 2, + ACTIONS(1801), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -72458,12 +67202,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(725), 22, - sym__expression_not_binary, + STATE(891), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -72472,16 +67220,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [9553] = 21, + [9714] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -72490,16 +67234,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1746), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1752), 1, + ACTIONS(1387), 1, anon_sym_sizeof, - ACTIONS(1768), 1, + ACTIONS(2033), 1, anon_sym_LPAREN2, - STATE(707), 1, + STATE(659), 1, sym_string_literal, - STATE(1085), 1, - sym__expression, + STATE(685), 1, + sym_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -72509,16 +67256,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1748), 2, + ACTIONS(1379), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1750), 2, + ACTIONS(1381), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1772), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1782), 2, + ACTIONS(2035), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -72539,14 +67283,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(941), 5, + STATE(668), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -72563,28 +67306,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9656] = 20, + [9816] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, + anon_sym_sizeof, ACTIONS(87), 1, anon_sym_offsetof, ACTIONS(89), 1, anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1365), 1, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(1377), 1, - anon_sym_sizeof, - ACTIONS(2052), 1, - anon_sym_LPAREN2, - STATE(707), 1, + STATE(659), 1, sym_string_literal, - STATE(841), 1, - sym__expression, + STATE(998), 1, + sym_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, + ACTIONS(81), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -72594,15 +67346,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1369), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1371), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2054), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -72621,12 +67364,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(725), 22, - sym__expression_not_binary, + STATE(820), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -72635,46 +67382,30 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [9757] = 21, + [9918] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(83), 1, - anon_sym_sizeof, ACTIONS(87), 1, anon_sym_offsetof, ACTIONS(89), 1, anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1690), 1, + ACTIONS(1375), 1, sym_identifier, - STATE(707), 1, + ACTIONS(1393), 1, + anon_sym_sizeof, + ACTIONS(2089), 1, + anon_sym_LPAREN2, + STATE(679), 1, sym_string_literal, - STATE(1109), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(81), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + STATE(685), 1, + sym_expression, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -72684,6 +67415,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, + ACTIONS(1389), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1391), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2047), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2091), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -72702,14 +67445,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(870), 5, + STATE(668), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -72726,37 +67468,28 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9860] = 21, + [10020] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(83), 1, - anon_sym_sizeof, ACTIONS(87), 1, anon_sym_offsetof, ACTIONS(89), 1, anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1690), 1, + ACTIONS(1375), 1, sym_identifier, - STATE(707), 1, + ACTIONS(1387), 1, + anon_sym_sizeof, + ACTIONS(2033), 1, + anon_sym_LPAREN2, + STATE(659), 1, sym_string_literal, - STATE(1056), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, + STATE(815), 1, + sym_expression, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(81), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -72766,6 +67499,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, + ACTIONS(1379), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1381), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2035), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -72784,14 +67526,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(870), 5, + STATE(668), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -72808,7 +67549,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9963] = 21, + [10122] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -72817,16 +67558,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1746), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1752), 1, + ACTIONS(1393), 1, anon_sym_sizeof, - ACTIONS(1768), 1, + ACTIONS(2089), 1, anon_sym_LPAREN2, - STATE(707), 1, + STATE(679), 1, sym_string_literal, - STATE(1067), 1, - sym__expression, + STATE(748), 1, + sym_expression, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -72836,16 +67577,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1748), 2, + ACTIONS(1389), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1750), 2, + ACTIONS(1391), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1772), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1782), 2, + ACTIONS(2091), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -72866,14 +67607,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(941), 5, + STATE(668), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -72890,37 +67630,28 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10066] = 21, + [10224] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(83), 1, - anon_sym_sizeof, ACTIONS(87), 1, anon_sym_offsetof, ACTIONS(89), 1, anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1690), 1, + ACTIONS(1375), 1, sym_identifier, - STATE(707), 1, + ACTIONS(1387), 1, + anon_sym_sizeof, + ACTIONS(2033), 1, + anon_sym_LPAREN2, + STATE(659), 1, sym_string_literal, - STATE(1107), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, + STATE(802), 1, + sym_expression, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(81), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -72930,6 +67661,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, + ACTIONS(1379), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1381), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2035), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -72948,14 +67688,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(870), 5, + STATE(668), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -72972,37 +67711,25 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10169] = 21, + [10326] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(83), 1, - anon_sym_sizeof, ACTIONS(87), 1, anon_sym_offsetof, ACTIONS(89), 1, anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1690), 1, + ACTIONS(1712), 1, + anon_sym_sizeof, + ACTIONS(2043), 1, sym_identifier, - STATE(707), 1, + ACTIONS(2045), 1, + anon_sym_LPAREN2, + STATE(679), 1, sym_string_literal, - STATE(1009), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(81), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + STATE(942), 1, + sym_expression, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -73012,6 +67739,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, + ACTIONS(1708), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1710), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2047), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2049), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -73030,14 +67769,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(870), 5, + STATE(793), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -73054,25 +67792,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10272] = 21, + [10428] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, + anon_sym_sizeof, ACTIONS(87), 1, anon_sym_offsetof, ACTIONS(89), 1, anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1696), 1, - anon_sym_sizeof, - ACTIONS(2016), 1, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(2018), 1, - anon_sym_LPAREN2, - STATE(732), 1, + STATE(659), 1, sym_string_literal, - STATE(999), 1, - sym__expression, + STATE(689), 1, + sym_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(81), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -73082,18 +67832,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1692), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1694), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2008), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2020), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -73112,14 +67850,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(844), 5, + STATE(820), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -73136,7 +67873,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10375] = 20, + [10530] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -73145,16 +67882,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1365), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1674), 1, + ACTIONS(1393), 1, anon_sym_sizeof, - ACTIONS(2032), 1, + ACTIONS(2089), 1, anon_sym_LPAREN2, - STATE(707), 1, + STATE(679), 1, sym_string_literal, - STATE(879), 1, - sym__expression, + STATE(689), 1, + sym_expression, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -73164,16 +67901,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1670), 2, + ACTIONS(1389), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1672), 2, + ACTIONS(1391), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1772), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2034), 2, + ACTIONS(2091), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -73194,12 +67931,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(725), 22, - sym__expression_not_binary, + STATE(668), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -73208,46 +67949,33 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [10476] = 21, + [10632] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(83), 1, - anon_sym_sizeof, ACTIONS(87), 1, anon_sym_offsetof, ACTIONS(89), 1, anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1690), 1, + ACTIONS(1375), 1, sym_identifier, - STATE(707), 1, + ACTIONS(1387), 1, + anon_sym_sizeof, + ACTIONS(2033), 1, + anon_sym_LPAREN2, + STATE(659), 1, sym_string_literal, - STATE(740), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, + STATE(695), 1, + sym_expression, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(81), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -73257,6 +67985,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, + ACTIONS(1379), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1381), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2035), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -73275,14 +68012,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(870), 5, + STATE(668), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -73299,7 +68035,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10579] = 20, + [10734] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -73308,16 +68044,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1365), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1383), 1, + ACTIONS(1393), 1, anon_sym_sizeof, - ACTIONS(2006), 1, + ACTIONS(2089), 1, anon_sym_LPAREN2, - STATE(732), 1, + STATE(679), 1, sym_string_literal, - STATE(786), 1, - sym__expression, + STATE(765), 1, + sym_expression, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -73327,16 +68063,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1379), 2, + ACTIONS(1389), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1381), 2, + ACTIONS(1391), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2008), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2010), 2, + ACTIONS(2091), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -73357,12 +68093,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(725), 22, - sym__expression_not_binary, + STATE(668), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -73371,16 +68111,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [10680] = 20, + [10836] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -73389,19 +68125,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1365), 1, + ACTIONS(1765), 1, sym_identifier, - ACTIONS(1377), 1, + ACTIONS(1771), 1, anon_sym_sizeof, - ACTIONS(2052), 1, + ACTIONS(1787), 1, anon_sym_LPAREN2, - STATE(707), 1, + STATE(659), 1, sym_string_literal, - STATE(849), 1, - sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, + STATE(888), 1, + sym_expression, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -73411,13 +68144,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1369), 2, + ACTIONS(1767), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1371), 2, + ACTIONS(1769), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2054), 2, + ACTIONS(1791), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1801), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -73438,12 +68174,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(725), 22, - sym__expression_not_binary, + STATE(891), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -73452,16 +68192,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [10781] = 21, + [10938] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -73470,16 +68206,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1746), 1, + ACTIONS(1765), 1, sym_identifier, - ACTIONS(1752), 1, + ACTIONS(1771), 1, anon_sym_sizeof, - ACTIONS(1768), 1, + ACTIONS(2117), 1, anon_sym_LPAREN2, - STATE(707), 1, + STATE(659), 1, sym_string_literal, - STATE(1066), 1, - sym__expression, + STATE(830), 1, + sym_expression, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -73489,16 +68225,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1748), 2, + ACTIONS(1767), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1750), 2, + ACTIONS(1769), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1772), 2, + ACTIONS(1791), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1782), 2, + ACTIONS(1801), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -73519,14 +68255,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(941), 5, + STATE(891), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -73543,37 +68278,28 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10884] = 21, + [11040] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(83), 1, - anon_sym_sizeof, ACTIONS(87), 1, anon_sym_offsetof, ACTIONS(89), 1, anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1690), 1, + ACTIONS(1375), 1, sym_identifier, - STATE(707), 1, + ACTIONS(1387), 1, + anon_sym_sizeof, + ACTIONS(2033), 1, + anon_sym_LPAREN2, + STATE(659), 1, sym_string_literal, - STATE(1013), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, + STATE(809), 1, + sym_expression, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(81), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -73583,6 +68309,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, + ACTIONS(1379), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1381), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2035), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -73601,14 +68336,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(870), 5, + STATE(668), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -73625,7 +68359,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10987] = 20, + [11142] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -73634,16 +68368,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1365), 1, - sym_identifier, - ACTIONS(1383), 1, + ACTIONS(1712), 1, anon_sym_sizeof, - ACTIONS(2006), 1, + ACTIONS(2043), 1, + sym_identifier, + ACTIONS(2045), 1, anon_sym_LPAREN2, - STATE(731), 1, - sym__expression, - STATE(732), 1, + STATE(679), 1, sym_string_literal, + STATE(689), 1, + sym_expression, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -73653,16 +68387,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1379), 2, + ACTIONS(1708), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1381), 2, + ACTIONS(1710), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2008), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2010), 2, + ACTIONS(2049), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -73683,12 +68417,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(725), 22, - sym__expression_not_binary, + STATE(793), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -73697,16 +68435,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [11088] = 20, + [11244] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -73715,19 +68449,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1365), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1377), 1, + ACTIONS(1393), 1, anon_sym_sizeof, - ACTIONS(2052), 1, + ACTIONS(2089), 1, anon_sym_LPAREN2, - STATE(707), 1, + STATE(679), 1, sym_string_literal, - STATE(853), 1, - sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, + STATE(766), 1, + sym_expression, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -73737,96 +68468,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1369), 2, + ACTIONS(1389), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1371), 2, + ACTIONS(1391), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2054), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(85), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(95), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(97), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(725), 22, - sym__expression_not_binary, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_pointer_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_subscript_expression, - sym_call_expression, - sym_gnu_asm_expression, - sym_field_expression, - sym_compound_literal_expression, - sym_parenthesized_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [11189] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(83), 1, - anon_sym_sizeof, - ACTIONS(87), 1, - anon_sym_offsetof, - ACTIONS(89), 1, - anon_sym__Generic, - ACTIONS(159), 1, - sym_number_literal, - ACTIONS(1690), 1, - sym_identifier, - STATE(707), 1, - sym_string_literal, - STATE(1016), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(81), 2, + ACTIONS(2091), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(101), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(161), 2, - sym_true, - sym_false, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -73845,14 +68498,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(870), 5, + STATE(668), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -73869,7 +68521,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11292] = 20, + [11346] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -73878,16 +68530,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1365), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1377), 1, + ACTIONS(1387), 1, anon_sym_sizeof, - ACTIONS(2098), 1, + ACTIONS(2033), 1, anon_sym_LPAREN2, - STATE(707), 1, + STATE(659), 1, sym_string_literal, - STATE(739), 1, - sym__expression, + STATE(801), 1, + sym_expression, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, @@ -73900,13 +68552,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1369), 2, + ACTIONS(1379), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1371), 2, + ACTIONS(1381), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2054), 2, + ACTIONS(2035), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -73927,12 +68579,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(725), 22, - sym__expression_not_binary, + STATE(668), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -73941,16 +68597,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [11393] = 21, + [11448] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -73963,12 +68615,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1690), 1, + ACTIONS(1706), 1, sym_identifier, - STATE(707), 1, + STATE(659), 1, sym_string_literal, - STATE(729), 1, - sym__expression, + STATE(963), 1, + sym_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -74008,14 +68660,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(870), 5, + STATE(820), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -74032,7 +68683,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11496] = 21, + [11550] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -74045,12 +68696,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1690), 1, + ACTIONS(1706), 1, sym_identifier, - STATE(707), 1, + STATE(659), 1, sym_string_literal, - STATE(1101), 1, - sym__expression, + STATE(1071), 1, + sym_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -74090,14 +68741,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(870), 5, + STATE(820), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -74114,7 +68764,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11599] = 21, + [11652] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -74123,16 +68773,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1746), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1752), 1, + ACTIONS(1690), 1, anon_sym_sizeof, - ACTIONS(1768), 1, + ACTIONS(2119), 1, anon_sym_LPAREN2, - STATE(707), 1, + STATE(659), 1, sym_string_literal, - STATE(911), 1, - sym__expression, + STATE(830), 1, + sym_expression, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -74142,16 +68792,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1748), 2, + ACTIONS(1686), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1750), 2, + ACTIONS(1688), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1772), 2, + ACTIONS(1791), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1782), 2, + ACTIONS(2063), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -74172,14 +68822,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(941), 5, + STATE(668), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -74196,37 +68845,25 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11702] = 21, + [11754] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(83), 1, - anon_sym_sizeof, ACTIONS(87), 1, anon_sym_offsetof, ACTIONS(89), 1, anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1690), 1, + ACTIONS(1712), 1, + anon_sym_sizeof, + ACTIONS(2043), 1, sym_identifier, - STATE(707), 1, + ACTIONS(2045), 1, + anon_sym_LPAREN2, + STATE(679), 1, sym_string_literal, - STATE(1005), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(81), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + STATE(684), 1, + sym_expression, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -74236,6 +68873,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, + ACTIONS(1708), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1710), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2047), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2049), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -74254,14 +68903,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(870), 5, + STATE(793), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -74278,7 +68926,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11805] = 21, + [11856] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -74287,16 +68935,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1746), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1752), 1, + ACTIONS(1690), 1, anon_sym_sizeof, - ACTIONS(1768), 1, + ACTIONS(2061), 1, anon_sym_LPAREN2, - STATE(707), 1, + STATE(659), 1, sym_string_literal, - STATE(1063), 1, - sym__expression, + STATE(888), 1, + sym_expression, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -74306,16 +68954,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1748), 2, + ACTIONS(1686), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1750), 2, + ACTIONS(1688), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1772), 2, + ACTIONS(1791), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1782), 2, + ACTIONS(2063), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -74336,14 +68984,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(941), 5, + STATE(668), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -74360,37 +69007,25 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11908] = 21, + [11958] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(83), 1, - anon_sym_sizeof, ACTIONS(87), 1, anon_sym_offsetof, ACTIONS(89), 1, anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1690), 1, + ACTIONS(1375), 1, sym_identifier, - STATE(707), 1, + ACTIONS(1393), 1, + anon_sym_sizeof, + ACTIONS(2089), 1, + anon_sym_LPAREN2, + STATE(679), 1, sym_string_literal, - STATE(1017), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(81), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + STATE(770), 1, + sym_expression, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -74400,6 +69035,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, + ACTIONS(1389), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1391), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2047), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2091), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -74418,14 +69065,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(870), 5, + STATE(668), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -74442,28 +69088,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12011] = 20, + [12060] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(83), 1, + anon_sym_sizeof, ACTIONS(87), 1, anon_sym_offsetof, ACTIONS(89), 1, anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1365), 1, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(1377), 1, - anon_sym_sizeof, - ACTIONS(2052), 1, + ACTIONS(2121), 1, anon_sym_LPAREN2, - STATE(707), 1, + STATE(659), 1, sym_string_literal, - STATE(740), 1, - sym__expression, + STATE(686), 1, + sym_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, + ACTIONS(81), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -74473,15 +69128,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1369), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1371), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2054), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -74500,12 +69146,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(725), 22, - sym__expression_not_binary, + STATE(820), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -74514,16 +69164,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [12112] = 21, + [12162] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -74536,12 +69182,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1690), 1, + ACTIONS(1706), 1, sym_identifier, - STATE(707), 1, + STATE(659), 1, sym_string_literal, - STATE(1015), 1, - sym__expression, + STATE(684), 1, + sym_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -74581,14 +69227,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(870), 5, + STATE(820), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -74605,7 +69250,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12215] = 20, + [12264] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -74614,16 +69259,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1365), 1, - sym_identifier, - ACTIONS(1674), 1, + ACTIONS(1712), 1, anon_sym_sizeof, - ACTIONS(2032), 1, + ACTIONS(2043), 1, + sym_identifier, + ACTIONS(2045), 1, anon_sym_LPAREN2, - STATE(707), 1, + STATE(679), 1, sym_string_literal, - STATE(882), 1, - sym__expression, + STATE(939), 1, + sym_expression, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -74633,16 +69278,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1670), 2, + ACTIONS(1708), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1672), 2, + ACTIONS(1710), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1772), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2034), 2, + ACTIONS(2049), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -74663,12 +69308,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(725), 22, - sym__expression_not_binary, + STATE(793), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -74677,46 +69326,30 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [12316] = 21, + [12366] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(83), 1, - anon_sym_sizeof, ACTIONS(87), 1, anon_sym_offsetof, ACTIONS(89), 1, anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1690), 1, + ACTIONS(1712), 1, + anon_sym_sizeof, + ACTIONS(2043), 1, sym_identifier, - STATE(707), 1, + ACTIONS(2123), 1, + anon_sym_LPAREN2, + STATE(679), 1, sym_string_literal, - STATE(1014), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(81), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + STATE(686), 1, + sym_expression, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -74726,6 +69359,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, + ACTIONS(1708), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1710), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2047), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2049), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -74744,14 +69389,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(870), 5, + STATE(793), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -74768,37 +69412,25 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12419] = 21, + [12468] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(83), 1, - anon_sym_sizeof, ACTIONS(87), 1, anon_sym_offsetof, ACTIONS(89), 1, anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1690), 1, + ACTIONS(1375), 1, sym_identifier, - STATE(707), 1, + ACTIONS(1690), 1, + anon_sym_sizeof, + ACTIONS(2061), 1, + anon_sym_LPAREN2, + STATE(659), 1, sym_string_literal, - STATE(1012), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(81), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + STATE(871), 1, + sym_expression, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -74808,6 +69440,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, + ACTIONS(1686), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1688), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1791), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2063), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -74826,14 +69470,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(870), 5, + STATE(668), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -74850,25 +69493,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12522] = 20, + [12570] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, + anon_sym_sizeof, ACTIONS(87), 1, anon_sym_offsetof, ACTIONS(89), 1, anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1365), 1, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(1674), 1, - anon_sym_sizeof, - ACTIONS(2032), 1, - anon_sym_LPAREN2, - STATE(707), 1, + STATE(659), 1, sym_string_literal, - STATE(907), 1, - sym__expression, + STATE(966), 1, + sym_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(81), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -74878,18 +69533,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1670), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1672), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1772), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2034), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -74908,12 +69551,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(725), 22, - sym__expression_not_binary, + STATE(820), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -74922,16 +69569,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [12623] = 21, + [12672] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -74940,16 +69583,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1746), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1752), 1, + ACTIONS(1387), 1, anon_sym_sizeof, - ACTIONS(1768), 1, + ACTIONS(2033), 1, anon_sym_LPAREN2, - STATE(707), 1, + STATE(659), 1, sym_string_literal, - STATE(1074), 1, - sym__expression, + STATE(811), 1, + sym_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -74959,16 +69605,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1748), 2, + ACTIONS(1379), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1750), 2, + ACTIONS(1381), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1772), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1782), 2, + ACTIONS(2035), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -74989,14 +69632,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(941), 5, + STATE(668), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -75013,7 +69655,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12726] = 20, + [12774] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -75022,16 +69664,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1365), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1674), 1, + ACTIONS(1690), 1, anon_sym_sizeof, - ACTIONS(2032), 1, + ACTIONS(2061), 1, anon_sym_LPAREN2, - STATE(707), 1, + STATE(659), 1, sym_string_literal, - STATE(921), 1, - sym__expression, + STATE(840), 1, + sym_expression, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -75041,16 +69683,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1670), 2, + ACTIONS(1686), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1672), 2, + ACTIONS(1688), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1772), 2, + ACTIONS(1791), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2034), 2, + ACTIONS(2063), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -75071,12 +69713,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(725), 22, - sym__expression_not_binary, + STATE(668), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -75085,16 +69731,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [12827] = 21, + [12876] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -75103,16 +69745,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1746), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1752), 1, + ACTIONS(1690), 1, anon_sym_sizeof, - ACTIONS(1768), 1, + ACTIONS(2061), 1, anon_sym_LPAREN2, - STATE(707), 1, + STATE(659), 1, sym_string_literal, - STATE(1061), 1, - sym__expression, + STATE(831), 1, + sym_expression, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -75122,16 +69764,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1748), 2, + ACTIONS(1686), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1750), 2, + ACTIONS(1688), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1772), 2, + ACTIONS(1791), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1782), 2, + ACTIONS(2063), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -75152,14 +69794,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(941), 5, + STATE(668), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -75176,37 +69817,25 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12930] = 21, + [12978] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(83), 1, - anon_sym_sizeof, ACTIONS(87), 1, anon_sym_offsetof, ACTIONS(89), 1, anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1690), 1, + ACTIONS(1712), 1, + anon_sym_sizeof, + ACTIONS(2043), 1, sym_identifier, - STATE(707), 1, + ACTIONS(2045), 1, + anon_sym_LPAREN2, + STATE(679), 1, sym_string_literal, - STATE(1114), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(81), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + STATE(947), 1, + sym_expression, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -75216,6 +69845,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, + ACTIONS(1708), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1710), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2047), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2049), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -75234,14 +69875,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(870), 5, + STATE(793), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -75258,7 +69898,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13033] = 20, + [13080] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -75267,16 +69907,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1365), 1, - sym_identifier, - ACTIONS(1383), 1, + ACTIONS(1712), 1, anon_sym_sizeof, - ACTIONS(2006), 1, + ACTIONS(2043), 1, + sym_identifier, + ACTIONS(2045), 1, anon_sym_LPAREN2, - STATE(732), 1, + STATE(679), 1, sym_string_literal, - STATE(809), 1, - sym__expression, + STATE(948), 1, + sym_expression, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -75286,16 +69926,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1379), 2, + ACTIONS(1708), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1381), 2, + ACTIONS(1710), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2008), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2010), 2, + ACTIONS(2049), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -75316,12 +69956,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(725), 22, - sym__expression_not_binary, + STATE(793), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -75330,16 +69974,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [13134] = 20, + [13182] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -75348,16 +69988,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1365), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1383), 1, + ACTIONS(1690), 1, anon_sym_sizeof, - ACTIONS(2006), 1, + ACTIONS(2061), 1, anon_sym_LPAREN2, - STATE(732), 1, + STATE(659), 1, sym_string_literal, - STATE(806), 1, - sym__expression, + STATE(868), 1, + sym_expression, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -75367,16 +70007,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1379), 2, + ACTIONS(1686), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1381), 2, + ACTIONS(1688), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2008), 2, + ACTIONS(1791), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2010), 2, + ACTIONS(2063), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -75397,12 +70037,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(725), 22, - sym__expression_not_binary, + STATE(668), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -75411,16 +70055,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [13235] = 20, + [13284] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -75429,16 +70069,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1365), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1383), 1, + ACTIONS(1690), 1, anon_sym_sizeof, - ACTIONS(2006), 1, + ACTIONS(2061), 1, anon_sym_LPAREN2, - STATE(732), 1, + STATE(659), 1, sym_string_literal, - STATE(804), 1, - sym__expression, + STATE(849), 1, + sym_expression, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -75448,16 +70088,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1379), 2, + ACTIONS(1686), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1381), 2, + ACTIONS(1688), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2008), 2, + ACTIONS(1791), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2010), 2, + ACTIONS(2063), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -75478,12 +70118,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(725), 22, - sym__expression_not_binary, + STATE(668), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -75492,16 +70136,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [13336] = 20, + [13386] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -75510,16 +70150,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1365), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1674), 1, + ACTIONS(1690), 1, anon_sym_sizeof, - ACTIONS(2032), 1, + ACTIONS(2061), 1, anon_sym_LPAREN2, - STATE(707), 1, + STATE(659), 1, sym_string_literal, - STATE(923), 1, - sym__expression, + STATE(848), 1, + sym_expression, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -75529,16 +70169,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1670), 2, + ACTIONS(1686), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1672), 2, + ACTIONS(1688), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1772), 2, + ACTIONS(1791), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2034), 2, + ACTIONS(2063), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -75559,12 +70199,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(725), 22, - sym__expression_not_binary, + STATE(668), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -75573,16 +70217,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [13437] = 20, + [13488] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -75591,16 +70231,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1365), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1383), 1, + ACTIONS(1690), 1, anon_sym_sizeof, - ACTIONS(2006), 1, + ACTIONS(2061), 1, anon_sym_LPAREN2, - STATE(732), 1, + STATE(659), 1, sym_string_literal, - STATE(799), 1, - sym__expression, + STATE(841), 1, + sym_expression, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -75610,16 +70250,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1379), 2, + ACTIONS(1686), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1381), 2, + ACTIONS(1688), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2008), 2, + ACTIONS(1791), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2010), 2, + ACTIONS(2063), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -75640,12 +70280,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(725), 22, - sym__expression_not_binary, + STATE(668), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -75654,16 +70298,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [13538] = 20, + [13590] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -75672,16 +70312,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1365), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1383), 1, + ACTIONS(1690), 1, anon_sym_sizeof, - ACTIONS(2006), 1, + ACTIONS(2061), 1, anon_sym_LPAREN2, - STATE(732), 1, + STATE(659), 1, sym_string_literal, - STATE(831), 1, - sym__expression, + STATE(846), 1, + sym_expression, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -75691,16 +70331,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1379), 2, + ACTIONS(1686), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1381), 2, + ACTIONS(1688), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2008), 2, + ACTIONS(1791), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2010), 2, + ACTIONS(2063), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -75721,93 +70361,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(725), 22, - sym__expression_not_binary, - sym__string, - sym_conditional_expression, - sym_assignment_expression, + STATE(668), 5, sym_pointer_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, sym_subscript_expression, sym_call_expression, - sym_gnu_asm_expression, sym_field_expression, - sym_compound_literal_expression, sym_parenthesized_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [13639] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, - ACTIONS(89), 1, - anon_sym__Generic, - ACTIONS(159), 1, - sym_number_literal, - ACTIONS(1365), 1, - sym_identifier, - ACTIONS(1377), 1, - anon_sym_sizeof, - ACTIONS(2052), 1, - anon_sym_LPAREN2, - STATE(707), 1, - sym_string_literal, - STATE(857), 1, - sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(91), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(101), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(161), 2, - sym_true, - sym_false, - ACTIONS(1369), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1371), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2054), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(85), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(95), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(97), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(725), 22, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -75816,37 +70379,42 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [13740] = 20, + [13692] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, + anon_sym_sizeof, ACTIONS(87), 1, anon_sym_offsetof, ACTIONS(89), 1, anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1365), 1, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(1377), 1, - anon_sym_sizeof, - ACTIONS(2052), 1, - anon_sym_LPAREN2, - STATE(707), 1, + STATE(659), 1, sym_string_literal, - STATE(837), 1, - sym__expression, + STATE(964), 1, + sym_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, + ACTIONS(81), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -75856,15 +70424,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1369), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1371), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2054), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -75883,12 +70442,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(725), 22, - sym__expression_not_binary, + STATE(820), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -75897,16 +70460,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [13841] = 20, + [13794] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -75915,16 +70474,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1365), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1383), 1, + ACTIONS(1690), 1, anon_sym_sizeof, - ACTIONS(2006), 1, + ACTIONS(2061), 1, anon_sym_LPAREN2, - STATE(732), 1, + STATE(659), 1, sym_string_literal, - STATE(789), 1, - sym__expression, + STATE(845), 1, + sym_expression, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -75934,16 +70493,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1379), 2, + ACTIONS(1686), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1381), 2, + ACTIONS(1688), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2008), 2, + ACTIONS(1791), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2010), 2, + ACTIONS(2063), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -75964,12 +70523,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(725), 22, - sym__expression_not_binary, + STATE(668), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -75978,16 +70541,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [13942] = 20, + [13896] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -75996,16 +70555,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1365), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1383), 1, + ACTIONS(1690), 1, anon_sym_sizeof, - ACTIONS(2006), 1, + ACTIONS(2061), 1, anon_sym_LPAREN2, - STATE(732), 1, + STATE(659), 1, sym_string_literal, - STATE(798), 1, - sym__expression, + STATE(843), 1, + sym_expression, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -76015,99 +70574,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1379), 2, + ACTIONS(1686), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1381), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2008), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2010), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(85), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(95), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(97), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(725), 22, - sym__expression_not_binary, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_pointer_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_subscript_expression, - sym_call_expression, - sym_gnu_asm_expression, - sym_field_expression, - sym_compound_literal_expression, - sym_parenthesized_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [14043] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_sizeof, - ACTIONS(87), 1, - anon_sym_offsetof, - ACTIONS(89), 1, - anon_sym__Generic, - ACTIONS(159), 1, - sym_number_literal, - ACTIONS(1690), 1, - sym_identifier, - ACTIONS(2100), 1, - anon_sym_LPAREN2, - STATE(707), 1, - sym_string_literal, - STATE(739), 1, - sym__expression, - ACTIONS(21), 2, + ACTIONS(1688), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1791), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(81), 2, + ACTIONS(2063), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(101), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(161), 2, - sym_true, - sym_false, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -76126,14 +70604,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(870), 5, + STATE(668), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -76150,7 +70627,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14146] = 20, + [13998] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -76159,16 +70636,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1365), 1, - sym_identifier, - ACTIONS(1383), 1, + ACTIONS(1712), 1, anon_sym_sizeof, - ACTIONS(2006), 1, + ACTIONS(2043), 1, + sym_identifier, + ACTIONS(2045), 1, anon_sym_LPAREN2, - STATE(732), 1, + STATE(679), 1, sym_string_literal, - STATE(794), 1, - sym__expression, + STATE(951), 1, + sym_expression, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -76178,16 +70655,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1379), 2, + ACTIONS(1708), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1381), 2, + ACTIONS(1710), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2008), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2010), 2, + ACTIONS(2049), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -76208,12 +70685,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(725), 22, - sym__expression_not_binary, + STATE(793), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -76222,16 +70703,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [14247] = 20, + [14100] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -76240,16 +70717,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1365), 1, - sym_identifier, - ACTIONS(1674), 1, + ACTIONS(1712), 1, anon_sym_sizeof, - ACTIONS(2032), 1, + ACTIONS(2043), 1, + sym_identifier, + ACTIONS(2045), 1, anon_sym_LPAREN2, - STATE(707), 1, + STATE(679), 1, sym_string_literal, - STATE(911), 1, - sym__expression, + STATE(944), 1, + sym_expression, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -76259,16 +70736,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1670), 2, + ACTIONS(1708), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1672), 2, + ACTIONS(1710), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1772), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2034), 2, + ACTIONS(2049), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -76289,12 +70766,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(725), 22, - sym__expression_not_binary, + STATE(793), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -76303,16 +70784,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [14348] = 20, + [14202] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -76321,16 +70798,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1365), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1383), 1, + ACTIONS(1393), 1, anon_sym_sizeof, - ACTIONS(2006), 1, + ACTIONS(2089), 1, anon_sym_LPAREN2, - STATE(732), 1, + STATE(679), 1, sym_string_literal, - STATE(802), 1, - sym__expression, + STATE(776), 1, + sym_expression, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -76340,16 +70817,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1379), 2, + ACTIONS(1389), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1381), 2, + ACTIONS(1391), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2008), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2010), 2, + ACTIONS(2091), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -76370,12 +70847,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(725), 22, - sym__expression_not_binary, + STATE(668), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -76384,16 +70865,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [14449] = 21, + [14304] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -76402,16 +70879,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1696), 1, + ACTIONS(1712), 1, anon_sym_sizeof, - ACTIONS(2016), 1, + ACTIONS(2043), 1, sym_identifier, - ACTIONS(2018), 1, + ACTIONS(2045), 1, anon_sym_LPAREN2, - STATE(732), 1, + STATE(679), 1, sym_string_literal, - STATE(987), 1, - sym__expression, + STATE(949), 1, + sym_expression, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -76421,16 +70898,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1692), 2, + ACTIONS(1708), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1694), 2, + ACTIONS(1710), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2008), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2020), 2, + ACTIONS(2049), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -76451,14 +70928,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(844), 5, + STATE(793), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -76475,25 +70951,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14552] = 20, + [14406] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, + anon_sym_sizeof, ACTIONS(87), 1, anon_sym_offsetof, ACTIONS(89), 1, anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1365), 1, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(1383), 1, - anon_sym_sizeof, - ACTIONS(2006), 1, - anon_sym_LPAREN2, - STATE(732), 1, + STATE(659), 1, sym_string_literal, - STATE(734), 1, - sym__expression, + STATE(957), 1, + sym_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(81), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -76503,18 +70991,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1379), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1381), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2008), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2010), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -76533,12 +71009,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(725), 22, - sym__expression_not_binary, + STATE(820), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -76547,16 +71027,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [14653] = 20, + [14508] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -76565,19 +71041,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1365), 1, + ACTIONS(1765), 1, sym_identifier, - ACTIONS(1377), 1, + ACTIONS(1771), 1, anon_sym_sizeof, - ACTIONS(2052), 1, + ACTIONS(1787), 1, anon_sym_LPAREN2, - STATE(707), 1, + STATE(659), 1, sym_string_literal, - STATE(734), 1, - sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, + STATE(1062), 1, + sym_expression, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -76587,13 +71060,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1369), 2, + ACTIONS(1767), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1371), 2, + ACTIONS(1769), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2054), 2, + ACTIONS(1791), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1801), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -76614,12 +71090,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(725), 22, - sym__expression_not_binary, + STATE(891), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -76628,37 +71108,42 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [14754] = 20, + [14610] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, + anon_sym_sizeof, ACTIONS(87), 1, anon_sym_offsetof, ACTIONS(89), 1, anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1365), 1, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(1377), 1, - anon_sym_sizeof, - ACTIONS(2052), 1, - anon_sym_LPAREN2, - STATE(707), 1, + STATE(659), 1, sym_string_literal, - STATE(731), 1, - sym__expression, + STATE(967), 1, + sym_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, + ACTIONS(81), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -76668,15 +71153,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1369), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1371), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2054), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -76695,12 +71171,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(725), 22, - sym__expression_not_binary, + STATE(820), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -76709,16 +71189,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [14855] = 21, + [14712] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -76731,12 +71207,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1690), 1, + ACTIONS(1706), 1, sym_identifier, - STATE(707), 1, + STATE(659), 1, sym_string_literal, - STATE(1046), 1, - sym__expression, + STATE(1031), 1, + sym_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -76776,14 +71252,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(870), 5, + STATE(820), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -76800,7 +71275,169 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14958] = 21, + [14814] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, + anon_sym__Generic, + ACTIONS(159), 1, + sym_number_literal, + ACTIONS(1765), 1, + sym_identifier, + ACTIONS(1771), 1, + anon_sym_sizeof, + ACTIONS(1787), 1, + anon_sym_LPAREN2, + STATE(659), 1, + sym_string_literal, + STATE(1040), 1, + sym_expression, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(161), 2, + sym_true, + sym_false, + ACTIONS(1767), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1769), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1791), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1801), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(85), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(891), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [14916] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, + anon_sym__Generic, + ACTIONS(159), 1, + sym_number_literal, + ACTIONS(1375), 1, + sym_identifier, + ACTIONS(1690), 1, + anon_sym_sizeof, + ACTIONS(2061), 1, + anon_sym_LPAREN2, + STATE(659), 1, + sym_string_literal, + STATE(842), 1, + sym_expression, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(161), 2, + sym_true, + sym_false, + ACTIONS(1686), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1688), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1791), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2063), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(85), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(668), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [15018] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -76813,12 +71450,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1690), 1, + ACTIONS(1706), 1, sym_identifier, - STATE(707), 1, + STATE(659), 1, sym_string_literal, - STATE(731), 1, - sym__expression, + STATE(960), 1, + sym_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -76858,14 +71495,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(870), 5, + STATE(820), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -76882,7 +71518,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15061] = 20, + [15120] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -76891,19 +71527,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1365), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1377), 1, + ACTIONS(1690), 1, anon_sym_sizeof, - ACTIONS(2052), 1, + ACTIONS(2061), 1, anon_sym_LPAREN2, - STATE(707), 1, + STATE(659), 1, sym_string_literal, STATE(839), 1, - sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, + sym_expression, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -76913,13 +71546,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1369), 2, + ACTIONS(1686), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1371), 2, + ACTIONS(1688), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2054), 2, + ACTIONS(1791), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2063), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -76940,93 +71576,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(725), 22, - sym__expression_not_binary, - sym__string, - sym_conditional_expression, - sym_assignment_expression, + STATE(668), 5, sym_pointer_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, sym_subscript_expression, sym_call_expression, - sym_gnu_asm_expression, sym_field_expression, - sym_compound_literal_expression, sym_parenthesized_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [15162] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, - ACTIONS(89), 1, - anon_sym__Generic, - ACTIONS(159), 1, - sym_number_literal, - ACTIONS(1365), 1, - sym_identifier, - ACTIONS(1377), 1, - anon_sym_sizeof, - ACTIONS(2052), 1, - anon_sym_LPAREN2, - STATE(707), 1, - sym_string_literal, - STATE(842), 1, - sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(91), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(101), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(161), 2, - sym_true, - sym_false, - ACTIONS(1369), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1371), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2054), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(85), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(95), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(97), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(725), 22, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -77035,37 +71594,42 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [15263] = 20, + [15222] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, + anon_sym_sizeof, ACTIONS(87), 1, anon_sym_offsetof, ACTIONS(89), 1, anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1365), 1, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(1377), 1, - anon_sym_sizeof, - ACTIONS(2052), 1, - anon_sym_LPAREN2, - STATE(707), 1, + STATE(659), 1, sym_string_literal, - STATE(846), 1, - sym__expression, + STATE(1000), 1, + sym_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, + ACTIONS(81), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -77075,15 +71639,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1369), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1371), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2054), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -77102,12 +71657,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(725), 22, - sym__expression_not_binary, + STATE(820), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -77116,16 +71675,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [15364] = 20, + [15324] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -77134,16 +71689,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1365), 1, + ACTIONS(1765), 1, sym_identifier, - ACTIONS(1674), 1, + ACTIONS(1771), 1, anon_sym_sizeof, - ACTIONS(2032), 1, + ACTIONS(1787), 1, anon_sym_LPAREN2, - STATE(707), 1, + STATE(659), 1, sym_string_literal, - STATE(933), 1, - sym__expression, + STATE(1038), 1, + sym_expression, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -77153,16 +71708,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1670), 2, + ACTIONS(1767), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1672), 2, + ACTIONS(1769), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1772), 2, + ACTIONS(1791), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2034), 2, + ACTIONS(1801), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -77183,12 +71738,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(725), 22, - sym__expression_not_binary, + STATE(891), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -77197,16 +71756,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [15465] = 20, + [15426] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -77215,16 +71770,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1365), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1674), 1, + ACTIONS(1393), 1, anon_sym_sizeof, - ACTIONS(2032), 1, + ACTIONS(2089), 1, anon_sym_LPAREN2, - STATE(707), 1, + STATE(679), 1, sym_string_literal, - STATE(935), 1, - sym__expression, + STATE(775), 1, + sym_expression, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -77234,16 +71789,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1670), 2, + ACTIONS(1389), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1672), 2, + ACTIONS(1391), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1772), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2034), 2, + ACTIONS(2091), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -77264,12 +71819,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(725), 22, - sym__expression_not_binary, + STATE(668), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -77278,16 +71837,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [15566] = 20, + [15528] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -77296,16 +71851,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1365), 1, - sym_identifier, - ACTIONS(1674), 1, + ACTIONS(1712), 1, anon_sym_sizeof, - ACTIONS(2032), 1, + ACTIONS(2043), 1, + sym_identifier, + ACTIONS(2045), 1, anon_sym_LPAREN2, - STATE(707), 1, + STATE(679), 1, sym_string_literal, - STATE(927), 1, - sym__expression, + STATE(940), 1, + sym_expression, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -77315,16 +71870,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1670), 2, + ACTIONS(1708), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1672), 2, + ACTIONS(1710), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1772), 2, + ACTIONS(2047), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2034), 2, + ACTIONS(2049), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -77345,12 +71900,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(725), 22, - sym__expression_not_binary, + STATE(793), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -77359,16 +71918,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [15667] = 20, + [15630] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -77377,19 +71932,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1365), 1, + ACTIONS(1765), 1, sym_identifier, - ACTIONS(1377), 1, + ACTIONS(1771), 1, anon_sym_sizeof, - ACTIONS(2052), 1, + ACTIONS(1787), 1, anon_sym_LPAREN2, - STATE(707), 1, + STATE(659), 1, sym_string_literal, - STATE(847), 1, - sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, + STATE(1050), 1, + sym_expression, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -77399,13 +71951,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1369), 2, + ACTIONS(1767), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1371), 2, + ACTIONS(1769), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2054), 2, + ACTIONS(1791), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1801), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -77426,12 +71981,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(725), 22, - sym__expression_not_binary, + STATE(891), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -77440,37 +71999,42 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [15768] = 20, + [15732] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, + anon_sym_sizeof, ACTIONS(87), 1, anon_sym_offsetof, ACTIONS(89), 1, anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1365), 1, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(1377), 1, - anon_sym_sizeof, - ACTIONS(2052), 1, - anon_sym_LPAREN2, - STATE(707), 1, + STATE(659), 1, sym_string_literal, - STATE(729), 1, - sym__expression, + STATE(1056), 1, + sym_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, + ACTIONS(81), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -77480,15 +72044,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1369), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1371), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2054), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -77507,12 +72062,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(725), 22, - sym__expression_not_binary, + STATE(820), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -77521,16 +72080,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [15869] = 21, + [15834] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -77543,12 +72098,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1690), 1, + ACTIONS(1706), 1, sym_identifier, - STATE(707), 1, + STATE(659), 1, sym_string_literal, - STATE(1043), 1, - sym__expression, + STATE(961), 1, + sym_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -77588,14 +72143,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(870), 5, + STATE(820), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -77612,7 +72166,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15972] = 21, + [15936] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -77621,16 +72175,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1746), 1, + ACTIONS(1765), 1, sym_identifier, - ACTIONS(1752), 1, + ACTIONS(1771), 1, anon_sym_sizeof, - ACTIONS(2102), 1, + ACTIONS(1787), 1, anon_sym_LPAREN2, - STATE(707), 1, + STATE(659), 1, sym_string_literal, - STATE(900), 1, - sym__expression, + STATE(1006), 1, + sym_expression, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -77640,16 +72194,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1748), 2, + ACTIONS(1767), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1750), 2, + ACTIONS(1769), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1772), 2, + ACTIONS(1791), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1782), 2, + ACTIONS(1801), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -77670,14 +72224,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(941), 5, + STATE(891), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -77694,7 +72247,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16075] = 21, + [16038] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -77707,12 +72260,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1690), 1, + ACTIONS(1706), 1, sym_identifier, - STATE(707), 1, + STATE(659), 1, sym_string_literal, - STATE(1116), 1, - sym__expression, + STATE(958), 1, + sym_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -77752,96 +72305,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(870), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [16178] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, - ACTIONS(89), 1, - anon_sym__Generic, - ACTIONS(159), 1, - sym_number_literal, - ACTIONS(1746), 1, - sym_identifier, - ACTIONS(1752), 1, - anon_sym_sizeof, - ACTIONS(1768), 1, - anon_sym_LPAREN2, - STATE(707), 1, - sym_string_literal, - STATE(901), 1, - sym__expression, - ACTIONS(91), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(101), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(161), 2, - sym_true, - sym_false, - ACTIONS(1748), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1750), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1772), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1782), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(85), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(95), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(97), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(941), 5, + STATE(820), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -77858,7 +72328,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16281] = 20, + [16140] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -77867,16 +72337,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1365), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1674), 1, + ACTIONS(1387), 1, anon_sym_sizeof, - ACTIONS(2032), 1, + ACTIONS(2033), 1, anon_sym_LPAREN2, - STATE(707), 1, + STATE(659), 1, sym_string_literal, - STATE(920), 1, - sym__expression, + STATE(784), 1, + sym_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -77886,16 +72359,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1670), 2, + ACTIONS(1379), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1672), 2, + ACTIONS(1381), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1772), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2034), 2, + ACTIONS(2035), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -77916,12 +72386,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(725), 22, - sym__expression_not_binary, + STATE(668), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -77930,34 +72404,42 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [16382] = 20, + [16242] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, + anon_sym_sizeof, ACTIONS(87), 1, anon_sym_offsetof, ACTIONS(89), 1, anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1365), 1, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(1674), 1, - anon_sym_sizeof, - ACTIONS(2032), 1, - anon_sym_LPAREN2, - STATE(707), 1, + STATE(659), 1, sym_string_literal, - STATE(930), 1, - sym__expression, + STATE(965), 1, + sym_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(81), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -77967,18 +72449,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1670), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1672), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1772), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2034), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -77997,12 +72467,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(725), 22, - sym__expression_not_binary, + STATE(820), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -78011,34 +72485,42 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [16483] = 20, + [16344] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, + anon_sym_sizeof, ACTIONS(87), 1, anon_sym_offsetof, ACTIONS(89), 1, anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1365), 1, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(1674), 1, - anon_sym_sizeof, - ACTIONS(2032), 1, - anon_sym_LPAREN2, - STATE(707), 1, + STATE(659), 1, sym_string_literal, - STATE(925), 1, - sym__expression, + STATE(1001), 1, + sym_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(81), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -78048,18 +72530,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1670), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1672), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1772), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2034), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -78078,12 +72548,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(725), 22, - sym__expression_not_binary, + STATE(820), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -78092,46 +72566,30 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [16584] = 21, + [16446] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(83), 1, - anon_sym_sizeof, ACTIONS(87), 1, anon_sym_offsetof, ACTIONS(89), 1, anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1690), 1, + ACTIONS(1765), 1, sym_identifier, - STATE(707), 1, + ACTIONS(1771), 1, + anon_sym_sizeof, + ACTIONS(1787), 1, + anon_sym_LPAREN2, + STATE(659), 1, sym_string_literal, - STATE(1050), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(81), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + STATE(1026), 1, + sym_expression, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -78141,6 +72599,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, + ACTIONS(1767), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1769), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1791), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1801), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -78159,14 +72629,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(870), 5, + STATE(891), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -78183,7 +72652,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16687] = 20, + [16548] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -78192,19 +72661,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1365), 1, + ACTIONS(1765), 1, sym_identifier, - ACTIONS(1377), 1, + ACTIONS(1771), 1, anon_sym_sizeof, - ACTIONS(2052), 1, + ACTIONS(1787), 1, anon_sym_LPAREN2, - STATE(707), 1, + STATE(659), 1, sym_string_literal, - STATE(848), 1, - sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, + STATE(1042), 1, + sym_expression, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -78214,13 +72680,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1369), 2, + ACTIONS(1767), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1371), 2, + ACTIONS(1769), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2054), 2, + ACTIONS(1791), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1801), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -78241,12 +72710,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(725), 22, - sym__expression_not_binary, + STATE(891), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -78255,16 +72728,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [16788] = 20, + [16650] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -78273,16 +72742,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1365), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1674), 1, + ACTIONS(1387), 1, anon_sym_sizeof, - ACTIONS(2032), 1, + ACTIONS(2033), 1, anon_sym_LPAREN2, - STATE(707), 1, + STATE(659), 1, sym_string_literal, - STATE(901), 1, - sym__expression, + STATE(814), 1, + sym_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -78292,16 +72764,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1670), 2, + ACTIONS(1379), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1672), 2, + ACTIONS(1381), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1772), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2034), 2, + ACTIONS(2035), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -78322,12 +72791,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(725), 22, - sym__expression_not_binary, + STATE(668), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -78336,16 +72809,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [16889] = 20, + [16752] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -78354,16 +72823,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1365), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1674), 1, + ACTIONS(1387), 1, anon_sym_sizeof, - ACTIONS(2104), 1, + ACTIONS(2033), 1, anon_sym_LPAREN2, - STATE(707), 1, + STATE(659), 1, sym_string_literal, - STATE(900), 1, - sym__expression, + STATE(813), 1, + sym_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -78373,16 +72845,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1670), 2, + ACTIONS(1379), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1672), 2, + ACTIONS(1381), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1772), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2034), 2, + ACTIONS(2035), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -78403,12 +72872,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(725), 22, - sym__expression_not_binary, + STATE(668), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -78417,16 +72890,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [16990] = 20, + [16854] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -78435,16 +72904,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1365), 1, + ACTIONS(1765), 1, sym_identifier, - ACTIONS(1383), 1, + ACTIONS(1771), 1, anon_sym_sizeof, - ACTIONS(2006), 1, + ACTIONS(1787), 1, anon_sym_LPAREN2, - STATE(729), 1, - sym__expression, - STATE(732), 1, + STATE(659), 1, sym_string_literal, + STATE(1045), 1, + sym_expression, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -78454,16 +72923,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1379), 2, + ACTIONS(1767), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1381), 2, + ACTIONS(1769), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2008), 2, + ACTIONS(1791), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2010), 2, + ACTIONS(1801), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -78484,12 +72953,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(725), 22, - sym__expression_not_binary, + STATE(891), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -78498,16 +72971,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [17091] = 21, + [16956] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -78516,16 +72985,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1746), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1752), 1, + ACTIONS(1690), 1, anon_sym_sizeof, - ACTIONS(1768), 1, + ACTIONS(2061), 1, anon_sym_LPAREN2, - STATE(707), 1, + STATE(659), 1, sym_string_literal, - STATE(1108), 1, - sym__expression, + STATE(850), 1, + sym_expression, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -78535,16 +73004,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1748), 2, + ACTIONS(1686), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1750), 2, + ACTIONS(1688), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1772), 2, + ACTIONS(1791), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1782), 2, + ACTIONS(2063), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -78565,14 +73034,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(941), 5, + STATE(668), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -78589,7 +73057,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17194] = 21, + [17058] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -78602,12 +73070,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1690), 1, + ACTIONS(1706), 1, sym_identifier, - STATE(707), 1, + STATE(659), 1, sym_string_literal, - STATE(1100), 1, - sym__expression, + STATE(1036), 1, + sym_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -78647,14 +73115,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(870), 5, + STATE(820), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [17160] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, + anon_sym__Generic, + ACTIONS(159), 1, + sym_number_literal, + ACTIONS(1375), 1, + sym_identifier, + ACTIONS(1387), 1, + anon_sym_sizeof, + ACTIONS(2033), 1, + anon_sym_LPAREN2, + STATE(659), 1, + sym_string_literal, + STATE(812), 1, + sym_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(161), 2, + sym_true, + sym_false, + ACTIONS(1379), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1381), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2035), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(85), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(668), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -78671,7 +73219,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17297] = 21, + [17262] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -78684,12 +73232,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1690), 1, + ACTIONS(1706), 1, sym_identifier, - STATE(707), 1, + STATE(659), 1, sym_string_literal, - STATE(1110), 1, - sym__expression, + STATE(996), 1, + sym_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -78729,14 +73277,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(870), 5, + STATE(820), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -78753,25 +73300,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17400] = 21, + [17364] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, + anon_sym_sizeof, ACTIONS(87), 1, anon_sym_offsetof, ACTIONS(89), 1, anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1746), 1, + ACTIONS(1706), 1, sym_identifier, - ACTIONS(1752), 1, - anon_sym_sizeof, - ACTIONS(1768), 1, - anon_sym_LPAREN2, - STATE(707), 1, + STATE(659), 1, sym_string_literal, - STATE(930), 1, - sym__expression, + STATE(1058), 1, + sym_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(81), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -78781,18 +73340,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1748), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1750), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1772), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1782), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -78811,14 +73358,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(941), 5, + STATE(820), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -78835,7 +73381,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17503] = 21, + [17466] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -78844,16 +73390,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1696), 1, - anon_sym_sizeof, - ACTIONS(2016), 1, + ACTIONS(1765), 1, sym_identifier, - ACTIONS(2018), 1, + ACTIONS(1771), 1, + anon_sym_sizeof, + ACTIONS(1787), 1, anon_sym_LPAREN2, - STATE(732), 1, + STATE(659), 1, sym_string_literal, - STATE(1000), 1, - sym__expression, + STATE(1030), 1, + sym_expression, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -78863,16 +73409,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1692), 2, + ACTIONS(1767), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1694), 2, + ACTIONS(1769), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2008), 2, + ACTIONS(1791), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2020), 2, + ACTIONS(1801), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -78893,14 +73439,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(844), 5, + STATE(891), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(725), 17, - sym__expression_not_binary, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -78917,7 +73462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17606] = 20, + [17568] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -78926,19 +73471,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1365), 1, + ACTIONS(1765), 1, sym_identifier, - ACTIONS(1377), 1, + ACTIONS(1771), 1, anon_sym_sizeof, - ACTIONS(2052), 1, + ACTIONS(1787), 1, anon_sym_LPAREN2, - STATE(707), 1, + STATE(659), 1, sym_string_literal, - STATE(840), 1, - sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, + STATE(1037), 1, + sym_expression, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -78948,13 +73490,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1369), 2, + ACTIONS(1767), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1371), 2, + ACTIONS(1769), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2054), 2, + ACTIONS(1791), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1801), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -78975,12 +73520,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(725), 22, - sym__expression_not_binary, + STATE(891), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(672), 16, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -78989,21 +73538,17 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [17707] = 6, + [17670] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2106), 1, + ACTIONS(2125), 1, sym_identifier, - STATE(669), 2, + STATE(617), 2, sym_string_literal, aux_sym_concatenated_string_repeat1, ACTIONS(97), 5, @@ -79012,7 +73557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2110), 16, + ACTIONS(2129), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -79029,7 +73574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_EQ, anon_sym_DOT, - ACTIONS(2108), 33, + ACTIONS(2127), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -79063,21 +73608,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [17778] = 6, + [17741] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2112), 1, + ACTIONS(2131), 1, sym_identifier, - STATE(669), 2, + STATE(618), 2, sym_string_literal, aux_sym_concatenated_string_repeat1, - ACTIONS(2119), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2117), 16, + ACTIONS(2135), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -79094,7 +73639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_EQ, anon_sym_DOT, - ACTIONS(2115), 33, + ACTIONS(2133), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -79128,21 +73673,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [17849] = 6, + [17812] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2122), 1, + ACTIONS(2137), 1, sym_identifier, - STATE(668), 2, + STATE(618), 2, sym_string_literal, aux_sym_concatenated_string_repeat1, - ACTIONS(97), 5, + ACTIONS(2144), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2126), 16, + ACTIONS(2142), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -79159,7 +73704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_EQ, anon_sym_DOT, - ACTIONS(2124), 33, + ACTIONS(2140), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -79193,10 +73738,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [17920] = 5, + [17883] = 5, ACTIONS(3), 1, sym_comment, - STATE(670), 1, + STATE(616), 1, sym_string_literal, ACTIONS(97), 5, anon_sym_L_DQUOTE, @@ -79204,7 +73749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1708), 17, + ACTIONS(1724), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -79222,7 +73767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(1702), 33, + ACTIONS(1718), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -79256,10 +73801,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [17988] = 3, + [17951] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2128), 17, + ACTIONS(2147), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -79277,7 +73822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2130), 38, + ACTIONS(2149), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -79316,10 +73861,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [18051] = 3, + [18014] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2132), 17, + ACTIONS(2151), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -79337,7 +73882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2134), 38, + ACTIONS(2153), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -79376,77 +73921,187 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [18114] = 11, + [18077] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2146), 1, + ACTIONS(2155), 20, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym___attribute__, - ACTIONS(2149), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2152), 1, - anon_sym___declspec, - STATE(754), 1, - sym_alignas_qualifier, - ACTIONS(2155), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(2138), 5, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DOT, + sym_identifier, + ACTIONS(2157), 34, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [18139] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2159), 20, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DOT, + sym_identifier, + ACTIONS(2161), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_SEMI, - STATE(674), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(2140), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(2143), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(2136), 17, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [18201] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2163), 20, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_LBRACK, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DOT, sym_identifier, - [18192] = 3, + ACTIONS(2165), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [18263] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2158), 20, + ACTIONS(2167), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -79467,7 +74122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2160), 34, + ACTIONS(2169), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -79502,187 +74157,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [18254] = 3, + [18325] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2162), 20, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(2181), 1, anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DOT, - sym_identifier, - ACTIONS(2164), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, + ACTIONS(2184), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [18316] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2166), 20, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DOT, - sym_identifier, - ACTIONS(2168), 34, - anon_sym_DOT_DOT_DOT, + ACTIONS(2187), 1, + anon_sym___declspec, + STATE(708), 1, + sym_alignas_qualifier, + ACTIONS(2190), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2173), 5, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [18378] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2170), 20, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, + anon_sym_SEMI, + STATE(626), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(2175), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(2178), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(2171), 17, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DOT, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - ACTIONS(2172), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [18440] = 3, + [18403] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2174), 20, + ACTIONS(2193), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -79703,7 +74248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2176), 34, + ACTIONS(2195), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -79738,10 +74283,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [18502] = 3, + [18465] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2178), 20, + ACTIONS(2197), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -79762,7 +74307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2180), 34, + ACTIONS(2199), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -79797,10 +74342,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [18564] = 3, + [18527] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2182), 20, + ACTIONS(2201), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -79821,7 +74366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2184), 34, + ACTIONS(2203), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -79856,10 +74401,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [18626] = 3, + [18589] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2186), 20, + ACTIONS(2205), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -79880,7 +74425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2188), 34, + ACTIONS(2207), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -79915,10 +74460,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [18688] = 3, + [18651] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2190), 20, + ACTIONS(2209), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -79939,7 +74484,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2192), 34, + ACTIONS(2211), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -79974,10 +74519,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [18750] = 3, + [18713] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2194), 20, + ACTIONS(2213), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -79998,7 +74543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2196), 34, + ACTIONS(2215), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -80033,7 +74578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [18812] = 22, + [18775] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -80052,22 +74597,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1115), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1830), 1, + ACTIONS(1849), 1, sym_identifier, - STATE(141), 1, + STATE(123), 1, sym_compound_statement, - STATE(754), 1, + STATE(708), 1, sym_alignas_qualifier, - STATE(763), 1, - sym__type_specifier, - STATE(785), 1, + STATE(716), 1, + sym_type_specifier, + STATE(773), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1166), 1, + STATE(1103), 1, sym__declaration_specifiers, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(703), 2, + STATE(635), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -80075,13 +74620,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(822), 5, + STATE(771), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(752), 7, + STATE(698), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -80110,7 +74655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [18911] = 22, + [18874] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -80127,24 +74672,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1115), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1756), 1, + ACTIONS(1775), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1758), 1, + ACTIONS(1777), 1, anon_sym_RPAREN, - ACTIONS(1830), 1, + ACTIONS(1849), 1, sym_identifier, - STATE(754), 1, + STATE(708), 1, sym_alignas_qualifier, - STATE(763), 1, - sym__type_specifier, - STATE(785), 1, + STATE(716), 1, + sym_type_specifier, + STATE(773), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1182), 1, + STATE(1139), 1, sym__declaration_specifiers, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1670), 2, + STATE(1530), 2, sym_variadic_parameter, sym_parameter_declaration, ACTIONS(43), 4, @@ -80152,13 +74697,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(822), 5, + STATE(771), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(752), 7, + STATE(698), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -80187,7 +74732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [19010] = 22, + [18973] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -80206,22 +74751,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1115), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1830), 1, + ACTIONS(1849), 1, sym_identifier, - STATE(153), 1, + STATE(131), 1, sym_compound_statement, - STATE(754), 1, + STATE(708), 1, sym_alignas_qualifier, - STATE(763), 1, - sym__type_specifier, - STATE(785), 1, + STATE(716), 1, + sym_type_specifier, + STATE(773), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1166), 1, + STATE(1103), 1, sym__declaration_specifiers, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(685), 2, + STATE(651), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -80229,13 +74774,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(822), 5, + STATE(771), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(752), 7, + STATE(698), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -80264,7 +74809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [19109] = 22, + [19072] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -80279,26 +74824,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(57), 1, anon_sym_union, - ACTIONS(376), 1, + ACTIONS(131), 1, anon_sym_LBRACE, ACTIONS(1115), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1830), 1, + ACTIONS(1849), 1, sym_identifier, - STATE(362), 1, + STATE(118), 1, sym_compound_statement, - STATE(754), 1, + STATE(708), 1, sym_alignas_qualifier, - STATE(763), 1, - sym__type_specifier, - STATE(785), 1, + STATE(716), 1, + sym_type_specifier, + STATE(773), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1166), 1, + STATE(1103), 1, sym__declaration_specifiers, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(697), 2, + STATE(651), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -80306,13 +74851,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(822), 5, + STATE(771), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(752), 7, + STATE(698), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -80341,15 +74886,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [19208] = 22, + [19171] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(41), 1, - anon_sym_LBRACE, ACTIONS(51), 1, sym_primitive_type, ACTIONS(53), 1, @@ -80358,24 +74901,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(57), 1, anon_sym_union, + ACTIONS(432), 1, + anon_sym_LBRACE, ACTIONS(1115), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1830), 1, + ACTIONS(1849), 1, sym_identifier, - STATE(420), 1, + STATE(300), 1, sym_compound_statement, - STATE(754), 1, + STATE(708), 1, sym_alignas_qualifier, - STATE(763), 1, - sym__type_specifier, - STATE(785), 1, + STATE(716), 1, + sym_type_specifier, + STATE(773), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1166), 1, + STATE(1103), 1, sym__declaration_specifiers, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(703), 2, + STATE(651), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -80383,13 +74928,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(822), 5, + STATE(771), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(752), 7, + STATE(698), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -80418,7 +74963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [19307] = 22, + [19270] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -80433,26 +74978,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(57), 1, anon_sym_union, - ACTIONS(376), 1, + ACTIONS(131), 1, anon_sym_LBRACE, ACTIONS(1115), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1830), 1, + ACTIONS(1849), 1, sym_identifier, - STATE(347), 1, + STATE(137), 1, sym_compound_statement, - STATE(754), 1, + STATE(708), 1, sym_alignas_qualifier, - STATE(763), 1, - sym__type_specifier, - STATE(785), 1, + STATE(716), 1, + sym_type_specifier, + STATE(773), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1166), 1, + STATE(1103), 1, sym__declaration_specifiers, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(703), 2, + STATE(636), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -80460,13 +75005,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(822), 5, + STATE(771), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(752), 7, + STATE(698), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -80495,13 +75040,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [19406] = 22, + [19369] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, ACTIONS(37), 1, anon_sym___declspec, + ACTIONS(41), 1, + anon_sym_LBRACE, ACTIONS(51), 1, sym_primitive_type, ACTIONS(53), 1, @@ -80510,26 +75057,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(57), 1, anon_sym_union, - ACTIONS(432), 1, - anon_sym_LBRACE, ACTIONS(1115), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1830), 1, + ACTIONS(1849), 1, sym_identifier, - STATE(309), 1, + STATE(362), 1, sym_compound_statement, - STATE(754), 1, + STATE(708), 1, sym_alignas_qualifier, - STATE(763), 1, - sym__type_specifier, - STATE(785), 1, + STATE(716), 1, + sym_type_specifier, + STATE(773), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1166), 1, + STATE(1103), 1, sym__declaration_specifiers, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(702), 2, + STATE(651), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -80537,13 +75082,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(822), 5, + STATE(771), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(752), 7, + STATE(698), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -80572,7 +75117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [19505] = 22, + [19468] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -80591,22 +75136,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1115), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1830), 1, + ACTIONS(1849), 1, sym_identifier, - STATE(316), 1, + STATE(262), 1, sym_compound_statement, - STATE(754), 1, + STATE(708), 1, sym_alignas_qualifier, - STATE(763), 1, - sym__type_specifier, - STATE(785), 1, + STATE(716), 1, + sym_type_specifier, + STATE(773), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1166), 1, + STATE(1103), 1, sym__declaration_specifiers, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(703), 2, + STATE(647), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -80614,13 +75159,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(822), 5, + STATE(771), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(752), 7, + STATE(698), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -80649,7 +75194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [19604] = 22, + [19567] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -80664,26 +75209,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(57), 1, anon_sym_union, - ACTIONS(131), 1, + ACTIONS(376), 1, anon_sym_LBRACE, ACTIONS(1115), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1830), 1, + ACTIONS(1849), 1, sym_identifier, - STATE(130), 1, + STATE(276), 1, sym_compound_statement, - STATE(754), 1, + STATE(708), 1, sym_alignas_qualifier, - STATE(763), 1, - sym__type_specifier, - STATE(785), 1, + STATE(716), 1, + sym_type_specifier, + STATE(773), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1166), 1, + STATE(1103), 1, sym__declaration_specifiers, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(695), 2, + STATE(651), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -80691,13 +75236,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(822), 5, + STATE(771), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(752), 7, + STATE(698), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -80726,7 +75271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [19703] = 22, + [19666] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -80745,22 +75290,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1115), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1830), 1, + ACTIONS(1849), 1, sym_identifier, - STATE(416), 1, + STATE(368), 1, sym_compound_statement, - STATE(754), 1, + STATE(708), 1, sym_alignas_qualifier, - STATE(763), 1, - sym__type_specifier, - STATE(785), 1, + STATE(716), 1, + sym_type_specifier, + STATE(773), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1166), 1, + STATE(1103), 1, sym__declaration_specifiers, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(699), 2, + STATE(645), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -80768,13 +75313,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(822), 5, + STATE(771), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(752), 7, + STATE(698), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -80803,7 +75348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [19802] = 22, + [19765] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -80818,26 +75363,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(57), 1, anon_sym_union, - ACTIONS(131), 1, + ACTIONS(376), 1, anon_sym_LBRACE, ACTIONS(1115), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1830), 1, + ACTIONS(1849), 1, sym_identifier, - STATE(133), 1, + STATE(302), 1, sym_compound_statement, - STATE(754), 1, + STATE(708), 1, sym_alignas_qualifier, - STATE(763), 1, - sym__type_specifier, - STATE(785), 1, + STATE(716), 1, + sym_type_specifier, + STATE(773), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1166), 1, + STATE(1103), 1, sym__declaration_specifiers, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(703), 2, + STATE(651), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -80845,13 +75390,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(822), 5, + STATE(771), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(752), 7, + STATE(698), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -80880,7 +75425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [19901] = 23, + [19864] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -80895,41 +75440,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(57), 1, anon_sym_union, + ACTIONS(432), 1, + anon_sym_LBRACE, ACTIONS(1115), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1756), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2198), 1, + ACTIONS(1849), 1, sym_identifier, - ACTIONS(2200), 1, - anon_sym_RPAREN, - STATE(754), 1, + STATE(280), 1, + sym_compound_statement, + STATE(708), 1, sym_alignas_qualifier, - STATE(763), 1, - sym__type_specifier, - STATE(785), 1, + STATE(716), 1, + sym_type_specifier, + STATE(773), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1182), 1, + STATE(1103), 1, sym__declaration_specifiers, - STATE(1542), 1, - sym_variadic_parameter, - STATE(1670), 1, - sym_parameter_declaration, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, + STATE(637), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(822), 5, + STATE(771), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(752), 7, + STATE(698), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -80958,13 +75502,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [20002] = 22, + [19963] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, ACTIONS(37), 1, anon_sym___declspec, + ACTIONS(41), 1, + anon_sym_LBRACE, ACTIONS(51), 1, sym_primitive_type, ACTIONS(53), 1, @@ -80973,26 +75519,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(57), 1, anon_sym_union, - ACTIONS(376), 1, - anon_sym_LBRACE, ACTIONS(1115), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1830), 1, + ACTIONS(1849), 1, sym_identifier, - STATE(323), 1, + STATE(361), 1, sym_compound_statement, - STATE(754), 1, + STATE(708), 1, sym_alignas_qualifier, - STATE(763), 1, - sym__type_specifier, - STATE(785), 1, + STATE(716), 1, + sym_type_specifier, + STATE(773), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1166), 1, + STATE(1103), 1, sym__declaration_specifiers, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(703), 2, + STATE(651), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -81000,13 +75544,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(822), 5, + STATE(771), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(752), 7, + STATE(698), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -81035,7 +75579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [20101] = 22, + [20062] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -81050,40 +75594,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(57), 1, anon_sym_union, - ACTIONS(376), 1, - anon_sym_LBRACE, ACTIONS(1115), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1830), 1, + ACTIONS(1775), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2217), 1, sym_identifier, - STATE(320), 1, - sym_compound_statement, - STATE(754), 1, + ACTIONS(2219), 1, + anon_sym_RPAREN, + STATE(708), 1, sym_alignas_qualifier, - STATE(763), 1, - sym__type_specifier, - STATE(785), 1, + STATE(716), 1, + sym_type_specifier, + STATE(773), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1166), 1, + STATE(1139), 1, sym__declaration_specifiers, + STATE(1507), 1, + sym_variadic_parameter, + STATE(1530), 1, + sym_parameter_declaration, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(690), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(822), 5, + STATE(771), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(752), 7, + STATE(698), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -81112,15 +75657,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [20200] = 22, + [20163] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(41), 1, - anon_sym_LBRACE, ACTIONS(51), 1, sym_primitive_type, ACTIONS(53), 1, @@ -81129,24 +75672,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(57), 1, anon_sym_union, + ACTIONS(432), 1, + anon_sym_LBRACE, ACTIONS(1115), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1830), 1, + ACTIONS(1849), 1, sym_identifier, - STATE(412), 1, + STATE(278), 1, sym_compound_statement, - STATE(754), 1, + STATE(708), 1, sym_alignas_qualifier, - STATE(763), 1, - sym__type_specifier, - STATE(785), 1, + STATE(716), 1, + sym_type_specifier, + STATE(773), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1166), 1, + STATE(1103), 1, sym__declaration_specifiers, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(703), 2, + STATE(651), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -81154,13 +75699,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(822), 5, + STATE(771), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(752), 7, + STATE(698), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -81189,13 +75734,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [20299] = 22, + [20262] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, ACTIONS(37), 1, anon_sym___declspec, + ACTIONS(41), 1, + anon_sym_LBRACE, ACTIONS(51), 1, sym_primitive_type, ACTIONS(53), 1, @@ -81204,26 +75751,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(57), 1, anon_sym_union, - ACTIONS(432), 1, - anon_sym_LBRACE, ACTIONS(1115), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1830), 1, + ACTIONS(1849), 1, sym_identifier, - STATE(308), 1, + STATE(372), 1, sym_compound_statement, - STATE(754), 1, + STATE(708), 1, sym_alignas_qualifier, - STATE(763), 1, - sym__type_specifier, - STATE(785), 1, + STATE(716), 1, + sym_type_specifier, + STATE(773), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1166), 1, + STATE(1103), 1, sym__declaration_specifiers, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(692), 2, + STATE(639), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -81231,13 +75776,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(822), 5, + STATE(771), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(752), 7, + STATE(698), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -81266,15 +75811,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [20398] = 22, + [20361] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(41), 1, - anon_sym_LBRACE, ACTIONS(51), 1, sym_primitive_type, ACTIONS(53), 1, @@ -81283,24 +75826,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(57), 1, anon_sym_union, + ACTIONS(376), 1, + anon_sym_LBRACE, ACTIONS(1115), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1830), 1, + ACTIONS(1849), 1, sym_identifier, - STATE(421), 1, + STATE(301), 1, sym_compound_statement, - STATE(754), 1, + STATE(708), 1, sym_alignas_qualifier, - STATE(763), 1, - sym__type_specifier, - STATE(785), 1, + STATE(716), 1, + sym_type_specifier, + STATE(773), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1166), 1, + STATE(1103), 1, sym__declaration_specifiers, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(689), 2, + STATE(641), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -81308,13 +75853,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(822), 5, + STATE(771), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(752), 7, + STATE(698), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -81343,7 +75888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [20497] = 22, + [20460] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -81358,26 +75903,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(57), 1, anon_sym_union, - ACTIONS(432), 1, + ACTIONS(376), 1, anon_sym_LBRACE, ACTIONS(1115), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1830), 1, + ACTIONS(1849), 1, sym_identifier, - STATE(328), 1, + STATE(267), 1, sym_compound_statement, - STATE(754), 1, + STATE(708), 1, sym_alignas_qualifier, - STATE(763), 1, - sym__type_specifier, - STATE(785), 1, + STATE(716), 1, + sym_type_specifier, + STATE(773), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1166), 1, + STATE(1103), 1, sym__declaration_specifiers, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(703), 2, + STATE(643), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -81385,13 +75930,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(822), 5, + STATE(771), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(752), 7, + STATE(698), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -81420,53 +75965,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [20596] = 21, + [20559] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2202), 1, + ACTIONS(2221), 1, sym_identifier, - ACTIONS(2211), 1, + ACTIONS(2230), 1, anon_sym___attribute__, - ACTIONS(2214), 1, + ACTIONS(2233), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2217), 1, + ACTIONS(2236), 1, anon_sym___declspec, - ACTIONS(2220), 1, + ACTIONS(2239), 1, anon_sym_LBRACE, - ACTIONS(2228), 1, + ACTIONS(2247), 1, sym_primitive_type, - ACTIONS(2231), 1, + ACTIONS(2250), 1, anon_sym_enum, - ACTIONS(2234), 1, + ACTIONS(2253), 1, anon_sym_struct, - ACTIONS(2237), 1, + ACTIONS(2256), 1, anon_sym_union, - STATE(754), 1, + STATE(708), 1, sym_alignas_qualifier, - STATE(763), 1, - sym__type_specifier, - STATE(785), 1, + STATE(716), 1, + sym_type_specifier, + STATE(773), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1166), 1, + STATE(1103), 1, sym__declaration_specifiers, - ACTIONS(2225), 2, + ACTIONS(2244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(703), 2, + STATE(651), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, - ACTIONS(2222), 4, + ACTIONS(2241), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(822), 5, + STATE(771), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(752), 7, + STATE(698), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -81474,7 +76019,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(2205), 9, + ACTIONS(2224), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -81484,7 +76029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(2208), 10, + ACTIONS(2227), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -81495,7 +76040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [20692] = 21, + [20655] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -81512,22 +76057,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1115), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1756), 1, + ACTIONS(1775), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1830), 1, + ACTIONS(1849), 1, sym_identifier, - STATE(754), 1, + STATE(708), 1, sym_alignas_qualifier, - STATE(763), 1, - sym__type_specifier, - STATE(785), 1, + STATE(716), 1, + sym_type_specifier, + STATE(773), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1182), 1, + STATE(1139), 1, sym__declaration_specifiers, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1703), 2, + STATE(1720), 2, sym_variadic_parameter, sym_parameter_declaration, ACTIONS(43), 4, @@ -81535,13 +76080,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(822), 5, + STATE(771), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(752), 7, + STATE(698), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -81570,7 +76115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [20788] = 22, + [20751] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -81587,22 +76132,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1115), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1756), 1, + ACTIONS(1775), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2240), 1, + ACTIONS(2259), 1, sym_identifier, - STATE(754), 1, + STATE(708), 1, sym_alignas_qualifier, - STATE(763), 1, - sym__type_specifier, - STATE(785), 1, + STATE(716), 1, + sym_type_specifier, + STATE(773), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1182), 1, + STATE(1139), 1, sym__declaration_specifiers, - STATE(1703), 1, - sym_parameter_declaration, - STATE(1748), 1, + STATE(1691), 1, sym_variadic_parameter, + STATE(1720), 1, + sym_parameter_declaration, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, @@ -81611,13 +76156,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(822), 5, + STATE(771), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(752), 7, + STATE(698), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -81646,54 +76191,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [20886] = 8, + [20849] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, - anon_sym_static, - STATE(751), 1, - sym_alignas_qualifier, - ACTIONS(2252), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(706), 2, - sym_type_qualifier, - aux_sym_array_declarator_repeat1, - ACTIONS(2246), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(2242), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - ACTIONS(2244), 19, + ACTIONS(2263), 21, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, sym_number_literal, @@ -81707,20 +76216,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [20955] = 6, + ACTIONS(2261), 30, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_if, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_while, + anon_sym_do, + anon_sym_for, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_goto, + anon_sym___try, + anon_sym___leave, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + [20908] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2255), 1, - sym_identifier, - STATE(670), 1, - sym_string_literal, - ACTIONS(97), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2259), 15, + ACTIONS(2261), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -81736,10 +76267,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_EQ, anon_sym_DOT, - ACTIONS(2257), 29, + sym_identifier, + ACTIONS(2263), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -81748,6 +76284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -81766,10 +76303,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [21020] = 3, + [20967] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1688), 21, + ACTIONS(1700), 21, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -81791,7 +76328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1686), 30, + ACTIONS(1698), 30, anon_sym_DASH, anon_sym_PLUS, anon_sym_if, @@ -81822,10 +76359,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - [21079] = 3, + [21026] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2263), 9, + ACTIONS(2267), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -81835,7 +76372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - ACTIONS(2261), 42, + ACTIONS(2265), 42, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -81878,11 +76415,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, sym_identifier, - [21138] = 3, + [21085] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2265), 17, - aux_sym_preproc_elif_token1, + ACTIONS(2276), 1, + anon_sym_static, + STATE(700), 1, + sym_alignas_qualifier, + ACTIONS(2279), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(658), 2, + sym_type_qualifier, + aux_sym_array_declarator_repeat1, + ACTIONS(2273), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(2269), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + ACTIONS(2271), 19, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_RBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [21154] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2282), 1, + sym_identifier, + STATE(616), 1, + sym_string_literal, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2286), 15, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -81898,15 +76505,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_EQ, anon_sym_DOT, - sym_identifier, - ACTIONS(2267), 34, + ACTIONS(2284), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -81915,7 +76517,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -81934,66 +76535,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [21197] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1684), 21, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1682), 30, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym___try, - anon_sym___leave, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - [21256] = 3, + [21219] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2267), 21, + ACTIONS(1704), 21, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -82015,7 +76560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2265), 30, + ACTIONS(1702), 30, anon_sym_DASH, anon_sym_PLUS, anon_sym_if, @@ -82046,285 +76591,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - [21315] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2269), 17, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_DOT, - sym_identifier, - ACTIONS(2271), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [21373] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2273), 17, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_DOT, - sym_identifier, - ACTIONS(2275), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [21431] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2277), 17, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_DOT, - sym_identifier, - ACTIONS(2279), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [21489] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2281), 17, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_DOT, - sym_identifier, - ACTIONS(2283), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [21547] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2285), 17, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_DOT, - sym_identifier, - ACTIONS(2287), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [21605] = 3, + [21278] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2289), 17, + ACTIONS(2288), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -82342,7 +76612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2291), 33, + ACTIONS(2290), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -82376,10 +76646,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [21663] = 3, + [21336] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2293), 17, + ACTIONS(2292), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -82397,7 +76667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2295), 33, + ACTIONS(2294), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -82431,10 +76701,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [21721] = 3, + [21394] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2297), 17, + ACTIONS(2296), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -82452,7 +76722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2299), 33, + ACTIONS(2298), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -82486,10 +76756,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [21779] = 3, + [21452] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2301), 17, + ACTIONS(2300), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -82507,7 +76777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2303), 33, + ACTIONS(2302), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -82541,10 +76811,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [21837] = 3, + [21510] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2305), 17, + ACTIONS(2304), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -82562,7 +76832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2307), 33, + ACTIONS(2306), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -82596,10 +76866,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [21895] = 3, + [21568] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2309), 17, + ACTIONS(2308), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -82617,7 +76887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2311), 33, + ACTIONS(2310), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -82651,10 +76921,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [21953] = 3, + [21626] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2313), 17, + ACTIONS(2312), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -82672,7 +76942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2315), 33, + ACTIONS(2314), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -82706,10 +76976,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [22011] = 3, + [21684] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2317), 17, + ACTIONS(1724), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -82727,7 +76997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2319), 33, + ACTIONS(1718), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -82761,10 +77031,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [22069] = 3, + [21742] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2321), 17, + ACTIONS(2316), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -82782,7 +77052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2323), 33, + ACTIONS(2318), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -82816,10 +77086,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [22127] = 3, + [21800] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2325), 17, + ACTIONS(2320), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -82837,7 +77107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2327), 33, + ACTIONS(2322), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -82871,10 +77141,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [22185] = 3, + [21858] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2329), 17, + ACTIONS(2324), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -82892,7 +77162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2331), 33, + ACTIONS(2326), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -82926,22 +77196,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [22243] = 8, + [21916] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, - anon_sym_LPAREN2, - ACTIONS(2339), 1, - anon_sym_LBRACK, - STATE(728), 1, - sym_argument_list, - ACTIONS(2341), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2333), 16, + ACTIONS(1724), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -82957,14 +77215,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute__, anon_sym_EQ, + anon_sym_DOT, sym_identifier, - ACTIONS(2335), 26, + ACTIONS(1718), 33, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -82973,6 +77234,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -82985,89 +77248,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [22310] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(51), 1, - sym_primitive_type, - ACTIONS(53), 1, - anon_sym_enum, - ACTIONS(55), 1, - anon_sym_struct, - ACTIONS(57), 1, - anon_sym_union, - ACTIONS(1115), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1830), 1, - sym_identifier, - STATE(754), 1, - sym_alignas_qualifier, - STATE(763), 1, - sym__type_specifier, - STATE(785), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1267), 1, - sym__declaration_specifiers, - ACTIONS(49), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(822), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(752), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [22399] = 7, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [21974] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, - anon_sym_LPAREN2, - ACTIONS(2339), 1, - anon_sym_LBRACK, - STATE(728), 1, - sym_argument_list, - ACTIONS(2343), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2345), 16, + ACTIONS(2328), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -83083,14 +77270,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute__, anon_sym_EQ, + anon_sym_DOT, sym_identifier, - ACTIONS(2347), 28, + ACTIONS(2330), 33, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -83099,6 +77289,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -83113,18 +77305,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [22464] = 5, + anon_sym_DASH_GT, + [22032] = 3, ACTIONS(3), 1, sym_comment, - STATE(670), 1, - sym_string_literal, - ACTIONS(97), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2259), 15, + ACTIONS(2332), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -83138,10 +77323,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, + anon_sym_DOT, sym_identifier, - ACTIONS(2257), 28, + ACTIONS(2334), 33, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -83153,7 +77342,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -83167,94 +77360,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, anon_sym_DASH_GT, - [22525] = 19, + [22090] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(51), 1, - sym_primitive_type, - ACTIONS(53), 1, - anon_sym_enum, - ACTIONS(55), 1, - anon_sym_struct, - ACTIONS(57), 1, - anon_sym_union, - ACTIONS(1115), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1830), 1, - sym_identifier, - STATE(754), 1, - sym_alignas_qualifier, - STATE(763), 1, - sym__type_specifier, - STATE(785), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1257), 1, - sym__declaration_specifiers, - ACTIONS(49), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(822), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(752), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [22614] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2337), 1, - anon_sym_LPAREN2, - ACTIONS(2339), 1, - anon_sym_LBRACK, - STATE(728), 1, - sym_argument_list, - ACTIONS(2341), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2349), 16, + ACTIONS(2336), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -83270,14 +77380,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute__, anon_sym_EQ, + anon_sym_DOT, sym_identifier, - ACTIONS(2351), 26, + ACTIONS(2338), 33, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -83286,162 +77399,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [22681] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(51), 1, - sym_primitive_type, - ACTIONS(53), 1, - anon_sym_enum, - ACTIONS(55), 1, - anon_sym_struct, - ACTIONS(57), 1, - anon_sym_union, - ACTIONS(1115), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1830), 1, - sym_identifier, - STATE(754), 1, - sym_alignas_qualifier, - STATE(763), 1, - sym__type_specifier, - STATE(785), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1278), 1, - sym__declaration_specifiers, - ACTIONS(49), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(822), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(752), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [22770] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(51), 1, - sym_primitive_type, - ACTIONS(53), 1, - anon_sym_enum, - ACTIONS(55), 1, - anon_sym_struct, - ACTIONS(57), 1, - anon_sym_union, - ACTIONS(1115), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1830), 1, - sym_identifier, - STATE(754), 1, - sym_alignas_qualifier, - STATE(763), 1, - sym__type_specifier, - STATE(785), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1277), 1, - sym__declaration_specifiers, - ACTIONS(49), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(822), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(752), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [22859] = 3, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [22148] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2353), 16, + ACTIONS(2340), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -83457,8 +77435,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute__, anon_sym_EQ, + anon_sym_DOT, sym_identifier, - ACTIONS(2355), 33, + ACTIONS(2342), 33, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -83473,9 +77453,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -83490,12 +77470,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, anon_sym_DASH_GT, - [22916] = 3, + [22206] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2357), 16, + ACTIONS(2344), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -83511,8 +77490,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute__, anon_sym_EQ, + anon_sym_DOT, sym_identifier, - ACTIONS(2359), 33, + ACTIONS(2346), 33, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -83527,9 +77508,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -83544,24 +77525,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, anon_sym_DASH_GT, - [22973] = 8, + [22264] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, - anon_sym_LPAREN2, - ACTIONS(2339), 1, - anon_sym_LBRACK, - STATE(728), 1, - sym_argument_list, - ACTIONS(2341), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2361), 16, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(51), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_enum, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(1115), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1849), 1, + sym_identifier, + STATE(708), 1, + sym_alignas_qualifier, + STATE(716), 1, + sym_type_specifier, + STATE(773), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1228), 1, + sym__declaration_specifiers, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(771), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(698), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [22353] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(616), 1, + sym_string_literal, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2286), 15, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -83575,25 +77621,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, anon_sym_EQ, sym_identifier, - ACTIONS(2363), 26, + ACTIONS(2284), 28, anon_sym_COMMA, - anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -83605,22 +77648,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [23040] = 8, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [22414] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - STATE(728), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2365), 16, + ACTIONS(2348), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -83637,7 +77684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_EQ, sym_identifier, - ACTIONS(2367), 26, + ACTIONS(2350), 26, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -83664,10 +77711,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [23107] = 3, + [22481] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2369), 16, + ACTIONS(2360), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -83684,7 +77731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_EQ, sym_identifier, - ACTIONS(2371), 33, + ACTIONS(2362), 33, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -83718,10 +77765,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [23164] = 3, + [22538] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2373), 16, + ACTIONS(2364), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -83738,7 +77785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_EQ, sym_identifier, - ACTIONS(2375), 33, + ACTIONS(2366), 33, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -83772,222 +77819,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [23221] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(51), 1, - sym_primitive_type, - ACTIONS(53), 1, - anon_sym_enum, - ACTIONS(55), 1, - anon_sym_struct, - ACTIONS(57), 1, - anon_sym_union, - ACTIONS(1115), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1830), 1, - sym_identifier, - STATE(754), 1, - sym_alignas_qualifier, - STATE(763), 1, - sym__type_specifier, - STATE(785), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1242), 1, - sym__declaration_specifiers, - ACTIONS(49), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(822), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(752), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [23310] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(51), 1, - sym_primitive_type, - ACTIONS(53), 1, - anon_sym_enum, - ACTIONS(55), 1, - anon_sym_struct, - ACTIONS(57), 1, - anon_sym_union, - ACTIONS(1115), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1830), 1, - sym_identifier, - STATE(754), 1, - sym_alignas_qualifier, - STATE(763), 1, - sym__type_specifier, - STATE(785), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1280), 1, - sym__declaration_specifiers, - ACTIONS(49), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(822), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(752), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [23399] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(51), 1, - sym_primitive_type, - ACTIONS(53), 1, - anon_sym_enum, - ACTIONS(55), 1, - anon_sym_struct, - ACTIONS(57), 1, - anon_sym_union, - ACTIONS(1115), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1830), 1, - sym_identifier, - STATE(754), 1, - sym_alignas_qualifier, - STATE(763), 1, - sym__type_specifier, - STATE(785), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1238), 1, - sym__declaration_specifiers, - ACTIONS(49), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(822), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(752), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [23488] = 7, + [22595] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2377), 1, + ACTIONS(2368), 1, anon_sym_EQ, - STATE(670), 1, + STATE(616), 1, sym_string_literal, ACTIONS(97), 5, anon_sym_L_DQUOTE, @@ -83995,7 +77832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2379), 10, + ACTIONS(2370), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -84006,7 +77843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1708), 14, + ACTIONS(1724), 14, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -84021,7 +77858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, sym_identifier, - ACTIONS(1702), 18, + ACTIONS(1718), 18, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -84040,22 +77877,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [23553] = 8, + [22660] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - STATE(728), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2381), 16, + ACTIONS(2372), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -84072,7 +77909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_EQ, sym_identifier, - ACTIONS(2383), 26, + ACTIONS(2374), 26, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -84099,101 +77936,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [23620] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(51), 1, - sym_primitive_type, - ACTIONS(53), 1, - anon_sym_enum, - ACTIONS(55), 1, - anon_sym_struct, - ACTIONS(57), 1, - anon_sym_union, - ACTIONS(1115), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1830), 1, - sym_identifier, - STATE(754), 1, - sym_alignas_qualifier, - STATE(763), 1, - sym__type_specifier, - STATE(785), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1281), 1, - sym__declaration_specifiers, - ACTIONS(49), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(822), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(752), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [23709] = 7, + [22727] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, - anon_sym_EQ, - STATE(670), 1, - sym_string_literal, - ACTIONS(97), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1721), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1708), 12, + ACTIONS(2352), 1, + anon_sym_LPAREN2, + ACTIONS(2354), 1, + anon_sym_LBRACK, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2376), 16, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -84206,10 +77965,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1702), 19, + anon_sym___attribute__, + anon_sym_EQ, + sym_identifier, + ACTIONS(2378), 26, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -84217,122 +77982,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COLON, anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [23773] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2387), 19, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_RBRACK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2385), 29, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym___extension__, - anon_sym_static, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - [23829] = 3, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [22794] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2391), 19, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_RBRACK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2389), 29, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym___extension__, - anon_sym_static, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, + ACTIONS(2352), 1, + anon_sym_LPAREN2, + ACTIONS(2354), 1, + anon_sym_LBRACK, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2380), 16, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym_EQ, sym_identifier, - [23885] = 18, + ACTIONS(2382), 26, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [22861] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -84349,14 +78071,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1115), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1830), 1, + ACTIONS(1849), 1, sym_identifier, - STATE(754), 1, + STATE(708), 1, sym_alignas_qualifier, - STATE(767), 1, - sym__type_specifier, - STATE(785), 1, + STATE(716), 1, + sym_type_specifier, + STATE(773), 1, aux_sym_sized_type_specifier_repeat1, + STATE(1225), 1, + sym__declaration_specifiers, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, @@ -84365,13 +78089,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(822), 5, + STATE(771), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(674), 7, + STATE(698), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -84400,478 +78124,223 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [23971] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(2397), 1, - anon_sym_LBRACE, - STATE(770), 1, - sym_field_declaration_list, - STATE(820), 1, - sym_attribute_specifier, - ACTIONS(2395), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2393), 36, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [24034] = 3, + [22950] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2391), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(2384), 16, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2389), 40, - anon_sym___extension__, - anon_sym_extern, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, + anon_sym_EQ, sym_identifier, - [24089] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(2397), 1, - anon_sym_LBRACE, - STATE(768), 1, - sym_field_declaration_list, - STATE(828), 1, - sym_attribute_specifier, - ACTIONS(2401), 7, + ACTIONS(2386), 33, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2399), 36, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [24152] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(2397), 1, - anon_sym_LBRACE, - STATE(772), 1, - sym_field_declaration_list, - STATE(815), 1, - sym_attribute_specifier, - ACTIONS(2405), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2403), 36, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [24215] = 3, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [23007] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2409), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2352), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2407), 40, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + ACTIONS(2354), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [24270] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(2397), 1, - anon_sym_LBRACE, - STATE(782), 1, - sym_field_declaration_list, - STATE(792), 1, - sym_attribute_specifier, - ACTIONS(2413), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + STATE(677), 1, + sym_argument_list, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2388), 16, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2411), 36, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym_EQ, sym_identifier, - [24333] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2387), 7, + ACTIONS(2390), 28, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, anon_sym_COLON, - ACTIONS(2385), 40, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [24388] = 7, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [23072] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(2397), 1, - anon_sym_LBRACE, - STATE(769), 1, - sym_field_declaration_list, - STATE(801), 1, - sym_attribute_specifier, - ACTIONS(2417), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(2392), 16, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2415), 36, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym_EQ, sym_identifier, - [24451] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1688), 6, + ACTIONS(2394), 33, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(1686), 40, - anon_sym___extension__, - anon_sym_extern, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [23129] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, anon_sym___attribute__, + ACTIONS(37), 1, anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + ACTIONS(51), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_enum, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(1115), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1849), 1, + sym_identifier, + STATE(708), 1, + sym_alignas_qualifier, + STATE(716), 1, + sym_type_specifier, + STATE(773), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1211), 1, + sym__declaration_specifiers, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + STATE(771), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(698), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -84880,40 +78349,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [24505] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1684), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(1682), 40, - anon_sym___extension__, + ACTIONS(45), 10, anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -84923,42 +78360,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [24559] = 11, + [23218] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, ACTIONS(37), 1, anon_sym___declspec, + ACTIONS(51), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_enum, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, ACTIONS(1115), 1, anon_sym_LBRACK_LBRACK, - STATE(754), 1, + ACTIONS(1849), 1, + sym_identifier, + STATE(708), 1, sym_alignas_qualifier, + STATE(716), 1, + sym_type_specifier, + STATE(773), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1229), 1, + sym__declaration_specifiers, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2421), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - STATE(765), 7, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(771), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(698), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -84976,16 +78419,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(2419), 9, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - sym_identifier, ACTIONS(45), 10, anon_sym_extern, anon_sym_static, @@ -84997,27 +78430,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [24629] = 11, + [23307] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, ACTIONS(37), 1, anon_sym___declspec, + ACTIONS(51), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_enum, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, ACTIONS(1115), 1, anon_sym_LBRACK_LBRACK, - STATE(754), 1, + ACTIONS(1849), 1, + sym_identifier, + STATE(708), 1, sym_alignas_qualifier, + STATE(716), 1, + sym_type_specifier, + STATE(773), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1226), 1, + sym__declaration_specifiers, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2425), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - STATE(674), 7, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(771), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(698), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -85035,16 +78489,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(2423), 9, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - sym_identifier, ACTIONS(45), 10, anon_sym_extern, anon_sym_static, @@ -85056,27 +78500,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [24699] = 11, + [23396] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, ACTIONS(37), 1, anon_sym___declspec, + ACTIONS(51), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_enum, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, ACTIONS(1115), 1, anon_sym_LBRACK_LBRACK, - STATE(754), 1, + ACTIONS(1849), 1, + sym_identifier, + STATE(708), 1, sym_alignas_qualifier, + STATE(716), 1, + sym_type_specifier, + STATE(773), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1218), 1, + sym__declaration_specifiers, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2429), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - STATE(674), 7, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(771), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(698), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -85094,16 +78559,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(2427), 9, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - sym_identifier, ACTIONS(45), 10, anon_sym_extern, anon_sym_static, @@ -85115,78 +78570,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [24769] = 3, + [23485] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2433), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2352), 1, anon_sym_LPAREN2, + ACTIONS(2354), 1, + anon_sym_LBRACK, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2396), 16, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(2431), 40, - anon_sym___extension__, - anon_sym_extern, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, + anon_sym_EQ, sym_identifier, - [24823] = 11, + ACTIONS(2398), 26, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [23552] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, ACTIONS(37), 1, anon_sym___declspec, + ACTIONS(51), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_enum, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, ACTIONS(1115), 1, anon_sym_LBRACK_LBRACK, - STATE(754), 1, + ACTIONS(1849), 1, + sym_identifier, + STATE(708), 1, sym_alignas_qualifier, + STATE(716), 1, + sym_type_specifier, + STATE(773), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1227), 1, + sym__declaration_specifiers, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2437), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - STATE(764), 7, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(771), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(698), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -85204,16 +78688,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(2435), 9, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - sym_identifier, ACTIONS(45), 10, anon_sym_extern, anon_sym_static, @@ -85225,46 +78699,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [24893] = 5, + [23641] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - STATE(808), 1, - sym_attribute_specifier, - ACTIONS(2441), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2439), 36, - anon_sym___extension__, - anon_sym_extern, + ACTIONS(37), 1, anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + ACTIONS(51), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_enum, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(1115), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1849), 1, + sym_identifier, + STATE(708), 1, + sym_alignas_qualifier, + STATE(716), 1, + sym_type_specifier, + STATE(773), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1219), 1, + sym__declaration_specifiers, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + STATE(771), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(698), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -85273,41 +78758,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [24950] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(816), 1, - sym_attribute_specifier, - ACTIONS(2445), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2443), 36, - anon_sym___extension__, + ACTIONS(45), 10, anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -85317,49 +78769,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [25007] = 5, + [23730] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - STATE(821), 1, - sym_attribute_specifier, - ACTIONS(2449), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2447), 36, - anon_sym___extension__, - anon_sym_extern, + ACTIONS(37), 1, anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + ACTIONS(51), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_enum, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(1115), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1849), 1, + sym_identifier, + STATE(708), 1, + sym_alignas_qualifier, + STATE(715), 1, + sym_type_specifier, + STATE(773), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, + STATE(771), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(626), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -85369,6 +78837,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + [23816] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2402), 19, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_RBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2400), 29, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_static, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -85379,103 +78875,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, sym_identifier, - [25064] = 8, + [23872] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, - anon_sym_EQ, - ACTIONS(1719), 1, - anon_sym_COLON, - STATE(670), 1, - sym_string_literal, - ACTIONS(97), 5, + ACTIONS(2406), 19, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_RBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1721), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1708), 12, + ACTIONS(2404), 29, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1702), 15, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [25127] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(834), 1, - sym_attribute_specifier, - ACTIONS(2453), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2451), 36, anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -85486,16 +78928,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, sym_identifier, - [25184] = 8, + [23928] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 1, + ACTIONS(1733), 1, anon_sym_EQ, - ACTIONS(1740), 1, - anon_sym_COLON, - STATE(670), 1, + STATE(616), 1, sym_string_literal, ACTIONS(97), 5, anon_sym_L_DQUOTE, @@ -85503,7 +78956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1721), 10, + ACTIONS(1737), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -85514,7 +78967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1708), 12, + ACTIONS(1724), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -85527,8 +78980,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1702), 15, + ACTIONS(1718), 19, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -85537,20 +78991,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [25247] = 5, + [23992] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - STATE(823), 1, + ACTIONS(2412), 1, + anon_sym_LBRACE, + STATE(726), 1, + sym_field_declaration_list, + STATE(779), 1, sym_attribute_specifier, - ACTIONS(2457), 7, + ACTIONS(2410), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85558,7 +79019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2455), 36, + ACTIONS(2408), 36, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -85595,14 +79056,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [25304] = 5, + [24055] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - STATE(805), 1, + ACTIONS(2412), 1, + anon_sym_LBRACE, + STATE(723), 1, + sym_field_declaration_list, + STATE(741), 1, sym_attribute_specifier, - ACTIONS(2461), 7, + ACTIONS(2416), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85610,7 +79075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2459), 36, + ACTIONS(2414), 36, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -85647,25 +79112,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [25361] = 5, + [24118] = 3, ACTIONS(3), 1, sym_comment, - STATE(776), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2467), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2465), 7, + ACTIONS(2420), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2463), 33, + anon_sym_LBRACE, + ACTIONS(2418), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -85677,164 +79135,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [25418] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1717), 1, - anon_sym_EQ, - ACTIONS(2470), 1, - anon_sym_COLON, - STATE(670), 1, - sym_string_literal, - ACTIONS(97), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1721), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1708), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1702), 15, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [25481] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1717), 1, - anon_sym_EQ, - ACTIONS(1726), 1, - anon_sym_COLON, - STATE(670), 1, - sym_string_literal, - ACTIONS(97), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1721), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1708), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1702), 15, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [25544] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(817), 1, - sym_attribute_specifier, - ACTIONS(2474), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2472), 36, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -85860,125 +79160,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [25601] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1717), 1, - anon_sym_EQ, - ACTIONS(1742), 1, - anon_sym_COLON, - STATE(670), 1, - sym_string_literal, - ACTIONS(97), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1721), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1708), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1702), 15, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [25664] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1717), 1, - anon_sym_EQ, - ACTIONS(1744), 1, - anon_sym_COLON, - STATE(670), 1, - sym_string_literal, - ACTIONS(97), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1721), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1708), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1702), 15, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [25727] = 5, + [24173] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - STATE(830), 1, + ACTIONS(2412), 1, + anon_sym_LBRACE, + STATE(724), 1, + sym_field_declaration_list, + STATE(735), 1, sym_attribute_specifier, - ACTIONS(2478), 7, + ACTIONS(2424), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85986,7 +79183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2476), 36, + ACTIONS(2422), 36, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -86023,14 +79220,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [25784] = 5, + [24236] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - STATE(800), 1, + ACTIONS(2412), 1, + anon_sym_LBRACE, + STATE(717), 1, + sym_field_declaration_list, + STATE(762), 1, sym_attribute_specifier, - ACTIONS(2482), 7, + ACTIONS(2428), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -86038,7 +79239,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2480), 36, + ACTIONS(2426), 36, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -86075,14 +79276,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [25841] = 5, + [24299] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(814), 1, - sym_attribute_specifier, - ACTIONS(2486), 7, + ACTIONS(2402), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -86090,9 +79287,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2484), 36, + ACTIONS(2400), 40, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -86126,29 +79324,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [25898] = 7, + [24354] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2488), 1, - sym_identifier, - ACTIONS(2497), 1, - sym_primitive_type, - STATE(832), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2495), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2491), 6, + ACTIONS(2406), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2493), 31, + anon_sym_COLON, + ACTIONS(2404), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -86160,6 +79351,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -86170,93 +79365,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - [25958] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2337), 1, - anon_sym_LPAREN2, - ACTIONS(2339), 1, - anon_sym_LBRACK, - ACTIONS(2507), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2509), 1, - anon_sym_AMP_AMP, - ACTIONS(2511), 1, - anon_sym_PIPE, - ACTIONS(2513), 1, - anon_sym_CARET, - ACTIONS(2515), 1, - anon_sym_AMP, - ACTIONS(2525), 1, - anon_sym_QMARK, - STATE(728), 1, - sym_argument_list, - ACTIONS(2341), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2501), 2, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - ACTIONS(2503), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2517), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2519), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2521), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2523), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2505), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2499), 16, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [26044] = 5, + [24409] = 7, ACTIONS(3), 1, sym_comment, - STATE(776), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2531), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2529), 7, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(2412), 1, + anon_sym_LBRACE, + STATE(730), 1, + sym_field_declaration_list, + STATE(737), 1, + sym_attribute_specifier, + ACTIONS(2432), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -86264,10 +79399,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2527), 32, + ACTIONS(2430), 36, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -86276,6 +79410,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -86296,19 +79434,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, + sym_primitive_type, sym_identifier, - [26100] = 3, + [24472] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2535), 7, + ACTIONS(1700), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2533), 37, + ACTIONS(1698), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -86345,81 +79483,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [26152] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2337), 1, - anon_sym_LPAREN2, - ACTIONS(2339), 1, - anon_sym_LBRACK, - ACTIONS(2513), 1, - anon_sym_CARET, - ACTIONS(2515), 1, - anon_sym_AMP, - STATE(728), 1, - sym_argument_list, - ACTIONS(2341), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2503), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2517), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2519), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2521), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2523), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2333), 3, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(2505), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2335), 19, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - sym_identifier, - [26230] = 3, + [24526] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2539), 7, + ACTIONS(1704), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2537), 37, + ACTIONS(1702), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -86456,23 +79534,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [26282] = 3, + [24580] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2543), 7, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(1115), 1, + anon_sym_LBRACK_LBRACK, + STATE(708), 1, + sym_alignas_qualifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2436), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2541), 37, + STATE(626), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(2434), 9, anon_sym___based, anon_sym___cdecl, anon_sym___clrcall, @@ -86480,11 +79584,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, + sym_identifier, + ACTIONS(45), 10, + anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -86494,6 +79597,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + [24650] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(1115), 1, + anon_sym_LBRACK_LBRACK, + STATE(708), 1, + sym_alignas_qualifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2440), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + STATE(626), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -86502,22 +79635,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, + ACTIONS(2438), 9, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, sym_identifier, - [26334] = 3, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [24720] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2547), 7, + ACTIONS(2444), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2545), 37, + ACTIONS(2442), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -86554,31 +79703,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [26386] = 6, + [24774] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2549), 1, - anon_sym_LPAREN2, - STATE(787), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(1715), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(1713), 6, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(1115), 1, + anon_sym_LBRACK_LBRACK, + STATE(708), 1, + sym_alignas_qualifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2448), 5, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(1700), 32, + STATE(713), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(2446), 9, anon_sym___based, anon_sym___cdecl, anon_sym___clrcall, @@ -86587,6 +79754,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___thiscall, anon_sym___vectorcall, anon_sym_LBRACK, + sym_identifier, + ACTIONS(45), 10, + anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -86596,6 +79766,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + [24844] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(1115), 1, + anon_sym_LBRACK_LBRACK, + STATE(708), 1, + sym_alignas_qualifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2452), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + STATE(712), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -86604,84 +79804,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - [26444] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2337), 1, - anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2450), 9, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_LBRACK, - ACTIONS(2509), 1, - anon_sym_AMP_AMP, - ACTIONS(2511), 1, - anon_sym_PIPE, - ACTIONS(2513), 1, - anon_sym_CARET, - ACTIONS(2515), 1, - anon_sym_AMP, - STATE(728), 1, - sym_argument_list, - ACTIONS(2333), 2, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - ACTIONS(2341), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2503), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2517), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2519), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2521), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2523), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2505), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2335), 18, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, sym_identifier, - [26526] = 5, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [24914] = 5, ACTIONS(3), 1, sym_comment, - STATE(776), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2531), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2554), 7, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(740), 1, + sym_attribute_specifier, + ACTIONS(2456), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -86689,10 +79840,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2552), 32, + ACTIONS(2454), 36, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -86701,6 +79851,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -86721,18 +79875,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, + sym_primitive_type, sym_identifier, - [26582] = 5, + [24971] = 5, ACTIONS(3), 1, sym_comment, - STATE(776), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2531), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2558), 7, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(738), 1, + sym_attribute_specifier, + ACTIONS(2460), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -86740,10 +79892,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2556), 32, + ACTIONS(2458), 36, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -86752,6 +79903,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -86772,18 +79927,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, + sym_primitive_type, sym_identifier, - [26638] = 5, + [25028] = 5, ACTIONS(3), 1, sym_comment, - STATE(776), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2531), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2562), 7, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(742), 1, + sym_attribute_specifier, + ACTIONS(2464), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -86791,10 +79944,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2560), 32, + ACTIONS(2462), 36, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -86803,6 +79955,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -86823,59 +79979,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, + sym_primitive_type, sym_identifier, - [26694] = 17, + [25085] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, - anon_sym_LPAREN2, - ACTIONS(2339), 1, - anon_sym_LBRACK, - ACTIONS(2511), 1, - anon_sym_PIPE, - ACTIONS(2513), 1, - anon_sym_CARET, - ACTIONS(2515), 1, - anon_sym_AMP, - STATE(728), 1, - sym_argument_list, - ACTIONS(2333), 2, - aux_sym_preproc_elif_token1, + ACTIONS(1733), 1, anon_sym_EQ, - ACTIONS(2341), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2503), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2517), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2519), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2521), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2523), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2505), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2335), 19, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_QMARK, + ACTIONS(1760), 1, + anon_sym_COLON, + STATE(616), 1, + sym_string_literal, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1737), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -86886,71 +80007,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - sym_identifier, - [26774] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2337), 1, - anon_sym_LPAREN2, - ACTIONS(2339), 1, - anon_sym_LBRACK, - STATE(728), 1, - sym_argument_list, - ACTIONS(2341), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2503), 2, + ACTIONS(1724), 12, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2517), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2519), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2521), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2523), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2505), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2333), 5, - aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym_EQ, - ACTIONS(2335), 19, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1718), 15, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - sym_identifier, - [26848] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [25148] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2566), 7, + STATE(721), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2470), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2468), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -86958,7 +80054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2564), 37, + ACTIONS(2466), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -86970,10 +80066,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -86996,10 +80088,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [26900] = 3, + [25205] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2570), 7, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(734), 1, + sym_attribute_specifier, + ACTIONS(2475), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -87007,10 +80103,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2568), 37, + ACTIONS(2473), 36, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -87045,65 +80140,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [26952] = 9, + [25262] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(753), 1, + sym_attribute_specifier, + ACTIONS(2479), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2339), 1, - anon_sym_LBRACK, - STATE(728), 1, - sym_argument_list, - ACTIONS(2341), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2505), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2333), 11, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2335), 23, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2477), 36, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, sym_identifier, - [27016] = 3, + [25319] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2574), 7, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(764), 1, + sym_attribute_specifier, + ACTIONS(2483), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -87111,10 +80207,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2572), 37, + ACTIONS(2481), 36, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -87149,69 +80244,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [27068] = 13, + [25376] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, - anon_sym_LPAREN2, - ACTIONS(2339), 1, - anon_sym_LBRACK, - STATE(728), 1, - sym_argument_list, - ACTIONS(2341), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2503), 2, + ACTIONS(1733), 1, + anon_sym_EQ, + ACTIONS(1739), 1, + anon_sym_COLON, + STATE(616), 1, + sym_string_literal, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1737), 10, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1724), 12, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2519), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2521), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2523), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2505), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2333), 5, - aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym_EQ, - ACTIONS(2335), 21, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1718), 15, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - sym_identifier, - [27140] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [25439] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2578), 7, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(736), 1, + sym_attribute_specifier, + ACTIONS(2487), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -87219,10 +80314,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2576), 37, + ACTIONS(2485), 36, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -87257,67 +80351,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [27192] = 11, + [25496] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, - anon_sym_LPAREN2, - ACTIONS(2339), 1, - anon_sym_LBRACK, - STATE(728), 1, - sym_argument_list, - ACTIONS(2341), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2503), 2, + ACTIONS(1733), 1, + anon_sym_EQ, + ACTIONS(1744), 1, + anon_sym_COLON, + STATE(616), 1, + sym_string_literal, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1737), 10, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1724), 12, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2523), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2505), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2333), 7, - aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - anon_sym_EQ, - ACTIONS(2335), 23, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1718), 15, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - sym_identifier, - [27260] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [25559] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2582), 7, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(763), 1, + sym_attribute_specifier, + ACTIONS(2491), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -87325,10 +80421,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2580), 37, + ACTIONS(2489), 36, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -87363,10 +80458,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [27312] = 3, + [25616] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1733), 1, + anon_sym_EQ, + ACTIONS(2493), 1, + anon_sym_COLON, + STATE(616), 1, + sym_string_literal, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1737), 10, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1724), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1718), 15, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [25679] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2586), 7, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(761), 1, + sym_attribute_specifier, + ACTIONS(2497), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -87374,10 +80528,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2584), 37, + ACTIONS(2495), 36, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -87412,30 +80565,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [27364] = 10, + [25736] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, - anon_sym_LPAREN2, - ACTIONS(2339), 1, - anon_sym_LBRACK, - STATE(728), 1, - sym_argument_list, - ACTIONS(2341), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2503), 2, + ACTIONS(1733), 1, + anon_sym_EQ, + ACTIONS(1758), 1, + anon_sym_COLON, + STATE(616), 1, + sym_string_literal, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1737), 10, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1724), 12, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2505), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2333), 9, - aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -87443,35 +80604,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2335), 23, + ACTIONS(1718), 15, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - sym_identifier, - [27430] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [25799] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2590), 7, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(756), 1, + sym_attribute_specifier, + ACTIONS(2501), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -87479,10 +80635,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2588), 37, + ACTIONS(2499), 36, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -87517,78 +80672,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [27482] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2337), 1, - anon_sym_LPAREN2, - ACTIONS(2339), 1, - anon_sym_LBRACK, - ACTIONS(2507), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2509), 1, - anon_sym_AMP_AMP, - ACTIONS(2511), 1, - anon_sym_PIPE, - ACTIONS(2513), 1, - anon_sym_CARET, - ACTIONS(2515), 1, - anon_sym_AMP, - ACTIONS(2525), 1, - anon_sym_QMARK, - STATE(728), 1, - sym_argument_list, - ACTIONS(2341), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2503), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2517), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2519), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2521), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2523), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2594), 2, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - ACTIONS(2505), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2592), 16, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - sym_identifier, - [27568] = 7, + [25856] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2596), 1, + ACTIONS(1733), 1, anon_sym_EQ, - STATE(670), 1, + ACTIONS(1735), 1, + anon_sym_COLON, + STATE(616), 1, sym_string_literal, ACTIONS(97), 5, anon_sym_L_DQUOTE, @@ -87596,7 +80687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2598), 10, + ACTIONS(1737), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -87607,7 +80698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1708), 13, + ACTIONS(1724), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -87620,9 +80711,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(1702), 14, - anon_sym_DOT_DOT_DOT, + ACTIONS(1718), 15, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -87630,82 +80720,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DOT, anon_sym_DASH_GT, - [27628] = 20, + [25919] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(2505), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2339), 1, - anon_sym_LBRACK, - ACTIONS(2507), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2509), 1, - anon_sym_AMP_AMP, - ACTIONS(2511), 1, - anon_sym_PIPE, - ACTIONS(2513), 1, - anon_sym_CARET, - ACTIONS(2515), 1, - anon_sym_AMP, - ACTIONS(2525), 1, - anon_sym_QMARK, - STATE(728), 1, - sym_argument_list, - ACTIONS(2341), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2503), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2517), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2519), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2521), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2523), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2602), 2, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - ACTIONS(2505), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2600), 16, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2503), 37, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, sym_identifier, - [27714] = 3, + [25971] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2606), 7, + ACTIONS(2509), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -87713,7 +80787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2604), 37, + ACTIONS(2507), 37, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -87751,10 +80825,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [27766] = 3, + [26023] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2610), 7, + ACTIONS(2513), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -87762,7 +80836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2608), 37, + ACTIONS(2511), 37, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -87800,10 +80874,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [27818] = 3, + [26075] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2614), 7, + ACTIONS(2517), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -87811,7 +80885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2612), 37, + ACTIONS(2515), 37, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -87849,10 +80923,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [27870] = 3, + [26127] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2618), 7, + ACTIONS(2521), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -87860,7 +80934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2616), 37, + ACTIONS(2519), 37, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -87898,17 +80972,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [27922] = 5, + [26179] = 7, ACTIONS(3), 1, sym_comment, - STATE(796), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2624), 4, + ACTIONS(2523), 1, + anon_sym_EQ, + STATE(616), 1, + sym_string_literal, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2525), 10, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1724), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(1718), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [26239] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2529), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2527), 37, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2622), 7, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [26291] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2533), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -87916,7 +81085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2620), 32, + ACTIONS(2531), 37, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -87928,6 +81097,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -87948,11 +81121,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, + sym_primitive_type, sym_identifier, - [27978] = 3, + [26343] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2628), 7, + ACTIONS(2537), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -87960,7 +81134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2626), 37, + ACTIONS(2535), 37, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -87998,10 +81172,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [28030] = 3, + [26395] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2632), 7, + ACTIONS(2541), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -88009,7 +81183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2630), 37, + ACTIONS(2539), 37, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -88047,10 +81221,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [28082] = 3, + [26447] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2636), 7, + STATE(721), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2547), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2545), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -88058,7 +81239,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2634), 37, + ACTIONS(2543), 32, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -88070,10 +81251,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -88094,12 +81271,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, sym_identifier, - [28134] = 3, + [26503] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2640), 7, + ACTIONS(2352), 1, + anon_sym_LPAREN2, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2557), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2559), 1, + anon_sym_AMP_AMP, + ACTIONS(2561), 1, + anon_sym_PIPE, + ACTIONS(2563), 1, + anon_sym_CARET, + ACTIONS(2565), 1, + anon_sym_AMP, + ACTIONS(2575), 1, + anon_sym_QMARK, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2551), 2, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + ACTIONS(2553), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2567), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2569), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2571), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2573), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2555), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2549), 16, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + sym_identifier, + [26589] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2579), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -88107,7 +81349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2638), 37, + ACTIONS(2577), 37, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -88145,10 +81387,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [28186] = 3, + [26641] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2644), 7, + ACTIONS(2583), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -88156,7 +81398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2642), 37, + ACTIONS(2581), 37, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -88194,10 +81436,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [28238] = 3, + [26693] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2648), 7, + ACTIONS(2352), 1, + anon_sym_LPAREN2, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2557), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2559), 1, + anon_sym_AMP_AMP, + ACTIONS(2561), 1, + anon_sym_PIPE, + ACTIONS(2563), 1, + anon_sym_CARET, + ACTIONS(2565), 1, + anon_sym_AMP, + ACTIONS(2575), 1, + anon_sym_QMARK, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2553), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2567), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2569), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2571), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2573), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2587), 2, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + ACTIONS(2555), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2585), 16, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + sym_identifier, + [26779] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2591), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -88205,7 +81513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2646), 37, + ACTIONS(2589), 37, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -88243,25 +81551,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [28290] = 5, + [26831] = 6, ACTIONS(3), 1, sym_comment, - STATE(795), 1, + ACTIONS(2466), 1, + sym_primitive_type, + STATE(721), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2650), 4, + ACTIONS(2470), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2640), 7, + ACTIONS(2596), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2638), 32, + ACTIONS(2593), 32, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -88294,10 +81603,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [28346] = 3, + [26889] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2654), 7, + STATE(744), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2603), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2601), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -88305,7 +81621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2652), 37, + ACTIONS(2599), 32, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -88317,10 +81633,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -88341,12 +81653,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, sym_identifier, - [28398] = 3, + [26945] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2658), 7, + STATE(774), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2609), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2607), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -88354,7 +81672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2656), 37, + ACTIONS(2605), 32, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -88366,10 +81684,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -88390,12 +81704,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, sym_identifier, - [28450] = 3, + [27001] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2662), 7, + ACTIONS(2613), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -88403,7 +81716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2660), 37, + ACTIONS(2611), 37, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -88441,25 +81754,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [28502] = 5, + [27053] = 20, ACTIONS(3), 1, sym_comment, - STATE(797), 1, + ACTIONS(2352), 1, + anon_sym_LPAREN2, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2557), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2559), 1, + anon_sym_AMP_AMP, + ACTIONS(2561), 1, + anon_sym_PIPE, + ACTIONS(2563), 1, + anon_sym_CARET, + ACTIONS(2565), 1, + anon_sym_AMP, + ACTIONS(2575), 1, + anon_sym_QMARK, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2553), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2567), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2569), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2571), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2573), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2617), 2, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + ACTIONS(2555), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2615), 16, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + sym_identifier, + [27139] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2619), 1, + anon_sym_LPAREN2, + STATE(782), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2668), 4, + ACTIONS(1731), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2666), 7, + ACTIONS(1729), 6, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2664), 32, + ACTIONS(1716), 32, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -88492,10 +81872,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [28558] = 3, + [27197] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2672), 7, + ACTIONS(2624), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -88503,7 +81883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2670), 37, + ACTIONS(2622), 37, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -88541,48 +81921,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [28610] = 15, + [27249] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2515), 1, - anon_sym_AMP, - STATE(728), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2503), 2, + ACTIONS(2553), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2517), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2519), 2, + ACTIONS(2555), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2376), 9, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2521), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2378), 23, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2523), 2, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + sym_identifier, + [27315] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2352), 1, + anon_sym_LPAREN2, + ACTIONS(2354), 1, + anon_sym_LBRACK, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2553), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2573), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2505), 3, + ACTIONS(2555), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2333), 4, + ACTIONS(2376), 7, aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, anon_sym_EQ, - ACTIONS(2335), 19, + ACTIONS(2378), 23, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -88590,6 +82018,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -88602,26 +82034,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [28686] = 6, + [27383] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2463), 1, - sym_primitive_type, - STATE(776), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2467), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2677), 6, + ACTIONS(2628), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2674), 32, + anon_sym_COLON, + ACTIONS(2626), 37, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -88633,6 +82057,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -88653,11 +82081,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [27435] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2352), 1, + anon_sym_LPAREN2, + ACTIONS(2354), 1, + anon_sym_LBRACK, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2553), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2569), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2571), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2573), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2555), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2376), 5, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(2378), 21, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, sym_identifier, - [28744] = 3, + [27507] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2682), 7, + ACTIONS(2632), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -88665,7 +82153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2680), 37, + ACTIONS(2630), 37, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -88703,10 +82191,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [28796] = 3, + [27559] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2686), 7, + ACTIONS(2636), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -88714,7 +82202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2684), 37, + ACTIONS(2634), 37, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -88752,30 +82240,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [28848] = 3, + [27611] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2690), 1, + ACTIONS(2640), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2688), 42, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2638), 37, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -88796,150 +82288,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [28899] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(1115), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2692), 1, - anon_sym_SEMI, - STATE(754), 1, - sym_alignas_qualifier, - ACTIONS(49), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(2421), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - STATE(765), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(2419), 8, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - sym_identifier, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [28968] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2337), 1, - anon_sym_LPAREN2, - ACTIONS(2339), 1, - anon_sym_LBRACK, - STATE(728), 1, - sym_argument_list, - ACTIONS(2341), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2694), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2698), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2700), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2702), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2704), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2696), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2333), 4, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(2335), 19, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [29041] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2708), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2706), 42, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, + [27663] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2644), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2642), 37, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -88960,59 +82337,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [29092] = 15, + [27715] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2710), 1, - anon_sym_AMP, - STATE(728), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2694), 2, + ACTIONS(2553), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2698), 2, + ACTIONS(2567), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2700), 2, + ACTIONS(2569), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2702), 2, + ACTIONS(2571), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2704), 2, + ACTIONS(2573), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2333), 3, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, - ACTIONS(2696), 3, + ACTIONS(2555), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2335), 19, + ACTIONS(2376), 5, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(2378), 19, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -89024,61 +82397,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [29167] = 20, + sym_identifier, + [27789] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2501), 1, - anon_sym_EQ, - ACTIONS(2710), 1, + ACTIONS(2565), 1, anon_sym_AMP, - ACTIONS(2712), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2714), 1, - anon_sym_AMP_AMP, - ACTIONS(2716), 1, - anon_sym_PIPE, - ACTIONS(2718), 1, - anon_sym_CARET, - ACTIONS(2720), 1, - anon_sym_QMARK, - STATE(728), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2694), 2, + ACTIONS(2553), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2698), 2, + ACTIONS(2567), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2700), 2, + ACTIONS(2569), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2702), 2, + ACTIONS(2571), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2704), 2, + ACTIONS(2573), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2696), 3, + ACTIONS(2555), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2499), 16, + ACTIONS(2376), 4, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + ACTIONS(2378), 19, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -89089,121 +82458,206 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [29252] = 20, + sym_identifier, + [27865] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(2648), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2339), 1, - anon_sym_LBRACK, - ACTIONS(2594), 1, - anon_sym_EQ, - ACTIONS(2710), 1, - anon_sym_AMP, - ACTIONS(2712), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2714), 1, - anon_sym_AMP_AMP, - ACTIONS(2716), 1, - anon_sym_PIPE, - ACTIONS(2718), 1, - anon_sym_CARET, - ACTIONS(2720), 1, - anon_sym_QMARK, - STATE(728), 1, - sym_argument_list, - ACTIONS(2341), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2694), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2698), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2700), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2702), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2704), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2696), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2592), 16, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2646), 37, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [27917] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2652), 7, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2650), 37, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, - anon_sym_RBRACE, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [27969] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(783), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2658), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2656), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_COLON, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [29337] = 16, + ACTIONS(2654), 32, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [28025] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2710), 1, - anon_sym_AMP, - ACTIONS(2718), 1, + ACTIONS(2563), 1, anon_sym_CARET, - STATE(728), 1, + ACTIONS(2565), 1, + anon_sym_AMP, + STATE(677), 1, sym_argument_list, - ACTIONS(2333), 2, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2694), 2, + ACTIONS(2553), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2698), 2, + ACTIONS(2567), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2700), 2, + ACTIONS(2569), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2702), 2, + ACTIONS(2571), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2704), 2, + ACTIONS(2573), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2696), 3, + ACTIONS(2376), 3, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(2555), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2335), 19, + ACTIONS(2378), 19, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -89215,30 +82669,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [29414] = 3, + sym_identifier, + [28103] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1329), 1, + ACTIONS(2656), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1327), 42, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2654), 37, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -89259,84 +82718,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [29465] = 5, + [28155] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2377), 1, - anon_sym_EQ, - ACTIONS(2379), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1708), 13, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1702), 19, + ACTIONS(2662), 7, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - sym_identifier, - [29520] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1341), 1, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1339), 42, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2660), 37, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -89357,124 +82767,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [29571] = 17, + [28207] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2333), 1, - anon_sym_EQ, - ACTIONS(2337), 1, + ACTIONS(2664), 1, + sym_identifier, + ACTIONS(2673), 1, + sym_primitive_type, + STATE(750), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2671), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2667), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2339), 1, - anon_sym_LBRACK, - ACTIONS(2710), 1, - anon_sym_AMP, - ACTIONS(2716), 1, - anon_sym_PIPE, - ACTIONS(2718), 1, - anon_sym_CARET, - STATE(728), 1, - sym_argument_list, - ACTIONS(2341), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2694), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2698), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2700), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2702), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2704), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2696), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2335), 19, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(2669), 31, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + [28267] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(721), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2547), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2677), 7, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, + anon_sym_LBRACK_LBRACK, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [29650] = 18, + ACTIONS(2675), 32, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [28323] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2333), 1, - anon_sym_EQ, - ACTIONS(2337), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2710), 1, - anon_sym_AMP, - ACTIONS(2714), 1, - anon_sym_AMP_AMP, - ACTIONS(2716), 1, + ACTIONS(2561), 1, anon_sym_PIPE, - ACTIONS(2718), 1, + ACTIONS(2563), 1, anon_sym_CARET, - STATE(728), 1, + ACTIONS(2565), 1, + anon_sym_AMP, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2694), 2, + ACTIONS(2376), 2, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + ACTIONS(2553), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2698), 2, + ACTIONS(2567), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2700), 2, + ACTIONS(2569), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2702), 2, + ACTIONS(2571), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2704), 2, + ACTIONS(2573), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2696), 3, + ACTIONS(2555), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2335), 18, + ACTIONS(2378), 19, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_AMP_AMP, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -89486,49 +82934,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [29731] = 9, + sym_identifier, + [28403] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - STATE(728), 1, + ACTIONS(2559), 1, + anon_sym_AMP_AMP, + ACTIONS(2561), 1, + anon_sym_PIPE, + ACTIONS(2563), 1, + anon_sym_CARET, + ACTIONS(2565), 1, + anon_sym_AMP, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2696), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2333), 10, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(2376), 2, + aux_sym_preproc_elif_token1, anon_sym_EQ, - ACTIONS(2335), 23, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(2553), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2567), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2569), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2571), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, + ACTIONS(2573), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2555), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2378), 18, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -89540,29 +82998,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [29794] = 10, + sym_identifier, + [28485] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(2681), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2339), 1, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2679), 37, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - STATE(728), 1, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [28537] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2352), 1, + anon_sym_LPAREN2, + ACTIONS(2354), 1, + anon_sym_LBRACK, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2694), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2696), 3, + ACTIONS(2555), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2333), 8, + ACTIONS(2376), 11, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -89571,19 +83079,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2335), 23, + ACTIONS(2378), 23, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -89595,30 +83102,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [29859] = 3, + sym_identifier, + [28601] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1297), 1, + ACTIONS(2685), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1295), 42, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2683), 37, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -89639,34 +83151,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [29910] = 3, + [28653] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1317), 1, + ACTIONS(2689), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1315), 42, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2687), 37, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -89687,38 +83200,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [29961] = 12, + [28705] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(2693), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2691), 37, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, - ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(1115), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2722), 1, - anon_sym_SEMI, - STATE(754), 1, - sym_alignas_qualifier, - ACTIONS(49), 2, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2421), 2, + sym_primitive_type, + sym_identifier, + [28757] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(721), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2547), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2697), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - STATE(765), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(2419), 8, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2695), 32, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, anon_sym___based, anon_sym___cdecl, anon_sym___clrcall, @@ -89726,9 +83280,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - sym_identifier, - ACTIONS(47), 9, - anon_sym___extension__, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -89737,8 +83298,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(45), 10, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [28813] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(721), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2547), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2701), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2699), 32, + anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -89748,47 +83341,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [30030] = 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [28869] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - STATE(728), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2694), 2, + ACTIONS(2703), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2704), 2, + ACTIONS(2707), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2709), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2696), 3, + ACTIONS(2705), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2333), 6, + ACTIONS(2376), 4, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, anon_sym_EQ, - ACTIONS(2335), 23, + ACTIONS(2378), 21, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, @@ -89804,12 +83410,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [30097] = 3, + [28940] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(1115), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2713), 1, + anon_sym_SEMI, + STATE(708), 1, + sym_alignas_qualifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2452), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + STATE(712), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(2450), 8, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + sym_identifier, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [29009] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1353), 1, + ACTIONS(2717), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1351), 42, + ACTIONS(2715), 42, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -89852,7 +83515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30148] = 12, + [29060] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -89861,17 +83524,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___declspec, ACTIONS(1115), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2724), 1, + ACTIONS(2719), 1, anon_sym_SEMI, - STATE(754), 1, + STATE(708), 1, sym_alignas_qualifier, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2421), 2, + ACTIONS(2452), 2, anon_sym_LPAREN2, anon_sym_STAR, - STATE(765), 7, + STATE(712), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -89879,7 +83542,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(2419), 8, + ACTIONS(2450), 8, anon_sym___based, anon_sym___cdecl, anon_sym___clrcall, @@ -89909,12 +83572,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [30217] = 3, + [29129] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1273), 1, + ACTIONS(1265), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1271), 42, + ACTIONS(1263), 42, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -89957,70 +83620,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30268] = 13, + [29180] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(1115), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2721), 1, + anon_sym_SEMI, + STATE(708), 1, + sym_alignas_qualifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2452), 2, anon_sym_LPAREN2, - ACTIONS(2339), 1, - anon_sym_LBRACK, - STATE(728), 1, - sym_argument_list, - ACTIONS(2341), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2694), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2700), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2702), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2704), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2696), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2333), 4, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(2335), 21, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [30339] = 3, + STATE(712), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(2450), 8, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + sym_identifier, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [29249] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2728), 1, + ACTIONS(1337), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2726), 42, + ACTIONS(1335), 42, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -90063,7 +83725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30390] = 12, + [29300] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -90072,17 +83734,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___declspec, ACTIONS(1115), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2730), 1, + ACTIONS(2723), 1, anon_sym_SEMI, - STATE(754), 1, + STATE(708), 1, sym_alignas_qualifier, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2421), 2, + ACTIONS(2452), 2, anon_sym_LPAREN2, anon_sym_STAR, - STATE(765), 7, + STATE(712), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -90090,7 +83752,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(2419), 8, + ACTIONS(2450), 8, anon_sym___based, anon_sym___cdecl, anon_sym___clrcall, @@ -90099,33 +83761,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___thiscall, anon_sym___vectorcall, sym_identifier, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [30459] = 3, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [29369] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1325), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1323), 42, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [29420] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2368), 1, + anon_sym_EQ, + ACTIONS(2370), 10, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1724), 13, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1718), 19, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_identifier, + [29475] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2734), 1, + ACTIONS(2727), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2732), 42, + ACTIONS(2725), 42, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -90168,12 +83928,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30510] = 3, + [29526] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2738), 1, + ACTIONS(2731), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2736), 42, + ACTIONS(2729), 42, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -90216,12 +83976,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30561] = 3, + [29577] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2742), 1, + ACTIONS(2735), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2740), 42, + ACTIONS(2733), 42, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -90264,55 +84024,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30612] = 20, + [29628] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2602), 1, + ACTIONS(2551), 1, anon_sym_EQ, - ACTIONS(2710), 1, - anon_sym_AMP, - ACTIONS(2712), 1, + ACTIONS(2737), 1, anon_sym_PIPE_PIPE, - ACTIONS(2714), 1, + ACTIONS(2739), 1, anon_sym_AMP_AMP, - ACTIONS(2716), 1, + ACTIONS(2741), 1, anon_sym_PIPE, - ACTIONS(2718), 1, + ACTIONS(2743), 1, anon_sym_CARET, - ACTIONS(2720), 1, + ACTIONS(2745), 1, + anon_sym_AMP, + ACTIONS(2749), 1, anon_sym_QMARK, - STATE(728), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2694), 2, + ACTIONS(2703), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2698), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2700), 2, + ACTIONS(2707), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2702), 2, + ACTIONS(2709), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2704), 2, + ACTIONS(2711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2696), 3, + ACTIONS(2747), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2705), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2600), 16, + ACTIONS(2549), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -90329,12 +84089,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [30697] = 3, + [29713] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2746), 1, + ACTIONS(2753), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2744), 42, + ACTIONS(2751), 42, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -90377,12 +84137,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30748] = 3, + [29764] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2750), 1, + ACTIONS(1349), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2748), 42, + ACTIONS(1347), 42, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -90425,12 +84185,196 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30799] = 3, + [29815] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2352), 1, + anon_sym_LPAREN2, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2617), 1, + anon_sym_EQ, + ACTIONS(2737), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2739), 1, + anon_sym_AMP_AMP, + ACTIONS(2741), 1, + anon_sym_PIPE, + ACTIONS(2743), 1, + anon_sym_CARET, + ACTIONS(2745), 1, + anon_sym_AMP, + ACTIONS(2749), 1, + anon_sym_QMARK, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2703), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2707), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2709), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2711), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2747), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2705), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2615), 16, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [29900] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2352), 1, + anon_sym_LPAREN2, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2587), 1, + anon_sym_EQ, + ACTIONS(2737), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2739), 1, + anon_sym_AMP_AMP, + ACTIONS(2741), 1, + anon_sym_PIPE, + ACTIONS(2743), 1, + anon_sym_CARET, + ACTIONS(2745), 1, + anon_sym_AMP, + ACTIONS(2749), 1, + anon_sym_QMARK, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2703), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2707), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2709), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2711), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2747), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2705), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2585), 16, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [29985] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2352), 1, + anon_sym_LPAREN2, + ACTIONS(2354), 1, + anon_sym_LBRACK, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2705), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2376), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2378), 23, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [30048] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2754), 1, + ACTIONS(1273), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2752), 42, + ACTIONS(1271), 42, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -90473,12 +84417,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30850] = 3, + [30099] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2758), 1, + ACTIONS(2757), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2756), 42, + ACTIONS(2755), 42, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -90521,12 +84465,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30901] = 3, + [30150] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2762), 1, + ACTIONS(1261), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2760), 42, + ACTIONS(1259), 42, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -90569,12 +84513,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30952] = 3, + [30201] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2766), 1, + ACTIONS(2761), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2764), 42, + ACTIONS(2759), 42, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -90617,308 +84561,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [31003] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1717), 1, - anon_sym_EQ, - ACTIONS(1721), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1708), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1702), 19, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [31057] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1760), 1, - anon_sym_LPAREN2, - ACTIONS(1762), 1, - anon_sym_STAR, - ACTIONS(1764), 1, - anon_sym___based, - ACTIONS(2768), 1, - sym_identifier, - ACTIONS(2776), 1, - anon_sym_LBRACK, - STATE(754), 1, - sym_alignas_qualifier, - STATE(1051), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1319), 1, - sym__declarator, - STATE(1469), 1, - sym__abstract_declarator, - STATE(1494), 1, - sym_parameter_list, - STATE(1943), 1, - sym_ms_based_modifier, - ACTIONS(49), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(2770), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2774), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(963), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(1008), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(2772), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1495), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1371), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [31143] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2782), 1, - anon_sym___attribute__, - ACTIONS(2785), 1, - anon_sym_LBRACE, - ACTIONS(2787), 1, - anon_sym_COLON, - STATE(788), 1, - sym_attribute_specifier, - STATE(891), 1, - sym_enumerator_list, - ACTIONS(2780), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(2778), 31, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - [31203] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1760), 1, - anon_sym_LPAREN2, - ACTIONS(1762), 1, - anon_sym_STAR, - ACTIONS(1764), 1, - anon_sym___based, - ACTIONS(2768), 1, - sym_identifier, - ACTIONS(2776), 1, - anon_sym_LBRACK, - STATE(754), 1, - sym_alignas_qualifier, - STATE(1051), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1312), 1, - sym__declarator, - STATE(1486), 1, - sym__abstract_declarator, - STATE(1494), 1, - sym_parameter_list, - STATE(1943), 1, - sym_ms_based_modifier, - ACTIONS(49), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(2774), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(2789), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(871), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(976), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2772), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1495), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1371), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [31289] = 7, + [30252] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2785), 1, - anon_sym_LBRACE, - ACTIONS(2795), 1, - anon_sym___attribute__, - STATE(826), 1, - sym_attribute_specifier, - STATE(928), 1, - sym_enumerator_list, - ACTIONS(2793), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2765), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2791), 31, + ACTIONS(2763), 42, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - [31346] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2798), 2, anon_sym___attribute__, - sym_identifier, - ACTIONS(2805), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2808), 3, - anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(2801), 4, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_EQ, - ACTIONS(2803), 30, - anon_sym___extension__, - anon_sym_extern, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -90947,72 +84608,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_struct, anon_sym_union, - [31401] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2810), 2, - anon_sym___attribute__, sym_identifier, - ACTIONS(2817), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2820), 3, - anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(2813), 4, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_EQ, - ACTIONS(2815), 30, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - [31456] = 3, + [30303] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2130), 2, + ACTIONS(2769), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2128), 38, + ACTIONS(2767), 42, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -91041,23 +84657,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [31504] = 3, + [30354] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2352), 1, + anon_sym_LPAREN2, + ACTIONS(2354), 1, + anon_sym_LBRACK, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2703), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2705), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2376), 8, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2378), 23, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [30419] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2134), 2, + ACTIONS(2773), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2132), 38, + ACTIONS(2771), 42, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -91086,55 +84760,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [31552] = 19, + [30470] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2333), 1, - anon_sym_EQ, - ACTIONS(2339), 1, + ACTIONS(2352), 1, + anon_sym_LPAREN2, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2343), 1, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2358), 2, + anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2822), 1, - anon_sym_LPAREN2, - ACTIONS(2828), 1, - anon_sym_AMP_AMP, - ACTIONS(2830), 1, + ACTIONS(2703), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2711), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2705), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2376), 6, anon_sym_PIPE, - ACTIONS(2832), 1, anon_sym_CARET, - ACTIONS(2834), 1, anon_sym_AMP, - ACTIONS(2844), 1, - anon_sym_DOT, - STATE(728), 1, + anon_sym_GT, + anon_sym_LT, + anon_sym_EQ, + ACTIONS(2378), 23, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [30537] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2352), 1, + anon_sym_LPAREN2, + ACTIONS(2354), 1, + anon_sym_LBRACK, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2824), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2703), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2836), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2838), 2, + ACTIONS(2707), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2840), 2, + ACTIONS(2709), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2842), 2, + ACTIONS(2711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2826), 3, + ACTIONS(2747), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2705), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2335), 14, - anon_sym_DOT_DOT_DOT, + ACTIONS(2376), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(2378), 19, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, - anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -91146,45 +84875,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31631] = 9, + [30610] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2339), 1, + ACTIONS(2352), 1, + anon_sym_LPAREN2, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2343), 1, + ACTIONS(2745), 1, + anon_sym_AMP, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2358), 2, + anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2822), 1, + ACTIONS(2703), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2707), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2709), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2711), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2747), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2376), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + ACTIONS(2705), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2378), 19, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [30685] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2844), 1, - anon_sym_DOT, - STATE(728), 1, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2743), 1, + anon_sym_CARET, + ACTIONS(2745), 1, + anon_sym_AMP, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2381), 13, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2376), 2, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(2703), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2707), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2709), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2711), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2747), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2705), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2378), 19, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [30762] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2352), 1, + anon_sym_LPAREN2, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2376), 1, + anon_sym_EQ, + ACTIONS(2741), 1, anon_sym_PIPE, + ACTIONS(2743), 1, anon_sym_CARET, + ACTIONS(2745), 1, anon_sym_AMP, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2703), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2707), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(2709), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2383), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(2747), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_RBRACK, + ACTIONS(2705), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2378), 19, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -91196,17 +85058,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31690] = 3, + [30841] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2762), 1, + ACTIONS(2777), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2760), 38, + ACTIONS(2775), 42, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_preproc_directive, anon_sym___extension__, anon_sym_extern, @@ -91240,53 +85106,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [31737] = 17, + [30892] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2339), 1, - anon_sym_LBRACK, - ACTIONS(2343), 1, - anon_sym_DASH_GT, - ACTIONS(2822), 1, + ACTIONS(2781), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2779), 42, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [30943] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2832), 1, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2376), 1, + anon_sym_EQ, + ACTIONS(2739), 1, + anon_sym_AMP_AMP, + ACTIONS(2741), 1, + anon_sym_PIPE, + ACTIONS(2743), 1, anon_sym_CARET, - ACTIONS(2834), 1, + ACTIONS(2745), 1, anon_sym_AMP, - ACTIONS(2844), 1, - anon_sym_DOT, - STATE(728), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2333), 2, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2824), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2703), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2836), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2838), 2, + ACTIONS(2707), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2840), 2, + ACTIONS(2709), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2842), 2, + ACTIONS(2711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2826), 3, + ACTIONS(2747), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2705), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2335), 15, - anon_sym_DOT_DOT_DOT, + ACTIONS(2378), 18, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -91298,55 +85217,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31812] = 18, + [31024] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2333), 1, - anon_sym_EQ, - ACTIONS(2339), 1, - anon_sym_LBRACK, - ACTIONS(2343), 1, - anon_sym_DASH_GT, - ACTIONS(2822), 1, + ACTIONS(2787), 1, + anon_sym___attribute__, + ACTIONS(2790), 1, + anon_sym_LBRACE, + ACTIONS(2792), 1, + anon_sym_COLON, + STATE(767), 1, + sym_attribute_specifier, + STATE(878), 1, + sym_enumerator_list, + ACTIONS(2785), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2830), 1, - anon_sym_PIPE, - ACTIONS(2832), 1, - anon_sym_CARET, - ACTIONS(2834), 1, - anon_sym_AMP, - ACTIONS(2844), 1, - anon_sym_DOT, - STATE(728), 1, - sym_argument_list, - ACTIONS(2341), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2824), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2836), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2838), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2840), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2842), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2826), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2335), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_QMARK, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(2783), 31, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [31084] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1733), 1, + anon_sym_EQ, + ACTIONS(1737), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -91357,21 +85285,239 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31889] = 3, + ACTIONS(1724), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1718), 19, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [31138] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_LPAREN2, + ACTIONS(1781), 1, + anon_sym_STAR, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2794), 1, + sym_identifier, + ACTIONS(2802), 1, + anon_sym_LBRACK, + STATE(708), 1, + sym_alignas_qualifier, + STATE(999), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1259), 1, + sym__declarator, + STATE(1402), 1, + sym__abstract_declarator, + STATE(1443), 1, + sym_parameter_list, + STATE(1827), 1, + sym_ms_based_modifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2796), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2800), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(822), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(931), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2798), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1442), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1322), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [31224] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_LPAREN2, + ACTIONS(1781), 1, + anon_sym_STAR, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2794), 1, + sym_identifier, + ACTIONS(2802), 1, + anon_sym_LBRACK, + STATE(708), 1, + sym_alignas_qualifier, + STATE(999), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1265), 1, + sym__declarator, + STATE(1414), 1, + sym__abstract_declarator, + STATE(1443), 1, + sym_parameter_list, + STATE(1827), 1, + sym_ms_based_modifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2800), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(2804), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(914), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(962), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(2798), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1442), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1322), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [31310] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2806), 2, + anon_sym___attribute__, + sym_identifier, + ACTIONS(2813), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(2816), 3, + anon_sym_LBRACK, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(2809), 4, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(2811), 30, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + [31365] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2758), 1, + ACTIONS(2818), 2, + anon_sym___attribute__, + sym_identifier, + ACTIONS(2825), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2756), 38, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_LBRACE, + ACTIONS(2828), 3, + anon_sym_LBRACK, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(2821), 4, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(2823), 30, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -91400,74 +85546,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_struct, anon_sym_union, - sym_identifier, - [31936] = 10, + [31420] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2339), 1, - anon_sym_LBRACK, - ACTIONS(2343), 1, - anon_sym_DASH_GT, - ACTIONS(2822), 1, + ACTIONS(2790), 1, + anon_sym_LBRACE, + ACTIONS(2834), 1, + anon_sym___attribute__, + STATE(781), 1, + sym_attribute_specifier, + STATE(884), 1, + sym_enumerator_list, + ACTIONS(2832), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2844), 1, - anon_sym_DOT, - STATE(728), 1, - sym_argument_list, - ACTIONS(2341), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2826), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2333), 10, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2335), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [31997] = 3, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(2830), 31, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [31477] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2728), 1, + ACTIONS(2153), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2726), 38, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_LBRACE, + ACTIONS(2151), 38, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -91496,22 +85641,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32044] = 3, + [31525] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2690), 2, + ACTIONS(2149), 2, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2688), 37, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_LBRACE, + ACTIONS(2147), 38, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -91540,13 +85686,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32091] = 3, + [31573] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2734), 2, + ACTIONS(2753), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2732), 37, + ACTIONS(2751), 37, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -91584,15 +85730,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32138] = 3, + [31620] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2754), 2, + ACTIONS(2735), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2752), 37, + ACTIONS(2733), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -91628,18 +85774,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32185] = 3, + [31667] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2358), 1, + anon_sym_DASH_GT, + ACTIONS(2837), 1, + anon_sym_LPAREN2, + ACTIONS(2839), 1, + anon_sym_DOT, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2380), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2382), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [31726] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2358), 1, + anon_sym_DASH_GT, + ACTIONS(2617), 1, + anon_sym_EQ, + ACTIONS(2837), 1, + anon_sym_LPAREN2, + ACTIONS(2839), 1, + anon_sym_DOT, + ACTIONS(2845), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2847), 1, + anon_sym_AMP_AMP, + ACTIONS(2849), 1, + anon_sym_PIPE, + ACTIONS(2851), 1, + anon_sym_CARET, + ACTIONS(2853), 1, + anon_sym_AMP, + ACTIONS(2863), 1, + anon_sym_QMARK, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2841), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2855), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2857), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2859), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2861), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2843), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2615), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [31809] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2766), 2, + ACTIONS(2444), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2764), 37, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + STATE(471), 1, + sym_string_literal, + ACTIONS(2865), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2442), 32, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -91672,32 +85932,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32232] = 5, + [31860] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2850), 1, - anon_sym___attribute__, - STATE(827), 1, - sym_attribute_specifier, - ACTIONS(2848), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(1349), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2846), 31, + ACTIONS(1347), 38, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -91717,16 +85971,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [32283] = 3, + [31907] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2728), 2, + ACTIONS(1261), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2726), 37, + ACTIONS(1259), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -91762,13 +86020,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32330] = 3, + [31954] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1297), 2, + ACTIONS(1337), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1295), 37, + ACTIONS(1335), 37, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -91806,32 +86064,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32377] = 5, + [32001] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2857), 1, - anon_sym___attribute__, - STATE(790), 1, - sym_attribute_specifier, - ACTIONS(2855), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(1325), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2853), 31, + anon_sym_RBRACE, + ACTIONS(1323), 37, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -91851,58 +86103,412 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [32428] = 3, + [32048] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2358), 1, + anon_sym_DASH_GT, + ACTIONS(2551), 1, + anon_sym_EQ, + ACTIONS(2837), 1, + anon_sym_LPAREN2, + ACTIONS(2839), 1, + anon_sym_DOT, + ACTIONS(2845), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2847), 1, + anon_sym_AMP_AMP, + ACTIONS(2849), 1, + anon_sym_PIPE, + ACTIONS(2851), 1, + anon_sym_CARET, + ACTIONS(2853), 1, + anon_sym_AMP, + ACTIONS(2863), 1, + anon_sym_QMARK, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2841), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2855), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2857), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2859), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2861), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2843), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2549), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [32131] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2358), 1, + anon_sym_DASH_GT, + ACTIONS(2837), 1, + anon_sym_LPAREN2, + ACTIONS(2839), 1, + anon_sym_DOT, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2348), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2350), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [32190] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2358), 1, + anon_sym_DASH_GT, + ACTIONS(2837), 1, + anon_sym_LPAREN2, + ACTIONS(2839), 1, + anon_sym_DOT, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2843), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2376), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2378), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [32251] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2358), 1, + anon_sym_DASH_GT, + ACTIONS(2587), 1, + anon_sym_EQ, + ACTIONS(2837), 1, + anon_sym_LPAREN2, + ACTIONS(2839), 1, + anon_sym_DOT, + ACTIONS(2845), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2847), 1, + anon_sym_AMP_AMP, + ACTIONS(2849), 1, + anon_sym_PIPE, + ACTIONS(2851), 1, + anon_sym_CARET, + ACTIONS(2853), 1, + anon_sym_AMP, + ACTIONS(2863), 1, + anon_sym_QMARK, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2841), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2855), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2857), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2859), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2861), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2843), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2585), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [32334] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2358), 1, + anon_sym_DASH_GT, + ACTIONS(2837), 1, + anon_sym_LPAREN2, + ACTIONS(2839), 1, + anon_sym_DOT, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2376), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2378), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [32393] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2358), 1, + anon_sym_DASH_GT, + ACTIONS(2376), 1, + anon_sym_EQ, + ACTIONS(2837), 1, + anon_sym_LPAREN2, + ACTIONS(2839), 1, + anon_sym_DOT, + ACTIONS(2847), 1, + anon_sym_AMP_AMP, + ACTIONS(2849), 1, + anon_sym_PIPE, + ACTIONS(2851), 1, + anon_sym_CARET, + ACTIONS(2853), 1, + anon_sym_AMP, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2841), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2855), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2857), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2859), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2861), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2843), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2378), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [32472] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2738), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2736), 37, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [32475] = 3, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2358), 1, + anon_sym_DASH_GT, + ACTIONS(2376), 1, + anon_sym_EQ, + ACTIONS(2837), 1, + anon_sym_LPAREN2, + ACTIONS(2839), 1, + anon_sym_DOT, + ACTIONS(2849), 1, + anon_sym_PIPE, + ACTIONS(2851), 1, + anon_sym_CARET, + ACTIONS(2853), 1, + anon_sym_AMP, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2841), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2855), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2857), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2859), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2861), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2843), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2378), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [32549] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2762), 2, + ACTIONS(1273), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2760), 37, + ACTIONS(1271), 37, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -91940,100 +86546,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32522] = 3, + [32596] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2742), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2740), 37, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [32569] = 3, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2358), 1, + anon_sym_DASH_GT, + ACTIONS(2837), 1, + anon_sym_LPAREN2, + ACTIONS(2839), 1, + anon_sym_DOT, + ACTIONS(2851), 1, + anon_sym_CARET, + ACTIONS(2853), 1, + anon_sym_AMP, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2376), 2, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(2841), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2855), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2857), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2859), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2861), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2843), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2378), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [32671] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2690), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2688), 38, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [32616] = 3, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2358), 1, + anon_sym_DASH_GT, + ACTIONS(2837), 1, + anon_sym_LPAREN2, + ACTIONS(2839), 1, + anon_sym_DOT, + ACTIONS(2853), 1, + anon_sym_AMP, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2841), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2855), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2857), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2859), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2861), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2376), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + ACTIONS(2843), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2378), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [32744] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2734), 1, + ACTIONS(2753), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2732), 38, + ACTIONS(2751), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -92072,44 +86705,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32663] = 9, + [32791] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2343), 1, + ACTIONS(2358), 1, anon_sym_DASH_GT, - ACTIONS(2822), 1, + ACTIONS(2837), 1, anon_sym_LPAREN2, - ACTIONS(2844), 1, + ACTIONS(2839), 1, anon_sym_DOT, - STATE(728), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2361), 13, + ACTIONS(2841), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2855), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2857), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2859), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2861), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2843), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2376), 4, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, + anon_sym_EQ, + ACTIONS(2378), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [32862] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2358), 1, + anon_sym_DASH_GT, + ACTIONS(2837), 1, + anon_sym_LPAREN2, + ACTIONS(2839), 1, + anon_sym_DOT, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2841), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2857), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(2859), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2861), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2843), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2376), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ, - ACTIONS(2363), 19, + ACTIONS(2378), 17, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -92122,37 +86816,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [32722] = 9, + [32931] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2343), 1, + ACTIONS(2358), 1, anon_sym_DASH_GT, - ACTIONS(2822), 1, + ACTIONS(2837), 1, anon_sym_LPAREN2, - ACTIONS(2844), 1, + ACTIONS(2839), 1, anon_sym_DOT, - STATE(728), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2365), 13, + ACTIONS(2841), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2861), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2843), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2367), 19, + ACTIONS(2378), 19, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -92172,12 +86869,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [32781] = 3, + [32996] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2742), 1, + ACTIONS(2781), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2740), 38, + ACTIONS(2779), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -92216,12 +86913,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32828] = 3, + [33043] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1273), 1, + ACTIONS(1265), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1271), 38, + ACTIONS(1263), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -92260,15 +86957,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32875] = 3, + [33090] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1317), 2, + ACTIONS(2777), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1315), 37, + ACTIONS(2775), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -92304,20 +87001,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32922] = 5, + [33137] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2433), 1, + ACTIONS(2717), 2, anon_sym_LBRACK_LBRACK, - STATE(543), 1, - sym_string_literal, - ACTIONS(2860), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2431), 32, + anon_sym_RBRACE, + ACTIONS(2715), 37, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -92350,15 +87045,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32973] = 3, + [33184] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1329), 1, + ACTIONS(2769), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1327), 38, + anon_sym_RBRACE, + ACTIONS(2767), 37, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -92394,70 +87089,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33020] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2339), 1, - anon_sym_LBRACK, - ACTIONS(2343), 1, - anon_sym_DASH_GT, - ACTIONS(2822), 1, - anon_sym_LPAREN2, - ACTIONS(2834), 1, - anon_sym_AMP, - ACTIONS(2844), 1, - anon_sym_DOT, - STATE(728), 1, - sym_argument_list, - ACTIONS(2341), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2824), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2836), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2838), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2840), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2842), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2333), 3, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, - ACTIONS(2826), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2335), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [33093] = 3, + [33231] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2750), 2, + ACTIONS(1349), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2748), 37, + ACTIONS(1347), 37, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -92495,20 +87133,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33140] = 5, + [33278] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2433), 1, + ACTIONS(2773), 1, anon_sym_LBRACK_LBRACK, - STATE(544), 1, - sym_string_literal, - ACTIONS(2860), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2431), 32, + ACTIONS(2771), 38, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -92541,12 +87177,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33191] = 3, + [33325] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1341), 1, + ACTIONS(2769), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1339), 38, + ACTIONS(2767), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -92585,124 +87221,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33238] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2339), 1, - anon_sym_LBRACK, - ACTIONS(2343), 1, - anon_sym_DASH_GT, - ACTIONS(2822), 1, - anon_sym_LPAREN2, - ACTIONS(2844), 1, - anon_sym_DOT, - STATE(728), 1, - sym_argument_list, - ACTIONS(2341), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2333), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2335), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [33297] = 21, + [33372] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2339), 1, - anon_sym_LBRACK, - ACTIONS(2343), 1, - anon_sym_DASH_GT, - ACTIONS(2602), 1, - anon_sym_EQ, - ACTIONS(2822), 1, - anon_sym_LPAREN2, - ACTIONS(2828), 1, - anon_sym_AMP_AMP, - ACTIONS(2830), 1, - anon_sym_PIPE, - ACTIONS(2832), 1, - anon_sym_CARET, - ACTIONS(2834), 1, - anon_sym_AMP, - ACTIONS(2844), 1, - anon_sym_DOT, - ACTIONS(2862), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2864), 1, - anon_sym_QMARK, - STATE(728), 1, - sym_argument_list, - ACTIONS(2341), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2824), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2836), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2838), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2840), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2842), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2826), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2600), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_RBRACK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [33380] = 3, + ACTIONS(2765), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2763), 38, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [33419] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2871), 1, + anon_sym___attribute__, + STATE(772), 1, + sym_attribute_specifier, + ACTIONS(2869), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(2867), 31, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [33470] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2746), 1, + ACTIONS(2761), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2744), 38, + ACTIONS(2759), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -92741,12 +87355,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33427] = 3, + [33517] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1297), 1, + ACTIONS(2757), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1295), 38, + ACTIONS(2755), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -92785,12 +87399,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33474] = 3, + [33564] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2750), 1, + ACTIONS(1337), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2748), 38, + ACTIONS(1335), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -92829,18 +87443,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33521] = 3, + [33611] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1317), 1, + ACTIONS(2444), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1315), 38, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + STATE(464), 1, + sym_string_literal, + ACTIONS(2865), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2442), 32, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -92873,18 +87489,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33568] = 3, + [33662] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1353), 1, + ACTIONS(2444), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1351), 38, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + STATE(486), 1, + sym_string_literal, + ACTIONS(2865), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2442), 32, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -92917,18 +87535,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33615] = 3, + [33713] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1341), 2, + ACTIONS(2444), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1339), 37, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + STATE(470), 1, + sym_string_literal, + ACTIONS(2865), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2442), 32, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -92961,15 +87581,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33662] = 3, + [33764] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1329), 2, + ACTIONS(2731), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1327), 37, + ACTIONS(2729), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -93005,112 +87625,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33709] = 21, + [33811] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2343), 1, + ACTIONS(2358), 1, anon_sym_DASH_GT, - ACTIONS(2594), 1, - anon_sym_EQ, - ACTIONS(2822), 1, + ACTIONS(2837), 1, anon_sym_LPAREN2, - ACTIONS(2828), 1, - anon_sym_AMP_AMP, - ACTIONS(2830), 1, - anon_sym_PIPE, - ACTIONS(2832), 1, - anon_sym_CARET, - ACTIONS(2834), 1, - anon_sym_AMP, - ACTIONS(2844), 1, + ACTIONS(2839), 1, anon_sym_DOT, - ACTIONS(2862), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2864), 1, - anon_sym_QMARK, - STATE(728), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2824), 2, + ACTIONS(2841), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2836), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2838), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2840), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2842), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2826), 3, + ACTIONS(2843), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2592), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_RBRACK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [33792] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2339), 1, - anon_sym_LBRACK, - ACTIONS(2343), 1, - anon_sym_DASH_GT, - ACTIONS(2822), 1, - anon_sym_LPAREN2, - ACTIONS(2844), 1, - anon_sym_DOT, - STATE(728), 1, - sym_argument_list, - ACTIONS(2341), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2824), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2836), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2838), 2, + ACTIONS(2376), 8, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2840), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2842), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2826), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2333), 4, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_EQ, - ACTIONS(2335), 15, + ACTIONS(2378), 19, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -93123,20 +87677,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [33863] = 5, + [33874] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2433), 1, + ACTIONS(2727), 1, anon_sym_LBRACK_LBRACK, - STATE(552), 1, - sym_string_literal, - ACTIONS(2860), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2431), 32, + ACTIONS(2725), 38, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -93169,49 +87721,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33914] = 14, + [33921] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2343), 1, + ACTIONS(2358), 1, anon_sym_DASH_GT, - ACTIONS(2822), 1, + ACTIONS(2837), 1, anon_sym_LPAREN2, - ACTIONS(2844), 1, + ACTIONS(2839), 1, anon_sym_DOT, - STATE(728), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2824), 2, + ACTIONS(2396), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2838), 2, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2840), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2842), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2826), 3, + anon_sym_EQ, + ACTIONS(2398), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [33980] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2358), 1, + anon_sym_DASH_GT, + ACTIONS(2837), 1, + anon_sym_LPAREN2, + ACTIONS(2839), 1, + anon_sym_DOT, + STATE(677), 1, + sym_argument_list, + ACTIONS(2388), 13, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2333), 4, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2335), 17, + ACTIONS(2390), 21, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -93224,15 +87818,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [33983] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [34037] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2754), 1, + ACTIONS(2735), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2752), 38, + anon_sym_RBRACE, + ACTIONS(2733), 37, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -93268,62 +87864,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34030] = 9, + [34084] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2339), 1, - anon_sym_LBRACK, - ACTIONS(2343), 1, - anon_sym_DASH_GT, - ACTIONS(2822), 1, - anon_sym_LPAREN2, - ACTIONS(2844), 1, - anon_sym_DOT, - STATE(728), 1, - sym_argument_list, - ACTIONS(2341), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2349), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2351), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [34089] = 3, + ACTIONS(1265), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(1263), 37, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [34131] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2765), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2763), 37, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [34178] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2766), 1, + ACTIONS(1325), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2764), 38, + ACTIONS(1323), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -93362,83 +87996,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34136] = 21, + [34225] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2339), 1, - anon_sym_LBRACK, - ACTIONS(2343), 1, - anon_sym_DASH_GT, - ACTIONS(2501), 1, - anon_sym_EQ, - ACTIONS(2822), 1, - anon_sym_LPAREN2, - ACTIONS(2828), 1, - anon_sym_AMP_AMP, - ACTIONS(2830), 1, - anon_sym_PIPE, - ACTIONS(2832), 1, - anon_sym_CARET, - ACTIONS(2834), 1, - anon_sym_AMP, - ACTIONS(2844), 1, - anon_sym_DOT, - ACTIONS(2862), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2864), 1, - anon_sym_QMARK, - STATE(728), 1, - sym_argument_list, - ACTIONS(2341), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2824), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2836), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2838), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2840), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2842), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2826), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2499), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_RBRACK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [34219] = 5, + ACTIONS(2761), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2759), 37, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [34272] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1261), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(1259), 37, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [34319] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2870), 1, + ACTIONS(2878), 1, anon_sym___attribute__, - STATE(803), 1, + STATE(746), 1, sym_attribute_specifier, - ACTIONS(2868), 6, + ACTIONS(2876), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2866), 31, + ACTIONS(2874), 31, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -93470,13 +88130,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [34270] = 3, + [34370] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1273), 2, + ACTIONS(2773), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1271), 37, + ACTIONS(2771), 37, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -93514,62 +88174,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34317] = 8, + [34417] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2339), 1, - anon_sym_LBRACK, - ACTIONS(2343), 1, - anon_sym_DASH_GT, - ACTIONS(2822), 1, - anon_sym_LPAREN2, - ACTIONS(2844), 1, - anon_sym_DOT, - STATE(728), 1, - sym_argument_list, - ACTIONS(2345), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2347), 21, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - [34374] = 3, + ACTIONS(2777), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2775), 37, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [34464] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2758), 2, + ACTIONS(2731), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2756), 37, + ACTIONS(2729), 37, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -93607,15 +88262,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34421] = 3, + [34511] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1353), 2, + ACTIONS(1273), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1351), 37, + ACTIONS(1271), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -93651,68 +88306,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34468] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2339), 1, - anon_sym_LBRACK, - ACTIONS(2343), 1, - anon_sym_DASH_GT, - ACTIONS(2822), 1, - anon_sym_LPAREN2, - ACTIONS(2844), 1, - anon_sym_DOT, - STATE(728), 1, - sym_argument_list, - ACTIONS(2341), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2824), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2842), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2826), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2333), 6, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_EQ, - ACTIONS(2335), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [34533] = 3, + [34558] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2708), 2, + ACTIONS(2717), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2706), 37, + ACTIONS(2715), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -93748,80 +88350,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34580] = 11, + [34605] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2339), 1, - anon_sym_LBRACK, - ACTIONS(2343), 1, - anon_sym_DASH_GT, - ACTIONS(2822), 1, + ACTIONS(2885), 1, + anon_sym___attribute__, + STATE(780), 1, + sym_attribute_specifier, + ACTIONS(2883), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2844), 1, - anon_sym_DOT, - STATE(728), 1, - sym_argument_list, - ACTIONS(2341), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2824), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2826), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2333), 8, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2335), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [34643] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2433), 1, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - STATE(548), 1, - sym_string_literal, - ACTIONS(2860), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2431), 32, + ACTIONS(2881), 31, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -93841,20 +88395,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [34694] = 3, + [34656] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2708), 1, + ACTIONS(2781), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2706), 38, + anon_sym_RBRACE, + ACTIONS(2779), 37, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -93890,13 +88440,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34741] = 3, + [34703] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2746), 2, + ACTIONS(2727), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2744), 37, + ACTIONS(2725), 37, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -93934,15 +88484,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34788] = 3, + [34750] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2738), 1, + ACTIONS(2757), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2736), 38, + anon_sym_RBRACE, + ACTIONS(2755), 37, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -93978,70 +88528,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34835] = 18, + [34797] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1764), 1, - anon_sym___based, - ACTIONS(2873), 1, - sym_identifier, - ACTIONS(2875), 1, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2358), 1, + anon_sym_DASH_GT, + ACTIONS(2837), 1, anon_sym_LPAREN2, - ACTIONS(2877), 1, + ACTIONS(2839), 1, + anon_sym_DOT, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2372), 13, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(2881), 1, - sym_primitive_type, - STATE(754), 1, - sym_alignas_qualifier, - STATE(1051), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1363), 1, - sym__type_declarator, - STATE(1909), 1, - sym_ms_based_modifier, - ACTIONS(49), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(2774), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(945), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1031), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2772), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2879), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1444), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [34911] = 5, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2374), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [34856] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2384), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + ACTIONS(2386), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [34902] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2364), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + ACTIONS(2366), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [34948] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2596), 1, + ACTIONS(2523), 1, anon_sym_EQ, - ACTIONS(2598), 10, + ACTIONS(2525), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -94052,7 +88680,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1708), 13, + ACTIONS(1724), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(1718), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [34998] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2392), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -94065,8 +88725,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(1702), 14, + ACTIONS(2394), 24, anon_sym_DOT_DOT_DOT, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -94078,13 +88739,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [34961] = 3, + [35044] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2357), 14, + ACTIONS(2360), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -94099,7 +88770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(2359), 24, + ACTIONS(2362), 24, anon_sym_DOT_DOT_DOT, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -94124,49 +88795,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [35007] = 18, + [35090] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1764), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2873), 1, + ACTIONS(2888), 1, sym_identifier, - ACTIONS(2875), 1, + ACTIONS(2890), 1, anon_sym_LPAREN2, - ACTIONS(2877), 1, + ACTIONS(2892), 1, anon_sym_STAR, - ACTIONS(2881), 1, + ACTIONS(2896), 1, sym_primitive_type, - STATE(754), 1, + STATE(708), 1, sym_alignas_qualifier, - STATE(1051), 1, + STATE(999), 1, sym_ms_unaligned_ptr_modifier, - STATE(1367), 1, + STATE(1317), 1, sym__type_declarator, - STATE(1909), 1, + STATE(1842), 1, sym_ms_based_modifier, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2774), 2, + ACTIONS(2800), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(944), 2, + STATE(896), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1037), 2, + STATE(989), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2772), 3, + ACTIONS(2798), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(2879), 4, + ACTIONS(2894), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1444), 5, + STATE(1382), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -94182,49 +88853,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [35083] = 18, + [35166] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1764), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2873), 1, + ACTIONS(2888), 1, sym_identifier, - ACTIONS(2875), 1, + ACTIONS(2890), 1, anon_sym_LPAREN2, - ACTIONS(2877), 1, + ACTIONS(2892), 1, anon_sym_STAR, - ACTIONS(2881), 1, + ACTIONS(2896), 1, sym_primitive_type, - STATE(754), 1, + STATE(708), 1, sym_alignas_qualifier, - STATE(1051), 1, + STATE(999), 1, sym_ms_unaligned_ptr_modifier, - STATE(1363), 1, + STATE(1310), 1, sym__type_declarator, - STATE(1909), 1, + STATE(1842), 1, sym_ms_based_modifier, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2774), 2, + ACTIONS(2800), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1008), 2, + STATE(897), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1031), 2, + STATE(988), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2772), 3, + ACTIONS(2798), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(2879), 4, + ACTIONS(2894), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1444), 5, + STATE(1382), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -94240,49 +88911,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [35159] = 18, + [35242] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1764), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2873), 1, + ACTIONS(2888), 1, sym_identifier, - ACTIONS(2875), 1, + ACTIONS(2890), 1, anon_sym_LPAREN2, - ACTIONS(2877), 1, + ACTIONS(2892), 1, anon_sym_STAR, - ACTIONS(2881), 1, + ACTIONS(2896), 1, sym_primitive_type, - STATE(754), 1, + STATE(708), 1, sym_alignas_qualifier, - STATE(1051), 1, + STATE(999), 1, sym_ms_unaligned_ptr_modifier, - STATE(1364), 1, + STATE(1310), 1, sym__type_declarator, - STATE(1909), 1, + STATE(1842), 1, sym_ms_based_modifier, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2774), 2, + ACTIONS(2800), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1008), 2, + STATE(962), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1040), 2, + STATE(988), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2772), 3, + ACTIONS(2798), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(2879), 4, + ACTIONS(2894), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1444), 5, + STATE(1382), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -94298,79 +88969,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [35235] = 3, + [35318] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2369), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(2371), 24, - anon_sym_DOT_DOT_DOT, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2888), 1, + sym_identifier, + ACTIONS(2890), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [35281] = 3, + ACTIONS(2892), 1, + anon_sym_STAR, + ACTIONS(2896), 1, + sym_primitive_type, + STATE(708), 1, + sym_alignas_qualifier, + STATE(999), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1323), 1, + sym__type_declarator, + STATE(1842), 1, + sym_ms_based_modifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2800), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(962), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(982), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2798), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2894), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1382), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [35394] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2373), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(1733), 1, anon_sym_EQ, - anon_sym_DOT, - ACTIONS(2375), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, + ACTIONS(2898), 1, + anon_sym_SEMI, + ACTIONS(1737), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -94381,13 +89045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [35327] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2353), 14, + ACTIONS(1724), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -94400,10 +89058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(2355), 24, - anon_sym_DOT_DOT_DOT, + ACTIONS(1718), 13, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -94412,29 +89067,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DOT, anon_sym_DASH_GT, - [35373] = 3, + [35445] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2885), 3, + ACTIONS(2902), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK_LBRACK, - ACTIONS(2883), 34, + ACTIONS(2900), 34, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -94469,28 +89114,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [35418] = 9, + [35490] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2549), 1, + ACTIONS(2619), 1, anon_sym_LPAREN2, - ACTIONS(2887), 1, + ACTIONS(2904), 1, anon_sym_COMMA, - ACTIONS(2890), 1, + ACTIONS(2907), 1, anon_sym_RPAREN, - STATE(787), 1, + STATE(782), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1654), 1, + STATE(1639), 1, aux_sym__old_style_parameter_list_repeat1, - ACTIONS(1713), 2, + ACTIONS(1729), 2, anon_sym_STAR, anon_sym_LBRACK_LBRACK, - ACTIONS(1715), 4, + ACTIONS(1731), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(1700), 26, + ACTIONS(1716), 26, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -94517,10 +89162,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [35475] = 3, + [35547] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1211), 17, + ACTIONS(1203), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -94538,7 +89183,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1213), 19, + ACTIONS(1205), 19, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [35591] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1191), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + ACTIONS(1193), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -94558,10 +89244,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [35519] = 3, + [35635] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1147), 17, + ACTIONS(1207), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -94579,7 +89265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1149), 19, + ACTIONS(1209), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -94599,10 +89285,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [35563] = 3, + [35679] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1147), 17, + ACTIONS(1203), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -94620,7 +89306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1149), 19, + ACTIONS(1205), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -94640,10 +89326,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [35607] = 3, + [35723] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1143), 17, + ACTIONS(1131), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -94661,7 +89347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1145), 19, + ACTIONS(1133), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -94681,10 +89367,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [35651] = 3, + [35767] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1151), 17, + ACTIONS(1211), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -94702,7 +89388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1153), 19, + ACTIONS(1213), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -94722,10 +89408,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [35695] = 3, + [35811] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1143), 17, + ACTIONS(1207), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -94743,7 +89429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1145), 19, + ACTIONS(1209), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -94763,10 +89449,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [35739] = 3, + [35855] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1239), 17, + ACTIONS(1131), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -94784,7 +89470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1241), 19, + ACTIONS(1133), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -94804,66 +89490,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [35783] = 3, + [35899] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1239), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - ACTIONS(1241), 19, + ACTIONS(2913), 1, anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, + ACTIONS(2917), 1, + anon_sym_LBRACK, + STATE(782), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(1729), 2, + anon_sym_COMMA, anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [35827] = 7, + ACTIONS(2910), 2, + anon_sym_RPAREN, + anon_sym_LBRACK_LBRACK, + ACTIONS(1731), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(1716), 25, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [35953] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2549), 1, + ACTIONS(2619), 1, anon_sym_LPAREN2, - STATE(787), 1, + STATE(782), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(1713), 2, + ACTIONS(1729), 2, anon_sym_STAR, anon_sym_LBRACK_LBRACK, - ACTIONS(2893), 2, + ACTIONS(2920), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1715), 4, + ACTIONS(1731), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(1700), 26, + ACTIONS(1716), 26, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -94890,10 +89581,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [35879] = 3, + [36005] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1243), 17, + ACTIONS(1135), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -94911,7 +89602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1245), 19, + ACTIONS(1137), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -94931,56 +89622,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [35923] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2899), 1, - anon_sym_LPAREN2, - ACTIONS(2903), 1, - anon_sym_LBRACK, - STATE(787), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(1713), 2, - anon_sym_COMMA, - anon_sym_STAR, - ACTIONS(2896), 2, - anon_sym_RPAREN, - anon_sym_LBRACK_LBRACK, - ACTIONS(1715), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(1700), 25, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - [35977] = 3, + [36049] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1243), 17, + ACTIONS(1191), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -94998,7 +89643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1245), 19, + ACTIONS(1193), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -95018,44 +89663,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [36021] = 17, + [36093] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1760), 1, + ACTIONS(1209), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(1207), 32, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [36135] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, anon_sym_LPAREN2, - ACTIONS(1762), 1, + ACTIONS(1781), 1, anon_sym_STAR, - ACTIONS(1764), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2768), 1, + ACTIONS(2794), 1, sym_identifier, - ACTIONS(2776), 1, + ACTIONS(2802), 1, anon_sym_LBRACK, - STATE(754), 1, + STATE(708), 1, sym_alignas_qualifier, - STATE(1310), 1, + STATE(1261), 1, sym__declarator, - STATE(1473), 1, + STATE(1430), 1, sym__abstract_declarator, - STATE(1494), 1, + STATE(1443), 1, sym_parameter_list, - STATE(1943), 1, + STATE(1827), 1, sym_ms_based_modifier, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2906), 2, + ACTIONS(2923), 2, anon_sym_COMMA, anon_sym_RPAREN, - STATE(1039), 2, + STATE(985), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1495), 4, + STATE(1442), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - STATE(1371), 5, + STATE(1322), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -95071,14 +89755,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [36091] = 4, + [36205] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2391), 1, + ACTIONS(1209), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2908), 1, - anon_sym_typedef, - ACTIONS(2389), 32, + anon_sym_LBRACE, + ACTIONS(1207), 32, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -95111,67 +89794,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36135] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym_const, - ACTIONS(1888), 1, - anon_sym_LPAREN2, - ACTIONS(1890), 1, - anon_sym_STAR, - ACTIONS(2772), 1, - sym_ms_restrict_modifier, - ACTIONS(2776), 1, - anon_sym_LBRACK, - STATE(754), 1, - sym_alignas_qualifier, - STATE(1051), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1486), 1, - sym__abstract_declarator, - STATE(1494), 1, - sym_parameter_list, - ACTIONS(2912), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2914), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(2916), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(981), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1129), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2789), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - STATE(1495), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - ACTIONS(2910), 8, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [36207] = 3, + [36247] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2918), 2, + ACTIONS(1205), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(2815), 32, + ACTIONS(1203), 32, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -95204,13 +89833,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36249] = 3, + [36289] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1245), 2, + ACTIONS(1205), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(1243), 32, + ACTIONS(1203), 32, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -95243,13 +89872,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36291] = 3, + [36331] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1153), 2, + ACTIONS(1193), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(1151), 32, + ACTIONS(1191), 32, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -95282,14 +89911,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36333] = 4, + [36373] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_const, + ACTIONS(1907), 1, + anon_sym_LPAREN2, + ACTIONS(1909), 1, + anon_sym_STAR, + ACTIONS(2798), 1, + sym_ms_restrict_modifier, + ACTIONS(2802), 1, + anon_sym_LBRACK, + STATE(708), 1, + sym_alignas_qualifier, + STATE(999), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1414), 1, + sym__abstract_declarator, + STATE(1443), 1, + sym_parameter_list, + ACTIONS(2927), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2929), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(2931), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(962), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1077), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2804), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(1442), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + ACTIONS(2925), 8, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [36445] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2391), 1, + ACTIONS(1193), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2920), 1, - anon_sym_typedef, - ACTIONS(2389), 32, + anon_sym_LBRACE, + ACTIONS(1191), 32, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -95322,13 +90004,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36377] = 3, + [36487] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_const, + ACTIONS(1907), 1, + anon_sym_LPAREN2, + ACTIONS(1909), 1, + anon_sym_STAR, + ACTIONS(2798), 1, + sym_ms_restrict_modifier, + ACTIONS(2802), 1, + anon_sym_LBRACK, + STATE(708), 1, + sym_alignas_qualifier, + STATE(999), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1402), 1, + sym__abstract_declarator, + STATE(1443), 1, + sym_parameter_list, + ACTIONS(2927), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2929), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(2931), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(919), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1082), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2796), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(1442), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + ACTIONS(2925), 8, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [36559] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1145), 2, + ACTIONS(2935), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(1143), 32, + ACTIONS(2933), 32, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -95361,13 +90097,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36419] = 3, + [36601] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1245), 2, + ACTIONS(2937), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(1243), 32, + ACTIONS(2811), 32, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -95400,13 +90136,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36461] = 3, + [36643] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1241), 2, + ACTIONS(2941), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(1239), 32, + ACTIONS(2939), 32, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -95439,13 +90175,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36503] = 3, + [36685] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1241), 2, + ACTIONS(1213), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(1239), 32, + ACTIONS(1211), 32, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -95478,13 +90214,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36545] = 3, + [36727] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2924), 2, + ACTIONS(2406), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2922), 32, + ACTIONS(2943), 1, + anon_sym_typedef, + ACTIONS(2404), 32, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -95517,13 +90254,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36587] = 3, + [36771] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1145), 2, + ACTIONS(2406), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1143), 32, + ACTIONS(2945), 1, + anon_sym_typedef, + ACTIONS(2404), 32, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -95556,66 +90294,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36629] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1760), 1, - anon_sym_LPAREN2, - ACTIONS(1762), 1, - anon_sym_STAR, - ACTIONS(1764), 1, - anon_sym___based, - ACTIONS(2768), 1, - sym_identifier, - ACTIONS(2776), 1, - anon_sym_LBRACK, - STATE(754), 1, - sym_alignas_qualifier, - STATE(1319), 1, - sym__declarator, - STATE(1469), 1, - sym__abstract_declarator, - STATE(1494), 1, - sym_parameter_list, - STATE(1943), 1, - sym_ms_based_modifier, - ACTIONS(49), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(2770), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1039), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(1495), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1371), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [36699] = 3, + [36815] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1149), 2, + ACTIONS(1133), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(1147), 32, + ACTIONS(1131), 32, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -95648,53 +90333,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36741] = 4, + [36857] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2391), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2926), 1, - anon_sym_typedef, - ACTIONS(2389), 32, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [36785] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1149), 2, + ACTIONS(1133), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(1147), 32, + ACTIONS(1131), 32, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -95727,13 +90372,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36827] = 3, + [36899] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1213), 2, + ACTIONS(2406), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1211), 32, + ACTIONS(2947), 1, + anon_sym_typedef, + ACTIONS(2404), 32, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -95766,53 +90412,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36869] = 18, + [36943] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym_const, - ACTIONS(1888), 1, + ACTIONS(1779), 1, anon_sym_LPAREN2, - ACTIONS(1890), 1, + ACTIONS(1781), 1, anon_sym_STAR, - ACTIONS(2772), 1, - sym_ms_restrict_modifier, - ACTIONS(2776), 1, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2794), 1, + sym_identifier, + ACTIONS(2802), 1, anon_sym_LBRACK, - STATE(754), 1, + STATE(708), 1, sym_alignas_qualifier, - STATE(1051), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1469), 1, + STATE(1265), 1, + sym__declarator, + STATE(1414), 1, sym__abstract_declarator, - STATE(1494), 1, + STATE(1443), 1, sym_parameter_list, - ACTIONS(2912), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2914), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(2916), 2, + STATE(1827), 1, + sym_ms_based_modifier, + ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1008), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1133), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2770), 3, + ACTIONS(2804), 2, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_COLON, - STATE(1495), 4, + STATE(985), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(1442), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(2910), 8, + STATE(1322), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(47), 9, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -95820,13 +90465,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [36941] = 3, + [37013] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2930), 2, + ACTIONS(1137), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(2928), 32, + ACTIONS(1135), 32, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -95859,14 +90504,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36983] = 4, + [37055] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2391), 1, + ACTIONS(2406), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2932), 1, + ACTIONS(2949), 1, anon_sym_typedef, - ACTIONS(2389), 32, + ACTIONS(2404), 32, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -95899,42 +90544,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [37027] = 16, + [37099] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1764), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2934), 1, + ACTIONS(2951), 1, sym_identifier, - ACTIONS(2936), 1, + ACTIONS(2953), 1, anon_sym_LPAREN2, - ACTIONS(2938), 1, + ACTIONS(2955), 1, anon_sym_STAR, - STATE(754), 1, + STATE(708), 1, sym_alignas_qualifier, - STATE(1051), 1, + STATE(999), 1, sym_ms_unaligned_ptr_modifier, - STATE(1355), 1, + STATE(1303), 1, sym__field_declarator, - STATE(1993), 1, + STATE(1732), 1, sym_ms_based_modifier, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2774), 2, + ACTIONS(2800), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1008), 2, + STATE(962), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1139), 2, + STATE(1086), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2772), 3, + ACTIONS(2798), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1414), 5, + STATE(1349), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -95950,42 +90595,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [37094] = 16, + [37166] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1764), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2934), 1, + ACTIONS(2951), 1, sym_identifier, - ACTIONS(2936), 1, + ACTIONS(2953), 1, anon_sym_LPAREN2, - ACTIONS(2938), 1, + ACTIONS(2955), 1, anon_sym_STAR, - STATE(754), 1, + STATE(708), 1, sym_alignas_qualifier, - STATE(1051), 1, + STATE(999), 1, sym_ms_unaligned_ptr_modifier, - STATE(1353), 1, + STATE(1295), 1, sym__field_declarator, - STATE(1993), 1, + STATE(1732), 1, sym_ms_based_modifier, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2774), 2, + ACTIONS(2800), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1008), 2, + STATE(962), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1134), 2, + STATE(1089), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2772), 3, + ACTIONS(2798), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1414), 5, + STATE(1349), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -96001,357 +90646,414 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [37161] = 10, + [37233] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2942), 1, + ACTIONS(2617), 1, + aux_sym_preproc_elif_token1, + ACTIONS(2961), 1, anon_sym_SLASH, - STATE(728), 1, + ACTIONS(2963), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2965), 1, + anon_sym_AMP_AMP, + ACTIONS(2967), 1, + anon_sym_PIPE, + ACTIONS(2969), 1, + anon_sym_CARET, + ACTIONS(2971), 1, + anon_sym_AMP, + ACTIONS(2981), 1, + anon_sym_QMARK, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2940), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2333), 7, - aux_sym_preproc_elif_token1, + ACTIONS(2957), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(2959), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2973), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2975), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2335), 16, + ACTIONS(2977), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2979), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2615), 6, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_QMARK, sym_identifier, - [37216] = 21, + [37310] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2794), 1, + sym_identifier, + ACTIONS(2983), 1, + anon_sym_LPAREN2, + ACTIONS(2985), 1, + anon_sym_STAR, + STATE(708), 1, + sym_alignas_qualifier, + STATE(999), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1265), 1, + sym__declarator, + STATE(1827), 1, + sym_ms_based_modifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2800), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(953), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1087), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2798), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1322), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [37377] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2951), 1, + sym_identifier, + ACTIONS(2953), 1, anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2955), 1, + anon_sym_STAR, + STATE(708), 1, + sym_alignas_qualifier, + STATE(999), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1295), 1, + sym__field_declarator, + STATE(1732), 1, + sym_ms_based_modifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2800), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(934), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1089), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2798), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1349), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [37444] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2352), 1, + anon_sym_LPAREN2, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2942), 1, + ACTIONS(2961), 1, anon_sym_SLASH, - ACTIONS(2946), 1, - aux_sym_preproc_elif_token1, - ACTIONS(2950), 1, + ACTIONS(2963), 1, anon_sym_PIPE_PIPE, - ACTIONS(2952), 1, + ACTIONS(2965), 1, anon_sym_AMP_AMP, - ACTIONS(2954), 1, + ACTIONS(2967), 1, anon_sym_PIPE, - ACTIONS(2956), 1, + ACTIONS(2969), 1, anon_sym_CARET, - ACTIONS(2958), 1, + ACTIONS(2971), 1, anon_sym_AMP, - ACTIONS(2968), 1, + ACTIONS(2981), 1, anon_sym_QMARK, - STATE(728), 1, + ACTIONS(2989), 1, + aux_sym_preproc_elif_token1, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2940), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2948), 2, + ACTIONS(2957), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2960), 2, + ACTIONS(2959), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2973), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2962), 2, + ACTIONS(2975), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2964), 2, + ACTIONS(2977), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2966), 2, + ACTIONS(2979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2944), 6, + ACTIONS(2987), 6, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, sym_identifier, - [37293] = 21, + [37521] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2602), 1, - aux_sym_preproc_elif_token1, - ACTIONS(2942), 1, + ACTIONS(2961), 1, anon_sym_SLASH, - ACTIONS(2950), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2952), 1, - anon_sym_AMP_AMP, - ACTIONS(2954), 1, - anon_sym_PIPE, - ACTIONS(2956), 1, - anon_sym_CARET, - ACTIONS(2958), 1, - anon_sym_AMP, - ACTIONS(2968), 1, - anon_sym_QMARK, - STATE(728), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2940), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2948), 2, + ACTIONS(2957), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2960), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2962), 2, + ACTIONS(2959), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2376), 5, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2964), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2966), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2600), 6, + ACTIONS(2378), 16, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, sym_identifier, - [37370] = 19, + [37578] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2333), 1, - aux_sym_preproc_elif_token1, - ACTIONS(2337), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2942), 1, + ACTIONS(2551), 1, + aux_sym_preproc_elif_token1, + ACTIONS(2961), 1, anon_sym_SLASH, - ACTIONS(2952), 1, + ACTIONS(2963), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2965), 1, anon_sym_AMP_AMP, - ACTIONS(2954), 1, + ACTIONS(2967), 1, anon_sym_PIPE, - ACTIONS(2956), 1, + ACTIONS(2969), 1, anon_sym_CARET, - ACTIONS(2958), 1, + ACTIONS(2971), 1, anon_sym_AMP, - STATE(728), 1, + ACTIONS(2981), 1, + anon_sym_QMARK, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2940), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2948), 2, + ACTIONS(2957), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2960), 2, + ACTIONS(2959), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2973), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2962), 2, + ACTIONS(2975), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2964), 2, + ACTIONS(2977), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2966), 2, + ACTIONS(2979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2335), 8, + ACTIONS(2549), 6, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_QMARK, - sym_identifier, - [37443] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1764), 1, - anon_sym___based, - ACTIONS(2934), 1, sym_identifier, - ACTIONS(2936), 1, - anon_sym_LPAREN2, - ACTIONS(2938), 1, - anon_sym_STAR, - STATE(754), 1, - sym_alignas_qualifier, - STATE(1051), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1355), 1, - sym__field_declarator, - STATE(1993), 1, - sym_ms_based_modifier, - ACTIONS(49), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(2774), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(985), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1139), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2772), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1414), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [37510] = 18, + [37655] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2333), 1, - aux_sym_preproc_elif_token1, - ACTIONS(2337), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2942), 1, + ACTIONS(2587), 1, + aux_sym_preproc_elif_token1, + ACTIONS(2961), 1, anon_sym_SLASH, - ACTIONS(2954), 1, + ACTIONS(2963), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2965), 1, + anon_sym_AMP_AMP, + ACTIONS(2967), 1, anon_sym_PIPE, - ACTIONS(2956), 1, + ACTIONS(2969), 1, anon_sym_CARET, - ACTIONS(2958), 1, + ACTIONS(2971), 1, anon_sym_AMP, - STATE(728), 1, + ACTIONS(2981), 1, + anon_sym_QMARK, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2940), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2948), 2, + ACTIONS(2957), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2960), 2, + ACTIONS(2959), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2973), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2962), 2, + ACTIONS(2975), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2964), 2, + ACTIONS(2977), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2966), 2, + ACTIONS(2979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2335), 9, + ACTIONS(2585), 6, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_QMARK, sym_identifier, - [37581] = 16, + [37732] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1764), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2768), 1, + ACTIONS(2794), 1, sym_identifier, - ACTIONS(2970), 1, + ACTIONS(2983), 1, anon_sym_LPAREN2, - ACTIONS(2972), 1, + ACTIONS(2985), 1, anon_sym_STAR, - STATE(754), 1, + STATE(708), 1, sym_alignas_qualifier, - STATE(1051), 1, + STATE(999), 1, sym_ms_unaligned_ptr_modifier, - STATE(1310), 1, + STATE(1265), 1, sym__declarator, - STATE(1943), 1, + STATE(1827), 1, sym_ms_based_modifier, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2774), 2, + ACTIONS(2800), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1008), 2, + STATE(962), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1136), 2, + STATE(1087), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2772), 3, + ACTIONS(2798), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1371), 5, + STATE(1322), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -96367,49 +91069,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [37648] = 17, + [37799] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2942), 1, + ACTIONS(2961), 1, anon_sym_SLASH, - ACTIONS(2956), 1, - anon_sym_CARET, - ACTIONS(2958), 1, - anon_sym_AMP, - STATE(728), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2333), 2, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2940), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2948), 2, + ACTIONS(2957), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2960), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2962), 2, + ACTIONS(2959), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2975), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2964), 2, + ACTIONS(2977), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2966), 2, + ACTIONS(2979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2335), 9, + ACTIONS(2376), 3, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2378), 12, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -96417,99 +91113,94 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_QMARK, sym_identifier, - [37717] = 16, + [37862] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2942), 1, + ACTIONS(2376), 1, + aux_sym_preproc_elif_token1, + ACTIONS(2961), 1, anon_sym_SLASH, - ACTIONS(2958), 1, + ACTIONS(2965), 1, + anon_sym_AMP_AMP, + ACTIONS(2967), 1, + anon_sym_PIPE, + ACTIONS(2969), 1, + anon_sym_CARET, + ACTIONS(2971), 1, anon_sym_AMP, - STATE(728), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2333), 2, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2940), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2948), 2, + ACTIONS(2957), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2960), 2, + ACTIONS(2959), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2973), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2962), 2, + ACTIONS(2975), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2964), 2, + ACTIONS(2977), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2966), 2, + ACTIONS(2979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2335), 10, + ACTIONS(2378), 8, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_QMARK, sym_identifier, - [37784] = 15, + [37935] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2942), 1, + ACTIONS(2961), 1, anon_sym_SLASH, - STATE(728), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2940), 2, + ACTIONS(2959), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2948), 2, + ACTIONS(2376), 7, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2960), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2962), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2964), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2966), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2333), 3, - aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(2335), 10, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2378), 16, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -96518,45 +91209,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, sym_identifier, - [37849] = 14, + [37990] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2942), 1, + ACTIONS(2376), 1, + aux_sym_preproc_elif_token1, + ACTIONS(2961), 1, anon_sym_SLASH, - STATE(728), 1, + ACTIONS(2967), 1, + anon_sym_PIPE, + ACTIONS(2969), 1, + anon_sym_CARET, + ACTIONS(2971), 1, + anon_sym_AMP, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2940), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2948), 2, + ACTIONS(2957), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2962), 2, + ACTIONS(2959), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2973), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2975), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2964), 2, + ACTIONS(2977), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2966), 2, + ACTIONS(2979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2333), 3, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2335), 12, + ACTIONS(2378), 9, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -96564,44 +91268,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_QMARK, sym_identifier, - [37912] = 12, + [38061] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2942), 1, + ACTIONS(2961), 1, anon_sym_SLASH, - STATE(728), 1, + ACTIONS(2969), 1, + anon_sym_CARET, + ACTIONS(2971), 1, + anon_sym_AMP, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2940), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2948), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2966), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2333), 5, + ACTIONS(2376), 2, aux_sym_preproc_elif_token1, anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(2957), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2959), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2973), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2975), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2335), 14, + ACTIONS(2977), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2979), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2378), 9, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -96609,43 +91320,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_QMARK, sym_identifier, - [37971] = 11, + [38130] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2942), 1, + ACTIONS(2961), 1, anon_sym_SLASH, - STATE(728), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2940), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2948), 2, + ACTIONS(2957), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2333), 5, + ACTIONS(2959), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2979), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2376), 5, aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2335), 16, + ACTIONS(2378), 14, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -96658,158 +91367,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_QMARK, sym_identifier, - [38028] = 21, + [38189] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2501), 1, - aux_sym_preproc_elif_token1, - ACTIONS(2942), 1, + ACTIONS(2961), 1, anon_sym_SLASH, - ACTIONS(2950), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2952), 1, - anon_sym_AMP_AMP, - ACTIONS(2954), 1, - anon_sym_PIPE, - ACTIONS(2956), 1, - anon_sym_CARET, - ACTIONS(2958), 1, + ACTIONS(2971), 1, anon_sym_AMP, - ACTIONS(2968), 1, - anon_sym_QMARK, - STATE(728), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2940), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2948), 2, + ACTIONS(2376), 2, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + ACTIONS(2957), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2960), 2, + ACTIONS(2959), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2973), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2962), 2, + ACTIONS(2975), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2964), 2, + ACTIONS(2977), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2966), 2, + ACTIONS(2979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2499), 6, + ACTIONS(2378), 10, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_QMARK, sym_identifier, - [38105] = 21, + [38256] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2594), 1, - aux_sym_preproc_elif_token1, - ACTIONS(2942), 1, + ACTIONS(2961), 1, anon_sym_SLASH, - ACTIONS(2950), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2952), 1, - anon_sym_AMP_AMP, - ACTIONS(2954), 1, - anon_sym_PIPE, - ACTIONS(2956), 1, - anon_sym_CARET, - ACTIONS(2958), 1, - anon_sym_AMP, - ACTIONS(2968), 1, - anon_sym_QMARK, - STATE(728), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2940), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2948), 2, + ACTIONS(2957), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2960), 2, + ACTIONS(2959), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2973), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2962), 2, + ACTIONS(2975), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2964), 2, + ACTIONS(2977), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2966), 2, + ACTIONS(2979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2592), 6, + ACTIONS(2376), 3, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2378), 10, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_QMARK, sym_identifier, - [38182] = 16, + [38321] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1764), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2768), 1, + ACTIONS(2794), 1, sym_identifier, - ACTIONS(2970), 1, + ACTIONS(2983), 1, anon_sym_LPAREN2, - ACTIONS(2972), 1, + ACTIONS(2985), 1, anon_sym_STAR, - STATE(754), 1, + STATE(708), 1, sym_alignas_qualifier, - STATE(1051), 1, + STATE(999), 1, sym_ms_unaligned_ptr_modifier, - STATE(1312), 1, + STATE(1259), 1, sym__declarator, - STATE(1943), 1, + STATE(1827), 1, sym_ms_based_modifier, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2774), 2, + ACTIONS(2800), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1004), 2, + STATE(943), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1137), 2, + STATE(1085), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2772), 3, + ACTIONS(2798), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1371), 5, + STATE(1322), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -96825,93 +91521,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [38249] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1764), 1, - anon_sym___based, - ACTIONS(2934), 1, - sym_identifier, - ACTIONS(2936), 1, - anon_sym_LPAREN2, - ACTIONS(2938), 1, - anon_sym_STAR, - STATE(754), 1, - sym_alignas_qualifier, - STATE(1051), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1354), 1, - sym__field_declarator, - STATE(1993), 1, - sym_ms_based_modifier, - ACTIONS(49), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(2774), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(984), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1138), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2772), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1414), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [38316] = 16, + [38388] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1764), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2768), 1, + ACTIONS(2794), 1, sym_identifier, - ACTIONS(2970), 1, + ACTIONS(2983), 1, anon_sym_LPAREN2, - ACTIONS(2972), 1, + ACTIONS(2985), 1, anon_sym_STAR, - STATE(754), 1, + STATE(708), 1, sym_alignas_qualifier, - STATE(1051), 1, + STATE(999), 1, sym_ms_unaligned_ptr_modifier, - STATE(1319), 1, + STATE(1261), 1, sym__declarator, - STATE(1943), 1, + STATE(1827), 1, sym_ms_based_modifier, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2774), 2, + ACTIONS(2800), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(992), 2, + STATE(962), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1135), 2, + STATE(1084), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2772), 3, + ACTIONS(2798), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1371), 5, + STATE(1322), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -96927,47 +91572,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [38383] = 16, + [38455] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1764), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2768), 1, + ACTIONS(2951), 1, sym_identifier, - ACTIONS(2970), 1, + ACTIONS(2953), 1, anon_sym_LPAREN2, - ACTIONS(2972), 1, + ACTIONS(2955), 1, anon_sym_STAR, - STATE(754), 1, + STATE(708), 1, sym_alignas_qualifier, - STATE(1051), 1, + STATE(999), 1, sym_ms_unaligned_ptr_modifier, - STATE(1319), 1, - sym__declarator, - STATE(1943), 1, + STATE(1291), 1, + sym__field_declarator, + STATE(1732), 1, sym_ms_based_modifier, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2774), 2, + ACTIONS(2800), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1008), 2, + STATE(935), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1135), 2, + STATE(1088), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2772), 3, + ACTIONS(2798), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1371), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, + STATE(1349), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, ACTIONS(47), 9, anon_sym___extension__, anon_sym_const, @@ -96978,87 +91623,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [38450] = 18, + [38522] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2978), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(2980), 1, - anon_sym_AMP_AMP, - ACTIONS(2982), 1, - anon_sym_PIPE, - ACTIONS(2984), 1, - anon_sym_CARET, - ACTIONS(2986), 1, - anon_sym_AMP, - STATE(728), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2974), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2976), 2, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2988), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2990), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2992), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2994), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2335), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [38520] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2337), 1, - anon_sym_LPAREN2, - ACTIONS(2339), 1, - anon_sym_LBRACK, - ACTIONS(2978), 1, - anon_sym_SLASH, - STATE(728), 1, - sym_argument_list, - ACTIONS(2341), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2974), 2, + ACTIONS(2376), 6, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2976), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2333), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2335), 16, + ACTIONS(2378), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -97075,342 +91667,247 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [38576] = 20, + [38576] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2978), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(2980), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(2982), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(2984), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(2986), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(2996), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2998), 1, - anon_sym_QMARK, - STATE(728), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2974), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2976), 2, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2988), 2, + ACTIONS(2995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2990), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2992), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2994), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2499), 6, + ACTIONS(2378), 8, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_PIPE_PIPE, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, - [38650] = 7, - ACTIONS(3), 1, - sym_comment, - STATE(1051), 1, - sym_ms_unaligned_ptr_modifier, - ACTIONS(3007), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1008), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(3004), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(3002), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(3000), 18, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [38698] = 20, + anon_sym_QMARK, + [38646] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2978), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(2980), 1, - anon_sym_AMP_AMP, - ACTIONS(2982), 1, - anon_sym_PIPE, - ACTIONS(2984), 1, - anon_sym_CARET, - ACTIONS(2986), 1, - anon_sym_AMP, - ACTIONS(2996), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2998), 1, - anon_sym_QMARK, - STATE(728), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2974), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2976), 2, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2988), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2990), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2992), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2994), 2, + ACTIONS(2995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2600), 6, + ACTIONS(2376), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2378), 14, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, - [38772] = 20, + anon_sym_QMARK, + [38704] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2978), 1, - anon_sym_SLASH, - ACTIONS(2980), 1, - anon_sym_AMP_AMP, - ACTIONS(2982), 1, + ACTIONS(2376), 1, anon_sym_PIPE, - ACTIONS(2984), 1, - anon_sym_CARET, - ACTIONS(2986), 1, + ACTIONS(2993), 1, + anon_sym_SLASH, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(2996), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2998), 1, - anon_sym_QMARK, - STATE(728), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2974), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2976), 2, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2988), 2, + ACTIONS(2995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2990), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2992), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2994), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2592), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - [38846] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2337), 1, - anon_sym_LPAREN2, - ACTIONS(2339), 1, - anon_sym_LBRACK, - ACTIONS(2978), 1, - anon_sym_SLASH, - STATE(728), 1, - sym_argument_list, - ACTIONS(2341), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2974), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2976), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2994), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2333), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2335), 14, + ACTIONS(2378), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [38904] = 14, + [38770] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2978), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - STATE(728), 1, - sym_argument_list, - ACTIONS(2333), 2, + ACTIONS(2997), 1, + anon_sym_AMP_AMP, + ACTIONS(2999), 1, anon_sym_PIPE, + ACTIONS(3001), 1, + anon_sym_CARET, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(2341), 2, + ACTIONS(3013), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3015), 1, + anon_sym_QMARK, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2974), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2976), 2, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2990), 2, + ACTIONS(2995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3005), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2992), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2994), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2335), 12, + ACTIONS(2615), 6, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, - anon_sym_QMARK, - [38966] = 15, + [38844] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2978), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - STATE(728), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2333), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2974), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2976), 2, + ACTIONS(2376), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2988), 2, + ACTIONS(2995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2990), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2992), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2994), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2335), 10, + ACTIONS(2378), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -97421,135 +91918,184 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [39030] = 16, + [38908] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2333), 1, - anon_sym_PIPE, - ACTIONS(2337), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2978), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(2986), 1, + ACTIONS(2997), 1, + anon_sym_AMP_AMP, + ACTIONS(2999), 1, + anon_sym_PIPE, + ACTIONS(3001), 1, + anon_sym_CARET, + ACTIONS(3003), 1, anon_sym_AMP, - STATE(728), 1, + ACTIONS(3013), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3015), 1, + anon_sym_QMARK, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2974), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2976), 2, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2988), 2, + ACTIONS(2995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2990), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2992), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2994), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2335), 10, + ACTIONS(2549), 6, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, - anon_sym_QMARK, - [39096] = 17, + [38982] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2333), 1, - anon_sym_PIPE, - ACTIONS(2337), 1, + STATE(999), 1, + sym_ms_unaligned_ptr_modifier, + ACTIONS(3024), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(962), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3021), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(3019), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(3017), 18, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [39030] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2978), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(2984), 1, + ACTIONS(2997), 1, + anon_sym_AMP_AMP, + ACTIONS(2999), 1, + anon_sym_PIPE, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(2986), 1, + ACTIONS(3003), 1, anon_sym_AMP, - STATE(728), 1, + ACTIONS(3013), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3015), 1, + anon_sym_QMARK, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2974), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2976), 2, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2988), 2, + ACTIONS(2995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2990), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2992), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2994), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2335), 9, + ACTIONS(2585), 6, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, - anon_sym_QMARK, - [39164] = 10, + [39104] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2978), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - STATE(728), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2976), 2, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2333), 6, + ACTIONS(2995), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2376), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2335), 16, + ACTIONS(2378), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -97566,90 +92112,189 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [39218] = 17, + [39160] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2978), 1, - anon_sym_SLASH, - ACTIONS(2982), 1, + ACTIONS(2376), 1, anon_sym_PIPE, - ACTIONS(2984), 1, + ACTIONS(2993), 1, + anon_sym_SLASH, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(2986), 1, + ACTIONS(3003), 1, anon_sym_AMP, - STATE(728), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2974), 2, + ACTIONS(2991), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2995), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2976), 2, + ACTIONS(3005), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3007), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3009), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3011), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2378), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [39228] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2352), 1, + anon_sym_LPAREN2, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2993), 1, + anon_sym_SLASH, + ACTIONS(2999), 1, + anon_sym_PIPE, + ACTIONS(3001), 1, + anon_sym_CARET, + ACTIONS(3003), 1, + anon_sym_AMP, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2988), 2, + ACTIONS(2995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2990), 2, + ACTIONS(3007), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3009), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3011), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2378), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [39296] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2352), 1, + anon_sym_LPAREN2, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2993), 1, + anon_sym_SLASH, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2376), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2991), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2992), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2994), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2335), 9, + ACTIONS(2378), 12, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [39286] = 15, + [39358] = 15, ACTIONS(3), 1, sym_comment, + ACTIONS(51), 1, + sym_primitive_type, ACTIONS(55), 1, anon_sym_struct, ACTIONS(57), 1, anon_sym_union, - ACTIONS(1680), 1, + ACTIONS(1696), 1, anon_sym_enum, - ACTIONS(3010), 1, + ACTIONS(1849), 1, sym_identifier, - ACTIONS(3014), 1, - sym_primitive_type, - STATE(754), 1, + STATE(708), 1, sym_alignas_qualifier, - STATE(1145), 1, - sym__type_specifier, - STATE(1171), 1, + STATE(1073), 1, + sym_type_specifier, + STATE(1091), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1286), 1, - sym__type_definition_type, + STATE(1856), 1, + sym_type_descriptor, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1032), 2, + STATE(983), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3012), 4, + ACTIONS(1694), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(822), 5, + STATE(771), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -97665,39 +92310,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [39349] = 15, + [39421] = 15, ACTIONS(3), 1, sym_comment, + ACTIONS(51), 1, + sym_primitive_type, ACTIONS(55), 1, anon_sym_struct, ACTIONS(57), 1, anon_sym_union, - ACTIONS(1680), 1, + ACTIONS(1696), 1, anon_sym_enum, - ACTIONS(3010), 1, + ACTIONS(1849), 1, sym_identifier, - ACTIONS(3014), 1, - sym_primitive_type, - STATE(754), 1, + STATE(708), 1, sym_alignas_qualifier, - STATE(1145), 1, - sym__type_specifier, - STATE(1171), 1, + STATE(1073), 1, + sym_type_specifier, + STATE(1091), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1290), 1, - sym__type_definition_type, + STATE(1850), 1, + sym_type_descriptor, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1032), 2, + STATE(983), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3012), 4, + ACTIONS(1694), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(822), 5, + STATE(771), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -97713,39 +92358,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [39412] = 15, + [39484] = 15, ACTIONS(3), 1, sym_comment, + ACTIONS(51), 1, + sym_primitive_type, ACTIONS(55), 1, anon_sym_struct, ACTIONS(57), 1, anon_sym_union, - ACTIONS(1680), 1, + ACTIONS(1696), 1, anon_sym_enum, - ACTIONS(3010), 1, + ACTIONS(1849), 1, sym_identifier, - ACTIONS(3014), 1, - sym_primitive_type, - STATE(754), 1, + STATE(708), 1, sym_alignas_qualifier, - STATE(1145), 1, - sym__type_specifier, - STATE(1171), 1, + STATE(1073), 1, + sym_type_specifier, + STATE(1091), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1289), 1, - sym__type_definition_type, + STATE(1753), 1, + sym_type_descriptor, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1032), 2, + STATE(983), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3012), 4, + ACTIONS(1694), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(822), 5, + STATE(771), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -97761,39 +92406,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [39475] = 15, + [39547] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(55), 1, anon_sym_struct, ACTIONS(57), 1, anon_sym_union, - ACTIONS(1680), 1, + ACTIONS(1696), 1, anon_sym_enum, - ACTIONS(3010), 1, + ACTIONS(3027), 1, sym_identifier, - ACTIONS(3014), 1, + ACTIONS(3031), 1, sym_primitive_type, - STATE(754), 1, + STATE(708), 1, sym_alignas_qualifier, - STATE(1145), 1, - sym__type_specifier, - STATE(1171), 1, + STATE(1092), 1, + sym_type_specifier, + STATE(1121), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1287), 1, + STATE(1237), 1, sym__type_definition_type, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1032), 2, + STATE(987), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3012), 4, + ACTIONS(3029), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(822), 5, + STATE(771), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -97809,39 +92454,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [39538] = 15, + [39610] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(55), 1, anon_sym_struct, ACTIONS(57), 1, anon_sym_union, - ACTIONS(1680), 1, + ACTIONS(1696), 1, anon_sym_enum, - ACTIONS(3010), 1, + ACTIONS(3027), 1, sym_identifier, - ACTIONS(3014), 1, + ACTIONS(3031), 1, sym_primitive_type, - STATE(754), 1, + STATE(708), 1, sym_alignas_qualifier, - STATE(1145), 1, - sym__type_specifier, - STATE(1171), 1, + STATE(1092), 1, + sym_type_specifier, + STATE(1121), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1285), 1, + STATE(1233), 1, sym__type_definition_type, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1032), 2, + STATE(987), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3012), 4, + ACTIONS(3029), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(822), 5, + STATE(771), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -97857,7 +92502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [39601] = 15, + [39673] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -97866,30 +92511,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(57), 1, anon_sym_union, - ACTIONS(1830), 1, + ACTIONS(1849), 1, sym_identifier, - ACTIONS(3016), 1, + ACTIONS(3033), 1, anon_sym_enum, - STATE(754), 1, + STATE(708), 1, sym_alignas_qualifier, - STATE(1127), 1, - sym__type_specifier, - STATE(1141), 1, + STATE(1073), 1, + sym_type_specifier, + STATE(1091), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1956), 1, + STATE(1835), 1, sym_type_descriptor, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1042), 2, + STATE(990), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1678), 4, + ACTIONS(1694), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(822), 5, + STATE(771), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -97905,39 +92550,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [39664] = 15, + [39736] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - sym_primitive_type, ACTIONS(55), 1, anon_sym_struct, ACTIONS(57), 1, anon_sym_union, - ACTIONS(1680), 1, + ACTIONS(1696), 1, anon_sym_enum, - ACTIONS(1830), 1, + ACTIONS(3027), 1, sym_identifier, - STATE(754), 1, + ACTIONS(3031), 1, + sym_primitive_type, + STATE(708), 1, sym_alignas_qualifier, - STATE(1127), 1, - sym__type_specifier, - STATE(1141), 1, + STATE(1092), 1, + sym_type_specifier, + STATE(1121), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1876), 1, - sym_type_descriptor, + STATE(1235), 1, + sym__type_definition_type, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1034), 2, + STATE(987), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1678), 4, + ACTIONS(3029), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(822), 5, + STATE(771), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -97953,39 +92598,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [39727] = 15, + [39799] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(55), 1, anon_sym_struct, ACTIONS(57), 1, anon_sym_union, - ACTIONS(1680), 1, + ACTIONS(1696), 1, anon_sym_enum, - ACTIONS(3010), 1, + ACTIONS(3027), 1, sym_identifier, - ACTIONS(3014), 1, + ACTIONS(3031), 1, sym_primitive_type, - STATE(754), 1, + STATE(708), 1, sym_alignas_qualifier, - STATE(1145), 1, - sym__type_specifier, - STATE(1171), 1, + STATE(1092), 1, + sym_type_specifier, + STATE(1121), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1283), 1, + STATE(1236), 1, sym__type_definition_type, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1032), 2, + STATE(987), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3012), 4, + ACTIONS(3029), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(822), 5, + STATE(771), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -98001,39 +92646,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [39790] = 15, + [39862] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - sym_primitive_type, ACTIONS(55), 1, anon_sym_struct, ACTIONS(57), 1, anon_sym_union, - ACTIONS(1680), 1, + ACTIONS(1696), 1, anon_sym_enum, - ACTIONS(1830), 1, + ACTIONS(3027), 1, sym_identifier, - STATE(754), 1, + ACTIONS(3031), 1, + sym_primitive_type, + STATE(708), 1, sym_alignas_qualifier, - STATE(1127), 1, - sym__type_specifier, - STATE(1141), 1, + STATE(1092), 1, + sym_type_specifier, + STATE(1121), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1874), 1, - sym_type_descriptor, + STATE(1238), 1, + sym__type_definition_type, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1034), 2, + STATE(987), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1678), 4, + ACTIONS(3029), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(822), 5, + STATE(771), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -98049,39 +92694,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [39853] = 15, + [39925] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(55), 1, anon_sym_struct, ACTIONS(57), 1, anon_sym_union, - ACTIONS(1680), 1, + ACTIONS(1696), 1, anon_sym_enum, - ACTIONS(3010), 1, + ACTIONS(3027), 1, sym_identifier, - ACTIONS(3014), 1, + ACTIONS(3031), 1, sym_primitive_type, - STATE(754), 1, + STATE(708), 1, sym_alignas_qualifier, - STATE(1145), 1, - sym__type_specifier, - STATE(1171), 1, + STATE(1092), 1, + sym_type_specifier, + STATE(1121), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1284), 1, + STATE(1239), 1, sym__type_definition_type, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1032), 2, + STATE(987), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3012), 4, + ACTIONS(3029), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(822), 5, + STATE(771), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -98097,39 +92742,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [39916] = 15, + [39988] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(55), 1, anon_sym_struct, ACTIONS(57), 1, anon_sym_union, - ACTIONS(1680), 1, + ACTIONS(1696), 1, anon_sym_enum, - ACTIONS(3010), 1, + ACTIONS(3027), 1, sym_identifier, - ACTIONS(3014), 1, + ACTIONS(3031), 1, sym_primitive_type, - STATE(754), 1, + STATE(708), 1, sym_alignas_qualifier, - STATE(1145), 1, - sym__type_specifier, - STATE(1171), 1, + STATE(1092), 1, + sym_type_specifier, + STATE(1121), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1288), 1, + STATE(1240), 1, sym__type_definition_type, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1032), 2, + STATE(987), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3012), 4, + ACTIONS(3029), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(822), 5, + STATE(771), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -98145,39 +92790,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [39979] = 15, + [40051] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - sym_primitive_type, ACTIONS(55), 1, anon_sym_struct, ACTIONS(57), 1, anon_sym_union, - ACTIONS(1680), 1, + ACTIONS(1696), 1, anon_sym_enum, - ACTIONS(1830), 1, + ACTIONS(3027), 1, sym_identifier, - STATE(754), 1, + ACTIONS(3031), 1, + sym_primitive_type, + STATE(708), 1, sym_alignas_qualifier, - STATE(1127), 1, - sym__type_specifier, - STATE(1141), 1, + STATE(1092), 1, + sym_type_specifier, + STATE(1121), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1866), 1, - sym_type_descriptor, + STATE(1234), 1, + sym__type_definition_type, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1034), 2, + STATE(987), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1678), 4, + ACTIONS(3029), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(822), 5, + STATE(771), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -98193,7 +92838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [40042] = 15, + [40114] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -98202,30 +92847,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(57), 1, anon_sym_union, - ACTIONS(1830), 1, + ACTIONS(1849), 1, sym_identifier, - ACTIONS(3016), 1, + ACTIONS(3033), 1, anon_sym_enum, - STATE(754), 1, + STATE(708), 1, sym_alignas_qualifier, - STATE(1127), 1, - sym__type_specifier, - STATE(1141), 1, + STATE(1073), 1, + sym_type_specifier, + STATE(1091), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1872), 1, + STATE(1927), 1, sym_type_descriptor, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1042), 2, + STATE(990), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1678), 4, + ACTIONS(1694), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(822), 5, + STATE(771), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -98241,37 +92886,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [40105] = 14, + [40177] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1764), 1, + ACTIONS(3035), 11, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + ACTIONS(3037), 19, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + [40215] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2873), 1, + ACTIONS(2888), 1, sym_identifier, - ACTIONS(2875), 1, + ACTIONS(2890), 1, anon_sym_LPAREN2, - ACTIONS(2877), 1, + ACTIONS(2892), 1, anon_sym_STAR, - ACTIONS(2881), 1, + ACTIONS(2896), 1, sym_primitive_type, - STATE(754), 1, + STATE(708), 1, sym_alignas_qualifier, - STATE(1364), 1, + STATE(1321), 1, sym__type_declarator, - STATE(1909), 1, + STATE(1842), 1, sym_ms_based_modifier, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1039), 2, + STATE(985), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2879), 4, + ACTIONS(2894), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1444), 5, + STATE(1382), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -98287,88 +92967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [40165] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(55), 1, - anon_sym_struct, - ACTIONS(57), 1, - anon_sym_union, - ACTIONS(1680), 1, - anon_sym_enum, - ACTIONS(3010), 1, - sym_identifier, - ACTIONS(3014), 1, - sym_primitive_type, - STATE(754), 1, - sym_alignas_qualifier, - STATE(1142), 1, - sym__type_specifier, - STATE(1171), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(49), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1039), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3012), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(822), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [40225] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3018), 11, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - ACTIONS(3020), 19, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - [40263] = 14, + [40275] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -98377,28 +92976,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(57), 1, anon_sym_union, - ACTIONS(1680), 1, + ACTIONS(1696), 1, anon_sym_enum, - ACTIONS(1830), 1, + ACTIONS(1849), 1, sym_identifier, - STATE(754), 1, + STATE(708), 1, sym_alignas_qualifier, - STATE(1132), 1, - sym__type_specifier, - STATE(1141), 1, + STATE(1083), 1, + sym_type_specifier, + STATE(1091), 1, aux_sym_sized_type_specifier_repeat1, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1039), 2, + STATE(985), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1678), 4, + ACTIONS(1694), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(822), 5, + STATE(771), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -98414,10 +93013,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [40323] = 3, + [40335] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3022), 11, + ACTIONS(3039), 11, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, @@ -98429,7 +93028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, sym_identifier, - ACTIONS(3024), 19, + ACTIONS(3041), 19, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -98449,10 +93048,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - [40361] = 3, + [40373] = 7, + ACTIONS(3), 1, + sym_comment, + STATE(708), 1, + sym_alignas_qualifier, + ACTIONS(3050), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(985), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3045), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(3047), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(3043), 10, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [40419] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3026), 11, + ACTIONS(3053), 11, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, @@ -98464,7 +93102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, sym_identifier, - ACTIONS(3028), 19, + ACTIONS(3055), 19, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -98484,42 +93122,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - [40399] = 14, + [40457] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1764), 1, - anon_sym___based, - ACTIONS(2873), 1, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(1696), 1, + anon_sym_enum, + ACTIONS(3027), 1, sym_identifier, - ACTIONS(2875), 1, - anon_sym_LPAREN2, - ACTIONS(2877), 1, - anon_sym_STAR, - ACTIONS(2881), 1, + ACTIONS(3031), 1, sym_primitive_type, - STATE(754), 1, + STATE(708), 1, sym_alignas_qualifier, - STATE(1363), 1, - sym__type_declarator, - STATE(1909), 1, - sym_ms_based_modifier, + STATE(1093), 1, + sym_type_specifier, + STATE(1121), 1, + aux_sym_sized_type_specifier_repeat1, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1039), 2, + STATE(985), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2879), 4, + ACTIONS(3029), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1444), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, + STATE(771), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, ACTIONS(47), 9, anon_sym___extension__, anon_sym_const, @@ -98530,78 +93168,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [40459] = 21, + [40517] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2888), 1, + sym_identifier, + ACTIONS(2890), 1, anon_sym_LPAREN2, - ACTIONS(2339), 1, - anon_sym_LBRACK, - ACTIONS(2978), 1, - anon_sym_SLASH, - ACTIONS(2980), 1, - anon_sym_AMP_AMP, - ACTIONS(2982), 1, - anon_sym_PIPE, - ACTIONS(2984), 1, - anon_sym_CARET, - ACTIONS(2986), 1, - anon_sym_AMP, - ACTIONS(2996), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2998), 1, - anon_sym_QMARK, - ACTIONS(3030), 1, - anon_sym_COMMA, - STATE(728), 1, - sym_argument_list, - ACTIONS(2341), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2974), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2976), 2, + ACTIONS(2892), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2988), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2990), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2992), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2994), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3032), 3, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - [40533] = 7, - ACTIONS(3), 1, - sym_comment, - STATE(754), 1, + ACTIONS(2896), 1, + sym_primitive_type, + STATE(708), 1, sym_alignas_qualifier, - ACTIONS(3041), 2, + STATE(1323), 1, + sym__type_declarator, + STATE(1842), 1, + sym_ms_based_modifier, + ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1039), 2, + STATE(985), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3036), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(3038), 9, + ACTIONS(2894), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1382), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(47), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -98611,48 +93214,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(3034), 10, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [40579] = 14, + [40577] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1764), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2873), 1, + ACTIONS(2888), 1, sym_identifier, - ACTIONS(2875), 1, + ACTIONS(2890), 1, anon_sym_LPAREN2, - ACTIONS(2877), 1, + ACTIONS(2892), 1, anon_sym_STAR, - ACTIONS(2881), 1, + ACTIONS(2896), 1, sym_primitive_type, - STATE(754), 1, + STATE(708), 1, sym_alignas_qualifier, - STATE(1372), 1, + STATE(1310), 1, sym__type_declarator, - STATE(1909), 1, + STATE(1842), 1, sym_ms_based_modifier, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1039), 2, + STATE(985), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2879), 4, + ACTIONS(2894), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1444), 5, + STATE(1382), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -98668,42 +93260,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [40639] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3044), 11, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - ACTIONS(3046), 19, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - [40677] = 14, + [40637] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -98712,28 +93269,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(57), 1, anon_sym_union, - ACTIONS(1830), 1, + ACTIONS(1849), 1, sym_identifier, - ACTIONS(3016), 1, + ACTIONS(3033), 1, anon_sym_enum, - STATE(754), 1, + STATE(708), 1, sym_alignas_qualifier, - STATE(1132), 1, - sym__type_specifier, - STATE(1141), 1, + STATE(1083), 1, + sym_type_specifier, + STATE(1091), 1, aux_sym_sized_type_specifier_repeat1, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1039), 2, + STATE(985), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1678), 4, + ACTIONS(1694), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(822), 5, + STATE(771), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -98749,280 +93306,404 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [40737] = 22, + [40697] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3057), 11, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + ACTIONS(3059), 19, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + [40735] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2978), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(2980), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(2982), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(2984), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(2986), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(2996), 1, + ACTIONS(3013), 1, anon_sym_PIPE_PIPE, - ACTIONS(2998), 1, + ACTIONS(3015), 1, anon_sym_QMARK, - ACTIONS(3048), 1, + ACTIONS(3061), 1, anon_sym_COMMA, - ACTIONS(3050), 1, - anon_sym_RPAREN, - STATE(728), 1, + STATE(677), 1, sym_argument_list, - STATE(1594), 1, - aux_sym_generic_expression_repeat1, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2974), 2, + ACTIONS(2991), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2995), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2976), 2, + ACTIONS(3005), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3007), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3009), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3011), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3063), 3, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + [40809] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2352), 1, + anon_sym_LPAREN2, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2993), 1, + anon_sym_SLASH, + ACTIONS(2997), 1, + anon_sym_AMP_AMP, + ACTIONS(2999), 1, + anon_sym_PIPE, + ACTIONS(3001), 1, + anon_sym_CARET, + ACTIONS(3003), 1, + anon_sym_AMP, + ACTIONS(3013), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3015), 1, + anon_sym_QMARK, + ACTIONS(3065), 1, + anon_sym_COMMA, + ACTIONS(3067), 1, + anon_sym_RBRACE, + STATE(677), 1, + sym_argument_list, + STATE(1594), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2988), 2, + ACTIONS(2995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2990), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2992), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2994), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [40812] = 22, + [40884] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3071), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(3069), 23, + anon_sym___extension__, + anon_sym___based, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + anon_sym__unaligned, + anon_sym___unaligned, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [40921] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2978), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(2980), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(2982), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(2984), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(2986), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(2996), 1, + ACTIONS(3013), 1, anon_sym_PIPE_PIPE, - ACTIONS(2998), 1, + ACTIONS(3015), 1, anon_sym_QMARK, - ACTIONS(3052), 1, + ACTIONS(3073), 1, anon_sym_COMMA, - ACTIONS(3054), 1, + ACTIONS(3075), 1, anon_sym_RPAREN, - STATE(728), 1, + STATE(677), 1, sym_argument_list, - STATE(1630), 1, + STATE(1588), 1, aux_sym_argument_list_repeat1, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2974), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2976), 2, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2988), 2, + ACTIONS(2995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2990), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2992), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2994), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [40887] = 22, + [40996] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2978), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(2980), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(2982), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(2984), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(2986), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(2996), 1, + ACTIONS(3013), 1, anon_sym_PIPE_PIPE, - ACTIONS(2998), 1, + ACTIONS(3015), 1, anon_sym_QMARK, - ACTIONS(3052), 1, + ACTIONS(3077), 1, anon_sym_COMMA, - ACTIONS(3056), 1, + ACTIONS(3079), 1, anon_sym_RPAREN, - STATE(728), 1, + STATE(677), 1, sym_argument_list, - STATE(1610), 1, - aux_sym_argument_list_repeat1, - ACTIONS(2341), 2, + STATE(1577), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2974), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2976), 2, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2988), 2, + ACTIONS(2995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2990), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2992), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2994), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [40962] = 20, + [41071] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2978), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(2980), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(2982), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(2984), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(2986), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(2996), 1, + ACTIONS(3013), 1, anon_sym_PIPE_PIPE, - ACTIONS(2998), 1, + ACTIONS(3015), 1, anon_sym_QMARK, - STATE(728), 1, + ACTIONS(3073), 1, + anon_sym_COMMA, + ACTIONS(3081), 1, + anon_sym_RPAREN, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + STATE(1586), 1, + aux_sym_argument_list_repeat1, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2974), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2976), 2, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2988), 2, + ACTIONS(2995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2990), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2992), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2994), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3058), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - [41033] = 22, + [41146] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2978), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(2980), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(2982), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(2984), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(2986), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(2996), 1, + ACTIONS(3013), 1, anon_sym_PIPE_PIPE, - ACTIONS(2998), 1, + ACTIONS(3015), 1, anon_sym_QMARK, - ACTIONS(3052), 1, + ACTIONS(3073), 1, anon_sym_COMMA, - ACTIONS(3060), 1, + ACTIONS(3083), 1, anon_sym_RPAREN, - STATE(728), 1, + STATE(677), 1, sym_argument_list, - STATE(1577), 1, + STATE(1629), 1, aux_sym_argument_list_repeat1, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2974), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2976), 2, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2988), 2, + ACTIONS(2995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2990), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2992), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2994), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [41108] = 3, + [41221] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3064), 6, + ACTIONS(3087), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(3062), 23, + ACTIONS(3085), 23, anon_sym___extension__, anon_sym___based, sym_ms_restrict_modifier, @@ -99046,130 +93727,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [41145] = 22, + [41258] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2978), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(2980), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(2982), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(2984), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(2986), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(2996), 1, + ACTIONS(3013), 1, anon_sym_PIPE_PIPE, - ACTIONS(2998), 1, + ACTIONS(3015), 1, anon_sym_QMARK, - ACTIONS(3066), 1, - anon_sym_COMMA, - ACTIONS(3068), 1, - anon_sym_RBRACE, - STATE(728), 1, + STATE(677), 1, sym_argument_list, - STATE(1679), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2974), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2976), 2, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2988), 2, + ACTIONS(2995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2990), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2992), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2994), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [41220] = 22, + ACTIONS(3089), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + [41329] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2978), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(2980), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(2982), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(2984), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(2986), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(2996), 1, + ACTIONS(3013), 1, anon_sym_PIPE_PIPE, - ACTIONS(2998), 1, + ACTIONS(3015), 1, anon_sym_QMARK, - ACTIONS(3052), 1, + ACTIONS(3073), 1, anon_sym_COMMA, - ACTIONS(3070), 1, + ACTIONS(3091), 1, anon_sym_RPAREN, - STATE(728), 1, + STATE(677), 1, sym_argument_list, - STATE(1659), 1, + STATE(1561), 1, aux_sym_argument_list_repeat1, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2974), 2, + ACTIONS(2991), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2995), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2976), 2, + ACTIONS(3005), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3007), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3009), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3011), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [41404] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2352), 1, + anon_sym_LPAREN2, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2993), 1, + anon_sym_SLASH, + ACTIONS(2997), 1, + anon_sym_AMP_AMP, + ACTIONS(2999), 1, + anon_sym_PIPE, + ACTIONS(3001), 1, + anon_sym_CARET, + ACTIONS(3003), 1, + anon_sym_AMP, + ACTIONS(3013), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3015), 1, + anon_sym_QMARK, + ACTIONS(3061), 1, + anon_sym_COMMA, + ACTIONS(3093), 1, + anon_sym_SEMI, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2988), 2, + ACTIONS(2995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2990), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2992), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2994), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [41295] = 3, + [41476] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3074), 6, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(2790), 1, + anon_sym_LBRACE, + STATE(781), 1, + sym_attribute_specifier, + STATE(1080), 1, + sym_enumerator_list, + ACTIONS(2832), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(3072), 23, + ACTIONS(2830), 18, anon_sym___extension__, anon_sym___based, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - anon_sym__unaligned, - anon_sym___unaligned, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -99186,3595 +93919,3445 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [41332] = 21, + [41520] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2978), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(2980), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(2982), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(2984), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(2986), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(2996), 1, + ACTIONS(3013), 1, anon_sym_PIPE_PIPE, - ACTIONS(2998), 1, + ACTIONS(3015), 1, anon_sym_QMARK, - ACTIONS(3030), 1, + ACTIONS(3061), 1, anon_sym_COMMA, - ACTIONS(3076), 1, + ACTIONS(3095), 1, anon_sym_SEMI, - STATE(728), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2974), 2, + ACTIONS(2991), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2995), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2976), 2, + ACTIONS(3005), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3007), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3009), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3011), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [41592] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2352), 1, + anon_sym_LPAREN2, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2993), 1, + anon_sym_SLASH, + ACTIONS(2997), 1, + anon_sym_AMP_AMP, + ACTIONS(2999), 1, + anon_sym_PIPE, + ACTIONS(3001), 1, + anon_sym_CARET, + ACTIONS(3003), 1, + anon_sym_AMP, + ACTIONS(3013), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3015), 1, + anon_sym_QMARK, + ACTIONS(3061), 1, + anon_sym_COMMA, + ACTIONS(3097), 1, + anon_sym_COLON, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2988), 2, + ACTIONS(2995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2990), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2992), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2994), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [41404] = 7, + [41664] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(2785), 1, - anon_sym_LBRACE, - STATE(826), 1, - sym_attribute_specifier, - STATE(1125), 1, - sym_enumerator_list, - ACTIONS(2793), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2358), 1, + anon_sym_DASH_GT, + ACTIONS(2837), 1, anon_sym_LPAREN2, + ACTIONS(2839), 1, + anon_sym_DOT, + ACTIONS(3103), 1, + anon_sym_SLASH, + ACTIONS(3105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3107), 1, + anon_sym_AMP_AMP, + ACTIONS(3109), 1, + anon_sym_PIPE, + ACTIONS(3111), 1, + anon_sym_CARET, + ACTIONS(3113), 1, + anon_sym_AMP, + ACTIONS(3123), 1, + anon_sym_QMARK, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2615), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACK, + ACTIONS(3099), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3101), 2, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(2791), 18, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [41448] = 21, + anon_sym_PERCENT, + ACTIONS(3115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3117), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3119), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3121), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [41736] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2978), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(2980), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(2982), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(2984), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(2986), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(2996), 1, + ACTIONS(3013), 1, anon_sym_PIPE_PIPE, - ACTIONS(2998), 1, + ACTIONS(3015), 1, anon_sym_QMARK, - ACTIONS(3030), 1, - anon_sym_COMMA, - ACTIONS(3078), 1, - anon_sym_SEMI, - STATE(728), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2974), 2, + ACTIONS(2991), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2995), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2976), 2, + ACTIONS(3005), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3007), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3009), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3011), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3125), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [41806] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2352), 1, + anon_sym_LPAREN2, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2993), 1, + anon_sym_SLASH, + ACTIONS(2997), 1, + anon_sym_AMP_AMP, + ACTIONS(2999), 1, + anon_sym_PIPE, + ACTIONS(3001), 1, + anon_sym_CARET, + ACTIONS(3003), 1, + anon_sym_AMP, + ACTIONS(3013), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3015), 1, + anon_sym_QMARK, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2988), 2, + ACTIONS(2995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2990), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2992), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2994), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [41520] = 21, + ACTIONS(3127), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [41876] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(2790), 1, + anon_sym_LBRACE, + ACTIONS(3129), 1, + anon_sym_COLON, + STATE(767), 1, + sym_attribute_specifier, + STATE(1081), 1, + sym_enumerator_list, + ACTIONS(2785), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + ACTIONS(2783), 18, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [41922] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2978), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(2980), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(2982), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(2984), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(2986), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(2996), 1, + ACTIONS(3013), 1, anon_sym_PIPE_PIPE, - ACTIONS(2998), 1, + ACTIONS(3015), 1, anon_sym_QMARK, - ACTIONS(3030), 1, - anon_sym_COMMA, - ACTIONS(3080), 1, - anon_sym_SEMI, - STATE(728), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2974), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2976), 2, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2988), 2, + ACTIONS(2995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2990), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2992), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2994), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [41592] = 20, + ACTIONS(3131), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [41992] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2978), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(2980), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(2982), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(2984), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(2986), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(2996), 1, + ACTIONS(3013), 1, anon_sym_PIPE_PIPE, - ACTIONS(2998), 1, + ACTIONS(3015), 1, anon_sym_QMARK, - STATE(728), 1, + ACTIONS(3061), 1, + anon_sym_COMMA, + ACTIONS(3133), 1, + anon_sym_SEMI, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2974), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2976), 2, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2988), 2, + ACTIONS(2995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2990), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2992), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2994), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3082), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [41662] = 21, + [42064] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, - anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2978), 1, + ACTIONS(2358), 1, + anon_sym_DASH_GT, + ACTIONS(2837), 1, + anon_sym_LPAREN2, + ACTIONS(2839), 1, + anon_sym_DOT, + ACTIONS(3103), 1, anon_sym_SLASH, - ACTIONS(2980), 1, - anon_sym_AMP_AMP, - ACTIONS(2982), 1, - anon_sym_PIPE, - ACTIONS(2984), 1, - anon_sym_CARET, - ACTIONS(2986), 1, - anon_sym_AMP, - ACTIONS(2996), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2998), 1, - anon_sym_QMARK, - ACTIONS(3030), 1, - anon_sym_COMMA, - ACTIONS(3084), 1, - anon_sym_COLON, - STATE(728), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2974), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2976), 2, + ACTIONS(3101), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2988), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2990), 2, + ACTIONS(2376), 6, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2992), 2, + ACTIONS(2378), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2994), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [41734] = 21, + anon_sym_RBRACK, + anon_sym_QMARK, + [42116] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2978), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(2980), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(2982), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(2984), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(2986), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(2996), 1, + ACTIONS(3013), 1, anon_sym_PIPE_PIPE, - ACTIONS(2998), 1, + ACTIONS(3015), 1, anon_sym_QMARK, - ACTIONS(3030), 1, + ACTIONS(3061), 1, anon_sym_COMMA, - ACTIONS(3086), 1, - anon_sym_RPAREN, - STATE(728), 1, + ACTIONS(3135), 1, + anon_sym_SEMI, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2974), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2976), 2, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2988), 2, + ACTIONS(2995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2990), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2992), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2994), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [41806] = 21, + [42188] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2978), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(2980), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(2982), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(2984), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(2986), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(2996), 1, + ACTIONS(3013), 1, anon_sym_PIPE_PIPE, - ACTIONS(2998), 1, + ACTIONS(3015), 1, anon_sym_QMARK, - ACTIONS(3030), 1, + ACTIONS(3061), 1, anon_sym_COMMA, - ACTIONS(3088), 1, + ACTIONS(3137), 1, anon_sym_SEMI, - STATE(728), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2974), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2976), 2, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2988), 2, + ACTIONS(2995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2990), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2992), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2994), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [41878] = 21, + [42260] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2978), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(2980), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(2982), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(2984), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(2986), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(2996), 1, + ACTIONS(3013), 1, anon_sym_PIPE_PIPE, - ACTIONS(2998), 1, + ACTIONS(3015), 1, anon_sym_QMARK, - ACTIONS(3030), 1, - anon_sym_COMMA, - ACTIONS(3090), 1, - anon_sym_COLON, - STATE(728), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2974), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2976), 2, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2988), 2, + ACTIONS(2995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2990), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2992), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2994), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [41950] = 21, + ACTIONS(3139), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [42330] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2343), 1, + ACTIONS(2358), 1, anon_sym_DASH_GT, - ACTIONS(2822), 1, + ACTIONS(2837), 1, anon_sym_LPAREN2, - ACTIONS(2844), 1, + ACTIONS(2839), 1, anon_sym_DOT, - ACTIONS(3096), 1, + ACTIONS(3103), 1, anon_sym_SLASH, - ACTIONS(3098), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3100), 1, - anon_sym_AMP_AMP, - ACTIONS(3102), 1, - anon_sym_PIPE, - ACTIONS(3104), 1, - anon_sym_CARET, - ACTIONS(3106), 1, - anon_sym_AMP, - ACTIONS(3116), 1, - anon_sym_QMARK, - STATE(728), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2600), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_RBRACK, - ACTIONS(3092), 2, + ACTIONS(3099), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3094), 2, + ACTIONS(3101), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3108), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3110), 2, + ACTIONS(3121), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2376), 4, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3112), 2, + ACTIONS(2378), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3114), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [42022] = 21, + anon_sym_RBRACK, + anon_sym_QMARK, + [42386] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2978), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(2980), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(2982), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(2984), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(2986), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(2996), 1, + ACTIONS(3013), 1, anon_sym_PIPE_PIPE, - ACTIONS(2998), 1, + ACTIONS(3015), 1, anon_sym_QMARK, - ACTIONS(3030), 1, + ACTIONS(3061), 1, anon_sym_COMMA, - ACTIONS(3118), 1, - anon_sym_COLON, - STATE(728), 1, + ACTIONS(3141), 1, + anon_sym_SEMI, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2974), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2976), 2, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2988), 2, + ACTIONS(2995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2990), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2992), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2994), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [42094] = 11, + [42458] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2339), 1, - anon_sym_LBRACK, - ACTIONS(2343), 1, - anon_sym_DASH_GT, - ACTIONS(2822), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2844), 1, - anon_sym_DOT, - ACTIONS(3096), 1, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2993), 1, anon_sym_SLASH, - STATE(728), 1, + ACTIONS(2997), 1, + anon_sym_AMP_AMP, + ACTIONS(2999), 1, + anon_sym_PIPE, + ACTIONS(3001), 1, + anon_sym_CARET, + ACTIONS(3003), 1, + anon_sym_AMP, + ACTIONS(3013), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3015), 1, + anon_sym_QMARK, + ACTIONS(3061), 1, + anon_sym_COMMA, + ACTIONS(3143), 1, + anon_sym_SEMI, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3094), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2333), 6, + ACTIONS(2995), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2335), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3007), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - [42146] = 21, + [42530] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2978), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(2980), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(2982), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(2984), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(2986), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(2996), 1, + ACTIONS(3013), 1, anon_sym_PIPE_PIPE, - ACTIONS(2998), 1, + ACTIONS(3015), 1, anon_sym_QMARK, - ACTIONS(3030), 1, + ACTIONS(3061), 1, anon_sym_COMMA, - ACTIONS(3120), 1, - anon_sym_RPAREN, - STATE(728), 1, + ACTIONS(3145), 1, + anon_sym_SEMI, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2974), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2976), 2, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2988), 2, + ACTIONS(2995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2990), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2992), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2994), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [42218] = 20, + [42602] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2978), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(2980), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(2982), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(2984), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(2986), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(2996), 1, + ACTIONS(3013), 1, anon_sym_PIPE_PIPE, - ACTIONS(2998), 1, + ACTIONS(3015), 1, anon_sym_QMARK, - STATE(728), 1, + ACTIONS(3061), 1, + anon_sym_COMMA, + ACTIONS(3147), 1, + anon_sym_COLON, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2974), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2976), 2, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2988), 2, + ACTIONS(2995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2990), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2992), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2994), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3122), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [42288] = 19, + [42674] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2339), 1, - anon_sym_LBRACK, - ACTIONS(2343), 1, - anon_sym_DASH_GT, - ACTIONS(2822), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2844), 1, - anon_sym_DOT, - ACTIONS(3096), 1, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(3100), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(3102), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(3104), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(3106), 1, + ACTIONS(3003), 1, anon_sym_AMP, - STATE(728), 1, + ACTIONS(3013), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3015), 1, + anon_sym_QMARK, + ACTIONS(3061), 1, + anon_sym_COMMA, + ACTIONS(3149), 1, + anon_sym_RPAREN, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3092), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3094), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3108), 2, + ACTIONS(2995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3110), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3112), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3114), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2335), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_QMARK, - [42356] = 18, + [42746] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2339), 1, - anon_sym_LBRACK, - ACTIONS(2343), 1, - anon_sym_DASH_GT, - ACTIONS(2822), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2844), 1, - anon_sym_DOT, - ACTIONS(3096), 1, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(3102), 1, + ACTIONS(2997), 1, + anon_sym_AMP_AMP, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(3104), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(3106), 1, + ACTIONS(3003), 1, anon_sym_AMP, - STATE(728), 1, + ACTIONS(3013), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3015), 1, + anon_sym_QMARK, + ACTIONS(3061), 1, + anon_sym_COMMA, + ACTIONS(3151), 1, + anon_sym_RPAREN, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3092), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3094), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3108), 2, + ACTIONS(2995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3110), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3112), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3114), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2335), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_QMARK, - [42422] = 18, + [42818] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2333), 1, - anon_sym_PIPE, - ACTIONS(2339), 1, - anon_sym_LBRACK, - ACTIONS(2343), 1, - anon_sym_DASH_GT, - ACTIONS(2822), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2844), 1, - anon_sym_DOT, - ACTIONS(3096), 1, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(3104), 1, + ACTIONS(2997), 1, + anon_sym_AMP_AMP, + ACTIONS(2999), 1, + anon_sym_PIPE, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(3106), 1, + ACTIONS(3003), 1, anon_sym_AMP, - STATE(728), 1, + ACTIONS(3013), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3015), 1, + anon_sym_QMARK, + ACTIONS(3061), 1, + anon_sym_COMMA, + ACTIONS(3153), 1, + anon_sym_COLON, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3092), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3094), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3108), 2, + ACTIONS(2995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3110), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3112), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3114), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2335), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_QMARK, - [42488] = 17, + [42890] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2333), 1, - anon_sym_PIPE, - ACTIONS(2339), 1, - anon_sym_LBRACK, - ACTIONS(2343), 1, - anon_sym_DASH_GT, - ACTIONS(2822), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2844), 1, - anon_sym_DOT, - ACTIONS(3096), 1, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(3106), 1, + ACTIONS(2997), 1, + anon_sym_AMP_AMP, + ACTIONS(2999), 1, + anon_sym_PIPE, + ACTIONS(3001), 1, + anon_sym_CARET, + ACTIONS(3003), 1, anon_sym_AMP, - STATE(728), 1, + ACTIONS(3013), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3015), 1, + anon_sym_QMARK, + ACTIONS(3061), 1, + anon_sym_COMMA, + ACTIONS(3155), 1, + anon_sym_RPAREN, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3092), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3094), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3108), 2, + ACTIONS(2995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3110), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3112), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3114), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2335), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_RBRACK, - anon_sym_QMARK, - [42552] = 16, + [42962] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2339), 1, - anon_sym_LBRACK, - ACTIONS(2343), 1, - anon_sym_DASH_GT, - ACTIONS(2822), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2844), 1, - anon_sym_DOT, - ACTIONS(3096), 1, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2993), 1, anon_sym_SLASH, - STATE(728), 1, - sym_argument_list, - ACTIONS(2333), 2, + ACTIONS(2997), 1, + anon_sym_AMP_AMP, + ACTIONS(2999), 1, anon_sym_PIPE, + ACTIONS(3001), 1, + anon_sym_CARET, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(2341), 2, + ACTIONS(3013), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3015), 1, + anon_sym_QMARK, + ACTIONS(3061), 1, + anon_sym_COMMA, + ACTIONS(3157), 1, + anon_sym_RPAREN, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3092), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3094), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3108), 2, + ACTIONS(2995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3110), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3112), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3114), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2335), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_RBRACK, - anon_sym_QMARK, - [42614] = 15, + [43034] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2343), 1, + ACTIONS(2358), 1, anon_sym_DASH_GT, - ACTIONS(2822), 1, + ACTIONS(2376), 1, + anon_sym_PIPE, + ACTIONS(2837), 1, anon_sym_LPAREN2, - ACTIONS(2844), 1, + ACTIONS(2839), 1, anon_sym_DOT, - ACTIONS(3096), 1, + ACTIONS(3103), 1, anon_sym_SLASH, - STATE(728), 1, - sym_argument_list, - ACTIONS(2333), 2, - anon_sym_PIPE, + ACTIONS(3111), 1, + anon_sym_CARET, + ACTIONS(3113), 1, anon_sym_AMP, - ACTIONS(2341), 2, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3092), 2, + ACTIONS(3099), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3094), 2, + ACTIONS(3101), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3110), 2, + ACTIONS(3115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3117), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3112), 2, + ACTIONS(3119), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3114), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2335), 8, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - [42674] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2339), 1, - anon_sym_LBRACK, - ACTIONS(2343), 1, - anon_sym_DASH_GT, - ACTIONS(2822), 1, - anon_sym_LPAREN2, - ACTIONS(2844), 1, - anon_sym_DOT, - ACTIONS(3096), 1, - anon_sym_SLASH, - STATE(728), 1, - sym_argument_list, - ACTIONS(2341), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3092), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3094), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3114), 2, + ACTIONS(3121), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2333), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2335), 10, + ACTIONS(2378), 5, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_RBRACK, anon_sym_QMARK, - [42730] = 21, + [43100] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2978), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(2980), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(2982), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(2984), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(2986), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(2996), 1, + ACTIONS(3013), 1, anon_sym_PIPE_PIPE, - ACTIONS(2998), 1, + ACTIONS(3015), 1, anon_sym_QMARK, - ACTIONS(3030), 1, - anon_sym_COMMA, - ACTIONS(3124), 1, - anon_sym_RPAREN, - STATE(728), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2974), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2976), 2, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2988), 2, + ACTIONS(2995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2990), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2992), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2994), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [42802] = 12, + ACTIONS(3159), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [43170] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2339), 1, - anon_sym_LBRACK, - ACTIONS(2343), 1, - anon_sym_DASH_GT, - ACTIONS(2822), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2844), 1, - anon_sym_DOT, - ACTIONS(3096), 1, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2993), 1, anon_sym_SLASH, - STATE(728), 1, + ACTIONS(2997), 1, + anon_sym_AMP_AMP, + ACTIONS(2999), 1, + anon_sym_PIPE, + ACTIONS(3001), 1, + anon_sym_CARET, + ACTIONS(3003), 1, + anon_sym_AMP, + ACTIONS(3013), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3015), 1, + anon_sym_QMARK, + ACTIONS(3061), 1, + anon_sym_COMMA, + ACTIONS(3161), 1, + anon_sym_RPAREN, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3092), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3094), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2333), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2335), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(2995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3007), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - [42856] = 21, + [43242] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2978), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(2980), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(2982), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(2984), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(2986), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(2996), 1, + ACTIONS(3013), 1, anon_sym_PIPE_PIPE, - ACTIONS(2998), 1, + ACTIONS(3015), 1, anon_sym_QMARK, - ACTIONS(3030), 1, + ACTIONS(3061), 1, anon_sym_COMMA, - ACTIONS(3126), 1, - anon_sym_COLON, - STATE(728), 1, + ACTIONS(3163), 1, + anon_sym_SEMI, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2974), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2976), 2, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2988), 2, + ACTIONS(2995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2990), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2992), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2994), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [42928] = 21, + [43314] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, - anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2978), 1, + ACTIONS(2358), 1, + anon_sym_DASH_GT, + ACTIONS(2837), 1, + anon_sym_LPAREN2, + ACTIONS(2839), 1, + anon_sym_DOT, + ACTIONS(3103), 1, anon_sym_SLASH, - ACTIONS(2980), 1, - anon_sym_AMP_AMP, - ACTIONS(2982), 1, - anon_sym_PIPE, - ACTIONS(2984), 1, - anon_sym_CARET, - ACTIONS(2986), 1, - anon_sym_AMP, - ACTIONS(2996), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2998), 1, - anon_sym_QMARK, - ACTIONS(3030), 1, - anon_sym_COMMA, - ACTIONS(3128), 1, - anon_sym_RPAREN, - STATE(728), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2974), 2, + ACTIONS(2376), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3099), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2976), 2, + ACTIONS(3101), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2988), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2990), 2, + ACTIONS(3117), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2992), 2, + ACTIONS(3119), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2994), 2, + ACTIONS(3121), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43000] = 20, + ACTIONS(2378), 8, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + [43374] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2978), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(2980), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(2982), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(2984), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(2986), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(2996), 1, + ACTIONS(3013), 1, anon_sym_PIPE_PIPE, - ACTIONS(2998), 1, + ACTIONS(3015), 1, anon_sym_QMARK, - STATE(728), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2974), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2976), 2, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2988), 2, + ACTIONS(2995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2990), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2992), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2994), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3130), 2, + ACTIONS(3165), 2, anon_sym_COMMA, anon_sym_RPAREN, - [43070] = 21, + [43444] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2339), 1, - anon_sym_LBRACK, - ACTIONS(2343), 1, - anon_sym_DASH_GT, - ACTIONS(2822), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2844), 1, - anon_sym_DOT, - ACTIONS(3096), 1, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(3098), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3100), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(3102), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(3104), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(3106), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(3116), 1, + ACTIONS(3013), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3015), 1, anon_sym_QMARK, - STATE(728), 1, + ACTIONS(3061), 1, + anon_sym_COMMA, + ACTIONS(3167), 1, + anon_sym_RPAREN, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2499), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_RBRACK, - ACTIONS(3092), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3094), 2, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3108), 2, + ACTIONS(2995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3110), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3112), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3114), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43142] = 21, + [43516] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2978), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(2980), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(2982), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(2984), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(2986), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(2996), 1, + ACTIONS(3013), 1, anon_sym_PIPE_PIPE, - ACTIONS(2998), 1, + ACTIONS(3015), 1, anon_sym_QMARK, - ACTIONS(3030), 1, + ACTIONS(3061), 1, anon_sym_COMMA, - ACTIONS(3132), 1, + ACTIONS(3169), 1, anon_sym_SEMI, - STATE(728), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2974), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2976), 2, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2988), 2, + ACTIONS(2995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2990), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2992), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2994), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43214] = 21, + [43588] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2978), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(2980), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(2982), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(2984), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(2986), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(2996), 1, + ACTIONS(3013), 1, anon_sym_PIPE_PIPE, - ACTIONS(2998), 1, + ACTIONS(3015), 1, anon_sym_QMARK, - ACTIONS(3030), 1, + ACTIONS(3061), 1, anon_sym_COMMA, - ACTIONS(3134), 1, - anon_sym_RPAREN, - STATE(728), 1, + ACTIONS(3171), 1, + anon_sym_SEMI, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2974), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2976), 2, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2988), 2, + ACTIONS(2995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2990), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2992), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2994), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43286] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(2785), 1, - anon_sym_LBRACE, - ACTIONS(3136), 1, - anon_sym_COLON, - STATE(788), 1, - sym_attribute_specifier, - STATE(1131), 1, - sym_enumerator_list, - ACTIONS(2780), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK, - ACTIONS(2778), 18, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [43332] = 21, + [43660] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2978), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(2980), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(2982), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(2984), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(2986), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(2996), 1, + ACTIONS(3013), 1, anon_sym_PIPE_PIPE, - ACTIONS(2998), 1, + ACTIONS(3015), 1, anon_sym_QMARK, - ACTIONS(3030), 1, + ACTIONS(3061), 1, anon_sym_COMMA, - ACTIONS(3138), 1, - anon_sym_SEMI, - STATE(728), 1, + ACTIONS(3173), 1, + anon_sym_COLON, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2974), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2976), 2, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2988), 2, + ACTIONS(2995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2990), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2992), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2994), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43404] = 21, + [43732] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2978), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(2980), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(2982), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(2984), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(2986), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(2996), 1, + ACTIONS(3013), 1, anon_sym_PIPE_PIPE, - ACTIONS(2998), 1, + ACTIONS(3015), 1, anon_sym_QMARK, - ACTIONS(3030), 1, - anon_sym_COMMA, - ACTIONS(3140), 1, - anon_sym_SEMI, - STATE(728), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2974), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2976), 2, + ACTIONS(2987), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2988), 2, + ACTIONS(2995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2990), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2992), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2994), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43476] = 21, + [43802] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, - anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2978), 1, + ACTIONS(2358), 1, + anon_sym_DASH_GT, + ACTIONS(2837), 1, + anon_sym_LPAREN2, + ACTIONS(2839), 1, + anon_sym_DOT, + ACTIONS(3103), 1, anon_sym_SLASH, - ACTIONS(2980), 1, - anon_sym_AMP_AMP, - ACTIONS(2982), 1, - anon_sym_PIPE, - ACTIONS(2984), 1, - anon_sym_CARET, - ACTIONS(2986), 1, - anon_sym_AMP, - ACTIONS(2996), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2998), 1, - anon_sym_QMARK, - ACTIONS(3030), 1, - anon_sym_COMMA, - ACTIONS(3142), 1, - anon_sym_RPAREN, - STATE(728), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2974), 2, + ACTIONS(2376), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3099), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2976), 2, + ACTIONS(3101), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2988), 2, + ACTIONS(3115), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2990), 2, + ACTIONS(3117), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2992), 2, + ACTIONS(3119), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2994), 2, + ACTIONS(3121), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43548] = 22, + ACTIONS(2378), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_RBRACK, + anon_sym_QMARK, + [43864] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2343), 1, + ACTIONS(2358), 1, anon_sym_DASH_GT, - ACTIONS(2822), 1, + ACTIONS(2837), 1, anon_sym_LPAREN2, - ACTIONS(2844), 1, + ACTIONS(2839), 1, anon_sym_DOT, - ACTIONS(3096), 1, + ACTIONS(3103), 1, anon_sym_SLASH, - ACTIONS(3098), 1, + ACTIONS(3105), 1, anon_sym_PIPE_PIPE, - ACTIONS(3100), 1, + ACTIONS(3107), 1, anon_sym_AMP_AMP, - ACTIONS(3102), 1, + ACTIONS(3109), 1, anon_sym_PIPE, - ACTIONS(3104), 1, + ACTIONS(3111), 1, anon_sym_CARET, - ACTIONS(3106), 1, + ACTIONS(3113), 1, anon_sym_AMP, - ACTIONS(3116), 1, + ACTIONS(3123), 1, anon_sym_QMARK, - ACTIONS(3144), 1, + ACTIONS(3175), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(3146), 1, + ACTIONS(3177), 1, anon_sym_RBRACK, - STATE(728), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3092), 2, + ACTIONS(3099), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3094), 2, + ACTIONS(3101), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3108), 2, + ACTIONS(3115), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3110), 2, + ACTIONS(3117), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3112), 2, + ACTIONS(3119), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3114), 2, + ACTIONS(3121), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43622] = 21, + [43938] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2978), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(2980), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(2982), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(2984), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(2986), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(2996), 1, + ACTIONS(3013), 1, anon_sym_PIPE_PIPE, - ACTIONS(2998), 1, + ACTIONS(3015), 1, anon_sym_QMARK, - ACTIONS(3030), 1, + ACTIONS(3061), 1, anon_sym_COMMA, - ACTIONS(3148), 1, + ACTIONS(3179), 1, anon_sym_RPAREN, - STATE(728), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2974), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2976), 2, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2988), 2, + ACTIONS(2995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2990), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2992), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2994), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43694] = 20, + [44010] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, - anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2978), 1, + ACTIONS(2358), 1, + anon_sym_DASH_GT, + ACTIONS(2837), 1, + anon_sym_LPAREN2, + ACTIONS(2839), 1, + anon_sym_DOT, + ACTIONS(3103), 1, anon_sym_SLASH, - ACTIONS(2980), 1, + ACTIONS(3107), 1, anon_sym_AMP_AMP, - ACTIONS(2982), 1, + ACTIONS(3109), 1, anon_sym_PIPE, - ACTIONS(2984), 1, + ACTIONS(3111), 1, anon_sym_CARET, - ACTIONS(2986), 1, + ACTIONS(3113), 1, anon_sym_AMP, - ACTIONS(2996), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2998), 1, - anon_sym_QMARK, - STATE(728), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2974), 2, + ACTIONS(3099), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2976), 2, + ACTIONS(3101), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2988), 2, + ACTIONS(3115), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2990), 2, + ACTIONS(3117), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2992), 2, + ACTIONS(3119), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2994), 2, + ACTIONS(3121), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3150), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [43764] = 21, + ACTIONS(2378), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_QMARK, + [44078] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2978), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(2980), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(2982), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(2984), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(2986), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(2996), 1, + ACTIONS(3013), 1, anon_sym_PIPE_PIPE, - ACTIONS(2998), 1, + ACTIONS(3015), 1, anon_sym_QMARK, - ACTIONS(3030), 1, + ACTIONS(3061), 1, anon_sym_COMMA, - ACTIONS(3152), 1, - anon_sym_SEMI, - STATE(728), 1, + ACTIONS(3181), 1, + anon_sym_COLON, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2974), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2976), 2, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2988), 2, + ACTIONS(2995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2990), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2992), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2994), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43836] = 21, + [44150] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, - anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2978), 1, - anon_sym_SLASH, - ACTIONS(2980), 1, - anon_sym_AMP_AMP, - ACTIONS(2982), 1, + ACTIONS(2358), 1, + anon_sym_DASH_GT, + ACTIONS(2376), 1, anon_sym_PIPE, - ACTIONS(2984), 1, - anon_sym_CARET, - ACTIONS(2986), 1, + ACTIONS(2837), 1, + anon_sym_LPAREN2, + ACTIONS(2839), 1, + anon_sym_DOT, + ACTIONS(3103), 1, + anon_sym_SLASH, + ACTIONS(3113), 1, anon_sym_AMP, - ACTIONS(2996), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2998), 1, - anon_sym_QMARK, - ACTIONS(3030), 1, - anon_sym_COMMA, - ACTIONS(3154), 1, - anon_sym_SEMI, - STATE(728), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2974), 2, + ACTIONS(3099), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2976), 2, + ACTIONS(3101), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2988), 2, + ACTIONS(3115), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2990), 2, + ACTIONS(3117), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2992), 2, + ACTIONS(3119), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2994), 2, + ACTIONS(3121), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43908] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2337), 1, - anon_sym_LPAREN2, - ACTIONS(2339), 1, - anon_sym_LBRACK, - ACTIONS(2978), 1, - anon_sym_SLASH, - ACTIONS(2980), 1, + ACTIONS(2378), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(2982), 1, - anon_sym_PIPE, - ACTIONS(2984), 1, anon_sym_CARET, - ACTIONS(2986), 1, - anon_sym_AMP, - ACTIONS(2996), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2998), 1, + anon_sym_RBRACK, anon_sym_QMARK, - ACTIONS(3030), 1, - anon_sym_COMMA, - ACTIONS(3156), 1, - anon_sym_COLON, - STATE(728), 1, - sym_argument_list, - ACTIONS(2341), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2974), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2976), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2988), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2990), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2992), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2994), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [43980] = 20, + [44214] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, - anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2978), 1, + ACTIONS(2358), 1, + anon_sym_DASH_GT, + ACTIONS(2837), 1, + anon_sym_LPAREN2, + ACTIONS(2839), 1, + anon_sym_DOT, + ACTIONS(3103), 1, anon_sym_SLASH, - ACTIONS(2980), 1, + ACTIONS(3105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3107), 1, anon_sym_AMP_AMP, - ACTIONS(2982), 1, + ACTIONS(3109), 1, anon_sym_PIPE, - ACTIONS(2984), 1, + ACTIONS(3111), 1, anon_sym_CARET, - ACTIONS(2986), 1, + ACTIONS(3113), 1, anon_sym_AMP, - ACTIONS(2996), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2998), 1, + ACTIONS(3123), 1, anon_sym_QMARK, - STATE(728), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2974), 2, + ACTIONS(2549), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACK, + ACTIONS(3099), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2976), 2, + ACTIONS(3101), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2988), 2, + ACTIONS(3115), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2990), 2, + ACTIONS(3117), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2992), 2, + ACTIONS(3119), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2994), 2, + ACTIONS(3121), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3158), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [44050] = 21, + [44286] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2978), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(2980), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(2982), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(2984), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(2986), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(2996), 1, + ACTIONS(3013), 1, anon_sym_PIPE_PIPE, - ACTIONS(2998), 1, + ACTIONS(3015), 1, anon_sym_QMARK, - ACTIONS(3030), 1, + ACTIONS(3061), 1, anon_sym_COMMA, - ACTIONS(3160), 1, - anon_sym_SEMI, - STATE(728), 1, + ACTIONS(3183), 1, + anon_sym_RPAREN, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2974), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2976), 2, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2988), 2, + ACTIONS(2995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2990), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2992), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2994), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [44122] = 20, + [44358] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, - anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2978), 1, + ACTIONS(2358), 1, + anon_sym_DASH_GT, + ACTIONS(2837), 1, + anon_sym_LPAREN2, + ACTIONS(2839), 1, + anon_sym_DOT, + ACTIONS(3103), 1, anon_sym_SLASH, - ACTIONS(2980), 1, - anon_sym_AMP_AMP, - ACTIONS(2982), 1, - anon_sym_PIPE, - ACTIONS(2984), 1, - anon_sym_CARET, - ACTIONS(2986), 1, - anon_sym_AMP, - ACTIONS(2996), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2998), 1, - anon_sym_QMARK, - STATE(728), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2974), 2, + ACTIONS(3099), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2976), 2, + ACTIONS(3101), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2988), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2990), 2, + ACTIONS(2376), 4, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2992), 2, + ACTIONS(2378), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2994), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3162), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [44192] = 21, + anon_sym_RBRACK, + anon_sym_QMARK, + [44412] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2978), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(2980), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(2982), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(2984), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(2986), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(2996), 1, + ACTIONS(3013), 1, anon_sym_PIPE_PIPE, - ACTIONS(2998), 1, + ACTIONS(3015), 1, anon_sym_QMARK, - ACTIONS(3030), 1, + ACTIONS(3061), 1, anon_sym_COMMA, - ACTIONS(3164), 1, - anon_sym_SEMI, - STATE(728), 1, + ACTIONS(3185), 1, + anon_sym_COLON, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2974), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2976), 2, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2988), 2, + ACTIONS(2995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2990), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2992), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2994), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [44264] = 21, + [44484] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2978), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(2980), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(2982), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(2984), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(2986), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(2996), 1, + ACTIONS(3013), 1, anon_sym_PIPE_PIPE, - ACTIONS(2998), 1, + ACTIONS(3015), 1, anon_sym_QMARK, - ACTIONS(3030), 1, - anon_sym_COMMA, - ACTIONS(3166), 1, - anon_sym_RPAREN, - STATE(728), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2974), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2976), 2, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2988), 2, + ACTIONS(2995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2990), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2992), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2994), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [44336] = 21, + ACTIONS(3187), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [44554] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2343), 1, + ACTIONS(2358), 1, anon_sym_DASH_GT, - ACTIONS(2822), 1, + ACTIONS(2837), 1, anon_sym_LPAREN2, - ACTIONS(2844), 1, + ACTIONS(2839), 1, anon_sym_DOT, - ACTIONS(3096), 1, + ACTIONS(3103), 1, anon_sym_SLASH, - ACTIONS(3098), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3100), 1, - anon_sym_AMP_AMP, - ACTIONS(3102), 1, + ACTIONS(3109), 1, anon_sym_PIPE, - ACTIONS(3104), 1, + ACTIONS(3111), 1, anon_sym_CARET, - ACTIONS(3106), 1, + ACTIONS(3113), 1, anon_sym_AMP, - ACTIONS(3116), 1, - anon_sym_QMARK, - STATE(728), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2592), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_RBRACK, - ACTIONS(3092), 2, + ACTIONS(3099), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3094), 2, + ACTIONS(3101), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3108), 2, + ACTIONS(3115), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3110), 2, + ACTIONS(3117), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3112), 2, + ACTIONS(3119), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3114), 2, + ACTIONS(3121), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [44408] = 21, + ACTIONS(2378), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_QMARK, + [44620] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2978), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(2980), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(2982), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(2984), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(2986), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(2996), 1, + ACTIONS(3013), 1, anon_sym_PIPE_PIPE, - ACTIONS(2998), 1, + ACTIONS(3015), 1, anon_sym_QMARK, - ACTIONS(3030), 1, + ACTIONS(3061), 1, anon_sym_COMMA, - ACTIONS(3168), 1, + ACTIONS(3189), 1, anon_sym_SEMI, - STATE(728), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2974), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2976), 2, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2988), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2990), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2992), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2994), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [44480] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2337), 1, - anon_sym_LPAREN2, - ACTIONS(2339), 1, - anon_sym_LBRACK, - ACTIONS(2978), 1, - anon_sym_SLASH, - ACTIONS(2980), 1, - anon_sym_AMP_AMP, - ACTIONS(2982), 1, - anon_sym_PIPE, - ACTIONS(2984), 1, - anon_sym_CARET, - ACTIONS(2986), 1, - anon_sym_AMP, - ACTIONS(2996), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2998), 1, - anon_sym_QMARK, - ACTIONS(3030), 1, - anon_sym_COMMA, - ACTIONS(3170), 1, - anon_sym_COLON, - STATE(728), 1, - sym_argument_list, - ACTIONS(2341), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2974), 2, + ACTIONS(2995), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2976), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2988), 2, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2990), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2992), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2994), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [44552] = 20, + [44692] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, - anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2978), 1, + ACTIONS(2358), 1, + anon_sym_DASH_GT, + ACTIONS(2837), 1, + anon_sym_LPAREN2, + ACTIONS(2839), 1, + anon_sym_DOT, + ACTIONS(3103), 1, anon_sym_SLASH, - ACTIONS(2980), 1, + ACTIONS(3105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3107), 1, anon_sym_AMP_AMP, - ACTIONS(2982), 1, + ACTIONS(3109), 1, anon_sym_PIPE, - ACTIONS(2984), 1, + ACTIONS(3111), 1, anon_sym_CARET, - ACTIONS(2986), 1, + ACTIONS(3113), 1, anon_sym_AMP, - ACTIONS(2996), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2998), 1, + ACTIONS(3123), 1, anon_sym_QMARK, - STATE(728), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2974), 2, + ACTIONS(2585), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACK, + ACTIONS(3099), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2976), 2, + ACTIONS(3101), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2988), 2, + ACTIONS(3115), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2990), 2, + ACTIONS(3117), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2992), 2, + ACTIONS(3119), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2994), 2, + ACTIONS(3121), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3172), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [44622] = 20, + [44764] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2978), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(2980), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(2982), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(2984), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(2986), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(2996), 1, + ACTIONS(3013), 1, anon_sym_PIPE_PIPE, - ACTIONS(2998), 1, + ACTIONS(3015), 1, anon_sym_QMARK, - STATE(728), 1, + ACTIONS(3191), 1, + anon_sym_RPAREN, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2944), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2974), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2976), 2, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2988), 2, + ACTIONS(2995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2990), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2992), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2994), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [44692] = 20, + [44833] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, - anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2109), 1, + anon_sym_RBRACK, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2978), 1, + ACTIONS(2837), 1, + anon_sym_LPAREN2, + ACTIONS(3103), 1, anon_sym_SLASH, - ACTIONS(2980), 1, + ACTIONS(3105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3107), 1, anon_sym_AMP_AMP, - ACTIONS(2982), 1, + ACTIONS(3109), 1, anon_sym_PIPE, - ACTIONS(2984), 1, + ACTIONS(3111), 1, anon_sym_CARET, - ACTIONS(2986), 1, + ACTIONS(3113), 1, anon_sym_AMP, - ACTIONS(2996), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2998), 1, + ACTIONS(3123), 1, anon_sym_QMARK, - ACTIONS(3174), 1, - anon_sym_COLON, - STATE(728), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2974), 2, + ACTIONS(3099), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2976), 2, + ACTIONS(3101), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2988), 2, + ACTIONS(3115), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2990), 2, + ACTIONS(3117), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2992), 2, + ACTIONS(3119), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2994), 2, + ACTIONS(3121), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [44761] = 20, + [44902] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2082), 1, + ACTIONS(2107), 1, anon_sym_RBRACK, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2837), 1, anon_sym_LPAREN2, - ACTIONS(3096), 1, + ACTIONS(3103), 1, anon_sym_SLASH, - ACTIONS(3098), 1, + ACTIONS(3105), 1, anon_sym_PIPE_PIPE, - ACTIONS(3100), 1, + ACTIONS(3107), 1, anon_sym_AMP_AMP, - ACTIONS(3102), 1, + ACTIONS(3109), 1, anon_sym_PIPE, - ACTIONS(3104), 1, + ACTIONS(3111), 1, anon_sym_CARET, - ACTIONS(3106), 1, + ACTIONS(3113), 1, anon_sym_AMP, - ACTIONS(3116), 1, + ACTIONS(3123), 1, anon_sym_QMARK, - STATE(728), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3092), 2, + ACTIONS(3099), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3094), 2, + ACTIONS(3101), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3108), 2, + ACTIONS(3115), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3110), 2, + ACTIONS(3117), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3112), 2, + ACTIONS(3119), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3114), 2, + ACTIONS(3121), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [44830] = 20, + [44971] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2070), 1, + ACTIONS(2105), 1, anon_sym_RBRACK, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2837), 1, anon_sym_LPAREN2, - ACTIONS(3096), 1, + ACTIONS(3103), 1, anon_sym_SLASH, - ACTIONS(3098), 1, + ACTIONS(3105), 1, anon_sym_PIPE_PIPE, - ACTIONS(3100), 1, + ACTIONS(3107), 1, anon_sym_AMP_AMP, - ACTIONS(3102), 1, + ACTIONS(3109), 1, anon_sym_PIPE, - ACTIONS(3104), 1, + ACTIONS(3111), 1, anon_sym_CARET, - ACTIONS(3106), 1, + ACTIONS(3113), 1, anon_sym_AMP, - ACTIONS(3116), 1, + ACTIONS(3123), 1, anon_sym_QMARK, - STATE(728), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3092), 2, + ACTIONS(3099), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3094), 2, + ACTIONS(3101), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3108), 2, + ACTIONS(3115), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3110), 2, + ACTIONS(3117), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3112), 2, + ACTIONS(3119), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3114), 2, + ACTIONS(3121), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [44899] = 20, + [45040] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2066), 1, - anon_sym_RBRACK, - ACTIONS(2339), 1, - anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(3096), 1, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(3098), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3100), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(3102), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(3104), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(3106), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(3116), 1, + ACTIONS(3013), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3015), 1, anon_sym_QMARK, - STATE(728), 1, + ACTIONS(3193), 1, + anon_sym_RPAREN, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3092), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3094), 2, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3108), 2, + ACTIONS(2995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3110), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3112), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3114), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [44968] = 20, + [45109] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2064), 1, - anon_sym_RBRACK, - ACTIONS(2339), 1, - anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(3096), 1, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(3098), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3100), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(3102), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(3104), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(3106), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(3116), 1, + ACTIONS(3013), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3015), 1, anon_sym_QMARK, - STATE(728), 1, + ACTIONS(3195), 1, + anon_sym_RPAREN, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3092), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3094), 2, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3108), 2, + ACTIONS(2995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3110), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3112), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3114), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [45037] = 20, + [45178] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2339), 1, - anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(3096), 1, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(3098), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3100), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(3102), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(3104), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(3106), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(3116), 1, + ACTIONS(3013), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3015), 1, anon_sym_QMARK, - ACTIONS(3176), 1, - anon_sym_RBRACK, - STATE(728), 1, + ACTIONS(3197), 1, + anon_sym_COLON, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3092), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3094), 2, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3108), 2, + ACTIONS(2995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3110), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3112), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3114), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [45106] = 20, + [45247] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2978), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(2980), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(2982), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(2984), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(2986), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(2996), 1, + ACTIONS(3013), 1, anon_sym_PIPE_PIPE, - ACTIONS(2998), 1, + ACTIONS(3015), 1, anon_sym_QMARK, - ACTIONS(3178), 1, - anon_sym_RPAREN, - STATE(728), 1, + ACTIONS(3199), 1, + anon_sym_COMMA, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2974), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2976), 2, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2988), 2, + ACTIONS(2995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2990), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2992), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2994), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [45175] = 20, + [45316] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2339), 1, + ACTIONS(2097), 1, + anon_sym_RBRACK, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2837), 1, anon_sym_LPAREN2, - ACTIONS(3096), 1, + ACTIONS(3103), 1, anon_sym_SLASH, - ACTIONS(3098), 1, + ACTIONS(3105), 1, anon_sym_PIPE_PIPE, - ACTIONS(3100), 1, + ACTIONS(3107), 1, anon_sym_AMP_AMP, - ACTIONS(3102), 1, + ACTIONS(3109), 1, anon_sym_PIPE, - ACTIONS(3104), 1, + ACTIONS(3111), 1, anon_sym_CARET, - ACTIONS(3106), 1, + ACTIONS(3113), 1, anon_sym_AMP, - ACTIONS(3116), 1, + ACTIONS(3123), 1, anon_sym_QMARK, - ACTIONS(3180), 1, - anon_sym_RBRACK, - STATE(728), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3092), 2, + ACTIONS(3099), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3094), 2, + ACTIONS(3101), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3108), 2, + ACTIONS(3115), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3110), 2, + ACTIONS(3117), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3112), 2, + ACTIONS(3119), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3114), 2, + ACTIONS(3121), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [45244] = 20, + [45385] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2978), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(2980), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(2982), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(2984), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(2986), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(2996), 1, + ACTIONS(3013), 1, anon_sym_PIPE_PIPE, - ACTIONS(2998), 1, + ACTIONS(3015), 1, anon_sym_QMARK, - ACTIONS(3182), 1, - anon_sym_COLON, - STATE(728), 1, + ACTIONS(3201), 1, + anon_sym_RPAREN, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2974), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2976), 2, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2988), 2, + ACTIONS(2995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2990), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2992), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2994), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [45313] = 20, + [45454] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, - anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2111), 1, + anon_sym_RBRACK, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2978), 1, + ACTIONS(2837), 1, + anon_sym_LPAREN2, + ACTIONS(3103), 1, anon_sym_SLASH, - ACTIONS(2980), 1, + ACTIONS(3105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3107), 1, anon_sym_AMP_AMP, - ACTIONS(2982), 1, + ACTIONS(3109), 1, anon_sym_PIPE, - ACTIONS(2984), 1, + ACTIONS(3111), 1, anon_sym_CARET, - ACTIONS(2986), 1, + ACTIONS(3113), 1, anon_sym_AMP, - ACTIONS(2996), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2998), 1, + ACTIONS(3123), 1, anon_sym_QMARK, - ACTIONS(3184), 1, - anon_sym_COLON, - STATE(728), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2974), 2, + ACTIONS(3099), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2976), 2, + ACTIONS(3101), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2988), 2, + ACTIONS(3115), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2990), 2, + ACTIONS(3117), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2992), 2, + ACTIONS(3119), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2994), 2, + ACTIONS(3121), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [45382] = 20, + [45523] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2068), 1, - anon_sym_RBRACK, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2837), 1, anon_sym_LPAREN2, - ACTIONS(3096), 1, + ACTIONS(3103), 1, anon_sym_SLASH, - ACTIONS(3098), 1, + ACTIONS(3105), 1, anon_sym_PIPE_PIPE, - ACTIONS(3100), 1, + ACTIONS(3107), 1, anon_sym_AMP_AMP, - ACTIONS(3102), 1, + ACTIONS(3109), 1, anon_sym_PIPE, - ACTIONS(3104), 1, + ACTIONS(3111), 1, anon_sym_CARET, - ACTIONS(3106), 1, + ACTIONS(3113), 1, anon_sym_AMP, - ACTIONS(3116), 1, + ACTIONS(3123), 1, anon_sym_QMARK, - STATE(728), 1, + ACTIONS(3203), 1, + anon_sym_RBRACK, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3092), 2, + ACTIONS(3099), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3094), 2, + ACTIONS(3101), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3108), 2, + ACTIONS(3115), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3110), 2, + ACTIONS(3117), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3112), 2, + ACTIONS(3119), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3114), 2, + ACTIONS(3121), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [45451] = 20, + [45592] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2088), 1, + ACTIONS(2093), 1, anon_sym_RBRACK, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2837), 1, anon_sym_LPAREN2, - ACTIONS(3096), 1, + ACTIONS(3103), 1, anon_sym_SLASH, - ACTIONS(3098), 1, + ACTIONS(3105), 1, anon_sym_PIPE_PIPE, - ACTIONS(3100), 1, + ACTIONS(3107), 1, anon_sym_AMP_AMP, - ACTIONS(3102), 1, + ACTIONS(3109), 1, anon_sym_PIPE, - ACTIONS(3104), 1, + ACTIONS(3111), 1, anon_sym_CARET, - ACTIONS(3106), 1, + ACTIONS(3113), 1, anon_sym_AMP, - ACTIONS(3116), 1, + ACTIONS(3123), 1, anon_sym_QMARK, - STATE(728), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3092), 2, + ACTIONS(3099), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3094), 2, + ACTIONS(3101), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3108), 2, + ACTIONS(3115), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3110), 2, + ACTIONS(3117), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3112), 2, + ACTIONS(3119), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3114), 2, + ACTIONS(3121), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [45520] = 20, + [45661] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2090), 1, + ACTIONS(2099), 1, anon_sym_RBRACK, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2837), 1, anon_sym_LPAREN2, - ACTIONS(3096), 1, + ACTIONS(3103), 1, anon_sym_SLASH, - ACTIONS(3098), 1, + ACTIONS(3105), 1, anon_sym_PIPE_PIPE, - ACTIONS(3100), 1, + ACTIONS(3107), 1, anon_sym_AMP_AMP, - ACTIONS(3102), 1, + ACTIONS(3109), 1, anon_sym_PIPE, - ACTIONS(3104), 1, + ACTIONS(3111), 1, anon_sym_CARET, - ACTIONS(3106), 1, + ACTIONS(3113), 1, anon_sym_AMP, - ACTIONS(3116), 1, + ACTIONS(3123), 1, anon_sym_QMARK, - STATE(728), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3092), 2, + ACTIONS(3099), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3094), 2, + ACTIONS(3101), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3108), 2, + ACTIONS(3115), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3110), 2, + ACTIONS(3117), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3112), 2, + ACTIONS(3119), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3114), 2, + ACTIONS(3121), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [45589] = 20, + [45730] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2978), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(2980), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(2982), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(2984), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(2986), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(2996), 1, + ACTIONS(3013), 1, anon_sym_PIPE_PIPE, - ACTIONS(2998), 1, + ACTIONS(3015), 1, anon_sym_QMARK, - ACTIONS(3186), 1, - anon_sym_COMMA, - STATE(728), 1, + ACTIONS(3205), 1, + anon_sym_COLON, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2974), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2976), 2, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2988), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2990), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2992), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2994), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [45658] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2086), 1, - anon_sym_RBRACK, - ACTIONS(2339), 1, - anon_sym_LBRACK, - ACTIONS(2822), 1, - anon_sym_LPAREN2, - ACTIONS(3096), 1, - anon_sym_SLASH, - ACTIONS(3098), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3100), 1, - anon_sym_AMP_AMP, - ACTIONS(3102), 1, - anon_sym_PIPE, - ACTIONS(3104), 1, - anon_sym_CARET, - ACTIONS(3106), 1, - anon_sym_AMP, - ACTIONS(3116), 1, - anon_sym_QMARK, - STATE(728), 1, - sym_argument_list, - ACTIONS(2341), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3092), 2, + ACTIONS(2995), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3094), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3108), 2, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3110), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3112), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3114), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [45727] = 20, + [45799] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2978), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(2980), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(2982), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(2984), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(2986), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(2996), 1, + ACTIONS(3013), 1, anon_sym_PIPE_PIPE, - ACTIONS(2998), 1, + ACTIONS(3015), 1, anon_sym_QMARK, - ACTIONS(3188), 1, + ACTIONS(3207), 1, anon_sym_COLON, - STATE(728), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2974), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2976), 2, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2988), 2, + ACTIONS(2995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2990), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2992), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2994), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [45796] = 20, + [45868] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, - anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2095), 1, + anon_sym_RBRACK, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2978), 1, + ACTIONS(2837), 1, + anon_sym_LPAREN2, + ACTIONS(3103), 1, anon_sym_SLASH, - ACTIONS(2980), 1, + ACTIONS(3105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3107), 1, anon_sym_AMP_AMP, - ACTIONS(2982), 1, + ACTIONS(3109), 1, anon_sym_PIPE, - ACTIONS(2984), 1, + ACTIONS(3111), 1, anon_sym_CARET, - ACTIONS(2986), 1, + ACTIONS(3113), 1, anon_sym_AMP, - ACTIONS(2996), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2998), 1, + ACTIONS(3123), 1, anon_sym_QMARK, - ACTIONS(3190), 1, - anon_sym_RPAREN, - STATE(728), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2974), 2, + ACTIONS(3099), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2976), 2, + ACTIONS(3101), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2988), 2, + ACTIONS(3115), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2990), 2, + ACTIONS(3117), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2992), 2, + ACTIONS(3119), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2994), 2, + ACTIONS(3121), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [45865] = 20, + [45937] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2072), 1, - anon_sym_RBRACK, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2837), 1, anon_sym_LPAREN2, - ACTIONS(3096), 1, + ACTIONS(3103), 1, anon_sym_SLASH, - ACTIONS(3098), 1, + ACTIONS(3105), 1, anon_sym_PIPE_PIPE, - ACTIONS(3100), 1, + ACTIONS(3107), 1, anon_sym_AMP_AMP, - ACTIONS(3102), 1, + ACTIONS(3109), 1, anon_sym_PIPE, - ACTIONS(3104), 1, + ACTIONS(3111), 1, anon_sym_CARET, - ACTIONS(3106), 1, + ACTIONS(3113), 1, anon_sym_AMP, - ACTIONS(3116), 1, + ACTIONS(3123), 1, anon_sym_QMARK, - STATE(728), 1, + ACTIONS(3209), 1, + anon_sym_RBRACK, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3092), 2, + ACTIONS(3099), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3094), 2, + ACTIONS(3101), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3108), 2, + ACTIONS(3115), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3110), 2, + ACTIONS(3117), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3112), 2, + ACTIONS(3119), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3114), 2, + ACTIONS(3121), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [45934] = 20, + [46006] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2978), 1, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(2980), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(2982), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(2984), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(2986), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(2996), 1, + ACTIONS(3013), 1, anon_sym_PIPE_PIPE, - ACTIONS(2998), 1, + ACTIONS(3015), 1, anon_sym_QMARK, - ACTIONS(3192), 1, - anon_sym_RPAREN, - STATE(728), 1, + ACTIONS(3211), 1, + anon_sym_COLON, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2974), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2976), 2, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2988), 2, + ACTIONS(2995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2990), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2992), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2994), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [46003] = 20, + [46075] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, - anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2103), 1, + anon_sym_RBRACK, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2978), 1, + ACTIONS(2837), 1, + anon_sym_LPAREN2, + ACTIONS(3103), 1, anon_sym_SLASH, - ACTIONS(2980), 1, + ACTIONS(3105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3107), 1, anon_sym_AMP_AMP, - ACTIONS(2982), 1, + ACTIONS(3109), 1, anon_sym_PIPE, - ACTIONS(2984), 1, + ACTIONS(3111), 1, anon_sym_CARET, - ACTIONS(2986), 1, + ACTIONS(3113), 1, anon_sym_AMP, - ACTIONS(2996), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2998), 1, + ACTIONS(3123), 1, anon_sym_QMARK, - ACTIONS(3194), 1, - anon_sym_COLON, - STATE(728), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2974), 2, + ACTIONS(3099), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2976), 2, + ACTIONS(3101), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2988), 2, + ACTIONS(3115), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2990), 2, + ACTIONS(3117), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2992), 2, + ACTIONS(3119), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2994), 2, + ACTIONS(3121), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [46072] = 20, + [46144] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2080), 1, - anon_sym_RBRACK, - ACTIONS(2339), 1, - anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(3096), 1, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2993), 1, anon_sym_SLASH, - ACTIONS(3098), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3100), 1, + ACTIONS(2997), 1, anon_sym_AMP_AMP, - ACTIONS(3102), 1, + ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(3104), 1, + ACTIONS(3001), 1, anon_sym_CARET, - ACTIONS(3106), 1, + ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(3116), 1, + ACTIONS(3013), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3015), 1, anon_sym_QMARK, - STATE(728), 1, + ACTIONS(3213), 1, + anon_sym_COLON, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3092), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3094), 2, + ACTIONS(2991), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3108), 2, + ACTIONS(2995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3110), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3112), 2, + ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3114), 2, + ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [46141] = 20, + [46213] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, - anon_sym_LPAREN2, - ACTIONS(2339), 1, + ACTIONS(2101), 1, + anon_sym_RBRACK, + ACTIONS(2354), 1, anon_sym_LBRACK, - ACTIONS(2978), 1, + ACTIONS(2837), 1, + anon_sym_LPAREN2, + ACTIONS(3103), 1, anon_sym_SLASH, - ACTIONS(2980), 1, + ACTIONS(3105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3107), 1, anon_sym_AMP_AMP, - ACTIONS(2982), 1, + ACTIONS(3109), 1, anon_sym_PIPE, - ACTIONS(2984), 1, + ACTIONS(3111), 1, anon_sym_CARET, - ACTIONS(2986), 1, + ACTIONS(3113), 1, anon_sym_AMP, - ACTIONS(2996), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2998), 1, + ACTIONS(3123), 1, anon_sym_QMARK, - ACTIONS(3196), 1, - anon_sym_RPAREN, - STATE(728), 1, + STATE(677), 1, sym_argument_list, - ACTIONS(2341), 2, + ACTIONS(2356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, + ACTIONS(2358), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2974), 2, + ACTIONS(3099), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2976), 2, + ACTIONS(3101), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2988), 2, + ACTIONS(3115), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2990), 2, + ACTIONS(3117), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2992), 2, + ACTIONS(3119), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2994), 2, + ACTIONS(3121), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [46210] = 13, + [46282] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_const, - ACTIONS(1888), 1, + ACTIONS(1907), 1, anon_sym_LPAREN2, - ACTIONS(1890), 1, + ACTIONS(1909), 1, anon_sym_STAR, - ACTIONS(2776), 1, + ACTIONS(2802), 1, anon_sym_LBRACK, - STATE(754), 1, + STATE(708), 1, sym_alignas_qualifier, - STATE(1465), 1, + STATE(1425), 1, sym__abstract_declarator, - STATE(1494), 1, + STATE(1443), 1, sym_parameter_list, - ACTIONS(2916), 2, + ACTIONS(2931), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1039), 2, + STATE(1075), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3198), 3, + ACTIONS(3215), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1495), 4, + STATE(1442), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(2910), 8, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [46264] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(790), 1, - sym_attribute_specifier, - ACTIONS(2855), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(2853), 18, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [46302] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(803), 1, - sym_attribute_specifier, - ACTIONS(2868), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(2866), 18, + ACTIONS(2925), 8, anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -102782,43 +97365,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [46340] = 13, + [46336] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_const, - ACTIONS(1888), 1, + ACTIONS(1907), 1, anon_sym_LPAREN2, - ACTIONS(1890), 1, + ACTIONS(1909), 1, anon_sym_STAR, - ACTIONS(2776), 1, + ACTIONS(2802), 1, anon_sym_LBRACK, - STATE(754), 1, + STATE(708), 1, sym_alignas_qualifier, - STATE(1480), 1, + STATE(1419), 1, sym__abstract_declarator, - STATE(1494), 1, + STATE(1443), 1, sym_parameter_list, - ACTIONS(2916), 2, + ACTIONS(2931), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1039), 2, + STATE(985), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3200), 3, + ACTIONS(3217), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1495), 4, + STATE(1442), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(2910), 8, + ACTIONS(2925), 8, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -102827,39 +97406,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46394] = 13, + [46390] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_const, - ACTIONS(1888), 1, + ACTIONS(1907), 1, anon_sym_LPAREN2, - ACTIONS(1890), 1, + ACTIONS(1909), 1, anon_sym_STAR, - ACTIONS(2776), 1, + ACTIONS(2802), 1, anon_sym_LBRACK, - STATE(754), 1, + STATE(708), 1, sym_alignas_qualifier, - STATE(1449), 1, + STATE(1412), 1, sym__abstract_declarator, - STATE(1494), 1, + STATE(1443), 1, sym_parameter_list, - ACTIONS(2916), 2, + ACTIONS(2931), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1126), 2, + STATE(985), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3202), 3, + ACTIONS(3219), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1495), 4, + STATE(1442), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(2910), 8, + ACTIONS(2925), 8, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -102868,12 +97447,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46448] = 4, + [46444] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3204), 1, + ACTIONS(2898), 1, anon_sym_SEMI, - ACTIONS(2317), 7, + ACTIONS(1724), 7, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -102881,7 +97460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2319), 18, + ACTIONS(1718), 18, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -102900,39 +97479,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [46484] = 13, + [46480] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_const, - ACTIONS(1888), 1, + ACTIONS(1907), 1, anon_sym_LPAREN2, - ACTIONS(1890), 1, + ACTIONS(1909), 1, anon_sym_STAR, - ACTIONS(2776), 1, + ACTIONS(2802), 1, anon_sym_LBRACK, - STATE(754), 1, + STATE(708), 1, sym_alignas_qualifier, - STATE(1469), 1, + STATE(1430), 1, sym__abstract_declarator, - STATE(1494), 1, + STATE(1443), 1, sym_parameter_list, - ACTIONS(2916), 2, + ACTIONS(2931), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1039), 2, + STATE(985), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2770), 3, + ACTIONS(2923), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1495), 4, + STATE(1442), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(2910), 8, + ACTIONS(2925), 8, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -102941,68 +97520,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46538] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2337), 1, - anon_sym_LPAREN2, - ACTIONS(2339), 1, - anon_sym_LBRACK, - ACTIONS(2978), 1, - anon_sym_SLASH, - ACTIONS(2980), 1, - anon_sym_AMP_AMP, - ACTIONS(2982), 1, - anon_sym_PIPE, - ACTIONS(2984), 1, - anon_sym_CARET, - ACTIONS(2986), 1, - anon_sym_AMP, - ACTIONS(2996), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2998), 1, - anon_sym_QMARK, - STATE(728), 1, - sym_argument_list, - ACTIONS(2341), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2343), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2974), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2976), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2988), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2990), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2992), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2994), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [46604] = 5, + [46534] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2352), 1, + anon_sym_LPAREN2, + ACTIONS(2354), 1, + anon_sym_LBRACK, + ACTIONS(2993), 1, + anon_sym_SLASH, + ACTIONS(2997), 1, + anon_sym_AMP_AMP, + ACTIONS(2999), 1, + anon_sym_PIPE, + ACTIONS(3001), 1, + anon_sym_CARET, + ACTIONS(3003), 1, + anon_sym_AMP, + ACTIONS(3013), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3015), 1, + anon_sym_QMARK, + STATE(677), 1, + sym_argument_list, + ACTIONS(2356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2358), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2991), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3005), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3007), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3009), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3011), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [46600] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(772), 1, + sym_attribute_specifier, + ACTIONS(2869), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(2867), 18, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [46638] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(780), 1, + sym_attribute_specifier, + ACTIONS(2883), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(2881), 18, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [46676] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - STATE(827), 1, + STATE(746), 1, sym_attribute_specifier, - ACTIONS(2848), 6, + ACTIONS(2876), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(2846), 18, + ACTIONS(2874), 18, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -103021,39 +97666,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [46642] = 13, + [46714] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_const, - ACTIONS(1888), 1, + ACTIONS(1907), 1, anon_sym_LPAREN2, - ACTIONS(1890), 1, + ACTIONS(1909), 1, anon_sym_STAR, - ACTIONS(2776), 1, + ACTIONS(2802), 1, anon_sym_LBRACK, - STATE(754), 1, + STATE(708), 1, sym_alignas_qualifier, - STATE(1475), 1, + STATE(1414), 1, sym__abstract_declarator, - STATE(1494), 1, + STATE(1443), 1, sym_parameter_list, - ACTIONS(2916), 2, + ACTIONS(2931), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1123), 2, + STATE(985), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3206), 3, + ACTIONS(2804), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1495), 4, + STATE(1442), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(2910), 8, + ACTIONS(2925), 8, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -103062,39 +97707,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46696] = 13, + [46768] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_const, - ACTIONS(1888), 1, + ACTIONS(1907), 1, anon_sym_LPAREN2, - ACTIONS(1890), 1, + ACTIONS(1909), 1, anon_sym_STAR, - ACTIONS(2776), 1, + ACTIONS(2802), 1, anon_sym_LBRACK, - STATE(754), 1, + STATE(708), 1, sym_alignas_qualifier, - STATE(1473), 1, + STATE(1413), 1, sym__abstract_declarator, - STATE(1494), 1, + STATE(1443), 1, sym_parameter_list, - ACTIONS(2916), 2, + ACTIONS(2931), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1039), 2, + STATE(1074), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2906), 3, + ACTIONS(3221), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1495), 4, + STATE(1442), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(2910), 8, + ACTIONS(2925), 8, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -103103,35 +97748,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46750] = 12, + [46822] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1764), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2934), 1, + ACTIONS(2794), 1, sym_identifier, - ACTIONS(2936), 1, + ACTIONS(2983), 1, anon_sym_LPAREN2, - ACTIONS(2938), 1, + ACTIONS(2985), 1, anon_sym_STAR, - STATE(754), 1, + STATE(708), 1, sym_alignas_qualifier, - STATE(1339), 1, - sym__field_declarator, - STATE(1993), 1, + STATE(1264), 1, + sym__declarator, + STATE(1827), 1, sym_ms_based_modifier, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1039), 2, + STATE(985), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1414), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, + STATE(1322), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, ACTIONS(47), 9, anon_sym___extension__, anon_sym_const, @@ -103142,30 +97787,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46801] = 12, + [46873] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1764), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2768), 1, + ACTIONS(2794), 1, sym_identifier, - ACTIONS(2970), 1, + ACTIONS(2983), 1, anon_sym_LPAREN2, - ACTIONS(2972), 1, + ACTIONS(2985), 1, anon_sym_STAR, - STATE(754), 1, + STATE(708), 1, sym_alignas_qualifier, - STATE(1310), 1, + STATE(1265), 1, sym__declarator, - STATE(1943), 1, + STATE(1827), 1, sym_ms_based_modifier, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1039), 2, + STATE(985), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1371), 5, + STATE(1322), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -103181,35 +97826,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46852] = 12, + [46924] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1764), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2768), 1, + ACTIONS(2951), 1, sym_identifier, - ACTIONS(2970), 1, + ACTIONS(2953), 1, anon_sym_LPAREN2, - ACTIONS(2972), 1, + ACTIONS(2955), 1, anon_sym_STAR, - STATE(754), 1, + STATE(708), 1, sym_alignas_qualifier, - STATE(1311), 1, - sym__declarator, - STATE(1943), 1, + STATE(1290), 1, + sym__field_declarator, + STATE(1732), 1, sym_ms_based_modifier, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1039), 2, + STATE(985), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1371), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, + STATE(1349), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, ACTIONS(47), 9, anon_sym___extension__, anon_sym_const, @@ -103220,30 +97865,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46903] = 12, + [46975] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1764), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2768), 1, + ACTIONS(2794), 1, sym_identifier, - ACTIONS(2970), 1, + ACTIONS(2983), 1, anon_sym_LPAREN2, - ACTIONS(2972), 1, + ACTIONS(2985), 1, anon_sym_STAR, - STATE(754), 1, + STATE(708), 1, sym_alignas_qualifier, - STATE(1319), 1, + STATE(1261), 1, sym__declarator, - STATE(1943), 1, + STATE(1827), 1, sym_ms_based_modifier, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1039), 2, + STATE(985), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1371), 5, + STATE(1322), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -103259,30 +97904,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46954] = 12, + [47026] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1764), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2934), 1, + ACTIONS(2951), 1, sym_identifier, - ACTIONS(2936), 1, + ACTIONS(2953), 1, anon_sym_LPAREN2, - ACTIONS(2938), 1, + ACTIONS(2955), 1, anon_sym_STAR, - STATE(754), 1, + STATE(708), 1, sym_alignas_qualifier, - STATE(1355), 1, + STATE(1295), 1, sym__field_declarator, - STATE(1993), 1, + STATE(1732), 1, sym_ms_based_modifier, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1039), 2, + STATE(985), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1414), 5, + STATE(1349), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -103298,30 +97943,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47005] = 12, + [47077] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1764), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2934), 1, + ACTIONS(2951), 1, sym_identifier, - ACTIONS(2936), 1, + ACTIONS(2953), 1, anon_sym_LPAREN2, - ACTIONS(2938), 1, + ACTIONS(2955), 1, anon_sym_STAR, - STATE(754), 1, + STATE(708), 1, sym_alignas_qualifier, - STATE(1353), 1, + STATE(1303), 1, sym__field_declarator, - STATE(1993), 1, + STATE(1732), 1, sym_ms_based_modifier, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1039), 2, + STATE(985), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1414), 5, + STATE(1349), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -103337,27 +97982,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47056] = 6, + [47128] = 6, ACTIONS(3), 1, sym_comment, - STATE(776), 1, + STATE(721), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2463), 2, + ACTIONS(2466), 2, sym_primitive_type, sym_identifier, - ACTIONS(2467), 4, + ACTIONS(2470), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2677), 6, + ACTIONS(2596), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(2674), 11, + ACTIONS(2593), 11, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -103369,28 +98014,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - [47094] = 7, + [47166] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2497), 1, + ACTIONS(2673), 1, sym_primitive_type, - ACTIONS(3208), 1, + ACTIONS(3223), 1, sym_identifier, - STATE(1140), 1, + STATE(1090), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(3210), 4, + ACTIONS(3225), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2491), 6, + ACTIONS(2667), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(2493), 11, + ACTIONS(2669), 11, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -103402,21 +98047,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - [47134] = 7, + [47206] = 7, ACTIONS(3), 1, sym_comment, - STATE(754), 1, + STATE(708), 1, sym_alignas_qualifier, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(3214), 2, + ACTIONS(3229), 2, anon_sym_LPAREN2, anon_sym_STAR, - STATE(1143), 2, + STATE(1096), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3212), 7, + ACTIONS(3227), 7, anon_sym___based, anon_sym_signed, anon_sym_unsigned, @@ -103434,21 +98079,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47173] = 7, + [47245] = 7, ACTIONS(3), 1, sym_comment, - STATE(754), 1, + STATE(708), 1, sym_alignas_qualifier, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(3218), 2, + ACTIONS(3233), 2, anon_sym_LPAREN2, anon_sym_STAR, - STATE(1039), 2, + STATE(1095), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3216), 7, + ACTIONS(3231), 7, anon_sym___based, anon_sym_signed, anon_sym_unsigned, @@ -103466,31 +98111,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47212] = 12, + [47284] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1764), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2873), 1, + ACTIONS(2888), 1, sym_identifier, - ACTIONS(2875), 1, + ACTIONS(2890), 1, anon_sym_LPAREN2, - ACTIONS(2877), 1, + ACTIONS(2892), 1, anon_sym_STAR, - ACTIONS(2881), 1, + ACTIONS(2896), 1, sym_primitive_type, - STATE(1294), 1, + STATE(1241), 1, sym_ms_call_modifier, - STATE(1438), 1, + STATE(1389), 1, sym__type_declarator, - STATE(1909), 1, + STATE(1842), 1, sym_ms_based_modifier, - ACTIONS(2879), 4, + ACTIONS(2894), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1444), 5, + STATE(1382), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -103503,21 +98148,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [47261] = 7, + [47333] = 7, ACTIONS(3), 1, sym_comment, - STATE(754), 1, + STATE(708), 1, sym_alignas_qualifier, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(3222), 2, + ACTIONS(3237), 2, anon_sym_LPAREN2, anon_sym_STAR, - STATE(1146), 2, + STATE(985), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3220), 7, + ACTIONS(3235), 7, anon_sym___based, anon_sym_signed, anon_sym_unsigned, @@ -103535,21 +98180,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47300] = 7, + [47372] = 7, ACTIONS(3), 1, sym_comment, - STATE(754), 1, + STATE(708), 1, sym_alignas_qualifier, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(3226), 2, + ACTIONS(3241), 2, anon_sym_LPAREN2, anon_sym_STAR, - STATE(1039), 2, + STATE(985), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3224), 7, + ACTIONS(3239), 7, anon_sym___based, anon_sym_signed, anon_sym_unsigned, @@ -103567,34 +98212,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47339] = 15, + [47411] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3245), 1, + anon_sym_LPAREN2, + STATE(984), 1, + sym_preproc_argument_list, + ACTIONS(3247), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3243), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [47445] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1764), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2970), 1, + ACTIONS(2983), 1, anon_sym_LPAREN2, - ACTIONS(2972), 1, + ACTIONS(2985), 1, anon_sym_STAR, - ACTIONS(3228), 1, + ACTIONS(3249), 1, sym_identifier, - STATE(694), 1, + STATE(633), 1, sym__old_style_function_declarator, - STATE(1318), 1, + STATE(1269), 1, sym_ms_call_modifier, - STATE(1371), 1, + STATE(1322), 1, sym_function_declarator, - STATE(1376), 1, + STATE(1326), 1, sym__declarator, - STATE(1485), 1, + STATE(1410), 1, sym__declaration_declarator, - STATE(1524), 1, + STATE(1511), 1, + sym__function_declaration_declarator, + STATE(1590), 1, + sym_init_declarator, + STATE(1827), 1, + sym_ms_based_modifier, + STATE(1347), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [47499] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2983), 1, + anon_sym_LPAREN2, + ACTIONS(2985), 1, + anon_sym_STAR, + ACTIONS(3249), 1, + sym_identifier, + STATE(640), 1, + sym__old_style_function_declarator, + STATE(1268), 1, + sym_ms_call_modifier, + STATE(1319), 1, + sym__declarator, + STATE(1322), 1, + sym_function_declarator, + STATE(1400), 1, + sym__declaration_declarator, + STATE(1511), 1, sym__function_declaration_declarator, - STATE(1596), 1, + STATE(1557), 1, sym_init_declarator, - STATE(1943), 1, + STATE(1827), 1, sym_ms_based_modifier, - STATE(1388), 4, + STATE(1347), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -103606,63 +98319,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [47393] = 5, + [47553] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(3232), 1, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2983), 1, anon_sym_LPAREN2, - STATE(1041), 1, - sym_preproc_argument_list, - ACTIONS(3234), 5, + ACTIONS(2985), 1, + anon_sym_STAR, + ACTIONS(3249), 1, + sym_identifier, + STATE(650), 1, + sym__old_style_function_declarator, + STATE(1266), 1, + sym_ms_call_modifier, + STATE(1322), 1, + sym_function_declarator, + STATE(1324), 1, + sym__declarator, + STATE(1401), 1, + sym__declaration_declarator, + STATE(1511), 1, + sym__function_declaration_declarator, + STATE(1529), 1, + sym_init_declarator, + STATE(1827), 1, + sym_ms_based_modifier, + STATE(1347), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [47607] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2983), 1, + anon_sym_LPAREN2, + ACTIONS(2985), 1, + anon_sym_STAR, + ACTIONS(3249), 1, + sym_identifier, + STATE(642), 1, + sym__old_style_function_declarator, + STATE(1267), 1, + sym_ms_call_modifier, + STATE(1318), 1, + sym__declarator, + STATE(1322), 1, + sym_function_declarator, + STATE(1421), 1, + sym__declaration_declarator, + STATE(1511), 1, + sym__function_declaration_declarator, + STATE(1538), 1, + sym_init_declarator, + STATE(1827), 1, + sym_ms_based_modifier, + STATE(1347), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [47661] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3251), 1, + anon_sym_COMMA, + ACTIONS(3253), 1, + anon_sym_RPAREN, + ACTIONS(3259), 1, anon_sym_SLASH, + ACTIONS(3261), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3263), 1, + anon_sym_AMP_AMP, + ACTIONS(3265), 1, anon_sym_PIPE, + ACTIONS(3267), 1, + anon_sym_CARET, + ACTIONS(3269), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3230), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(1624), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(3255), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3257), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(3271), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3273), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3275), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(3277), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [47427] = 15, + [47716] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1764), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2970), 1, + ACTIONS(2983), 1, anon_sym_LPAREN2, - ACTIONS(2972), 1, + ACTIONS(2985), 1, anon_sym_STAR, - ACTIONS(3228), 1, + ACTIONS(3249), 1, sym_identifier, - STATE(688), 1, - sym__old_style_function_declarator, - STATE(1315), 1, + STATE(1271), 1, sym_ms_call_modifier, - STATE(1371), 1, + STATE(1322), 1, sym_function_declarator, - STATE(1374), 1, + STATE(1397), 1, sym__declarator, - STATE(1458), 1, + STATE(1431), 1, sym__declaration_declarator, - STATE(1524), 1, + STATE(1511), 1, sym__function_declaration_declarator, - STATE(1678), 1, + STATE(1570), 1, sym_init_declarator, - STATE(1943), 1, + STATE(1827), 1, sym_ms_based_modifier, - STATE(1388), 4, + STATE(1347), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -103674,34 +98473,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [47481] = 15, + [47767] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1729), 1, + anon_sym_STAR, + ACTIONS(2619), 1, + anon_sym_LPAREN2, + STATE(1124), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(3279), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(1716), 14, + anon_sym___extension__, + anon_sym___based, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [47802] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(721), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2545), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(3282), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2543), 14, + anon_sym___extension__, + anon_sym___based, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [47835] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1764), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2970), 1, + ACTIONS(2983), 1, anon_sym_LPAREN2, - ACTIONS(2972), 1, + ACTIONS(2985), 1, anon_sym_STAR, - ACTIONS(3228), 1, + ACTIONS(3249), 1, sym_identifier, - STATE(700), 1, - sym__old_style_function_declarator, - STATE(1308), 1, + STATE(1269), 1, sym_ms_call_modifier, - STATE(1371), 1, + STATE(1322), 1, sym_function_declarator, - STATE(1373), 1, + STATE(1335), 1, sym__declarator, - STATE(1474), 1, + STATE(1410), 1, sym__declaration_declarator, - STATE(1524), 1, + STATE(1511), 1, sym__function_declaration_declarator, - STATE(1634), 1, + STATE(1590), 1, sym_init_declarator, - STATE(1943), 1, + STATE(1827), 1, sym_ms_based_modifier, - STATE(1388), 4, + STATE(1347), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -103713,34 +98567,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [47535] = 15, + [47886] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1764), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2970), 1, + ACTIONS(2983), 1, anon_sym_LPAREN2, - ACTIONS(2972), 1, + ACTIONS(2985), 1, anon_sym_STAR, - ACTIONS(3228), 1, + ACTIONS(3249), 1, sym_identifier, - STATE(687), 1, - sym__old_style_function_declarator, - STATE(1314), 1, + STATE(1258), 1, sym_ms_call_modifier, - STATE(1368), 1, + STATE(1322), 1, + sym_function_declarator, + STATE(1397), 1, sym__declarator, - STATE(1371), 1, + STATE(1400), 1, + sym__declaration_declarator, + STATE(1511), 1, + sym__function_declaration_declarator, + STATE(1557), 1, + sym_init_declarator, + STATE(1827), 1, + sym_ms_based_modifier, + STATE(1347), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [47937] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3285), 1, + sym_identifier, + ACTIONS(3287), 1, + anon_sym_RPAREN, + ACTIONS(3289), 1, + anon_sym_LPAREN2, + ACTIONS(3291), 1, + anon_sym_defined, + ACTIONS(3297), 1, + sym_number_literal, + ACTIONS(3293), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3295), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3299), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1102), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [47980] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2983), 1, + anon_sym_LPAREN2, + ACTIONS(2985), 1, + anon_sym_STAR, + ACTIONS(3249), 1, + sym_identifier, + STATE(1275), 1, + sym_ms_call_modifier, + STATE(1322), 1, sym_function_declarator, - STATE(1476), 1, + STATE(1397), 1, + sym__declarator, + STATE(1401), 1, sym__declaration_declarator, - STATE(1524), 1, + STATE(1511), 1, sym__function_declaration_declarator, - STATE(1639), 1, + STATE(1529), 1, sym_init_declarator, - STATE(1943), 1, + STATE(1827), 1, sym_ms_based_modifier, - STATE(1388), 4, + STATE(1347), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -103752,32 +98674,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [47589] = 10, + [48031] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3236), 1, + ACTIONS(3285), 1, sym_identifier, - ACTIONS(3238), 1, + ACTIONS(3289), 1, + anon_sym_LPAREN2, + ACTIONS(3291), 1, + anon_sym_defined, + ACTIONS(3301), 1, anon_sym_RPAREN, - ACTIONS(3240), 1, + ACTIONS(3303), 1, + sym_number_literal, + ACTIONS(3293), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3295), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3299), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1129), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [48074] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2983), 1, + anon_sym_LPAREN2, + ACTIONS(2985), 1, + anon_sym_STAR, + ACTIONS(3249), 1, + sym_identifier, + STATE(1274), 1, + sym_ms_call_modifier, + STATE(1322), 1, + sym_function_declarator, + STATE(1397), 1, + sym__declarator, + STATE(1428), 1, + sym__declaration_declarator, + STATE(1511), 1, + sym__function_declaration_declarator, + STATE(1641), 1, + sym_init_declarator, + STATE(1827), 1, + sym_ms_based_modifier, + STATE(1347), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [48125] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2983), 1, + anon_sym_LPAREN2, + ACTIONS(2985), 1, + anon_sym_STAR, + ACTIONS(3249), 1, + sym_identifier, + STATE(1272), 1, + sym_ms_call_modifier, + STATE(1322), 1, + sym_function_declarator, + STATE(1397), 1, + sym__declarator, + STATE(1453), 1, + sym__declaration_declarator, + STATE(1511), 1, + sym__function_declaration_declarator, + STATE(1644), 1, + sym_init_declarator, + STATE(1827), 1, + sym_ms_based_modifier, + STATE(1347), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [48176] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3285), 1, + sym_identifier, + ACTIONS(3289), 1, anon_sym_LPAREN2, - ACTIONS(3242), 1, + ACTIONS(3291), 1, anon_sym_defined, - ACTIONS(3248), 1, + ACTIONS(3305), 1, + anon_sym_RPAREN, + ACTIONS(3307), 1, sym_number_literal, - ACTIONS(3244), 2, + ACTIONS(3293), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3246), 2, + ACTIONS(3295), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3250), 5, + ACTIONS(3299), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1176), 7, + STATE(1116), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -103785,20 +98814,20 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [47632] = 5, + [48219] = 5, ACTIONS(3), 1, sym_comment, - STATE(1161), 1, + STATE(721), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2666), 2, + ACTIONS(2596), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3252), 4, + ACTIONS(3309), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2664), 14, + ACTIONS(2593), 14, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -103813,60 +98842,173 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [47665] = 5, + [48252] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2983), 1, + anon_sym_LPAREN2, + ACTIONS(2985), 1, + anon_sym_STAR, + ACTIONS(3249), 1, + sym_identifier, + STATE(1260), 1, + sym_ms_call_modifier, + STATE(1322), 1, + sym_function_declarator, + STATE(1397), 1, + sym__declarator, + STATE(1421), 1, + sym__declaration_declarator, + STATE(1511), 1, + sym__function_declaration_declarator, + STATE(1538), 1, + sym_init_declarator, + STATE(1827), 1, + sym_ms_based_modifier, + STATE(1347), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [48303] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3251), 1, + anon_sym_COMMA, + ACTIONS(3259), 1, + anon_sym_SLASH, + ACTIONS(3261), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3263), 1, + anon_sym_AMP_AMP, + ACTIONS(3265), 1, + anon_sym_PIPE, + ACTIONS(3267), 1, + anon_sym_CARET, + ACTIONS(3269), 1, + anon_sym_AMP, + ACTIONS(3313), 1, + anon_sym_RPAREN, + STATE(1592), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(3255), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3257), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3271), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3273), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3275), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3277), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [48358] = 5, + ACTIONS(3243), 1, + anon_sym_LF, + ACTIONS(3315), 1, + anon_sym_LPAREN2, + ACTIONS(3317), 1, + sym_comment, + STATE(1189), 1, + sym_preproc_argument_list, + ACTIONS(3247), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [48391] = 14, ACTIONS(3), 1, sym_comment, - STATE(1157), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2640), 2, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2983), 1, anon_sym_LPAREN2, + ACTIONS(2985), 1, anon_sym_STAR, - ACTIONS(3255), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2638), 14, - anon_sym___extension__, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, + ACTIONS(3249), 1, sym_identifier, - [47698] = 14, + STATE(1267), 1, + sym_ms_call_modifier, + STATE(1322), 1, + sym_function_declarator, + STATE(1339), 1, + sym__declarator, + STATE(1421), 1, + sym__declaration_declarator, + STATE(1511), 1, + sym__function_declaration_declarator, + STATE(1538), 1, + sym_init_declarator, + STATE(1827), 1, + sym_ms_based_modifier, + STATE(1347), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [48442] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1764), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2970), 1, + ACTIONS(2983), 1, anon_sym_LPAREN2, - ACTIONS(2972), 1, + ACTIONS(2985), 1, anon_sym_STAR, - ACTIONS(3228), 1, + ACTIONS(3249), 1, sym_identifier, - STATE(1315), 1, + STATE(1277), 1, sym_ms_call_modifier, - STATE(1371), 1, + STATE(1322), 1, sym_function_declarator, - STATE(1395), 1, + STATE(1397), 1, sym__declarator, - STATE(1458), 1, + STATE(1410), 1, sym__declaration_declarator, - STATE(1524), 1, + STATE(1511), 1, sym__function_declaration_declarator, - STATE(1678), 1, + STATE(1590), 1, sym_init_declarator, - STATE(1943), 1, + STATE(1827), 1, sym_ms_based_modifier, - STATE(1388), 4, + STATE(1347), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -103878,32 +99020,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [47749] = 14, + [48493] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1764), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2970), 1, + ACTIONS(2983), 1, anon_sym_LPAREN2, - ACTIONS(2972), 1, + ACTIONS(2985), 1, anon_sym_STAR, - ACTIONS(3228), 1, + ACTIONS(3249), 1, sym_identifier, - STATE(1322), 1, + STATE(1268), 1, sym_ms_call_modifier, - STATE(1371), 1, + STATE(1322), 1, sym_function_declarator, - STATE(1427), 1, + STATE(1334), 1, sym__declarator, - STATE(1481), 1, + STATE(1400), 1, sym__declaration_declarator, - STATE(1524), 1, + STATE(1511), 1, sym__function_declaration_declarator, - STATE(1668), 1, + STATE(1557), 1, sym_init_declarator, - STATE(1943), 1, + STATE(1827), 1, sym_ms_based_modifier, - STATE(1388), 4, + STATE(1347), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -103915,20 +99057,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [47800] = 5, + [48544] = 7, ACTIONS(3), 1, sym_comment, - STATE(776), 1, + ACTIONS(3319), 1, + sym_identifier, + ACTIONS(3325), 1, + sym_primitive_type, + STATE(1114), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2554), 2, + ACTIONS(2667), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3258), 4, + ACTIONS(3322), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2552), 14, + ACTIONS(2669), 12, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -103941,61 +99087,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [47833] = 16, + [48581] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3261), 1, - anon_sym_COMMA, - ACTIONS(3263), 1, - anon_sym_RPAREN, - ACTIONS(3269), 1, - anon_sym_SLASH, - ACTIONS(3271), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3273), 1, - anon_sym_AMP_AMP, - ACTIONS(3275), 1, - anon_sym_PIPE, - ACTIONS(3277), 1, - anon_sym_CARET, - ACTIONS(3279), 1, - anon_sym_AMP, - STATE(1600), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(3265), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3267), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3281), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3283), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3285), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3287), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [47888] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(776), 1, + STATE(1105), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2558), 2, + ACTIONS(2601), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3289), 4, + ACTIONS(3328), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2556), 14, + ACTIONS(2599), 14, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -104010,48 +99115,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [47921] = 5, - ACTIONS(3230), 1, - anon_sym_LF, - ACTIONS(3292), 1, - anon_sym_LPAREN2, - ACTIONS(3294), 1, - sym_comment, - STATE(1258), 1, - sym_preproc_argument_list, - ACTIONS(3234), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [47954] = 5, + [48614] = 5, ACTIONS(3), 1, sym_comment, - STATE(776), 1, + STATE(1127), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2562), 2, + ACTIONS(2607), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3296), 4, + ACTIONS(3331), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2560), 14, + ACTIONS(2605), 14, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -104066,21 +99143,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [47987] = 6, + [48647] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1713), 1, - anon_sym_STAR, - ACTIONS(2549), 1, - anon_sym_LPAREN2, - STATE(1179), 1, + STATE(721), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(3299), 4, + ACTIONS(2697), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(3334), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(1700), 14, + ACTIONS(2695), 14, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -104095,32 +99171,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [48022] = 14, + [48680] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1764), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2970), 1, + ACTIONS(2983), 1, anon_sym_LPAREN2, - ACTIONS(2972), 1, + ACTIONS(2985), 1, anon_sym_STAR, - ACTIONS(3228), 1, + ACTIONS(3249), 1, sym_identifier, - STATE(1327), 1, + STATE(1266), 1, sym_ms_call_modifier, - STATE(1371), 1, + STATE(1322), 1, sym_function_declarator, - STATE(1427), 1, + STATE(1346), 1, sym__declarator, - STATE(1474), 1, + STATE(1401), 1, sym__declaration_declarator, - STATE(1524), 1, + STATE(1511), 1, sym__function_declaration_declarator, - STATE(1634), 1, + STATE(1529), 1, sym_init_declarator, - STATE(1943), 1, + STATE(1827), 1, sym_ms_based_modifier, - STATE(1388), 4, + STATE(1347), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -104132,127 +99208,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [48073] = 14, + [48731] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1764), 1, - anon_sym___based, - ACTIONS(2970), 1, + STATE(721), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2701), 2, anon_sym_LPAREN2, - ACTIONS(2972), 1, anon_sym_STAR, - ACTIONS(3228), 1, - sym_identifier, - STATE(1309), 1, - sym_ms_call_modifier, - STATE(1371), 1, - sym_function_declarator, - STATE(1427), 1, - sym__declarator, - STATE(1476), 1, - sym__declaration_declarator, - STATE(1524), 1, - sym__function_declaration_declarator, - STATE(1639), 1, - sym_init_declarator, - STATE(1943), 1, - sym_ms_based_modifier, - STATE(1388), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - ACTIONS(39), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [48124] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3236), 1, - sym_identifier, - ACTIONS(3240), 1, - anon_sym_LPAREN2, - ACTIONS(3242), 1, - anon_sym_defined, - ACTIONS(3302), 1, - anon_sym_RPAREN, - ACTIONS(3304), 1, - sym_number_literal, - ACTIONS(3244), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3246), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3250), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1170), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [48167] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1764), 1, + ACTIONS(3337), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2699), 14, + anon_sym___extension__, anon_sym___based, - ACTIONS(2970), 1, - anon_sym_LPAREN2, - ACTIONS(2972), 1, - anon_sym_STAR, - ACTIONS(3228), 1, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, sym_identifier, - STATE(1328), 1, - sym_ms_call_modifier, - STATE(1371), 1, - sym_function_declarator, - STATE(1427), 1, - sym__declarator, - STATE(1479), 1, - sym__declaration_declarator, - STATE(1524), 1, - sym__function_declaration_declarator, - STATE(1650), 1, - sym_init_declarator, - STATE(1943), 1, - sym_ms_based_modifier, - STATE(1388), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - ACTIONS(39), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [48218] = 5, + [48764] = 5, ACTIONS(3), 1, sym_comment, - STATE(1159), 1, + STATE(721), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2622), 2, + ACTIONS(2677), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3306), 4, + ACTIONS(3340), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2620), 14, + ACTIONS(2675), 14, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -104267,175 +99264,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [48251] = 14, + [48797] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1764), 1, - anon_sym___based, - ACTIONS(2970), 1, + STATE(1126), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2656), 2, anon_sym_LPAREN2, - ACTIONS(2972), 1, anon_sym_STAR, - ACTIONS(3228), 1, - sym_identifier, - STATE(1320), 1, - sym_ms_call_modifier, - STATE(1371), 1, - sym_function_declarator, - STATE(1427), 1, - sym__declarator, - STATE(1458), 1, - sym__declaration_declarator, - STATE(1524), 1, - sym__function_declaration_declarator, - STATE(1678), 1, - sym_init_declarator, - STATE(1943), 1, - sym_ms_based_modifier, - STATE(1388), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - ACTIONS(39), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [48302] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1764), 1, + ACTIONS(3343), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2654), 14, + anon_sym___extension__, anon_sym___based, - ACTIONS(2970), 1, - anon_sym_LPAREN2, - ACTIONS(2972), 1, - anon_sym_STAR, - ACTIONS(3228), 1, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, sym_identifier, - STATE(1308), 1, - sym_ms_call_modifier, - STATE(1371), 1, - sym_function_declarator, - STATE(1383), 1, - sym__declarator, - STATE(1474), 1, - sym__declaration_declarator, - STATE(1524), 1, - sym__function_declaration_declarator, - STATE(1634), 1, - sym_init_declarator, - STATE(1943), 1, - sym_ms_based_modifier, - STATE(1388), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - ACTIONS(39), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [48353] = 16, + [48830] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3261), 1, + ACTIONS(3251), 1, anon_sym_COMMA, - ACTIONS(3269), 1, + ACTIONS(3259), 1, anon_sym_SLASH, - ACTIONS(3271), 1, + ACTIONS(3261), 1, anon_sym_PIPE_PIPE, - ACTIONS(3273), 1, + ACTIONS(3263), 1, anon_sym_AMP_AMP, - ACTIONS(3275), 1, + ACTIONS(3265), 1, anon_sym_PIPE, - ACTIONS(3277), 1, + ACTIONS(3267), 1, anon_sym_CARET, - ACTIONS(3279), 1, + ACTIONS(3269), 1, anon_sym_AMP, - ACTIONS(3309), 1, + ACTIONS(3346), 1, anon_sym_RPAREN, - STATE(1628), 1, + STATE(1584), 1, aux_sym_preproc_argument_list_repeat1, - ACTIONS(3265), 2, + ACTIONS(3255), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3267), 2, + ACTIONS(3257), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3281), 2, + ACTIONS(3271), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3283), 2, + ACTIONS(3273), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3285), 2, + ACTIONS(3275), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3287), 2, + ACTIONS(3277), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [48408] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3311), 1, - sym_identifier, - ACTIONS(3317), 1, - sym_primitive_type, - STATE(1174), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2491), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3314), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2493), 12, - anon_sym___extension__, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - [48445] = 10, + [48885] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3236), 1, + ACTIONS(3348), 1, sym_identifier, - ACTIONS(3240), 1, + ACTIONS(3350), 1, anon_sym_LPAREN2, - ACTIONS(3242), 1, + ACTIONS(3352), 1, anon_sym_defined, - ACTIONS(3320), 1, - anon_sym_RPAREN, - ACTIONS(3322), 1, + ACTIONS(3358), 1, sym_number_literal, - ACTIONS(3244), 2, + ACTIONS(3354), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3246), 2, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3250), 5, + ACTIONS(3360), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1158), 7, + STATE(1208), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104443,304 +99362,220 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48488] = 14, + [48925] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1764), 1, - anon_sym___based, - ACTIONS(2970), 1, - anon_sym_LPAREN2, - ACTIONS(2972), 1, - anon_sym_STAR, - ACTIONS(3228), 1, + ACTIONS(3285), 1, sym_identifier, - STATE(1321), 1, - sym_ms_call_modifier, - STATE(1371), 1, - sym_function_declarator, - STATE(1427), 1, - sym__declarator, - STATE(1485), 1, - sym__declaration_declarator, - STATE(1524), 1, - sym__function_declaration_declarator, - STATE(1596), 1, - sym_init_declarator, - STATE(1943), 1, - sym_ms_based_modifier, - STATE(1388), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - ACTIONS(39), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [48539] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(776), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2677), 2, + ACTIONS(3289), 1, anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3324), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2674), 14, - anon_sym___extension__, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [48572] = 14, + ACTIONS(3291), 1, + anon_sym_defined, + ACTIONS(3362), 1, + sym_number_literal, + ACTIONS(3293), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3295), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3299), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1146), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [48965] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1764), 1, - anon_sym___based, - ACTIONS(2970), 1, - anon_sym_LPAREN2, - ACTIONS(2972), 1, + ACTIONS(3259), 1, + anon_sym_SLASH, + ACTIONS(3265), 1, + anon_sym_PIPE, + ACTIONS(3267), 1, + anon_sym_CARET, + ACTIONS(3269), 1, + anon_sym_AMP, + ACTIONS(3255), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3257), 2, anon_sym_STAR, - ACTIONS(3228), 1, - sym_identifier, - STATE(1314), 1, - sym_ms_call_modifier, - STATE(1371), 1, - sym_function_declarator, - STATE(1382), 1, - sym__declarator, - STATE(1476), 1, - sym__declaration_declarator, - STATE(1524), 1, - sym__function_declaration_declarator, - STATE(1639), 1, - sym_init_declarator, - STATE(1943), 1, - sym_ms_based_modifier, - STATE(1388), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - ACTIONS(39), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [48623] = 16, + anon_sym_PERCENT, + ACTIONS(3271), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3273), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3275), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3277), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3364), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [49011] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3261), 1, - anon_sym_COMMA, - ACTIONS(3269), 1, + ACTIONS(3259), 1, anon_sym_SLASH, - ACTIONS(3271), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3273), 1, + ACTIONS(3263), 1, anon_sym_AMP_AMP, - ACTIONS(3275), 1, + ACTIONS(3265), 1, anon_sym_PIPE, - ACTIONS(3277), 1, + ACTIONS(3267), 1, anon_sym_CARET, - ACTIONS(3279), 1, + ACTIONS(3269), 1, anon_sym_AMP, - ACTIONS(3328), 1, - anon_sym_RPAREN, - STATE(1692), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(3265), 2, + ACTIONS(3255), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3267), 2, + ACTIONS(3257), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3281), 2, + ACTIONS(3271), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3283), 2, + ACTIONS(3273), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3285), 2, + ACTIONS(3275), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3287), 2, + ACTIONS(3277), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [48678] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1764), 1, - anon_sym___based, - ACTIONS(2970), 1, - anon_sym_LPAREN2, - ACTIONS(2972), 1, - anon_sym_STAR, - ACTIONS(3228), 1, - sym_identifier, - STATE(1313), 1, - sym_ms_call_modifier, - STATE(1371), 1, - sym_function_declarator, - STATE(1427), 1, - sym__declarator, - STATE(1488), 1, - sym__declaration_declarator, - STATE(1524), 1, - sym__function_declaration_declarator, - STATE(1774), 1, - sym_init_declarator, - STATE(1943), 1, - sym_ms_based_modifier, - STATE(1388), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - ACTIONS(39), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [48729] = 14, + ACTIONS(3364), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + [49059] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1764), 1, - anon_sym___based, - ACTIONS(2970), 1, - anon_sym_LPAREN2, - ACTIONS(2972), 1, + ACTIONS(3259), 1, + anon_sym_SLASH, + ACTIONS(3269), 1, + anon_sym_AMP, + ACTIONS(3366), 1, + anon_sym_PIPE, + ACTIONS(3255), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3257), 2, anon_sym_STAR, - ACTIONS(3228), 1, - sym_identifier, - STATE(1318), 1, - sym_ms_call_modifier, - STATE(1371), 1, - sym_function_declarator, - STATE(1390), 1, - sym__declarator, - STATE(1485), 1, - sym__declaration_declarator, - STATE(1524), 1, - sym__function_declaration_declarator, - STATE(1596), 1, - sym_init_declarator, - STATE(1943), 1, - sym_ms_based_modifier, - STATE(1388), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - ACTIONS(39), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [48780] = 5, + anon_sym_PERCENT, + ACTIONS(3271), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3273), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3275), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3277), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3364), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [49103] = 3, ACTIONS(3), 1, sym_comment, - STATE(776), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2529), 2, - anon_sym_LPAREN2, + ACTIONS(3366), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3364), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(3330), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2527), 14, - anon_sym___extension__, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [48813] = 9, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [49131] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3333), 1, - sym_identifier, - ACTIONS(3335), 1, - anon_sym_LPAREN2, - ACTIONS(3337), 1, - anon_sym_defined, - ACTIONS(3343), 1, - sym_number_literal, - ACTIONS(3339), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3341), 2, + ACTIONS(3259), 1, + anon_sym_SLASH, + ACTIONS(3255), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3345), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1259), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [48853] = 9, + ACTIONS(3257), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3271), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3273), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3275), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3277), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3366), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3364), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [49173] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3236), 1, + ACTIONS(3348), 1, sym_identifier, - ACTIONS(3240), 1, + ACTIONS(3350), 1, anon_sym_LPAREN2, - ACTIONS(3242), 1, + ACTIONS(3352), 1, anon_sym_defined, - ACTIONS(3347), 1, + ACTIONS(3368), 1, sym_number_literal, - ACTIONS(3244), 2, + ACTIONS(3354), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3246), 2, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3250), 5, + ACTIONS(3360), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1197), 7, + STATE(1190), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104748,88 +99583,115 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48893] = 13, + [49213] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1760), 1, + ACTIONS(3372), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3370), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [49241] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, anon_sym_LPAREN2, - ACTIONS(1762), 1, + ACTIONS(1781), 1, anon_sym_STAR, - ACTIONS(1764), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2768), 1, + ACTIONS(2794), 1, sym_identifier, - ACTIONS(2776), 1, + ACTIONS(2802), 1, anon_sym_LBRACK, - STATE(1405), 1, + STATE(1363), 1, sym__declarator, - STATE(1494), 1, + STATE(1443), 1, sym_parameter_list, - STATE(1502), 1, + STATE(1456), 1, sym__abstract_declarator, - STATE(1943), 1, + STATE(1827), 1, sym_ms_based_modifier, - ACTIONS(3349), 2, + ACTIONS(3374), 2, anon_sym_COMMA, anon_sym_RPAREN, - STATE(1495), 4, + STATE(1442), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - STATE(1371), 5, + STATE(1322), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [48941] = 9, + [49289] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3333), 1, - sym_identifier, - ACTIONS(3335), 1, - anon_sym_LPAREN2, - ACTIONS(3337), 1, - anon_sym_defined, - ACTIONS(3351), 1, - sym_number_literal, - ACTIONS(3339), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3341), 2, + ACTIONS(3259), 1, + anon_sym_SLASH, + ACTIONS(3255), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3345), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1255), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [48981] = 3, + ACTIONS(3257), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3273), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3275), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3277), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3366), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3364), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [49329] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3355), 5, + ACTIONS(3259), 1, anon_sym_SLASH, + ACTIONS(3257), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3366), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3353), 15, + ACTIONS(3364), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -104839,30 +99701,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [49009] = 9, + [49361] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3333), 1, + ACTIONS(3348), 1, sym_identifier, - ACTIONS(3335), 1, + ACTIONS(3350), 1, anon_sym_LPAREN2, - ACTIONS(3337), 1, + ACTIONS(3352), 1, anon_sym_defined, - ACTIONS(3357), 1, + ACTIONS(3376), 1, sym_number_literal, - ACTIONS(3339), 2, + ACTIONS(3354), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3341), 2, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3345), 5, + ACTIONS(3360), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1248), 7, + STATE(1191), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104870,159 +99732,148 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49049] = 9, + [49401] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3333), 1, - sym_identifier, - ACTIONS(3335), 1, - anon_sym_LPAREN2, - ACTIONS(3337), 1, - anon_sym_defined, - ACTIONS(3359), 1, - sym_number_literal, - ACTIONS(3339), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3341), 2, + ACTIONS(3380), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3378), 15, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3345), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1240), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [49089] = 9, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [49429] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3333), 1, - sym_identifier, - ACTIONS(3335), 1, - anon_sym_LPAREN2, - ACTIONS(3337), 1, - anon_sym_defined, - ACTIONS(3361), 1, - sym_number_literal, - ACTIONS(3339), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3341), 2, + ACTIONS(3259), 1, + anon_sym_SLASH, + ACTIONS(3255), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3345), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1254), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [49129] = 9, + ACTIONS(3257), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3277), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3366), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3364), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [49465] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3333), 1, - sym_identifier, - ACTIONS(3335), 1, - anon_sym_LPAREN2, - ACTIONS(3337), 1, - anon_sym_defined, - ACTIONS(3363), 1, - sym_number_literal, - ACTIONS(3339), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3341), 2, + ACTIONS(3259), 1, + anon_sym_SLASH, + ACTIONS(3255), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3345), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1245), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [49169] = 14, + ACTIONS(3257), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3366), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3364), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [49499] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3269), 1, + ACTIONS(3259), 1, anon_sym_SLASH, - ACTIONS(3271), 1, + ACTIONS(3261), 1, anon_sym_PIPE_PIPE, - ACTIONS(3273), 1, + ACTIONS(3263), 1, anon_sym_AMP_AMP, - ACTIONS(3275), 1, + ACTIONS(3265), 1, anon_sym_PIPE, - ACTIONS(3277), 1, + ACTIONS(3267), 1, anon_sym_CARET, - ACTIONS(3279), 1, + ACTIONS(3269), 1, anon_sym_AMP, - ACTIONS(3265), 2, + ACTIONS(3255), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3267), 2, + ACTIONS(3257), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3281), 2, + ACTIONS(3271), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3283), 2, + ACTIONS(3273), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3285), 2, + ACTIONS(3275), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3287), 2, + ACTIONS(3277), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3365), 2, + ACTIONS(3382), 2, anon_sym_COMMA, anon_sym_RPAREN, - [49219] = 9, + [49549] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3236), 1, + ACTIONS(3348), 1, sym_identifier, - ACTIONS(3240), 1, + ACTIONS(3350), 1, anon_sym_LPAREN2, - ACTIONS(3242), 1, + ACTIONS(3352), 1, anon_sym_defined, - ACTIONS(3367), 1, + ACTIONS(3384), 1, sym_number_literal, - ACTIONS(3244), 2, + ACTIONS(3354), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3246), 2, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3250), 5, + ACTIONS(3360), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1216), 7, + STATE(1197), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105030,30 +99881,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49259] = 9, + [49589] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3236), 1, + ACTIONS(3348), 1, sym_identifier, - ACTIONS(3240), 1, + ACTIONS(3350), 1, anon_sym_LPAREN2, - ACTIONS(3242), 1, + ACTIONS(3352), 1, anon_sym_defined, - ACTIONS(3369), 1, + ACTIONS(3386), 1, sym_number_literal, - ACTIONS(3244), 2, + ACTIONS(3354), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3246), 2, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3250), 5, + ACTIONS(3360), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1239), 7, + STATE(1216), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105061,30 +99912,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49299] = 9, + [49629] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3333), 1, + ACTIONS(3285), 1, sym_identifier, - ACTIONS(3335), 1, + ACTIONS(3289), 1, anon_sym_LPAREN2, - ACTIONS(3337), 1, + ACTIONS(3291), 1, anon_sym_defined, - ACTIONS(3371), 1, + ACTIONS(3388), 1, sym_number_literal, - ACTIONS(3339), 2, + ACTIONS(3293), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3341), 2, + ACTIONS(3295), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3345), 5, + ACTIONS(3299), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1251), 7, + STATE(1141), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105092,16 +99943,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49339] = 3, + [49669] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3375), 5, + ACTIONS(3392), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3373), 15, + ACTIONS(3390), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -105117,30 +99968,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [49367] = 9, + [49697] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3236), 1, + ACTIONS(3348), 1, sym_identifier, - ACTIONS(3240), 1, + ACTIONS(3350), 1, anon_sym_LPAREN2, - ACTIONS(3242), 1, + ACTIONS(3352), 1, anon_sym_defined, - ACTIONS(3377), 1, + ACTIONS(3394), 1, sym_number_literal, - ACTIONS(3244), 2, + ACTIONS(3354), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3246), 2, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3250), 5, + ACTIONS(3360), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1205), 7, + STATE(1201), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105148,30 +99999,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49407] = 9, + [49737] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3236), 1, + ACTIONS(3348), 1, sym_identifier, - ACTIONS(3240), 1, + ACTIONS(3350), 1, anon_sym_LPAREN2, - ACTIONS(3242), 1, + ACTIONS(3352), 1, anon_sym_defined, - ACTIONS(3379), 1, + ACTIONS(3396), 1, sym_number_literal, - ACTIONS(3244), 2, + ACTIONS(3354), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3246), 2, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3250), 5, + ACTIONS(3360), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1241), 7, + STATE(1187), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105179,30 +100030,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49447] = 9, + [49777] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3236), 1, + ACTIONS(3348), 1, sym_identifier, - ACTIONS(3240), 1, + ACTIONS(3350), 1, anon_sym_LPAREN2, - ACTIONS(3242), 1, + ACTIONS(3352), 1, anon_sym_defined, - ACTIONS(3381), 1, + ACTIONS(3398), 1, sym_number_literal, - ACTIONS(3244), 2, + ACTIONS(3354), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3246), 2, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3250), 5, + ACTIONS(3360), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1206), 7, + STATE(1209), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105210,57 +100061,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49487] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3269), 1, - anon_sym_SLASH, - ACTIONS(3267), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3385), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3383), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [49519] = 9, + [49817] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3236), 1, + ACTIONS(3348), 1, sym_identifier, - ACTIONS(3240), 1, + ACTIONS(3350), 1, anon_sym_LPAREN2, - ACTIONS(3242), 1, + ACTIONS(3352), 1, anon_sym_defined, - ACTIONS(3387), 1, + ACTIONS(3400), 1, sym_number_literal, - ACTIONS(3244), 2, + ACTIONS(3354), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3246), 2, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3250), 5, + ACTIONS(3360), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1210), 7, + STATE(1207), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105268,30 +100092,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49559] = 9, + [49857] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3236), 1, + ACTIONS(3285), 1, sym_identifier, - ACTIONS(3240), 1, + ACTIONS(3289), 1, anon_sym_LPAREN2, - ACTIONS(3242), 1, + ACTIONS(3291), 1, anon_sym_defined, - ACTIONS(3389), 1, + ACTIONS(3402), 1, sym_number_literal, - ACTIONS(3244), 2, + ACTIONS(3293), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3246), 2, + ACTIONS(3295), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3250), 5, + ACTIONS(3299), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1214), 7, + STATE(1135), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105299,30 +100123,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49599] = 9, + [49897] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3236), 1, + ACTIONS(3348), 1, sym_identifier, - ACTIONS(3240), 1, + ACTIONS(3350), 1, anon_sym_LPAREN2, - ACTIONS(3242), 1, + ACTIONS(3352), 1, anon_sym_defined, - ACTIONS(3391), 1, + ACTIONS(3404), 1, sym_number_literal, - ACTIONS(3244), 2, + ACTIONS(3354), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3246), 2, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3250), 5, + ACTIONS(3360), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1215), 7, + STATE(1220), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105330,30 +100154,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49639] = 9, + [49937] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3236), 1, + ACTIONS(3348), 1, sym_identifier, - ACTIONS(3240), 1, + ACTIONS(3350), 1, anon_sym_LPAREN2, - ACTIONS(3242), 1, + ACTIONS(3352), 1, anon_sym_defined, - ACTIONS(3393), 1, + ACTIONS(3406), 1, sym_number_literal, - ACTIONS(3244), 2, + ACTIONS(3354), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3246), 2, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3250), 5, + ACTIONS(3360), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1217), 7, + STATE(1224), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105361,30 +100185,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49679] = 9, + [49977] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3236), 1, + ACTIONS(3348), 1, sym_identifier, - ACTIONS(3240), 1, + ACTIONS(3350), 1, anon_sym_LPAREN2, - ACTIONS(3242), 1, + ACTIONS(3352), 1, anon_sym_defined, - ACTIONS(3395), 1, + ACTIONS(3408), 1, sym_number_literal, - ACTIONS(3244), 2, + ACTIONS(3354), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3246), 2, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3250), 5, + ACTIONS(3360), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1219), 7, + STATE(1192), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105392,55 +100216,61 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49719] = 3, + [50017] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3385), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3383), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3285), 1, + sym_identifier, + ACTIONS(3289), 1, + anon_sym_LPAREN2, + ACTIONS(3291), 1, + anon_sym_defined, + ACTIONS(3410), 1, + sym_number_literal, + ACTIONS(3293), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3295), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [49747] = 9, + ACTIONS(3299), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1133), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [50057] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3236), 1, + ACTIONS(3348), 1, sym_identifier, - ACTIONS(3240), 1, + ACTIONS(3350), 1, anon_sym_LPAREN2, - ACTIONS(3242), 1, + ACTIONS(3352), 1, anon_sym_defined, - ACTIONS(3397), 1, + ACTIONS(3412), 1, sym_number_literal, - ACTIONS(3244), 2, + ACTIONS(3354), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3246), 2, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3250), 5, + ACTIONS(3360), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1231), 7, + STATE(1193), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105448,124 +100278,64 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49787] = 13, + [50097] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3269), 1, + ACTIONS(3259), 1, anon_sym_SLASH, - ACTIONS(3273), 1, - anon_sym_AMP_AMP, - ACTIONS(3275), 1, - anon_sym_PIPE, - ACTIONS(3277), 1, + ACTIONS(3267), 1, anon_sym_CARET, - ACTIONS(3279), 1, - anon_sym_AMP, - ACTIONS(3265), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3267), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3281), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3283), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3285), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3287), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3383), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - [49835] = 12, - ACTIONS(3), 1, - sym_comment, ACTIONS(3269), 1, - anon_sym_SLASH, - ACTIONS(3275), 1, - anon_sym_PIPE, - ACTIONS(3277), 1, - anon_sym_CARET, - ACTIONS(3279), 1, anon_sym_AMP, - ACTIONS(3265), 2, + ACTIONS(3366), 1, + anon_sym_PIPE, + ACTIONS(3255), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3267), 2, + ACTIONS(3257), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3281), 2, + ACTIONS(3271), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3283), 2, + ACTIONS(3273), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3285), 2, + ACTIONS(3275), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3287), 2, + ACTIONS(3277), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3383), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [49881] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2281), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2283), 15, + ACTIONS(3364), 4, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [49909] = 9, + [50143] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3333), 1, + ACTIONS(3285), 1, sym_identifier, - ACTIONS(3335), 1, + ACTIONS(3289), 1, anon_sym_LPAREN2, - ACTIONS(3337), 1, + ACTIONS(3291), 1, anon_sym_defined, - ACTIONS(3399), 1, + ACTIONS(3414), 1, sym_number_literal, - ACTIONS(3339), 2, + ACTIONS(3293), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3341), 2, + ACTIONS(3295), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3345), 5, + ACTIONS(3299), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1264), 7, + STATE(1132), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105573,30 +100343,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49949] = 9, + [50183] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3333), 1, + ACTIONS(3348), 1, sym_identifier, - ACTIONS(3335), 1, + ACTIONS(3350), 1, anon_sym_LPAREN2, - ACTIONS(3337), 1, + ACTIONS(3352), 1, anon_sym_defined, - ACTIONS(3401), 1, + ACTIONS(3416), 1, sym_number_literal, - ACTIONS(3339), 2, + ACTIONS(3354), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3341), 2, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3345), 5, + ACTIONS(3360), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1247), 7, + STATE(1199), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105604,64 +100374,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49989] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3269), 1, - anon_sym_SLASH, - ACTIONS(3277), 1, - anon_sym_CARET, - ACTIONS(3279), 1, - anon_sym_AMP, - ACTIONS(3385), 1, - anon_sym_PIPE, - ACTIONS(3265), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3267), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3281), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3283), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3285), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3287), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3383), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [50035] = 9, + [50223] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3333), 1, + ACTIONS(3348), 1, sym_identifier, - ACTIONS(3335), 1, + ACTIONS(3350), 1, anon_sym_LPAREN2, - ACTIONS(3337), 1, + ACTIONS(3352), 1, anon_sym_defined, - ACTIONS(3403), 1, + ACTIONS(3418), 1, sym_number_literal, - ACTIONS(3339), 2, + ACTIONS(3354), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3341), 2, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3345), 5, + ACTIONS(3360), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1269), 7, + STATE(1204), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105669,207 +100405,61 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [50075] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3407), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3405), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [50103] = 9, + [50263] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3333), 1, + ACTIONS(3285), 1, sym_identifier, - ACTIONS(3335), 1, + ACTIONS(3289), 1, anon_sym_LPAREN2, - ACTIONS(3337), 1, + ACTIONS(3291), 1, anon_sym_defined, - ACTIONS(3409), 1, + ACTIONS(3420), 1, sym_number_literal, - ACTIONS(3339), 2, + ACTIONS(3293), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3341), 2, + ACTIONS(3295), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3345), 5, + ACTIONS(3299), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1261), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [50143] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3269), 1, - anon_sym_SLASH, - ACTIONS(3279), 1, - anon_sym_AMP, - ACTIONS(3385), 1, - anon_sym_PIPE, - ACTIONS(3265), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3267), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3281), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3283), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3285), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3287), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3383), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [50187] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3269), 1, - anon_sym_SLASH, - ACTIONS(3265), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3267), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3281), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3283), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3285), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3287), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3385), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3383), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [50229] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3413), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3411), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [50257] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3269), 1, - anon_sym_SLASH, - ACTIONS(3265), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3267), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3283), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3285), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3287), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3385), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3383), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [50297] = 9, + anon_sym_SQUOTE, + STATE(1143), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [50303] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3236), 1, + ACTIONS(3348), 1, sym_identifier, - ACTIONS(3240), 1, + ACTIONS(3350), 1, anon_sym_LPAREN2, - ACTIONS(3242), 1, + ACTIONS(3352), 1, anon_sym_defined, - ACTIONS(3415), 1, + ACTIONS(3422), 1, sym_number_literal, - ACTIONS(3244), 2, + ACTIONS(3354), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3246), 2, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3250), 5, + ACTIONS(3360), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1189), 7, + STATE(1222), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105877,59 +100467,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [50337] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3269), 1, - anon_sym_SLASH, - ACTIONS(3265), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3267), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3287), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3385), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3383), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [50373] = 9, + [50343] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3333), 1, + ACTIONS(3285), 1, sym_identifier, - ACTIONS(3335), 1, + ACTIONS(3289), 1, anon_sym_LPAREN2, - ACTIONS(3337), 1, + ACTIONS(3291), 1, anon_sym_defined, - ACTIONS(3417), 1, + ACTIONS(3424), 1, sym_number_literal, - ACTIONS(3339), 2, + ACTIONS(3293), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3341), 2, + ACTIONS(3295), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3345), 5, + ACTIONS(3299), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1263), 7, + STATE(1203), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105937,30 +100498,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [50413] = 9, + [50383] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3236), 1, + ACTIONS(3348), 1, sym_identifier, - ACTIONS(3240), 1, + ACTIONS(3350), 1, anon_sym_LPAREN2, - ACTIONS(3242), 1, + ACTIONS(3352), 1, anon_sym_defined, - ACTIONS(3419), 1, + ACTIONS(3426), 1, sym_number_literal, - ACTIONS(3244), 2, + ACTIONS(3354), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3246), 2, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3250), 5, + ACTIONS(3360), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1203), 7, + STATE(1186), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105968,30 +100529,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [50453] = 9, + [50423] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3333), 1, + ACTIONS(3285), 1, sym_identifier, - ACTIONS(3335), 1, + ACTIONS(3289), 1, anon_sym_LPAREN2, - ACTIONS(3337), 1, + ACTIONS(3291), 1, anon_sym_defined, - ACTIONS(3421), 1, + ACTIONS(3428), 1, sym_number_literal, - ACTIONS(3339), 2, + ACTIONS(3293), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3341), 2, + ACTIONS(3295), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3345), 5, + ACTIONS(3299), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1265), 7, + STATE(1161), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105999,30 +100560,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [50493] = 9, + [50463] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3333), 1, + ACTIONS(3348), 1, sym_identifier, - ACTIONS(3335), 1, + ACTIONS(3350), 1, anon_sym_LPAREN2, - ACTIONS(3337), 1, + ACTIONS(3352), 1, anon_sym_defined, - ACTIONS(3423), 1, + ACTIONS(3430), 1, sym_number_literal, - ACTIONS(3339), 2, + ACTIONS(3354), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3341), 2, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3345), 5, + ACTIONS(3360), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1268), 7, + STATE(1221), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -106030,30 +100591,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [50533] = 9, + [50503] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3333), 1, + ACTIONS(3285), 1, sym_identifier, - ACTIONS(3335), 1, + ACTIONS(3289), 1, anon_sym_LPAREN2, - ACTIONS(3337), 1, + ACTIONS(3291), 1, anon_sym_defined, - ACTIONS(3425), 1, + ACTIONS(3432), 1, sym_number_literal, - ACTIONS(3339), 2, + ACTIONS(3293), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3341), 2, + ACTIONS(3295), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3345), 5, + ACTIONS(3299), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1274), 7, + STATE(1134), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -106061,30 +100622,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [50573] = 9, + [50543] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3333), 1, + ACTIONS(3285), 1, sym_identifier, - ACTIONS(3335), 1, + ACTIONS(3289), 1, anon_sym_LPAREN2, - ACTIONS(3337), 1, + ACTIONS(3291), 1, anon_sym_defined, - ACTIONS(3427), 1, + ACTIONS(3434), 1, sym_number_literal, - ACTIONS(3339), 2, + ACTIONS(3293), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3341), 2, + ACTIONS(3295), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3345), 5, + ACTIONS(3299), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1272), 7, + STATE(1223), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -106092,30 +100653,55 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [50613] = 9, + [50583] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3438), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3436), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [50611] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3333), 1, + ACTIONS(3348), 1, sym_identifier, - ACTIONS(3335), 1, + ACTIONS(3350), 1, anon_sym_LPAREN2, - ACTIONS(3337), 1, + ACTIONS(3352), 1, anon_sym_defined, - ACTIONS(3429), 1, + ACTIONS(3440), 1, sym_number_literal, - ACTIONS(3339), 2, + ACTIONS(3354), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3341), 2, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3345), 5, + ACTIONS(3360), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1266), 7, + STATE(1198), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -106123,30 +100709,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [50653] = 9, + [50651] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3333), 1, + ACTIONS(3348), 1, sym_identifier, - ACTIONS(3335), 1, + ACTIONS(3350), 1, anon_sym_LPAREN2, - ACTIONS(3337), 1, + ACTIONS(3352), 1, anon_sym_defined, - ACTIONS(3431), 1, + ACTIONS(3442), 1, sym_number_literal, - ACTIONS(3339), 2, + ACTIONS(3354), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3341), 2, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3345), 5, + ACTIONS(3360), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1246), 7, + STATE(1202), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -106154,30 +100740,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [50693] = 9, + [50691] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3333), 1, + ACTIONS(3348), 1, sym_identifier, - ACTIONS(3335), 1, + ACTIONS(3350), 1, anon_sym_LPAREN2, - ACTIONS(3337), 1, + ACTIONS(3352), 1, anon_sym_defined, - ACTIONS(3433), 1, + ACTIONS(3444), 1, sym_number_literal, - ACTIONS(3339), 2, + ACTIONS(3354), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3341), 2, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3345), 5, + ACTIONS(3360), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1249), 7, + STATE(1194), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -106185,30 +100771,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [50733] = 9, + [50731] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3333), 1, + ACTIONS(3285), 1, sym_identifier, - ACTIONS(3335), 1, + ACTIONS(3289), 1, anon_sym_LPAREN2, - ACTIONS(3337), 1, + ACTIONS(3291), 1, anon_sym_defined, - ACTIONS(3435), 1, + ACTIONS(3446), 1, sym_number_literal, - ACTIONS(3339), 2, + ACTIONS(3293), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3341), 2, + ACTIONS(3295), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3345), 5, + ACTIONS(3299), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1262), 7, + STATE(1136), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -106216,30 +100802,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [50773] = 9, + [50771] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3333), 1, + ACTIONS(3285), 1, sym_identifier, - ACTIONS(3335), 1, + ACTIONS(3289), 1, anon_sym_LPAREN2, - ACTIONS(3337), 1, + ACTIONS(3291), 1, anon_sym_defined, - ACTIONS(3437), 1, + ACTIONS(3448), 1, sym_number_literal, - ACTIONS(3339), 2, + ACTIONS(3293), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3341), 2, + ACTIONS(3295), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3345), 5, + ACTIONS(3299), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1275), 7, + STATE(1140), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -106247,58 +100833,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [50813] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3269), 1, - anon_sym_SLASH, - ACTIONS(3265), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3267), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3385), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3383), 11, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [50847] = 9, + [50811] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3333), 1, + ACTIONS(3285), 1, sym_identifier, - ACTIONS(3335), 1, + ACTIONS(3289), 1, anon_sym_LPAREN2, - ACTIONS(3337), 1, + ACTIONS(3291), 1, anon_sym_defined, - ACTIONS(3439), 1, + ACTIONS(3450), 1, sym_number_literal, - ACTIONS(3339), 2, + ACTIONS(3293), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3341), 2, + ACTIONS(3295), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3345), 5, + ACTIONS(3299), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1273), 7, + STATE(1144), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -106306,30 +100864,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [50887] = 9, + [50851] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3333), 1, + ACTIONS(3348), 1, sym_identifier, - ACTIONS(3335), 1, + ACTIONS(3350), 1, anon_sym_LPAREN2, - ACTIONS(3337), 1, + ACTIONS(3352), 1, anon_sym_defined, - ACTIONS(3441), 1, + ACTIONS(3452), 1, sym_number_literal, - ACTIONS(3339), 2, + ACTIONS(3354), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3341), 2, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3345), 5, + ACTIONS(3360), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1270), 7, + STATE(1215), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -106337,30 +100895,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [50927] = 9, + [50891] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3333), 1, + ACTIONS(3285), 1, sym_identifier, - ACTIONS(3335), 1, + ACTIONS(3289), 1, anon_sym_LPAREN2, - ACTIONS(3337), 1, + ACTIONS(3291), 1, anon_sym_defined, - ACTIONS(3443), 1, + ACTIONS(3454), 1, sym_number_literal, - ACTIONS(3339), 2, + ACTIONS(3293), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3341), 2, + ACTIONS(3295), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3345), 5, + ACTIONS(3299), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1243), 7, + STATE(1145), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -106368,30 +100926,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [50967] = 9, + [50931] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3333), 1, + ACTIONS(3348), 1, sym_identifier, - ACTIONS(3335), 1, + ACTIONS(3350), 1, anon_sym_LPAREN2, - ACTIONS(3337), 1, + ACTIONS(3352), 1, anon_sym_defined, - ACTIONS(3445), 1, + ACTIONS(3456), 1, sym_number_literal, - ACTIONS(3339), 2, + ACTIONS(3354), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3341), 2, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3345), 5, + ACTIONS(3360), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1236), 7, + STATE(1217), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -106399,274 +100957,240 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [51007] = 12, - ACTIONS(3294), 1, + [50971] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(3447), 1, - anon_sym_LF, - ACTIONS(3453), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3455), 1, - anon_sym_AMP_AMP, - ACTIONS(3457), 1, + ACTIONS(2336), 5, + anon_sym_SLASH, anon_sym_PIPE, - ACTIONS(3459), 1, - anon_sym_CARET, - ACTIONS(3461), 1, anon_sym_AMP, - ACTIONS(3449), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3463), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3467), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3451), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3465), 4, anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_LT, - [51052] = 3, - ACTIONS(2283), 1, - anon_sym_LF, - ACTIONS(3294), 1, - sym_comment, - ACTIONS(2281), 18, + ACTIONS(2338), 15, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_CARET, - anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [51079] = 11, + [50999] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1764), 1, - anon_sym___based, - ACTIONS(2768), 1, + ACTIONS(3348), 1, sym_identifier, - ACTIONS(2970), 1, + ACTIONS(3350), 1, anon_sym_LPAREN2, - ACTIONS(2972), 1, - anon_sym_STAR, - STATE(701), 1, - sym__old_style_function_declarator, - STATE(1348), 1, - sym_ms_call_modifier, - STATE(1392), 1, - sym__declarator, - STATE(1943), 1, - sym_ms_based_modifier, - STATE(1371), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(39), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [51122] = 14, + ACTIONS(3352), 1, + anon_sym_defined, + ACTIONS(3458), 1, + sym_number_literal, + ACTIONS(3354), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3356), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3360), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1206), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [51039] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3269), 1, + ACTIONS(3348), 1, + sym_identifier, + ACTIONS(3350), 1, + anon_sym_LPAREN2, + ACTIONS(3352), 1, + anon_sym_defined, + ACTIONS(3460), 1, + sym_number_literal, + ACTIONS(3354), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3356), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3360), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1210), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [51079] = 3, + ACTIONS(3317), 1, + sym_comment, + ACTIONS(3364), 1, + anon_sym_LF, + ACTIONS(3366), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3271), 1, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, - ACTIONS(3273), 1, anon_sym_AMP_AMP, - ACTIONS(3275), 1, anon_sym_PIPE, - ACTIONS(3277), 1, anon_sym_CARET, - ACTIONS(3279), 1, anon_sym_AMP, - ACTIONS(3469), 1, - anon_sym_RPAREN, - ACTIONS(3265), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3267), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3281), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3283), 2, anon_sym_GT, - anon_sym_LT, - ACTIONS(3285), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3287), 2, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [51171] = 12, - ACTIONS(3294), 1, + [51106] = 8, + ACTIONS(3317), 1, sym_comment, - ACTIONS(3453), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3455), 1, - anon_sym_AMP_AMP, - ACTIONS(3457), 1, - anon_sym_PIPE, - ACTIONS(3459), 1, - anon_sym_CARET, - ACTIONS(3461), 1, - anon_sym_AMP, - ACTIONS(3471), 1, + ACTIONS(3364), 1, anon_sym_LF, - ACTIONS(3449), 2, + ACTIONS(3462), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3463), 2, + ACTIONS(3466), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3467), 2, + ACTIONS(3470), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3451), 3, + ACTIONS(3464), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3465), 4, + ACTIONS(3468), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [51216] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3269), 1, - anon_sym_SLASH, - ACTIONS(3271), 1, + ACTIONS(3366), 5, anon_sym_PIPE_PIPE, - ACTIONS(3273), 1, anon_sym_AMP_AMP, - ACTIONS(3275), 1, anon_sym_PIPE, - ACTIONS(3277), 1, anon_sym_CARET, - ACTIONS(3279), 1, anon_sym_AMP, - ACTIONS(3473), 1, - anon_sym_RPAREN, - ACTIONS(3265), 2, + [51143] = 3, + ACTIONS(3059), 1, + anon_sym_LF, + ACTIONS(3317), 1, + sym_comment, + ACTIONS(3057), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3267), 2, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3281), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3283), 2, anon_sym_GT, - anon_sym_LT, - ACTIONS(3285), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3287), 2, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [51265] = 11, - ACTIONS(3), 1, + [51170] = 3, + ACTIONS(3041), 1, + anon_sym_LF, + ACTIONS(3317), 1, sym_comment, - ACTIONS(1764), 1, - anon_sym___based, - ACTIONS(2768), 1, - sym_identifier, - ACTIONS(2970), 1, - anon_sym_LPAREN2, - ACTIONS(2972), 1, + ACTIONS(3039), 18, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - STATE(693), 1, - sym__old_style_function_declarator, - STATE(1347), 1, - sym_ms_call_modifier, - STATE(1386), 1, - sym__declarator, - STATE(1943), 1, - sym_ms_based_modifier, - STATE(1371), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(39), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [51308] = 12, - ACTIONS(3294), 1, - sym_comment, - ACTIONS(3453), 1, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, - ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3457), 1, anon_sym_PIPE, - ACTIONS(3459), 1, anon_sym_CARET, - ACTIONS(3461), 1, anon_sym_AMP, - ACTIONS(3475), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [51197] = 12, + ACTIONS(3317), 1, + sym_comment, + ACTIONS(3472), 1, anon_sym_LF, - ACTIONS(3449), 2, + ACTIONS(3474), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3476), 1, + anon_sym_AMP_AMP, + ACTIONS(3478), 1, + anon_sym_PIPE, + ACTIONS(3480), 1, + anon_sym_CARET, + ACTIONS(3482), 1, + anon_sym_AMP, + ACTIONS(3462), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3463), 2, + ACTIONS(3466), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3467), 2, + ACTIONS(3470), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3451), 3, + ACTIONS(3464), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3465), 4, + ACTIONS(3468), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [51353] = 3, - ACTIONS(3294), 1, + [51242] = 5, + ACTIONS(3317), 1, sym_comment, - ACTIONS(3373), 1, + ACTIONS(3364), 1, anon_sym_LF, - ACTIONS(3375), 18, + ACTIONS(3462), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3464), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3366), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -106680,176 +101204,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [51380] = 12, - ACTIONS(3294), 1, + [51273] = 12, + ACTIONS(3317), 1, sym_comment, - ACTIONS(3453), 1, + ACTIONS(3474), 1, anon_sym_PIPE_PIPE, - ACTIONS(3455), 1, + ACTIONS(3476), 1, anon_sym_AMP_AMP, - ACTIONS(3457), 1, + ACTIONS(3478), 1, anon_sym_PIPE, - ACTIONS(3459), 1, + ACTIONS(3480), 1, anon_sym_CARET, - ACTIONS(3461), 1, + ACTIONS(3482), 1, anon_sym_AMP, - ACTIONS(3477), 1, + ACTIONS(3484), 1, anon_sym_LF, - ACTIONS(3449), 2, + ACTIONS(3462), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3463), 2, + ACTIONS(3466), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3467), 2, + ACTIONS(3470), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3451), 3, + ACTIONS(3464), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3465), 4, + ACTIONS(3468), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [51425] = 11, - ACTIONS(3294), 1, + [51318] = 12, + ACTIONS(3317), 1, sym_comment, - ACTIONS(3383), 1, - anon_sym_LF, - ACTIONS(3457), 1, + ACTIONS(3474), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3476), 1, + anon_sym_AMP_AMP, + ACTIONS(3478), 1, anon_sym_PIPE, - ACTIONS(3459), 1, + ACTIONS(3480), 1, anon_sym_CARET, - ACTIONS(3461), 1, + ACTIONS(3482), 1, anon_sym_AMP, - ACTIONS(3385), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(3449), 2, + ACTIONS(3486), 1, + anon_sym_LF, + ACTIONS(3462), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3463), 2, + ACTIONS(3466), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3467), 2, + ACTIONS(3470), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3451), 3, + ACTIONS(3464), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3465), 4, + ACTIONS(3468), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [51468] = 12, - ACTIONS(3294), 1, + [51363] = 12, + ACTIONS(3317), 1, sym_comment, - ACTIONS(3453), 1, + ACTIONS(3474), 1, anon_sym_PIPE_PIPE, - ACTIONS(3455), 1, + ACTIONS(3476), 1, anon_sym_AMP_AMP, - ACTIONS(3457), 1, + ACTIONS(3478), 1, anon_sym_PIPE, - ACTIONS(3459), 1, + ACTIONS(3480), 1, anon_sym_CARET, - ACTIONS(3461), 1, + ACTIONS(3482), 1, anon_sym_AMP, - ACTIONS(3479), 1, + ACTIONS(3488), 1, anon_sym_LF, - ACTIONS(3449), 2, + ACTIONS(3462), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3463), 2, + ACTIONS(3466), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3467), 2, + ACTIONS(3470), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3451), 3, + ACTIONS(3464), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3465), 4, + ACTIONS(3468), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [51513] = 12, - ACTIONS(3294), 1, + [51408] = 3, + ACTIONS(3317), 1, sym_comment, - ACTIONS(3453), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3455), 1, - anon_sym_AMP_AMP, - ACTIONS(3457), 1, - anon_sym_PIPE, - ACTIONS(3459), 1, - anon_sym_CARET, - ACTIONS(3461), 1, - anon_sym_AMP, - ACTIONS(3481), 1, + ACTIONS(3436), 1, anon_sym_LF, - ACTIONS(3449), 2, + ACTIONS(3438), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3463), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3467), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3451), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3465), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [51558] = 12, - ACTIONS(3294), 1, - sym_comment, - ACTIONS(3383), 1, - anon_sym_LF, - ACTIONS(3385), 1, anon_sym_PIPE_PIPE, - ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3457), 1, anon_sym_PIPE, - ACTIONS(3459), 1, anon_sym_CARET, - ACTIONS(3461), 1, anon_sym_AMP, - ACTIONS(3449), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3463), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3467), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3451), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3465), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [51603] = 3, - ACTIONS(3294), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + [51435] = 3, + ACTIONS(3317), 1, sym_comment, - ACTIONS(3353), 1, + ACTIONS(3370), 1, anon_sym_LF, - ACTIONS(3355), 18, + ACTIONS(3372), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -106868,17 +101351,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [51630] = 3, - ACTIONS(3294), 1, + [51462] = 6, + ACTIONS(3317), 1, sym_comment, - ACTIONS(3411), 1, + ACTIONS(3364), 1, anon_sym_LF, - ACTIONS(3413), 18, + ACTIONS(3462), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3464), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3366), 11, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -106890,14 +101378,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + [51495] = 12, + ACTIONS(3317), 1, + sym_comment, + ACTIONS(3474), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3476), 1, + anon_sym_AMP_AMP, + ACTIONS(3478), 1, + anon_sym_PIPE, + ACTIONS(3480), 1, + anon_sym_CARET, + ACTIONS(3482), 1, + anon_sym_AMP, + ACTIONS(3490), 1, + anon_sym_LF, + ACTIONS(3462), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3466), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3470), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [51657] = 3, - ACTIONS(3294), 1, + ACTIONS(3464), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3468), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [51540] = 3, + ACTIONS(3317), 1, sym_comment, - ACTIONS(3405), 1, + ACTIONS(3378), 1, anon_sym_LF, - ACTIONS(3407), 18, + ACTIONS(3380), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -106916,12 +101435,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [51684] = 3, - ACTIONS(3024), 1, + [51567] = 3, + ACTIONS(2338), 1, anon_sym_LF, - ACTIONS(3294), 1, + ACTIONS(3317), 1, sym_comment, - ACTIONS(3022), 18, + ACTIONS(2336), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -106940,139 +101459,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [51711] = 12, - ACTIONS(3294), 1, + [51594] = 7, + ACTIONS(3317), 1, + sym_comment, + ACTIONS(3364), 1, + anon_sym_LF, + ACTIONS(3462), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3464), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3468), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(3366), 7, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [51629] = 12, + ACTIONS(3317), 1, sym_comment, - ACTIONS(3453), 1, + ACTIONS(3474), 1, anon_sym_PIPE_PIPE, - ACTIONS(3455), 1, + ACTIONS(3476), 1, anon_sym_AMP_AMP, - ACTIONS(3457), 1, + ACTIONS(3478), 1, anon_sym_PIPE, - ACTIONS(3459), 1, + ACTIONS(3480), 1, anon_sym_CARET, - ACTIONS(3461), 1, + ACTIONS(3482), 1, anon_sym_AMP, - ACTIONS(3483), 1, + ACTIONS(3492), 1, anon_sym_LF, - ACTIONS(3449), 2, + ACTIONS(3462), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3463), 2, + ACTIONS(3466), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3467), 2, + ACTIONS(3470), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3451), 3, + ACTIONS(3464), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3465), 4, + ACTIONS(3468), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [51756] = 12, - ACTIONS(3294), 1, + [51674] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3259), 1, + anon_sym_SLASH, + ACTIONS(3261), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3263), 1, + anon_sym_AMP_AMP, + ACTIONS(3265), 1, + anon_sym_PIPE, + ACTIONS(3267), 1, + anon_sym_CARET, + ACTIONS(3269), 1, + anon_sym_AMP, + ACTIONS(3494), 1, + anon_sym_RPAREN, + ACTIONS(3255), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3257), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3271), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3273), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3275), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3277), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [51723] = 12, + ACTIONS(3317), 1, sym_comment, - ACTIONS(3453), 1, + ACTIONS(3474), 1, anon_sym_PIPE_PIPE, - ACTIONS(3455), 1, + ACTIONS(3476), 1, anon_sym_AMP_AMP, - ACTIONS(3457), 1, + ACTIONS(3478), 1, anon_sym_PIPE, - ACTIONS(3459), 1, + ACTIONS(3480), 1, anon_sym_CARET, - ACTIONS(3461), 1, + ACTIONS(3482), 1, anon_sym_AMP, - ACTIONS(3485), 1, + ACTIONS(3496), 1, anon_sym_LF, - ACTIONS(3449), 2, + ACTIONS(3462), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3463), 2, + ACTIONS(3466), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3467), 2, + ACTIONS(3470), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3451), 3, + ACTIONS(3464), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3465), 4, + ACTIONS(3468), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [51801] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2778), 1, - anon_sym_const, - ACTIONS(2785), 1, - anon_sym_LBRACE, - ACTIONS(3487), 1, - anon_sym___attribute__, - ACTIONS(3489), 1, - anon_sym_COLON, - STATE(788), 1, - sym_attribute_specifier, - STATE(1131), 1, - sym_enumerator_list, - ACTIONS(2780), 13, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym___extension__, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - [51838] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1764), 1, - anon_sym___based, - ACTIONS(2768), 1, - sym_identifier, - ACTIONS(2970), 1, - anon_sym_LPAREN2, - ACTIONS(2972), 1, - anon_sym_STAR, - STATE(691), 1, - sym__old_style_function_declarator, - STATE(1332), 1, - sym_ms_call_modifier, - STATE(1380), 1, - sym__declarator, - STATE(1943), 1, - sym_ms_based_modifier, - STATE(1371), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(39), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [51881] = 3, - ACTIONS(3046), 1, + [51768] = 3, + ACTIONS(3037), 1, anon_sym_LF, - ACTIONS(3294), 1, + ACTIONS(3317), 1, sym_comment, - ACTIONS(3044), 18, + ACTIONS(3035), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -107091,95 +101612,228 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [51908] = 5, - ACTIONS(3294), 1, + [51795] = 12, + ACTIONS(3317), 1, + sym_comment, + ACTIONS(3474), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3476), 1, + anon_sym_AMP_AMP, + ACTIONS(3478), 1, + anon_sym_PIPE, + ACTIONS(3480), 1, + anon_sym_CARET, + ACTIONS(3482), 1, + anon_sym_AMP, + ACTIONS(3498), 1, + anon_sym_LF, + ACTIONS(3462), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3466), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3464), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3468), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [51840] = 10, + ACTIONS(3317), 1, sym_comment, - ACTIONS(3383), 1, + ACTIONS(3364), 1, anon_sym_LF, - ACTIONS(3449), 2, + ACTIONS(3480), 1, + anon_sym_CARET, + ACTIONS(3482), 1, + anon_sym_AMP, + ACTIONS(3462), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3451), 3, + ACTIONS(3466), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3366), 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + ACTIONS(3464), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3385), 13, + ACTIONS(3468), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [51881] = 12, + ACTIONS(3317), 1, + sym_comment, + ACTIONS(3474), 1, anon_sym_PIPE_PIPE, + ACTIONS(3476), 1, anon_sym_AMP_AMP, + ACTIONS(3478), 1, anon_sym_PIPE, + ACTIONS(3480), 1, anon_sym_CARET, + ACTIONS(3482), 1, anon_sym_AMP, + ACTIONS(3500), 1, + anon_sym_LF, + ACTIONS(3462), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3466), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3464), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3468), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [51939] = 3, - ACTIONS(3028), 1, - anon_sym_LF, - ACTIONS(3294), 1, + [51926] = 9, + ACTIONS(3317), 1, sym_comment, - ACTIONS(3026), 18, + ACTIONS(3364), 1, + anon_sym_LF, + ACTIONS(3482), 1, + anon_sym_AMP, + ACTIONS(3462), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3466), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3464), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3366), 4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(3468), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [51966] = 12, - ACTIONS(3294), 1, + [51965] = 12, + ACTIONS(3317), 1, sym_comment, - ACTIONS(3453), 1, + ACTIONS(3474), 1, anon_sym_PIPE_PIPE, - ACTIONS(3455), 1, + ACTIONS(3476), 1, anon_sym_AMP_AMP, - ACTIONS(3457), 1, + ACTIONS(3478), 1, anon_sym_PIPE, - ACTIONS(3459), 1, + ACTIONS(3480), 1, anon_sym_CARET, - ACTIONS(3461), 1, + ACTIONS(3482), 1, anon_sym_AMP, - ACTIONS(3492), 1, + ACTIONS(3502), 1, anon_sym_LF, - ACTIONS(3449), 2, + ACTIONS(3462), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3463), 2, + ACTIONS(3466), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3467), 2, + ACTIONS(3470), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3451), 3, + ACTIONS(3464), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3468), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [52010] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2794), 1, + sym_identifier, + ACTIONS(2983), 1, + anon_sym_LPAREN2, + ACTIONS(2985), 1, + anon_sym_STAR, + STATE(644), 1, + sym__old_style_function_declarator, + STATE(1281), 1, + sym_ms_call_modifier, + STATE(1344), 1, + sym__declarator, + STATE(1827), 1, + sym_ms_based_modifier, + STATE(1322), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [52053] = 3, + ACTIONS(3317), 1, + sym_comment, + ACTIONS(3390), 1, + anon_sym_LF, + ACTIONS(3392), 18, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3465), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [52011] = 3, - ACTIONS(3294), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + [52080] = 3, + ACTIONS(3055), 1, + anon_sym_LF, + ACTIONS(3317), 1, sym_comment, - ACTIONS(3383), 1, - anon_sym_LF, - ACTIONS(3385), 18, + ACTIONS(3053), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -107198,150 +101852,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [52038] = 12, - ACTIONS(3294), 1, + [52107] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2783), 1, + anon_sym_const, + ACTIONS(2790), 1, + anon_sym_LBRACE, + ACTIONS(3504), 1, + anon_sym___attribute__, + ACTIONS(3506), 1, + anon_sym_COLON, + STATE(767), 1, + sym_attribute_specifier, + STATE(1081), 1, + sym_enumerator_list, + ACTIONS(2785), 13, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym___extension__, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + [52144] = 12, + ACTIONS(3317), 1, sym_comment, - ACTIONS(3453), 1, + ACTIONS(3474), 1, anon_sym_PIPE_PIPE, - ACTIONS(3455), 1, + ACTIONS(3476), 1, anon_sym_AMP_AMP, - ACTIONS(3457), 1, + ACTIONS(3478), 1, anon_sym_PIPE, - ACTIONS(3459), 1, + ACTIONS(3480), 1, anon_sym_CARET, - ACTIONS(3461), 1, + ACTIONS(3482), 1, anon_sym_AMP, - ACTIONS(3494), 1, + ACTIONS(3509), 1, anon_sym_LF, - ACTIONS(3449), 2, + ACTIONS(3462), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3463), 2, + ACTIONS(3466), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3467), 2, + ACTIONS(3470), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3451), 3, + ACTIONS(3464), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3465), 4, + ACTIONS(3468), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [52083] = 12, - ACTIONS(3294), 1, + [52189] = 12, + ACTIONS(3317), 1, sym_comment, - ACTIONS(3453), 1, + ACTIONS(3474), 1, anon_sym_PIPE_PIPE, - ACTIONS(3455), 1, + ACTIONS(3476), 1, anon_sym_AMP_AMP, - ACTIONS(3457), 1, + ACTIONS(3478), 1, anon_sym_PIPE, - ACTIONS(3459), 1, + ACTIONS(3480), 1, anon_sym_CARET, - ACTIONS(3461), 1, + ACTIONS(3482), 1, anon_sym_AMP, - ACTIONS(3496), 1, + ACTIONS(3511), 1, anon_sym_LF, - ACTIONS(3449), 2, + ACTIONS(3462), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3463), 2, + ACTIONS(3466), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3467), 2, + ACTIONS(3470), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3451), 3, + ACTIONS(3464), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3465), 4, + ACTIONS(3468), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [52128] = 6, - ACTIONS(3294), 1, + [52234] = 12, + ACTIONS(3317), 1, sym_comment, - ACTIONS(3383), 1, - anon_sym_LF, - ACTIONS(3449), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3467), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3451), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3385), 11, + ACTIONS(3474), 1, anon_sym_PIPE_PIPE, + ACTIONS(3476), 1, anon_sym_AMP_AMP, + ACTIONS(3478), 1, anon_sym_PIPE, + ACTIONS(3480), 1, anon_sym_CARET, + ACTIONS(3482), 1, anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [52161] = 10, - ACTIONS(3294), 1, - sym_comment, - ACTIONS(3383), 1, + ACTIONS(3513), 1, anon_sym_LF, - ACTIONS(3459), 1, - anon_sym_CARET, - ACTIONS(3461), 1, - anon_sym_AMP, - ACTIONS(3449), 2, + ACTIONS(3462), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3463), 2, + ACTIONS(3466), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3467), 2, + ACTIONS(3470), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3385), 3, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - ACTIONS(3451), 3, + ACTIONS(3464), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3465), 4, + ACTIONS(3468), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [52202] = 11, + [52279] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1764), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2768), 1, + ACTIONS(2794), 1, sym_identifier, - ACTIONS(2970), 1, + ACTIONS(2983), 1, anon_sym_LPAREN2, - ACTIONS(2972), 1, + ACTIONS(2985), 1, anon_sym_STAR, - STATE(698), 1, + STATE(649), 1, sym__old_style_function_declarator, - STATE(1349), 1, + STATE(1299), 1, sym_ms_call_modifier, - STATE(1381), 1, + STATE(1332), 1, sym__declarator, - STATE(1943), 1, + STATE(1827), 1, sym_ms_based_modifier, - STATE(1371), 5, + STATE(1322), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -107354,111 +102012,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [52245] = 7, - ACTIONS(3294), 1, + [52322] = 11, + ACTIONS(3), 1, sym_comment, - ACTIONS(3383), 1, - anon_sym_LF, - ACTIONS(3449), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3467), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3451), 3, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2794), 1, + sym_identifier, + ACTIONS(2983), 1, + anon_sym_LPAREN2, + ACTIONS(2985), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3465), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(3385), 7, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + STATE(648), 1, + sym__old_style_function_declarator, + STATE(1298), 1, + sym_ms_call_modifier, + STATE(1330), 1, + sym__declarator, + STATE(1827), 1, + sym_ms_based_modifier, + STATE(1322), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [52365] = 11, + ACTIONS(3317), 1, + sym_comment, + ACTIONS(3364), 1, + anon_sym_LF, + ACTIONS(3478), 1, anon_sym_PIPE, + ACTIONS(3480), 1, anon_sym_CARET, + ACTIONS(3482), 1, anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [52280] = 12, - ACTIONS(3294), 1, - sym_comment, - ACTIONS(3453), 1, + ACTIONS(3366), 2, anon_sym_PIPE_PIPE, - ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3457), 1, - anon_sym_PIPE, - ACTIONS(3459), 1, - anon_sym_CARET, - ACTIONS(3461), 1, - anon_sym_AMP, - ACTIONS(3498), 1, - anon_sym_LF, - ACTIONS(3449), 2, + ACTIONS(3462), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3463), 2, + ACTIONS(3466), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3467), 2, + ACTIONS(3470), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3451), 3, + ACTIONS(3464), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3465), 4, + ACTIONS(3468), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [52325] = 12, - ACTIONS(3294), 1, + [52408] = 4, + ACTIONS(3317), 1, sym_comment, - ACTIONS(3453), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3455), 1, - anon_sym_AMP_AMP, - ACTIONS(3457), 1, - anon_sym_PIPE, - ACTIONS(3459), 1, - anon_sym_CARET, - ACTIONS(3461), 1, - anon_sym_AMP, - ACTIONS(3500), 1, + ACTIONS(3364), 1, anon_sym_LF, - ACTIONS(3449), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3463), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3467), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3451), 3, + ACTIONS(3464), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3465), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [52370] = 3, - ACTIONS(3020), 1, - anon_sym_LF, - ACTIONS(3294), 1, - sym_comment, - ACTIONS(3018), 18, + ACTIONS(3366), 15, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -107472,146 +102101,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [52397] = 9, - ACTIONS(3294), 1, + [52437] = 12, + ACTIONS(3317), 1, sym_comment, - ACTIONS(3383), 1, + ACTIONS(3364), 1, anon_sym_LF, - ACTIONS(3461), 1, + ACTIONS(3366), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3476), 1, + anon_sym_AMP_AMP, + ACTIONS(3478), 1, + anon_sym_PIPE, + ACTIONS(3480), 1, + anon_sym_CARET, + ACTIONS(3482), 1, anon_sym_AMP, - ACTIONS(3449), 2, + ACTIONS(3462), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3463), 2, + ACTIONS(3466), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3467), 2, + ACTIONS(3470), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3451), 3, + ACTIONS(3464), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3385), 4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(3465), 4, + ACTIONS(3468), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [52436] = 12, - ACTIONS(3294), 1, + [52482] = 14, + ACTIONS(3), 1, sym_comment, - ACTIONS(3453), 1, + ACTIONS(3259), 1, + anon_sym_SLASH, + ACTIONS(3261), 1, anon_sym_PIPE_PIPE, - ACTIONS(3455), 1, + ACTIONS(3263), 1, anon_sym_AMP_AMP, - ACTIONS(3457), 1, + ACTIONS(3265), 1, anon_sym_PIPE, - ACTIONS(3459), 1, + ACTIONS(3267), 1, anon_sym_CARET, - ACTIONS(3461), 1, + ACTIONS(3269), 1, anon_sym_AMP, - ACTIONS(3502), 1, - anon_sym_LF, - ACTIONS(3449), 2, + ACTIONS(3515), 1, + anon_sym_RPAREN, + ACTIONS(3255), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3463), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3467), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3451), 3, + ACTIONS(3257), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3465), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [52481] = 8, - ACTIONS(3294), 1, - sym_comment, - ACTIONS(3383), 1, - anon_sym_LF, - ACTIONS(3449), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3463), 2, + ACTIONS(3271), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3467), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3451), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3465), 4, + ACTIONS(3273), 2, anon_sym_GT, + anon_sym_LT, + ACTIONS(3275), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(3385), 5, + ACTIONS(3277), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [52531] = 12, + ACTIONS(3317), 1, + sym_comment, + ACTIONS(3474), 1, anon_sym_PIPE_PIPE, + ACTIONS(3476), 1, anon_sym_AMP_AMP, + ACTIONS(3478), 1, anon_sym_PIPE, + ACTIONS(3480), 1, anon_sym_CARET, + ACTIONS(3482), 1, anon_sym_AMP, - [52518] = 4, - ACTIONS(3294), 1, - sym_comment, - ACTIONS(3383), 1, + ACTIONS(3517), 1, anon_sym_LF, - ACTIONS(3451), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3385), 15, + ACTIONS(3462), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(3466), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3470), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3464), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3468), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [52547] = 10, + [52576] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1764), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2934), 1, + ACTIONS(2794), 1, sym_identifier, - ACTIONS(2936), 1, + ACTIONS(2983), 1, anon_sym_LPAREN2, - ACTIONS(2938), 1, + ACTIONS(2985), 1, anon_sym_STAR, - STATE(1356), 1, + STATE(638), 1, + sym__old_style_function_declarator, + STATE(1283), 1, sym_ms_call_modifier, - STATE(1428), 1, - sym__field_declarator, - STATE(1993), 1, + STATE(1343), 1, + sym__declarator, + STATE(1827), 1, sym_ms_based_modifier, - STATE(1414), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, + STATE(1322), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, ACTIONS(39), 6, anon_sym___cdecl, anon_sym___clrcall, @@ -107619,24 +102234,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [52587] = 10, + [52619] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1764), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2768), 1, + ACTIONS(2794), 1, sym_identifier, - ACTIONS(2970), 1, + ACTIONS(2983), 1, anon_sym_LPAREN2, - ACTIONS(2972), 1, + ACTIONS(2985), 1, anon_sym_STAR, - STATE(1349), 1, + STATE(1283), 1, sym_ms_call_modifier, - STATE(1413), 1, + STATE(1350), 1, sym__declarator, - STATE(1943), 1, + STATE(1827), 1, sym_ms_based_modifier, - STATE(1371), 5, + STATE(1322), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -107649,24 +102264,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [52627] = 10, + [52659] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1764), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2768), 1, + ACTIONS(2794), 1, sym_identifier, - ACTIONS(2970), 1, + ACTIONS(2983), 1, anon_sym_LPAREN2, - ACTIONS(2972), 1, + ACTIONS(2985), 1, anon_sym_STAR, - STATE(1332), 1, + STATE(1299), 1, sym_ms_call_modifier, - STATE(1404), 1, + STATE(1366), 1, sym__declarator, - STATE(1943), 1, + STATE(1827), 1, sym_ms_based_modifier, - STATE(1371), 5, + STATE(1322), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -107679,56 +102294,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [52667] = 12, + [52699] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1760), 1, - anon_sym_LPAREN2, - ACTIONS(1762), 1, - anon_sym_STAR, - ACTIONS(1764), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2768), 1, + ACTIONS(2794), 1, sym_identifier, - ACTIONS(2776), 1, - anon_sym_LBRACK, - STATE(1429), 1, + ACTIONS(2983), 1, + anon_sym_LPAREN2, + ACTIONS(2985), 1, + anon_sym_STAR, + STATE(1298), 1, + sym_ms_call_modifier, + STATE(1374), 1, sym__declarator, - STATE(1494), 1, - sym_parameter_list, - STATE(1534), 1, - sym__abstract_declarator, - STATE(1943), 1, + STATE(1827), 1, sym_ms_based_modifier, - STATE(1495), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1371), 5, + STATE(1322), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [52711] = 10, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [52739] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1764), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2768), 1, + ACTIONS(2794), 1, sym_identifier, - ACTIONS(2970), 1, + ACTIONS(2983), 1, anon_sym_LPAREN2, - ACTIONS(2972), 1, + ACTIONS(2985), 1, anon_sym_STAR, - STATE(1347), 1, + STATE(1281), 1, sym_ms_call_modifier, - STATE(1412), 1, + STATE(1362), 1, sym__declarator, - STATE(1943), 1, + STATE(1827), 1, sym_ms_based_modifier, - STATE(1371), 5, + STATE(1322), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -107741,29 +102354,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [52751] = 10, + [52779] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1764), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2768), 1, + ACTIONS(2951), 1, sym_identifier, - ACTIONS(2970), 1, + ACTIONS(2953), 1, anon_sym_LPAREN2, - ACTIONS(2972), 1, + ACTIONS(2955), 1, anon_sym_STAR, - STATE(1348), 1, + STATE(1293), 1, sym_ms_call_modifier, - STATE(1423), 1, - sym__declarator, - STATE(1943), 1, + STATE(1394), 1, + sym__field_declarator, + STATE(1732), 1, sym_ms_based_modifier, - STATE(1371), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, + STATE(1349), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, ACTIONS(39), 6, anon_sym___cdecl, anon_sym___clrcall, @@ -107771,24 +102384,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [52791] = 10, + [52819] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_LPAREN2, + ACTIONS(1781), 1, + anon_sym_STAR, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2794), 1, + sym_identifier, + ACTIONS(2802), 1, + anon_sym_LBRACK, + STATE(1381), 1, + sym__declarator, + STATE(1443), 1, + sym_parameter_list, + STATE(1477), 1, + sym__abstract_declarator, + STATE(1827), 1, + sym_ms_based_modifier, + STATE(1442), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1322), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [52863] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1764), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2768), 1, + ACTIONS(2794), 1, sym_identifier, - ACTIONS(2970), 1, + ACTIONS(2983), 1, anon_sym_LPAREN2, - ACTIONS(2972), 1, + ACTIONS(2985), 1, anon_sym_STAR, - STATE(1346), 1, + STATE(1288), 1, sym_ms_call_modifier, - STATE(1434), 1, + STATE(1386), 1, sym__declarator, - STATE(1943), 1, + STATE(1827), 1, sym_ms_based_modifier, - STATE(1371), 5, + STATE(1322), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -107801,265 +102446,293 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [52831] = 11, + [52903] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1764), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2873), 1, + ACTIONS(2888), 1, sym_identifier, - ACTIONS(2875), 1, + ACTIONS(2890), 1, anon_sym_LPAREN2, - ACTIONS(2877), 1, + ACTIONS(2892), 1, anon_sym_STAR, - ACTIONS(2881), 1, + ACTIONS(2896), 1, sym_primitive_type, - STATE(1365), 1, + STATE(1325), 1, sym__type_declarator, - STATE(1525), 1, + STATE(1462), 1, sym__type_definition_declarators, - STATE(1909), 1, + STATE(1842), 1, sym_ms_based_modifier, - ACTIONS(2879), 4, + ACTIONS(2894), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1444), 5, + STATE(1382), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [52872] = 11, + [52944] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1764), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2873), 1, + ACTIONS(2888), 1, sym_identifier, - ACTIONS(2875), 1, + ACTIONS(2890), 1, anon_sym_LPAREN2, - ACTIONS(2877), 1, + ACTIONS(2892), 1, anon_sym_STAR, - ACTIONS(2881), 1, + ACTIONS(2896), 1, sym_primitive_type, - STATE(1365), 1, + STATE(1325), 1, sym__type_declarator, - STATE(1547), 1, + STATE(1461), 1, sym__type_definition_declarators, - STATE(1909), 1, + STATE(1842), 1, sym_ms_based_modifier, - ACTIONS(2879), 4, + ACTIONS(2894), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1444), 5, + STATE(1382), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [52913] = 11, + [52985] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1764), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2873), 1, + ACTIONS(2888), 1, sym_identifier, - ACTIONS(2875), 1, + ACTIONS(2890), 1, anon_sym_LPAREN2, - ACTIONS(2877), 1, + ACTIONS(2892), 1, anon_sym_STAR, - ACTIONS(2881), 1, + ACTIONS(2896), 1, sym_primitive_type, - STATE(1365), 1, + STATE(1325), 1, sym__type_declarator, - STATE(1541), 1, + STATE(1475), 1, sym__type_definition_declarators, - STATE(1909), 1, + STATE(1842), 1, sym_ms_based_modifier, - ACTIONS(2879), 4, + ACTIONS(2894), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1444), 5, + STATE(1382), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [52954] = 11, + [53026] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1764), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2873), 1, + ACTIONS(2888), 1, sym_identifier, - ACTIONS(2875), 1, + ACTIONS(2890), 1, anon_sym_LPAREN2, - ACTIONS(2877), 1, + ACTIONS(2892), 1, anon_sym_STAR, - ACTIONS(2881), 1, + ACTIONS(2896), 1, sym_primitive_type, - STATE(1365), 1, + STATE(1325), 1, sym__type_declarator, - STATE(1518), 1, + STATE(1491), 1, sym__type_definition_declarators, - STATE(1909), 1, + STATE(1842), 1, sym_ms_based_modifier, - ACTIONS(2879), 4, + ACTIONS(2894), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1444), 5, + STATE(1382), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [52995] = 11, + [53067] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1764), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2873), 1, + ACTIONS(2888), 1, sym_identifier, - ACTIONS(2875), 1, + ACTIONS(2890), 1, anon_sym_LPAREN2, - ACTIONS(2877), 1, + ACTIONS(2892), 1, anon_sym_STAR, - ACTIONS(2881), 1, + ACTIONS(2896), 1, sym_primitive_type, - STATE(1365), 1, + STATE(1325), 1, sym__type_declarator, - STATE(1551), 1, + STATE(1481), 1, sym__type_definition_declarators, - STATE(1909), 1, + STATE(1842), 1, sym_ms_based_modifier, - ACTIONS(2879), 4, + ACTIONS(2894), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1444), 5, + STATE(1382), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [53036] = 11, + [53108] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1764), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2873), 1, + ACTIONS(2888), 1, sym_identifier, - ACTIONS(2875), 1, + ACTIONS(2890), 1, anon_sym_LPAREN2, - ACTIONS(2877), 1, + ACTIONS(2892), 1, anon_sym_STAR, - ACTIONS(2881), 1, + ACTIONS(2896), 1, sym_primitive_type, - STATE(1365), 1, + STATE(1325), 1, sym__type_declarator, - STATE(1539), 1, + STATE(1483), 1, sym__type_definition_declarators, - STATE(1909), 1, + STATE(1842), 1, sym_ms_based_modifier, - ACTIONS(2879), 4, + ACTIONS(2894), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1444), 5, + STATE(1382), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [53077] = 11, + [53149] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1764), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2873), 1, + ACTIONS(2888), 1, sym_identifier, - ACTIONS(2875), 1, + ACTIONS(2890), 1, anon_sym_LPAREN2, - ACTIONS(2877), 1, + ACTIONS(2892), 1, anon_sym_STAR, - ACTIONS(2881), 1, + ACTIONS(2896), 1, sym_primitive_type, - STATE(1365), 1, + STATE(1325), 1, sym__type_declarator, - STATE(1555), 1, + STATE(1498), 1, sym__type_definition_declarators, - STATE(1909), 1, + STATE(1842), 1, sym_ms_based_modifier, - ACTIONS(2879), 4, + ACTIONS(2894), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1444), 5, + STATE(1382), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [53118] = 11, + [53190] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1764), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2873), 1, + ACTIONS(2888), 1, sym_identifier, - ACTIONS(2875), 1, + ACTIONS(2890), 1, anon_sym_LPAREN2, - ACTIONS(2877), 1, + ACTIONS(2892), 1, anon_sym_STAR, - ACTIONS(2881), 1, + ACTIONS(2896), 1, sym_primitive_type, - STATE(1365), 1, + STATE(1325), 1, sym__type_declarator, - STATE(1516), 1, + STATE(1469), 1, sym__type_definition_declarators, - STATE(1909), 1, + STATE(1842), 1, + sym_ms_based_modifier, + ACTIONS(2894), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1382), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [53231] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2888), 1, + sym_identifier, + ACTIONS(2890), 1, + anon_sym_LPAREN2, + ACTIONS(2892), 1, + anon_sym_STAR, + ACTIONS(2896), 1, + sym_primitive_type, + STATE(1376), 1, + sym__type_declarator, + STATE(1842), 1, sym_ms_based_modifier, - ACTIONS(2879), 4, + ACTIONS(2894), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1444), 5, + STATE(1382), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [53159] = 8, + [53269] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(3504), 1, + ACTIONS(3519), 1, sym_identifier, - ACTIONS(3508), 1, + ACTIONS(3523), 1, anon_sym_LBRACK, - STATE(1305), 1, + STATE(1255), 1, sym_gnu_asm_expression, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - STATE(1296), 3, + STATE(1246), 3, sym_preproc_call_expression, sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(3506), 7, + ACTIONS(3521), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108067,136 +102740,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [53193] = 11, + [53303] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2888), 1, + sym_identifier, + ACTIONS(2890), 1, + anon_sym_LPAREN2, + ACTIONS(2892), 1, + anon_sym_STAR, + ACTIONS(2896), 1, + sym_primitive_type, + STATE(1345), 1, + sym__type_declarator, + STATE(1842), 1, + sym_ms_based_modifier, + ACTIONS(2894), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1382), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [53341] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(3504), 1, + ACTIONS(3519), 1, sym_identifier, - ACTIONS(3508), 1, + ACTIONS(3523), 1, anon_sym_LBRACK, - STATE(1303), 1, + STATE(1245), 1, sym_gnu_asm_expression, - STATE(1331), 1, + STATE(1285), 1, sym_attribute_specifier, - STATE(1448), 1, + STATE(1398), 1, aux_sym_type_definition_repeat1, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(3510), 2, + ACTIONS(3525), 2, anon_sym_COMMA, anon_sym_SEMI, - STATE(1296), 2, + STATE(1246), 2, sym_preproc_call_expression, aux_sym_function_declarator_repeat1, - ACTIONS(3506), 4, + ACTIONS(3521), 4, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [53233] = 10, + [53381] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1764), 1, - anon_sym___based, - ACTIONS(2873), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(3519), 1, sym_identifier, - ACTIONS(2875), 1, + ACTIONS(3531), 1, + anon_sym_LBRACK, + STATE(1285), 1, + sym_attribute_specifier, + STATE(1390), 1, + aux_sym_type_definition_repeat1, + ACTIONS(3527), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3533), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(1249), 2, + sym_preproc_call_expression, + aux_sym_function_declarator_repeat1, + ACTIONS(3529), 4, anon_sym_LPAREN2, - ACTIONS(2877), 1, - anon_sym_STAR, - ACTIONS(2881), 1, - sym_primitive_type, - STATE(1393), 1, - sym__type_declarator, - STATE(1909), 1, - sym_ms_based_modifier, - ACTIONS(2879), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1444), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [53271] = 10, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + [53418] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1764), 1, - anon_sym___based, - ACTIONS(2873), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(3519), 1, sym_identifier, - ACTIONS(2875), 1, + ACTIONS(3531), 3, + anon_sym_LBRACK, + anon_sym_asm, + anon_sym___asm__, + STATE(1248), 3, + sym_preproc_call_expression, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(3529), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2877), 1, - anon_sym_STAR, - ACTIONS(2881), 1, - sym_primitive_type, - STATE(1433), 1, - sym__type_declarator, - STATE(1909), 1, - sym_ms_based_modifier, - ACTIONS(2879), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1444), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [53309] = 12, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + [53447] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(1764), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2934), 1, + ACTIONS(2951), 1, sym_identifier, - ACTIONS(2936), 1, + ACTIONS(2953), 1, anon_sym_LPAREN2, - ACTIONS(2938), 1, + ACTIONS(2955), 1, anon_sym_STAR, - ACTIONS(3512), 1, + ACTIONS(3535), 1, anon_sym_SEMI, - STATE(1329), 1, + STATE(1279), 1, sym__field_declarator, - STATE(1689), 1, + STATE(1526), 1, sym__field_declaration_declarator, - STATE(1862), 1, - sym_attribute_specifier, - STATE(1993), 1, + STATE(1732), 1, sym_ms_based_modifier, - STATE(1414), 5, + STATE(1857), 1, + sym_attribute_specifier, + STATE(1349), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [53350] = 6, + [53488] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(3504), 1, + ACTIONS(3537), 1, sym_identifier, - ACTIONS(3516), 3, + ACTIONS(3542), 1, + anon_sym___attribute__, + ACTIONS(3545), 3, anon_sym_LBRACK, anon_sym_asm, anon_sym___asm__, - STATE(1302), 3, + STATE(1248), 3, sym_preproc_call_expression, sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(3514), 7, + ACTIONS(3540), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108204,236 +102899,186 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [53379] = 11, + [53517] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3518), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(3519), 1, sym_identifier, - ACTIONS(3520), 1, - aux_sym_preproc_if_token2, - ACTIONS(3522), 1, - aux_sym_preproc_else_token1, - ACTIONS(3524), 1, - aux_sym_preproc_elif_token1, - STATE(1336), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1359), 1, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1441), 1, - sym_enumerator, - ACTIONS(3526), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(1902), 3, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - sym_preproc_elifdef_in_enumerator_list_no_comma, - STATE(2021), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - [53418] = 11, + ACTIONS(3549), 3, + anon_sym_LBRACK, + anon_sym_asm, + anon_sym___asm__, + STATE(1248), 3, + sym_preproc_call_expression, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(3547), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + [53546] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3518), 1, + ACTIONS(3551), 1, sym_identifier, - ACTIONS(3522), 1, + ACTIONS(3553), 1, + aux_sym_preproc_if_token2, + ACTIONS(3555), 1, aux_sym_preproc_else_token1, - ACTIONS(3524), 1, + ACTIONS(3557), 1, aux_sym_preproc_elif_token1, - ACTIONS(3528), 1, - aux_sym_preproc_if_token2, - STATE(1342), 1, + STATE(1294), 1, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1343), 1, + STATE(1296), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1441), 1, + STATE(1388), 1, sym_enumerator, - ACTIONS(3526), 2, + ACTIONS(3559), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1882), 3, + STATE(1895), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - STATE(1885), 3, + STATE(1896), 3, sym_preproc_else_in_enumerator_list_no_comma, sym_preproc_elif_in_enumerator_list_no_comma, sym_preproc_elifdef_in_enumerator_list_no_comma, - [53457] = 11, + [53585] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3518), 1, + ACTIONS(3551), 1, sym_identifier, - ACTIONS(3522), 1, + ACTIONS(3555), 1, aux_sym_preproc_else_token1, - ACTIONS(3524), 1, + ACTIONS(3557), 1, aux_sym_preproc_elif_token1, - ACTIONS(3530), 1, + ACTIONS(3561), 1, aux_sym_preproc_if_token2, - STATE(1334), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1335), 1, + STATE(1300), 1, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1441), 1, + STATE(1301), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1388), 1, sym_enumerator, - ACTIONS(3526), 2, + ACTIONS(3559), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1933), 3, + STATE(1925), 3, sym_preproc_else_in_enumerator_list_no_comma, sym_preproc_elif_in_enumerator_list_no_comma, sym_preproc_elifdef_in_enumerator_list_no_comma, - STATE(1934), 3, + STATE(1931), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [53496] = 11, + [53624] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3518), 1, + ACTIONS(3551), 1, sym_identifier, - ACTIONS(3522), 1, + ACTIONS(3555), 1, aux_sym_preproc_else_token1, - ACTIONS(3524), 1, + ACTIONS(3557), 1, aux_sym_preproc_elif_token1, - ACTIONS(3532), 1, + ACTIONS(3563), 1, aux_sym_preproc_if_token2, - STATE(1333), 1, + STATE(1282), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1345), 1, + STATE(1302), 1, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1441), 1, + STATE(1388), 1, sym_enumerator, - ACTIONS(3526), 2, + ACTIONS(3559), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1915), 3, + STATE(1859), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - STATE(1916), 3, + STATE(1861), 3, sym_preproc_else_in_enumerator_list_no_comma, sym_preproc_elif_in_enumerator_list_no_comma, sym_preproc_elifdef_in_enumerator_list_no_comma, - [53535] = 12, + [53663] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(1764), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2934), 1, + ACTIONS(2951), 1, sym_identifier, - ACTIONS(2936), 1, + ACTIONS(2953), 1, anon_sym_LPAREN2, - ACTIONS(2938), 1, + ACTIONS(2955), 1, anon_sym_STAR, - ACTIONS(3534), 1, + ACTIONS(3565), 1, anon_sym_SEMI, - STATE(1329), 1, + STATE(1279), 1, sym__field_declarator, - STATE(1590), 1, + STATE(1640), 1, sym__field_declaration_declarator, - STATE(1826), 1, - sym_attribute_specifier, - STATE(1993), 1, + STATE(1732), 1, sym_ms_based_modifier, - STATE(1414), 5, + STATE(1917), 1, + sym_attribute_specifier, + STATE(1349), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [53576] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3536), 1, - sym_identifier, - ACTIONS(3541), 1, - anon_sym___attribute__, - ACTIONS(3544), 3, - anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - STATE(1302), 3, - sym_preproc_call_expression, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(3539), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - [53605] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(3504), 1, - sym_identifier, - ACTIONS(3516), 1, - anon_sym_LBRACK, - STATE(1331), 1, - sym_attribute_specifier, - STATE(1431), 1, - aux_sym_type_definition_repeat1, - ACTIONS(3546), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3548), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(1304), 2, - sym_preproc_call_expression, - aux_sym_function_declarator_repeat1, - ACTIONS(3514), 4, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - [53642] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(3504), 1, - sym_identifier, - ACTIONS(3552), 3, - anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - STATE(1302), 3, - sym_preproc_call_expression, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(3550), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - [53671] = 6, + [53704] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3551), 1, + sym_identifier, + ACTIONS(3555), 1, + aux_sym_preproc_else_token1, + ACTIONS(3557), 1, + aux_sym_preproc_elif_token1, + ACTIONS(3567), 1, + aux_sym_preproc_if_token2, + STATE(1305), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(1306), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1388), 1, + sym_enumerator, + ACTIONS(3559), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(1742), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + STATE(1750), 3, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + sym_preproc_elifdef_in_enumerator_list_no_comma, + [53743] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(3504), 1, + ACTIONS(3519), 1, sym_identifier, - ACTIONS(3516), 3, + ACTIONS(3531), 3, anon_sym_LBRACK, anon_sym_asm, anon_sym___asm__, - STATE(1304), 3, + STATE(1249), 3, sym_preproc_call_expression, sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(3514), 7, + ACTIONS(3529), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108441,46 +103086,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [53700] = 12, + [53772] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(1764), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2934), 1, + ACTIONS(2951), 1, sym_identifier, - ACTIONS(2936), 1, + ACTIONS(2953), 1, anon_sym_LPAREN2, - ACTIONS(2938), 1, + ACTIONS(2955), 1, anon_sym_STAR, - ACTIONS(3554), 1, + ACTIONS(3569), 1, anon_sym_SEMI, - STATE(1329), 1, + STATE(1279), 1, sym__field_declarator, - STATE(1572), 1, + STATE(1606), 1, sym__field_declaration_declarator, - STATE(1980), 1, - sym_attribute_specifier, - STATE(1993), 1, + STATE(1732), 1, sym_ms_based_modifier, - STATE(1414), 5, + STATE(1934), 1, + sym_attribute_specifier, + STATE(1349), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [53741] = 5, + [53813] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3558), 1, + ACTIONS(3573), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3561), 1, + ACTIONS(3576), 1, anon_sym_LBRACK, - STATE(1307), 2, + STATE(1257), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3556), 10, + ACTIONS(3571), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108491,73 +103136,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - [53767] = 11, + [53839] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1764), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2970), 1, + ACTIONS(2983), 1, anon_sym_LPAREN2, - ACTIONS(2972), 1, + ACTIONS(2985), 1, anon_sym_STAR, - ACTIONS(3228), 1, + ACTIONS(3249), 1, sym_identifier, - STATE(1371), 1, + STATE(1322), 1, sym_function_declarator, - STATE(1418), 1, + STATE(1422), 1, sym__declarator, - STATE(1471), 1, + STATE(1423), 1, sym__declaration_declarator, - STATE(1524), 1, + STATE(1511), 1, sym__function_declaration_declarator, - STATE(1943), 1, + STATE(1827), 1, sym_ms_based_modifier, - STATE(1388), 4, + STATE(1347), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [53804] = 11, + [53876] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3580), 1, + anon_sym_LPAREN2, + ACTIONS(3582), 1, + anon_sym_LBRACK, + STATE(1242), 1, + sym_parameter_list, + STATE(1280), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3578), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [53905] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1764), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2970), 1, + ACTIONS(2983), 1, anon_sym_LPAREN2, - ACTIONS(2972), 1, + ACTIONS(2985), 1, anon_sym_STAR, - ACTIONS(3228), 1, + ACTIONS(3249), 1, sym_identifier, - STATE(1371), 1, + STATE(1322), 1, sym_function_declarator, - STATE(1464), 1, + STATE(1422), 1, sym__declarator, - STATE(1484), 1, + STATE(1424), 1, sym__declaration_declarator, - STATE(1524), 1, + STATE(1511), 1, sym__function_declaration_declarator, - STATE(1943), 1, + STATE(1827), 1, sym_ms_based_modifier, - STATE(1388), 4, + STATE(1347), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [53841] = 7, + [53942] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3565), 1, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(3567), 1, + ACTIONS(3582), 1, anon_sym_LBRACK, - STATE(1291), 1, + STATE(1242), 1, sym_parameter_list, - STATE(1330), 2, + STATE(1280), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3563), 7, + ACTIONS(3584), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -108565,21 +103232,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [53870] = 7, + [53971] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(3586), 1, + sym_identifier, + ACTIONS(3588), 1, + aux_sym_preproc_if_token1, + ACTIONS(3592), 1, + anon_sym_RBRACE, + ACTIONS(3590), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(1665), 2, + sym_preproc_call, + sym_enumerator, + STATE(1922), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(1276), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [54004] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2828), 5, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + ACTIONS(2821), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + [54025] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3565), 1, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(3567), 1, + ACTIONS(3582), 1, anon_sym_LBRACK, - STATE(1291), 1, + STATE(1242), 1, sym_parameter_list, - STATE(1330), 2, + STATE(1280), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3569), 7, + ACTIONS(3594), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -108587,21 +103296,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [53899] = 7, + [54054] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3565), 1, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(3567), 1, + ACTIONS(3582), 1, anon_sym_LBRACK, - STATE(1291), 1, + STATE(1242), 1, sym_parameter_list, - STATE(1330), 2, + STATE(1280), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3571), 7, + ACTIONS(3596), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -108609,258 +103318,312 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [53928] = 11, + [54083] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1764), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2970), 1, + ACTIONS(2983), 1, anon_sym_LPAREN2, - ACTIONS(2972), 1, + ACTIONS(2985), 1, anon_sym_STAR, - ACTIONS(3228), 1, + ACTIONS(3249), 1, sym_identifier, - STATE(1371), 1, + STATE(1322), 1, sym_function_declarator, - STATE(1464), 1, + STATE(1356), 1, sym__declarator, - STATE(1504), 1, + STATE(1429), 1, sym__declaration_declarator, - STATE(1524), 1, + STATE(1511), 1, sym__function_declaration_declarator, - STATE(1943), 1, + STATE(1827), 1, sym_ms_based_modifier, - STATE(1388), 4, + STATE(1347), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [53965] = 11, + [54120] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1764), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2970), 1, + ACTIONS(2983), 1, anon_sym_LPAREN2, - ACTIONS(2972), 1, + ACTIONS(2985), 1, anon_sym_STAR, - ACTIONS(3228), 1, + ACTIONS(3249), 1, sym_identifier, - STATE(1371), 1, + STATE(1322), 1, sym_function_declarator, - STATE(1406), 1, + STATE(1355), 1, sym__declarator, - STATE(1484), 1, + STATE(1424), 1, sym__declaration_declarator, - STATE(1524), 1, + STATE(1511), 1, sym__function_declaration_declarator, - STATE(1943), 1, + STATE(1827), 1, sym_ms_based_modifier, - STATE(1388), 4, + STATE(1347), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [54002] = 11, + [54157] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1764), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2970), 1, + ACTIONS(2983), 1, anon_sym_LPAREN2, - ACTIONS(2972), 1, + ACTIONS(2985), 1, anon_sym_STAR, - ACTIONS(3228), 1, + ACTIONS(3249), 1, sym_identifier, - STATE(1371), 1, + STATE(1322), 1, sym_function_declarator, - STATE(1422), 1, + STATE(1373), 1, sym__declarator, - STATE(1482), 1, + STATE(1423), 1, sym__declaration_declarator, - STATE(1524), 1, + STATE(1511), 1, sym__function_declaration_declarator, - STATE(1943), 1, + STATE(1827), 1, sym_ms_based_modifier, - STATE(1388), 4, + STATE(1347), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [54039] = 3, + [54194] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2808), 5, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - ACTIONS(2801), 8, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2983), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - [54060] = 5, + ACTIONS(2985), 1, + anon_sym_STAR, + ACTIONS(3249), 1, + sym_identifier, + STATE(1322), 1, + sym_function_declarator, + STATE(1371), 1, + sym__declarator, + STATE(1418), 1, + sym__declaration_declarator, + STATE(1511), 1, + sym__function_declaration_declarator, + STATE(1827), 1, + sym_ms_based_modifier, + STATE(1347), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + [54231] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3232), 1, + ACTIONS(3245), 1, anon_sym_LPAREN2, - STATE(1041), 1, + STATE(984), 1, sym_preproc_argument_list, - ACTIONS(3573), 5, + ACTIONS(3598), 5, anon_sym___attribute__, anon_sym_LBRACK, anon_sym_asm, anon_sym___asm__, sym_identifier, - ACTIONS(3575), 6, + ACTIONS(3600), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [54085] = 11, + [54256] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1764), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2970), 1, + ACTIONS(2983), 1, anon_sym_LPAREN2, - ACTIONS(2972), 1, + ACTIONS(2985), 1, anon_sym_STAR, - ACTIONS(3228), 1, + ACTIONS(3249), 1, sym_identifier, - STATE(1371), 1, + STATE(1322), 1, sym_function_declarator, - STATE(1407), 1, + STATE(1422), 1, sym__declarator, - STATE(1470), 1, + STATE(1427), 1, sym__declaration_declarator, - STATE(1524), 1, + STATE(1511), 1, sym__function_declaration_declarator, - STATE(1943), 1, + STATE(1827), 1, sym_ms_based_modifier, - STATE(1388), 4, + STATE(1347), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [54122] = 7, + [54293] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3565), 1, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2983), 1, anon_sym_LPAREN2, - ACTIONS(3567), 1, + ACTIONS(2985), 1, + anon_sym_STAR, + ACTIONS(3249), 1, + sym_identifier, + STATE(1322), 1, + sym_function_declarator, + STATE(1422), 1, + sym__declarator, + STATE(1441), 1, + sym__declaration_declarator, + STATE(1511), 1, + sym__function_declaration_declarator, + STATE(1827), 1, + sym_ms_based_modifier, + STATE(1347), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + [54330] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2816), 5, + anon_sym___attribute__, anon_sym_LBRACK, - STATE(1291), 1, - sym_parameter_list, - STATE(1330), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3577), 7, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + ACTIONS(2809), 8, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [54151] = 11, + anon_sym_COLON, + [54351] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1764), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2970), 1, + ACTIONS(2983), 1, anon_sym_LPAREN2, - ACTIONS(2972), 1, + ACTIONS(2985), 1, anon_sym_STAR, - ACTIONS(3228), 1, + ACTIONS(3249), 1, sym_identifier, - STATE(1371), 1, + STATE(1322), 1, sym_function_declarator, - STATE(1464), 1, + STATE(1422), 1, sym__declarator, - STATE(1482), 1, + STATE(1434), 1, sym__declaration_declarator, - STATE(1524), 1, + STATE(1511), 1, sym__function_declaration_declarator, - STATE(1943), 1, + STATE(1827), 1, sym_ms_based_modifier, - STATE(1388), 4, + STATE(1347), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [54188] = 11, + [54388] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1764), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2970), 1, + ACTIONS(2983), 1, anon_sym_LPAREN2, - ACTIONS(2972), 1, + ACTIONS(2985), 1, anon_sym_STAR, - ACTIONS(3228), 1, + ACTIONS(3249), 1, sym_identifier, - STATE(1371), 1, + STATE(1322), 1, sym_function_declarator, - STATE(1464), 1, + STATE(1422), 1, sym__declarator, - STATE(1470), 1, + STATE(1429), 1, sym__declaration_declarator, - STATE(1524), 1, + STATE(1511), 1, sym__function_declaration_declarator, - STATE(1943), 1, + STATE(1827), 1, sym_ms_based_modifier, - STATE(1388), 4, + STATE(1347), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [54225] = 11, + [54425] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(3586), 1, + sym_identifier, + ACTIONS(3588), 1, + aux_sym_preproc_if_token1, + ACTIONS(3602), 1, + anon_sym_RBRACE, + ACTIONS(3590), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(1664), 2, + sym_preproc_call, + sym_enumerator, + STATE(1906), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(1284), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [54458] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1764), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2970), 1, + ACTIONS(2983), 1, anon_sym_LPAREN2, - ACTIONS(2972), 1, + ACTIONS(2985), 1, anon_sym_STAR, - ACTIONS(3228), 1, + ACTIONS(3249), 1, sym_identifier, - STATE(1371), 1, + STATE(1322), 1, sym_function_declarator, - STATE(1464), 1, - sym__declarator, - STATE(1483), 1, + STATE(1418), 1, sym__declaration_declarator, - STATE(1524), 1, + STATE(1422), 1, + sym__declarator, + STATE(1511), 1, sym__function_declaration_declarator, - STATE(1943), 1, + STATE(1827), 1, sym_ms_based_modifier, - STATE(1388), 4, + STATE(1347), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [54262] = 3, + [54495] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3579), 5, + ACTIONS(3604), 5, anon_sym___attribute__, anon_sym_LBRACK, anon_sym_asm, anon_sym___asm__, sym_identifier, - ACTIONS(3581), 8, + ACTIONS(3606), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108869,624 +103632,652 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - [54283] = 3, + [54516] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2820), 5, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3580), 1, + anon_sym_LPAREN2, + ACTIONS(3608), 1, + anon_sym_COMMA, + ACTIONS(3612), 1, + anon_sym_LBRACK, + ACTIONS(3614), 1, + anon_sym_COLON, + STATE(1352), 1, + sym_parameter_list, + STATE(1463), 1, + sym_bitfield_clause, + STATE(1467), 1, + aux_sym__field_declaration_declarator_repeat1, + ACTIONS(3610), 2, + anon_sym_SEMI, anon_sym___attribute__, + STATE(1313), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [54552] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3618), 1, anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - ACTIONS(2813), 8, + STATE(1257), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3616), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, - [54304] = 9, + anon_sym_asm, + anon_sym___asm__, + [54576] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(17), 1, - sym_preproc_directive, - ACTIONS(3583), 1, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2794), 1, sym_identifier, - ACTIONS(3585), 1, - aux_sym_preproc_if_token1, - ACTIONS(3589), 1, - anon_sym_RBRACE, - ACTIONS(3587), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1717), 2, - sym_preproc_call, + ACTIONS(2983), 1, + anon_sym_LPAREN2, + ACTIONS(2985), 1, + anon_sym_STAR, + STATE(1365), 1, + sym__declarator, + STATE(1827), 1, + sym_ms_based_modifier, + STATE(1322), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [54605] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3586), 1, + sym_identifier, + ACTIONS(3620), 1, + aux_sym_preproc_if_token2, + ACTIONS(3622), 1, + aux_sym_preproc_else_token1, + ACTIONS(3624), 1, + aux_sym_preproc_elif_token1, + STATE(1360), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1758), 1, sym_enumerator, - STATE(1961), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(1337), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [54337] = 9, + ACTIONS(3626), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(1901), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [54636] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(17), 1, - sym_preproc_directive, - ACTIONS(3583), 1, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2794), 1, + sym_identifier, + ACTIONS(2983), 1, + anon_sym_LPAREN2, + ACTIONS(2985), 1, + anon_sym_STAR, + STATE(1358), 1, + sym__declarator, + STATE(1827), 1, + sym_ms_based_modifier, + STATE(1322), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [54665] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3628), 1, sym_identifier, - ACTIONS(3585), 1, + ACTIONS(3631), 1, aux_sym_preproc_if_token1, - ACTIONS(3591), 1, + ACTIONS(3637), 1, + sym_preproc_directive, + ACTIONS(3640), 1, anon_sym_RBRACE, - ACTIONS(3587), 2, + ACTIONS(3634), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1741), 2, + STATE(1911), 2, sym_preproc_call, sym_enumerator, - STATE(1886), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(1325), 3, + STATE(1284), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [54370] = 11, + [54694] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3644), 1, + anon_sym___attribute__, + ACTIONS(3598), 2, + anon_sym_LBRACK, + sym_identifier, + ACTIONS(3642), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3647), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(3600), 4, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + [54719] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3553), 1, + aux_sym_preproc_if_token2, + ACTIONS(3586), 1, + sym_identifier, + ACTIONS(3622), 1, + aux_sym_preproc_else_token1, + ACTIONS(3624), 1, + aux_sym_preproc_elif_token1, + STATE(1296), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1758), 1, + sym_enumerator, + ACTIONS(3626), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(1895), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [54750] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3586), 1, + sym_identifier, + ACTIONS(3622), 1, + aux_sym_preproc_else_token1, + ACTIONS(3624), 1, + aux_sym_preproc_elif_token1, + ACTIONS(3649), 1, + aux_sym_preproc_if_token2, + STATE(1301), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1758), 1, + sym_enumerator, + ACTIONS(3626), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(1931), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [54781] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1764), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2970), 1, + ACTIONS(2794), 1, + sym_identifier, + ACTIONS(2983), 1, anon_sym_LPAREN2, - ACTIONS(2972), 1, + ACTIONS(2985), 1, anon_sym_STAR, - ACTIONS(3228), 1, - sym_identifier, - STATE(1371), 1, - sym_function_declarator, - STATE(1464), 1, + STATE(1381), 1, sym__declarator, - STATE(1471), 1, - sym__declaration_declarator, - STATE(1524), 1, - sym__function_declaration_declarator, - STATE(1943), 1, + STATE(1827), 1, sym_ms_based_modifier, - STATE(1388), 4, + STATE(1322), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, + sym_function_declarator, sym_array_declarator, - [54407] = 11, + [54810] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1764), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2970), 1, + ACTIONS(2951), 1, + sym_identifier, + ACTIONS(2953), 1, anon_sym_LPAREN2, - ACTIONS(2972), 1, + ACTIONS(2955), 1, anon_sym_STAR, - ACTIONS(3228), 1, - sym_identifier, - STATE(1371), 1, - sym_function_declarator, - STATE(1464), 1, - sym__declarator, - STATE(1478), 1, - sym__declaration_declarator, - STATE(1524), 1, - sym__function_declaration_declarator, - STATE(1943), 1, + STATE(1297), 1, + sym__field_declarator, + STATE(1732), 1, sym_ms_based_modifier, - STATE(1388), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - [54444] = 11, + STATE(1349), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [54839] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3565), 1, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(3593), 1, - anon_sym_COMMA, - ACTIONS(3597), 1, + ACTIONS(3612), 1, anon_sym_LBRACK, - ACTIONS(3599), 1, - anon_sym_COLON, - STATE(1417), 1, + STATE(1352), 1, sym_parameter_list, - STATE(1550), 1, - aux_sym__field_declaration_declarator_repeat1, - STATE(1553), 1, - sym_bitfield_clause, - ACTIONS(3595), 2, - anon_sym_SEMI, - anon_sym___attribute__, - STATE(1378), 2, + STATE(1313), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [54480] = 5, + ACTIONS(3651), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + [54866] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3603), 1, + ACTIONS(3580), 1, + anon_sym_LPAREN2, + ACTIONS(3612), 1, anon_sym_LBRACK, - STATE(1307), 2, + STATE(1352), 1, + sym_parameter_list, + STATE(1313), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3601), 8, + ACTIONS(3653), 5, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [54504] = 6, + anon_sym___attribute__, + anon_sym_COLON, + [54893] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3607), 1, - anon_sym___attribute__, - ACTIONS(3573), 2, - anon_sym_LBRACK, + ACTIONS(3551), 1, sym_identifier, - ACTIONS(3605), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3610), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(3575), 4, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - [54529] = 8, + ACTIONS(3655), 1, + aux_sym_preproc_if_token2, + ACTIONS(3657), 1, + aux_sym_preproc_else_token1, + ACTIONS(3659), 1, + aux_sym_preproc_elif_token1, + ACTIONS(3661), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(1294), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(1896), 3, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + sym_preproc_elifdef_in_enumerator_list_no_comma, + [54922] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1764), 1, + ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2768), 1, + ACTIONS(2951), 1, sym_identifier, - ACTIONS(2970), 1, + ACTIONS(2953), 1, anon_sym_LPAREN2, - ACTIONS(2972), 1, + ACTIONS(2955), 1, anon_sym_STAR, - STATE(1409), 1, - sym__declarator, - STATE(1943), 1, + STATE(1393), 1, + sym__field_declarator, + STATE(1732), 1, sym_ms_based_modifier, - STATE(1371), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [54558] = 9, + STATE(1349), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [54951] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3583), 1, + ACTIONS(3551), 1, sym_identifier, - ACTIONS(3612), 1, + ACTIONS(3657), 1, + aux_sym_preproc_else_token1, + ACTIONS(3659), 1, + aux_sym_preproc_elif_token1, + ACTIONS(3663), 1, aux_sym_preproc_if_token2, - ACTIONS(3614), 1, + ACTIONS(3661), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(1354), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(1924), 3, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + sym_preproc_elifdef_in_enumerator_list_no_comma, + [54980] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3580), 1, + anon_sym_LPAREN2, + ACTIONS(3612), 1, + anon_sym_LBRACK, + STATE(1352), 1, + sym_parameter_list, + STATE(1313), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3665), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + [55007] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3586), 1, + sym_identifier, + ACTIONS(3622), 1, aux_sym_preproc_else_token1, - ACTIONS(3616), 1, + ACTIONS(3624), 1, aux_sym_preproc_elif_token1, - STATE(1399), 1, + ACTIONS(3667), 1, + aux_sym_preproc_if_token2, + STATE(1360), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1894), 1, + STATE(1758), 1, sym_enumerator, - ACTIONS(3618), 2, + ACTIONS(3626), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1953), 3, + STATE(1921), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [54589] = 9, + [55038] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3580), 1, + anon_sym_LPAREN2, + ACTIONS(3612), 1, + anon_sym_LBRACK, + ACTIONS(3614), 1, + anon_sym_COLON, + STATE(1352), 1, + sym_parameter_list, + STATE(1559), 1, + sym_bitfield_clause, + STATE(1313), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3669), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + [55069] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2794), 1, + sym_identifier, + ACTIONS(2983), 1, + anon_sym_LPAREN2, + ACTIONS(2985), 1, + anon_sym_STAR, + STATE(1348), 1, + sym__declarator, + STATE(1827), 1, + sym_ms_based_modifier, + STATE(1322), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [55098] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3583), 1, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2794), 1, sym_identifier, - ACTIONS(3614), 1, - aux_sym_preproc_else_token1, - ACTIONS(3616), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3620), 1, - aux_sym_preproc_if_token2, - STATE(1399), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1894), 1, - sym_enumerator, - ACTIONS(3618), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(1871), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - [54620] = 8, + ACTIONS(2983), 1, + anon_sym_LPAREN2, + ACTIONS(2985), 1, + anon_sym_STAR, + STATE(1351), 1, + sym__declarator, + STATE(1827), 1, + sym_ms_based_modifier, + STATE(1322), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [55127] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3518), 1, + ACTIONS(3551), 1, sym_identifier, - ACTIONS(3622), 1, - aux_sym_preproc_if_token2, - ACTIONS(3624), 1, + ACTIONS(3657), 1, aux_sym_preproc_else_token1, - ACTIONS(3626), 1, + ACTIONS(3659), 1, aux_sym_preproc_elif_token1, - ACTIONS(3628), 2, + ACTIONS(3671), 1, + aux_sym_preproc_if_token2, + ACTIONS(3661), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1424), 2, + STATE(1354), 2, sym_enumerator, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1875), 3, + STATE(1776), 3, sym_preproc_else_in_enumerator_list_no_comma, sym_preproc_elif_in_enumerator_list_no_comma, sym_preproc_elifdef_in_enumerator_list_no_comma, - [54649] = 9, + [55156] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3583), 1, + ACTIONS(3586), 1, sym_identifier, - ACTIONS(3614), 1, + ACTIONS(3622), 1, aux_sym_preproc_else_token1, - ACTIONS(3616), 1, + ACTIONS(3624), 1, aux_sym_preproc_elif_token1, - ACTIONS(3630), 1, + ACTIONS(3673), 1, aux_sym_preproc_if_token2, - STATE(1399), 1, + STATE(1360), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1894), 1, + STATE(1758), 1, sym_enumerator, - ACTIONS(3618), 2, + ACTIONS(3626), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1828), 3, + STATE(1756), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [54680] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3632), 1, - sym_identifier, - ACTIONS(3635), 1, - aux_sym_preproc_if_token1, - ACTIONS(3641), 1, - sym_preproc_directive, - ACTIONS(3644), 1, - anon_sym_RBRACE, - ACTIONS(3638), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1968), 2, - sym_preproc_call, - sym_enumerator, - STATE(1337), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [54709] = 8, + [55187] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3518), 1, + ACTIONS(3551), 1, sym_identifier, - ACTIONS(3624), 1, + ACTIONS(3657), 1, aux_sym_preproc_else_token1, - ACTIONS(3626), 1, + ACTIONS(3659), 1, aux_sym_preproc_elif_token1, - ACTIONS(3646), 1, + ACTIONS(3675), 1, aux_sym_preproc_if_token2, - ACTIONS(3628), 2, + ACTIONS(3661), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1342), 2, + STATE(1354), 2, sym_enumerator, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1885), 3, + STATE(1903), 3, sym_preproc_else_in_enumerator_list_no_comma, sym_preproc_elif_in_enumerator_list_no_comma, sym_preproc_elifdef_in_enumerator_list_no_comma, - [54738] = 7, + [55216] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3565), 1, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(3597), 1, + ACTIONS(3612), 1, anon_sym_LBRACK, - STATE(1417), 1, + STATE(1352), 1, sym_parameter_list, - STATE(1378), 2, + STATE(1313), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3648), 5, + ACTIONS(3677), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - [54765] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3532), 1, - aux_sym_preproc_if_token2, - ACTIONS(3583), 1, - sym_identifier, - ACTIONS(3614), 1, - aux_sym_preproc_else_token1, - ACTIONS(3616), 1, - aux_sym_preproc_elif_token1, - STATE(1333), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1894), 1, - sym_enumerator, - ACTIONS(3618), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(1915), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - [54796] = 9, + [55243] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3528), 1, + ACTIONS(3563), 1, aux_sym_preproc_if_token2, - ACTIONS(3583), 1, + ACTIONS(3586), 1, sym_identifier, - ACTIONS(3614), 1, + ACTIONS(3622), 1, aux_sym_preproc_else_token1, - ACTIONS(3616), 1, + ACTIONS(3624), 1, aux_sym_preproc_elif_token1, - STATE(1343), 1, + STATE(1282), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1894), 1, + STATE(1758), 1, sym_enumerator, - ACTIONS(3618), 2, + ACTIONS(3626), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1882), 3, + STATE(1859), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [54827] = 8, + [55274] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3518), 1, + ACTIONS(3551), 1, sym_identifier, - ACTIONS(3624), 1, + ACTIONS(3657), 1, aux_sym_preproc_else_token1, - ACTIONS(3626), 1, + ACTIONS(3659), 1, aux_sym_preproc_elif_token1, - ACTIONS(3650), 1, + ACTIONS(3679), 1, aux_sym_preproc_if_token2, - ACTIONS(3628), 2, + ACTIONS(3661), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1424), 2, + STATE(1354), 2, sym_enumerator, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1925), 3, + STATE(1858), 3, sym_preproc_else_in_enumerator_list_no_comma, sym_preproc_elif_in_enumerator_list_no_comma, sym_preproc_elifdef_in_enumerator_list_no_comma, - [54856] = 9, + [55303] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3583), 1, + ACTIONS(3586), 1, sym_identifier, - ACTIONS(3614), 1, + ACTIONS(3622), 1, aux_sym_preproc_else_token1, - ACTIONS(3616), 1, + ACTIONS(3624), 1, aux_sym_preproc_elif_token1, - ACTIONS(3652), 1, + ACTIONS(3681), 1, aux_sym_preproc_if_token2, - STATE(1399), 1, + STATE(1360), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1894), 1, + STATE(1758), 1, sym_enumerator, - ACTIONS(3618), 2, + ACTIONS(3626), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1924), 3, + STATE(1854), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [54887] = 8, + [55334] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3518), 1, + ACTIONS(3551), 1, sym_identifier, - ACTIONS(3624), 1, + ACTIONS(3657), 1, aux_sym_preproc_else_token1, - ACTIONS(3626), 1, + ACTIONS(3659), 1, aux_sym_preproc_elif_token1, - ACTIONS(3654), 1, + ACTIONS(3683), 1, aux_sym_preproc_if_token2, - ACTIONS(3628), 2, + ACTIONS(3661), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1345), 2, + STATE(1302), 2, sym_enumerator, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1916), 3, + STATE(1861), 3, sym_preproc_else_in_enumerator_list_no_comma, sym_preproc_elif_in_enumerator_list_no_comma, sym_preproc_elifdef_in_enumerator_list_no_comma, - [54916] = 8, + [55363] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3518), 1, + ACTIONS(3586), 1, sym_identifier, - ACTIONS(3624), 1, + ACTIONS(3622), 1, aux_sym_preproc_else_token1, - ACTIONS(3626), 1, + ACTIONS(3624), 1, aux_sym_preproc_elif_token1, - ACTIONS(3656), 1, + ACTIONS(3685), 1, aux_sym_preproc_if_token2, - ACTIONS(3628), 2, + STATE(1306), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1758), 1, + sym_enumerator, + ACTIONS(3626), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1424), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1954), 3, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - sym_preproc_elifdef_in_enumerator_list_no_comma, - [54945] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1764), 1, - anon_sym___based, - ACTIONS(2768), 1, - sym_identifier, - ACTIONS(2970), 1, - anon_sym_LPAREN2, - ACTIONS(2972), 1, - anon_sym_STAR, - STATE(1429), 1, - sym__declarator, - STATE(1943), 1, - sym_ms_based_modifier, - STATE(1371), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [54974] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1764), 1, - anon_sym___based, - ACTIONS(2768), 1, - sym_identifier, - ACTIONS(2970), 1, - anon_sym_LPAREN2, - ACTIONS(2972), 1, - anon_sym_STAR, - STATE(1416), 1, - sym__declarator, - STATE(1943), 1, - sym_ms_based_modifier, - STATE(1371), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [55003] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1764), 1, - anon_sym___based, - ACTIONS(2768), 1, - sym_identifier, - ACTIONS(2970), 1, - anon_sym_LPAREN2, - ACTIONS(2972), 1, - anon_sym_STAR, - STATE(1400), 1, - sym__declarator, - STATE(1943), 1, - sym_ms_based_modifier, - STATE(1371), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [55032] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1764), 1, - anon_sym___based, - ACTIONS(2768), 1, - sym_identifier, - ACTIONS(2970), 1, - anon_sym_LPAREN2, - ACTIONS(2972), 1, - anon_sym_STAR, - STATE(1398), 1, - sym__declarator, - STATE(1943), 1, - sym_ms_based_modifier, - STATE(1371), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [55061] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1764), 1, - anon_sym___based, - ACTIONS(2934), 1, - sym_identifier, - ACTIONS(2936), 1, - anon_sym_LPAREN2, - ACTIONS(2938), 1, - anon_sym_STAR, - STATE(1351), 1, - sym__field_declarator, - STATE(1993), 1, - sym_ms_based_modifier, - STATE(1414), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [55090] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3565), 1, - anon_sym_LPAREN2, - ACTIONS(3597), 1, - anon_sym_LBRACK, - ACTIONS(3599), 1, - anon_sym_COLON, - STATE(1417), 1, - sym_parameter_list, - STATE(1603), 1, - sym_bitfield_clause, - STATE(1378), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3658), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - [55121] = 6, + STATE(1742), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [55394] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3660), 1, + ACTIONS(3687), 1, sym_identifier, - STATE(707), 1, + STATE(659), 1, sym_string_literal, - ACTIONS(3662), 2, + ACTIONS(3689), 2, anon_sym_RPAREN, anon_sym_COLON, - STATE(1530), 2, + STATE(1500), 2, sym__string, sym_concatenated_string, ACTIONS(97), 5, @@ -109495,158 +104286,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [55146] = 7, + [55419] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3565), 1, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(3597), 1, + ACTIONS(3693), 1, anon_sym_LBRACK, - STATE(1417), 1, + STATE(1391), 1, sym_parameter_list, - STATE(1378), 2, + STATE(1341), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3664), 5, + ACTIONS(3691), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, + [55445] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3697), 1, + anon_sym_LBRACK, + STATE(1474), 1, + sym_gnu_asm_output_operand, + STATE(1830), 1, + sym_string_literal, + ACTIONS(3695), 2, + anon_sym_RPAREN, anon_sym_COLON, - [55173] = 7, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [55469] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3565), 1, - anon_sym_LPAREN2, - ACTIONS(3597), 1, + ACTIONS(3701), 1, anon_sym_LBRACK, - STATE(1417), 1, - sym_parameter_list, - STATE(1378), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3666), 5, + ACTIONS(3699), 9, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - [55200] = 7, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [55487] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3565), 1, - anon_sym_LPAREN2, - ACTIONS(3597), 1, + ACTIONS(3705), 1, anon_sym_LBRACK, - STATE(1417), 1, - sym_parameter_list, - STATE(1378), 2, + STATE(1257), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3668), 5, + ACTIONS(3703), 6, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - [55227] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1764), 1, - anon_sym___based, - ACTIONS(2934), 1, - sym_identifier, - ACTIONS(2936), 1, - anon_sym_LPAREN2, - ACTIONS(2938), 1, - anon_sym_STAR, - STATE(1430), 1, - sym__field_declarator, - STATE(1993), 1, - sym_ms_based_modifier, - STATE(1414), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [55256] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3583), 1, - sym_identifier, - ACTIONS(3614), 1, - aux_sym_preproc_else_token1, - ACTIONS(3616), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3670), 1, - aux_sym_preproc_if_token2, - STATE(1336), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1894), 1, - sym_enumerator, - ACTIONS(3618), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(2021), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - [55287] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3583), 1, - sym_identifier, - ACTIONS(3614), 1, - aux_sym_preproc_else_token1, - ACTIONS(3616), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3672), 1, - aux_sym_preproc_if_token2, - STATE(1334), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1894), 1, - sym_enumerator, - ACTIONS(3618), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(1934), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - [55318] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3518), 1, - sym_identifier, - ACTIONS(3624), 1, - aux_sym_preproc_else_token1, - ACTIONS(3626), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3674), 1, - aux_sym_preproc_if_token2, - ACTIONS(3628), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(1424), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1837), 3, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - sym_preproc_elifdef_in_enumerator_list_no_comma, - [55347] = 3, + [55509] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3678), 1, + ACTIONS(3709), 1, anon_sym_LBRACK, - ACTIONS(3676), 9, + ACTIONS(3707), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109656,12 +104370,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [55365] = 3, + [55527] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3682), 1, + ACTIONS(3713), 1, anon_sym_LBRACK, - ACTIONS(3680), 9, + ACTIONS(3711), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109671,12 +104385,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [55383] = 3, + [55545] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3686), 1, + ACTIONS(3717), 1, anon_sym_LBRACK, - ACTIONS(3684), 9, + ACTIONS(3715), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109686,71 +104400,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [55401] = 7, + [55563] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3565), 1, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(3690), 1, + ACTIONS(3693), 1, anon_sym_LBRACK, - STATE(1447), 1, + STATE(1391), 1, sym_parameter_list, - STATE(1397), 2, + STATE(1341), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3688), 4, + ACTIONS(3719), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, - [55427] = 7, + [55589] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3565), 1, - anon_sym_LPAREN2, - ACTIONS(3690), 1, + ACTIONS(41), 1, + anon_sym_LBRACE, + ACTIONS(3582), 1, anon_sym_LBRACK, - STATE(1447), 1, + ACTIONS(3721), 1, + anon_sym_LPAREN2, + ACTIONS(3723), 1, + anon_sym_EQ, + STATE(378), 1, + sym_compound_statement, + STATE(922), 1, + sym__old_style_parameter_list, + STATE(1244), 1, sym_parameter_list, - STATE(1397), 2, + STATE(1280), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3692), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - [55453] = 9, + [55621] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3565), 1, - anon_sym_LPAREN2, - ACTIONS(3690), 1, + ACTIONS(432), 1, + anon_sym_LBRACE, + ACTIONS(3582), 1, anon_sym_LBRACK, - ACTIONS(3694), 1, - anon_sym_COMMA, - STATE(1447), 1, + ACTIONS(3721), 1, + anon_sym_LPAREN2, + ACTIONS(3723), 1, + anon_sym_EQ, + STATE(260), 1, + sym_compound_statement, + STATE(922), 1, + sym__old_style_parameter_list, + STATE(1244), 1, sym_parameter_list, - STATE(1560), 1, - aux_sym__type_definition_declarators_repeat1, - ACTIONS(3696), 2, - anon_sym_SEMI, - anon_sym___attribute__, - STATE(1397), 2, + STATE(1280), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [55483] = 3, + [55653] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3700), 1, + ACTIONS(3727), 1, anon_sym_LBRACK, - ACTIONS(3698), 9, + ACTIONS(3725), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109760,86 +104478,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [55501] = 7, + [55671] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3565), 1, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(3690), 1, + ACTIONS(3693), 1, anon_sym_LBRACK, - STATE(1447), 1, + STATE(1391), 1, sym_parameter_list, - STATE(1397), 2, + STATE(1341), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3702), 4, + ACTIONS(3729), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, - [55527] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(131), 1, - anon_sym_LBRACE, - ACTIONS(3567), 1, - anon_sym_LBRACK, - ACTIONS(3704), 1, - anon_sym_LPAREN2, - ACTIONS(3706), 1, - anon_sym_EQ, - STATE(143), 1, - sym_compound_statement, - STATE(974), 1, - sym__old_style_parameter_list, - STATE(1292), 1, - sym_parameter_list, - STATE(1330), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [55559] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3710), 1, - anon_sym_LBRACK, - ACTIONS(3708), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [55577] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3714), 1, - anon_sym_LBRACK, - STATE(1521), 1, - sym_gnu_asm_input_operand, - STATE(1829), 1, - sym_string_literal, - ACTIONS(3712), 2, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(97), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [55601] = 3, + [55697] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3718), 1, + ACTIONS(3733), 1, anon_sym_LBRACK, - ACTIONS(3716), 9, + ACTIONS(3731), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109849,79 +104512,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [55619] = 7, + [55715] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3565), 1, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(3690), 1, + ACTIONS(3693), 1, anon_sym_LBRACK, - STATE(1447), 1, + STATE(1391), 1, sym_parameter_list, - STATE(1397), 2, + STATE(1341), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3720), 4, + ACTIONS(3735), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, - [55645] = 10, + [55741] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(432), 1, + ACTIONS(376), 1, anon_sym_LBRACE, - ACTIONS(3567), 1, + ACTIONS(3582), 1, anon_sym_LBRACK, - ACTIONS(3704), 1, + ACTIONS(3721), 1, anon_sym_LPAREN2, - ACTIONS(3706), 1, + ACTIONS(3723), 1, anon_sym_EQ, - STATE(348), 1, + STATE(265), 1, sym_compound_statement, - STATE(974), 1, + STATE(922), 1, sym__old_style_parameter_list, - STATE(1292), 1, + STATE(1244), 1, sym_parameter_list, - STATE(1330), 2, + STATE(1280), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [55677] = 10, + [55773] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(376), 1, + ACTIONS(3580), 1, + anon_sym_LPAREN2, + ACTIONS(3693), 1, + anon_sym_LBRACK, + ACTIONS(3737), 1, + anon_sym_COMMA, + STATE(1391), 1, + sym_parameter_list, + STATE(1478), 1, + aux_sym__type_definition_declarators_repeat1, + ACTIONS(3739), 2, + anon_sym_SEMI, + anon_sym___attribute__, + STATE(1341), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [55803] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(131), 1, anon_sym_LBRACE, - ACTIONS(3567), 1, + ACTIONS(3582), 1, anon_sym_LBRACK, - ACTIONS(3704), 1, + ACTIONS(3721), 1, anon_sym_LPAREN2, - ACTIONS(3706), 1, + ACTIONS(3723), 1, anon_sym_EQ, - STATE(363), 1, + STATE(130), 1, sym_compound_statement, - STATE(974), 1, + STATE(922), 1, sym__old_style_parameter_list, - STATE(1292), 1, + STATE(1244), 1, sym_parameter_list, - STATE(1330), 2, + STATE(1280), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [55709] = 6, + [55835] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3724), 1, + ACTIONS(3743), 1, anon_sym_LBRACK, - STATE(1537), 1, - sym_gnu_asm_output_operand, - STATE(1863), 1, + STATE(1516), 1, + sym_gnu_asm_input_operand, + STATE(1824), 1, sym_string_literal, - ACTIONS(3722), 2, + ACTIONS(3741), 2, anon_sym_RPAREN, anon_sym_COLON, ACTIONS(97), 5, @@ -109930,34 +104614,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [55733] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(41), 1, - anon_sym_LBRACE, - ACTIONS(3567), 1, - anon_sym_LBRACK, - ACTIONS(3704), 1, - anon_sym_LPAREN2, - ACTIONS(3706), 1, - anon_sym_EQ, - STATE(432), 1, - sym_compound_statement, - STATE(974), 1, - sym__old_style_parameter_list, - STATE(1292), 1, - sym_parameter_list, - STATE(1330), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [55765] = 3, + [55859] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3728), 1, + ACTIONS(3747), 1, anon_sym_LBRACK, - ACTIONS(3726), 9, + ACTIONS(3745), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109967,181 +104629,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [55783] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3732), 1, - anon_sym_LBRACK, - STATE(1307), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3730), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - [55805] = 5, + [55877] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3660), 1, + ACTIONS(3749), 1, sym_identifier, - STATE(707), 1, + ACTIONS(3753), 1, + sym_system_lib_string, + STATE(1787), 2, + sym_preproc_call_expression, sym_string_literal, - STATE(1673), 2, - sym__string, - sym_concatenated_string, - ACTIONS(97), 5, + ACTIONS(3751), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [55826] = 9, + [55898] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(432), 1, + ACTIONS(41), 1, anon_sym_LBRACE, - ACTIONS(3567), 1, + ACTIONS(3582), 1, anon_sym_LBRACK, - ACTIONS(3704), 1, + ACTIONS(3721), 1, anon_sym_LPAREN2, - STATE(337), 1, + STATE(367), 1, sym_compound_statement, - STATE(974), 1, + STATE(922), 1, sym__old_style_parameter_list, - STATE(1291), 1, + STATE(1242), 1, sym_parameter_list, - STATE(1330), 2, + STATE(1280), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [55855] = 9, + [55927] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3755), 1, + sym_identifier, + ACTIONS(3757), 1, + sym_system_lib_string, + STATE(1804), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(3751), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [55948] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(376), 1, anon_sym_LBRACE, - ACTIONS(3567), 1, + ACTIONS(3582), 1, anon_sym_LBRACK, - ACTIONS(3704), 1, + ACTIONS(3721), 1, anon_sym_LPAREN2, - STATE(321), 1, + STATE(307), 1, sym_compound_statement, - STATE(974), 1, + STATE(922), 1, sym__old_style_parameter_list, - STATE(1291), 1, + STATE(1242), 1, sym_parameter_list, - STATE(1330), 2, + STATE(1280), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [55884] = 9, + [55977] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3759), 1, + sym_identifier, + ACTIONS(3761), 1, + sym_system_lib_string, + STATE(1935), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(3751), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [55998] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(131), 1, + ACTIONS(432), 1, anon_sym_LBRACE, - ACTIONS(3565), 1, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(3567), 1, + ACTIONS(3582), 1, anon_sym_LBRACK, - ACTIONS(3706), 1, + ACTIONS(3723), 1, anon_sym_EQ, - STATE(143), 1, + STATE(260), 1, sym_compound_statement, - STATE(1292), 1, + STATE(1244), 1, sym_parameter_list, - STATE(1330), 2, + STATE(1280), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [55913] = 9, + [56027] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(432), 1, + ACTIONS(131), 1, anon_sym_LBRACE, - ACTIONS(3565), 1, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(3567), 1, + ACTIONS(3582), 1, anon_sym_LBRACK, - ACTIONS(3706), 1, + ACTIONS(3723), 1, anon_sym_EQ, - STATE(348), 1, + STATE(130), 1, sym_compound_statement, - STATE(1292), 1, + STATE(1244), 1, sym_parameter_list, - STATE(1330), 2, + STATE(1280), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [55942] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1888), 1, - anon_sym_LPAREN2, - ACTIONS(1890), 1, - anon_sym_STAR, - ACTIONS(2776), 1, - anon_sym_LBRACK, - STATE(1494), 1, - sym_parameter_list, - STATE(1534), 1, - sym__abstract_declarator, - STATE(1495), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - [55967] = 5, + [56056] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3734), 1, + ACTIONS(3763), 1, sym_identifier, - ACTIONS(3738), 1, + ACTIONS(3765), 1, sym_system_lib_string, - STATE(1857), 2, + STATE(1771), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(3736), 5, + ACTIONS(3751), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [55988] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(131), 1, - anon_sym_LBRACE, - ACTIONS(3567), 1, - anon_sym_LBRACK, - ACTIONS(3704), 1, - anon_sym_LPAREN2, - STATE(142), 1, - sym_compound_statement, - STATE(974), 1, - sym__old_style_parameter_list, - STATE(1291), 1, - sym_parameter_list, - STATE(1330), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [56017] = 5, + [56077] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3660), 1, + ACTIONS(3687), 1, sym_identifier, - STATE(707), 1, + STATE(659), 1, sym_string_literal, - STATE(1583), 2, + STATE(1534), 2, sym__string, sym_concatenated_string, ACTIONS(97), 5, @@ -110150,119 +104789,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [56038] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3718), 1, - anon_sym_LBRACK, - ACTIONS(3716), 4, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - ACTIONS(3740), 4, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_asm, - anon_sym___asm__, - [56057] = 5, + [56098] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3742), 1, + ACTIONS(3687), 1, sym_identifier, - ACTIONS(3744), 1, - sym_system_lib_string, - STATE(1997), 2, - sym_preproc_call_expression, + STATE(659), 1, sym_string_literal, - ACTIONS(3736), 5, + STATE(1631), 2, + sym__string, + sym_concatenated_string, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [56078] = 9, + [56119] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(41), 1, anon_sym_LBRACE, - ACTIONS(3565), 1, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(3567), 1, + ACTIONS(3582), 1, anon_sym_LBRACK, - ACTIONS(3706), 1, + ACTIONS(3723), 1, anon_sym_EQ, - STATE(432), 1, - sym_compound_statement, - STATE(1292), 1, - sym_parameter_list, - STATE(1330), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [56107] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3746), 1, - sym_identifier, - ACTIONS(3748), 1, - sym_system_lib_string, - STATE(1786), 2, - sym_preproc_call_expression, - sym_string_literal, - ACTIONS(3736), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [56128] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(41), 1, - anon_sym_LBRACE, - ACTIONS(3567), 1, - anon_sym_LBRACK, - ACTIONS(3704), 1, - anon_sym_LPAREN2, - STATE(410), 1, - sym_compound_statement, - STATE(974), 1, - sym__old_style_parameter_list, - STATE(1291), 1, + STATE(378), 1, + sym_compound_statement, + STATE(1244), 1, sym_parameter_list, - STATE(1330), 2, + STATE(1280), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [56157] = 7, + [56148] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3565), 1, + ACTIONS(1907), 1, anon_sym_LPAREN2, - ACTIONS(3690), 1, + ACTIONS(1909), 1, + anon_sym_STAR, + ACTIONS(2802), 1, anon_sym_LBRACK, - STATE(1447), 1, + STATE(1443), 1, sym_parameter_list, - STATE(1397), 2, + STATE(1477), 1, + sym__abstract_declarator, + STATE(1442), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + [56173] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3769), 1, + anon_sym_LBRACK, + STATE(1257), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3750), 3, + ACTIONS(3767), 5, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, - [56182] = 5, + [56194] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3660), 1, + ACTIONS(3687), 1, sym_identifier, - STATE(707), 1, + STATE(659), 1, sym_string_literal, - STATE(1607), 2, + STATE(1596), 2, sym__string, sym_concatenated_string, ACTIONS(97), 5, @@ -110271,146 +104875,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [56203] = 9, + [56215] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(376), 1, + ACTIONS(131), 1, anon_sym_LBRACE, - ACTIONS(3565), 1, - anon_sym_LPAREN2, - ACTIONS(3567), 1, + ACTIONS(3582), 1, anon_sym_LBRACK, - ACTIONS(3706), 1, - anon_sym_EQ, - STATE(363), 1, + ACTIONS(3721), 1, + anon_sym_LPAREN2, + STATE(134), 1, sym_compound_statement, - STATE(1292), 1, + STATE(922), 1, + sym__old_style_parameter_list, + STATE(1242), 1, sym_parameter_list, - STATE(1330), 2, + STATE(1280), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [56232] = 5, + [56244] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3752), 1, - sym_identifier, - ACTIONS(3754), 1, - sym_system_lib_string, - STATE(1890), 2, - sym_preproc_call_expression, - sym_string_literal, - ACTIONS(3736), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [56253] = 5, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(432), 1, + anon_sym_LBRACE, + ACTIONS(3582), 1, + anon_sym_LBRACK, + ACTIONS(3721), 1, + anon_sym_LPAREN2, + STATE(279), 1, + sym_compound_statement, + STATE(922), 1, + sym__old_style_parameter_list, + STATE(1242), 1, + sym_parameter_list, + STATE(1280), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [56273] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3758), 1, + ACTIONS(3580), 1, + anon_sym_LPAREN2, + ACTIONS(3693), 1, anon_sym_LBRACK, - STATE(1307), 2, + STATE(1391), 1, + sym_parameter_list, + STATE(1341), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3756), 5, + ACTIONS(3771), 3, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, - [56274] = 8, + [56298] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(376), 1, anon_sym_LBRACE, - ACTIONS(3565), 1, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(3567), 1, + ACTIONS(3582), 1, anon_sym_LBRACK, - STATE(345), 1, + ACTIONS(3723), 1, + anon_sym_EQ, + STATE(265), 1, sym_compound_statement, - STATE(1291), 1, + STATE(1244), 1, sym_parameter_list, - STATE(1330), 2, + STATE(1280), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [56300] = 6, + [56327] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3760), 1, - sym_identifier, - ACTIONS(3765), 1, - aux_sym_preproc_elif_token1, - STATE(1399), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1894), 1, - sym_enumerator, - ACTIONS(3763), 4, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - [56322] = 8, + ACTIONS(3733), 1, + anon_sym_LBRACK, + ACTIONS(3731), 4, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(3773), 4, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_asm, + anon_sym___asm__, + [56346] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(41), 1, anon_sym_LBRACE, - ACTIONS(3565), 1, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(3567), 1, + ACTIONS(3582), 1, anon_sym_LBRACK, - STATE(411), 1, + STATE(365), 1, sym_compound_statement, - STATE(1291), 1, + STATE(1242), 1, sym_parameter_list, - STATE(1330), 2, + STATE(1280), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [56348] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3714), 1, - anon_sym_LBRACK, - STATE(1591), 1, - sym_gnu_asm_input_operand, - STATE(1829), 1, - sym_string_literal, - ACTIONS(97), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [56368] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3724), 1, - anon_sym_LBRACK, - STATE(1599), 1, - sym_gnu_asm_output_operand, - STATE(1863), 1, - sym_string_literal, - ACTIONS(97), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [56388] = 3, + [56372] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3769), 1, + ACTIONS(3777), 1, anon_sym_LBRACK, - ACTIONS(3767), 7, + ACTIONS(3775), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -110418,83 +104999,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [56404] = 8, + [56388] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(432), 1, + ACTIONS(131), 1, anon_sym_LBRACE, - ACTIONS(3565), 1, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(3567), 1, + ACTIONS(3582), 1, anon_sym_LBRACK, - STATE(337), 1, + STATE(134), 1, sym_compound_statement, - STATE(1291), 1, + STATE(1242), 1, sym_parameter_list, - STATE(1330), 2, + STATE(1280), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [56430] = 7, + [56414] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3565), 1, + ACTIONS(376), 1, + anon_sym_LBRACE, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(3567), 1, + ACTIONS(3582), 1, anon_sym_LBRACK, - STATE(1291), 1, + STATE(287), 1, + sym_compound_statement, + STATE(1242), 1, sym_parameter_list, - ACTIONS(3771), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1330), 2, + STATE(1280), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [56454] = 8, + [56440] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3781), 1, + anon_sym_LBRACK, + ACTIONS(3779), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [56456] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3785), 1, + anon_sym_LBRACK, + ACTIONS(3783), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [56472] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3787), 1, + sym_identifier, + ACTIONS(3792), 1, + aux_sym_preproc_elif_token1, + STATE(1354), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + ACTIONS(3790), 4, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + [56492] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(131), 1, + ACTIONS(41), 1, anon_sym_LBRACE, - ACTIONS(3565), 1, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(3567), 1, + ACTIONS(3582), 1, anon_sym_LBRACK, - STATE(131), 1, + STATE(355), 1, sym_compound_statement, - STATE(1292), 1, + STATE(1244), 1, sym_parameter_list, - STATE(1330), 2, + STATE(1280), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [56480] = 8, + [56518] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(41), 1, + ACTIONS(376), 1, anon_sym_LBRACE, - ACTIONS(3565), 1, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(3567), 1, + ACTIONS(3582), 1, anon_sym_LBRACK, - STATE(407), 1, + STATE(304), 1, sym_compound_statement, - STATE(1292), 1, + STATE(1244), 1, sym_parameter_list, - STATE(1330), 2, + STATE(1280), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [56506] = 3, + [56544] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3775), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3773), 7, + ACTIONS(3794), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -110502,43 +105125,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [56522] = 8, + [56560] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(432), 1, + ACTIONS(131), 1, anon_sym_LBRACE, - ACTIONS(3565), 1, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(3567), 1, + ACTIONS(3582), 1, anon_sym_LBRACK, - STATE(327), 1, + STATE(127), 1, sym_compound_statement, - STATE(1291), 1, + STATE(1242), 1, sym_parameter_list, - STATE(1330), 2, + STATE(1280), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [56548] = 3, + [56586] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3779), 1, + ACTIONS(3743), 1, anon_sym_LBRACK, - ACTIONS(3777), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [56564] = 3, + STATE(1583), 1, + sym_gnu_asm_input_operand, + STATE(1824), 1, + sym_string_literal, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [56606] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3798), 1, + sym_identifier, + ACTIONS(3803), 1, + aux_sym_preproc_elif_token1, + STATE(1360), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1758), 1, + sym_enumerator, + ACTIONS(3801), 4, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + [56628] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3783), 1, + ACTIONS(3807), 1, anon_sym_LBRACK, - ACTIONS(3781), 7, + ACTIONS(3805), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -110546,48 +105187,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [56580] = 8, + [56644] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(131), 1, + ACTIONS(432), 1, anon_sym_LBRACE, - ACTIONS(3565), 1, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(3567), 1, + ACTIONS(3582), 1, anon_sym_LBRACK, - STATE(142), 1, + STATE(279), 1, sym_compound_statement, - STATE(1291), 1, + STATE(1242), 1, sym_parameter_list, - STATE(1330), 2, + STATE(1280), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [56606] = 8, + [56670] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(376), 1, - anon_sym_LBRACE, - ACTIONS(3565), 1, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(3567), 1, + ACTIONS(3582), 1, anon_sym_LBRACK, - STATE(321), 1, - sym_compound_statement, - STATE(1291), 1, + STATE(1242), 1, sym_parameter_list, - STATE(1330), 2, + ACTIONS(3809), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1280), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [56632] = 3, + [56694] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3787), 1, + ACTIONS(3813), 1, anon_sym_LBRACK, - ACTIONS(3785), 7, + ACTIONS(3811), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -110595,43 +105235,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [56648] = 3, + [56710] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3791), 1, - anon_sym_LBRACK, - ACTIONS(3789), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [56664] = 8, + ACTIONS(432), 1, + anon_sym_LBRACE, + ACTIONS(3580), 1, + anon_sym_LPAREN2, + ACTIONS(3582), 1, + anon_sym_LBRACK, + STATE(298), 1, + sym_compound_statement, + STATE(1242), 1, + sym_parameter_list, + STATE(1280), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [56736] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(131), 1, + ACTIONS(376), 1, anon_sym_LBRACE, - ACTIONS(3565), 1, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(3567), 1, + ACTIONS(3582), 1, anon_sym_LBRACK, - STATE(155), 1, + STATE(307), 1, sym_compound_statement, - STATE(1291), 1, + STATE(1242), 1, sym_parameter_list, - STATE(1330), 2, + STATE(1280), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [56690] = 3, + [56762] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3795), 1, + ACTIONS(3817), 1, anon_sym_LBRACK, - ACTIONS(3793), 7, + ACTIONS(3815), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -110639,30 +105284,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [56706] = 8, + [56778] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(432), 1, - anon_sym_LBRACE, - ACTIONS(3565), 1, - anon_sym_LPAREN2, - ACTIONS(3567), 1, + ACTIONS(3697), 1, anon_sym_LBRACK, - STATE(317), 1, - sym_compound_statement, - STATE(1292), 1, - sym_parameter_list, - STATE(1330), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [56732] = 3, + STATE(1576), 1, + sym_gnu_asm_output_operand, + STATE(1830), 1, + sym_string_literal, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [56798] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3799), 1, + ACTIONS(3821), 1, anon_sym_LBRACK, - ACTIONS(3797), 7, + ACTIONS(3819), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -110670,12 +105312,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [56748] = 3, + [56814] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3803), 1, + ACTIONS(3825), 1, anon_sym_LBRACK, - ACTIONS(3801), 7, + ACTIONS(3823), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -110683,253 +105325,211 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [56764] = 4, + [56830] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3807), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(131), 1, + anon_sym_LBRACE, + ACTIONS(3580), 1, + anon_sym_LPAREN2, + ACTIONS(3582), 1, + anon_sym_LBRACK, + STATE(128), 1, + sym_compound_statement, + STATE(1244), 1, + sym_parameter_list, + STATE(1280), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [56856] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3829), 1, aux_sym_preproc_elif_token1, - ACTIONS(3809), 1, + ACTIONS(3831), 1, anon_sym_EQ, - ACTIONS(3805), 6, + ACTIONS(3827), 6, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, sym_identifier, - [56782] = 8, + [56874] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(376), 1, + ACTIONS(432), 1, anon_sym_LBRACE, - ACTIONS(3565), 1, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(3567), 1, + ACTIONS(3582), 1, anon_sym_LBRACK, - STATE(324), 1, + STATE(277), 1, sym_compound_statement, - STATE(1292), 1, + STATE(1244), 1, sym_parameter_list, - STATE(1330), 2, + STATE(1280), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [56808] = 8, + [56900] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(41), 1, anon_sym_LBRACE, - ACTIONS(3565), 1, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(3567), 1, + ACTIONS(3582), 1, anon_sym_LBRACK, - STATE(410), 1, + STATE(367), 1, sym_compound_statement, - STATE(1291), 1, + STATE(1242), 1, sym_parameter_list, - STATE(1330), 2, + STATE(1280), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [56834] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3811), 1, - sym_identifier, - ACTIONS(3816), 1, - aux_sym_preproc_elif_token1, - STATE(1424), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - ACTIONS(3814), 4, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - [56854] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(2397), 1, - anon_sym_LBRACE, - ACTIONS(3818), 1, - sym_identifier, - STATE(783), 1, - sym_field_declaration_list, - STATE(1487), 1, - sym_attribute_specifier, - STATE(1585), 1, - sym_ms_declspec_modifier, - [56879] = 5, + [56926] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1854), 1, + ACTIONS(3835), 1, anon_sym_LBRACK, - ACTIONS(3820), 1, - anon_sym_EQ, - ACTIONS(3822), 1, - anon_sym_DOT, - STATE(1440), 4, - sym_subscript_designator, - sym_subscript_range_designator, - sym_field_designator, - aux_sym_initializer_pair_repeat1, - [56898] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3565), 1, + ACTIONS(3833), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3567), 1, - anon_sym_LBRACK, - ACTIONS(3706), 1, - anon_sym_EQ, - STATE(1292), 1, - sym_parameter_list, - STATE(1330), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [56921] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - ACTIONS(3565), 1, - anon_sym_LPAREN2, - ACTIONS(3597), 1, - anon_sym_LBRACK, - ACTIONS(3824), 1, - anon_sym_RPAREN, - STATE(1417), 1, - sym_parameter_list, - STATE(1378), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [56944] = 7, + [56941] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3565), 1, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(3567), 1, + ACTIONS(3693), 1, anon_sym_LBRACK, - ACTIONS(3826), 1, + ACTIONS(3837), 1, anon_sym_RPAREN, - STATE(1291), 1, + STATE(1391), 1, sym_parameter_list, - STATE(1330), 2, + STATE(1341), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [56967] = 7, + [56964] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3565), 1, - anon_sym_LPAREN2, - ACTIONS(3597), 1, + ACTIONS(3841), 1, anon_sym_LBRACK, - ACTIONS(3828), 1, + ACTIONS(3839), 6, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(1417), 1, - sym_parameter_list, - STATE(1378), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [56990] = 4, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [56979] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3487), 1, + ACTIONS(3845), 1, anon_sym___attribute__, - STATE(1443), 2, + STATE(1378), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - ACTIONS(3830), 4, + ACTIONS(3843), 4, anon_sym_COMMA, anon_sym_SEMI, anon_sym_asm, anon_sym___asm__, - [57007] = 3, + [56996] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3834), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3832), 6, + ACTIONS(3848), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [57022] = 7, + [57011] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3565), 1, - anon_sym_LPAREN2, - ACTIONS(3690), 1, + ACTIONS(3854), 1, anon_sym_LBRACK, - ACTIONS(3836), 1, + ACTIONS(3852), 6, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(1447), 1, - sym_parameter_list, - STATE(1397), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [57045] = 7, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [57026] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3565), 1, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(3567), 1, + ACTIONS(3582), 1, anon_sym_LBRACK, - ACTIONS(3838), 1, + ACTIONS(3856), 1, anon_sym_RPAREN, - STATE(1291), 1, + STATE(1242), 1, sym_parameter_list, - STATE(1330), 2, + STATE(1280), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [57068] = 3, + [57049] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3842), 1, + ACTIONS(3860), 1, anon_sym_LBRACK, - ACTIONS(3840), 6, + ACTIONS(3858), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [57083] = 3, + [57064] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3846), 1, + ACTIONS(3864), 1, anon_sym_LBRACK, - ACTIONS(3844), 6, + ACTIONS(3862), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, + [57079] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3866), 1, + anon_sym_LBRACK, + ACTIONS(3869), 1, + anon_sym_EQ, + ACTIONS(3871), 1, + anon_sym_DOT, + STATE(1384), 4, + sym_subscript_designator, + sym_subscript_range_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, [57098] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3850), 1, + ACTIONS(3876), 1, anon_sym_LBRACK, - ACTIONS(3848), 6, + ACTIONS(3874), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -110941,284 +105541,311 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3565), 1, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(3690), 1, + ACTIONS(3582), 1, anon_sym_LBRACK, - ACTIONS(3852), 1, + ACTIONS(3878), 1, anon_sym_RPAREN, - STATE(1447), 1, + STATE(1242), 1, sym_parameter_list, - STATE(1397), 2, + STATE(1280), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [57136] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3856), 1, - anon_sym_LBRACK, - ACTIONS(3854), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [57151] = 5, + [57136] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3858), 1, + ACTIONS(1903), 1, anon_sym_LBRACK, - ACTIONS(3861), 1, + ACTIONS(3880), 1, anon_sym_EQ, - ACTIONS(3863), 1, + ACTIONS(3882), 1, anon_sym_DOT, - STATE(1440), 4, + STATE(1384), 4, sym_subscript_designator, sym_subscript_range_designator, sym_field_designator, aux_sym_initializer_pair_repeat1, - [57170] = 4, + [57155] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3868), 1, + ACTIONS(3886), 1, anon_sym_COMMA, - ACTIONS(3870), 1, + ACTIONS(3888), 1, aux_sym_preproc_elif_token1, - ACTIONS(3866), 5, + ACTIONS(3884), 5, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, sym_identifier, - [57187] = 3, + [57172] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3874), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3580), 1, + anon_sym_LPAREN2, + ACTIONS(3693), 1, anon_sym_LBRACK, - ACTIONS(3872), 6, - anon_sym_COMMA, + ACTIONS(3890), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [57202] = 4, + STATE(1391), 1, + sym_parameter_list, + STATE(1341), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [57195] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3878), 1, + ACTIONS(3504), 1, anon_sym___attribute__, - STATE(1443), 2, + STATE(1378), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - ACTIONS(3876), 4, + ACTIONS(3892), 4, anon_sym_COMMA, anon_sym_SEMI, anon_sym_asm, anon_sym___asm__, - [57219] = 3, + [57212] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3883), 1, + ACTIONS(3896), 1, anon_sym_LBRACK, - ACTIONS(3881), 6, + ACTIONS(3894), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [57234] = 3, + [57227] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3887), 1, + ACTIONS(3900), 1, anon_sym_LBRACK, - ACTIONS(3885), 6, + ACTIONS(3898), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [57249] = 3, + [57242] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3891), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3580), 1, + anon_sym_LPAREN2, + ACTIONS(3612), 1, anon_sym_LBRACK, - ACTIONS(3889), 6, - anon_sym_COMMA, + ACTIONS(3902), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, + STATE(1352), 1, + sym_parameter_list, + STATE(1313), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [57265] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - [57264] = 3, + ACTIONS(3580), 1, + anon_sym_LPAREN2, + ACTIONS(3612), 1, + anon_sym_LBRACK, + ACTIONS(3904), 1, + anon_sym_RPAREN, + STATE(1352), 1, + sym_parameter_list, + STATE(1313), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [57288] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3895), 1, + ACTIONS(3908), 1, anon_sym_LBRACK, - ACTIONS(3893), 6, + ACTIONS(3906), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [57279] = 4, + [57303] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3487), 1, + ACTIONS(33), 1, anon_sym___attribute__, - STATE(1443), 2, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(2412), 1, + anon_sym_LBRACE, + ACTIONS(3910), 1, + sym_identifier, + STATE(728), 1, + sym_field_declaration_list, + STATE(1449), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(3546), 4, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_asm, - anon_sym___asm__, - [57296] = 5, + STATE(1582), 1, + sym_ms_declspec_modifier, + [57328] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3565), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(3899), 1, + ACTIONS(3582), 1, anon_sym_LBRACK, - STATE(1505), 1, + ACTIONS(3723), 1, + anon_sym_EQ, + STATE(1244), 1, sym_parameter_list, - ACTIONS(3897), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [57314] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(1969), 1, - sym_string_literal, - ACTIONS(97), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [57328] = 3, + STATE(1280), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [57351] = 4, ACTIONS(3), 1, sym_comment, - STATE(1940), 1, - sym_string_literal, - ACTIONS(97), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [57342] = 3, + ACTIONS(3504), 1, + anon_sym___attribute__, + STATE(1378), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(3527), 4, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_asm, + anon_sym___asm__, + [57368] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3901), 2, + ACTIONS(3912), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(3903), 4, + ACTIONS(3914), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [57356] = 3, + [57382] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3765), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3763), 5, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_identifier, - [57370] = 3, + ACTIONS(3916), 1, + anon_sym_COMMA, + ACTIONS(3918), 1, + anon_sym_SEMI, + STATE(1554), 1, + aux_sym_declaration_repeat1, + STATE(1555), 1, + sym_gnu_asm_expression, + ACTIONS(3920), 2, + anon_sym_asm, + anon_sym___asm__, + [57402] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3905), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(3907), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [57384] = 3, + ACTIONS(3916), 1, + anon_sym_COMMA, + ACTIONS(3922), 1, + anon_sym_SEMI, + STATE(1617), 1, + sym_gnu_asm_expression, + STATE(1619), 1, + aux_sym_declaration_repeat1, + ACTIONS(3920), 2, + anon_sym_asm, + anon_sym___asm__, + [57422] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3905), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(3907), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [57398] = 3, + ACTIONS(3580), 1, + anon_sym_LPAREN2, + ACTIONS(3926), 1, + anon_sym_LBRACK, + STATE(1452), 1, + sym_parameter_list, + ACTIONS(3924), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [57440] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3909), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(3911), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [57412] = 3, + ACTIONS(3928), 1, + anon_sym_LPAREN2, + STATE(1417), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(3930), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [57456] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(1937), 1, + sym_string_literal, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [57470] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3913), 2, + ACTIONS(3932), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(3915), 4, + ACTIONS(3934), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [57426] = 6, + [57484] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3917), 1, - anon_sym_COMMA, - ACTIONS(3919), 1, - anon_sym_SEMI, - STATE(1683), 1, - aux_sym_declaration_repeat1, - STATE(1685), 1, - sym_gnu_asm_expression, - ACTIONS(3921), 2, - anon_sym_asm, - anon_sym___asm__, - [57446] = 3, + STATE(616), 1, + sym_string_literal, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [57498] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3923), 2, + ACTIONS(3936), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(3925), 4, + ACTIONS(3938), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [57460] = 4, + [57512] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3927), 1, + ACTIONS(3940), 1, anon_sym_LPAREN2, - STATE(1477), 2, + STATE(1408), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(3929), 3, + ACTIONS(3942), 3, anon_sym_inline, anon_sym_volatile, anon_sym_goto, - [57476] = 3, + [57528] = 3, ACTIONS(3), 1, sym_comment, - STATE(670), 1, + STATE(1909), 1, sym_string_literal, ACTIONS(97), 5, anon_sym_L_DQUOTE, @@ -111226,5641 +105853,5661 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [57490] = 4, + [57542] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3931), 1, - anon_sym_LPAREN2, - STATE(1462), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(3933), 3, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [57506] = 3, + ACTIONS(3916), 1, + anon_sym_COMMA, + ACTIONS(3945), 1, + anon_sym_SEMI, + STATE(1611), 1, + sym_gnu_asm_expression, + STATE(1612), 1, + aux_sym_declaration_repeat1, + ACTIONS(3920), 2, + anon_sym_asm, + anon_sym___asm__, + [57562] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3936), 2, + ACTIONS(3947), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(3938), 4, + ACTIONS(3949), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [57520] = 6, + [57576] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3565), 1, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(3567), 1, + ACTIONS(3926), 1, anon_sym_LBRACK, - STATE(1292), 1, + STATE(1452), 1, sym_parameter_list, - STATE(1330), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [57540] = 5, + ACTIONS(3951), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [57594] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3565), 1, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(3899), 1, + ACTIONS(3926), 1, anon_sym_LBRACK, - STATE(1505), 1, + STATE(1452), 1, sym_parameter_list, - ACTIONS(3940), 3, + ACTIONS(3953), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [57558] = 3, + [57612] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3942), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(3944), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [57572] = 3, + ACTIONS(3580), 1, + anon_sym_LPAREN2, + ACTIONS(3926), 1, + anon_sym_LBRACK, + STATE(1452), 1, + sym_parameter_list, + ACTIONS(3955), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [57630] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3644), 2, + ACTIONS(3957), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(3946), 4, + ACTIONS(3959), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [57586] = 3, + [57644] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3948), 2, + ACTIONS(3961), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(3950), 4, + ACTIONS(3963), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [57600] = 5, + [57658] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3565), 1, + ACTIONS(3965), 1, anon_sym_LPAREN2, - ACTIONS(3899), 1, - anon_sym_LBRACK, - STATE(1505), 1, - sym_parameter_list, - ACTIONS(3952), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [57618] = 6, + STATE(1408), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(3930), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [57674] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3917), 1, + ACTIONS(3916), 1, anon_sym_COMMA, - ACTIONS(3954), 1, + ACTIONS(3967), 1, anon_sym_SEMI, - STATE(1647), 1, - aux_sym_declaration_repeat1, - STATE(1669), 1, + STATE(1613), 1, sym_gnu_asm_expression, - ACTIONS(3921), 2, + STATE(1615), 1, + aux_sym_declaration_repeat1, + ACTIONS(3920), 2, anon_sym_asm, anon_sym___asm__, - [57638] = 6, + [57694] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3917), 1, + ACTIONS(3580), 1, + anon_sym_LPAREN2, + ACTIONS(3926), 1, + anon_sym_LBRACK, + STATE(1452), 1, + sym_parameter_list, + ACTIONS(3969), 3, anon_sym_COMMA, - ACTIONS(3956), 1, - anon_sym_SEMI, - STATE(1626), 1, - aux_sym_declaration_repeat1, - STATE(1627), 1, - sym_gnu_asm_expression, - ACTIONS(3921), 2, - anon_sym_asm, - anon_sym___asm__, - [57658] = 3, + anon_sym_RPAREN, + anon_sym_COLON, + [57712] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3948), 2, + ACTIONS(3912), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(3950), 4, + ACTIONS(3914), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [57672] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3565), 1, - anon_sym_LPAREN2, - ACTIONS(3899), 1, - anon_sym_LBRACK, - STATE(1505), 1, - sym_parameter_list, - ACTIONS(3958), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [57690] = 6, + [57726] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3917), 1, + ACTIONS(3916), 1, anon_sym_COMMA, - ACTIONS(3960), 1, + ACTIONS(3971), 1, anon_sym_SEMI, - STATE(1631), 1, + STATE(1521), 1, aux_sym_declaration_repeat1, - STATE(1632), 1, + STATE(1551), 1, sym_gnu_asm_expression, - ACTIONS(3921), 2, + ACTIONS(3920), 2, anon_sym_asm, anon_sym___asm__, - [57710] = 5, + [57746] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3565), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(3899), 1, + ACTIONS(3582), 1, anon_sym_LBRACK, - STATE(1505), 1, + STATE(1244), 1, sym_parameter_list, - ACTIONS(3962), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [57728] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3917), 1, - anon_sym_COMMA, - ACTIONS(3964), 1, - anon_sym_SEMI, - STATE(1571), 1, - sym_gnu_asm_expression, - STATE(1661), 1, - aux_sym_declaration_repeat1, - ACTIONS(3921), 2, - anon_sym_asm, - anon_sym___asm__, - [57748] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3966), 1, - anon_sym_LPAREN2, - STATE(1462), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(3929), 3, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [57764] = 6, + STATE(1280), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [57766] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3917), 1, + ACTIONS(3916), 1, anon_sym_COMMA, - ACTIONS(3968), 1, + ACTIONS(3973), 1, anon_sym_SEMI, - STATE(1642), 1, + STATE(1546), 1, aux_sym_declaration_repeat1, - STATE(1643), 1, + STATE(1549), 1, sym_gnu_asm_expression, - ACTIONS(3921), 2, + ACTIONS(3920), 2, anon_sym_asm, anon_sym___asm__, - [57784] = 6, + [57786] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3917), 1, + ACTIONS(3916), 1, anon_sym_COMMA, - ACTIONS(3970), 1, + ACTIONS(3975), 1, anon_sym_SEMI, - STATE(1646), 1, + STATE(1547), 1, aux_sym_declaration_repeat1, - STATE(1648), 1, + STATE(1591), 1, sym_gnu_asm_expression, - ACTIONS(3921), 2, + ACTIONS(3920), 2, anon_sym_asm, anon_sym___asm__, - [57804] = 5, + [57806] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3565), 1, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(3899), 1, + ACTIONS(3926), 1, anon_sym_LBRACK, - STATE(1505), 1, + STATE(1452), 1, sym_parameter_list, - ACTIONS(3972), 3, + ACTIONS(3977), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [57822] = 6, + [57824] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3640), 2, + anon_sym_RBRACE, + sym_identifier, + ACTIONS(3979), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [57838] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3917), 1, + ACTIONS(3916), 1, anon_sym_COMMA, - ACTIONS(3974), 1, + ACTIONS(3981), 1, anon_sym_SEMI, - STATE(1665), 1, + STATE(1563), 1, aux_sym_declaration_repeat1, - STATE(1666), 1, + STATE(1564), 1, sym_gnu_asm_expression, - ACTIONS(3921), 2, + ACTIONS(3920), 2, anon_sym_asm, anon_sym___asm__, - [57842] = 6, + [57858] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3917), 1, + ACTIONS(3916), 1, anon_sym_COMMA, - ACTIONS(3976), 1, + ACTIONS(3983), 1, anon_sym_SEMI, - STATE(1615), 1, + STATE(1597), 1, aux_sym_declaration_repeat1, - STATE(1616), 1, + STATE(1601), 1, sym_gnu_asm_expression, - ACTIONS(3921), 2, + ACTIONS(3920), 2, anon_sym_asm, anon_sym___asm__, - [57862] = 6, + [57878] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3917), 1, + ACTIONS(3916), 1, anon_sym_COMMA, - ACTIONS(3978), 1, + ACTIONS(3985), 1, anon_sym_SEMI, - STATE(1657), 1, + STATE(1593), 1, aux_sym_declaration_repeat1, - STATE(1658), 1, + STATE(1599), 1, sym_gnu_asm_expression, - ACTIONS(3921), 2, + ACTIONS(3920), 2, anon_sym_asm, anon_sym___asm__, - [57882] = 6, + [57898] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3917), 1, + ACTIONS(3580), 1, + anon_sym_LPAREN2, + ACTIONS(3926), 1, + anon_sym_LBRACK, + STATE(1452), 1, + sym_parameter_list, + ACTIONS(3987), 3, anon_sym_COMMA, - ACTIONS(3980), 1, - anon_sym_SEMI, - STATE(1688), 1, - sym_gnu_asm_expression, - STATE(1690), 1, - aux_sym_declaration_repeat1, - ACTIONS(3921), 2, - anon_sym_asm, - anon_sym___asm__, - [57902] = 6, + anon_sym_RPAREN, + anon_sym_COLON, + [57916] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3917), 1, + ACTIONS(3916), 1, anon_sym_COMMA, - ACTIONS(3982), 1, + ACTIONS(3989), 1, anon_sym_SEMI, - STATE(1613), 1, - sym_gnu_asm_expression, - STATE(1618), 1, + STATE(1568), 1, aux_sym_declaration_repeat1, - ACTIONS(3921), 2, + STATE(1569), 1, + sym_gnu_asm_expression, + ACTIONS(3920), 2, anon_sym_asm, anon_sym___asm__, - [57922] = 5, + [57936] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3565), 1, - anon_sym_LPAREN2, - ACTIONS(3899), 1, - anon_sym_LBRACK, - STATE(1505), 1, - sym_parameter_list, - ACTIONS(3984), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [57940] = 6, + ACTIONS(3991), 2, + anon_sym_RBRACE, + sym_identifier, + ACTIONS(3993), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [57950] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(2397), 1, - anon_sym_LBRACE, - ACTIONS(3986), 1, + ACTIONS(3803), 1, + aux_sym_preproc_elif_token1, + ACTIONS(3801), 5, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_identifier, - STATE(779), 1, - sym_field_declaration_list, - STATE(1606), 1, - sym_ms_declspec_modifier, - [57959] = 4, + [57964] = 6, ACTIONS(3), 1, sym_comment, - STATE(1775), 1, + ACTIONS(3916), 1, + anon_sym_COMMA, + ACTIONS(3995), 1, + anon_sym_SEMI, + STATE(1579), 1, + aux_sym_declaration_repeat1, + STATE(1580), 1, sym_gnu_asm_expression, - ACTIONS(3921), 2, + ACTIONS(3920), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(3988), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [57974] = 6, + [57984] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(2397), 1, - anon_sym_LBRACE, - ACTIONS(3990), 1, + ACTIONS(3932), 2, + anon_sym_RBRACE, sym_identifier, - STATE(775), 1, - sym_field_declaration_list, - STATE(1586), 1, - sym_ms_declspec_modifier, - [57993] = 2, + ACTIONS(3934), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [57998] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3997), 2, + anon_sym_RBRACE, + sym_identifier, + ACTIONS(3999), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [58012] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3992), 5, + ACTIONS(4001), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [58004] = 2, + [58023] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3994), 5, + ACTIONS(4003), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [58015] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3518), 1, - sym_identifier, - ACTIONS(3996), 1, - aux_sym_preproc_if_token2, - STATE(1441), 1, - sym_enumerator, - STATE(1556), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1559), 1, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - [58034] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2337), 1, - anon_sym_LPAREN2, - ACTIONS(4000), 1, - anon_sym_COLON_COLON, - STATE(1734), 1, - sym_argument_list, - ACTIONS(3998), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [58051] = 2, + [58034] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4002), 5, + ACTIONS(4005), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [58062] = 2, + [58045] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4004), 5, + ACTIONS(4007), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [58073] = 2, + [58056] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(1690), 1, + sym_gnu_asm_expression, + ACTIONS(3920), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(4009), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [58071] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4006), 5, + ACTIONS(4011), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [58084] = 2, + [58082] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4008), 5, + ACTIONS(4013), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [58095] = 2, + [58093] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(2412), 1, + anon_sym_LBRACE, + ACTIONS(4015), 1, + sym_identifier, + STATE(722), 1, + sym_field_declaration_list, + STATE(1524), 1, + sym_ms_declspec_modifier, + [58112] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4010), 5, + ACTIONS(4017), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [58106] = 2, + [58123] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4012), 5, + ACTIONS(4019), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [58117] = 2, + [58134] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4014), 5, + ACTIONS(4021), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [58128] = 2, + [58145] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4016), 5, + ACTIONS(4023), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [58139] = 5, + [58156] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3565), 1, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(2412), 1, + anon_sym_LBRACE, + ACTIONS(4025), 1, + sym_identifier, + STATE(718), 1, + sym_field_declaration_list, + STATE(1622), 1, + sym_ms_declspec_modifier, + [58175] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3551), 1, + sym_identifier, + ACTIONS(4027), 1, + aux_sym_preproc_if_token2, + STATE(1388), 1, + sym_enumerator, + STATE(1492), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1493), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + [58194] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2352), 1, anon_sym_LPAREN2, - ACTIONS(3899), 1, - anon_sym_LBRACK, - STATE(1505), 1, - sym_parameter_list, - ACTIONS(3771), 2, + ACTIONS(4031), 1, + anon_sym_COLON_COLON, + STATE(1682), 1, + sym_argument_list, + ACTIONS(4029), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [58156] = 2, + anon_sym_RBRACK_RBRACK, + [58211] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4018), 5, + ACTIONS(4033), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [58167] = 4, + [58222] = 4, ACTIONS(3), 1, sym_comment, - STATE(1747), 1, + STATE(1704), 1, sym_gnu_asm_expression, - ACTIONS(3921), 2, + ACTIONS(3920), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(4020), 2, + ACTIONS(4035), 2, anon_sym_COMMA, anon_sym_SEMI, - [58182] = 2, + [58237] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4022), 5, + ACTIONS(4037), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [58193] = 2, + [58248] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4024), 5, + ACTIONS(4039), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [58204] = 5, - ACTIONS(3294), 1, - sym_comment, - ACTIONS(4026), 1, - aux_sym_preproc_include_token2, - ACTIONS(4028), 1, - anon_sym_LPAREN, - ACTIONS(4030), 1, - sym_preproc_arg, - STATE(1756), 1, - sym_preproc_params, - [58220] = 4, + [58259] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3593), 1, + ACTIONS(3580), 1, + anon_sym_LPAREN2, + ACTIONS(3926), 1, + anon_sym_LBRACK, + STATE(1452), 1, + sym_parameter_list, + ACTIONS(3809), 2, anon_sym_COMMA, - STATE(1538), 1, - aux_sym__field_declaration_declarator_repeat1, - ACTIONS(4032), 2, - anon_sym_SEMI, - anon_sym___attribute__, - [58234] = 5, - ACTIONS(3294), 1, - sym_comment, - ACTIONS(4028), 1, - anon_sym_LPAREN, - ACTIONS(4034), 1, - aux_sym_preproc_include_token2, - ACTIONS(4036), 1, - sym_preproc_arg, - STATE(1776), 1, - sym_preproc_params, - [58250] = 5, + anon_sym_RPAREN, + [58276] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3583), 1, - sym_identifier, - ACTIONS(3996), 1, - aux_sym_preproc_if_token2, - STATE(1556), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1894), 1, - sym_enumerator, - [58266] = 4, + ACTIONS(3504), 1, + anon_sym___attribute__, + ACTIONS(4041), 1, + anon_sym_SEMI, + STATE(1378), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [58290] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4038), 1, - anon_sym_COMMA, - STATE(1569), 1, - aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(4040), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [58280] = 5, - ACTIONS(3294), 1, - sym_comment, - ACTIONS(4042), 1, - anon_sym_DQUOTE, - ACTIONS(4044), 1, - aux_sym_string_literal_token1, - ACTIONS(4046), 1, - sym_escape_sequence, - STATE(1535), 1, - aux_sym_string_literal_repeat1, - [58296] = 4, + ACTIONS(4043), 4, + anon_sym_LPAREN2, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [58300] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4048), 1, + ACTIONS(4045), 1, anon_sym___except, - ACTIONS(4050), 1, + ACTIONS(4047), 1, anon_sym___finally, - STATE(110), 2, + STATE(150), 2, sym_seh_except_clause, sym_seh_finally_clause, - [58310] = 4, + [58314] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3487), 1, + ACTIONS(3504), 1, anon_sym___attribute__, - ACTIONS(4052), 1, + ACTIONS(4049), 1, anon_sym_SEMI, - STATE(1443), 2, + STATE(1378), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [58324] = 4, - ACTIONS(3294), 1, - sym_comment, - ACTIONS(4054), 1, - anon_sym_SQUOTE, - STATE(1546), 1, - aux_sym_char_literal_repeat1, - ACTIONS(4056), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [58338] = 4, + [58328] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3487), 1, + ACTIONS(3504), 1, anon_sym___attribute__, - ACTIONS(4058), 1, + ACTIONS(4051), 1, anon_sym_SEMI, - STATE(1561), 2, + STATE(1465), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [58352] = 4, + [58342] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4060), 1, - anon_sym___except, - ACTIONS(4062), 1, - anon_sym___finally, - STATE(229), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [58366] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3487), 1, + ACTIONS(3504), 1, anon_sym___attribute__, - ACTIONS(4064), 1, + ACTIONS(4053), 1, anon_sym_SEMI, - STATE(1543), 2, + STATE(1487), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [58380] = 4, + [58356] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3487), 1, - anon_sym___attribute__, - ACTIONS(4066), 1, + ACTIONS(3608), 1, + anon_sym_COMMA, + STATE(1512), 1, + aux_sym__field_declaration_declarator_repeat1, + ACTIONS(4055), 2, anon_sym_SEMI, - STATE(1443), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [58394] = 5, - ACTIONS(3294), 1, - sym_comment, - ACTIONS(4028), 1, - anon_sym_LPAREN, - ACTIONS(4068), 1, - aux_sym_preproc_include_token2, - ACTIONS(4070), 1, - sym_preproc_arg, - STATE(1765), 1, - sym_preproc_params, - [58410] = 4, + anon_sym___attribute__, + [58370] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4072), 1, + ACTIONS(4057), 1, anon_sym_COMMA, - STATE(1570), 1, - aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(4074), 2, + STATE(1464), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(4060), 2, anon_sym_RPAREN, anon_sym_COLON, - [58424] = 5, - ACTIONS(3294), 1, + [58384] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4028), 1, - anon_sym_LPAREN, - ACTIONS(4076), 1, - aux_sym_preproc_include_token2, - ACTIONS(4078), 1, - sym_preproc_arg, - STATE(1763), 1, - sym_preproc_params, - [58440] = 2, + ACTIONS(3504), 1, + anon_sym___attribute__, + ACTIONS(4062), 1, + anon_sym_SEMI, + STATE(1378), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [58398] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4080), 4, + ACTIONS(2352), 1, anon_sym_LPAREN2, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [58450] = 2, + STATE(1652), 1, + sym_argument_list, + ACTIONS(4064), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [58412] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4082), 4, + ACTIONS(3608), 1, anon_sym_COMMA, + STATE(1515), 1, + aux_sym__field_declaration_declarator_repeat1, + ACTIONS(4066), 2, anon_sym_SEMI, - anon_sym_asm, - anon_sym___asm__, - [58460] = 4, + anon_sym___attribute__, + [58426] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4068), 1, + anon_sym_COMMA, + STATE(1468), 1, + aux_sym__type_definition_declarators_repeat1, + ACTIONS(4071), 2, + anon_sym_SEMI, + anon_sym___attribute__, + [58440] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3487), 1, + ACTIONS(3504), 1, anon_sym___attribute__, - ACTIONS(4084), 1, + ACTIONS(4073), 1, anon_sym_SEMI, - STATE(1519), 2, + STATE(1494), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [58474] = 4, + [58454] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3518), 1, - sym_identifier, - ACTIONS(4086), 1, - aux_sym_preproc_if_token2, - STATE(1559), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - [58488] = 5, - ACTIONS(3294), 1, + ACTIONS(3504), 1, + anon_sym___attribute__, + ACTIONS(4075), 1, + anon_sym_SEMI, + STATE(1378), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [58468] = 5, + ACTIONS(3317), 1, sym_comment, - ACTIONS(4044), 1, + ACTIONS(4077), 1, + anon_sym_DQUOTE, + ACTIONS(4079), 1, aux_sym_string_literal_token1, - ACTIONS(4046), 1, + ACTIONS(4081), 1, sym_escape_sequence, - ACTIONS(4088), 1, - anon_sym_DQUOTE, - STATE(1535), 1, + STATE(1510), 1, aux_sym_string_literal_repeat1, - [58504] = 4, + [58484] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4090), 1, - anon_sym_COMMA, - STATE(1554), 1, - aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(4092), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [58518] = 4, - ACTIONS(3294), 1, + ACTIONS(3504), 1, + anon_sym___attribute__, + ACTIONS(4083), 1, + anon_sym_SEMI, + STATE(1378), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [58498] = 5, + ACTIONS(3317), 1, sym_comment, - ACTIONS(4094), 1, - anon_sym_SQUOTE, - STATE(1546), 1, - aux_sym_char_literal_repeat1, - ACTIONS(4056), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [58532] = 4, + ACTIONS(4085), 1, + aux_sym_preproc_include_token2, + ACTIONS(4087), 1, + anon_sym_LPAREN, + ACTIONS(4089), 1, + sym_preproc_arg, + STATE(1714), 1, + sym_preproc_params, + [58514] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4090), 1, + ACTIONS(4091), 1, anon_sym_COMMA, - STATE(1528), 1, - aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(4096), 2, + STATE(1513), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(4093), 2, anon_sym_RPAREN, anon_sym_COLON, - [58546] = 4, + [58528] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3487), 1, + ACTIONS(3504), 1, anon_sym___attribute__, - ACTIONS(4098), 1, + ACTIONS(4095), 1, anon_sym_SEMI, - STATE(1443), 2, + STATE(1457), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [58560] = 5, - ACTIONS(3294), 1, - sym_comment, - ACTIONS(4028), 1, - anon_sym_LPAREN, - ACTIONS(4100), 1, - aux_sym_preproc_include_token2, - ACTIONS(4102), 1, - sym_preproc_arg, - STATE(1694), 1, - sym_preproc_params, - [58576] = 4, + [58542] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4104), 1, - anon_sym_COMMA, - STATE(1533), 1, - aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(4107), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [58590] = 5, + ACTIONS(4097), 1, + anon_sym___except, + ACTIONS(4099), 1, + anon_sym___finally, + STATE(226), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [58556] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3565), 1, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(3899), 1, + ACTIONS(3926), 1, anon_sym_LBRACK, - ACTIONS(4109), 1, + ACTIONS(4101), 1, anon_sym_RPAREN, - STATE(1505), 1, + STATE(1452), 1, sym_parameter_list, - [58606] = 5, - ACTIONS(3294), 1, - sym_comment, - ACTIONS(4111), 1, - anon_sym_DQUOTE, - ACTIONS(4113), 1, - aux_sym_string_literal_token1, - ACTIONS(4116), 1, - sym_escape_sequence, - STATE(1535), 1, - aux_sym_string_literal_repeat1, - [58622] = 5, - ACTIONS(3294), 1, - sym_comment, - ACTIONS(4119), 1, - anon_sym_DQUOTE, - ACTIONS(4121), 1, - aux_sym_string_literal_token1, - ACTIONS(4123), 1, - sym_escape_sequence, - STATE(1527), 1, - aux_sym_string_literal_repeat1, - [58638] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4038), 1, - anon_sym_COMMA, - STATE(1511), 1, - aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(4125), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [58652] = 4, + [58572] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4127), 1, + ACTIONS(3737), 1, anon_sym_COMMA, - STATE(1538), 1, - aux_sym__field_declaration_declarator_repeat1, - ACTIONS(4130), 2, + STATE(1468), 1, + aux_sym__type_definition_declarators_repeat1, + ACTIONS(4103), 2, anon_sym_SEMI, anon_sym___attribute__, - [58666] = 4, + [58586] = 5, + ACTIONS(3317), 1, + sym_comment, + ACTIONS(4087), 1, + anon_sym_LPAREN, + ACTIONS(4105), 1, + aux_sym_preproc_include_token2, + ACTIONS(4107), 1, + sym_preproc_arg, + STATE(1699), 1, + sym_preproc_params, + [58602] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3487), 1, - anon_sym___attribute__, - ACTIONS(4132), 1, - anon_sym_SEMI, - STATE(1548), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [58680] = 4, + ACTIONS(4109), 1, + anon_sym___except, + ACTIONS(4111), 1, + anon_sym___finally, + STATE(105), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [58616] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3487), 1, + ACTIONS(3504), 1, anon_sym___attribute__, - ACTIONS(4134), 1, + ACTIONS(4113), 1, anon_sym_SEMI, - STATE(1443), 2, + STATE(1460), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [58694] = 4, + [58630] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3487), 1, + ACTIONS(4115), 1, + anon_sym_COMMA, + STATE(1464), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(4117), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [58644] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3504), 1, anon_sym___attribute__, - ACTIONS(4136), 1, + ACTIONS(4119), 1, anon_sym_SEMI, - STATE(1531), 2, + STATE(1496), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [58708] = 5, + [58658] = 4, + ACTIONS(3317), 1, + sym_comment, + ACTIONS(4121), 1, + anon_sym_SQUOTE, + STATE(1484), 1, + aux_sym_char_literal_repeat1, + ACTIONS(4123), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [58672] = 5, + ACTIONS(3317), 1, + sym_comment, + ACTIONS(4126), 1, + anon_sym_DQUOTE, + ACTIONS(4128), 1, + aux_sym_string_literal_token1, + ACTIONS(4131), 1, + sym_escape_sequence, + STATE(1485), 1, + aux_sym_string_literal_repeat1, + [58688] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4138), 1, + ACTIONS(4134), 1, anon_sym_COMMA, - ACTIONS(4140), 1, + STATE(1486), 1, + aux_sym_gnu_asm_input_operand_list_repeat1, + ACTIONS(4137), 2, anon_sym_RPAREN, - STATE(1605), 1, - aux_sym_parameter_list_repeat1, - STATE(1654), 1, - aux_sym__old_style_parameter_list_repeat1, - [58724] = 4, + anon_sym_COLON, + [58702] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3487), 1, + ACTIONS(3504), 1, anon_sym___attribute__, - ACTIONS(4142), 1, + ACTIONS(4139), 1, anon_sym_SEMI, - STATE(1443), 2, + STATE(1378), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [58738] = 5, - ACTIONS(3294), 1, - sym_comment, - ACTIONS(4144), 1, - anon_sym_DQUOTE, - ACTIONS(4146), 1, - aux_sym_string_literal_token1, - ACTIONS(4148), 1, - sym_escape_sequence, - STATE(1562), 1, - aux_sym_string_literal_repeat1, - [58754] = 4, + [58716] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4150), 1, + ACTIONS(4141), 1, anon_sym___except, - ACTIONS(4152), 1, + ACTIONS(4143), 1, anon_sym___finally, - STATE(273), 2, + STATE(218), 2, sym_seh_except_clause, sym_seh_finally_clause, - [58768] = 4, - ACTIONS(3294), 1, + [58730] = 5, + ACTIONS(3317), 1, + sym_comment, + ACTIONS(4145), 1, + anon_sym_DQUOTE, + ACTIONS(4147), 1, + aux_sym_string_literal_token1, + ACTIONS(4149), 1, + sym_escape_sequence, + STATE(1485), 1, + aux_sym_string_literal_repeat1, + [58746] = 4, + ACTIONS(3317), 1, sym_comment, - ACTIONS(4154), 1, + ACTIONS(4151), 1, anon_sym_SQUOTE, - STATE(1546), 1, + STATE(1484), 1, aux_sym_char_literal_repeat1, - ACTIONS(4156), 2, + ACTIONS(4153), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [58782] = 4, + [58760] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3487), 1, + ACTIONS(3504), 1, anon_sym___attribute__, - ACTIONS(4159), 1, + ACTIONS(4155), 1, anon_sym_SEMI, - STATE(1567), 2, + STATE(1470), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [58796] = 4, + [58774] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3586), 1, + sym_identifier, + ACTIONS(4157), 1, + aux_sym_preproc_if_token2, + STATE(1360), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1758), 1, + sym_enumerator, + [58790] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3487), 1, + ACTIONS(3551), 1, + sym_identifier, + ACTIONS(4159), 1, + aux_sym_preproc_if_token2, + STATE(1354), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + [58804] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3504), 1, anon_sym___attribute__, ACTIONS(4161), 1, anon_sym_SEMI, - STATE(1443), 2, + STATE(1378), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [58810] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2337), 1, - anon_sym_LPAREN2, - STATE(1702), 1, - sym_argument_list, - ACTIONS(4163), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [58824] = 4, + [58818] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3593), 1, - anon_sym_COMMA, - STATE(1538), 1, - aux_sym__field_declaration_declarator_repeat1, - ACTIONS(4165), 2, - anon_sym_SEMI, - anon_sym___attribute__, - [58838] = 4, + ACTIONS(3586), 1, + sym_identifier, + ACTIONS(4027), 1, + aux_sym_preproc_if_token2, + STATE(1492), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1758), 1, + sym_enumerator, + [58834] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3487), 1, + ACTIONS(3504), 1, anon_sym___attribute__, - ACTIONS(4167), 1, + ACTIONS(4163), 1, anon_sym_SEMI, - STATE(1540), 2, + STATE(1378), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [58852] = 5, - ACTIONS(3294), 1, + [58848] = 5, + ACTIONS(3317), 1, sym_comment, - ACTIONS(4028), 1, + ACTIONS(4087), 1, anon_sym_LPAREN, - ACTIONS(4169), 1, + ACTIONS(4165), 1, aux_sym_preproc_include_token2, - ACTIONS(4171), 1, + ACTIONS(4167), 1, sym_preproc_arg, - STATE(1718), 1, + STATE(1721), 1, sym_preproc_params, - [58868] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3593), 1, - anon_sym_COMMA, - STATE(1508), 1, - aux_sym__field_declaration_declarator_repeat1, - ACTIONS(4173), 2, - anon_sym_SEMI, - anon_sym___attribute__, - [58882] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4175), 1, - anon_sym_COMMA, - STATE(1554), 1, - aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(4178), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [58896] = 4, + [58864] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3487), 1, + ACTIONS(3504), 1, anon_sym___attribute__, - ACTIONS(4180), 1, + ACTIONS(4169), 1, anon_sym_SEMI, - STATE(1514), 2, + STATE(1472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [58910] = 5, + [58878] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3583), 1, + ACTIONS(3551), 1, sym_identifier, - ACTIONS(4182), 1, + ACTIONS(4171), 1, aux_sym_preproc_if_token2, - STATE(1399), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1894), 1, + STATE(1493), 2, sym_enumerator, - [58926] = 5, - ACTIONS(3294), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + [58892] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4115), 1, + anon_sym_COMMA, + STATE(1482), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(4173), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [58906] = 5, + ACTIONS(3317), 1, sym_comment, - ACTIONS(4028), 1, + ACTIONS(4087), 1, anon_sym_LPAREN, - ACTIONS(4184), 1, + ACTIONS(4175), 1, aux_sym_preproc_include_token2, - ACTIONS(4186), 1, + ACTIONS(4177), 1, sym_preproc_arg, - STATE(1732), 1, + STATE(1729), 1, sym_preproc_params, - [58942] = 5, - ACTIONS(3294), 1, + [58922] = 5, + ACTIONS(3317), 1, sym_comment, - ACTIONS(4188), 1, + ACTIONS(4179), 1, anon_sym_DQUOTE, - ACTIONS(4190), 1, + ACTIONS(4181), 1, aux_sym_string_literal_token1, - ACTIONS(4192), 1, + ACTIONS(4183), 1, sym_escape_sequence, - STATE(1512), 1, + STATE(1489), 1, aux_sym_string_literal_repeat1, - [58958] = 4, - ACTIONS(3), 1, + [58938] = 5, + ACTIONS(3317), 1, sym_comment, - ACTIONS(3518), 1, - sym_identifier, - ACTIONS(4194), 1, - aux_sym_preproc_if_token2, - STATE(1424), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - [58972] = 4, + ACTIONS(4185), 1, + anon_sym_DQUOTE, + ACTIONS(4187), 1, + aux_sym_string_literal_token1, + ACTIONS(4189), 1, + sym_escape_sequence, + STATE(1520), 1, + aux_sym_string_literal_repeat1, + [58954] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3694), 1, + ACTIONS(4191), 1, anon_sym_COMMA, - STATE(1565), 1, - aux_sym__type_definition_declarators_repeat1, - ACTIONS(4196), 2, - anon_sym_SEMI, - anon_sym___attribute__, - [58986] = 4, + STATE(1486), 1, + aux_sym_gnu_asm_input_operand_list_repeat1, + ACTIONS(4193), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [58968] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3487), 1, - anon_sym___attribute__, - ACTIONS(4198), 1, - anon_sym_SEMI, - STATE(1443), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [59000] = 5, - ACTIONS(3294), 1, + ACTIONS(4195), 1, + anon_sym_COMMA, + STATE(1505), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(4198), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [58982] = 5, + ACTIONS(3317), 1, sym_comment, - ACTIONS(4044), 1, - aux_sym_string_literal_token1, - ACTIONS(4046), 1, - sym_escape_sequence, + ACTIONS(4087), 1, + anon_sym_LPAREN, ACTIONS(4200), 1, - anon_sym_DQUOTE, - STATE(1535), 1, - aux_sym_string_literal_repeat1, - [59016] = 5, + aux_sym_preproc_include_token2, + ACTIONS(4202), 1, + sym_preproc_arg, + STATE(1716), 1, + sym_preproc_params, + [58998] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3565), 1, - anon_sym_LPAREN2, - ACTIONS(3899), 1, - anon_sym_LBRACK, - ACTIONS(4202), 1, + ACTIONS(4204), 1, + anon_sym_COMMA, + ACTIONS(4206), 1, anon_sym_RPAREN, - STATE(1505), 1, - sym_parameter_list, - [59032] = 4, - ACTIONS(3294), 1, + STATE(1609), 1, + aux_sym_parameter_list_repeat1, + STATE(1639), 1, + aux_sym__old_style_parameter_list_repeat1, + [59014] = 4, + ACTIONS(3317), 1, sym_comment, - ACTIONS(4204), 1, + ACTIONS(4208), 1, anon_sym_SQUOTE, - STATE(1546), 1, + STATE(1484), 1, aux_sym_char_literal_repeat1, - ACTIONS(4056), 2, + ACTIONS(4153), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [59046] = 4, - ACTIONS(3), 1, + [59028] = 4, + ACTIONS(3317), 1, sym_comment, - ACTIONS(4206), 1, - anon_sym_COMMA, - STATE(1565), 1, - aux_sym__type_definition_declarators_repeat1, - ACTIONS(4209), 2, - anon_sym_SEMI, - anon_sym___attribute__, - [59060] = 4, - ACTIONS(3), 1, + ACTIONS(4210), 1, + anon_sym_SQUOTE, + STATE(1484), 1, + aux_sym_char_literal_repeat1, + ACTIONS(4153), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [59042] = 5, + ACTIONS(3317), 1, sym_comment, - ACTIONS(4211), 1, - anon_sym___except, - ACTIONS(4213), 1, - anon_sym___finally, - STATE(258), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [59074] = 4, + ACTIONS(4147), 1, + aux_sym_string_literal_token1, + ACTIONS(4149), 1, + sym_escape_sequence, + ACTIONS(4212), 1, + anon_sym_DQUOTE, + STATE(1485), 1, + aux_sym_string_literal_repeat1, + [59058] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3487), 1, - anon_sym___attribute__, - ACTIONS(4215), 1, + ACTIONS(4214), 4, + anon_sym_COMMA, anon_sym_SEMI, - STATE(1443), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [59088] = 4, + anon_sym_asm, + anon_sym___asm__, + [59068] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4217), 1, - anon_sym___except, - ACTIONS(4219), 1, - anon_sym___finally, - STATE(258), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [59102] = 4, + ACTIONS(3608), 1, + anon_sym_COMMA, + STATE(1515), 1, + aux_sym__field_declaration_declarator_repeat1, + ACTIONS(4216), 2, + anon_sym_SEMI, + anon_sym___attribute__, + [59082] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4091), 1, anon_sym_COMMA, - STATE(1569), 1, + STATE(1505), 1, aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(4224), 2, + ACTIONS(4218), 2, anon_sym_RPAREN, anon_sym_COLON, - [59116] = 4, + [59096] = 5, + ACTIONS(3317), 1, + sym_comment, + ACTIONS(4087), 1, + anon_sym_LPAREN, + ACTIONS(4220), 1, + aux_sym_preproc_include_token2, + ACTIONS(4222), 1, + sym_preproc_arg, + STATE(1674), 1, + sym_preproc_params, + [59112] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4072), 1, + ACTIONS(4224), 1, anon_sym_COMMA, - STATE(1533), 1, + STATE(1515), 1, + aux_sym__field_declaration_declarator_repeat1, + ACTIONS(4227), 2, + anon_sym_SEMI, + anon_sym___attribute__, + [59126] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4191), 1, + anon_sym_COMMA, + STATE(1504), 1, aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(4226), 2, + ACTIONS(4229), 2, anon_sym_RPAREN, anon_sym_COLON, - [59130] = 4, + [59140] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3917), 1, - anon_sym_COMMA, - ACTIONS(4228), 1, - anon_sym_SEMI, - STATE(1691), 1, - aux_sym_declaration_repeat1, - [59143] = 4, + ACTIONS(3580), 1, + anon_sym_LPAREN2, + ACTIONS(3926), 1, + anon_sym_LBRACK, + ACTIONS(4231), 1, + anon_sym_RPAREN, + STATE(1452), 1, + sym_parameter_list, + [59156] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3487), 1, - anon_sym___attribute__, - ACTIONS(4230), 1, - anon_sym_SEMI, - STATE(1951), 1, - sym_attribute_specifier, - [59156] = 4, + ACTIONS(4233), 1, + anon_sym___except, + ACTIONS(4235), 1, + anon_sym___finally, + STATE(150), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [59170] = 5, + ACTIONS(3317), 1, + sym_comment, + ACTIONS(4087), 1, + anon_sym_LPAREN, + ACTIONS(4237), 1, + aux_sym_preproc_include_token2, + ACTIONS(4239), 1, + sym_preproc_arg, + STATE(1705), 1, + sym_preproc_params, + [59186] = 5, + ACTIONS(3317), 1, + sym_comment, + ACTIONS(4147), 1, + aux_sym_string_literal_token1, + ACTIONS(4149), 1, + sym_escape_sequence, + ACTIONS(4241), 1, + anon_sym_DQUOTE, + STATE(1485), 1, + aux_sym_string_literal_repeat1, + [59202] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3917), 1, + ACTIONS(3916), 1, anon_sym_COMMA, - ACTIONS(4232), 1, + ACTIONS(4243), 1, anon_sym_SEMI, - STATE(1638), 1, + STATE(1587), 1, aux_sym_declaration_repeat1, - [59169] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2785), 1, - anon_sym_LBRACE, - ACTIONS(4234), 1, - sym_identifier, - STATE(894), 1, - sym_enumerator_list, - [59182] = 2, + [59215] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4236), 3, + ACTIONS(4245), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [59191] = 2, + [59224] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4238), 3, - anon_sym_COMMA, + ACTIONS(3063), 3, anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_COLON, - [59200] = 4, + [59233] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3052), 1, - anon_sym_COMMA, - ACTIONS(4240), 1, - anon_sym_RPAREN, - STATE(1664), 1, - aux_sym_argument_list_repeat1, - [59213] = 3, - ACTIONS(3294), 1, - sym_comment, - STATE(1515), 1, - aux_sym_char_literal_repeat1, - ACTIONS(4242), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [59224] = 4, + ACTIONS(2412), 1, + anon_sym_LBRACE, + ACTIONS(4247), 1, + sym_identifier, + STATE(719), 1, + sym_field_declaration_list, + [59246] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4244), 1, + ACTIONS(4249), 3, anon_sym_COMMA, - ACTIONS(4247), 1, anon_sym_RPAREN, - STATE(1579), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [59237] = 4, - ACTIONS(3294), 1, + anon_sym_COLON, + [59255] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4249), 1, - aux_sym_preproc_include_token2, + ACTIONS(3504), 1, + anon_sym___attribute__, ACTIONS(4251), 1, - anon_sym_LPAREN2, - STATE(1928), 1, - sym_preproc_argument_list, - [59250] = 4, + anon_sym_SEMI, + STATE(1773), 1, + sym_attribute_specifier, + [59268] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(3127), 1, + anon_sym_RBRACE, ACTIONS(4253), 1, anon_sym_COMMA, - ACTIONS(4255), 1, - anon_sym_RBRACK_RBRACK, - STATE(1602), 1, - aux_sym_attribute_declaration_repeat1, - [59263] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4257), 1, - anon_sym_COMMA, - ACTIONS(4259), 1, - anon_sym_RPAREN, - STATE(1579), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [59276] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4261), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [59285] = 2, + STATE(1527), 1, + aux_sym_initializer_list_repeat1, + [59281] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4263), 3, + ACTIONS(3073), 1, anon_sym_COMMA, + ACTIONS(3081), 1, anon_sym_RPAREN, - anon_sym_COLON, + STATE(1586), 1, + aux_sym_argument_list_repeat1, [59294] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2397), 1, - anon_sym_LBRACE, - ACTIONS(4265), 1, - sym_identifier, - STATE(779), 1, - sym_field_declaration_list, + ACTIONS(3916), 1, + anon_sym_COMMA, + ACTIONS(4256), 1, + anon_sym_SEMI, + STATE(1623), 1, + aux_sym_declaration_repeat1, [59307] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2397), 1, - anon_sym_LBRACE, - ACTIONS(4267), 1, - sym_identifier, - STATE(784), 1, - sym_field_declaration_list, - [59320] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4269), 1, + ACTIONS(4258), 1, anon_sym_COMMA, - ACTIONS(4272), 1, + ACTIONS(4260), 1, anon_sym_RPAREN, - STATE(1587), 1, - aux_sym_generic_expression_repeat1, - [59333] = 2, + STATE(1609), 1, + aux_sym_parameter_list_repeat1, + [59320] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4274), 3, + ACTIONS(4262), 3, anon_sym_LBRACK, anon_sym_EQ, anon_sym_DOT, - [59342] = 4, + [59329] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4257), 1, + ACTIONS(4264), 1, anon_sym_COMMA, - ACTIONS(4276), 1, + ACTIONS(4267), 1, anon_sym_RPAREN, - STATE(1582), 1, - aux_sym_gnu_asm_goto_list_repeat1, + STATE(1532), 1, + aux_sym__old_style_parameter_list_repeat1, + [59342] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4269), 1, + anon_sym_RPAREN, + ACTIONS(4271), 1, + anon_sym_COLON, + STATE(1627), 1, + sym_gnu_asm_input_operand_list, [59355] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3487), 1, - anon_sym___attribute__, - ACTIONS(4278), 1, - anon_sym_SEMI, - STATE(1807), 1, - sym_attribute_specifier, - [59368] = 2, + ACTIONS(4273), 1, + anon_sym_RPAREN, + ACTIONS(4275), 1, + anon_sym_COLON, + STATE(1598), 1, + sym_gnu_asm_output_operand_list, + [59368] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4280), 3, - anon_sym_COMMA, + ACTIONS(4277), 1, anon_sym_RPAREN, + ACTIONS(4279), 1, anon_sym_COLON, - [59377] = 2, + STATE(1573), 1, + sym_gnu_asm_clobber_list, + [59381] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4282), 3, - anon_sym_COMMA, + ACTIONS(4281), 1, anon_sym_RPAREN, + ACTIONS(4283), 1, anon_sym_COLON, - [59386] = 4, + STATE(1890), 1, + sym_gnu_asm_goto_list, + [59394] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3066), 1, + ACTIONS(4285), 1, anon_sym_COMMA, - ACTIONS(3068), 1, - anon_sym_RBRACE, - STATE(1679), 1, - aux_sym_initializer_list_repeat1, - [59399] = 4, + ACTIONS(4287), 1, + anon_sym_RBRACK_RBRACK, + STATE(1585), 1, + aux_sym_attribute_declaration_repeat1, + [59407] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3048), 1, + ACTIONS(3916), 1, anon_sym_COMMA, - ACTIONS(4284), 1, + ACTIONS(4289), 1, + anon_sym_SEMI, + STATE(1548), 1, + aux_sym_declaration_repeat1, + [59420] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4293), 1, anon_sym_RPAREN, - STATE(1587), 1, - aux_sym_generic_expression_repeat1, - [59412] = 3, - ACTIONS(3294), 1, + ACTIONS(4291), 2, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [59431] = 3, + ACTIONS(3317), 1, sym_comment, - STATE(1529), 1, + STATE(1509), 1, aux_sym_char_literal_repeat1, - ACTIONS(4286), 2, + ACTIONS(4295), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [59423] = 4, + [59442] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4297), 1, + anon_sym_COMMA, + ACTIONS(4299), 1, + anon_sym_RPAREN, + STATE(1600), 1, + aux_sym_preproc_params_repeat1, + [59455] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3917), 1, + ACTIONS(3916), 1, anon_sym_COMMA, - ACTIONS(4288), 1, + ACTIONS(4301), 1, anon_sym_SEMI, - STATE(1619), 1, + STATE(1587), 1, aux_sym_declaration_repeat1, - [59436] = 3, + [59468] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4292), 1, - anon_sym_RPAREN, - ACTIONS(4290), 2, - anon_sym_DOT_DOT_DOT, - sym_identifier, - [59447] = 4, + ACTIONS(3916), 1, + anon_sym_COMMA, + ACTIONS(4303), 1, + anon_sym_SEMI, + STATE(1587), 1, + aux_sym_declaration_repeat1, + [59481] = 4, + ACTIONS(3317), 1, + sym_comment, + ACTIONS(4305), 1, + aux_sym_preproc_include_token2, + ACTIONS(4307), 1, + anon_sym_LPAREN2, + STATE(1813), 1, + sym_preproc_argument_list, + [59494] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4294), 1, + ACTIONS(3073), 1, + anon_sym_COMMA, + ACTIONS(3075), 1, anon_sym_RPAREN, - ACTIONS(4296), 1, - anon_sym_COLON, - STATE(1950), 1, - sym_gnu_asm_goto_list, - [59460] = 2, + STATE(1588), 1, + aux_sym_argument_list_repeat1, + [59507] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4298), 3, + ACTIONS(3916), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [59469] = 4, + ACTIONS(4309), 1, + anon_sym_SEMI, + STATE(1587), 1, + aux_sym_declaration_repeat1, + [59520] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3261), 1, + ACTIONS(3916), 1, anon_sym_COMMA, - ACTIONS(4300), 1, - anon_sym_RPAREN, - STATE(1667), 1, - aux_sym_preproc_argument_list_repeat1, - [59482] = 4, + ACTIONS(4311), 1, + anon_sym_SEMI, + STATE(1587), 1, + aux_sym_declaration_repeat1, + [59533] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2785), 1, - anon_sym_LBRACE, - ACTIONS(4302), 1, - sym_identifier, - STATE(1124), 1, - sym_enumerator_list, - [59495] = 4, + ACTIONS(3916), 1, + anon_sym_COMMA, + ACTIONS(4313), 1, + anon_sym_SEMI, + STATE(1587), 1, + aux_sym_declaration_repeat1, + [59546] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4253), 1, + ACTIONS(3916), 1, anon_sym_COMMA, - ACTIONS(4304), 1, - anon_sym_RBRACK_RBRACK, - STATE(1681), 1, - aux_sym_attribute_declaration_repeat1, - [59508] = 2, + ACTIONS(4315), 1, + anon_sym_SEMI, + STATE(1542), 1, + aux_sym_declaration_repeat1, + [59559] = 4, + ACTIONS(3317), 1, + sym_comment, + ACTIONS(4307), 1, + anon_sym_LPAREN2, + ACTIONS(4317), 1, + aux_sym_preproc_include_token2, + STATE(1813), 1, + sym_preproc_argument_list, + [59572] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4306), 3, + ACTIONS(3916), 1, anon_sym_COMMA, + ACTIONS(4319), 1, anon_sym_SEMI, - anon_sym___attribute__, - [59517] = 3, + STATE(1581), 1, + aux_sym_declaration_repeat1, + [59585] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4308), 1, - anon_sym_EQ, - ACTIONS(3805), 2, + ACTIONS(2790), 1, + anon_sym_LBRACE, + ACTIONS(4321), 1, + sym_identifier, + STATE(1079), 1, + sym_enumerator_list, + [59598] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3916), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [59528] = 4, + ACTIONS(4323), 1, + anon_sym_SEMI, + STATE(1587), 1, + aux_sym_declaration_repeat1, + [59611] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4310), 1, + ACTIONS(3916), 1, anon_sym_COMMA, - ACTIONS(4312), 1, - anon_sym_RPAREN, - STATE(1684), 1, - aux_sym_parameter_list_repeat1, - [59541] = 4, + ACTIONS(4325), 1, + anon_sym_SEMI, + STATE(1587), 1, + aux_sym_declaration_repeat1, + [59624] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2397), 1, + ACTIONS(3916), 1, + anon_sym_COMMA, + ACTIONS(4327), 1, + anon_sym_SEMI, + STATE(1543), 1, + aux_sym_declaration_repeat1, + [59637] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2790), 1, anon_sym_LBRACE, - ACTIONS(4314), 1, + ACTIONS(4329), 1, sym_identifier, - STATE(774), 1, - sym_field_declaration_list, - [59554] = 4, + STATE(860), 1, + sym_enumerator_list, + [59650] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4316), 1, - anon_sym_RPAREN, - ACTIONS(4318), 1, - anon_sym_COLON, - STATE(1674), 1, - sym_gnu_asm_output_operand_list, - [59567] = 4, + ACTIONS(3916), 1, + anon_sym_COMMA, + ACTIONS(4331), 1, + anon_sym_SEMI, + STATE(1553), 1, + aux_sym_declaration_repeat1, + [59663] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3162), 1, - anon_sym_RBRACE, - ACTIONS(4320), 1, + ACTIONS(4285), 1, anon_sym_COMMA, - STATE(1608), 1, - aux_sym_initializer_list_repeat1, - [59580] = 2, + ACTIONS(4333), 1, + anon_sym_RBRACK_RBRACK, + STATE(1642), 1, + aux_sym_attribute_declaration_repeat1, + [59676] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4323), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [59589] = 4, + ACTIONS(4335), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + [59685] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3916), 1, + anon_sym_COMMA, + ACTIONS(4337), 1, + anon_sym_SEMI, + STATE(1587), 1, + aux_sym_declaration_repeat1, + [59698] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3052), 1, + ACTIONS(3073), 1, anon_sym_COMMA, - ACTIONS(3060), 1, + ACTIONS(4339), 1, anon_sym_RPAREN, - STATE(1664), 1, + STATE(1628), 1, aux_sym_argument_list_repeat1, - [59602] = 4, + [59711] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4325), 1, + ACTIONS(3916), 1, anon_sym_COMMA, - ACTIONS(4328), 1, - anon_sym_RPAREN, - STATE(1611), 1, - aux_sym__old_style_parameter_list_repeat1, - [59615] = 4, + ACTIONS(4341), 1, + anon_sym_SEMI, + STATE(1587), 1, + aux_sym_declaration_repeat1, + [59724] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3917), 1, + ACTIONS(3916), 1, anon_sym_COMMA, - ACTIONS(4330), 1, + ACTIONS(4343), 1, anon_sym_SEMI, - STATE(1638), 1, + STATE(1587), 1, aux_sym_declaration_repeat1, - [59628] = 4, + [59737] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3917), 1, + ACTIONS(3916), 1, anon_sym_COMMA, - ACTIONS(4332), 1, + ACTIONS(4345), 1, anon_sym_SEMI, - STATE(1640), 1, + STATE(1560), 1, aux_sym_declaration_repeat1, - [59641] = 4, - ACTIONS(3294), 1, + [59750] = 4, + ACTIONS(3317), 1, sym_comment, - ACTIONS(4251), 1, + ACTIONS(4307), 1, anon_sym_LPAREN2, - ACTIONS(4334), 1, + ACTIONS(4347), 1, aux_sym_preproc_include_token2, - STATE(1928), 1, + STATE(1813), 1, sym_preproc_argument_list, - [59654] = 4, + [59763] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3917), 1, + ACTIONS(3916), 1, anon_sym_COMMA, - ACTIONS(4336), 1, + ACTIONS(4349), 1, anon_sym_SEMI, - STATE(1638), 1, + STATE(1587), 1, aux_sym_declaration_repeat1, - [59667] = 4, + [59776] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3917), 1, + ACTIONS(3916), 1, anon_sym_COMMA, - ACTIONS(4338), 1, + ACTIONS(4351), 1, anon_sym_SEMI, - STATE(1573), 1, + STATE(1587), 1, aux_sym_declaration_repeat1, - [59680] = 3, - ACTIONS(3294), 1, + [59789] = 4, + ACTIONS(3), 1, sym_comment, - STATE(1564), 1, - aux_sym_char_literal_repeat1, - ACTIONS(4340), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [59691] = 4, + ACTIONS(3916), 1, + anon_sym_COMMA, + ACTIONS(4353), 1, + anon_sym_SEMI, + STATE(1587), 1, + aux_sym_declaration_repeat1, + [59802] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3917), 1, + ACTIONS(3916), 1, anon_sym_COMMA, - ACTIONS(4342), 1, + ACTIONS(4355), 1, anon_sym_SEMI, - STATE(1638), 1, + STATE(1562), 1, aux_sym_declaration_repeat1, - [59704] = 4, + [59815] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3917), 1, + ACTIONS(3916), 1, anon_sym_COMMA, - ACTIONS(4344), 1, + ACTIONS(4357), 1, anon_sym_SEMI, - STATE(1638), 1, + STATE(1567), 1, aux_sym_declaration_repeat1, - [59717] = 4, + [59828] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4253), 1, + ACTIONS(4285), 1, anon_sym_COMMA, - ACTIONS(4346), 1, + ACTIONS(4359), 1, anon_sym_RBRACK_RBRACK, - STATE(1651), 1, + STATE(1602), 1, aux_sym_attribute_declaration_repeat1, - [59730] = 4, - ACTIONS(3), 1, + [59841] = 3, + ACTIONS(3317), 1, sym_comment, - ACTIONS(4348), 1, - anon_sym_RPAREN, - ACTIONS(4350), 1, - anon_sym_COLON, - STATE(1598), 1, - sym_gnu_asm_clobber_list, - [59743] = 4, + STATE(1490), 1, + aux_sym_char_literal_repeat1, + ACTIONS(4361), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [59852] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4296), 1, + ACTIONS(4283), 1, anon_sym_COLON, - ACTIONS(4352), 1, + ACTIONS(4363), 1, anon_sym_RPAREN, - STATE(1912), 1, + STATE(1919), 1, sym_gnu_asm_goto_list, - [59756] = 4, + [59865] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3917), 1, + ACTIONS(3916), 1, anon_sym_COMMA, - ACTIONS(4354), 1, + ACTIONS(4365), 1, anon_sym_SEMI, - STATE(1638), 1, + STATE(1587), 1, aux_sym_declaration_repeat1, - [59769] = 4, + [59878] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2790), 1, + anon_sym_LBRACE, + ACTIONS(4367), 1, + sym_identifier, + STATE(1079), 1, + sym_enumerator_list, + [59891] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4356), 1, + ACTIONS(4369), 3, anon_sym_COMMA, - ACTIONS(4358), 1, anon_sym_RPAREN, - STATE(1682), 1, - aux_sym_preproc_params_repeat1, - [59782] = 4, + anon_sym_COLON, + [59900] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3917), 1, + ACTIONS(3077), 1, anon_sym_COMMA, - ACTIONS(4360), 1, - anon_sym_SEMI, - STATE(1638), 1, - aux_sym_declaration_repeat1, - [59795] = 4, + ACTIONS(4371), 1, + anon_sym_RPAREN, + STATE(1621), 1, + aux_sym_generic_expression_repeat1, + [59913] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3917), 1, + ACTIONS(3916), 1, anon_sym_COMMA, - ACTIONS(4362), 1, + ACTIONS(4373), 1, anon_sym_SEMI, - STATE(1638), 1, + STATE(1587), 1, aux_sym_declaration_repeat1, - [59808] = 4, + [59926] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3917), 1, + ACTIONS(3916), 1, anon_sym_COMMA, - ACTIONS(4364), 1, + ACTIONS(4375), 1, anon_sym_SEMI, - STATE(1623), 1, + STATE(1587), 1, aux_sym_declaration_repeat1, - [59821] = 4, + [59939] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3261), 1, + ACTIONS(3916), 1, anon_sym_COMMA, - ACTIONS(4366), 1, - anon_sym_RPAREN, - STATE(1667), 1, - aux_sym_preproc_argument_list_repeat1, - [59834] = 4, + ACTIONS(4377), 1, + anon_sym_SEMI, + STATE(1574), 1, + aux_sym_declaration_repeat1, + [59952] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3917), 1, + ACTIONS(3916), 1, anon_sym_COMMA, - ACTIONS(4368), 1, + ACTIONS(4379), 1, anon_sym_SEMI, - STATE(1638), 1, + STATE(1587), 1, aux_sym_declaration_repeat1, - [59847] = 4, + [59965] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3052), 1, + ACTIONS(2412), 1, + anon_sym_LBRACE, + ACTIONS(4381), 1, + sym_identifier, + STATE(718), 1, + sym_field_declaration_list, + [59978] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4383), 3, anon_sym_COMMA, - ACTIONS(3070), 1, anon_sym_RPAREN, - STATE(1664), 1, - aux_sym_argument_list_repeat1, - [59860] = 4, + anon_sym_COLON, + [59987] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3917), 1, + ACTIONS(3251), 1, anon_sym_COMMA, - ACTIONS(4370), 1, - anon_sym_SEMI, - STATE(1638), 1, - aux_sym_declaration_repeat1, - [59873] = 4, + ACTIONS(4385), 1, + anon_sym_RPAREN, + STATE(1620), 1, + aux_sym_preproc_argument_list_repeat1, + [60000] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3917), 1, + ACTIONS(4285), 1, anon_sym_COMMA, - ACTIONS(4372), 1, - anon_sym_SEMI, - STATE(1625), 1, - aux_sym_declaration_repeat1, - [59886] = 4, + ACTIONS(4387), 1, + anon_sym_RBRACK_RBRACK, + STATE(1636), 1, + aux_sym_attribute_declaration_repeat1, + [60013] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4350), 1, - anon_sym_COLON, - ACTIONS(4374), 1, + ACTIONS(3073), 1, + anon_sym_COMMA, + ACTIONS(3091), 1, anon_sym_RPAREN, - STATE(1622), 1, - sym_gnu_asm_clobber_list, - [59899] = 4, + STATE(1628), 1, + aux_sym_argument_list_repeat1, + [60026] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3917), 1, + ACTIONS(4389), 1, anon_sym_COMMA, - ACTIONS(4376), 1, + ACTIONS(4392), 1, anon_sym_SEMI, - STATE(1629), 1, + STATE(1587), 1, aux_sym_declaration_repeat1, - [59912] = 4, + [60039] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4378), 1, + ACTIONS(3073), 1, + anon_sym_COMMA, + ACTIONS(3083), 1, anon_sym_RPAREN, - ACTIONS(4380), 1, - anon_sym_COLON, - STATE(1621), 1, - sym_gnu_asm_input_operand_list, - [59925] = 4, - ACTIONS(3294), 1, - sym_comment, - ACTIONS(4251), 1, - anon_sym_LPAREN2, - ACTIONS(4382), 1, - aux_sym_preproc_include_token2, - STATE(1928), 1, - sym_preproc_argument_list, - [59938] = 4, + STATE(1628), 1, + aux_sym_argument_list_repeat1, + [60052] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3917), 1, + ACTIONS(3916), 1, anon_sym_COMMA, - ACTIONS(4384), 1, + ACTIONS(4394), 1, anon_sym_SEMI, - STATE(1638), 1, + STATE(1587), 1, aux_sym_declaration_repeat1, - [59951] = 4, + [60065] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4386), 1, + ACTIONS(3916), 1, anon_sym_COMMA, - ACTIONS(4389), 1, + ACTIONS(4396), 1, anon_sym_SEMI, - STATE(1638), 1, + STATE(1614), 1, aux_sym_declaration_repeat1, - [59964] = 4, + [60078] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3917), 1, + ACTIONS(3916), 1, anon_sym_COMMA, - ACTIONS(4391), 1, + ACTIONS(4398), 1, anon_sym_SEMI, - STATE(1663), 1, + STATE(1637), 1, aux_sym_declaration_repeat1, - [59977] = 4, + [60091] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3917), 1, + ACTIONS(3251), 1, anon_sym_COMMA, - ACTIONS(4393), 1, - anon_sym_SEMI, - STATE(1638), 1, - aux_sym_declaration_repeat1, - [59990] = 4, + ACTIONS(4400), 1, + anon_sym_RPAREN, + STATE(1620), 1, + aux_sym_preproc_argument_list_repeat1, + [60104] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3917), 1, + ACTIONS(3916), 1, anon_sym_COMMA, - ACTIONS(4395), 1, + ACTIONS(4402), 1, anon_sym_SEMI, - STATE(1638), 1, + STATE(1587), 1, aux_sym_declaration_repeat1, - [60003] = 4, + [60117] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3917), 1, + ACTIONS(1913), 1, + anon_sym_RBRACE, + ACTIONS(4404), 1, anon_sym_COMMA, - ACTIONS(4397), 1, - anon_sym_SEMI, - STATE(1638), 1, - aux_sym_declaration_repeat1, - [60016] = 4, + STATE(1527), 1, + aux_sym_initializer_list_repeat1, + [60130] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3917), 1, + ACTIONS(3916), 1, anon_sym_COMMA, - ACTIONS(4399), 1, + ACTIONS(4406), 1, anon_sym_SEMI, - STATE(1637), 1, + STATE(1587), 1, aux_sym_declaration_repeat1, - [60029] = 4, + [60143] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3917), 1, - anon_sym_COMMA, - ACTIONS(4401), 1, - anon_sym_SEMI, - STATE(1638), 1, - aux_sym_declaration_repeat1, - [60042] = 4, + ACTIONS(4275), 1, + anon_sym_COLON, + ACTIONS(4408), 1, + anon_sym_RPAREN, + STATE(1533), 1, + sym_gnu_asm_output_operand_list, + [60156] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3917), 1, + ACTIONS(3916), 1, anon_sym_COMMA, - ACTIONS(4403), 1, + ACTIONS(4410), 1, anon_sym_SEMI, - STATE(1638), 1, + STATE(1587), 1, aux_sym_declaration_repeat1, - [60055] = 4, + [60169] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3917), 1, - anon_sym_COMMA, - ACTIONS(4405), 1, - anon_sym_SEMI, - STATE(1638), 1, - aux_sym_declaration_repeat1, - [60068] = 4, + ACTIONS(4271), 1, + anon_sym_COLON, + ACTIONS(4412), 1, + anon_sym_RPAREN, + STATE(1535), 1, + sym_gnu_asm_input_operand_list, + [60182] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3917), 1, + ACTIONS(3916), 1, anon_sym_COMMA, - ACTIONS(4407), 1, + ACTIONS(4414), 1, anon_sym_SEMI, - STATE(1638), 1, + STATE(1566), 1, aux_sym_declaration_repeat1, - [60081] = 4, + [60195] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3917), 1, + ACTIONS(4297), 1, anon_sym_COMMA, - ACTIONS(4409), 1, - anon_sym_SEMI, - STATE(1641), 1, - aux_sym_declaration_repeat1, - [60094] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1756), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4411), 1, - sym_identifier, - STATE(1755), 1, - sym_variadic_parameter, - [60107] = 4, + ACTIONS(4416), 1, + anon_sym_RPAREN, + STATE(1608), 1, + aux_sym_preproc_params_repeat1, + [60208] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3917), 1, + ACTIONS(3916), 1, anon_sym_COMMA, - ACTIONS(4413), 1, + ACTIONS(4418), 1, anon_sym_SEMI, - STATE(1644), 1, + STATE(1578), 1, aux_sym_declaration_repeat1, - [60120] = 4, + [60221] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4253), 1, + ACTIONS(4285), 1, anon_sym_COMMA, - ACTIONS(4415), 1, + ACTIONS(4420), 1, anon_sym_RBRACK_RBRACK, - STATE(1681), 1, + STATE(1636), 1, aux_sym_attribute_declaration_repeat1, - [60133] = 4, + [60234] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3052), 1, + ACTIONS(4422), 1, anon_sym_COMMA, - ACTIONS(3054), 1, + ACTIONS(4424), 1, anon_sym_RPAREN, - STATE(1630), 1, - aux_sym_argument_list_repeat1, - [60146] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3917), 1, - anon_sym_COMMA, - ACTIONS(4417), 1, - anon_sym_SEMI, - STATE(1638), 1, - aux_sym_declaration_repeat1, - [60159] = 4, + STATE(1632), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [60247] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4419), 1, + ACTIONS(4426), 1, anon_sym_COMMA, - ACTIONS(4421), 1, + ACTIONS(4429), 1, anon_sym_RPAREN, - STATE(1611), 1, - aux_sym__old_style_parameter_list_repeat1, - [60172] = 4, + STATE(1604), 1, + aux_sym_parameter_list_repeat1, + [60260] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2785), 1, - anon_sym_LBRACE, - ACTIONS(4423), 1, - sym_identifier, - STATE(1124), 1, - sym_enumerator_list, - [60185] = 4, + ACTIONS(4431), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [60269] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3917), 1, - anon_sym_COMMA, - ACTIONS(4425), 1, + ACTIONS(3504), 1, + anon_sym___attribute__, + ACTIONS(4433), 1, anon_sym_SEMI, - STATE(1638), 1, - aux_sym_declaration_repeat1, - [60198] = 4, - ACTIONS(3), 1, + STATE(1888), 1, + sym_attribute_specifier, + [60282] = 4, + ACTIONS(3317), 1, sym_comment, - ACTIONS(3917), 1, - anon_sym_COMMA, - ACTIONS(4427), 1, - anon_sym_SEMI, - STATE(1638), 1, - aux_sym_declaration_repeat1, - [60211] = 4, + ACTIONS(4307), 1, + anon_sym_LPAREN2, + ACTIONS(4435), 1, + aux_sym_preproc_include_token2, + STATE(1813), 1, + sym_preproc_argument_list, + [60295] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3917), 1, + ACTIONS(4437), 1, anon_sym_COMMA, - ACTIONS(4429), 1, - anon_sym_SEMI, - STATE(1653), 1, - aux_sym_declaration_repeat1, - [60224] = 4, + ACTIONS(4440), 1, + anon_sym_RPAREN, + STATE(1608), 1, + aux_sym_preproc_params_repeat1, + [60308] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3052), 1, + ACTIONS(4258), 1, anon_sym_COMMA, - ACTIONS(4431), 1, + ACTIONS(4442), 1, anon_sym_RPAREN, - STATE(1664), 1, - aux_sym_argument_list_repeat1, - [60237] = 4, + STATE(1604), 1, + aux_sym_parameter_list_repeat1, + [60321] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4356), 1, + ACTIONS(4444), 1, + anon_sym_EQ, + ACTIONS(3827), 2, anon_sym_COMMA, - ACTIONS(4433), 1, - anon_sym_RPAREN, - STATE(1624), 1, - aux_sym_preproc_params_repeat1, - [60250] = 4, + anon_sym_RBRACE, + [60332] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3917), 1, + ACTIONS(3916), 1, anon_sym_COMMA, - ACTIONS(4435), 1, + ACTIONS(4446), 1, anon_sym_SEMI, - STATE(1638), 1, + STATE(1616), 1, aux_sym_declaration_repeat1, - [60263] = 4, + [60345] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3917), 1, + ACTIONS(3916), 1, anon_sym_COMMA, - ACTIONS(4437), 1, + ACTIONS(4448), 1, anon_sym_SEMI, - STATE(1638), 1, + STATE(1587), 1, aux_sym_declaration_repeat1, - [60276] = 4, + [60358] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3917), 1, + ACTIONS(3916), 1, anon_sym_COMMA, - ACTIONS(4439), 1, + ACTIONS(4450), 1, anon_sym_SEMI, - STATE(1638), 1, + STATE(1635), 1, aux_sym_declaration_repeat1, - [60289] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3122), 1, - anon_sym_RPAREN, - ACTIONS(4441), 1, - anon_sym_COMMA, - STATE(1664), 1, - aux_sym_argument_list_repeat1, - [60302] = 4, + [60371] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3917), 1, + ACTIONS(3916), 1, anon_sym_COMMA, - ACTIONS(4444), 1, + ACTIONS(4452), 1, anon_sym_SEMI, - STATE(1638), 1, + STATE(1587), 1, aux_sym_declaration_repeat1, - [60315] = 4, + [60384] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3917), 1, + ACTIONS(3916), 1, anon_sym_COMMA, - ACTIONS(4446), 1, + ACTIONS(4454), 1, anon_sym_SEMI, - STATE(1656), 1, + STATE(1587), 1, aux_sym_declaration_repeat1, - [60328] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3365), 1, - anon_sym_RPAREN, - ACTIONS(4448), 1, - anon_sym_COMMA, - STATE(1667), 1, - aux_sym_preproc_argument_list_repeat1, - [60341] = 4, + [60397] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3917), 1, + ACTIONS(3916), 1, anon_sym_COMMA, - ACTIONS(4451), 1, + ACTIONS(4456), 1, anon_sym_SEMI, - STATE(1662), 1, + STATE(1587), 1, aux_sym_declaration_repeat1, - [60354] = 4, + [60410] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3917), 1, + ACTIONS(3916), 1, anon_sym_COMMA, - ACTIONS(4453), 1, + ACTIONS(4458), 1, anon_sym_SEMI, - STATE(1645), 1, + STATE(1589), 1, aux_sym_declaration_repeat1, - [60367] = 4, + [60423] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4310), 1, + ACTIONS(3065), 1, anon_sym_COMMA, - ACTIONS(4455), 1, - anon_sym_RPAREN, - STATE(1605), 1, - aux_sym_parameter_list_repeat1, - [60380] = 4, + ACTIONS(3067), 1, + anon_sym_RBRACE, + STATE(1594), 1, + aux_sym_initializer_list_repeat1, + [60436] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3052), 1, + ACTIONS(3916), 1, anon_sym_COMMA, - ACTIONS(3056), 1, - anon_sym_RPAREN, - STATE(1610), 1, - aux_sym_argument_list_repeat1, - [60393] = 4, + ACTIONS(4460), 1, + anon_sym_SEMI, + STATE(1587), 1, + aux_sym_declaration_repeat1, + [60449] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4253), 1, + ACTIONS(3382), 1, + anon_sym_RPAREN, + ACTIONS(4462), 1, anon_sym_COMMA, - ACTIONS(4457), 1, - anon_sym_RBRACK_RBRACK, - STATE(1687), 1, - aux_sym_attribute_declaration_repeat1, - [60406] = 4, + STATE(1620), 1, + aux_sym_preproc_argument_list_repeat1, + [60462] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4318), 1, - anon_sym_COLON, - ACTIONS(4459), 1, + ACTIONS(4465), 1, + anon_sym_COMMA, + ACTIONS(4468), 1, anon_sym_RPAREN, - STATE(1635), 1, - sym_gnu_asm_output_operand_list, - [60419] = 4, + STATE(1621), 1, + aux_sym_generic_expression_repeat1, + [60475] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4380), 1, - anon_sym_COLON, - ACTIONS(4461), 1, - anon_sym_RPAREN, - STATE(1633), 1, - sym_gnu_asm_input_operand_list, - [60432] = 4, + ACTIONS(2412), 1, + anon_sym_LBRACE, + ACTIONS(4470), 1, + sym_identifier, + STATE(732), 1, + sym_field_declaration_list, + [60488] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3917), 1, + ACTIONS(3916), 1, anon_sym_COMMA, - ACTIONS(4463), 1, + ACTIONS(4472), 1, anon_sym_SEMI, - STATE(1638), 1, + STATE(1587), 1, aux_sym_declaration_repeat1, - [60445] = 4, - ACTIONS(3294), 1, + [60501] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4251), 1, - anon_sym_LPAREN2, - ACTIONS(4465), 1, - aux_sym_preproc_include_token2, - STATE(1928), 1, - sym_preproc_argument_list, - [60458] = 2, + ACTIONS(3251), 1, + anon_sym_COMMA, + ACTIONS(4474), 1, + anon_sym_RPAREN, + STATE(1620), 1, + aux_sym_preproc_argument_list_repeat1, + [60514] = 3, + ACTIONS(3317), 1, + sym_comment, + STATE(1508), 1, + aux_sym_char_literal_repeat1, + ACTIONS(4476), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [60525] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3032), 3, + ACTIONS(4478), 3, + anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, anon_sym_COLON, - [60467] = 4, + [60534] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4279), 1, + anon_sym_COLON, + ACTIONS(4480), 1, + anon_sym_RPAREN, + STATE(1536), 1, + sym_gnu_asm_clobber_list, + [60547] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3917), 1, + ACTIONS(3187), 1, + anon_sym_RPAREN, + ACTIONS(4482), 1, anon_sym_COMMA, - ACTIONS(4467), 1, - anon_sym_SEMI, - STATE(1675), 1, - aux_sym_declaration_repeat1, - [60480] = 4, + STATE(1628), 1, + aux_sym_argument_list_repeat1, + [60560] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1894), 1, - anon_sym_RBRACE, - ACTIONS(4469), 1, + ACTIONS(3073), 1, anon_sym_COMMA, - STATE(1608), 1, - aux_sym_initializer_list_repeat1, - [60493] = 2, + ACTIONS(4485), 1, + anon_sym_RPAREN, + STATE(1628), 1, + aux_sym_argument_list_repeat1, + [60573] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4471), 3, + ACTIONS(4487), 3, anon_sym_LBRACK, anon_sym_EQ, anon_sym_DOT, - [60502] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4473), 1, - anon_sym_COMMA, - ACTIONS(4476), 1, - anon_sym_RBRACK_RBRACK, - STATE(1681), 1, - aux_sym_attribute_declaration_repeat1, - [60515] = 4, + [60582] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4478), 1, + ACTIONS(4489), 3, anon_sym_COMMA, - ACTIONS(4481), 1, anon_sym_RPAREN, - STATE(1682), 1, - aux_sym_preproc_params_repeat1, - [60528] = 4, + anon_sym_COLON, + [60591] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3917), 1, + ACTIONS(4422), 1, anon_sym_COMMA, - ACTIONS(4483), 1, - anon_sym_SEMI, - STATE(1638), 1, - aux_sym_declaration_repeat1, - [60541] = 4, + ACTIONS(4491), 1, + anon_sym_RPAREN, + STATE(1633), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [60604] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4485), 1, + ACTIONS(4493), 1, anon_sym_COMMA, - ACTIONS(4488), 1, + ACTIONS(4496), 1, anon_sym_RPAREN, - STATE(1684), 1, - aux_sym_parameter_list_repeat1, - [60554] = 4, + STATE(1633), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [60617] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3917), 1, + ACTIONS(4498), 3, anon_sym_COMMA, - ACTIONS(4490), 1, - anon_sym_SEMI, - STATE(1612), 1, - aux_sym_declaration_repeat1, - [60567] = 4, + anon_sym_RPAREN, + anon_sym_COLON, + [60626] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3917), 1, + ACTIONS(3916), 1, anon_sym_COMMA, - ACTIONS(4492), 1, + ACTIONS(4500), 1, anon_sym_SEMI, - STATE(1638), 1, + STATE(1587), 1, aux_sym_declaration_repeat1, - [60580] = 4, + [60639] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4253), 1, + ACTIONS(4502), 1, anon_sym_COMMA, - ACTIONS(4494), 1, + ACTIONS(4505), 1, anon_sym_RBRACK_RBRACK, - STATE(1681), 1, + STATE(1636), 1, aux_sym_attribute_declaration_repeat1, - [60593] = 4, + [60652] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3917), 1, + ACTIONS(3916), 1, anon_sym_COMMA, - ACTIONS(4496), 1, + ACTIONS(4507), 1, anon_sym_SEMI, - STATE(1686), 1, + STATE(1587), 1, aux_sym_declaration_repeat1, - [60606] = 4, + [60665] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1775), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4509), 1, + sym_identifier, + STATE(1695), 1, + sym_variadic_parameter, + [60678] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4511), 1, + anon_sym_COMMA, + ACTIONS(4513), 1, + anon_sym_RPAREN, + STATE(1532), 1, + aux_sym__old_style_parameter_list_repeat1, + [60691] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3487), 1, + ACTIONS(3504), 1, anon_sym___attribute__, - ACTIONS(4498), 1, + ACTIONS(4515), 1, anon_sym_SEMI, - STATE(1987), 1, + STATE(1885), 1, sym_attribute_specifier, - [60619] = 4, + [60704] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3917), 1, + ACTIONS(3916), 1, anon_sym_COMMA, - ACTIONS(4500), 1, + ACTIONS(4517), 1, anon_sym_SEMI, - STATE(1638), 1, + STATE(1595), 1, aux_sym_declaration_repeat1, - [60632] = 4, + [60717] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3917), 1, + ACTIONS(4285), 1, anon_sym_COMMA, - ACTIONS(4502), 1, - anon_sym_SEMI, - STATE(1638), 1, - aux_sym_declaration_repeat1, - [60645] = 4, + ACTIONS(4519), 1, + anon_sym_RBRACK_RBRACK, + STATE(1636), 1, + aux_sym_attribute_declaration_repeat1, + [60730] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3261), 1, + ACTIONS(3127), 2, anon_sym_COMMA, - ACTIONS(4504), 1, - anon_sym_RPAREN, - STATE(1667), 1, - aux_sym_preproc_argument_list_repeat1, - [60658] = 3, - ACTIONS(3294), 1, - sym_comment, - ACTIONS(4506), 1, - aux_sym_preproc_include_token2, - ACTIONS(4508), 1, - sym_preproc_arg, - [60668] = 3, - ACTIONS(3294), 1, + anon_sym_RBRACE, + [60738] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4510), 1, - aux_sym_preproc_include_token2, - ACTIONS(4512), 1, - sym_preproc_arg, - [60678] = 3, - ACTIONS(3294), 1, + ACTIONS(4035), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [60746] = 3, + ACTIONS(3317), 1, sym_comment, - ACTIONS(4514), 1, + ACTIONS(4521), 1, aux_sym_preproc_include_token2, - ACTIONS(4516), 1, + ACTIONS(4523), 1, sym_preproc_arg, - [60688] = 3, + [60756] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, + ACTIONS(4525), 1, sym_identifier, - STATE(1581), 1, + STATE(1558), 1, sym_attribute, - [60698] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4520), 1, - anon_sym_LPAREN2, - STATE(398), 1, - sym_parenthesized_expression, - [60708] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4522), 1, - anon_sym_LPAREN2, - STATE(1714), 1, - sym_parenthesized_expression, - [60718] = 3, + [60766] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4520), 1, - anon_sym_LPAREN2, - STATE(397), 1, - sym_parenthesized_expression, - [60728] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(376), 1, - anon_sym_LBRACE, - STATE(164), 1, - sym_compound_statement, - [60738] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(41), 1, - anon_sym_LBRACE, - STATE(1566), 1, - sym_compound_statement, - [60748] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4524), 2, + ACTIONS(4505), 2, anon_sym_COMMA, anon_sym_RBRACK_RBRACK, - [60756] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4488), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [60764] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(41), 1, - anon_sym_LBRACE, - STATE(239), 1, - sym_compound_statement, [60774] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4526), 2, + ACTIONS(4527), 2, anon_sym_COMMA, anon_sym_RPAREN, [60782] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4528), 1, - sym_identifier, - ACTIONS(4530), 1, + ACTIONS(4529), 1, anon_sym_LPAREN2, + STATE(335), 1, + sym_parenthesized_expression, [60792] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(4531), 1, anon_sym_LPAREN2, - STATE(1907), 1, - sym_argument_list, + STATE(1855), 1, + sym_parenthesized_expression, [60802] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4522), 1, + ACTIONS(4531), 1, anon_sym_LPAREN2, - STATE(1773), 1, + STATE(1689), 1, sym_parenthesized_expression, - [60812] = 3, + [60812] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, + ACTIONS(4533), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [60820] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(376), 1, anon_sym_LBRACE, - STATE(1568), 1, + STATE(179), 1, sym_compound_statement, - [60822] = 3, + [60830] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4522), 1, + ACTIONS(4529), 1, anon_sym_LPAREN2, - STATE(1770), 1, + STATE(315), 1, sym_parenthesized_expression, - [60832] = 3, + [60840] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4522), 1, - anon_sym_LPAREN2, - STATE(1800), 1, - sym_parenthesized_expression, - [60842] = 3, + ACTIONS(41), 1, + anon_sym_LBRACE, + STATE(1518), 1, + sym_compound_statement, + [60850] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, + ACTIONS(376), 1, anon_sym_LBRACE, - STATE(290), 1, + STATE(206), 1, sym_compound_statement, - [60852] = 3, + [60860] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, + ACTIONS(376), 1, anon_sym_LBRACE, - STATE(1545), 1, + STATE(219), 1, sym_compound_statement, - [60862] = 3, + [60870] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym_LBRACE, - STATE(285), 1, + STATE(219), 1, sym_compound_statement, - [60872] = 3, + [60880] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4522), 1, + ACTIONS(4531), 1, anon_sym_LPAREN2, - STATE(1752), 1, + STATE(1719), 1, sym_parenthesized_expression, - [60882] = 3, + [60890] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4522), 1, + ACTIONS(4531), 1, anon_sym_LPAREN2, - STATE(1704), 1, + STATE(1724), 1, sym_parenthesized_expression, - [60892] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4532), 1, - anon_sym_COMMA, - ACTIONS(4534), 1, - anon_sym_RBRACE, - [60902] = 3, - ACTIONS(3294), 1, - sym_comment, - ACTIONS(4536), 1, - aux_sym_preproc_include_token2, - ACTIONS(4538), 1, - sym_preproc_arg, - [60912] = 3, + [60900] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4522), 1, + ACTIONS(4531), 1, anon_sym_LPAREN2, - STATE(2024), 1, + STATE(1751), 1, sym_parenthesized_expression, - [60922] = 3, + [60910] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(376), 1, + ACTIONS(41), 1, anon_sym_LBRACE, - STATE(232), 1, + STATE(181), 1, sym_compound_statement, - [60932] = 3, + [60920] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4522), 1, - anon_sym_LPAREN2, - STATE(1700), 1, - sym_parenthesized_expression, - [60942] = 3, + ACTIONS(41), 1, + anon_sym_LBRACE, + STATE(1476), 1, + sym_compound_statement, + [60930] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, - anon_sym_LPAREN2, - STATE(1781), 1, - sym_argument_list, - [60952] = 2, + ACTIONS(4535), 1, + anon_sym_COMMA, + ACTIONS(4537), 1, + anon_sym_RBRACE, + [60940] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4476), 2, + ACTIONS(3602), 1, + anon_sym_RBRACE, + ACTIONS(4535), 1, anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [60960] = 3, + [60950] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, - anon_sym_LBRACE, - STATE(1513), 1, - sym_compound_statement, - [60970] = 3, + ACTIONS(4539), 1, + sym_identifier, + ACTIONS(4541), 1, + anon_sym_LPAREN2, + [60960] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4520), 1, + ACTIONS(4531), 1, anon_sym_LPAREN2, - STATE(385), 1, + STATE(1706), 1, sym_parenthesized_expression, - [60980] = 3, + [60970] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym_LBRACE, - STATE(164), 1, + STATE(179), 1, sym_compound_statement, - [60990] = 3, + [60980] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4522), 1, + ACTIONS(4531), 1, anon_sym_LPAREN2, - STATE(1759), 1, + STATE(1673), 1, sym_parenthesized_expression, - [61000] = 3, + [60990] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4520), 1, + ACTIONS(4531), 1, anon_sym_LPAREN2, - STATE(384), 1, + STATE(1912), 1, sym_parenthesized_expression, + [61000] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym_LBRACE, + STATE(1480), 1, + sym_compound_statement, [61010] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, + ACTIONS(4543), 1, sym_identifier, - STATE(1620), 1, - sym_attribute, + ACTIONS(4545), 1, + anon_sym_RPAREN, [61020] = 3, - ACTIONS(3294), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(4540), 1, - aux_sym_preproc_include_token2, - ACTIONS(4542), 1, - sym_preproc_arg, + ACTIONS(41), 1, + anon_sym_LBRACE, + STATE(161), 1, + sym_compound_statement, [61030] = 3, - ACTIONS(3294), 1, + ACTIONS(3317), 1, sym_comment, - ACTIONS(4544), 1, + ACTIONS(4547), 1, aux_sym_preproc_include_token2, - ACTIONS(4546), 1, + ACTIONS(4549), 1, sym_preproc_arg, [61040] = 3, - ACTIONS(3294), 1, - sym_comment, - ACTIONS(4548), 1, - aux_sym_preproc_include_token2, - ACTIONS(4550), 1, - sym_preproc_arg, - [61050] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4552), 1, - sym_identifier, - ACTIONS(4554), 1, - anon_sym_RPAREN, - [61060] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4556), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [61068] = 3, + ACTIONS(4529), 1, + anon_sym_LPAREN2, + STATE(321), 1, + sym_parenthesized_expression, + [61050] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4520), 1, + ACTIONS(4531), 1, anon_sym_LPAREN2, - STATE(373), 1, + STATE(1722), 1, sym_parenthesized_expression, - [61078] = 3, + [61060] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4522), 1, + ACTIONS(4529), 1, anon_sym_LPAREN2, - STATE(1726), 1, + STATE(322), 1, sym_parenthesized_expression, - [61088] = 3, + [61070] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(376), 1, - anon_sym_LBRACE, - STATE(161), 1, - sym_compound_statement, - [61098] = 3, + ACTIONS(4525), 1, + sym_identifier, + STATE(1571), 1, + sym_attribute, + [61080] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4522), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - STATE(1830), 1, - sym_parenthesized_expression, - [61108] = 3, + STATE(1853), 1, + sym_argument_list, + [61090] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4520), 1, - anon_sym_LPAREN2, - STATE(374), 1, - sym_parenthesized_expression, - [61118] = 3, + ACTIONS(41), 1, + anon_sym_LBRACE, + STATE(1459), 1, + sym_compound_statement, + [61100] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, + ACTIONS(4525), 1, sym_identifier, - STATE(1723), 1, + STATE(1647), 1, sym_attribute, - [61128] = 3, + [61110] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3589), 1, - anon_sym_RBRACE, - ACTIONS(4532), 1, + ACTIONS(4551), 2, anon_sym_COMMA, - [61138] = 3, + anon_sym_RBRACK_RBRACK, + [61118] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4522), 1, + ACTIONS(4531), 1, anon_sym_LPAREN2, - STATE(1981), 1, + STATE(1668), 1, sym_parenthesized_expression, - [61148] = 2, + [61128] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3172), 2, + ACTIONS(3125), 2, anon_sym_COMMA, anon_sym_RBRACE, - [61156] = 3, + [61136] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, - anon_sym_LBRACE, - STATE(1517), 1, - sym_compound_statement, - [61166] = 2, + ACTIONS(4531), 1, + anon_sym_LPAREN2, + STATE(1653), 1, + sym_parenthesized_expression, + [61146] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4531), 1, + anon_sym_LPAREN2, + STATE(1929), 1, + sym_parenthesized_expression, + [61156] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3162), 2, + ACTIONS(3131), 2, anon_sym_COMMA, anon_sym_RBRACE, - [61174] = 2, + [61164] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3150), 2, + ACTIONS(4553), 2, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_RPAREN, + [61172] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym_LBRACE, + STATE(215), 1, + sym_compound_statement, [61182] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4558), 2, + ACTIONS(4555), 2, anon_sym_COMMA, anon_sym_SEMI, [61190] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4560), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [61198] = 3, + ACTIONS(4557), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [61198] = 3, + ACTIONS(3317), 1, + sym_comment, + ACTIONS(4560), 1, + aux_sym_preproc_include_token2, + ACTIONS(4562), 1, + sym_preproc_arg, + [61208] = 3, + ACTIONS(3317), 1, + sym_comment, + ACTIONS(4564), 1, + aux_sym_preproc_include_token2, + ACTIONS(4566), 1, + sym_preproc_arg, + [61218] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2352), 1, + anon_sym_LPAREN2, + STATE(1770), 1, + sym_argument_list, + [61228] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4267), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [61236] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym_LBRACE, + STATE(1488), 1, + sym_compound_statement, + [61246] = 3, + ACTIONS(3317), 1, + sym_comment, + ACTIONS(4568), 1, + aux_sym_preproc_include_token2, + ACTIONS(4570), 1, + sym_preproc_arg, + [61256] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4529), 1, + anon_sym_LPAREN2, + STATE(348), 1, + sym_parenthesized_expression, + [61266] = 3, + ACTIONS(3317), 1, + sym_comment, + ACTIONS(4572), 1, + aux_sym_preproc_include_token2, + ACTIONS(4574), 1, + sym_preproc_arg, + [61276] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4520), 1, + ACTIONS(4531), 1, anon_sym_LPAREN2, - STATE(389), 1, + STATE(1656), 1, sym_parenthesized_expression, - [61208] = 3, + [61286] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4522), 1, + ACTIONS(4529), 1, anon_sym_LPAREN2, - STATE(1737), 1, + STATE(350), 1, sym_parenthesized_expression, - [61218] = 3, + [61296] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4525), 1, + sym_identifier, + STATE(1537), 1, + sym_attribute, + [61306] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4520), 1, + ACTIONS(4576), 1, + sym_identifier, + ACTIONS(4578), 1, anon_sym_LPAREN2, - STATE(391), 1, - sym_parenthesized_expression, - [61228] = 3, + [61316] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(432), 1, - anon_sym_LBRACE, - STATE(214), 1, - sym_compound_statement, - [61238] = 3, - ACTIONS(3294), 1, + ACTIONS(4009), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [61324] = 3, + ACTIONS(3317), 1, sym_comment, - ACTIONS(4563), 1, + ACTIONS(4580), 1, aux_sym_preproc_include_token2, - ACTIONS(4565), 1, + ACTIONS(4582), 1, sym_preproc_arg, - [61248] = 3, + [61334] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - sym_identifier, - STATE(1672), 1, - sym_attribute, - [61258] = 2, + ACTIONS(432), 1, + anon_sym_LBRACE, + STATE(247), 1, + sym_compound_statement, + [61344] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4328), 2, + ACTIONS(3187), 2, anon_sym_COMMA, anon_sym_RPAREN, - [61266] = 3, - ACTIONS(3294), 1, - sym_comment, - ACTIONS(4567), 1, - aux_sym_preproc_include_token2, - ACTIONS(4569), 1, - sym_preproc_arg, - [61276] = 3, - ACTIONS(3294), 1, + [61352] = 3, + ACTIONS(3317), 1, sym_comment, - ACTIONS(4571), 1, + ACTIONS(4584), 1, aux_sym_preproc_include_token2, - ACTIONS(4573), 1, + ACTIONS(4586), 1, sym_preproc_arg, - [61286] = 3, - ACTIONS(3294), 1, + [61362] = 3, + ACTIONS(3317), 1, sym_comment, - ACTIONS(4575), 1, + ACTIONS(4588), 1, aux_sym_preproc_include_token2, - ACTIONS(4577), 1, + ACTIONS(4590), 1, sym_preproc_arg, - [61296] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(131), 1, - anon_sym_LBRACE, - STATE(77), 1, - sym_compound_statement, - [61306] = 3, + [61372] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4579), 1, - sym_identifier, - ACTIONS(4581), 1, + ACTIONS(4529), 1, anon_sym_LPAREN2, - [61316] = 2, + STATE(324), 1, + sym_parenthesized_expression, + [61382] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4481), 2, + ACTIONS(4440), 2, anon_sym_COMMA, anon_sym_RPAREN, - [61324] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4583), 2, - anon_sym_DOT_DOT_DOT, - sym_identifier, - [61332] = 3, - ACTIONS(3294), 1, + [61390] = 3, + ACTIONS(3317), 1, sym_comment, - ACTIONS(4585), 1, + ACTIONS(4592), 1, aux_sym_preproc_include_token2, - ACTIONS(4587), 1, + ACTIONS(4594), 1, sym_preproc_arg, - [61342] = 2, + [61400] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4589), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [61350] = 3, - ACTIONS(3294), 1, + ACTIONS(4529), 1, + anon_sym_LPAREN2, + STATE(326), 1, + sym_parenthesized_expression, + [61410] = 3, + ACTIONS(3317), 1, sym_comment, - ACTIONS(4591), 1, + ACTIONS(4596), 1, aux_sym_preproc_include_token2, - ACTIONS(4593), 1, + ACTIONS(4598), 1, sym_preproc_arg, - [61360] = 2, + [61420] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3122), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [61368] = 3, - ACTIONS(3294), 1, + ACTIONS(4600), 2, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [61428] = 3, + ACTIONS(3317), 1, sym_comment, - ACTIONS(4595), 1, + ACTIONS(4602), 1, aux_sym_preproc_include_token2, - ACTIONS(4597), 1, + ACTIONS(4604), 1, sym_preproc_arg, - [61378] = 3, - ACTIONS(3294), 1, + [61438] = 3, + ACTIONS(3317), 1, sym_comment, - ACTIONS(4599), 1, + ACTIONS(4606), 1, aux_sym_preproc_include_token2, - ACTIONS(4601), 1, + ACTIONS(4608), 1, sym_preproc_arg, - [61388] = 3, - ACTIONS(3), 1, + [61448] = 3, + ACTIONS(3317), 1, sym_comment, - ACTIONS(4520), 1, - anon_sym_LPAREN2, - STATE(401), 1, - sym_parenthesized_expression, - [61398] = 3, + ACTIONS(4610), 1, + aux_sym_preproc_include_token2, + ACTIONS(4612), 1, + sym_preproc_arg, + [61458] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(131), 1, + ACTIONS(432), 1, anon_sym_LBRACE, - STATE(96), 1, + STATE(198), 1, sym_compound_statement, - [61408] = 3, + [61468] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, - anon_sym_LBRACE, - STATE(232), 1, - sym_compound_statement, - [61418] = 3, + ACTIONS(4429), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [61476] = 3, + ACTIONS(3317), 1, + sym_comment, + ACTIONS(4614), 1, + aux_sym_preproc_include_token2, + ACTIONS(4616), 1, + sym_preproc_arg, + [61486] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(131), 1, anon_sym_LBRACE, - STATE(103), 1, + STATE(95), 1, sym_compound_statement, - [61428] = 3, + [61496] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(432), 1, anon_sym_LBRACE, - STATE(193), 1, + STATE(217), 1, sym_compound_statement, - [61438] = 2, + [61506] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3988), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [61446] = 2, + ACTIONS(131), 1, + anon_sym_LBRACE, + STATE(89), 1, + sym_compound_statement, + [61516] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4020), 2, + ACTIONS(3159), 2, anon_sym_COMMA, anon_sym_SEMI, - [61454] = 3, - ACTIONS(3294), 1, + [61524] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(131), 1, + anon_sym_LBRACE, + STATE(84), 1, + sym_compound_statement, + [61534] = 3, + ACTIONS(3317), 1, sym_comment, - ACTIONS(4603), 1, + ACTIONS(4618), 1, aux_sym_preproc_include_token2, - ACTIONS(4605), 1, + ACTIONS(4620), 1, sym_preproc_arg, - [61464] = 2, + [61544] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3158), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [61472] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4520), 1, + ACTIONS(4529), 1, anon_sym_LPAREN2, - STATE(402), 1, + STATE(341), 1, sym_parenthesized_expression, - [61482] = 3, - ACTIONS(3294), 1, + [61554] = 3, + ACTIONS(3317), 1, sym_comment, - ACTIONS(4607), 1, + ACTIONS(4622), 1, aux_sym_preproc_include_token2, - ACTIONS(4609), 1, + ACTIONS(4624), 1, sym_preproc_arg, - [61492] = 3, + [61564] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(432), 1, - anon_sym_LBRACE, - STATE(298), 1, - sym_compound_statement, - [61502] = 2, - ACTIONS(3), 1, + ACTIONS(4529), 1, + anon_sym_LPAREN2, + STATE(336), 1, + sym_parenthesized_expression, + [61574] = 2, + ACTIONS(3317), 1, sym_comment, - ACTIONS(4611), 1, - anon_sym_STAR, - [61509] = 2, + ACTIONS(4626), 1, + aux_sym_preproc_include_token2, + [61581] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4613), 1, - sym_identifier, - [61516] = 2, + ACTIONS(4628), 1, + anon_sym_STAR, + [61588] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4615), 1, + ACTIONS(4630), 1, aux_sym_preproc_if_token2, - [61523] = 2, + [61595] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4617), 1, - aux_sym_preproc_if_token2, - [61530] = 2, + ACTIONS(4632), 1, + anon_sym_RPAREN, + [61602] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4619), 1, + ACTIONS(4634), 1, anon_sym_RPAREN, - [61537] = 2, - ACTIONS(3294), 1, - sym_comment, - ACTIONS(4382), 1, - aux_sym_preproc_include_token2, - [61544] = 2, + [61609] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4621), 1, + ACTIONS(4636), 1, anon_sym_RPAREN, - [61551] = 2, + [61616] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4623), 1, - aux_sym_preproc_if_token2, - [61558] = 2, + ACTIONS(4638), 1, + anon_sym_RBRACE, + [61623] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4625), 1, + ACTIONS(4640), 1, aux_sym_preproc_if_token2, - [61565] = 2, + [61630] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4627), 1, - anon_sym_COLON, - [61572] = 2, - ACTIONS(3024), 1, - aux_sym_preproc_include_token2, - ACTIONS(3294), 1, + ACTIONS(4642), 1, + aux_sym_preproc_if_token2, + [61637] = 2, + ACTIONS(3), 1, sym_comment, - [61579] = 2, + ACTIONS(4644), 1, + anon_sym_SEMI, + [61644] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4629), 1, - sym_identifier, - [61586] = 2, + ACTIONS(4646), 1, + aux_sym_preproc_if_token2, + [61651] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4631), 1, - anon_sym_SEMI, - [61593] = 2, - ACTIONS(3294), 1, + ACTIONS(4648), 1, + aux_sym_preproc_if_token2, + [61658] = 2, + ACTIONS(3317), 1, sym_comment, - ACTIONS(4633), 1, + ACTIONS(4650), 1, aux_sym_preproc_include_token2, - [61600] = 2, + [61665] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4635), 1, + ACTIONS(4652), 1, aux_sym_preproc_if_token2, - [61607] = 2, + [61672] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4637), 1, + ACTIONS(4654), 1, aux_sym_preproc_if_token2, - [61614] = 2, + [61679] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4639), 1, - anon_sym_SEMI, - [61621] = 2, - ACTIONS(3020), 1, - aux_sym_preproc_include_token2, - ACTIONS(3294), 1, + ACTIONS(4656), 1, + aux_sym_preproc_if_token2, + [61686] = 2, + ACTIONS(3317), 1, sym_comment, - [61628] = 2, + ACTIONS(4658), 1, + aux_sym_preproc_include_token2, + [61693] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4641), 1, - anon_sym_COLON, - [61635] = 2, + ACTIONS(3093), 1, + anon_sym_SEMI, + [61700] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4643), 1, + ACTIONS(4660), 1, anon_sym_SEMI, - [61642] = 2, - ACTIONS(2130), 1, - aux_sym_preproc_include_token2, - ACTIONS(3294), 1, - sym_comment, - [61649] = 2, + [61707] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3126), 1, - anon_sym_COLON, - [61656] = 2, + ACTIONS(4662), 1, + aux_sym_preproc_if_token2, + [61714] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3084), 1, - anon_sym_COLON, - [61663] = 2, + ACTIONS(4664), 1, + anon_sym_SEMI, + [61721] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4645), 1, - aux_sym_preproc_if_token2, - [61670] = 2, + ACTIONS(3169), 1, + anon_sym_SEMI, + [61728] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4647), 1, + ACTIONS(4666), 1, anon_sym_RPAREN, - [61677] = 2, + [61735] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4649), 1, - anon_sym_RPAREN, - [61684] = 2, + ACTIONS(4668), 1, + sym_identifier, + [61742] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4651), 1, - anon_sym_SEMI, - [61691] = 2, + ACTIONS(4670), 1, + aux_sym_preproc_if_token2, + [61749] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4672), 1, + aux_sym_preproc_if_token2, + [61756] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4653), 1, + ACTIONS(4674), 1, anon_sym_COLON, - [61698] = 2, - ACTIONS(3294), 1, + [61763] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4655), 1, - aux_sym_preproc_include_token2, - [61705] = 2, + ACTIONS(3886), 1, + anon_sym_COMMA, + [61770] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3120), 1, - anon_sym_RPAREN, - [61712] = 2, - ACTIONS(3294), 1, + ACTIONS(3163), 1, + anon_sym_SEMI, + [61777] = 2, + ACTIONS(3317), 1, sym_comment, - ACTIONS(4657), 1, + ACTIONS(4676), 1, aux_sym_preproc_include_token2, - [61719] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3124), 1, - anon_sym_RPAREN, - [61726] = 2, + [61784] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3128), 1, - anon_sym_RPAREN, - [61733] = 2, + ACTIONS(4678), 1, + anon_sym_RBRACE, + [61791] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4659), 1, - anon_sym_RPAREN, - [61740] = 2, - ACTIONS(3294), 1, + ACTIONS(4680), 1, + anon_sym_SEMI, + [61798] = 2, + ACTIONS(3317), 1, sym_comment, - ACTIONS(4661), 1, + ACTIONS(4682), 1, aux_sym_preproc_include_token2, - [61747] = 2, + [61805] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4663), 1, + ACTIONS(4684), 1, anon_sym_RPAREN, - [61754] = 2, + [61812] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4665), 1, - anon_sym_RBRACK, - [61761] = 2, + ACTIONS(4686), 1, + sym_identifier, + [61819] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4667), 1, - aux_sym_preproc_if_token2, - [61768] = 2, + ACTIONS(4688), 1, + anon_sym_COLON, + [61826] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4669), 1, - aux_sym_preproc_if_token2, - [61775] = 2, - ACTIONS(3), 1, + ACTIONS(4690), 1, + anon_sym_RPAREN, + [61833] = 2, + ACTIONS(3317), 1, sym_comment, - ACTIONS(4671), 1, - aux_sym_preproc_if_token2, - [61782] = 2, - ACTIONS(3294), 1, + ACTIONS(4692), 1, + aux_sym_preproc_include_token2, + [61840] = 2, + ACTIONS(3317), 1, sym_comment, - ACTIONS(4673), 1, + ACTIONS(4694), 1, aux_sym_preproc_include_token2, - [61789] = 2, - ACTIONS(3294), 1, + [61847] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4696), 1, + anon_sym_STAR, + [61854] = 2, + ACTIONS(3317), 1, sym_comment, - ACTIONS(4675), 1, + ACTIONS(4347), 1, aux_sym_preproc_include_token2, - [61796] = 2, + [61861] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, - sym_identifier, - [61803] = 2, - ACTIONS(3294), 1, + ACTIONS(4698), 1, + anon_sym_SEMI, + [61868] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, + ACTIONS(4700), 1, + anon_sym_SEMI, + [61875] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4702), 1, + anon_sym_SEMI, + [61882] = 2, + ACTIONS(3317), 1, + sym_comment, + ACTIONS(4704), 1, aux_sym_preproc_include_token2, - [61810] = 2, + [61889] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4681), 1, - sym_identifier, - [61817] = 2, + ACTIONS(4706), 1, + aux_sym_preproc_if_token2, + [61896] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4683), 1, + ACTIONS(4708), 1, anon_sym_SEMI, - [61824] = 2, - ACTIONS(3294), 1, + [61903] = 2, + ACTIONS(3317), 1, sym_comment, - ACTIONS(4685), 1, + ACTIONS(4710), 1, aux_sym_preproc_include_token2, - [61831] = 2, + [61910] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4687), 1, + ACTIONS(4712), 1, aux_sym_preproc_if_token2, - [61838] = 2, + [61917] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4689), 1, - anon_sym_LPAREN2, - [61845] = 2, + ACTIONS(4714), 1, + aux_sym_preproc_if_token2, + [61924] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4691), 1, + ACTIONS(4716), 1, anon_sym_SEMI, - [61852] = 2, + [61931] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4693), 1, - anon_sym_SEMI, - [61859] = 2, + ACTIONS(4718), 1, + aux_sym_preproc_if_token2, + [61938] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3164), 1, - anon_sym_SEMI, - [61866] = 2, - ACTIONS(3294), 1, + ACTIONS(4720), 1, + anon_sym_COLON, + [61945] = 2, + ACTIONS(3317), 1, sym_comment, - ACTIONS(4695), 1, + ACTIONS(4722), 1, aux_sym_preproc_include_token2, - [61873] = 2, - ACTIONS(3028), 1, - aux_sym_preproc_include_token2, - ACTIONS(3294), 1, + [61952] = 2, + ACTIONS(3317), 1, sym_comment, - [61880] = 2, + ACTIONS(4724), 1, + aux_sym_preproc_include_token2, + [61959] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4697), 1, - aux_sym_preproc_if_token2, - [61887] = 2, - ACTIONS(3294), 1, + ACTIONS(4726), 1, + anon_sym_SEMI, + [61966] = 2, + ACTIONS(3317), 1, sym_comment, - ACTIONS(4699), 1, + ACTIONS(4305), 1, aux_sym_preproc_include_token2, - [61894] = 2, + [61973] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4701), 1, - aux_sym_preproc_if_token2, - [61901] = 2, - ACTIONS(3294), 1, - sym_comment, - ACTIONS(4703), 1, - aux_sym_preproc_include_token2, - [61908] = 2, + ACTIONS(3153), 1, + anon_sym_COLON, + [61980] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3168), 1, + ACTIONS(3171), 1, anon_sym_SEMI, - [61915] = 2, - ACTIONS(3294), 1, + [61987] = 2, + ACTIONS(3055), 1, + aux_sym_preproc_include_token2, + ACTIONS(3317), 1, sym_comment, - ACTIONS(4705), 1, + [61994] = 2, + ACTIONS(3317), 1, + sym_comment, + ACTIONS(4728), 1, aux_sym_preproc_include_token2, - [61922] = 2, - ACTIONS(3294), 1, + [62001] = 2, + ACTIONS(3317), 1, sym_comment, - ACTIONS(4707), 1, + ACTIONS(4730), 1, aux_sym_preproc_include_token2, - [61929] = 2, - ACTIONS(3), 1, + [62008] = 2, + ACTIONS(3059), 1, + aux_sym_preproc_include_token2, + ACTIONS(3317), 1, sym_comment, - ACTIONS(4709), 1, - anon_sym_SEMI, - [61936] = 2, - ACTIONS(3294), 1, + [62015] = 2, + ACTIONS(3317), 1, sym_comment, - ACTIONS(4711), 1, + ACTIONS(4732), 1, aux_sym_preproc_include_token2, - [61943] = 2, + [62022] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4713), 1, + ACTIONS(4734), 1, aux_sym_preproc_if_token2, - [61950] = 2, + [62029] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4715), 1, + ACTIONS(4736), 1, sym_identifier, - [61957] = 2, + [62036] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4717), 1, + ACTIONS(4738), 1, sym_identifier, - [61964] = 2, + [62043] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3080), 1, - anon_sym_SEMI, - [61971] = 2, + ACTIONS(4740), 1, + sym_identifier, + [62050] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4719), 1, + ACTIONS(3095), 1, anon_sym_SEMI, - [61978] = 2, + [62057] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4721), 1, - sym_identifier, - [61985] = 2, + ACTIONS(4742), 1, + anon_sym_SEMI, + [62064] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3086), 1, + ACTIONS(4744), 1, anon_sym_RPAREN, - [61992] = 2, - ACTIONS(3), 1, + [62071] = 2, + ACTIONS(3317), 1, sym_comment, - ACTIONS(4723), 1, - anon_sym_RPAREN, - [61999] = 2, + ACTIONS(4746), 1, + aux_sym_preproc_include_token2, + [62078] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4725), 1, - aux_sym_preproc_if_token2, - [62006] = 2, - ACTIONS(3), 1, + ACTIONS(4748), 1, + sym_identifier, + [62085] = 2, + ACTIONS(3317), 1, sym_comment, - ACTIONS(3078), 1, - anon_sym_SEMI, - [62013] = 2, + ACTIONS(4317), 1, + aux_sym_preproc_include_token2, + [62092] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4727), 1, + ACTIONS(4750), 1, sym_identifier, - [62020] = 2, + [62099] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4729), 1, - anon_sym_RPAREN, - [62027] = 2, - ACTIONS(3294), 1, + ACTIONS(4752), 1, + aux_sym_preproc_if_token2, + [62106] = 2, + ACTIONS(3317), 1, sym_comment, - ACTIONS(4731), 1, + ACTIONS(4754), 1, aux_sym_preproc_include_token2, - [62034] = 2, - ACTIONS(3294), 1, + [62113] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4334), 1, - aux_sym_preproc_include_token2, - [62041] = 2, + ACTIONS(3161), 1, + anon_sym_RPAREN, + [62120] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3118), 1, - anon_sym_COLON, - [62048] = 2, + ACTIONS(3157), 1, + anon_sym_RPAREN, + [62127] = 2, + ACTIONS(3317), 1, + sym_comment, + ACTIONS(4756), 1, + aux_sym_preproc_include_token2, + [62134] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4733), 1, - anon_sym_SEMI, - [62055] = 2, + ACTIONS(4758), 1, + anon_sym_RPAREN, + [62141] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4735), 1, - aux_sym_preproc_if_token2, - [62062] = 2, + ACTIONS(3067), 1, + anon_sym_RBRACE, + [62148] = 2, + ACTIONS(3041), 1, + aux_sym_preproc_include_token2, + ACTIONS(3317), 1, + sym_comment, + [62155] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4737), 1, + ACTIONS(3151), 1, anon_sym_RPAREN, - [62069] = 2, + [62162] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4739), 1, - anon_sym_SEMI, - [62076] = 2, + ACTIONS(4760), 1, + sym_identifier, + [62169] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4741), 1, - anon_sym_LPAREN2, - [62083] = 2, + ACTIONS(4762), 1, + anon_sym_RBRACK, + [62176] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4743), 1, + ACTIONS(4764), 1, anon_sym_SEMI, - [62090] = 2, + [62183] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4745), 1, + ACTIONS(4766), 1, anon_sym_RPAREN, - [62097] = 2, + [62190] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4747), 1, - anon_sym_RPAREN, - [62104] = 2, - ACTIONS(3294), 1, + ACTIONS(4768), 1, + aux_sym_preproc_if_token2, + [62197] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4749), 1, - aux_sym_preproc_include_token2, - [62111] = 2, + ACTIONS(3149), 1, + anon_sym_RPAREN, + [62204] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4751), 1, + ACTIONS(4770), 1, sym_identifier, - [62118] = 2, + [62211] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4753), 1, - anon_sym_RBRACE, - [62125] = 2, + ACTIONS(4772), 1, + sym_identifier, + [62218] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4755), 1, - anon_sym_RBRACE, - [62132] = 2, + ACTIONS(4774), 1, + anon_sym_RPAREN, + [62225] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4757), 1, - aux_sym_preproc_if_token2, - [62139] = 2, + ACTIONS(4776), 1, + anon_sym_LPAREN2, + [62232] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4759), 1, - anon_sym_COLON, - [62146] = 2, + ACTIONS(4778), 1, + anon_sym_SEMI, + [62239] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4761), 1, - anon_sym_RBRACE, - [62153] = 2, + ACTIONS(3145), 1, + anon_sym_SEMI, + [62246] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4763), 1, - anon_sym_COMMA, - [62160] = 2, + ACTIONS(4780), 1, + anon_sym_STAR, + [62253] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4765), 1, - aux_sym_preproc_if_token2, - [62167] = 2, + ACTIONS(4782), 1, + anon_sym_SEMI, + [62260] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4767), 1, - anon_sym_RPAREN, - [62174] = 2, + ACTIONS(4784), 1, + anon_sym_COLON, + [62267] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4769), 1, - anon_sym_RPAREN, - [62181] = 2, + ACTIONS(4786), 1, + anon_sym_LPAREN2, + [62274] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3132), 1, + ACTIONS(3141), 1, anon_sym_SEMI, - [62188] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4771), 1, - anon_sym_RPAREN, - [62195] = 2, + [62281] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3152), 1, + ACTIONS(4788), 1, anon_sym_SEMI, - [62202] = 2, + [62288] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4773), 1, - anon_sym_SEMI, - [62209] = 2, + ACTIONS(4790), 1, + sym_identifier, + [62295] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4775), 1, + ACTIONS(4792), 1, aux_sym_preproc_if_token2, - [62216] = 2, + [62302] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4777), 1, - sym_identifier, - [62223] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4779), 1, - sym_primitive_type, - [62230] = 2, + ACTIONS(4794), 1, + anon_sym_COLON, + [62309] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4781), 1, - aux_sym_preproc_if_token2, - [62237] = 2, + ACTIONS(4796), 1, + anon_sym_RPAREN, + [62316] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3589), 1, - anon_sym_RBRACE, - [62244] = 2, + ACTIONS(3135), 1, + anon_sym_SEMI, + [62323] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4783), 1, + ACTIONS(4798), 1, sym_identifier, - [62251] = 2, + [62330] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4785), 1, - sym_identifier, - [62258] = 2, + ACTIONS(4800), 1, + aux_sym_preproc_if_token2, + [62337] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4787), 1, + ACTIONS(3143), 1, anon_sym_SEMI, - [62265] = 2, - ACTIONS(3294), 1, - sym_comment, - ACTIONS(4465), 1, - aux_sym_preproc_include_token2, - [62272] = 2, + [62344] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4789), 1, - anon_sym_RBRACE, - [62279] = 2, - ACTIONS(3294), 1, + ACTIONS(4802), 1, + sym_identifier, + [62351] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4791), 1, - aux_sym_preproc_include_token2, - [62286] = 2, + ACTIONS(4804), 1, + anon_sym_STAR, + [62358] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4793), 1, + ACTIONS(4806), 1, sym_identifier, - [62293] = 2, + [62365] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3868), 1, - anon_sym_COMMA, - [62300] = 2, + ACTIONS(3155), 1, + anon_sym_RPAREN, + [62372] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4795), 1, + ACTIONS(4808), 1, anon_sym_RPAREN, - [62307] = 2, + [62379] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4797), 1, + ACTIONS(4810), 1, anon_sym_RPAREN, - [62314] = 2, + [62386] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4799), 1, - aux_sym_preproc_if_token2, - [62321] = 2, + ACTIONS(3167), 1, + anon_sym_RPAREN, + [62393] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3192), 1, - anon_sym_RPAREN, - [62328] = 2, + ACTIONS(4812), 1, + anon_sym_while, + [62400] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3148), 1, - anon_sym_RPAREN, - [62335] = 2, + ACTIONS(3133), 1, + anon_sym_SEMI, + [62407] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4801), 1, + ACTIONS(4814), 1, anon_sym_RPAREN, - [62342] = 2, + [62414] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3156), 1, + ACTIONS(3097), 1, anon_sym_COLON, - [62349] = 2, + [62421] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4803), 1, - aux_sym_preproc_if_token2, - [62356] = 2, + ACTIONS(4816), 1, + anon_sym_RBRACE, + [62428] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4818), 1, + anon_sym_RPAREN, + [62435] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4805), 1, + ACTIONS(4820), 1, aux_sym_preproc_if_token2, - [62363] = 2, + [62442] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4807), 1, + ACTIONS(4822), 1, anon_sym_SEMI, - [62370] = 2, + [62449] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4809), 1, + ACTIONS(4824), 1, + anon_sym_COMMA, + [62456] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4826), 1, anon_sym_SEMI, - [62377] = 2, - ACTIONS(3294), 1, + [62463] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4811), 1, - aux_sym_preproc_include_token2, - [62384] = 2, + ACTIONS(4828), 1, + aux_sym_preproc_if_token2, + [62470] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4813), 1, - anon_sym_RPAREN, - [62391] = 2, + ACTIONS(4830), 1, + aux_sym_preproc_if_token2, + [62477] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4815), 1, - anon_sym_RPAREN, - [62398] = 2, + ACTIONS(3137), 1, + anon_sym_SEMI, + [62484] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4817), 1, - anon_sym_STAR, - [62405] = 2, + ACTIONS(4832), 1, + aux_sym_preproc_if_token2, + [62491] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4819), 1, - anon_sym_RBRACK, - [62412] = 2, + ACTIONS(4834), 1, + anon_sym_SEMI, + [62498] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4821), 1, + ACTIONS(4836), 1, sym_identifier, - [62419] = 2, + [62505] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4823), 1, - anon_sym_RPAREN, - [62426] = 2, + ACTIONS(4838), 1, + sym_identifier, + [62512] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4825), 1, + ACTIONS(4840), 1, aux_sym_preproc_if_token2, - [62433] = 2, + [62519] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4827), 1, + ACTIONS(4842), 1, anon_sym_RBRACE, - [62440] = 2, + [62526] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4829), 1, + ACTIONS(4844), 1, aux_sym_preproc_if_token2, - [62447] = 2, + [62533] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4831), 1, + ACTIONS(4846), 1, aux_sym_preproc_if_token2, - [62454] = 2, + [62540] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4833), 1, + ACTIONS(4848), 1, aux_sym_preproc_if_token2, - [62461] = 2, + [62547] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4835), 1, - sym_identifier, - [62468] = 2, + ACTIONS(4850), 1, + aux_sym_preproc_if_token2, + [62554] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4837), 1, - sym_identifier, - [62475] = 2, + ACTIONS(4852), 1, + anon_sym_RPAREN, + [62561] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4839), 1, - anon_sym_COLON, - [62482] = 2, - ACTIONS(3294), 1, - sym_comment, - ACTIONS(4841), 1, - aux_sym_preproc_include_token2, - [62489] = 2, + ACTIONS(3179), 1, + anon_sym_RPAREN, + [62568] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3140), 1, - anon_sym_SEMI, - [62496] = 2, + ACTIONS(4854), 1, + anon_sym_RBRACE, + [62575] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3170), 1, + ACTIONS(3181), 1, anon_sym_COLON, - [62503] = 2, - ACTIONS(3), 1, + [62582] = 2, + ACTIONS(3317), 1, sym_comment, - ACTIONS(4843), 1, - aux_sym_preproc_if_token2, - [62510] = 2, + ACTIONS(4856), 1, + aux_sym_preproc_include_token2, + [62589] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4845), 1, - aux_sym_preproc_if_token2, - [62517] = 2, + ACTIONS(4858), 1, + anon_sym_RPAREN, + [62596] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4847), 1, + ACTIONS(4860), 1, sym_identifier, - [62524] = 2, + [62603] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4849), 1, + ACTIONS(4862), 1, sym_identifier, - [62531] = 2, - ACTIONS(3046), 1, - aux_sym_preproc_include_token2, - ACTIONS(3294), 1, - sym_comment, - [62538] = 2, + [62610] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4851), 1, - sym_identifier, - [62545] = 2, + ACTIONS(3183), 1, + anon_sym_RPAREN, + [62617] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4853), 1, - anon_sym_SEMI, - [62552] = 2, + ACTIONS(4864), 1, + anon_sym_RBRACK, + [62624] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4855), 1, - anon_sym_RBRACE, - [62559] = 2, + ACTIONS(4866), 1, + aux_sym_preproc_if_token2, + [62631] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4857), 1, - aux_sym_preproc_if_token2, - [62566] = 2, + ACTIONS(4868), 1, + anon_sym_RPAREN, + [62638] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4859), 1, + ACTIONS(4870), 1, aux_sym_preproc_if_token2, - [62573] = 2, + [62645] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4861), 1, + ACTIONS(4872), 1, aux_sym_preproc_if_token2, - [62580] = 2, + [62652] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4863), 1, - sym_identifier, - [62587] = 2, + ACTIONS(4874), 1, + anon_sym_SEMI, + [62659] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4865), 1, - anon_sym_RPAREN, - [62594] = 2, + ACTIONS(4876), 1, + sym_identifier, + [62666] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4867), 1, + ACTIONS(4878), 1, aux_sym_preproc_if_token2, - [62601] = 2, + [62673] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4869), 1, - aux_sym_preproc_if_token2, - [62608] = 2, + ACTIONS(4880), 1, + anon_sym_SEMI, + [62680] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3068), 1, - anon_sym_RBRACE, - [62615] = 2, + ACTIONS(3191), 1, + anon_sym_RPAREN, + [62687] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4871), 1, - anon_sym_LPAREN2, - [62622] = 2, - ACTIONS(3), 1, + ACTIONS(4882), 1, + anon_sym_RPAREN, + [62694] = 2, + ACTIONS(3037), 1, + aux_sym_preproc_include_token2, + ACTIONS(3317), 1, sym_comment, - ACTIONS(3076), 1, - anon_sym_SEMI, - [62629] = 2, - ACTIONS(3), 1, + [62701] = 2, + ACTIONS(3317), 1, sym_comment, - ACTIONS(4873), 1, - sym_identifier, - [62636] = 2, + ACTIONS(4884), 1, + aux_sym_preproc_include_token2, + [62708] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4875), 1, - anon_sym_STAR, - [62643] = 2, + ACTIONS(4886), 1, + aux_sym_preproc_if_token2, + [62715] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3138), 1, - anon_sym_SEMI, - [62650] = 2, + ACTIONS(4888), 1, + anon_sym_RBRACE, + [62722] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4877), 1, + ACTIONS(4890), 1, aux_sym_preproc_if_token2, - [62657] = 2, + [62729] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4879), 1, + ACTIONS(4892), 1, aux_sym_preproc_if_token2, - [62664] = 2, + [62736] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4881), 1, + ACTIONS(4894), 1, sym_identifier, - [62671] = 2, + [62743] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3088), 1, - anon_sym_SEMI, - [62678] = 2, + ACTIONS(4896), 1, + aux_sym_preproc_if_token2, + [62750] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4883), 1, + ACTIONS(4898), 1, anon_sym_RPAREN, - [62685] = 2, + [62757] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4885), 1, - anon_sym_RPAREN, - [62692] = 2, + ACTIONS(4900), 1, + aux_sym_preproc_if_token2, + [62764] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4887), 1, - anon_sym_SEMI, - [62699] = 2, - ACTIONS(3294), 1, + ACTIONS(4902), 1, + aux_sym_preproc_if_token2, + [62771] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4889), 1, - aux_sym_preproc_include_token2, - [62706] = 2, + ACTIONS(4904), 1, + sym_identifier, + [62778] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4891), 1, + ACTIONS(4906), 1, aux_sym_preproc_if_token2, - [62713] = 2, + [62785] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4893), 1, + ACTIONS(4908), 1, aux_sym_preproc_if_token2, - [62720] = 2, + [62792] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4895), 1, + ACTIONS(4910), 1, aux_sym_preproc_if_token2, - [62727] = 2, + [62799] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4897), 1, - anon_sym_COLON, - [62734] = 2, + ACTIONS(4537), 1, + anon_sym_RBRACE, + [62806] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4899), 1, + ACTIONS(4912), 1, sym_identifier, - [62741] = 2, + [62813] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4901), 1, + ACTIONS(4914), 1, sym_identifier, - [62748] = 2, + [62820] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4903), 1, - sym_identifier, - [62755] = 2, + ACTIONS(4916), 1, + anon_sym_LPAREN2, + [62827] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4905), 1, + ACTIONS(4918), 1, sym_identifier, - [62762] = 2, + [62834] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4534), 1, - anon_sym_RBRACE, - [62769] = 2, + ACTIONS(4535), 1, + anon_sym_COMMA, + [62841] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4907), 1, + ACTIONS(4920), 1, anon_sym_SEMI, - [62776] = 2, + [62848] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4909), 1, + ACTIONS(4922), 1, sym_identifier, - [62783] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3160), 1, - anon_sym_SEMI, - [62790] = 2, + [62855] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4911), 1, - anon_sym_while, - [62797] = 2, + ACTIONS(4924), 1, + sym_identifier, + [62862] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4913), 1, + ACTIONS(4926), 1, aux_sym_preproc_if_token2, - [62804] = 2, + [62869] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4915), 1, - aux_sym_preproc_if_token2, - [62811] = 2, + ACTIONS(3201), 1, + anon_sym_RPAREN, + [62876] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4532), 1, - anon_sym_COMMA, - [62818] = 2, + ACTIONS(4928), 1, + anon_sym_SEMI, + [62883] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4917), 1, - anon_sym_LPAREN2, - [62825] = 2, + ACTIONS(4930), 1, + sym_primitive_type, + [62890] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4919), 1, - sym_identifier, - [62832] = 2, + ACTIONS(4932), 1, + anon_sym_RPAREN, + [62897] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4921), 1, - aux_sym_preproc_if_token2, - [62839] = 2, + ACTIONS(4934), 1, + anon_sym_RPAREN, + [62904] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4923), 1, + ACTIONS(4936), 1, aux_sym_preproc_if_token2, - [62846] = 2, + [62911] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4925), 1, - aux_sym_preproc_if_token2, - [62853] = 2, - ACTIONS(3), 1, + ACTIONS(3602), 1, + anon_sym_RBRACE, + [62918] = 2, + ACTIONS(2153), 1, + aux_sym_preproc_include_token2, + ACTIONS(3317), 1, sym_comment, - ACTIONS(4927), 1, - sym_identifier, - [62860] = 2, + [62925] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4929), 1, + ACTIONS(4938), 1, aux_sym_preproc_if_token2, - [62867] = 2, + [62932] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3154), 1, - anon_sym_SEMI, - [62874] = 2, + ACTIONS(4940), 1, + aux_sym_preproc_if_token2, + [62939] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4931), 1, + ACTIONS(4942), 1, aux_sym_preproc_if_token2, - [62881] = 2, + [62946] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4933), 1, - sym_identifier, - [62888] = 2, + ACTIONS(4944), 1, + anon_sym_COLON, + [62953] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4935), 1, - anon_sym_SEMI, - [62895] = 2, + ACTIONS(4946), 1, + sym_identifier, + [62960] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4937), 1, + ACTIONS(4948), 1, anon_sym_SEMI, - [62902] = 2, + [62967] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4939), 1, - anon_sym_SEMI, - [62909] = 2, + ACTIONS(4950), 1, + anon_sym_RPAREN, + [62974] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4941), 1, - sym_identifier, - [62916] = 2, + ACTIONS(4952), 1, + aux_sym_preproc_if_token2, + [62981] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4943), 1, + ACTIONS(4954), 1, sym_identifier, - [62923] = 2, + [62988] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4945), 1, + ACTIONS(4956), 1, sym_identifier, - [62930] = 2, + [62995] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3142), 1, - anon_sym_RPAREN, - [62937] = 2, + ACTIONS(4958), 1, + anon_sym_SEMI, + [63002] = 2, + ACTIONS(3317), 1, + sym_comment, + ACTIONS(4435), 1, + aux_sym_preproc_include_token2, + [63009] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4947), 1, - anon_sym_RPAREN, - [62944] = 2, + ACTIONS(4960), 1, + sym_identifier, + [63016] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4949), 1, - anon_sym_SEMI, - [62951] = 2, + ACTIONS(4962), 1, + anon_sym_LPAREN2, + [63023] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4951), 1, - anon_sym_RPAREN, - [62958] = 2, + ACTIONS(4964), 1, + ts_builtin_sym_end, + [63030] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4953), 1, + ACTIONS(4966), 1, anon_sym_LPAREN2, - [62965] = 2, + [63037] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4955), 1, + ACTIONS(4968), 1, anon_sym_LPAREN2, - [62972] = 2, + [63044] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3134), 1, - anon_sym_RPAREN, - [62979] = 2, - ACTIONS(3294), 1, + ACTIONS(4970), 1, + aux_sym_preproc_if_token2, + [63051] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4957), 1, - aux_sym_preproc_include_token2, - [62986] = 2, + ACTIONS(4972), 1, + sym_primitive_type, + [63058] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4959), 1, - anon_sym_STAR, - [62993] = 2, + ACTIONS(4974), 1, + aux_sym_preproc_if_token2, + [63065] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4961), 1, + ACTIONS(4976), 1, aux_sym_preproc_if_token2, - [63000] = 2, + [63072] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4963), 1, + ACTIONS(4978), 1, anon_sym_RPAREN, - [63007] = 2, + [63079] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4965), 1, - aux_sym_preproc_if_token2, - [63014] = 2, - ACTIONS(3294), 1, - sym_comment, - ACTIONS(4249), 1, - aux_sym_preproc_include_token2, - [63021] = 2, + ACTIONS(4980), 1, + anon_sym_LPAREN2, + [63086] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3196), 1, - anon_sym_RPAREN, - [63028] = 2, + ACTIONS(4982), 1, + anon_sym_LPAREN2, + [63093] = 2, + ACTIONS(3317), 1, + sym_comment, + ACTIONS(4984), 1, + aux_sym_preproc_include_token2, + [63100] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4967), 1, + ACTIONS(4986), 1, anon_sym_while, - [63035] = 2, + [63107] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4969), 1, - ts_builtin_sym_end, - [63042] = 2, + ACTIONS(4988), 1, + anon_sym_LPAREN2, + [63114] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4971), 1, - aux_sym_preproc_if_token2, - [63049] = 2, + ACTIONS(4990), 1, + sym_identifier, + [63121] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4973), 1, - aux_sym_preproc_if_token2, - [63056] = 2, + ACTIONS(4992), 1, + anon_sym_SEMI, + [63128] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3166), 1, - anon_sym_RPAREN, - [63063] = 2, + ACTIONS(4994), 1, + anon_sym_SEMI, + [63135] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4975), 1, - anon_sym_LPAREN2, - [63070] = 2, + ACTIONS(4996), 1, + aux_sym_preproc_if_token2, + [63142] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4977), 1, - anon_sym_LPAREN2, - [63077] = 2, + ACTIONS(4998), 1, + sym_identifier, + [63149] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3090), 1, + ACTIONS(3173), 1, anon_sym_COLON, - [63084] = 2, + [63156] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4979), 1, - anon_sym_LPAREN2, - [63091] = 2, + ACTIONS(5000), 1, + anon_sym_RPAREN, + [63163] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4981), 1, - sym_identifier, - [63098] = 2, + ACTIONS(5002), 1, + anon_sym_LPAREN2, + [63170] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4983), 1, + ACTIONS(5004), 1, anon_sym_LPAREN2, - [63105] = 2, + [63177] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4985), 1, - anon_sym_SEMI, - [63112] = 2, + ACTIONS(5006), 1, + sym_identifier, + [63184] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4987), 1, - anon_sym_SEMI, - [63119] = 2, + ACTIONS(5008), 1, + anon_sym_COLON, + [63191] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4989), 1, + ACTIONS(5010), 1, anon_sym_while, - [63126] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4991), 1, - anon_sym_LPAREN2, - [63133] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4993), 1, - sym_primitive_type, - [63140] = 2, + [63198] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4995), 1, + ACTIONS(3185), 1, anon_sym_COLON, - [63147] = 2, + [63205] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4997), 1, - aux_sym_preproc_if_token2, - [63154] = 2, + ACTIONS(5012), 1, + sym_identifier, + [63212] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4999), 1, + ACTIONS(5014), 1, anon_sym_RPAREN, - [63161] = 2, + [63219] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5001), 1, - sym_identifier, - [63168] = 2, - ACTIONS(2134), 1, + ACTIONS(5016), 1, + anon_sym_RPAREN, + [63226] = 2, + ACTIONS(3317), 1, + sym_comment, + ACTIONS(5018), 1, aux_sym_preproc_include_token2, - ACTIONS(3294), 1, + [63233] = 2, + ACTIONS(3), 1, sym_comment, - [63175] = 2, + ACTIONS(3147), 1, + anon_sym_COLON, + [63240] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5003), 1, - anon_sym_while, - [63182] = 2, + ACTIONS(3189), 1, + anon_sym_SEMI, + [63247] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5005), 1, - aux_sym_preproc_if_token2, - [63189] = 2, + ACTIONS(5020), 1, + anon_sym_while, + [63254] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5007), 1, + ACTIONS(5022), 1, anon_sym_LPAREN2, - [63196] = 2, + [63261] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5009), 1, + ACTIONS(5024), 1, anon_sym_LPAREN2, - [63203] = 2, + [63268] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5011), 1, - anon_sym_SEMI, - [63210] = 2, + ACTIONS(5026), 1, + anon_sym_RPAREN, + [63275] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5013), 1, + ACTIONS(5028), 1, anon_sym_LPAREN2, - [63217] = 2, + [63282] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5015), 1, + ACTIONS(5030), 1, anon_sym_LPAREN2, - [63224] = 2, + [63289] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5017), 1, - anon_sym_RPAREN, - [63231] = 2, + ACTIONS(5032), 1, + sym_identifier, + [63296] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5019), 1, - anon_sym_LPAREN2, - [63238] = 2, + ACTIONS(5034), 1, + sym_identifier, + [63303] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5021), 1, - sym_identifier, - [63245] = 2, + ACTIONS(5036), 1, + anon_sym_LPAREN2, + [63310] = 2, + ACTIONS(2149), 1, + aux_sym_preproc_include_token2, + ACTIONS(3317), 1, + sym_comment, + [63317] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5023), 1, + ACTIONS(5038), 1, sym_identifier, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(498)] = 0, - [SMALL_STATE(499)] = 115, - [SMALL_STATE(500)] = 230, - [SMALL_STATE(501)] = 345, - [SMALL_STATE(502)] = 460, - [SMALL_STATE(503)] = 575, - [SMALL_STATE(504)] = 690, - [SMALL_STATE(505)] = 805, - [SMALL_STATE(506)] = 920, - [SMALL_STATE(507)] = 1032, - [SMALL_STATE(508)] = 1141, - [SMALL_STATE(509)] = 1248, - [SMALL_STATE(510)] = 1357, - [SMALL_STATE(511)] = 1466, - [SMALL_STATE(512)] = 1575, - [SMALL_STATE(513)] = 1684, - [SMALL_STATE(514)] = 1793, - [SMALL_STATE(515)] = 1902, - [SMALL_STATE(516)] = 2011, - [SMALL_STATE(517)] = 2120, - [SMALL_STATE(518)] = 2227, - [SMALL_STATE(519)] = 2336, - [SMALL_STATE(520)] = 2445, - [SMALL_STATE(521)] = 2554, - [SMALL_STATE(522)] = 2663, - [SMALL_STATE(523)] = 2772, - [SMALL_STATE(524)] = 2881, - [SMALL_STATE(525)] = 2990, - [SMALL_STATE(526)] = 3099, - [SMALL_STATE(527)] = 3208, - [SMALL_STATE(528)] = 3317, - [SMALL_STATE(529)] = 3426, - [SMALL_STATE(530)] = 3535, - [SMALL_STATE(531)] = 3642, - [SMALL_STATE(532)] = 3751, - [SMALL_STATE(533)] = 3860, - [SMALL_STATE(534)] = 3969, - [SMALL_STATE(535)] = 4078, - [SMALL_STATE(536)] = 4182, - [SMALL_STATE(537)] = 4288, - [SMALL_STATE(538)] = 4394, - [SMALL_STATE(539)] = 4498, - [SMALL_STATE(540)] = 4602, - [SMALL_STATE(541)] = 4706, - [SMALL_STATE(542)] = 4812, - [SMALL_STATE(543)] = 4916, - [SMALL_STATE(544)] = 5024, - [SMALL_STATE(545)] = 5132, - [SMALL_STATE(546)] = 5222, - [SMALL_STATE(547)] = 5326, - [SMALL_STATE(548)] = 5430, - [SMALL_STATE(549)] = 5538, - [SMALL_STATE(550)] = 5642, - [SMALL_STATE(551)] = 5746, - [SMALL_STATE(552)] = 5850, - [SMALL_STATE(553)] = 5958, - [SMALL_STATE(554)] = 6061, - [SMALL_STATE(555)] = 6164, - [SMALL_STATE(556)] = 6267, - [SMALL_STATE(557)] = 6370, - [SMALL_STATE(558)] = 6473, - [SMALL_STATE(559)] = 6576, - [SMALL_STATE(560)] = 6679, - [SMALL_STATE(561)] = 6782, - [SMALL_STATE(562)] = 6885, - [SMALL_STATE(563)] = 6986, - [SMALL_STATE(564)] = 7089, - [SMALL_STATE(565)] = 7192, - [SMALL_STATE(566)] = 7295, - [SMALL_STATE(567)] = 7398, - [SMALL_STATE(568)] = 7501, - [SMALL_STATE(569)] = 7604, - [SMALL_STATE(570)] = 7707, - [SMALL_STATE(571)] = 7810, - [SMALL_STATE(572)] = 7913, - [SMALL_STATE(573)] = 8016, - [SMALL_STATE(574)] = 8117, - [SMALL_STATE(575)] = 8220, - [SMALL_STATE(576)] = 8323, - [SMALL_STATE(577)] = 8426, - [SMALL_STATE(578)] = 8529, - [SMALL_STATE(579)] = 8632, - [SMALL_STATE(580)] = 8735, - [SMALL_STATE(581)] = 8838, - [SMALL_STATE(582)] = 8941, - [SMALL_STATE(583)] = 9044, - [SMALL_STATE(584)] = 9147, - [SMALL_STATE(585)] = 9248, - [SMALL_STATE(586)] = 9351, - [SMALL_STATE(587)] = 9452, - [SMALL_STATE(588)] = 9553, - [SMALL_STATE(589)] = 9656, - [SMALL_STATE(590)] = 9757, - [SMALL_STATE(591)] = 9860, - [SMALL_STATE(592)] = 9963, - [SMALL_STATE(593)] = 10066, - [SMALL_STATE(594)] = 10169, - [SMALL_STATE(595)] = 10272, - [SMALL_STATE(596)] = 10375, - [SMALL_STATE(597)] = 10476, - [SMALL_STATE(598)] = 10579, - [SMALL_STATE(599)] = 10680, - [SMALL_STATE(600)] = 10781, - [SMALL_STATE(601)] = 10884, - [SMALL_STATE(602)] = 10987, - [SMALL_STATE(603)] = 11088, - [SMALL_STATE(604)] = 11189, - [SMALL_STATE(605)] = 11292, - [SMALL_STATE(606)] = 11393, - [SMALL_STATE(607)] = 11496, - [SMALL_STATE(608)] = 11599, - [SMALL_STATE(609)] = 11702, - [SMALL_STATE(610)] = 11805, - [SMALL_STATE(611)] = 11908, - [SMALL_STATE(612)] = 12011, - [SMALL_STATE(613)] = 12112, - [SMALL_STATE(614)] = 12215, - [SMALL_STATE(615)] = 12316, - [SMALL_STATE(616)] = 12419, - [SMALL_STATE(617)] = 12522, - [SMALL_STATE(618)] = 12623, - [SMALL_STATE(619)] = 12726, - [SMALL_STATE(620)] = 12827, - [SMALL_STATE(621)] = 12930, - [SMALL_STATE(622)] = 13033, - [SMALL_STATE(623)] = 13134, - [SMALL_STATE(624)] = 13235, - [SMALL_STATE(625)] = 13336, - [SMALL_STATE(626)] = 13437, - [SMALL_STATE(627)] = 13538, - [SMALL_STATE(628)] = 13639, - [SMALL_STATE(629)] = 13740, - [SMALL_STATE(630)] = 13841, - [SMALL_STATE(631)] = 13942, - [SMALL_STATE(632)] = 14043, - [SMALL_STATE(633)] = 14146, - [SMALL_STATE(634)] = 14247, - [SMALL_STATE(635)] = 14348, - [SMALL_STATE(636)] = 14449, - [SMALL_STATE(637)] = 14552, - [SMALL_STATE(638)] = 14653, - [SMALL_STATE(639)] = 14754, - [SMALL_STATE(640)] = 14855, - [SMALL_STATE(641)] = 14958, - [SMALL_STATE(642)] = 15061, - [SMALL_STATE(643)] = 15162, - [SMALL_STATE(644)] = 15263, - [SMALL_STATE(645)] = 15364, - [SMALL_STATE(646)] = 15465, - [SMALL_STATE(647)] = 15566, - [SMALL_STATE(648)] = 15667, - [SMALL_STATE(649)] = 15768, - [SMALL_STATE(650)] = 15869, - [SMALL_STATE(651)] = 15972, - [SMALL_STATE(652)] = 16075, - [SMALL_STATE(653)] = 16178, - [SMALL_STATE(654)] = 16281, - [SMALL_STATE(655)] = 16382, - [SMALL_STATE(656)] = 16483, - [SMALL_STATE(657)] = 16584, - [SMALL_STATE(658)] = 16687, - [SMALL_STATE(659)] = 16788, - [SMALL_STATE(660)] = 16889, - [SMALL_STATE(661)] = 16990, - [SMALL_STATE(662)] = 17091, - [SMALL_STATE(663)] = 17194, - [SMALL_STATE(664)] = 17297, - [SMALL_STATE(665)] = 17400, - [SMALL_STATE(666)] = 17503, - [SMALL_STATE(667)] = 17606, - [SMALL_STATE(668)] = 17707, - [SMALL_STATE(669)] = 17778, - [SMALL_STATE(670)] = 17849, - [SMALL_STATE(671)] = 17920, - [SMALL_STATE(672)] = 17988, - [SMALL_STATE(673)] = 18051, - [SMALL_STATE(674)] = 18114, - [SMALL_STATE(675)] = 18192, - [SMALL_STATE(676)] = 18254, - [SMALL_STATE(677)] = 18316, - [SMALL_STATE(678)] = 18378, - [SMALL_STATE(679)] = 18440, - [SMALL_STATE(680)] = 18502, - [SMALL_STATE(681)] = 18564, - [SMALL_STATE(682)] = 18626, - [SMALL_STATE(683)] = 18688, - [SMALL_STATE(684)] = 18750, - [SMALL_STATE(685)] = 18812, - [SMALL_STATE(686)] = 18911, - [SMALL_STATE(687)] = 19010, - [SMALL_STATE(688)] = 19109, - [SMALL_STATE(689)] = 19208, - [SMALL_STATE(690)] = 19307, - [SMALL_STATE(691)] = 19406, - [SMALL_STATE(692)] = 19505, - [SMALL_STATE(693)] = 19604, - [SMALL_STATE(694)] = 19703, - [SMALL_STATE(695)] = 19802, - [SMALL_STATE(696)] = 19901, - [SMALL_STATE(697)] = 20002, - [SMALL_STATE(698)] = 20101, - [SMALL_STATE(699)] = 20200, - [SMALL_STATE(700)] = 20299, - [SMALL_STATE(701)] = 20398, - [SMALL_STATE(702)] = 20497, - [SMALL_STATE(703)] = 20596, - [SMALL_STATE(704)] = 20692, - [SMALL_STATE(705)] = 20788, - [SMALL_STATE(706)] = 20886, - [SMALL_STATE(707)] = 20955, - [SMALL_STATE(708)] = 21020, - [SMALL_STATE(709)] = 21079, - [SMALL_STATE(710)] = 21138, - [SMALL_STATE(711)] = 21197, - [SMALL_STATE(712)] = 21256, - [SMALL_STATE(713)] = 21315, - [SMALL_STATE(714)] = 21373, - [SMALL_STATE(715)] = 21431, - [SMALL_STATE(716)] = 21489, - [SMALL_STATE(717)] = 21547, - [SMALL_STATE(718)] = 21605, - [SMALL_STATE(719)] = 21663, - [SMALL_STATE(720)] = 21721, - [SMALL_STATE(721)] = 21779, - [SMALL_STATE(722)] = 21837, - [SMALL_STATE(723)] = 21895, - [SMALL_STATE(724)] = 21953, - [SMALL_STATE(725)] = 22011, - [SMALL_STATE(726)] = 22069, - [SMALL_STATE(727)] = 22127, - [SMALL_STATE(728)] = 22185, - [SMALL_STATE(729)] = 22243, - [SMALL_STATE(730)] = 22310, - [SMALL_STATE(731)] = 22399, - [SMALL_STATE(732)] = 22464, - [SMALL_STATE(733)] = 22525, - [SMALL_STATE(734)] = 22614, - [SMALL_STATE(735)] = 22681, - [SMALL_STATE(736)] = 22770, - [SMALL_STATE(737)] = 22859, - [SMALL_STATE(738)] = 22916, - [SMALL_STATE(739)] = 22973, - [SMALL_STATE(740)] = 23040, - [SMALL_STATE(741)] = 23107, - [SMALL_STATE(742)] = 23164, - [SMALL_STATE(743)] = 23221, - [SMALL_STATE(744)] = 23310, - [SMALL_STATE(745)] = 23399, - [SMALL_STATE(746)] = 23488, - [SMALL_STATE(747)] = 23553, - [SMALL_STATE(748)] = 23620, - [SMALL_STATE(749)] = 23709, - [SMALL_STATE(750)] = 23773, - [SMALL_STATE(751)] = 23829, - [SMALL_STATE(752)] = 23885, - [SMALL_STATE(753)] = 23971, - [SMALL_STATE(754)] = 24034, - [SMALL_STATE(755)] = 24089, - [SMALL_STATE(756)] = 24152, - [SMALL_STATE(757)] = 24215, - [SMALL_STATE(758)] = 24270, - [SMALL_STATE(759)] = 24333, - [SMALL_STATE(760)] = 24388, - [SMALL_STATE(761)] = 24451, - [SMALL_STATE(762)] = 24505, - [SMALL_STATE(763)] = 24559, - [SMALL_STATE(764)] = 24629, - [SMALL_STATE(765)] = 24699, - [SMALL_STATE(766)] = 24769, - [SMALL_STATE(767)] = 24823, - [SMALL_STATE(768)] = 24893, - [SMALL_STATE(769)] = 24950, - [SMALL_STATE(770)] = 25007, - [SMALL_STATE(771)] = 25064, - [SMALL_STATE(772)] = 25127, - [SMALL_STATE(773)] = 25184, - [SMALL_STATE(774)] = 25247, - [SMALL_STATE(775)] = 25304, - [SMALL_STATE(776)] = 25361, - [SMALL_STATE(777)] = 25418, - [SMALL_STATE(778)] = 25481, - [SMALL_STATE(779)] = 25544, - [SMALL_STATE(780)] = 25601, - [SMALL_STATE(781)] = 25664, - [SMALL_STATE(782)] = 25727, - [SMALL_STATE(783)] = 25784, - [SMALL_STATE(784)] = 25841, - [SMALL_STATE(785)] = 25898, - [SMALL_STATE(786)] = 25958, - [SMALL_STATE(787)] = 26044, - [SMALL_STATE(788)] = 26100, - [SMALL_STATE(789)] = 26152, - [SMALL_STATE(790)] = 26230, - [SMALL_STATE(791)] = 26282, - [SMALL_STATE(792)] = 26334, - [SMALL_STATE(793)] = 26386, - [SMALL_STATE(794)] = 26444, - [SMALL_STATE(795)] = 26526, - [SMALL_STATE(796)] = 26582, - [SMALL_STATE(797)] = 26638, - [SMALL_STATE(798)] = 26694, - [SMALL_STATE(799)] = 26774, - [SMALL_STATE(800)] = 26848, - [SMALL_STATE(801)] = 26900, - [SMALL_STATE(802)] = 26952, - [SMALL_STATE(803)] = 27016, - [SMALL_STATE(804)] = 27068, - [SMALL_STATE(805)] = 27140, - [SMALL_STATE(806)] = 27192, - [SMALL_STATE(807)] = 27260, - [SMALL_STATE(808)] = 27312, - [SMALL_STATE(809)] = 27364, - [SMALL_STATE(810)] = 27430, - [SMALL_STATE(811)] = 27482, - [SMALL_STATE(812)] = 27568, - [SMALL_STATE(813)] = 27628, - [SMALL_STATE(814)] = 27714, - [SMALL_STATE(815)] = 27766, - [SMALL_STATE(816)] = 27818, - [SMALL_STATE(817)] = 27870, - [SMALL_STATE(818)] = 27922, - [SMALL_STATE(819)] = 27978, - [SMALL_STATE(820)] = 28030, - [SMALL_STATE(821)] = 28082, - [SMALL_STATE(822)] = 28134, - [SMALL_STATE(823)] = 28186, - [SMALL_STATE(824)] = 28238, - [SMALL_STATE(825)] = 28290, - [SMALL_STATE(826)] = 28346, - [SMALL_STATE(827)] = 28398, - [SMALL_STATE(828)] = 28450, - [SMALL_STATE(829)] = 28502, - [SMALL_STATE(830)] = 28558, - [SMALL_STATE(831)] = 28610, - [SMALL_STATE(832)] = 28686, - [SMALL_STATE(833)] = 28744, - [SMALL_STATE(834)] = 28796, - [SMALL_STATE(835)] = 28848, - [SMALL_STATE(836)] = 28899, - [SMALL_STATE(837)] = 28968, - [SMALL_STATE(838)] = 29041, - [SMALL_STATE(839)] = 29092, - [SMALL_STATE(840)] = 29167, - [SMALL_STATE(841)] = 29252, - [SMALL_STATE(842)] = 29337, - [SMALL_STATE(843)] = 29414, - [SMALL_STATE(844)] = 29465, - [SMALL_STATE(845)] = 29520, - [SMALL_STATE(846)] = 29571, - [SMALL_STATE(847)] = 29650, - [SMALL_STATE(848)] = 29731, - [SMALL_STATE(849)] = 29794, - [SMALL_STATE(850)] = 29859, - [SMALL_STATE(851)] = 29910, - [SMALL_STATE(852)] = 29961, - [SMALL_STATE(853)] = 30030, - [SMALL_STATE(854)] = 30097, - [SMALL_STATE(855)] = 30148, - [SMALL_STATE(856)] = 30217, - [SMALL_STATE(857)] = 30268, - [SMALL_STATE(858)] = 30339, - [SMALL_STATE(859)] = 30390, - [SMALL_STATE(860)] = 30459, - [SMALL_STATE(861)] = 30510, - [SMALL_STATE(862)] = 30561, - [SMALL_STATE(863)] = 30612, - [SMALL_STATE(864)] = 30697, - [SMALL_STATE(865)] = 30748, - [SMALL_STATE(866)] = 30799, - [SMALL_STATE(867)] = 30850, - [SMALL_STATE(868)] = 30901, - [SMALL_STATE(869)] = 30952, - [SMALL_STATE(870)] = 31003, - [SMALL_STATE(871)] = 31057, - [SMALL_STATE(872)] = 31143, - [SMALL_STATE(873)] = 31203, - [SMALL_STATE(874)] = 31289, - [SMALL_STATE(875)] = 31346, - [SMALL_STATE(876)] = 31401, - [SMALL_STATE(877)] = 31456, - [SMALL_STATE(878)] = 31504, - [SMALL_STATE(879)] = 31552, - [SMALL_STATE(880)] = 31631, - [SMALL_STATE(881)] = 31690, - [SMALL_STATE(882)] = 31737, - [SMALL_STATE(883)] = 31812, - [SMALL_STATE(884)] = 31889, - [SMALL_STATE(885)] = 31936, - [SMALL_STATE(886)] = 31997, - [SMALL_STATE(887)] = 32044, - [SMALL_STATE(888)] = 32091, - [SMALL_STATE(889)] = 32138, - [SMALL_STATE(890)] = 32185, - [SMALL_STATE(891)] = 32232, - [SMALL_STATE(892)] = 32283, - [SMALL_STATE(893)] = 32330, - [SMALL_STATE(894)] = 32377, - [SMALL_STATE(895)] = 32428, - [SMALL_STATE(896)] = 32475, - [SMALL_STATE(897)] = 32522, - [SMALL_STATE(898)] = 32569, - [SMALL_STATE(899)] = 32616, - [SMALL_STATE(900)] = 32663, - [SMALL_STATE(901)] = 32722, - [SMALL_STATE(902)] = 32781, - [SMALL_STATE(903)] = 32828, - [SMALL_STATE(904)] = 32875, - [SMALL_STATE(905)] = 32922, - [SMALL_STATE(906)] = 32973, - [SMALL_STATE(907)] = 33020, - [SMALL_STATE(908)] = 33093, - [SMALL_STATE(909)] = 33140, - [SMALL_STATE(910)] = 33191, - [SMALL_STATE(911)] = 33238, - [SMALL_STATE(912)] = 33297, - [SMALL_STATE(913)] = 33380, - [SMALL_STATE(914)] = 33427, - [SMALL_STATE(915)] = 33474, - [SMALL_STATE(916)] = 33521, - [SMALL_STATE(917)] = 33568, - [SMALL_STATE(918)] = 33615, - [SMALL_STATE(919)] = 33662, - [SMALL_STATE(920)] = 33709, - [SMALL_STATE(921)] = 33792, - [SMALL_STATE(922)] = 33863, - [SMALL_STATE(923)] = 33914, - [SMALL_STATE(924)] = 33983, - [SMALL_STATE(925)] = 34030, - [SMALL_STATE(926)] = 34089, - [SMALL_STATE(927)] = 34136, - [SMALL_STATE(928)] = 34219, - [SMALL_STATE(929)] = 34270, - [SMALL_STATE(930)] = 34317, - [SMALL_STATE(931)] = 34374, - [SMALL_STATE(932)] = 34421, - [SMALL_STATE(933)] = 34468, - [SMALL_STATE(934)] = 34533, - [SMALL_STATE(935)] = 34580, - [SMALL_STATE(936)] = 34643, - [SMALL_STATE(937)] = 34694, - [SMALL_STATE(938)] = 34741, - [SMALL_STATE(939)] = 34788, - [SMALL_STATE(940)] = 34835, - [SMALL_STATE(941)] = 34911, - [SMALL_STATE(942)] = 34961, - [SMALL_STATE(943)] = 35007, - [SMALL_STATE(944)] = 35083, - [SMALL_STATE(945)] = 35159, - [SMALL_STATE(946)] = 35235, - [SMALL_STATE(947)] = 35281, - [SMALL_STATE(948)] = 35327, - [SMALL_STATE(949)] = 35373, - [SMALL_STATE(950)] = 35418, - [SMALL_STATE(951)] = 35475, - [SMALL_STATE(952)] = 35519, - [SMALL_STATE(953)] = 35563, - [SMALL_STATE(954)] = 35607, - [SMALL_STATE(955)] = 35651, - [SMALL_STATE(956)] = 35695, - [SMALL_STATE(957)] = 35739, - [SMALL_STATE(958)] = 35783, - [SMALL_STATE(959)] = 35827, - [SMALL_STATE(960)] = 35879, - [SMALL_STATE(961)] = 35923, - [SMALL_STATE(962)] = 35977, - [SMALL_STATE(963)] = 36021, - [SMALL_STATE(964)] = 36091, - [SMALL_STATE(965)] = 36135, - [SMALL_STATE(966)] = 36207, - [SMALL_STATE(967)] = 36249, - [SMALL_STATE(968)] = 36291, - [SMALL_STATE(969)] = 36333, - [SMALL_STATE(970)] = 36377, - [SMALL_STATE(971)] = 36419, - [SMALL_STATE(972)] = 36461, - [SMALL_STATE(973)] = 36503, - [SMALL_STATE(974)] = 36545, - [SMALL_STATE(975)] = 36587, - [SMALL_STATE(976)] = 36629, - [SMALL_STATE(977)] = 36699, - [SMALL_STATE(978)] = 36741, - [SMALL_STATE(979)] = 36785, - [SMALL_STATE(980)] = 36827, - [SMALL_STATE(981)] = 36869, - [SMALL_STATE(982)] = 36941, - [SMALL_STATE(983)] = 36983, - [SMALL_STATE(984)] = 37027, - [SMALL_STATE(985)] = 37094, - [SMALL_STATE(986)] = 37161, - [SMALL_STATE(987)] = 37216, - [SMALL_STATE(988)] = 37293, - [SMALL_STATE(989)] = 37370, - [SMALL_STATE(990)] = 37443, - [SMALL_STATE(991)] = 37510, - [SMALL_STATE(992)] = 37581, - [SMALL_STATE(993)] = 37648, - [SMALL_STATE(994)] = 37717, - [SMALL_STATE(995)] = 37784, - [SMALL_STATE(996)] = 37849, - [SMALL_STATE(997)] = 37912, - [SMALL_STATE(998)] = 37971, - [SMALL_STATE(999)] = 38028, - [SMALL_STATE(1000)] = 38105, - [SMALL_STATE(1001)] = 38182, - [SMALL_STATE(1002)] = 38249, - [SMALL_STATE(1003)] = 38316, - [SMALL_STATE(1004)] = 38383, - [SMALL_STATE(1005)] = 38450, - [SMALL_STATE(1006)] = 38520, - [SMALL_STATE(1007)] = 38576, - [SMALL_STATE(1008)] = 38650, - [SMALL_STATE(1009)] = 38698, - [SMALL_STATE(1010)] = 38772, - [SMALL_STATE(1011)] = 38846, - [SMALL_STATE(1012)] = 38904, - [SMALL_STATE(1013)] = 38966, - [SMALL_STATE(1014)] = 39030, - [SMALL_STATE(1015)] = 39096, - [SMALL_STATE(1016)] = 39164, - [SMALL_STATE(1017)] = 39218, - [SMALL_STATE(1018)] = 39286, - [SMALL_STATE(1019)] = 39349, - [SMALL_STATE(1020)] = 39412, - [SMALL_STATE(1021)] = 39475, - [SMALL_STATE(1022)] = 39538, - [SMALL_STATE(1023)] = 39601, - [SMALL_STATE(1024)] = 39664, - [SMALL_STATE(1025)] = 39727, - [SMALL_STATE(1026)] = 39790, - [SMALL_STATE(1027)] = 39853, - [SMALL_STATE(1028)] = 39916, - [SMALL_STATE(1029)] = 39979, - [SMALL_STATE(1030)] = 40042, - [SMALL_STATE(1031)] = 40105, - [SMALL_STATE(1032)] = 40165, - [SMALL_STATE(1033)] = 40225, - [SMALL_STATE(1034)] = 40263, - [SMALL_STATE(1035)] = 40323, - [SMALL_STATE(1036)] = 40361, - [SMALL_STATE(1037)] = 40399, - [SMALL_STATE(1038)] = 40459, - [SMALL_STATE(1039)] = 40533, - [SMALL_STATE(1040)] = 40579, - [SMALL_STATE(1041)] = 40639, - [SMALL_STATE(1042)] = 40677, - [SMALL_STATE(1043)] = 40737, - [SMALL_STATE(1044)] = 40812, - [SMALL_STATE(1045)] = 40887, - [SMALL_STATE(1046)] = 40962, - [SMALL_STATE(1047)] = 41033, - [SMALL_STATE(1048)] = 41108, - [SMALL_STATE(1049)] = 41145, - [SMALL_STATE(1050)] = 41220, - [SMALL_STATE(1051)] = 41295, - [SMALL_STATE(1052)] = 41332, - [SMALL_STATE(1053)] = 41404, - [SMALL_STATE(1054)] = 41448, - [SMALL_STATE(1055)] = 41520, - [SMALL_STATE(1056)] = 41592, - [SMALL_STATE(1057)] = 41662, - [SMALL_STATE(1058)] = 41734, - [SMALL_STATE(1059)] = 41806, - [SMALL_STATE(1060)] = 41878, - [SMALL_STATE(1061)] = 41950, - [SMALL_STATE(1062)] = 42022, - [SMALL_STATE(1063)] = 42094, - [SMALL_STATE(1064)] = 42146, - [SMALL_STATE(1065)] = 42218, - [SMALL_STATE(1066)] = 42288, - [SMALL_STATE(1067)] = 42356, - [SMALL_STATE(1068)] = 42422, - [SMALL_STATE(1069)] = 42488, - [SMALL_STATE(1070)] = 42552, - [SMALL_STATE(1071)] = 42614, - [SMALL_STATE(1072)] = 42674, - [SMALL_STATE(1073)] = 42730, - [SMALL_STATE(1074)] = 42802, - [SMALL_STATE(1075)] = 42856, - [SMALL_STATE(1076)] = 42928, - [SMALL_STATE(1077)] = 43000, - [SMALL_STATE(1078)] = 43070, - [SMALL_STATE(1079)] = 43142, - [SMALL_STATE(1080)] = 43214, - [SMALL_STATE(1081)] = 43286, - [SMALL_STATE(1082)] = 43332, - [SMALL_STATE(1083)] = 43404, - [SMALL_STATE(1084)] = 43476, - [SMALL_STATE(1085)] = 43548, - [SMALL_STATE(1086)] = 43622, - [SMALL_STATE(1087)] = 43694, - [SMALL_STATE(1088)] = 43764, - [SMALL_STATE(1089)] = 43836, - [SMALL_STATE(1090)] = 43908, - [SMALL_STATE(1091)] = 43980, - [SMALL_STATE(1092)] = 44050, - [SMALL_STATE(1093)] = 44122, - [SMALL_STATE(1094)] = 44192, - [SMALL_STATE(1095)] = 44264, - [SMALL_STATE(1096)] = 44336, - [SMALL_STATE(1097)] = 44408, - [SMALL_STATE(1098)] = 44480, - [SMALL_STATE(1099)] = 44552, - [SMALL_STATE(1100)] = 44622, - [SMALL_STATE(1101)] = 44692, - [SMALL_STATE(1102)] = 44761, - [SMALL_STATE(1103)] = 44830, - [SMALL_STATE(1104)] = 44899, - [SMALL_STATE(1105)] = 44968, - [SMALL_STATE(1106)] = 45037, - [SMALL_STATE(1107)] = 45106, - [SMALL_STATE(1108)] = 45175, - [SMALL_STATE(1109)] = 45244, - [SMALL_STATE(1110)] = 45313, - [SMALL_STATE(1111)] = 45382, - [SMALL_STATE(1112)] = 45451, - [SMALL_STATE(1113)] = 45520, - [SMALL_STATE(1114)] = 45589, - [SMALL_STATE(1115)] = 45658, - [SMALL_STATE(1116)] = 45727, - [SMALL_STATE(1117)] = 45796, - [SMALL_STATE(1118)] = 45865, - [SMALL_STATE(1119)] = 45934, - [SMALL_STATE(1120)] = 46003, - [SMALL_STATE(1121)] = 46072, - [SMALL_STATE(1122)] = 46141, - [SMALL_STATE(1123)] = 46210, - [SMALL_STATE(1124)] = 46264, - [SMALL_STATE(1125)] = 46302, - [SMALL_STATE(1126)] = 46340, - [SMALL_STATE(1127)] = 46394, - [SMALL_STATE(1128)] = 46448, - [SMALL_STATE(1129)] = 46484, - [SMALL_STATE(1130)] = 46538, - [SMALL_STATE(1131)] = 46604, - [SMALL_STATE(1132)] = 46642, - [SMALL_STATE(1133)] = 46696, - [SMALL_STATE(1134)] = 46750, - [SMALL_STATE(1135)] = 46801, - [SMALL_STATE(1136)] = 46852, - [SMALL_STATE(1137)] = 46903, - [SMALL_STATE(1138)] = 46954, - [SMALL_STATE(1139)] = 47005, - [SMALL_STATE(1140)] = 47056, - [SMALL_STATE(1141)] = 47094, - [SMALL_STATE(1142)] = 47134, - [SMALL_STATE(1143)] = 47173, - [SMALL_STATE(1144)] = 47212, - [SMALL_STATE(1145)] = 47261, - [SMALL_STATE(1146)] = 47300, - [SMALL_STATE(1147)] = 47339, - [SMALL_STATE(1148)] = 47393, - [SMALL_STATE(1149)] = 47427, - [SMALL_STATE(1150)] = 47481, - [SMALL_STATE(1151)] = 47535, - [SMALL_STATE(1152)] = 47589, - [SMALL_STATE(1153)] = 47632, - [SMALL_STATE(1154)] = 47665, - [SMALL_STATE(1155)] = 47698, - [SMALL_STATE(1156)] = 47749, - [SMALL_STATE(1157)] = 47800, - [SMALL_STATE(1158)] = 47833, - [SMALL_STATE(1159)] = 47888, - [SMALL_STATE(1160)] = 47921, - [SMALL_STATE(1161)] = 47954, - [SMALL_STATE(1162)] = 47987, - [SMALL_STATE(1163)] = 48022, - [SMALL_STATE(1164)] = 48073, - [SMALL_STATE(1165)] = 48124, - [SMALL_STATE(1166)] = 48167, - [SMALL_STATE(1167)] = 48218, - [SMALL_STATE(1168)] = 48251, - [SMALL_STATE(1169)] = 48302, - [SMALL_STATE(1170)] = 48353, - [SMALL_STATE(1171)] = 48408, - [SMALL_STATE(1172)] = 48445, - [SMALL_STATE(1173)] = 48488, - [SMALL_STATE(1174)] = 48539, - [SMALL_STATE(1175)] = 48572, - [SMALL_STATE(1176)] = 48623, - [SMALL_STATE(1177)] = 48678, - [SMALL_STATE(1178)] = 48729, - [SMALL_STATE(1179)] = 48780, - [SMALL_STATE(1180)] = 48813, - [SMALL_STATE(1181)] = 48853, - [SMALL_STATE(1182)] = 48893, - [SMALL_STATE(1183)] = 48941, - [SMALL_STATE(1184)] = 48981, - [SMALL_STATE(1185)] = 49009, - [SMALL_STATE(1186)] = 49049, - [SMALL_STATE(1187)] = 49089, - [SMALL_STATE(1188)] = 49129, - [SMALL_STATE(1189)] = 49169, - [SMALL_STATE(1190)] = 49219, - [SMALL_STATE(1191)] = 49259, - [SMALL_STATE(1192)] = 49299, - [SMALL_STATE(1193)] = 49339, - [SMALL_STATE(1194)] = 49367, - [SMALL_STATE(1195)] = 49407, - [SMALL_STATE(1196)] = 49447, - [SMALL_STATE(1197)] = 49487, - [SMALL_STATE(1198)] = 49519, - [SMALL_STATE(1199)] = 49559, - [SMALL_STATE(1200)] = 49599, - [SMALL_STATE(1201)] = 49639, - [SMALL_STATE(1202)] = 49679, - [SMALL_STATE(1203)] = 49719, - [SMALL_STATE(1204)] = 49747, - [SMALL_STATE(1205)] = 49787, - [SMALL_STATE(1206)] = 49835, - [SMALL_STATE(1207)] = 49881, - [SMALL_STATE(1208)] = 49909, - [SMALL_STATE(1209)] = 49949, - [SMALL_STATE(1210)] = 49989, - [SMALL_STATE(1211)] = 50035, - [SMALL_STATE(1212)] = 50075, - [SMALL_STATE(1213)] = 50103, - [SMALL_STATE(1214)] = 50143, - [SMALL_STATE(1215)] = 50187, - [SMALL_STATE(1216)] = 50229, - [SMALL_STATE(1217)] = 50257, - [SMALL_STATE(1218)] = 50297, - [SMALL_STATE(1219)] = 50337, - [SMALL_STATE(1220)] = 50373, - [SMALL_STATE(1221)] = 50413, - [SMALL_STATE(1222)] = 50453, - [SMALL_STATE(1223)] = 50493, - [SMALL_STATE(1224)] = 50533, - [SMALL_STATE(1225)] = 50573, - [SMALL_STATE(1226)] = 50613, - [SMALL_STATE(1227)] = 50653, - [SMALL_STATE(1228)] = 50693, - [SMALL_STATE(1229)] = 50733, - [SMALL_STATE(1230)] = 50773, - [SMALL_STATE(1231)] = 50813, - [SMALL_STATE(1232)] = 50847, - [SMALL_STATE(1233)] = 50887, - [SMALL_STATE(1234)] = 50927, - [SMALL_STATE(1235)] = 50967, - [SMALL_STATE(1236)] = 51007, - [SMALL_STATE(1237)] = 51052, - [SMALL_STATE(1238)] = 51079, - [SMALL_STATE(1239)] = 51122, - [SMALL_STATE(1240)] = 51171, - [SMALL_STATE(1241)] = 51216, - [SMALL_STATE(1242)] = 51265, - [SMALL_STATE(1243)] = 51308, - [SMALL_STATE(1244)] = 51353, - [SMALL_STATE(1245)] = 51380, - [SMALL_STATE(1246)] = 51425, - [SMALL_STATE(1247)] = 51468, - [SMALL_STATE(1248)] = 51513, - [SMALL_STATE(1249)] = 51558, - [SMALL_STATE(1250)] = 51603, - [SMALL_STATE(1251)] = 51630, - [SMALL_STATE(1252)] = 51657, - [SMALL_STATE(1253)] = 51684, - [SMALL_STATE(1254)] = 51711, - [SMALL_STATE(1255)] = 51756, - [SMALL_STATE(1256)] = 51801, - [SMALL_STATE(1257)] = 51838, - [SMALL_STATE(1258)] = 51881, - [SMALL_STATE(1259)] = 51908, - [SMALL_STATE(1260)] = 51939, - [SMALL_STATE(1261)] = 51966, - [SMALL_STATE(1262)] = 52011, - [SMALL_STATE(1263)] = 52038, - [SMALL_STATE(1264)] = 52083, - [SMALL_STATE(1265)] = 52128, - [SMALL_STATE(1266)] = 52161, - [SMALL_STATE(1267)] = 52202, - [SMALL_STATE(1268)] = 52245, - [SMALL_STATE(1269)] = 52280, - [SMALL_STATE(1270)] = 52325, - [SMALL_STATE(1271)] = 52370, - [SMALL_STATE(1272)] = 52397, - [SMALL_STATE(1273)] = 52436, - [SMALL_STATE(1274)] = 52481, - [SMALL_STATE(1275)] = 52518, - [SMALL_STATE(1276)] = 52547, - [SMALL_STATE(1277)] = 52587, - [SMALL_STATE(1278)] = 52627, - [SMALL_STATE(1279)] = 52667, - [SMALL_STATE(1280)] = 52711, - [SMALL_STATE(1281)] = 52751, - [SMALL_STATE(1282)] = 52791, - [SMALL_STATE(1283)] = 52831, - [SMALL_STATE(1284)] = 52872, - [SMALL_STATE(1285)] = 52913, - [SMALL_STATE(1286)] = 52954, - [SMALL_STATE(1287)] = 52995, - [SMALL_STATE(1288)] = 53036, - [SMALL_STATE(1289)] = 53077, - [SMALL_STATE(1290)] = 53118, - [SMALL_STATE(1291)] = 53159, - [SMALL_STATE(1292)] = 53193, - [SMALL_STATE(1293)] = 53233, - [SMALL_STATE(1294)] = 53271, - [SMALL_STATE(1295)] = 53309, - [SMALL_STATE(1296)] = 53350, - [SMALL_STATE(1297)] = 53379, - [SMALL_STATE(1298)] = 53418, - [SMALL_STATE(1299)] = 53457, - [SMALL_STATE(1300)] = 53496, - [SMALL_STATE(1301)] = 53535, - [SMALL_STATE(1302)] = 53576, - [SMALL_STATE(1303)] = 53605, - [SMALL_STATE(1304)] = 53642, - [SMALL_STATE(1305)] = 53671, - [SMALL_STATE(1306)] = 53700, - [SMALL_STATE(1307)] = 53741, - [SMALL_STATE(1308)] = 53767, - [SMALL_STATE(1309)] = 53804, - [SMALL_STATE(1310)] = 53841, - [SMALL_STATE(1311)] = 53870, - [SMALL_STATE(1312)] = 53899, - [SMALL_STATE(1313)] = 53928, - [SMALL_STATE(1314)] = 53965, - [SMALL_STATE(1315)] = 54002, - [SMALL_STATE(1316)] = 54039, - [SMALL_STATE(1317)] = 54060, - [SMALL_STATE(1318)] = 54085, - [SMALL_STATE(1319)] = 54122, - [SMALL_STATE(1320)] = 54151, - [SMALL_STATE(1321)] = 54188, - [SMALL_STATE(1322)] = 54225, - [SMALL_STATE(1323)] = 54262, - [SMALL_STATE(1324)] = 54283, - [SMALL_STATE(1325)] = 54304, - [SMALL_STATE(1326)] = 54337, - [SMALL_STATE(1327)] = 54370, - [SMALL_STATE(1328)] = 54407, - [SMALL_STATE(1329)] = 54444, - [SMALL_STATE(1330)] = 54480, - [SMALL_STATE(1331)] = 54504, - [SMALL_STATE(1332)] = 54529, - [SMALL_STATE(1333)] = 54558, - [SMALL_STATE(1334)] = 54589, - [SMALL_STATE(1335)] = 54620, - [SMALL_STATE(1336)] = 54649, - [SMALL_STATE(1337)] = 54680, - [SMALL_STATE(1338)] = 54709, - [SMALL_STATE(1339)] = 54738, - [SMALL_STATE(1340)] = 54765, - [SMALL_STATE(1341)] = 54796, - [SMALL_STATE(1342)] = 54827, - [SMALL_STATE(1343)] = 54856, - [SMALL_STATE(1344)] = 54887, - [SMALL_STATE(1345)] = 54916, - [SMALL_STATE(1346)] = 54945, - [SMALL_STATE(1347)] = 54974, - [SMALL_STATE(1348)] = 55003, - [SMALL_STATE(1349)] = 55032, - [SMALL_STATE(1350)] = 55061, - [SMALL_STATE(1351)] = 55090, - [SMALL_STATE(1352)] = 55121, - [SMALL_STATE(1353)] = 55146, - [SMALL_STATE(1354)] = 55173, - [SMALL_STATE(1355)] = 55200, - [SMALL_STATE(1356)] = 55227, - [SMALL_STATE(1357)] = 55256, - [SMALL_STATE(1358)] = 55287, - [SMALL_STATE(1359)] = 55318, - [SMALL_STATE(1360)] = 55347, - [SMALL_STATE(1361)] = 55365, - [SMALL_STATE(1362)] = 55383, - [SMALL_STATE(1363)] = 55401, - [SMALL_STATE(1364)] = 55427, - [SMALL_STATE(1365)] = 55453, - [SMALL_STATE(1366)] = 55483, - [SMALL_STATE(1367)] = 55501, - [SMALL_STATE(1368)] = 55527, - [SMALL_STATE(1369)] = 55559, - [SMALL_STATE(1370)] = 55577, - [SMALL_STATE(1371)] = 55601, - [SMALL_STATE(1372)] = 55619, - [SMALL_STATE(1373)] = 55645, - [SMALL_STATE(1374)] = 55677, - [SMALL_STATE(1375)] = 55709, - [SMALL_STATE(1376)] = 55733, - [SMALL_STATE(1377)] = 55765, - [SMALL_STATE(1378)] = 55783, - [SMALL_STATE(1379)] = 55805, - [SMALL_STATE(1380)] = 55826, - [SMALL_STATE(1381)] = 55855, - [SMALL_STATE(1382)] = 55884, - [SMALL_STATE(1383)] = 55913, - [SMALL_STATE(1384)] = 55942, - [SMALL_STATE(1385)] = 55967, - [SMALL_STATE(1386)] = 55988, - [SMALL_STATE(1387)] = 56017, - [SMALL_STATE(1388)] = 56038, - [SMALL_STATE(1389)] = 56057, - [SMALL_STATE(1390)] = 56078, - [SMALL_STATE(1391)] = 56107, - [SMALL_STATE(1392)] = 56128, - [SMALL_STATE(1393)] = 56157, - [SMALL_STATE(1394)] = 56182, - [SMALL_STATE(1395)] = 56203, - [SMALL_STATE(1396)] = 56232, - [SMALL_STATE(1397)] = 56253, - [SMALL_STATE(1398)] = 56274, - [SMALL_STATE(1399)] = 56300, - [SMALL_STATE(1400)] = 56322, - [SMALL_STATE(1401)] = 56348, - [SMALL_STATE(1402)] = 56368, - [SMALL_STATE(1403)] = 56388, - [SMALL_STATE(1404)] = 56404, - [SMALL_STATE(1405)] = 56430, - [SMALL_STATE(1406)] = 56454, - [SMALL_STATE(1407)] = 56480, - [SMALL_STATE(1408)] = 56506, - [SMALL_STATE(1409)] = 56522, - [SMALL_STATE(1410)] = 56548, - [SMALL_STATE(1411)] = 56564, - [SMALL_STATE(1412)] = 56580, - [SMALL_STATE(1413)] = 56606, - [SMALL_STATE(1414)] = 56632, - [SMALL_STATE(1415)] = 56648, - [SMALL_STATE(1416)] = 56664, - [SMALL_STATE(1417)] = 56690, - [SMALL_STATE(1418)] = 56706, - [SMALL_STATE(1419)] = 56732, - [SMALL_STATE(1420)] = 56748, - [SMALL_STATE(1421)] = 56764, - [SMALL_STATE(1422)] = 56782, - [SMALL_STATE(1423)] = 56808, - [SMALL_STATE(1424)] = 56834, - [SMALL_STATE(1425)] = 56854, - [SMALL_STATE(1426)] = 56879, - [SMALL_STATE(1427)] = 56898, - [SMALL_STATE(1428)] = 56921, - [SMALL_STATE(1429)] = 56944, - [SMALL_STATE(1430)] = 56967, - [SMALL_STATE(1431)] = 56990, - [SMALL_STATE(1432)] = 57007, - [SMALL_STATE(1433)] = 57022, - [SMALL_STATE(1434)] = 57045, - [SMALL_STATE(1435)] = 57068, - [SMALL_STATE(1436)] = 57083, - [SMALL_STATE(1437)] = 57098, - [SMALL_STATE(1438)] = 57113, - [SMALL_STATE(1439)] = 57136, - [SMALL_STATE(1440)] = 57151, - [SMALL_STATE(1441)] = 57170, - [SMALL_STATE(1442)] = 57187, - [SMALL_STATE(1443)] = 57202, - [SMALL_STATE(1444)] = 57219, - [SMALL_STATE(1445)] = 57234, - [SMALL_STATE(1446)] = 57249, - [SMALL_STATE(1447)] = 57264, - [SMALL_STATE(1448)] = 57279, - [SMALL_STATE(1449)] = 57296, - [SMALL_STATE(1450)] = 57314, - [SMALL_STATE(1451)] = 57328, - [SMALL_STATE(1452)] = 57342, - [SMALL_STATE(1453)] = 57356, - [SMALL_STATE(1454)] = 57370, - [SMALL_STATE(1455)] = 57384, - [SMALL_STATE(1456)] = 57398, - [SMALL_STATE(1457)] = 57412, - [SMALL_STATE(1458)] = 57426, - [SMALL_STATE(1459)] = 57446, - [SMALL_STATE(1460)] = 57460, - [SMALL_STATE(1461)] = 57476, - [SMALL_STATE(1462)] = 57490, - [SMALL_STATE(1463)] = 57506, - [SMALL_STATE(1464)] = 57520, - [SMALL_STATE(1465)] = 57540, - [SMALL_STATE(1466)] = 57558, - [SMALL_STATE(1467)] = 57572, - [SMALL_STATE(1468)] = 57586, - [SMALL_STATE(1469)] = 57600, - [SMALL_STATE(1470)] = 57618, - [SMALL_STATE(1471)] = 57638, - [SMALL_STATE(1472)] = 57658, - [SMALL_STATE(1473)] = 57672, - [SMALL_STATE(1474)] = 57690, - [SMALL_STATE(1475)] = 57710, - [SMALL_STATE(1476)] = 57728, - [SMALL_STATE(1477)] = 57748, - [SMALL_STATE(1478)] = 57764, - [SMALL_STATE(1479)] = 57784, - [SMALL_STATE(1480)] = 57804, - [SMALL_STATE(1481)] = 57822, - [SMALL_STATE(1482)] = 57842, - [SMALL_STATE(1483)] = 57862, - [SMALL_STATE(1484)] = 57882, - [SMALL_STATE(1485)] = 57902, - [SMALL_STATE(1486)] = 57922, - [SMALL_STATE(1487)] = 57940, - [SMALL_STATE(1488)] = 57959, - [SMALL_STATE(1489)] = 57974, - [SMALL_STATE(1490)] = 57993, - [SMALL_STATE(1491)] = 58004, - [SMALL_STATE(1492)] = 58015, - [SMALL_STATE(1493)] = 58034, - [SMALL_STATE(1494)] = 58051, - [SMALL_STATE(1495)] = 58062, - [SMALL_STATE(1496)] = 58073, - [SMALL_STATE(1497)] = 58084, - [SMALL_STATE(1498)] = 58095, - [SMALL_STATE(1499)] = 58106, - [SMALL_STATE(1500)] = 58117, - [SMALL_STATE(1501)] = 58128, - [SMALL_STATE(1502)] = 58139, - [SMALL_STATE(1503)] = 58156, - [SMALL_STATE(1504)] = 58167, - [SMALL_STATE(1505)] = 58182, - [SMALL_STATE(1506)] = 58193, - [SMALL_STATE(1507)] = 58204, - [SMALL_STATE(1508)] = 58220, - [SMALL_STATE(1509)] = 58234, - [SMALL_STATE(1510)] = 58250, - [SMALL_STATE(1511)] = 58266, - [SMALL_STATE(1512)] = 58280, - [SMALL_STATE(1513)] = 58296, - [SMALL_STATE(1514)] = 58310, - [SMALL_STATE(1515)] = 58324, - [SMALL_STATE(1516)] = 58338, - [SMALL_STATE(1517)] = 58352, - [SMALL_STATE(1518)] = 58366, - [SMALL_STATE(1519)] = 58380, - [SMALL_STATE(1520)] = 58394, - [SMALL_STATE(1521)] = 58410, - [SMALL_STATE(1522)] = 58424, - [SMALL_STATE(1523)] = 58440, - [SMALL_STATE(1524)] = 58450, - [SMALL_STATE(1525)] = 58460, - [SMALL_STATE(1526)] = 58474, - [SMALL_STATE(1527)] = 58488, - [SMALL_STATE(1528)] = 58504, - [SMALL_STATE(1529)] = 58518, - [SMALL_STATE(1530)] = 58532, - [SMALL_STATE(1531)] = 58546, - [SMALL_STATE(1532)] = 58560, - [SMALL_STATE(1533)] = 58576, - [SMALL_STATE(1534)] = 58590, - [SMALL_STATE(1535)] = 58606, - [SMALL_STATE(1536)] = 58622, - [SMALL_STATE(1537)] = 58638, - [SMALL_STATE(1538)] = 58652, - [SMALL_STATE(1539)] = 58666, - [SMALL_STATE(1540)] = 58680, - [SMALL_STATE(1541)] = 58694, - [SMALL_STATE(1542)] = 58708, - [SMALL_STATE(1543)] = 58724, - [SMALL_STATE(1544)] = 58738, - [SMALL_STATE(1545)] = 58754, - [SMALL_STATE(1546)] = 58768, - [SMALL_STATE(1547)] = 58782, - [SMALL_STATE(1548)] = 58796, - [SMALL_STATE(1549)] = 58810, - [SMALL_STATE(1550)] = 58824, - [SMALL_STATE(1551)] = 58838, - [SMALL_STATE(1552)] = 58852, - [SMALL_STATE(1553)] = 58868, - [SMALL_STATE(1554)] = 58882, - [SMALL_STATE(1555)] = 58896, - [SMALL_STATE(1556)] = 58910, - [SMALL_STATE(1557)] = 58926, - [SMALL_STATE(1558)] = 58942, - [SMALL_STATE(1559)] = 58958, - [SMALL_STATE(1560)] = 58972, - [SMALL_STATE(1561)] = 58986, - [SMALL_STATE(1562)] = 59000, - [SMALL_STATE(1563)] = 59016, - [SMALL_STATE(1564)] = 59032, - [SMALL_STATE(1565)] = 59046, - [SMALL_STATE(1566)] = 59060, - [SMALL_STATE(1567)] = 59074, - [SMALL_STATE(1568)] = 59088, - [SMALL_STATE(1569)] = 59102, - [SMALL_STATE(1570)] = 59116, - [SMALL_STATE(1571)] = 59130, - [SMALL_STATE(1572)] = 59143, - [SMALL_STATE(1573)] = 59156, - [SMALL_STATE(1574)] = 59169, - [SMALL_STATE(1575)] = 59182, - [SMALL_STATE(1576)] = 59191, - [SMALL_STATE(1577)] = 59200, - [SMALL_STATE(1578)] = 59213, - [SMALL_STATE(1579)] = 59224, - [SMALL_STATE(1580)] = 59237, - [SMALL_STATE(1581)] = 59250, - [SMALL_STATE(1582)] = 59263, - [SMALL_STATE(1583)] = 59276, - [SMALL_STATE(1584)] = 59285, - [SMALL_STATE(1585)] = 59294, - [SMALL_STATE(1586)] = 59307, - [SMALL_STATE(1587)] = 59320, - [SMALL_STATE(1588)] = 59333, - [SMALL_STATE(1589)] = 59342, - [SMALL_STATE(1590)] = 59355, - [SMALL_STATE(1591)] = 59368, - [SMALL_STATE(1592)] = 59377, - [SMALL_STATE(1593)] = 59386, - [SMALL_STATE(1594)] = 59399, - [SMALL_STATE(1595)] = 59412, - [SMALL_STATE(1596)] = 59423, - [SMALL_STATE(1597)] = 59436, - [SMALL_STATE(1598)] = 59447, - [SMALL_STATE(1599)] = 59460, - [SMALL_STATE(1600)] = 59469, - [SMALL_STATE(1601)] = 59482, - [SMALL_STATE(1602)] = 59495, - [SMALL_STATE(1603)] = 59508, - [SMALL_STATE(1604)] = 59517, - [SMALL_STATE(1605)] = 59528, - [SMALL_STATE(1606)] = 59541, - [SMALL_STATE(1607)] = 59554, - [SMALL_STATE(1608)] = 59567, - [SMALL_STATE(1609)] = 59580, - [SMALL_STATE(1610)] = 59589, - [SMALL_STATE(1611)] = 59602, - [SMALL_STATE(1612)] = 59615, - [SMALL_STATE(1613)] = 59628, - [SMALL_STATE(1614)] = 59641, - [SMALL_STATE(1615)] = 59654, - [SMALL_STATE(1616)] = 59667, - [SMALL_STATE(1617)] = 59680, - [SMALL_STATE(1618)] = 59691, - [SMALL_STATE(1619)] = 59704, - [SMALL_STATE(1620)] = 59717, - [SMALL_STATE(1621)] = 59730, - [SMALL_STATE(1622)] = 59743, - [SMALL_STATE(1623)] = 59756, - [SMALL_STATE(1624)] = 59769, - [SMALL_STATE(1625)] = 59782, - [SMALL_STATE(1626)] = 59795, - [SMALL_STATE(1627)] = 59808, - [SMALL_STATE(1628)] = 59821, - [SMALL_STATE(1629)] = 59834, - [SMALL_STATE(1630)] = 59847, - [SMALL_STATE(1631)] = 59860, - [SMALL_STATE(1632)] = 59873, - [SMALL_STATE(1633)] = 59886, - [SMALL_STATE(1634)] = 59899, - [SMALL_STATE(1635)] = 59912, - [SMALL_STATE(1636)] = 59925, - [SMALL_STATE(1637)] = 59938, - [SMALL_STATE(1638)] = 59951, - [SMALL_STATE(1639)] = 59964, - [SMALL_STATE(1640)] = 59977, - [SMALL_STATE(1641)] = 59990, - [SMALL_STATE(1642)] = 60003, - [SMALL_STATE(1643)] = 60016, - [SMALL_STATE(1644)] = 60029, - [SMALL_STATE(1645)] = 60042, - [SMALL_STATE(1646)] = 60055, - [SMALL_STATE(1647)] = 60068, - [SMALL_STATE(1648)] = 60081, - [SMALL_STATE(1649)] = 60094, - [SMALL_STATE(1650)] = 60107, - [SMALL_STATE(1651)] = 60120, - [SMALL_STATE(1652)] = 60133, - [SMALL_STATE(1653)] = 60146, - [SMALL_STATE(1654)] = 60159, - [SMALL_STATE(1655)] = 60172, - [SMALL_STATE(1656)] = 60185, - [SMALL_STATE(1657)] = 60198, - [SMALL_STATE(1658)] = 60211, - [SMALL_STATE(1659)] = 60224, - [SMALL_STATE(1660)] = 60237, - [SMALL_STATE(1661)] = 60250, - [SMALL_STATE(1662)] = 60263, - [SMALL_STATE(1663)] = 60276, - [SMALL_STATE(1664)] = 60289, - [SMALL_STATE(1665)] = 60302, - [SMALL_STATE(1666)] = 60315, - [SMALL_STATE(1667)] = 60328, - [SMALL_STATE(1668)] = 60341, - [SMALL_STATE(1669)] = 60354, - [SMALL_STATE(1670)] = 60367, - [SMALL_STATE(1671)] = 60380, - [SMALL_STATE(1672)] = 60393, - [SMALL_STATE(1673)] = 60406, - [SMALL_STATE(1674)] = 60419, - [SMALL_STATE(1675)] = 60432, - [SMALL_STATE(1676)] = 60445, - [SMALL_STATE(1677)] = 60458, - [SMALL_STATE(1678)] = 60467, - [SMALL_STATE(1679)] = 60480, - [SMALL_STATE(1680)] = 60493, - [SMALL_STATE(1681)] = 60502, - [SMALL_STATE(1682)] = 60515, - [SMALL_STATE(1683)] = 60528, - [SMALL_STATE(1684)] = 60541, - [SMALL_STATE(1685)] = 60554, - [SMALL_STATE(1686)] = 60567, - [SMALL_STATE(1687)] = 60580, - [SMALL_STATE(1688)] = 60593, - [SMALL_STATE(1689)] = 60606, - [SMALL_STATE(1690)] = 60619, - [SMALL_STATE(1691)] = 60632, - [SMALL_STATE(1692)] = 60645, - [SMALL_STATE(1693)] = 60658, - [SMALL_STATE(1694)] = 60668, - [SMALL_STATE(1695)] = 60678, - [SMALL_STATE(1696)] = 60688, - [SMALL_STATE(1697)] = 60698, - [SMALL_STATE(1698)] = 60708, - [SMALL_STATE(1699)] = 60718, - [SMALL_STATE(1700)] = 60728, - [SMALL_STATE(1701)] = 60738, - [SMALL_STATE(1702)] = 60748, - [SMALL_STATE(1703)] = 60756, - [SMALL_STATE(1704)] = 60764, - [SMALL_STATE(1705)] = 60774, - [SMALL_STATE(1706)] = 60782, - [SMALL_STATE(1707)] = 60792, - [SMALL_STATE(1708)] = 60802, - [SMALL_STATE(1709)] = 60812, - [SMALL_STATE(1710)] = 60822, - [SMALL_STATE(1711)] = 60832, - [SMALL_STATE(1712)] = 60842, - [SMALL_STATE(1713)] = 60852, - [SMALL_STATE(1714)] = 60862, - [SMALL_STATE(1715)] = 60872, - [SMALL_STATE(1716)] = 60882, - [SMALL_STATE(1717)] = 60892, - [SMALL_STATE(1718)] = 60902, - [SMALL_STATE(1719)] = 60912, - [SMALL_STATE(1720)] = 60922, - [SMALL_STATE(1721)] = 60932, - [SMALL_STATE(1722)] = 60942, - [SMALL_STATE(1723)] = 60952, - [SMALL_STATE(1724)] = 60960, - [SMALL_STATE(1725)] = 60970, - [SMALL_STATE(1726)] = 60980, - [SMALL_STATE(1727)] = 60990, - [SMALL_STATE(1728)] = 61000, - [SMALL_STATE(1729)] = 61010, - [SMALL_STATE(1730)] = 61020, - [SMALL_STATE(1731)] = 61030, - [SMALL_STATE(1732)] = 61040, - [SMALL_STATE(1733)] = 61050, - [SMALL_STATE(1734)] = 61060, - [SMALL_STATE(1735)] = 61068, - [SMALL_STATE(1736)] = 61078, - [SMALL_STATE(1737)] = 61088, - [SMALL_STATE(1738)] = 61098, - [SMALL_STATE(1739)] = 61108, - [SMALL_STATE(1740)] = 61118, - [SMALL_STATE(1741)] = 61128, - [SMALL_STATE(1742)] = 61138, - [SMALL_STATE(1743)] = 61148, - [SMALL_STATE(1744)] = 61156, - [SMALL_STATE(1745)] = 61166, - [SMALL_STATE(1746)] = 61174, - [SMALL_STATE(1747)] = 61182, - [SMALL_STATE(1748)] = 61190, - [SMALL_STATE(1749)] = 61198, - [SMALL_STATE(1750)] = 61208, - [SMALL_STATE(1751)] = 61218, - [SMALL_STATE(1752)] = 61228, - [SMALL_STATE(1753)] = 61238, - [SMALL_STATE(1754)] = 61248, - [SMALL_STATE(1755)] = 61258, - [SMALL_STATE(1756)] = 61266, - [SMALL_STATE(1757)] = 61276, - [SMALL_STATE(1758)] = 61286, - [SMALL_STATE(1759)] = 61296, - [SMALL_STATE(1760)] = 61306, - [SMALL_STATE(1761)] = 61316, - [SMALL_STATE(1762)] = 61324, - [SMALL_STATE(1763)] = 61332, - [SMALL_STATE(1764)] = 61342, - [SMALL_STATE(1765)] = 61350, - [SMALL_STATE(1766)] = 61360, - [SMALL_STATE(1767)] = 61368, - [SMALL_STATE(1768)] = 61378, - [SMALL_STATE(1769)] = 61388, - [SMALL_STATE(1770)] = 61398, - [SMALL_STATE(1771)] = 61408, - [SMALL_STATE(1772)] = 61418, - [SMALL_STATE(1773)] = 61428, - [SMALL_STATE(1774)] = 61438, - [SMALL_STATE(1775)] = 61446, - [SMALL_STATE(1776)] = 61454, - [SMALL_STATE(1777)] = 61464, - [SMALL_STATE(1778)] = 61472, - [SMALL_STATE(1779)] = 61482, - [SMALL_STATE(1780)] = 61492, - [SMALL_STATE(1781)] = 61502, - [SMALL_STATE(1782)] = 61509, - [SMALL_STATE(1783)] = 61516, - [SMALL_STATE(1784)] = 61523, - [SMALL_STATE(1785)] = 61530, - [SMALL_STATE(1786)] = 61537, - [SMALL_STATE(1787)] = 61544, - [SMALL_STATE(1788)] = 61551, - [SMALL_STATE(1789)] = 61558, - [SMALL_STATE(1790)] = 61565, - [SMALL_STATE(1791)] = 61572, - [SMALL_STATE(1792)] = 61579, - [SMALL_STATE(1793)] = 61586, - [SMALL_STATE(1794)] = 61593, - [SMALL_STATE(1795)] = 61600, - [SMALL_STATE(1796)] = 61607, - [SMALL_STATE(1797)] = 61614, - [SMALL_STATE(1798)] = 61621, - [SMALL_STATE(1799)] = 61628, - [SMALL_STATE(1800)] = 61635, - [SMALL_STATE(1801)] = 61642, - [SMALL_STATE(1802)] = 61649, - [SMALL_STATE(1803)] = 61656, - [SMALL_STATE(1804)] = 61663, - [SMALL_STATE(1805)] = 61670, - [SMALL_STATE(1806)] = 61677, - [SMALL_STATE(1807)] = 61684, - [SMALL_STATE(1808)] = 61691, - [SMALL_STATE(1809)] = 61698, - [SMALL_STATE(1810)] = 61705, - [SMALL_STATE(1811)] = 61712, - [SMALL_STATE(1812)] = 61719, - [SMALL_STATE(1813)] = 61726, - [SMALL_STATE(1814)] = 61733, - [SMALL_STATE(1815)] = 61740, - [SMALL_STATE(1816)] = 61747, - [SMALL_STATE(1817)] = 61754, - [SMALL_STATE(1818)] = 61761, - [SMALL_STATE(1819)] = 61768, - [SMALL_STATE(1820)] = 61775, - [SMALL_STATE(1821)] = 61782, - [SMALL_STATE(1822)] = 61789, - [SMALL_STATE(1823)] = 61796, - [SMALL_STATE(1824)] = 61803, - [SMALL_STATE(1825)] = 61810, - [SMALL_STATE(1826)] = 61817, - [SMALL_STATE(1827)] = 61824, - [SMALL_STATE(1828)] = 61831, - [SMALL_STATE(1829)] = 61838, - [SMALL_STATE(1830)] = 61845, - [SMALL_STATE(1831)] = 61852, - [SMALL_STATE(1832)] = 61859, - [SMALL_STATE(1833)] = 61866, - [SMALL_STATE(1834)] = 61873, - [SMALL_STATE(1835)] = 61880, - [SMALL_STATE(1836)] = 61887, - [SMALL_STATE(1837)] = 61894, - [SMALL_STATE(1838)] = 61901, - [SMALL_STATE(1839)] = 61908, - [SMALL_STATE(1840)] = 61915, - [SMALL_STATE(1841)] = 61922, - [SMALL_STATE(1842)] = 61929, - [SMALL_STATE(1843)] = 61936, - [SMALL_STATE(1844)] = 61943, - [SMALL_STATE(1845)] = 61950, - [SMALL_STATE(1846)] = 61957, - [SMALL_STATE(1847)] = 61964, - [SMALL_STATE(1848)] = 61971, - [SMALL_STATE(1849)] = 61978, - [SMALL_STATE(1850)] = 61985, - [SMALL_STATE(1851)] = 61992, - [SMALL_STATE(1852)] = 61999, - [SMALL_STATE(1853)] = 62006, - [SMALL_STATE(1854)] = 62013, - [SMALL_STATE(1855)] = 62020, - [SMALL_STATE(1856)] = 62027, - [SMALL_STATE(1857)] = 62034, - [SMALL_STATE(1858)] = 62041, - [SMALL_STATE(1859)] = 62048, - [SMALL_STATE(1860)] = 62055, - [SMALL_STATE(1861)] = 62062, - [SMALL_STATE(1862)] = 62069, - [SMALL_STATE(1863)] = 62076, - [SMALL_STATE(1864)] = 62083, - [SMALL_STATE(1865)] = 62090, - [SMALL_STATE(1866)] = 62097, - [SMALL_STATE(1867)] = 62104, - [SMALL_STATE(1868)] = 62111, - [SMALL_STATE(1869)] = 62118, - [SMALL_STATE(1870)] = 62125, - [SMALL_STATE(1871)] = 62132, - [SMALL_STATE(1872)] = 62139, - [SMALL_STATE(1873)] = 62146, - [SMALL_STATE(1874)] = 62153, - [SMALL_STATE(1875)] = 62160, - [SMALL_STATE(1876)] = 62167, - [SMALL_STATE(1877)] = 62174, - [SMALL_STATE(1878)] = 62181, - [SMALL_STATE(1879)] = 62188, - [SMALL_STATE(1880)] = 62195, - [SMALL_STATE(1881)] = 62202, - [SMALL_STATE(1882)] = 62209, - [SMALL_STATE(1883)] = 62216, - [SMALL_STATE(1884)] = 62223, - [SMALL_STATE(1885)] = 62230, - [SMALL_STATE(1886)] = 62237, - [SMALL_STATE(1887)] = 62244, - [SMALL_STATE(1888)] = 62251, - [SMALL_STATE(1889)] = 62258, - [SMALL_STATE(1890)] = 62265, - [SMALL_STATE(1891)] = 62272, - [SMALL_STATE(1892)] = 62279, - [SMALL_STATE(1893)] = 62286, - [SMALL_STATE(1894)] = 62293, - [SMALL_STATE(1895)] = 62300, - [SMALL_STATE(1896)] = 62307, - [SMALL_STATE(1897)] = 62314, - [SMALL_STATE(1898)] = 62321, - [SMALL_STATE(1899)] = 62328, - [SMALL_STATE(1900)] = 62335, - [SMALL_STATE(1901)] = 62342, - [SMALL_STATE(1902)] = 62349, - [SMALL_STATE(1903)] = 62356, - [SMALL_STATE(1904)] = 62363, - [SMALL_STATE(1905)] = 62370, - [SMALL_STATE(1906)] = 62377, - [SMALL_STATE(1907)] = 62384, - [SMALL_STATE(1908)] = 62391, - [SMALL_STATE(1909)] = 62398, - [SMALL_STATE(1910)] = 62405, - [SMALL_STATE(1911)] = 62412, - [SMALL_STATE(1912)] = 62419, - [SMALL_STATE(1913)] = 62426, - [SMALL_STATE(1914)] = 62433, - [SMALL_STATE(1915)] = 62440, - [SMALL_STATE(1916)] = 62447, - [SMALL_STATE(1917)] = 62454, - [SMALL_STATE(1918)] = 62461, - [SMALL_STATE(1919)] = 62468, - [SMALL_STATE(1920)] = 62475, - [SMALL_STATE(1921)] = 62482, - [SMALL_STATE(1922)] = 62489, - [SMALL_STATE(1923)] = 62496, - [SMALL_STATE(1924)] = 62503, - [SMALL_STATE(1925)] = 62510, - [SMALL_STATE(1926)] = 62517, - [SMALL_STATE(1927)] = 62524, - [SMALL_STATE(1928)] = 62531, - [SMALL_STATE(1929)] = 62538, - [SMALL_STATE(1930)] = 62545, - [SMALL_STATE(1931)] = 62552, - [SMALL_STATE(1932)] = 62559, - [SMALL_STATE(1933)] = 62566, - [SMALL_STATE(1934)] = 62573, - [SMALL_STATE(1935)] = 62580, - [SMALL_STATE(1936)] = 62587, - [SMALL_STATE(1937)] = 62594, - [SMALL_STATE(1938)] = 62601, - [SMALL_STATE(1939)] = 62608, - [SMALL_STATE(1940)] = 62615, - [SMALL_STATE(1941)] = 62622, - [SMALL_STATE(1942)] = 62629, - [SMALL_STATE(1943)] = 62636, - [SMALL_STATE(1944)] = 62643, - [SMALL_STATE(1945)] = 62650, - [SMALL_STATE(1946)] = 62657, - [SMALL_STATE(1947)] = 62664, - [SMALL_STATE(1948)] = 62671, - [SMALL_STATE(1949)] = 62678, - [SMALL_STATE(1950)] = 62685, - [SMALL_STATE(1951)] = 62692, - [SMALL_STATE(1952)] = 62699, - [SMALL_STATE(1953)] = 62706, - [SMALL_STATE(1954)] = 62713, - [SMALL_STATE(1955)] = 62720, - [SMALL_STATE(1956)] = 62727, - [SMALL_STATE(1957)] = 62734, - [SMALL_STATE(1958)] = 62741, - [SMALL_STATE(1959)] = 62748, - [SMALL_STATE(1960)] = 62755, - [SMALL_STATE(1961)] = 62762, - [SMALL_STATE(1962)] = 62769, - [SMALL_STATE(1963)] = 62776, - [SMALL_STATE(1964)] = 62783, - [SMALL_STATE(1965)] = 62790, - [SMALL_STATE(1966)] = 62797, - [SMALL_STATE(1967)] = 62804, - [SMALL_STATE(1968)] = 62811, - [SMALL_STATE(1969)] = 62818, - [SMALL_STATE(1970)] = 62825, - [SMALL_STATE(1971)] = 62832, - [SMALL_STATE(1972)] = 62839, - [SMALL_STATE(1973)] = 62846, - [SMALL_STATE(1974)] = 62853, - [SMALL_STATE(1975)] = 62860, - [SMALL_STATE(1976)] = 62867, - [SMALL_STATE(1977)] = 62874, - [SMALL_STATE(1978)] = 62881, - [SMALL_STATE(1979)] = 62888, - [SMALL_STATE(1980)] = 62895, - [SMALL_STATE(1981)] = 62902, - [SMALL_STATE(1982)] = 62909, - [SMALL_STATE(1983)] = 62916, - [SMALL_STATE(1984)] = 62923, - [SMALL_STATE(1985)] = 62930, - [SMALL_STATE(1986)] = 62937, - [SMALL_STATE(1987)] = 62944, - [SMALL_STATE(1988)] = 62951, - [SMALL_STATE(1989)] = 62958, - [SMALL_STATE(1990)] = 62965, - [SMALL_STATE(1991)] = 62972, - [SMALL_STATE(1992)] = 62979, - [SMALL_STATE(1993)] = 62986, - [SMALL_STATE(1994)] = 62993, - [SMALL_STATE(1995)] = 63000, - [SMALL_STATE(1996)] = 63007, - [SMALL_STATE(1997)] = 63014, - [SMALL_STATE(1998)] = 63021, - [SMALL_STATE(1999)] = 63028, - [SMALL_STATE(2000)] = 63035, - [SMALL_STATE(2001)] = 63042, - [SMALL_STATE(2002)] = 63049, - [SMALL_STATE(2003)] = 63056, - [SMALL_STATE(2004)] = 63063, - [SMALL_STATE(2005)] = 63070, - [SMALL_STATE(2006)] = 63077, - [SMALL_STATE(2007)] = 63084, - [SMALL_STATE(2008)] = 63091, - [SMALL_STATE(2009)] = 63098, - [SMALL_STATE(2010)] = 63105, - [SMALL_STATE(2011)] = 63112, - [SMALL_STATE(2012)] = 63119, - [SMALL_STATE(2013)] = 63126, - [SMALL_STATE(2014)] = 63133, - [SMALL_STATE(2015)] = 63140, - [SMALL_STATE(2016)] = 63147, - [SMALL_STATE(2017)] = 63154, - [SMALL_STATE(2018)] = 63161, - [SMALL_STATE(2019)] = 63168, - [SMALL_STATE(2020)] = 63175, - [SMALL_STATE(2021)] = 63182, - [SMALL_STATE(2022)] = 63189, - [SMALL_STATE(2023)] = 63196, - [SMALL_STATE(2024)] = 63203, - [SMALL_STATE(2025)] = 63210, - [SMALL_STATE(2026)] = 63217, - [SMALL_STATE(2027)] = 63224, - [SMALL_STATE(2028)] = 63231, - [SMALL_STATE(2029)] = 63238, - [SMALL_STATE(2030)] = 63245, + [SMALL_STATE(446)] = 0, + [SMALL_STATE(447)] = 115, + [SMALL_STATE(448)] = 230, + [SMALL_STATE(449)] = 345, + [SMALL_STATE(450)] = 460, + [SMALL_STATE(451)] = 575, + [SMALL_STATE(452)] = 690, + [SMALL_STATE(453)] = 804, + [SMALL_STATE(454)] = 918, + [SMALL_STATE(455)] = 1029, + [SMALL_STATE(456)] = 1137, + [SMALL_STATE(457)] = 1245, + [SMALL_STATE(458)] = 1353, + [SMALL_STATE(459)] = 1461, + [SMALL_STATE(460)] = 1569, + [SMALL_STATE(461)] = 1677, + [SMALL_STATE(462)] = 1785, + [SMALL_STATE(463)] = 1893, + [SMALL_STATE(464)] = 2001, + [SMALL_STATE(465)] = 2109, + [SMALL_STATE(466)] = 2217, + [SMALL_STATE(467)] = 2325, + [SMALL_STATE(468)] = 2433, + [SMALL_STATE(469)] = 2541, + [SMALL_STATE(470)] = 2649, + [SMALL_STATE(471)] = 2757, + [SMALL_STATE(472)] = 2865, + [SMALL_STATE(473)] = 2973, + [SMALL_STATE(474)] = 3081, + [SMALL_STATE(475)] = 3189, + [SMALL_STATE(476)] = 3297, + [SMALL_STATE(477)] = 3405, + [SMALL_STATE(478)] = 3513, + [SMALL_STATE(479)] = 3621, + [SMALL_STATE(480)] = 3729, + [SMALL_STATE(481)] = 3837, + [SMALL_STATE(482)] = 3945, + [SMALL_STATE(483)] = 4053, + [SMALL_STATE(484)] = 4161, + [SMALL_STATE(485)] = 4269, + [SMALL_STATE(486)] = 4359, + [SMALL_STATE(487)] = 4467, + [SMALL_STATE(488)] = 4575, + [SMALL_STATE(489)] = 4680, + [SMALL_STATE(490)] = 4785, + [SMALL_STATE(491)] = 4890, + [SMALL_STATE(492)] = 4995, + [SMALL_STATE(493)] = 5100, + [SMALL_STATE(494)] = 5205, + [SMALL_STATE(495)] = 5310, + [SMALL_STATE(496)] = 5415, + [SMALL_STATE(497)] = 5520, + [SMALL_STATE(498)] = 5625, + [SMALL_STATE(499)] = 5730, + [SMALL_STATE(500)] = 5835, + [SMALL_STATE(501)] = 5940, + [SMALL_STATE(502)] = 6042, + [SMALL_STATE(503)] = 6144, + [SMALL_STATE(504)] = 6246, + [SMALL_STATE(505)] = 6348, + [SMALL_STATE(506)] = 6450, + [SMALL_STATE(507)] = 6552, + [SMALL_STATE(508)] = 6654, + [SMALL_STATE(509)] = 6756, + [SMALL_STATE(510)] = 6858, + [SMALL_STATE(511)] = 6960, + [SMALL_STATE(512)] = 7062, + [SMALL_STATE(513)] = 7164, + [SMALL_STATE(514)] = 7266, + [SMALL_STATE(515)] = 7368, + [SMALL_STATE(516)] = 7470, + [SMALL_STATE(517)] = 7572, + [SMALL_STATE(518)] = 7674, + [SMALL_STATE(519)] = 7776, + [SMALL_STATE(520)] = 7878, + [SMALL_STATE(521)] = 7980, + [SMALL_STATE(522)] = 8082, + [SMALL_STATE(523)] = 8184, + [SMALL_STATE(524)] = 8286, + [SMALL_STATE(525)] = 8388, + [SMALL_STATE(526)] = 8490, + [SMALL_STATE(527)] = 8592, + [SMALL_STATE(528)] = 8694, + [SMALL_STATE(529)] = 8796, + [SMALL_STATE(530)] = 8898, + [SMALL_STATE(531)] = 9000, + [SMALL_STATE(532)] = 9102, + [SMALL_STATE(533)] = 9204, + [SMALL_STATE(534)] = 9306, + [SMALL_STATE(535)] = 9408, + [SMALL_STATE(536)] = 9510, + [SMALL_STATE(537)] = 9612, + [SMALL_STATE(538)] = 9714, + [SMALL_STATE(539)] = 9816, + [SMALL_STATE(540)] = 9918, + [SMALL_STATE(541)] = 10020, + [SMALL_STATE(542)] = 10122, + [SMALL_STATE(543)] = 10224, + [SMALL_STATE(544)] = 10326, + [SMALL_STATE(545)] = 10428, + [SMALL_STATE(546)] = 10530, + [SMALL_STATE(547)] = 10632, + [SMALL_STATE(548)] = 10734, + [SMALL_STATE(549)] = 10836, + [SMALL_STATE(550)] = 10938, + [SMALL_STATE(551)] = 11040, + [SMALL_STATE(552)] = 11142, + [SMALL_STATE(553)] = 11244, + [SMALL_STATE(554)] = 11346, + [SMALL_STATE(555)] = 11448, + [SMALL_STATE(556)] = 11550, + [SMALL_STATE(557)] = 11652, + [SMALL_STATE(558)] = 11754, + [SMALL_STATE(559)] = 11856, + [SMALL_STATE(560)] = 11958, + [SMALL_STATE(561)] = 12060, + [SMALL_STATE(562)] = 12162, + [SMALL_STATE(563)] = 12264, + [SMALL_STATE(564)] = 12366, + [SMALL_STATE(565)] = 12468, + [SMALL_STATE(566)] = 12570, + [SMALL_STATE(567)] = 12672, + [SMALL_STATE(568)] = 12774, + [SMALL_STATE(569)] = 12876, + [SMALL_STATE(570)] = 12978, + [SMALL_STATE(571)] = 13080, + [SMALL_STATE(572)] = 13182, + [SMALL_STATE(573)] = 13284, + [SMALL_STATE(574)] = 13386, + [SMALL_STATE(575)] = 13488, + [SMALL_STATE(576)] = 13590, + [SMALL_STATE(577)] = 13692, + [SMALL_STATE(578)] = 13794, + [SMALL_STATE(579)] = 13896, + [SMALL_STATE(580)] = 13998, + [SMALL_STATE(581)] = 14100, + [SMALL_STATE(582)] = 14202, + [SMALL_STATE(583)] = 14304, + [SMALL_STATE(584)] = 14406, + [SMALL_STATE(585)] = 14508, + [SMALL_STATE(586)] = 14610, + [SMALL_STATE(587)] = 14712, + [SMALL_STATE(588)] = 14814, + [SMALL_STATE(589)] = 14916, + [SMALL_STATE(590)] = 15018, + [SMALL_STATE(591)] = 15120, + [SMALL_STATE(592)] = 15222, + [SMALL_STATE(593)] = 15324, + [SMALL_STATE(594)] = 15426, + [SMALL_STATE(595)] = 15528, + [SMALL_STATE(596)] = 15630, + [SMALL_STATE(597)] = 15732, + [SMALL_STATE(598)] = 15834, + [SMALL_STATE(599)] = 15936, + [SMALL_STATE(600)] = 16038, + [SMALL_STATE(601)] = 16140, + [SMALL_STATE(602)] = 16242, + [SMALL_STATE(603)] = 16344, + [SMALL_STATE(604)] = 16446, + [SMALL_STATE(605)] = 16548, + [SMALL_STATE(606)] = 16650, + [SMALL_STATE(607)] = 16752, + [SMALL_STATE(608)] = 16854, + [SMALL_STATE(609)] = 16956, + [SMALL_STATE(610)] = 17058, + [SMALL_STATE(611)] = 17160, + [SMALL_STATE(612)] = 17262, + [SMALL_STATE(613)] = 17364, + [SMALL_STATE(614)] = 17466, + [SMALL_STATE(615)] = 17568, + [SMALL_STATE(616)] = 17670, + [SMALL_STATE(617)] = 17741, + [SMALL_STATE(618)] = 17812, + [SMALL_STATE(619)] = 17883, + [SMALL_STATE(620)] = 17951, + [SMALL_STATE(621)] = 18014, + [SMALL_STATE(622)] = 18077, + [SMALL_STATE(623)] = 18139, + [SMALL_STATE(624)] = 18201, + [SMALL_STATE(625)] = 18263, + [SMALL_STATE(626)] = 18325, + [SMALL_STATE(627)] = 18403, + [SMALL_STATE(628)] = 18465, + [SMALL_STATE(629)] = 18527, + [SMALL_STATE(630)] = 18589, + [SMALL_STATE(631)] = 18651, + [SMALL_STATE(632)] = 18713, + [SMALL_STATE(633)] = 18775, + [SMALL_STATE(634)] = 18874, + [SMALL_STATE(635)] = 18973, + [SMALL_STATE(636)] = 19072, + [SMALL_STATE(637)] = 19171, + [SMALL_STATE(638)] = 19270, + [SMALL_STATE(639)] = 19369, + [SMALL_STATE(640)] = 19468, + [SMALL_STATE(641)] = 19567, + [SMALL_STATE(642)] = 19666, + [SMALL_STATE(643)] = 19765, + [SMALL_STATE(644)] = 19864, + [SMALL_STATE(645)] = 19963, + [SMALL_STATE(646)] = 20062, + [SMALL_STATE(647)] = 20163, + [SMALL_STATE(648)] = 20262, + [SMALL_STATE(649)] = 20361, + [SMALL_STATE(650)] = 20460, + [SMALL_STATE(651)] = 20559, + [SMALL_STATE(652)] = 20655, + [SMALL_STATE(653)] = 20751, + [SMALL_STATE(654)] = 20849, + [SMALL_STATE(655)] = 20908, + [SMALL_STATE(656)] = 20967, + [SMALL_STATE(657)] = 21026, + [SMALL_STATE(658)] = 21085, + [SMALL_STATE(659)] = 21154, + [SMALL_STATE(660)] = 21219, + [SMALL_STATE(661)] = 21278, + [SMALL_STATE(662)] = 21336, + [SMALL_STATE(663)] = 21394, + [SMALL_STATE(664)] = 21452, + [SMALL_STATE(665)] = 21510, + [SMALL_STATE(666)] = 21568, + [SMALL_STATE(667)] = 21626, + [SMALL_STATE(668)] = 21684, + [SMALL_STATE(669)] = 21742, + [SMALL_STATE(670)] = 21800, + [SMALL_STATE(671)] = 21858, + [SMALL_STATE(672)] = 21916, + [SMALL_STATE(673)] = 21974, + [SMALL_STATE(674)] = 22032, + [SMALL_STATE(675)] = 22090, + [SMALL_STATE(676)] = 22148, + [SMALL_STATE(677)] = 22206, + [SMALL_STATE(678)] = 22264, + [SMALL_STATE(679)] = 22353, + [SMALL_STATE(680)] = 22414, + [SMALL_STATE(681)] = 22481, + [SMALL_STATE(682)] = 22538, + [SMALL_STATE(683)] = 22595, + [SMALL_STATE(684)] = 22660, + [SMALL_STATE(685)] = 22727, + [SMALL_STATE(686)] = 22794, + [SMALL_STATE(687)] = 22861, + [SMALL_STATE(688)] = 22950, + [SMALL_STATE(689)] = 23007, + [SMALL_STATE(690)] = 23072, + [SMALL_STATE(691)] = 23129, + [SMALL_STATE(692)] = 23218, + [SMALL_STATE(693)] = 23307, + [SMALL_STATE(694)] = 23396, + [SMALL_STATE(695)] = 23485, + [SMALL_STATE(696)] = 23552, + [SMALL_STATE(697)] = 23641, + [SMALL_STATE(698)] = 23730, + [SMALL_STATE(699)] = 23816, + [SMALL_STATE(700)] = 23872, + [SMALL_STATE(701)] = 23928, + [SMALL_STATE(702)] = 23992, + [SMALL_STATE(703)] = 24055, + [SMALL_STATE(704)] = 24118, + [SMALL_STATE(705)] = 24173, + [SMALL_STATE(706)] = 24236, + [SMALL_STATE(707)] = 24299, + [SMALL_STATE(708)] = 24354, + [SMALL_STATE(709)] = 24409, + [SMALL_STATE(710)] = 24472, + [SMALL_STATE(711)] = 24526, + [SMALL_STATE(712)] = 24580, + [SMALL_STATE(713)] = 24650, + [SMALL_STATE(714)] = 24720, + [SMALL_STATE(715)] = 24774, + [SMALL_STATE(716)] = 24844, + [SMALL_STATE(717)] = 24914, + [SMALL_STATE(718)] = 24971, + [SMALL_STATE(719)] = 25028, + [SMALL_STATE(720)] = 25085, + [SMALL_STATE(721)] = 25148, + [SMALL_STATE(722)] = 25205, + [SMALL_STATE(723)] = 25262, + [SMALL_STATE(724)] = 25319, + [SMALL_STATE(725)] = 25376, + [SMALL_STATE(726)] = 25439, + [SMALL_STATE(727)] = 25496, + [SMALL_STATE(728)] = 25559, + [SMALL_STATE(729)] = 25616, + [SMALL_STATE(730)] = 25679, + [SMALL_STATE(731)] = 25736, + [SMALL_STATE(732)] = 25799, + [SMALL_STATE(733)] = 25856, + [SMALL_STATE(734)] = 25919, + [SMALL_STATE(735)] = 25971, + [SMALL_STATE(736)] = 26023, + [SMALL_STATE(737)] = 26075, + [SMALL_STATE(738)] = 26127, + [SMALL_STATE(739)] = 26179, + [SMALL_STATE(740)] = 26239, + [SMALL_STATE(741)] = 26291, + [SMALL_STATE(742)] = 26343, + [SMALL_STATE(743)] = 26395, + [SMALL_STATE(744)] = 26447, + [SMALL_STATE(745)] = 26503, + [SMALL_STATE(746)] = 26589, + [SMALL_STATE(747)] = 26641, + [SMALL_STATE(748)] = 26693, + [SMALL_STATE(749)] = 26779, + [SMALL_STATE(750)] = 26831, + [SMALL_STATE(751)] = 26889, + [SMALL_STATE(752)] = 26945, + [SMALL_STATE(753)] = 27001, + [SMALL_STATE(754)] = 27053, + [SMALL_STATE(755)] = 27139, + [SMALL_STATE(756)] = 27197, + [SMALL_STATE(757)] = 27249, + [SMALL_STATE(758)] = 27315, + [SMALL_STATE(759)] = 27383, + [SMALL_STATE(760)] = 27435, + [SMALL_STATE(761)] = 27507, + [SMALL_STATE(762)] = 27559, + [SMALL_STATE(763)] = 27611, + [SMALL_STATE(764)] = 27663, + [SMALL_STATE(765)] = 27715, + [SMALL_STATE(766)] = 27789, + [SMALL_STATE(767)] = 27865, + [SMALL_STATE(768)] = 27917, + [SMALL_STATE(769)] = 27969, + [SMALL_STATE(770)] = 28025, + [SMALL_STATE(771)] = 28103, + [SMALL_STATE(772)] = 28155, + [SMALL_STATE(773)] = 28207, + [SMALL_STATE(774)] = 28267, + [SMALL_STATE(775)] = 28323, + [SMALL_STATE(776)] = 28403, + [SMALL_STATE(777)] = 28485, + [SMALL_STATE(778)] = 28537, + [SMALL_STATE(779)] = 28601, + [SMALL_STATE(780)] = 28653, + [SMALL_STATE(781)] = 28705, + [SMALL_STATE(782)] = 28757, + [SMALL_STATE(783)] = 28813, + [SMALL_STATE(784)] = 28869, + [SMALL_STATE(785)] = 28940, + [SMALL_STATE(786)] = 29009, + [SMALL_STATE(787)] = 29060, + [SMALL_STATE(788)] = 29129, + [SMALL_STATE(789)] = 29180, + [SMALL_STATE(790)] = 29249, + [SMALL_STATE(791)] = 29300, + [SMALL_STATE(792)] = 29369, + [SMALL_STATE(793)] = 29420, + [SMALL_STATE(794)] = 29475, + [SMALL_STATE(795)] = 29526, + [SMALL_STATE(796)] = 29577, + [SMALL_STATE(797)] = 29628, + [SMALL_STATE(798)] = 29713, + [SMALL_STATE(799)] = 29764, + [SMALL_STATE(800)] = 29815, + [SMALL_STATE(801)] = 29900, + [SMALL_STATE(802)] = 29985, + [SMALL_STATE(803)] = 30048, + [SMALL_STATE(804)] = 30099, + [SMALL_STATE(805)] = 30150, + [SMALL_STATE(806)] = 30201, + [SMALL_STATE(807)] = 30252, + [SMALL_STATE(808)] = 30303, + [SMALL_STATE(809)] = 30354, + [SMALL_STATE(810)] = 30419, + [SMALL_STATE(811)] = 30470, + [SMALL_STATE(812)] = 30537, + [SMALL_STATE(813)] = 30610, + [SMALL_STATE(814)] = 30685, + [SMALL_STATE(815)] = 30762, + [SMALL_STATE(816)] = 30841, + [SMALL_STATE(817)] = 30892, + [SMALL_STATE(818)] = 30943, + [SMALL_STATE(819)] = 31024, + [SMALL_STATE(820)] = 31084, + [SMALL_STATE(821)] = 31138, + [SMALL_STATE(822)] = 31224, + [SMALL_STATE(823)] = 31310, + [SMALL_STATE(824)] = 31365, + [SMALL_STATE(825)] = 31420, + [SMALL_STATE(826)] = 31477, + [SMALL_STATE(827)] = 31525, + [SMALL_STATE(828)] = 31573, + [SMALL_STATE(829)] = 31620, + [SMALL_STATE(830)] = 31667, + [SMALL_STATE(831)] = 31726, + [SMALL_STATE(832)] = 31809, + [SMALL_STATE(833)] = 31860, + [SMALL_STATE(834)] = 31907, + [SMALL_STATE(835)] = 31954, + [SMALL_STATE(836)] = 32001, + [SMALL_STATE(837)] = 32048, + [SMALL_STATE(838)] = 32131, + [SMALL_STATE(839)] = 32190, + [SMALL_STATE(840)] = 32251, + [SMALL_STATE(841)] = 32334, + [SMALL_STATE(842)] = 32393, + [SMALL_STATE(843)] = 32472, + [SMALL_STATE(844)] = 32549, + [SMALL_STATE(845)] = 32596, + [SMALL_STATE(846)] = 32671, + [SMALL_STATE(847)] = 32744, + [SMALL_STATE(848)] = 32791, + [SMALL_STATE(849)] = 32862, + [SMALL_STATE(850)] = 32931, + [SMALL_STATE(851)] = 32996, + [SMALL_STATE(852)] = 33043, + [SMALL_STATE(853)] = 33090, + [SMALL_STATE(854)] = 33137, + [SMALL_STATE(855)] = 33184, + [SMALL_STATE(856)] = 33231, + [SMALL_STATE(857)] = 33278, + [SMALL_STATE(858)] = 33325, + [SMALL_STATE(859)] = 33372, + [SMALL_STATE(860)] = 33419, + [SMALL_STATE(861)] = 33470, + [SMALL_STATE(862)] = 33517, + [SMALL_STATE(863)] = 33564, + [SMALL_STATE(864)] = 33611, + [SMALL_STATE(865)] = 33662, + [SMALL_STATE(866)] = 33713, + [SMALL_STATE(867)] = 33764, + [SMALL_STATE(868)] = 33811, + [SMALL_STATE(869)] = 33874, + [SMALL_STATE(870)] = 33921, + [SMALL_STATE(871)] = 33980, + [SMALL_STATE(872)] = 34037, + [SMALL_STATE(873)] = 34084, + [SMALL_STATE(874)] = 34131, + [SMALL_STATE(875)] = 34178, + [SMALL_STATE(876)] = 34225, + [SMALL_STATE(877)] = 34272, + [SMALL_STATE(878)] = 34319, + [SMALL_STATE(879)] = 34370, + [SMALL_STATE(880)] = 34417, + [SMALL_STATE(881)] = 34464, + [SMALL_STATE(882)] = 34511, + [SMALL_STATE(883)] = 34558, + [SMALL_STATE(884)] = 34605, + [SMALL_STATE(885)] = 34656, + [SMALL_STATE(886)] = 34703, + [SMALL_STATE(887)] = 34750, + [SMALL_STATE(888)] = 34797, + [SMALL_STATE(889)] = 34856, + [SMALL_STATE(890)] = 34902, + [SMALL_STATE(891)] = 34948, + [SMALL_STATE(892)] = 34998, + [SMALL_STATE(893)] = 35044, + [SMALL_STATE(894)] = 35090, + [SMALL_STATE(895)] = 35166, + [SMALL_STATE(896)] = 35242, + [SMALL_STATE(897)] = 35318, + [SMALL_STATE(898)] = 35394, + [SMALL_STATE(899)] = 35445, + [SMALL_STATE(900)] = 35490, + [SMALL_STATE(901)] = 35547, + [SMALL_STATE(902)] = 35591, + [SMALL_STATE(903)] = 35635, + [SMALL_STATE(904)] = 35679, + [SMALL_STATE(905)] = 35723, + [SMALL_STATE(906)] = 35767, + [SMALL_STATE(907)] = 35811, + [SMALL_STATE(908)] = 35855, + [SMALL_STATE(909)] = 35899, + [SMALL_STATE(910)] = 35953, + [SMALL_STATE(911)] = 36005, + [SMALL_STATE(912)] = 36049, + [SMALL_STATE(913)] = 36093, + [SMALL_STATE(914)] = 36135, + [SMALL_STATE(915)] = 36205, + [SMALL_STATE(916)] = 36247, + [SMALL_STATE(917)] = 36289, + [SMALL_STATE(918)] = 36331, + [SMALL_STATE(919)] = 36373, + [SMALL_STATE(920)] = 36445, + [SMALL_STATE(921)] = 36487, + [SMALL_STATE(922)] = 36559, + [SMALL_STATE(923)] = 36601, + [SMALL_STATE(924)] = 36643, + [SMALL_STATE(925)] = 36685, + [SMALL_STATE(926)] = 36727, + [SMALL_STATE(927)] = 36771, + [SMALL_STATE(928)] = 36815, + [SMALL_STATE(929)] = 36857, + [SMALL_STATE(930)] = 36899, + [SMALL_STATE(931)] = 36943, + [SMALL_STATE(932)] = 37013, + [SMALL_STATE(933)] = 37055, + [SMALL_STATE(934)] = 37099, + [SMALL_STATE(935)] = 37166, + [SMALL_STATE(936)] = 37233, + [SMALL_STATE(937)] = 37310, + [SMALL_STATE(938)] = 37377, + [SMALL_STATE(939)] = 37444, + [SMALL_STATE(940)] = 37521, + [SMALL_STATE(941)] = 37578, + [SMALL_STATE(942)] = 37655, + [SMALL_STATE(943)] = 37732, + [SMALL_STATE(944)] = 37799, + [SMALL_STATE(945)] = 37862, + [SMALL_STATE(946)] = 37935, + [SMALL_STATE(947)] = 37990, + [SMALL_STATE(948)] = 38061, + [SMALL_STATE(949)] = 38130, + [SMALL_STATE(950)] = 38189, + [SMALL_STATE(951)] = 38256, + [SMALL_STATE(952)] = 38321, + [SMALL_STATE(953)] = 38388, + [SMALL_STATE(954)] = 38455, + [SMALL_STATE(955)] = 38522, + [SMALL_STATE(956)] = 38576, + [SMALL_STATE(957)] = 38646, + [SMALL_STATE(958)] = 38704, + [SMALL_STATE(959)] = 38770, + [SMALL_STATE(960)] = 38844, + [SMALL_STATE(961)] = 38908, + [SMALL_STATE(962)] = 38982, + [SMALL_STATE(963)] = 39030, + [SMALL_STATE(964)] = 39104, + [SMALL_STATE(965)] = 39160, + [SMALL_STATE(966)] = 39228, + [SMALL_STATE(967)] = 39296, + [SMALL_STATE(968)] = 39358, + [SMALL_STATE(969)] = 39421, + [SMALL_STATE(970)] = 39484, + [SMALL_STATE(971)] = 39547, + [SMALL_STATE(972)] = 39610, + [SMALL_STATE(973)] = 39673, + [SMALL_STATE(974)] = 39736, + [SMALL_STATE(975)] = 39799, + [SMALL_STATE(976)] = 39862, + [SMALL_STATE(977)] = 39925, + [SMALL_STATE(978)] = 39988, + [SMALL_STATE(979)] = 40051, + [SMALL_STATE(980)] = 40114, + [SMALL_STATE(981)] = 40177, + [SMALL_STATE(982)] = 40215, + [SMALL_STATE(983)] = 40275, + [SMALL_STATE(984)] = 40335, + [SMALL_STATE(985)] = 40373, + [SMALL_STATE(986)] = 40419, + [SMALL_STATE(987)] = 40457, + [SMALL_STATE(988)] = 40517, + [SMALL_STATE(989)] = 40577, + [SMALL_STATE(990)] = 40637, + [SMALL_STATE(991)] = 40697, + [SMALL_STATE(992)] = 40735, + [SMALL_STATE(993)] = 40809, + [SMALL_STATE(994)] = 40884, + [SMALL_STATE(995)] = 40921, + [SMALL_STATE(996)] = 40996, + [SMALL_STATE(997)] = 41071, + [SMALL_STATE(998)] = 41146, + [SMALL_STATE(999)] = 41221, + [SMALL_STATE(1000)] = 41258, + [SMALL_STATE(1001)] = 41329, + [SMALL_STATE(1002)] = 41404, + [SMALL_STATE(1003)] = 41476, + [SMALL_STATE(1004)] = 41520, + [SMALL_STATE(1005)] = 41592, + [SMALL_STATE(1006)] = 41664, + [SMALL_STATE(1007)] = 41736, + [SMALL_STATE(1008)] = 41806, + [SMALL_STATE(1009)] = 41876, + [SMALL_STATE(1010)] = 41922, + [SMALL_STATE(1011)] = 41992, + [SMALL_STATE(1012)] = 42064, + [SMALL_STATE(1013)] = 42116, + [SMALL_STATE(1014)] = 42188, + [SMALL_STATE(1015)] = 42260, + [SMALL_STATE(1016)] = 42330, + [SMALL_STATE(1017)] = 42386, + [SMALL_STATE(1018)] = 42458, + [SMALL_STATE(1019)] = 42530, + [SMALL_STATE(1020)] = 42602, + [SMALL_STATE(1021)] = 42674, + [SMALL_STATE(1022)] = 42746, + [SMALL_STATE(1023)] = 42818, + [SMALL_STATE(1024)] = 42890, + [SMALL_STATE(1025)] = 42962, + [SMALL_STATE(1026)] = 43034, + [SMALL_STATE(1027)] = 43100, + [SMALL_STATE(1028)] = 43170, + [SMALL_STATE(1029)] = 43242, + [SMALL_STATE(1030)] = 43314, + [SMALL_STATE(1031)] = 43374, + [SMALL_STATE(1032)] = 43444, + [SMALL_STATE(1033)] = 43516, + [SMALL_STATE(1034)] = 43588, + [SMALL_STATE(1035)] = 43660, + [SMALL_STATE(1036)] = 43732, + [SMALL_STATE(1037)] = 43802, + [SMALL_STATE(1038)] = 43864, + [SMALL_STATE(1039)] = 43938, + [SMALL_STATE(1040)] = 44010, + [SMALL_STATE(1041)] = 44078, + [SMALL_STATE(1042)] = 44150, + [SMALL_STATE(1043)] = 44214, + [SMALL_STATE(1044)] = 44286, + [SMALL_STATE(1045)] = 44358, + [SMALL_STATE(1046)] = 44412, + [SMALL_STATE(1047)] = 44484, + [SMALL_STATE(1048)] = 44554, + [SMALL_STATE(1049)] = 44620, + [SMALL_STATE(1050)] = 44692, + [SMALL_STATE(1051)] = 44764, + [SMALL_STATE(1052)] = 44833, + [SMALL_STATE(1053)] = 44902, + [SMALL_STATE(1054)] = 44971, + [SMALL_STATE(1055)] = 45040, + [SMALL_STATE(1056)] = 45109, + [SMALL_STATE(1057)] = 45178, + [SMALL_STATE(1058)] = 45247, + [SMALL_STATE(1059)] = 45316, + [SMALL_STATE(1060)] = 45385, + [SMALL_STATE(1061)] = 45454, + [SMALL_STATE(1062)] = 45523, + [SMALL_STATE(1063)] = 45592, + [SMALL_STATE(1064)] = 45661, + [SMALL_STATE(1065)] = 45730, + [SMALL_STATE(1066)] = 45799, + [SMALL_STATE(1067)] = 45868, + [SMALL_STATE(1068)] = 45937, + [SMALL_STATE(1069)] = 46006, + [SMALL_STATE(1070)] = 46075, + [SMALL_STATE(1071)] = 46144, + [SMALL_STATE(1072)] = 46213, + [SMALL_STATE(1073)] = 46282, + [SMALL_STATE(1074)] = 46336, + [SMALL_STATE(1075)] = 46390, + [SMALL_STATE(1076)] = 46444, + [SMALL_STATE(1077)] = 46480, + [SMALL_STATE(1078)] = 46534, + [SMALL_STATE(1079)] = 46600, + [SMALL_STATE(1080)] = 46638, + [SMALL_STATE(1081)] = 46676, + [SMALL_STATE(1082)] = 46714, + [SMALL_STATE(1083)] = 46768, + [SMALL_STATE(1084)] = 46822, + [SMALL_STATE(1085)] = 46873, + [SMALL_STATE(1086)] = 46924, + [SMALL_STATE(1087)] = 46975, + [SMALL_STATE(1088)] = 47026, + [SMALL_STATE(1089)] = 47077, + [SMALL_STATE(1090)] = 47128, + [SMALL_STATE(1091)] = 47166, + [SMALL_STATE(1092)] = 47206, + [SMALL_STATE(1093)] = 47245, + [SMALL_STATE(1094)] = 47284, + [SMALL_STATE(1095)] = 47333, + [SMALL_STATE(1096)] = 47372, + [SMALL_STATE(1097)] = 47411, + [SMALL_STATE(1098)] = 47445, + [SMALL_STATE(1099)] = 47499, + [SMALL_STATE(1100)] = 47553, + [SMALL_STATE(1101)] = 47607, + [SMALL_STATE(1102)] = 47661, + [SMALL_STATE(1103)] = 47716, + [SMALL_STATE(1104)] = 47767, + [SMALL_STATE(1105)] = 47802, + [SMALL_STATE(1106)] = 47835, + [SMALL_STATE(1107)] = 47886, + [SMALL_STATE(1108)] = 47937, + [SMALL_STATE(1109)] = 47980, + [SMALL_STATE(1110)] = 48031, + [SMALL_STATE(1111)] = 48074, + [SMALL_STATE(1112)] = 48125, + [SMALL_STATE(1113)] = 48176, + [SMALL_STATE(1114)] = 48219, + [SMALL_STATE(1115)] = 48252, + [SMALL_STATE(1116)] = 48303, + [SMALL_STATE(1117)] = 48358, + [SMALL_STATE(1118)] = 48391, + [SMALL_STATE(1119)] = 48442, + [SMALL_STATE(1120)] = 48493, + [SMALL_STATE(1121)] = 48544, + [SMALL_STATE(1122)] = 48581, + [SMALL_STATE(1123)] = 48614, + [SMALL_STATE(1124)] = 48647, + [SMALL_STATE(1125)] = 48680, + [SMALL_STATE(1126)] = 48731, + [SMALL_STATE(1127)] = 48764, + [SMALL_STATE(1128)] = 48797, + [SMALL_STATE(1129)] = 48830, + [SMALL_STATE(1130)] = 48885, + [SMALL_STATE(1131)] = 48925, + [SMALL_STATE(1132)] = 48965, + [SMALL_STATE(1133)] = 49011, + [SMALL_STATE(1134)] = 49059, + [SMALL_STATE(1135)] = 49103, + [SMALL_STATE(1136)] = 49131, + [SMALL_STATE(1137)] = 49173, + [SMALL_STATE(1138)] = 49213, + [SMALL_STATE(1139)] = 49241, + [SMALL_STATE(1140)] = 49289, + [SMALL_STATE(1141)] = 49329, + [SMALL_STATE(1142)] = 49361, + [SMALL_STATE(1143)] = 49401, + [SMALL_STATE(1144)] = 49429, + [SMALL_STATE(1145)] = 49465, + [SMALL_STATE(1146)] = 49499, + [SMALL_STATE(1147)] = 49549, + [SMALL_STATE(1148)] = 49589, + [SMALL_STATE(1149)] = 49629, + [SMALL_STATE(1150)] = 49669, + [SMALL_STATE(1151)] = 49697, + [SMALL_STATE(1152)] = 49737, + [SMALL_STATE(1153)] = 49777, + [SMALL_STATE(1154)] = 49817, + [SMALL_STATE(1155)] = 49857, + [SMALL_STATE(1156)] = 49897, + [SMALL_STATE(1157)] = 49937, + [SMALL_STATE(1158)] = 49977, + [SMALL_STATE(1159)] = 50017, + [SMALL_STATE(1160)] = 50057, + [SMALL_STATE(1161)] = 50097, + [SMALL_STATE(1162)] = 50143, + [SMALL_STATE(1163)] = 50183, + [SMALL_STATE(1164)] = 50223, + [SMALL_STATE(1165)] = 50263, + [SMALL_STATE(1166)] = 50303, + [SMALL_STATE(1167)] = 50343, + [SMALL_STATE(1168)] = 50383, + [SMALL_STATE(1169)] = 50423, + [SMALL_STATE(1170)] = 50463, + [SMALL_STATE(1171)] = 50503, + [SMALL_STATE(1172)] = 50543, + [SMALL_STATE(1173)] = 50583, + [SMALL_STATE(1174)] = 50611, + [SMALL_STATE(1175)] = 50651, + [SMALL_STATE(1176)] = 50691, + [SMALL_STATE(1177)] = 50731, + [SMALL_STATE(1178)] = 50771, + [SMALL_STATE(1179)] = 50811, + [SMALL_STATE(1180)] = 50851, + [SMALL_STATE(1181)] = 50891, + [SMALL_STATE(1182)] = 50931, + [SMALL_STATE(1183)] = 50971, + [SMALL_STATE(1184)] = 50999, + [SMALL_STATE(1185)] = 51039, + [SMALL_STATE(1186)] = 51079, + [SMALL_STATE(1187)] = 51106, + [SMALL_STATE(1188)] = 51143, + [SMALL_STATE(1189)] = 51170, + [SMALL_STATE(1190)] = 51197, + [SMALL_STATE(1191)] = 51242, + [SMALL_STATE(1192)] = 51273, + [SMALL_STATE(1193)] = 51318, + [SMALL_STATE(1194)] = 51363, + [SMALL_STATE(1195)] = 51408, + [SMALL_STATE(1196)] = 51435, + [SMALL_STATE(1197)] = 51462, + [SMALL_STATE(1198)] = 51495, + [SMALL_STATE(1199)] = 51540, + [SMALL_STATE(1200)] = 51567, + [SMALL_STATE(1201)] = 51594, + [SMALL_STATE(1202)] = 51629, + [SMALL_STATE(1203)] = 51674, + [SMALL_STATE(1204)] = 51723, + [SMALL_STATE(1205)] = 51768, + [SMALL_STATE(1206)] = 51795, + [SMALL_STATE(1207)] = 51840, + [SMALL_STATE(1208)] = 51881, + [SMALL_STATE(1209)] = 51926, + [SMALL_STATE(1210)] = 51965, + [SMALL_STATE(1211)] = 52010, + [SMALL_STATE(1212)] = 52053, + [SMALL_STATE(1213)] = 52080, + [SMALL_STATE(1214)] = 52107, + [SMALL_STATE(1215)] = 52144, + [SMALL_STATE(1216)] = 52189, + [SMALL_STATE(1217)] = 52234, + [SMALL_STATE(1218)] = 52279, + [SMALL_STATE(1219)] = 52322, + [SMALL_STATE(1220)] = 52365, + [SMALL_STATE(1221)] = 52408, + [SMALL_STATE(1222)] = 52437, + [SMALL_STATE(1223)] = 52482, + [SMALL_STATE(1224)] = 52531, + [SMALL_STATE(1225)] = 52576, + [SMALL_STATE(1226)] = 52619, + [SMALL_STATE(1227)] = 52659, + [SMALL_STATE(1228)] = 52699, + [SMALL_STATE(1229)] = 52739, + [SMALL_STATE(1230)] = 52779, + [SMALL_STATE(1231)] = 52819, + [SMALL_STATE(1232)] = 52863, + [SMALL_STATE(1233)] = 52903, + [SMALL_STATE(1234)] = 52944, + [SMALL_STATE(1235)] = 52985, + [SMALL_STATE(1236)] = 53026, + [SMALL_STATE(1237)] = 53067, + [SMALL_STATE(1238)] = 53108, + [SMALL_STATE(1239)] = 53149, + [SMALL_STATE(1240)] = 53190, + [SMALL_STATE(1241)] = 53231, + [SMALL_STATE(1242)] = 53269, + [SMALL_STATE(1243)] = 53303, + [SMALL_STATE(1244)] = 53341, + [SMALL_STATE(1245)] = 53381, + [SMALL_STATE(1246)] = 53418, + [SMALL_STATE(1247)] = 53447, + [SMALL_STATE(1248)] = 53488, + [SMALL_STATE(1249)] = 53517, + [SMALL_STATE(1250)] = 53546, + [SMALL_STATE(1251)] = 53585, + [SMALL_STATE(1252)] = 53624, + [SMALL_STATE(1253)] = 53663, + [SMALL_STATE(1254)] = 53704, + [SMALL_STATE(1255)] = 53743, + [SMALL_STATE(1256)] = 53772, + [SMALL_STATE(1257)] = 53813, + [SMALL_STATE(1258)] = 53839, + [SMALL_STATE(1259)] = 53876, + [SMALL_STATE(1260)] = 53905, + [SMALL_STATE(1261)] = 53942, + [SMALL_STATE(1262)] = 53971, + [SMALL_STATE(1263)] = 54004, + [SMALL_STATE(1264)] = 54025, + [SMALL_STATE(1265)] = 54054, + [SMALL_STATE(1266)] = 54083, + [SMALL_STATE(1267)] = 54120, + [SMALL_STATE(1268)] = 54157, + [SMALL_STATE(1269)] = 54194, + [SMALL_STATE(1270)] = 54231, + [SMALL_STATE(1271)] = 54256, + [SMALL_STATE(1272)] = 54293, + [SMALL_STATE(1273)] = 54330, + [SMALL_STATE(1274)] = 54351, + [SMALL_STATE(1275)] = 54388, + [SMALL_STATE(1276)] = 54425, + [SMALL_STATE(1277)] = 54458, + [SMALL_STATE(1278)] = 54495, + [SMALL_STATE(1279)] = 54516, + [SMALL_STATE(1280)] = 54552, + [SMALL_STATE(1281)] = 54576, + [SMALL_STATE(1282)] = 54605, + [SMALL_STATE(1283)] = 54636, + [SMALL_STATE(1284)] = 54665, + [SMALL_STATE(1285)] = 54694, + [SMALL_STATE(1286)] = 54719, + [SMALL_STATE(1287)] = 54750, + [SMALL_STATE(1288)] = 54781, + [SMALL_STATE(1289)] = 54810, + [SMALL_STATE(1290)] = 54839, + [SMALL_STATE(1291)] = 54866, + [SMALL_STATE(1292)] = 54893, + [SMALL_STATE(1293)] = 54922, + [SMALL_STATE(1294)] = 54951, + [SMALL_STATE(1295)] = 54980, + [SMALL_STATE(1296)] = 55007, + [SMALL_STATE(1297)] = 55038, + [SMALL_STATE(1298)] = 55069, + [SMALL_STATE(1299)] = 55098, + [SMALL_STATE(1300)] = 55127, + [SMALL_STATE(1301)] = 55156, + [SMALL_STATE(1302)] = 55187, + [SMALL_STATE(1303)] = 55216, + [SMALL_STATE(1304)] = 55243, + [SMALL_STATE(1305)] = 55274, + [SMALL_STATE(1306)] = 55303, + [SMALL_STATE(1307)] = 55334, + [SMALL_STATE(1308)] = 55363, + [SMALL_STATE(1309)] = 55394, + [SMALL_STATE(1310)] = 55419, + [SMALL_STATE(1311)] = 55445, + [SMALL_STATE(1312)] = 55469, + [SMALL_STATE(1313)] = 55487, + [SMALL_STATE(1314)] = 55509, + [SMALL_STATE(1315)] = 55527, + [SMALL_STATE(1316)] = 55545, + [SMALL_STATE(1317)] = 55563, + [SMALL_STATE(1318)] = 55589, + [SMALL_STATE(1319)] = 55621, + [SMALL_STATE(1320)] = 55653, + [SMALL_STATE(1321)] = 55671, + [SMALL_STATE(1322)] = 55697, + [SMALL_STATE(1323)] = 55715, + [SMALL_STATE(1324)] = 55741, + [SMALL_STATE(1325)] = 55773, + [SMALL_STATE(1326)] = 55803, + [SMALL_STATE(1327)] = 55835, + [SMALL_STATE(1328)] = 55859, + [SMALL_STATE(1329)] = 55877, + [SMALL_STATE(1330)] = 55898, + [SMALL_STATE(1331)] = 55927, + [SMALL_STATE(1332)] = 55948, + [SMALL_STATE(1333)] = 55977, + [SMALL_STATE(1334)] = 55998, + [SMALL_STATE(1335)] = 56027, + [SMALL_STATE(1336)] = 56056, + [SMALL_STATE(1337)] = 56077, + [SMALL_STATE(1338)] = 56098, + [SMALL_STATE(1339)] = 56119, + [SMALL_STATE(1340)] = 56148, + [SMALL_STATE(1341)] = 56173, + [SMALL_STATE(1342)] = 56194, + [SMALL_STATE(1343)] = 56215, + [SMALL_STATE(1344)] = 56244, + [SMALL_STATE(1345)] = 56273, + [SMALL_STATE(1346)] = 56298, + [SMALL_STATE(1347)] = 56327, + [SMALL_STATE(1348)] = 56346, + [SMALL_STATE(1349)] = 56372, + [SMALL_STATE(1350)] = 56388, + [SMALL_STATE(1351)] = 56414, + [SMALL_STATE(1352)] = 56440, + [SMALL_STATE(1353)] = 56456, + [SMALL_STATE(1354)] = 56472, + [SMALL_STATE(1355)] = 56492, + [SMALL_STATE(1356)] = 56518, + [SMALL_STATE(1357)] = 56544, + [SMALL_STATE(1358)] = 56560, + [SMALL_STATE(1359)] = 56586, + [SMALL_STATE(1360)] = 56606, + [SMALL_STATE(1361)] = 56628, + [SMALL_STATE(1362)] = 56644, + [SMALL_STATE(1363)] = 56670, + [SMALL_STATE(1364)] = 56694, + [SMALL_STATE(1365)] = 56710, + [SMALL_STATE(1366)] = 56736, + [SMALL_STATE(1367)] = 56762, + [SMALL_STATE(1368)] = 56778, + [SMALL_STATE(1369)] = 56798, + [SMALL_STATE(1370)] = 56814, + [SMALL_STATE(1371)] = 56830, + [SMALL_STATE(1372)] = 56856, + [SMALL_STATE(1373)] = 56874, + [SMALL_STATE(1374)] = 56900, + [SMALL_STATE(1375)] = 56926, + [SMALL_STATE(1376)] = 56941, + [SMALL_STATE(1377)] = 56964, + [SMALL_STATE(1378)] = 56979, + [SMALL_STATE(1379)] = 56996, + [SMALL_STATE(1380)] = 57011, + [SMALL_STATE(1381)] = 57026, + [SMALL_STATE(1382)] = 57049, + [SMALL_STATE(1383)] = 57064, + [SMALL_STATE(1384)] = 57079, + [SMALL_STATE(1385)] = 57098, + [SMALL_STATE(1386)] = 57113, + [SMALL_STATE(1387)] = 57136, + [SMALL_STATE(1388)] = 57155, + [SMALL_STATE(1389)] = 57172, + [SMALL_STATE(1390)] = 57195, + [SMALL_STATE(1391)] = 57212, + [SMALL_STATE(1392)] = 57227, + [SMALL_STATE(1393)] = 57242, + [SMALL_STATE(1394)] = 57265, + [SMALL_STATE(1395)] = 57288, + [SMALL_STATE(1396)] = 57303, + [SMALL_STATE(1397)] = 57328, + [SMALL_STATE(1398)] = 57351, + [SMALL_STATE(1399)] = 57368, + [SMALL_STATE(1400)] = 57382, + [SMALL_STATE(1401)] = 57402, + [SMALL_STATE(1402)] = 57422, + [SMALL_STATE(1403)] = 57440, + [SMALL_STATE(1404)] = 57456, + [SMALL_STATE(1405)] = 57470, + [SMALL_STATE(1406)] = 57484, + [SMALL_STATE(1407)] = 57498, + [SMALL_STATE(1408)] = 57512, + [SMALL_STATE(1409)] = 57528, + [SMALL_STATE(1410)] = 57542, + [SMALL_STATE(1411)] = 57562, + [SMALL_STATE(1412)] = 57576, + [SMALL_STATE(1413)] = 57594, + [SMALL_STATE(1414)] = 57612, + [SMALL_STATE(1415)] = 57630, + [SMALL_STATE(1416)] = 57644, + [SMALL_STATE(1417)] = 57658, + [SMALL_STATE(1418)] = 57674, + [SMALL_STATE(1419)] = 57694, + [SMALL_STATE(1420)] = 57712, + [SMALL_STATE(1421)] = 57726, + [SMALL_STATE(1422)] = 57746, + [SMALL_STATE(1423)] = 57766, + [SMALL_STATE(1424)] = 57786, + [SMALL_STATE(1425)] = 57806, + [SMALL_STATE(1426)] = 57824, + [SMALL_STATE(1427)] = 57838, + [SMALL_STATE(1428)] = 57858, + [SMALL_STATE(1429)] = 57878, + [SMALL_STATE(1430)] = 57898, + [SMALL_STATE(1431)] = 57916, + [SMALL_STATE(1432)] = 57936, + [SMALL_STATE(1433)] = 57950, + [SMALL_STATE(1434)] = 57964, + [SMALL_STATE(1435)] = 57984, + [SMALL_STATE(1436)] = 57998, + [SMALL_STATE(1437)] = 58012, + [SMALL_STATE(1438)] = 58023, + [SMALL_STATE(1439)] = 58034, + [SMALL_STATE(1440)] = 58045, + [SMALL_STATE(1441)] = 58056, + [SMALL_STATE(1442)] = 58071, + [SMALL_STATE(1443)] = 58082, + [SMALL_STATE(1444)] = 58093, + [SMALL_STATE(1445)] = 58112, + [SMALL_STATE(1446)] = 58123, + [SMALL_STATE(1447)] = 58134, + [SMALL_STATE(1448)] = 58145, + [SMALL_STATE(1449)] = 58156, + [SMALL_STATE(1450)] = 58175, + [SMALL_STATE(1451)] = 58194, + [SMALL_STATE(1452)] = 58211, + [SMALL_STATE(1453)] = 58222, + [SMALL_STATE(1454)] = 58237, + [SMALL_STATE(1455)] = 58248, + [SMALL_STATE(1456)] = 58259, + [SMALL_STATE(1457)] = 58276, + [SMALL_STATE(1458)] = 58290, + [SMALL_STATE(1459)] = 58300, + [SMALL_STATE(1460)] = 58314, + [SMALL_STATE(1461)] = 58328, + [SMALL_STATE(1462)] = 58342, + [SMALL_STATE(1463)] = 58356, + [SMALL_STATE(1464)] = 58370, + [SMALL_STATE(1465)] = 58384, + [SMALL_STATE(1466)] = 58398, + [SMALL_STATE(1467)] = 58412, + [SMALL_STATE(1468)] = 58426, + [SMALL_STATE(1469)] = 58440, + [SMALL_STATE(1470)] = 58454, + [SMALL_STATE(1471)] = 58468, + [SMALL_STATE(1472)] = 58484, + [SMALL_STATE(1473)] = 58498, + [SMALL_STATE(1474)] = 58514, + [SMALL_STATE(1475)] = 58528, + [SMALL_STATE(1476)] = 58542, + [SMALL_STATE(1477)] = 58556, + [SMALL_STATE(1478)] = 58572, + [SMALL_STATE(1479)] = 58586, + [SMALL_STATE(1480)] = 58602, + [SMALL_STATE(1481)] = 58616, + [SMALL_STATE(1482)] = 58630, + [SMALL_STATE(1483)] = 58644, + [SMALL_STATE(1484)] = 58658, + [SMALL_STATE(1485)] = 58672, + [SMALL_STATE(1486)] = 58688, + [SMALL_STATE(1487)] = 58702, + [SMALL_STATE(1488)] = 58716, + [SMALL_STATE(1489)] = 58730, + [SMALL_STATE(1490)] = 58746, + [SMALL_STATE(1491)] = 58760, + [SMALL_STATE(1492)] = 58774, + [SMALL_STATE(1493)] = 58790, + [SMALL_STATE(1494)] = 58804, + [SMALL_STATE(1495)] = 58818, + [SMALL_STATE(1496)] = 58834, + [SMALL_STATE(1497)] = 58848, + [SMALL_STATE(1498)] = 58864, + [SMALL_STATE(1499)] = 58878, + [SMALL_STATE(1500)] = 58892, + [SMALL_STATE(1501)] = 58906, + [SMALL_STATE(1502)] = 58922, + [SMALL_STATE(1503)] = 58938, + [SMALL_STATE(1504)] = 58954, + [SMALL_STATE(1505)] = 58968, + [SMALL_STATE(1506)] = 58982, + [SMALL_STATE(1507)] = 58998, + [SMALL_STATE(1508)] = 59014, + [SMALL_STATE(1509)] = 59028, + [SMALL_STATE(1510)] = 59042, + [SMALL_STATE(1511)] = 59058, + [SMALL_STATE(1512)] = 59068, + [SMALL_STATE(1513)] = 59082, + [SMALL_STATE(1514)] = 59096, + [SMALL_STATE(1515)] = 59112, + [SMALL_STATE(1516)] = 59126, + [SMALL_STATE(1517)] = 59140, + [SMALL_STATE(1518)] = 59156, + [SMALL_STATE(1519)] = 59170, + [SMALL_STATE(1520)] = 59186, + [SMALL_STATE(1521)] = 59202, + [SMALL_STATE(1522)] = 59215, + [SMALL_STATE(1523)] = 59224, + [SMALL_STATE(1524)] = 59233, + [SMALL_STATE(1525)] = 59246, + [SMALL_STATE(1526)] = 59255, + [SMALL_STATE(1527)] = 59268, + [SMALL_STATE(1528)] = 59281, + [SMALL_STATE(1529)] = 59294, + [SMALL_STATE(1530)] = 59307, + [SMALL_STATE(1531)] = 59320, + [SMALL_STATE(1532)] = 59329, + [SMALL_STATE(1533)] = 59342, + [SMALL_STATE(1534)] = 59355, + [SMALL_STATE(1535)] = 59368, + [SMALL_STATE(1536)] = 59381, + [SMALL_STATE(1537)] = 59394, + [SMALL_STATE(1538)] = 59407, + [SMALL_STATE(1539)] = 59420, + [SMALL_STATE(1540)] = 59431, + [SMALL_STATE(1541)] = 59442, + [SMALL_STATE(1542)] = 59455, + [SMALL_STATE(1543)] = 59468, + [SMALL_STATE(1544)] = 59481, + [SMALL_STATE(1545)] = 59494, + [SMALL_STATE(1546)] = 59507, + [SMALL_STATE(1547)] = 59520, + [SMALL_STATE(1548)] = 59533, + [SMALL_STATE(1549)] = 59546, + [SMALL_STATE(1550)] = 59559, + [SMALL_STATE(1551)] = 59572, + [SMALL_STATE(1552)] = 59585, + [SMALL_STATE(1553)] = 59598, + [SMALL_STATE(1554)] = 59611, + [SMALL_STATE(1555)] = 59624, + [SMALL_STATE(1556)] = 59637, + [SMALL_STATE(1557)] = 59650, + [SMALL_STATE(1558)] = 59663, + [SMALL_STATE(1559)] = 59676, + [SMALL_STATE(1560)] = 59685, + [SMALL_STATE(1561)] = 59698, + [SMALL_STATE(1562)] = 59711, + [SMALL_STATE(1563)] = 59724, + [SMALL_STATE(1564)] = 59737, + [SMALL_STATE(1565)] = 59750, + [SMALL_STATE(1566)] = 59763, + [SMALL_STATE(1567)] = 59776, + [SMALL_STATE(1568)] = 59789, + [SMALL_STATE(1569)] = 59802, + [SMALL_STATE(1570)] = 59815, + [SMALL_STATE(1571)] = 59828, + [SMALL_STATE(1572)] = 59841, + [SMALL_STATE(1573)] = 59852, + [SMALL_STATE(1574)] = 59865, + [SMALL_STATE(1575)] = 59878, + [SMALL_STATE(1576)] = 59891, + [SMALL_STATE(1577)] = 59900, + [SMALL_STATE(1578)] = 59913, + [SMALL_STATE(1579)] = 59926, + [SMALL_STATE(1580)] = 59939, + [SMALL_STATE(1581)] = 59952, + [SMALL_STATE(1582)] = 59965, + [SMALL_STATE(1583)] = 59978, + [SMALL_STATE(1584)] = 59987, + [SMALL_STATE(1585)] = 60000, + [SMALL_STATE(1586)] = 60013, + [SMALL_STATE(1587)] = 60026, + [SMALL_STATE(1588)] = 60039, + [SMALL_STATE(1589)] = 60052, + [SMALL_STATE(1590)] = 60065, + [SMALL_STATE(1591)] = 60078, + [SMALL_STATE(1592)] = 60091, + [SMALL_STATE(1593)] = 60104, + [SMALL_STATE(1594)] = 60117, + [SMALL_STATE(1595)] = 60130, + [SMALL_STATE(1596)] = 60143, + [SMALL_STATE(1597)] = 60156, + [SMALL_STATE(1598)] = 60169, + [SMALL_STATE(1599)] = 60182, + [SMALL_STATE(1600)] = 60195, + [SMALL_STATE(1601)] = 60208, + [SMALL_STATE(1602)] = 60221, + [SMALL_STATE(1603)] = 60234, + [SMALL_STATE(1604)] = 60247, + [SMALL_STATE(1605)] = 60260, + [SMALL_STATE(1606)] = 60269, + [SMALL_STATE(1607)] = 60282, + [SMALL_STATE(1608)] = 60295, + [SMALL_STATE(1609)] = 60308, + [SMALL_STATE(1610)] = 60321, + [SMALL_STATE(1611)] = 60332, + [SMALL_STATE(1612)] = 60345, + [SMALL_STATE(1613)] = 60358, + [SMALL_STATE(1614)] = 60371, + [SMALL_STATE(1615)] = 60384, + [SMALL_STATE(1616)] = 60397, + [SMALL_STATE(1617)] = 60410, + [SMALL_STATE(1618)] = 60423, + [SMALL_STATE(1619)] = 60436, + [SMALL_STATE(1620)] = 60449, + [SMALL_STATE(1621)] = 60462, + [SMALL_STATE(1622)] = 60475, + [SMALL_STATE(1623)] = 60488, + [SMALL_STATE(1624)] = 60501, + [SMALL_STATE(1625)] = 60514, + [SMALL_STATE(1626)] = 60525, + [SMALL_STATE(1627)] = 60534, + [SMALL_STATE(1628)] = 60547, + [SMALL_STATE(1629)] = 60560, + [SMALL_STATE(1630)] = 60573, + [SMALL_STATE(1631)] = 60582, + [SMALL_STATE(1632)] = 60591, + [SMALL_STATE(1633)] = 60604, + [SMALL_STATE(1634)] = 60617, + [SMALL_STATE(1635)] = 60626, + [SMALL_STATE(1636)] = 60639, + [SMALL_STATE(1637)] = 60652, + [SMALL_STATE(1638)] = 60665, + [SMALL_STATE(1639)] = 60678, + [SMALL_STATE(1640)] = 60691, + [SMALL_STATE(1641)] = 60704, + [SMALL_STATE(1642)] = 60717, + [SMALL_STATE(1643)] = 60730, + [SMALL_STATE(1644)] = 60738, + [SMALL_STATE(1645)] = 60746, + [SMALL_STATE(1646)] = 60756, + [SMALL_STATE(1647)] = 60766, + [SMALL_STATE(1648)] = 60774, + [SMALL_STATE(1649)] = 60782, + [SMALL_STATE(1650)] = 60792, + [SMALL_STATE(1651)] = 60802, + [SMALL_STATE(1652)] = 60812, + [SMALL_STATE(1653)] = 60820, + [SMALL_STATE(1654)] = 60830, + [SMALL_STATE(1655)] = 60840, + [SMALL_STATE(1656)] = 60850, + [SMALL_STATE(1657)] = 60860, + [SMALL_STATE(1658)] = 60870, + [SMALL_STATE(1659)] = 60880, + [SMALL_STATE(1660)] = 60890, + [SMALL_STATE(1661)] = 60900, + [SMALL_STATE(1662)] = 60910, + [SMALL_STATE(1663)] = 60920, + [SMALL_STATE(1664)] = 60930, + [SMALL_STATE(1665)] = 60940, + [SMALL_STATE(1666)] = 60950, + [SMALL_STATE(1667)] = 60960, + [SMALL_STATE(1668)] = 60970, + [SMALL_STATE(1669)] = 60980, + [SMALL_STATE(1670)] = 60990, + [SMALL_STATE(1671)] = 61000, + [SMALL_STATE(1672)] = 61010, + [SMALL_STATE(1673)] = 61020, + [SMALL_STATE(1674)] = 61030, + [SMALL_STATE(1675)] = 61040, + [SMALL_STATE(1676)] = 61050, + [SMALL_STATE(1677)] = 61060, + [SMALL_STATE(1678)] = 61070, + [SMALL_STATE(1679)] = 61080, + [SMALL_STATE(1680)] = 61090, + [SMALL_STATE(1681)] = 61100, + [SMALL_STATE(1682)] = 61110, + [SMALL_STATE(1683)] = 61118, + [SMALL_STATE(1684)] = 61128, + [SMALL_STATE(1685)] = 61136, + [SMALL_STATE(1686)] = 61146, + [SMALL_STATE(1687)] = 61156, + [SMALL_STATE(1688)] = 61164, + [SMALL_STATE(1689)] = 61172, + [SMALL_STATE(1690)] = 61182, + [SMALL_STATE(1691)] = 61190, + [SMALL_STATE(1692)] = 61198, + [SMALL_STATE(1693)] = 61208, + [SMALL_STATE(1694)] = 61218, + [SMALL_STATE(1695)] = 61228, + [SMALL_STATE(1696)] = 61236, + [SMALL_STATE(1697)] = 61246, + [SMALL_STATE(1698)] = 61256, + [SMALL_STATE(1699)] = 61266, + [SMALL_STATE(1700)] = 61276, + [SMALL_STATE(1701)] = 61286, + [SMALL_STATE(1702)] = 61296, + [SMALL_STATE(1703)] = 61306, + [SMALL_STATE(1704)] = 61316, + [SMALL_STATE(1705)] = 61324, + [SMALL_STATE(1706)] = 61334, + [SMALL_STATE(1707)] = 61344, + [SMALL_STATE(1708)] = 61352, + [SMALL_STATE(1709)] = 61362, + [SMALL_STATE(1710)] = 61372, + [SMALL_STATE(1711)] = 61382, + [SMALL_STATE(1712)] = 61390, + [SMALL_STATE(1713)] = 61400, + [SMALL_STATE(1714)] = 61410, + [SMALL_STATE(1715)] = 61420, + [SMALL_STATE(1716)] = 61428, + [SMALL_STATE(1717)] = 61438, + [SMALL_STATE(1718)] = 61448, + [SMALL_STATE(1719)] = 61458, + [SMALL_STATE(1720)] = 61468, + [SMALL_STATE(1721)] = 61476, + [SMALL_STATE(1722)] = 61486, + [SMALL_STATE(1723)] = 61496, + [SMALL_STATE(1724)] = 61506, + [SMALL_STATE(1725)] = 61516, + [SMALL_STATE(1726)] = 61524, + [SMALL_STATE(1727)] = 61534, + [SMALL_STATE(1728)] = 61544, + [SMALL_STATE(1729)] = 61554, + [SMALL_STATE(1730)] = 61564, + [SMALL_STATE(1731)] = 61574, + [SMALL_STATE(1732)] = 61581, + [SMALL_STATE(1733)] = 61588, + [SMALL_STATE(1734)] = 61595, + [SMALL_STATE(1735)] = 61602, + [SMALL_STATE(1736)] = 61609, + [SMALL_STATE(1737)] = 61616, + [SMALL_STATE(1738)] = 61623, + [SMALL_STATE(1739)] = 61630, + [SMALL_STATE(1740)] = 61637, + [SMALL_STATE(1741)] = 61644, + [SMALL_STATE(1742)] = 61651, + [SMALL_STATE(1743)] = 61658, + [SMALL_STATE(1744)] = 61665, + [SMALL_STATE(1745)] = 61672, + [SMALL_STATE(1746)] = 61679, + [SMALL_STATE(1747)] = 61686, + [SMALL_STATE(1748)] = 61693, + [SMALL_STATE(1749)] = 61700, + [SMALL_STATE(1750)] = 61707, + [SMALL_STATE(1751)] = 61714, + [SMALL_STATE(1752)] = 61721, + [SMALL_STATE(1753)] = 61728, + [SMALL_STATE(1754)] = 61735, + [SMALL_STATE(1755)] = 61742, + [SMALL_STATE(1756)] = 61749, + [SMALL_STATE(1757)] = 61756, + [SMALL_STATE(1758)] = 61763, + [SMALL_STATE(1759)] = 61770, + [SMALL_STATE(1760)] = 61777, + [SMALL_STATE(1761)] = 61784, + [SMALL_STATE(1762)] = 61791, + [SMALL_STATE(1763)] = 61798, + [SMALL_STATE(1764)] = 61805, + [SMALL_STATE(1765)] = 61812, + [SMALL_STATE(1766)] = 61819, + [SMALL_STATE(1767)] = 61826, + [SMALL_STATE(1768)] = 61833, + [SMALL_STATE(1769)] = 61840, + [SMALL_STATE(1770)] = 61847, + [SMALL_STATE(1771)] = 61854, + [SMALL_STATE(1772)] = 61861, + [SMALL_STATE(1773)] = 61868, + [SMALL_STATE(1774)] = 61875, + [SMALL_STATE(1775)] = 61882, + [SMALL_STATE(1776)] = 61889, + [SMALL_STATE(1777)] = 61896, + [SMALL_STATE(1778)] = 61903, + [SMALL_STATE(1779)] = 61910, + [SMALL_STATE(1780)] = 61917, + [SMALL_STATE(1781)] = 61924, + [SMALL_STATE(1782)] = 61931, + [SMALL_STATE(1783)] = 61938, + [SMALL_STATE(1784)] = 61945, + [SMALL_STATE(1785)] = 61952, + [SMALL_STATE(1786)] = 61959, + [SMALL_STATE(1787)] = 61966, + [SMALL_STATE(1788)] = 61973, + [SMALL_STATE(1789)] = 61980, + [SMALL_STATE(1790)] = 61987, + [SMALL_STATE(1791)] = 61994, + [SMALL_STATE(1792)] = 62001, + [SMALL_STATE(1793)] = 62008, + [SMALL_STATE(1794)] = 62015, + [SMALL_STATE(1795)] = 62022, + [SMALL_STATE(1796)] = 62029, + [SMALL_STATE(1797)] = 62036, + [SMALL_STATE(1798)] = 62043, + [SMALL_STATE(1799)] = 62050, + [SMALL_STATE(1800)] = 62057, + [SMALL_STATE(1801)] = 62064, + [SMALL_STATE(1802)] = 62071, + [SMALL_STATE(1803)] = 62078, + [SMALL_STATE(1804)] = 62085, + [SMALL_STATE(1805)] = 62092, + [SMALL_STATE(1806)] = 62099, + [SMALL_STATE(1807)] = 62106, + [SMALL_STATE(1808)] = 62113, + [SMALL_STATE(1809)] = 62120, + [SMALL_STATE(1810)] = 62127, + [SMALL_STATE(1811)] = 62134, + [SMALL_STATE(1812)] = 62141, + [SMALL_STATE(1813)] = 62148, + [SMALL_STATE(1814)] = 62155, + [SMALL_STATE(1815)] = 62162, + [SMALL_STATE(1816)] = 62169, + [SMALL_STATE(1817)] = 62176, + [SMALL_STATE(1818)] = 62183, + [SMALL_STATE(1819)] = 62190, + [SMALL_STATE(1820)] = 62197, + [SMALL_STATE(1821)] = 62204, + [SMALL_STATE(1822)] = 62211, + [SMALL_STATE(1823)] = 62218, + [SMALL_STATE(1824)] = 62225, + [SMALL_STATE(1825)] = 62232, + [SMALL_STATE(1826)] = 62239, + [SMALL_STATE(1827)] = 62246, + [SMALL_STATE(1828)] = 62253, + [SMALL_STATE(1829)] = 62260, + [SMALL_STATE(1830)] = 62267, + [SMALL_STATE(1831)] = 62274, + [SMALL_STATE(1832)] = 62281, + [SMALL_STATE(1833)] = 62288, + [SMALL_STATE(1834)] = 62295, + [SMALL_STATE(1835)] = 62302, + [SMALL_STATE(1836)] = 62309, + [SMALL_STATE(1837)] = 62316, + [SMALL_STATE(1838)] = 62323, + [SMALL_STATE(1839)] = 62330, + [SMALL_STATE(1840)] = 62337, + [SMALL_STATE(1841)] = 62344, + [SMALL_STATE(1842)] = 62351, + [SMALL_STATE(1843)] = 62358, + [SMALL_STATE(1844)] = 62365, + [SMALL_STATE(1845)] = 62372, + [SMALL_STATE(1846)] = 62379, + [SMALL_STATE(1847)] = 62386, + [SMALL_STATE(1848)] = 62393, + [SMALL_STATE(1849)] = 62400, + [SMALL_STATE(1850)] = 62407, + [SMALL_STATE(1851)] = 62414, + [SMALL_STATE(1852)] = 62421, + [SMALL_STATE(1853)] = 62428, + [SMALL_STATE(1854)] = 62435, + [SMALL_STATE(1855)] = 62442, + [SMALL_STATE(1856)] = 62449, + [SMALL_STATE(1857)] = 62456, + [SMALL_STATE(1858)] = 62463, + [SMALL_STATE(1859)] = 62470, + [SMALL_STATE(1860)] = 62477, + [SMALL_STATE(1861)] = 62484, + [SMALL_STATE(1862)] = 62491, + [SMALL_STATE(1863)] = 62498, + [SMALL_STATE(1864)] = 62505, + [SMALL_STATE(1865)] = 62512, + [SMALL_STATE(1866)] = 62519, + [SMALL_STATE(1867)] = 62526, + [SMALL_STATE(1868)] = 62533, + [SMALL_STATE(1869)] = 62540, + [SMALL_STATE(1870)] = 62547, + [SMALL_STATE(1871)] = 62554, + [SMALL_STATE(1872)] = 62561, + [SMALL_STATE(1873)] = 62568, + [SMALL_STATE(1874)] = 62575, + [SMALL_STATE(1875)] = 62582, + [SMALL_STATE(1876)] = 62589, + [SMALL_STATE(1877)] = 62596, + [SMALL_STATE(1878)] = 62603, + [SMALL_STATE(1879)] = 62610, + [SMALL_STATE(1880)] = 62617, + [SMALL_STATE(1881)] = 62624, + [SMALL_STATE(1882)] = 62631, + [SMALL_STATE(1883)] = 62638, + [SMALL_STATE(1884)] = 62645, + [SMALL_STATE(1885)] = 62652, + [SMALL_STATE(1886)] = 62659, + [SMALL_STATE(1887)] = 62666, + [SMALL_STATE(1888)] = 62673, + [SMALL_STATE(1889)] = 62680, + [SMALL_STATE(1890)] = 62687, + [SMALL_STATE(1891)] = 62694, + [SMALL_STATE(1892)] = 62701, + [SMALL_STATE(1893)] = 62708, + [SMALL_STATE(1894)] = 62715, + [SMALL_STATE(1895)] = 62722, + [SMALL_STATE(1896)] = 62729, + [SMALL_STATE(1897)] = 62736, + [SMALL_STATE(1898)] = 62743, + [SMALL_STATE(1899)] = 62750, + [SMALL_STATE(1900)] = 62757, + [SMALL_STATE(1901)] = 62764, + [SMALL_STATE(1902)] = 62771, + [SMALL_STATE(1903)] = 62778, + [SMALL_STATE(1904)] = 62785, + [SMALL_STATE(1905)] = 62792, + [SMALL_STATE(1906)] = 62799, + [SMALL_STATE(1907)] = 62806, + [SMALL_STATE(1908)] = 62813, + [SMALL_STATE(1909)] = 62820, + [SMALL_STATE(1910)] = 62827, + [SMALL_STATE(1911)] = 62834, + [SMALL_STATE(1912)] = 62841, + [SMALL_STATE(1913)] = 62848, + [SMALL_STATE(1914)] = 62855, + [SMALL_STATE(1915)] = 62862, + [SMALL_STATE(1916)] = 62869, + [SMALL_STATE(1917)] = 62876, + [SMALL_STATE(1918)] = 62883, + [SMALL_STATE(1919)] = 62890, + [SMALL_STATE(1920)] = 62897, + [SMALL_STATE(1921)] = 62904, + [SMALL_STATE(1922)] = 62911, + [SMALL_STATE(1923)] = 62918, + [SMALL_STATE(1924)] = 62925, + [SMALL_STATE(1925)] = 62932, + [SMALL_STATE(1926)] = 62939, + [SMALL_STATE(1927)] = 62946, + [SMALL_STATE(1928)] = 62953, + [SMALL_STATE(1929)] = 62960, + [SMALL_STATE(1930)] = 62967, + [SMALL_STATE(1931)] = 62974, + [SMALL_STATE(1932)] = 62981, + [SMALL_STATE(1933)] = 62988, + [SMALL_STATE(1934)] = 62995, + [SMALL_STATE(1935)] = 63002, + [SMALL_STATE(1936)] = 63009, + [SMALL_STATE(1937)] = 63016, + [SMALL_STATE(1938)] = 63023, + [SMALL_STATE(1939)] = 63030, + [SMALL_STATE(1940)] = 63037, + [SMALL_STATE(1941)] = 63044, + [SMALL_STATE(1942)] = 63051, + [SMALL_STATE(1943)] = 63058, + [SMALL_STATE(1944)] = 63065, + [SMALL_STATE(1945)] = 63072, + [SMALL_STATE(1946)] = 63079, + [SMALL_STATE(1947)] = 63086, + [SMALL_STATE(1948)] = 63093, + [SMALL_STATE(1949)] = 63100, + [SMALL_STATE(1950)] = 63107, + [SMALL_STATE(1951)] = 63114, + [SMALL_STATE(1952)] = 63121, + [SMALL_STATE(1953)] = 63128, + [SMALL_STATE(1954)] = 63135, + [SMALL_STATE(1955)] = 63142, + [SMALL_STATE(1956)] = 63149, + [SMALL_STATE(1957)] = 63156, + [SMALL_STATE(1958)] = 63163, + [SMALL_STATE(1959)] = 63170, + [SMALL_STATE(1960)] = 63177, + [SMALL_STATE(1961)] = 63184, + [SMALL_STATE(1962)] = 63191, + [SMALL_STATE(1963)] = 63198, + [SMALL_STATE(1964)] = 63205, + [SMALL_STATE(1965)] = 63212, + [SMALL_STATE(1966)] = 63219, + [SMALL_STATE(1967)] = 63226, + [SMALL_STATE(1968)] = 63233, + [SMALL_STATE(1969)] = 63240, + [SMALL_STATE(1970)] = 63247, + [SMALL_STATE(1971)] = 63254, + [SMALL_STATE(1972)] = 63261, + [SMALL_STATE(1973)] = 63268, + [SMALL_STATE(1974)] = 63275, + [SMALL_STATE(1975)] = 63282, + [SMALL_STATE(1976)] = 63289, + [SMALL_STATE(1977)] = 63296, + [SMALL_STATE(1978)] = 63303, + [SMALL_STATE(1979)] = 63310, + [SMALL_STATE(1980)] = 63317, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -116868,2288 +111515,2293 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 0, 0, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), - [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), - [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), - [173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 2, 0, 17), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, 0, 40), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), - [185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 3, 0, 17), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, 0, 40), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), - [201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(456), - [204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1385), - [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1926), - [210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1186), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), + [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), + [163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 2, 0, 17), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, 0, 40), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), + [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, 0, 40), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), + [199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 3, 0, 17), + [201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(403), + [204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1336), + [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1877), + [210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1184), [213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), - [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1927), - [218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1731), - [221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(441), - [224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(641), - [227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(641), - [230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(638), - [233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(78), - [236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(978), - [239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1019), - [242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(936), - [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2026), - [248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1696), - [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2023), - [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(949), - [257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(34), - [260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(785), - [263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(766), - [266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(754), - [269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2022), - [272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(825), - [275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1574), - [278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1425), - [281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1489), - [284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1751), - [287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1727), - [290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(652), - [293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1920), - [296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1749), - [299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(369), - [302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2025), - [305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(527), - [308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1889), - [311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1881), - [314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1935), - [317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1724), - [320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1848), - [323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(597), - [326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(632), - [329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2007), - [332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2005), - [335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2004), - [338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1460), - [341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(725), - [344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1578), - [347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1558), - [350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(725), - [353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(718), - [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), - [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), - [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), - [362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), - [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), - [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), - [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), - [372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), - [374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), - [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), - [382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), - [384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), - [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), - [388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), - [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), - [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), - [394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), - [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), - [400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), - [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), - [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), - [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), - [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), - [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), + [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1878), + [218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1709), + [221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(385), + [224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(545), + [227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(545), + [230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(547), + [233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(110), + [236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(933), + [239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(971), + [242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(866), + [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1974), + [248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1646), + [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1972), + [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(899), + [257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(32), + [260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(773), + [263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(714), + [266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(708), + [269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1971), + [272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(769), + [275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1556), + [278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1396), + [281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1444), + [284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1701), + [287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1676), + [290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(531), + [293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1829), + [296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1698), + [299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(328), + [302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1975), + [305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(479), + [308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1781), + [311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1777), + [314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1886), + [317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1671), + [320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1762), + [323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(562), + [326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(561), + [329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1950), + [332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1947), + [335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1946), + [338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1403), + [341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(672), + [344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1625), + [347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1471), + [350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(672), + [353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(673), + [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), + [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), + [362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), + [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), + [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), + [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), + [372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), + [374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), + [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), + [384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), + [388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), + [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), + [394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), + [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), + [400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), + [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), + [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), + [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), + [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), + [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), [418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2, 0, 0), - [420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), - [422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), - [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), - [428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), - [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), - [432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), - [436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), - [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), - [442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), - [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), - [448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), - [452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), - [454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), - [456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), - [458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), - [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(459), - [479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1391), - [482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1845), - [485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1211), - [488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1846), - [491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1768), - [494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(238), - [497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(964), - [500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1025), - [503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(909), - [506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(33), - [509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), - [511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1778), - [514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1750), - [517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(607), - [520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1799), - [523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1769), - [526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(382), - [529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1990), - [532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(514), - [535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1797), - [538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1793), - [541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1854), - [544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1709), - [547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1979), - [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(454), - [557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1396), - [560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1978), - [563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1183), - [566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1958), - [569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1693), - [572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(275), - [575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(983), - [578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1021), - [581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(922), - [584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(24), - [587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1728), - [590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1715), - [593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(664), - [596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1808), - [599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1725), - [602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(399), - [605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2028), - [608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(513), - [611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1905), - [614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1904), - [617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1963), - [620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1713), - [623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1859), - [626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1, 0, 0), - [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), + [422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), + [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), + [428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), + [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), + [436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), + [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), + [442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), + [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), + [448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), + [450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), + [452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), + [454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), + [456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), + [458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), + [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(409), + [471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1331), + [474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1928), + [477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1182), + [480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1908), + [483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1727), + [486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(227), + [489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(927), + [492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(974), + [495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(864), + [498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(38), + [501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1677), + [504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1667), + [507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(530), + [510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1757), + [513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1675), + [516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(351), + [519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1978), + [522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(465), + [525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1828), + [528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1817), + [531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1913), + [534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1663), + [537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1800), + [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1, 0, 0), + [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(408), + [559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1329), + [562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1796), + [565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1185), + [568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1797), + [571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1718), + [574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(177), + [577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(926), + [580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(975), + [583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(865), + [586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(30), + [589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), + [591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1728), + [594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1700), + [597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(514), + [600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1766), + [603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1730), + [606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(332), + [609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1940), + [612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(458), + [615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1772), + [618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1774), + [621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1805), + [624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1680), + [627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1862), + [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), [634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 1, 0, 0), [636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), - [638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(464), - [641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1389), - [644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2030), - [647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1232), - [650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2029), - [653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1695), - [656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(441), - [659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(641), - [662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(641), - [665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(638), - [668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(969), - [671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1027), - [674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(905), - [677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2026), - [680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1696), - [683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2023), - [686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(949), - [689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(32), - [692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(785), - [695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(766), - [698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(754), - [701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2022), - [704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(825), - [707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1574), - [710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1425), - [713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1489), - [716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1697), - [719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1698), - [722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(577), - [725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2015), - [728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1699), - [731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(387), - [734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2013), - [737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(531), - [740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2011), - [743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2010), - [746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2008), - [749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(597), - [752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(632), - [755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2007), - [758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2005), - [761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2004), - [764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1460), - [767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1128), - [770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1578), - [773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1558), - [776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1128), - [779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(718), - [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, 0, 9), - [786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, 0, 0), - [788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, 0, 9), - [790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(453), - [793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), - [795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(441), - [798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(641), - [801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(641), - [804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(638), - [807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(78), - [810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(978), - [813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1019), - [816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(766), - [819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2026), - [822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1696), - [825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2023), - [828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(34), - [831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(785), - [834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(754), - [837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2022), - [840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(825), - [843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1574), - [846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1425), - [849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1489), - [852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1751), - [855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1727), - [858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1749), - [861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(369), - [864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2025), - [867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(527), - [870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1889), - [873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1881), - [876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1935), - [879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1724), - [882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1848), - [885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(597), - [888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(632), - [891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2007), - [894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2005), - [897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2004), - [900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1460), - [903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(725), - [906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1578), - [909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1558), - [912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(725), - [915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(718), - [918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2, 0, 0), - [920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(457), - [923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(275), - [926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(983), - [929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1021), - [932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(24), - [935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1728), - [938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1715), - [941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1725), - [944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(399), - [947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2028), - [950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(513), - [953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1905), - [956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1904), - [959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1963), - [962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1713), - [965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1859), - [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2, 0, 0), - [972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 9), - [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, 0, 9), - [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), - [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), - [986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, 0, 0), - [988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), - [990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(461), - [993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(163), - [996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(969), - [999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1027), - [1002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(32), - [1005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1697), - [1008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1698), - [1011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1699), - [1014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(387), - [1017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2013), - [1020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(531), - [1023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2011), - [1026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2010), - [1029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2008), - [1032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1744), - [1035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1864), - [1038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(458), - [1041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(238), - [1044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(964), - [1047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1025), - [1050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(33), - [1053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1778), - [1056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1750), - [1059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1769), - [1062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(382), - [1065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1990), - [1068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(514), - [1071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1797), - [1074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1793), - [1077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1854), - [1080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1709), - [1083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1979), - [1086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), - [1088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), - [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), - [1092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), - [1094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), - [1096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(460), - [1099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1735), - [1102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1739), - [1105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2009), - [1108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1701), - [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), - [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(410), + [641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1333), + [644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1980), + [647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1148), + [650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1977), + [653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1645), + [656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(385), + [659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(545), + [662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(545), + [665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(547), + [668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(930), + [671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(972), + [674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(832), + [677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1974), + [680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1646), + [683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1972), + [686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(899), + [689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(25), + [692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(773), + [695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(714), + [698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(708), + [701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1971), + [704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(769), + [707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1556), + [710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1396), + [713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1444), + [716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1649), + [719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1651), + [722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(556), + [725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1961), + [728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1654), + [731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(325), + [734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1958), + [737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(475), + [740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1953), + [743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1952), + [746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1951), + [749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(562), + [752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(561), + [755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1950), + [758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1947), + [761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1946), + [764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1403), + [767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1076), + [770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1625), + [773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1471), + [776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1076), + [779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(673), + [782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(402), + [785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), + [787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(385), + [790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(545), + [793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(545), + [796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(547), + [799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(110), + [802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(933), + [805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(971), + [808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(714), + [811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1974), + [814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1646), + [817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1972), + [820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(32), + [823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(773), + [826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(708), + [829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1971), + [832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(769), + [835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1556), + [838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1396), + [841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1444), + [844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1701), + [847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1676), + [850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1698), + [853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(328), + [856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1975), + [859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(479), + [862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1781), + [865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1777), + [868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1886), + [871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1671), + [874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1762), + [877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(562), + [880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(561), + [883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1950), + [886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1947), + [889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1946), + [892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1403), + [895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(672), + [898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1625), + [901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1471), + [904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(672), + [907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(673), + [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, 0, 0), + [914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, 0, 9), + [916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2, 0, 0), + [918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, 0, 9), + [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, 0, 9), + [926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, 0, 0), + [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), + [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), + [936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 9), + [938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), + [940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(407), + [943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(164), + [946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(930), + [949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(972), + [952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(25), + [955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1649), + [958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1651), + [961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1654), + [964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(325), + [967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1958), + [970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(475), + [973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1953), + [976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1952), + [979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1951), + [982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1696), + [985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1825), + [988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(401), + [991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(227), + [994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(927), + [997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(974), + [1000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(38), + [1003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1677), + [1006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1667), + [1009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1675), + [1012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(351), + [1015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1978), + [1018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(465), + [1021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1828), + [1024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1817), + [1027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1913), + [1030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1663), + [1033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1800), + [1036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2, 0, 0), + [1038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(404), + [1041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(177), + [1044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(926), + [1047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(975), + [1050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(30), + [1053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1728), + [1056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1700), + [1059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1730), + [1062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(332), + [1065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1940), + [1068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(458), + [1071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1772), + [1074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1774), + [1077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1805), + [1080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1680), + [1083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1862), + [1086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [1088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), + [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), + [1092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), + [1094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), + [1096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(406), + [1099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1710), + [1102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1713), + [1105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1959), + [1108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1655), + [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), [1117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 27), [1119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 27), - [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [1123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, 0, 85), - [1125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, 0, 85), - [1127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 28), - [1129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 28), - [1131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), - [1133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), - [1135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2, 0, 0), - [1137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2, 0, 0), - [1139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), - [1141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), - [1143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, 0, 35), - [1145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, 0, 35), - [1147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, 0, 91), - [1149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, 0, 91), - [1151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, 0, 90), - [1153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, 0, 90), - [1155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), - [1157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), - [1159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), - [1161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), - [1163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, 0, 76), - [1165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, 0, 76), - [1167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3, 0, 0), - [1169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3, 0, 0), - [1171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2, 0, 0), - [1173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2, 0, 0), - [1175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, 0, 76), - [1177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, 0, 76), - [1179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_except_clause, 3, 0, 100), - [1181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_except_clause, 3, 0, 100), - [1183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, 0, 47), - [1185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, 0, 47), + [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [1123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_leave_statement, 2, 0, 0), + [1125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_leave_statement, 2, 0, 0), + [1127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2, 0, 0), + [1129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2, 0, 0), + [1131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, 0, 91), + [1133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, 0, 91), + [1135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, 0, 90), + [1137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, 0, 90), + [1139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, 0, 85), + [1141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, 0, 85), + [1143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 81), + [1145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 81), + [1147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [1149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [1151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_finally_clause, 2, 0, 8), + [1153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_finally_clause, 2, 0, 8), + [1155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, 0, 47), + [1157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, 0, 47), + [1159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, 0, 76), + [1161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, 0, 76), + [1163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), + [1165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), + [1167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3, 0, 0), + [1169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3, 0, 0), + [1171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_except_clause, 3, 0, 100), + [1173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_except_clause, 3, 0, 100), + [1175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), + [1177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [1179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), + [1181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), + [1183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, 0, 29), + [1185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, 0, 29), [1187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, 0, 31), [1189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, 0, 31), - [1191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, 0, 29), - [1193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, 0, 29), - [1195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_finally_clause, 2, 0, 8), - [1197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_finally_clause, 2, 0, 8), - [1199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), - [1201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), - [1203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, 0, 47), - [1205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, 0, 47), - [1207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 81), - [1209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 81), + [1191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, 0, 64), + [1193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, 0, 64), + [1195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 28), + [1197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 28), + [1199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2, 0, 0), + [1201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2, 0, 0), + [1203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, 0, 62), + [1205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, 0, 62), + [1207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, 0, 35), + [1209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, 0, 35), [1211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 6, 0, 111), [1213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 6, 0, 111), - [1215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_try_statement, 3, 0, 8), - [1217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_try_statement, 3, 0, 8), - [1219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), - [1221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), - [1223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 55), - [1225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), - [1227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 28), - [1229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 28), - [1231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_leave_statement, 2, 0, 0), - [1233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_leave_statement, 2, 0, 0), - [1235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), - [1237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), - [1239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, 0, 62), - [1241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, 0, 62), - [1243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, 0, 64), - [1245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, 0, 64), - [1247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, 0, 17), - [1249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, 0, 17), - [1251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, 0, 40), - [1253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, 0, 40), - [1255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 4, 0, 68), - [1257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 4, 0, 68), - [1259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 61), - [1261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 61), - [1263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, 0, 73), - [1265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, 0, 73), + [1215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, 0, 76), + [1217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, 0, 76), + [1219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 55), + [1221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), + [1223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_try_statement, 3, 0, 8), + [1225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_try_statement, 3, 0, 8), + [1227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), + [1229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), + [1231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, 0, 47), + [1233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, 0, 47), + [1235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), + [1237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), + [1239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 28), + [1241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 28), + [1243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), + [1245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), + [1247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), + [1249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), + [1251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 40), + [1253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 40), + [1255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, 0, 23), + [1257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, 0, 23), + [1259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, 0, 39), + [1261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, 0, 39), + [1263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, 0, 38), + [1265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, 0, 38), [1267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 5, 0, 95), [1269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 5, 0, 95), - [1271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, 0, 71), - [1273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, 0, 71), - [1275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 1, 0, 2), - [1277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 1, 0, 2), - [1279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, 0, 17), - [1281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, 0, 17), - [1283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, 0, 23), - [1285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, 0, 23), - [1287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, 0, 41), - [1289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, 0, 41), - [1291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), - [1293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), - [1295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, 0, 18), - [1297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, 0, 18), - [1299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 4, 0, 66), - [1301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 4, 0, 66), - [1303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 67), - [1305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 67), - [1307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, 0, 33), - [1309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, 0, 33), - [1311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 40), - [1313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 40), - [1315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, 0, 17), - [1317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, 0, 17), - [1319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), - [1321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), - [1323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, 0, 16), - [1325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, 0, 16), - [1327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, 0, 39), - [1329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, 0, 39), - [1331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 72), - [1333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 72), - [1335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2, 0, 0), - [1337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2, 0, 0), - [1339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, 0, 38), - [1341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, 0, 38), - [1343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, 0, 97), - [1345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, 0, 97), - [1347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 3, 0, 36), - [1349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 3, 0, 36), - [1351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, 0, 4), - [1353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, 0, 4), - [1355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 94), - [1357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 94), - [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), - [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), - [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), - [1367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, 0, 57), - [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [1373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, 0, 57), - [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), - [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), - [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), - [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), - [1397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(781), - [1400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(441), - [1403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(641), - [1406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(641), - [1409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(638), - [1412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(163), - [1415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1754), - [1418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(32), - [1421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1697), - [1424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1698), - [1427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(577), - [1430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2015), - [1433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1699), - [1436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(387), - [1439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2013), - [1442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(531), - [1445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2011), - [1448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2010), - [1451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2008), - [1454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1744), - [1457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1864), - [1460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(597), - [1463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(632), - [1466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2007), - [1469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2005), - [1472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2004), - [1475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1460), - [1478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(725), - [1481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1578), - [1484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1558), - [1487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(725), - [1490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(718), - [1493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(780), - [1496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(238), - [1499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1735), - [1502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(590), - [1505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1790), - [1508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1739), - [1511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2009), - [1514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1701), - [1517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1979), - [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), - [1522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(771), - [1525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(78), - [1528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(34), - [1531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1751), - [1534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1727), - [1537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(652), - [1540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1920), - [1543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1749), - [1546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(369), - [1549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2025), - [1552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(527), - [1555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1889), - [1558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1881), - [1561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1935), - [1564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1724), - [1567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1848), - [1570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), - [1572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(778), - [1575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(275), - [1578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(24), - [1581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1728), - [1584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1715), - [1587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(664), - [1590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1808), - [1593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1725), - [1596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(399), - [1599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2028), - [1602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(513), - [1605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1905), - [1608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1904), - [1611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1963), - [1614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1713), - [1617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1859), - [1620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(773), - [1623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(33), - [1626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1778), - [1629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1750), - [1632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(607), - [1635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1799), - [1638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1769), - [1641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(382), - [1644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1990), - [1647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(514), - [1650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1797), - [1653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1793), - [1656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1854), - [1659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1709), - [1662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_expression_statement, 2, 0, 0), - [1664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_expression_statement, 2, 0, 0), - [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 1, 0, 2), - [1668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 1, 0, 2), - [1670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), - [1672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [1674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), - [1676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), - [1678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), - [1680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), - [1682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 4, 0, 0), - [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 4, 0, 0), - [1686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 3, 0, 0), - [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 3, 0, 0), - [1690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [1698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [1700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1, 0, 1), - [1702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_not_binary, 1, 0, 0), - [1704] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__type_specifier, 1, 0, 1), REDUCE(sym__expression_not_binary, 1, 0, 0), SHIFT(1029), - [1708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_not_binary, 1, 0, 0), - [1710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1, 0, 1), REDUCE(sym__expression_not_binary, 1, 0, 0), - [1713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1, 0, 1), - [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), - [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [1723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, 0, 1), REDUCE(sym__expression_not_binary, 1, 0, 0), - [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [1728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), - [1731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), - [1733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), - [1735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), - [1737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), - [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), - [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), - [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [1752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [1754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), - [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [1764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), - [1766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), - [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [1774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [1776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), - [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [1780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), - [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [1786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), - [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [1792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), - [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [1812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [1822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [1830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), - [1832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), - [1834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), - [1836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, 0, 40), - [1838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), - [1840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), - [1842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), - [1844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), - [1846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), - [1848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), - [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [1856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), - [1858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), - [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, 0, 40), - [1862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), - [1864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), - [1866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, 0, 17), - [1868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), - [1870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), - [1872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), - [1874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), - [1876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), - [1878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), - [1880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [1882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), - [1884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), - [1886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 2, 0, 17), - [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [1896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(793), - [1899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1982), - [1902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1187), - [1905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), - [1907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1893), - [1910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1767), - [1913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(754), - [1916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(766), - [1919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2026), - [1922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1729), - [1925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2023), - [1928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(785), - [1931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2022), - [1934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(825), - [1937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1574), - [1940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1425), - [1943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1489), - [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), - [1950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), - [1952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), - [1954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2, 0, 0), - [1956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), - [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), - [1960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1957), - [1963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1213), - [1966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1883), - [1969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1730), - [1972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), - [1974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), - [1976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), - [1978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), - [1980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), - [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [1984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1983), - [1987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1185), - [1990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1947), - [1993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1757), - [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [1998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), - [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [2002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1, 0, 0), - [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [2014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, 0, 56), - [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), - [2018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [2020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [2022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, 0, 0), - [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [2028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 56), - [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [2048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 105), - [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [2060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 84), - [2062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 40), - [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [2106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), - [2108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 3, 0, 0), - [2110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 3, 0, 0), - [2112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(669), - [2115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), - [2117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), - [2119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1558), - [2122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [2124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2, 0, 0), - [2126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2, 0, 0), - [2128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), - [2130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), - [2132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), - [2134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), - [2136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), - [2138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), - [2140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(754), - [2143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(766), - [2146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2026), - [2149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1729), - [2152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2023), - [2155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2022), - [2158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, 0, 109), - [2160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, 0, 109), - [2162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, 0, 87), - [2164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, 0, 87), - [2166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, 0, 108), - [2168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, 0, 108), - [2170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, 0, 88), - [2172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, 0, 88), - [2174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 4, 0, 58), - [2176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 4, 0, 58), - [2178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, 0, 120), - [2180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, 0, 120), - [2182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 9, 0, 129), - [2184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 9, 0, 129), - [2186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, 0, 124), - [2188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, 0, 124), - [2190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, 0, 119), - [2192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, 0, 119), - [2194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, 0, 125), - [2196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, 0, 125), - [2198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), - [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [2202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(793), - [2205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(754), - [2208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(766), - [2211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(2026), - [2214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1729), - [2217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(2023), - [2220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), - [2222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(785), - [2225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(2022), - [2228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(825), - [2231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1574), - [2234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1425), - [2237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1489), - [2240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), - [2242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), - [2244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), - [2246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(751), - [2249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(706), - [2252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1989), - [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [2257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string, 1, 0, 0), - [2259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string, 1, 0, 0), - [2261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4, 0, 0), - [2263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4, 0, 0), - [2265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [2267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [2269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4, 0, 0), - [2271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4, 0, 0), - [2273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 37), - [2275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 37), - [2277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 8, 0, 0), - [2279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 8, 0, 0), - [2281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3, 0, 0), - [2283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3, 0, 0), - [2285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2, 0, 0), - [2287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2, 0, 0), - [2289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1, 0, 0), - [2291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1, 0, 0), - [2293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5, 0, 0), - [2295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5, 0, 0), - [2297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 12), - [2299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 12), - [2301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3, 0, 0), - [2303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3, 0, 0), - [2305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 9, 0, 0), - [2307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 9, 0, 0), - [2309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, 0, 45), - [2311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, 0, 45), - [2313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_offsetof_expression, 6, 0, 106), - [2315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_offsetof_expression, 6, 0, 106), - [2317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), - [2319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), - [2321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 69), - [2323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 69), - [2325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignof_expression, 4, 0, 57), - [2327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignof_expression, 4, 0, 57), - [2329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 13), - [2331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 13), - [2333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 30), - [2335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 30), - [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [2345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 5), - [2347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 5), - [2349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, 0, 5), - [2351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, 0, 5), - [2353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), - [2355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), - [2357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), - [2359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), - [2361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, 0, 9), - [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, 0, 9), - [2365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 5), - [2367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 5), - [2369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), - [2371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), - [2373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 0), - [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 0), - [2377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [2381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, 0, 45), - [2383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, 0, 45), - [2385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignas_qualifier, 4, 0, 0), - [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignas_qualifier, 4, 0, 0), - [2389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), - [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), - [2393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 53), - [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 53), - [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [2399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 25), - [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 25), - [2403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 25), - [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 25), - [2407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4, 0, 0), - [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4, 0, 0), - [2411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, 0, 7), - [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, 0, 7), - [2415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, 0, 7), - [2417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, 0, 7), - [2419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, 0, 3), - [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, 0, 3), - [2423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, 0, 14), - [2425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, 0, 14), - [2427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, 0, 3), - [2429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, 0, 3), - [2431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1, 0, 0), - [2433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1, 0, 0), - [2435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, 0, 14), - [2437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, 0, 14), - [2439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 52), - [2441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 52), - [2443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 24), - [2445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 24), - [2447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 80), - [2449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 80), - [2451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 52), - [2453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 52), - [2455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 54), - [2457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 54), - [2459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, 0, 8), - [2461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, 0, 8), - [2463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), - [2465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), - [2467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(776), - [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [2472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 26), - [2474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 26), - [2476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 24), - [2478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 24), - [2480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, 0, 8), - [2482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, 0, 8), - [2484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 26), - [2486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 26), - [2488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(829), - [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), - [2493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), - [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), - [2497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), - [2499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, 0, 70), - [2501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, 0, 70), - [2503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), - [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), - [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [2511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), - [2513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), - [2515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), - [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [2519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), - [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [2523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [2527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 10), - [2529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, -1, 10), - [2531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), - [2533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 7), - [2535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 7), - [2537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 8), - [2539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 8), - [2541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), - [2543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), - [2545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 7), - [2547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 7), - [2549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, 0, 1), SHIFT(1029), - [2552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 3), - [2554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 3), - [2556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 14), - [2558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, 0, 14), - [2560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 15), - [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, -1, 15), - [2564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 8), - [2566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 8), - [2568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 7), - [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 7), - [2572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 6, 0, 78), - [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 6, 0, 78), - [2576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 8), - [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 8), - [2580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_type_specifier, 4, -1, 59), - [2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_type_specifier, 4, -1, 59), - [2584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 52), - [2586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 52), - [2588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4, 0, 0), - [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4, 0, 0), - [2592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 96), - [2594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, 0, 96), - [2596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), - [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [2600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 30), - [2602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 30), - [2604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 26), - [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 26), - [2608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 25), - [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 25), - [2612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 24), - [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 24), - [2616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 26), - [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 26), - [2620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 14), - [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 14), - [2624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), - [2626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3, 0, 0), - [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3, 0, 0), - [2630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 53), - [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 53), - [2634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 6, 0, 80), - [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 6, 0, 80), - [2638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1, 0, 0), - [2640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1, 0, 0), - [2642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 54), - [2644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 54), - [2646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2, 0, 0), - [2648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2, 0, 0), - [2650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [2652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 50), - [2654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 50), - [2656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 24), - [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 24), - [2660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 25), - [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 25), - [2664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 15), - [2666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, -1, 15), - [2668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), - [2670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 24), - [2672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 24), - [2674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), - [2677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), - [2680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), - [2682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), - [2684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 5, 0, 52), - [2686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 5, 0, 52), - [2688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, 0, 40), - [2690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, 0, 40), - [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [2694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [2696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), - [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [2700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [2704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), - [2706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, 0, 97), - [2708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, 0, 97), - [2710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), - [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [2716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [2718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [2726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, 0, 79), - [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 79), - [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [2732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 41), - [2734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 41), - [2736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, 0, 73), - [2738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, 0, 73), - [2740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 17), - [2742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 17), - [2744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, 0, 42), - [2746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, 0, 42), - [2748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, 0, 79), - [2750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 79), - [2752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 72), - [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 72), - [2756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, 0, 17), - [2758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, 0, 17), - [2760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, 0, 42), - [2762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 42), - [2764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 40), - [2766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 40), - [2768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), - [2770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 0), - [2772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), - [2774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), - [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [2778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 7), - [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 7), - [2782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 7), SHIFT(2026), - [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [2789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, 1, 0), - [2791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 50), - [2793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 50), - [2795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 50), SHIFT(2026), - [2798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_list, 2, 0, 0), REDUCE(sym__old_style_parameter_list, 2, 0, 0), - [2801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), - [2803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 2, 0, 0), - [2805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), REDUCE(sym__old_style_parameter_list, 2, 0, 0), - [2808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2, 0, 0), - [2810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_list, 3, 0, 0), REDUCE(sym__old_style_parameter_list, 3, 0, 0), - [2813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), - [2815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 3, 0, 0), - [2817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), REDUCE(sym__old_style_parameter_list, 3, 0, 0), - [2820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3, 0, 0), - [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [2824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), - [2826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), - [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [2830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), - [2832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [2834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), - [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [2838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [2842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), - [2844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), - [2846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 24), - [2848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 24), - [2850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 24), SHIFT(2026), - [2853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 8), - [2855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 8), - [2857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 8), SHIFT(2026), - [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [2866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 78), - [2868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 78), - [2870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 78), SHIFT(2026), - [2873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), - [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [2879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), - [2881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), - [2883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1, 0, 0), - [2885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1, 0, 0), - [2887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, 0, 1), SHIFT(1649), - [2890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, 0, 1), SHIFT(966), - [2893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, 0, 1), REDUCE(aux_sym__old_style_parameter_list_repeat1, 2, 0, 0), - [2896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym__type_specifier, 1, 0, 1), - [2899] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym__type_specifier, 1, 0, 1), SHIFT(1029), - [2903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym__type_specifier, 1, 0, 1), - [2906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 0), - [2908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), - [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [2918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_parameter_list, 3, 0, 0), - [2920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), - [2922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_declarator, 2, 0, 34), - [2924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_declarator, 2, 0, 34), - [2926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), - [2928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 4, 0, 0), - [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_parameter_list, 4, 0, 0), - [2932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), - [2934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), - [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [2942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), - [2944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, 0, 77), - [2946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 3, 0, 77), - [2948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [2954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), - [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [2958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [2962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [2974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [2978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [2982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [2986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), - [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [2990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [3000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), - [3002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), - [3004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1051), - [3007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1048), - [3010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), - [3012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), - [3014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), - [3016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), - [3018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2, 0, 0), - [3020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2, 0, 0), - [3022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4, 0, 0), - [3024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4, 0, 0), - [3026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3, 0, 0), - [3028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3, 0, 0), - [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [3032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, 0, 44), - [3034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), - [3036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), - [3038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(754), - [3041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2022), - [3044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, 0, 13), - [3046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, 0, 13), - [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [3058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2, 0, 0), - [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [3062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1, 0, 0), - [3064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1, 0, 0), - [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [3072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1, 0, 0), - [3074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1, 0, 0), - [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [3082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 4, 0, 0), - [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [3092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), - [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [3096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [3102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), - [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [3106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [3110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), - [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [3120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 102), - [3122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), - [3124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 103), - [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [3128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 104), - [3130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 3, 0, 0), - [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [3142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 83), - [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [3148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 5, 0, 116), - [3150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, 0, 114), - [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [3158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, 0, 63), - [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [3162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), - [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [3166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 82), - [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [3172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, 0, 115), - [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [3198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 14), - [3200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 3), - [3202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, 0, 3), - [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [3206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 14), - [3208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), - [3210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), - [3212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, 0, 14), - [3214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, 0, 14), - [3216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 3, 0, 14), - [3218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 3, 0, 14), - [3220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 1, 0, 3), - [3222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 1, 0, 3), - [3224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, 0, 3), - [3226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, 0, 3), - [3228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), - [3230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1, 0, 0), - [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [3234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1, 0, 0), - [3236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), - [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [3242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), - [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [3246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), - [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [3252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 15), SHIFT(1161), - [3255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1, 0, 0), SHIFT(1157), - [3258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 3), SHIFT(776), - [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [3269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), - [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [3275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), - [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [3279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [3283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), - [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [3289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 14), SHIFT(776), - [3292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), - [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [3296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 15), SHIFT(776), - [3299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1, 0, 1), SHIFT(1179), - [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [3306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 14), SHIFT(1159), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [3311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(1153), - [3314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(1174), - [3317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(1167), - [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [3324] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT(776), - [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [3330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 10), SHIFT(776), - [3333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), - [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [3337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), - [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [3341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), - [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [3349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, 0, 42), - [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [3353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2, 0, 0), - [3355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2, 0, 0), - [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [3365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2, 0, 0), - [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [3373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), - [3375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), - [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [3383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, 0, 30), - [3385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, 0, 30), - [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [3405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4, 0, 0), - [3407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4, 0, 0), - [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [3411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, 0, 5), - [3413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, 0, 5), - [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [3449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), - [3451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), - [3453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), - [3455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), - [3457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), - [3459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), - [3461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), - [3463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), - [3465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), - [3467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), - [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [3489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 7), SHIFT(2014), - [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [3504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), - [3506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, 0, 34), - [3508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, 0, 34), - [3510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_declarator, 2, 0, 34), - [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [3514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 3, 0, 34), - [3516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 3, 0, 34), - [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [3524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), - [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [3528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 2, 0, 17), - [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [3532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 3, 0, 40), - [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [3536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1317), - [3539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), - [3541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2026), - [3544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), - [3546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_declarator, 3, 0, 34), - [3548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declaration_declarator, 3, 0, 34), - [3550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 4, 0, 34), - [3552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 4, 0, 34), - [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [3556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), - [3558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1696), - [3561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), - [3563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, 1, 89), - [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [3567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), - [3569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, 1, 110), - [3571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, 1, 32), - [3573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 1, 0, 0), - [3575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 1, 0, 0), - [3577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, 1, 60), - [3579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4, 0, 0), - [3581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4, 0, 0), - [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [3585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), - [3587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), - [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [3595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 1, 0, 22), - [3597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), - [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [3601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2, 0, 0), - [3603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2, 0, 0), - [3605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 1, 0, 0), - [3607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 1, 0, 0), REDUCE(aux_sym_function_declarator_repeat1, 1, 0, 0), - [3610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 1, 0, 0), - [3612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, 0, 40), - [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [3616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), - [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [3626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), - [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [3632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1604), - [3635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1235), - [3638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1959), - [3641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1695), - [3644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), - [3646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 2, 0, 17), - [3648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, 1, 110), - [3650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, 0, 17), - [3652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, 0, 17), - [3654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 3, 0, 40), - [3656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, 0, 40), - [3658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, 0, 32), - [3660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), - [3662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 1, 0, 0), - [3664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, 1, 89), - [3666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, 1, 32), - [3668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, 1, 60), - [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [3676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, 0, 22), - [3678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, 0, 22), - [3680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, 0, 92), - [3682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, 0, 92), - [3684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, 0, 22), - [3686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, 0, 22), - [3688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, 1, 60), - [3690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), - [3692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, 1, 89), - [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [3696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 1, 0, 22), - [3698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 4, -10, 0), - [3700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 4, -10, 0), - [3702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, 1, 32), - [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [3708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, 0, 112), - [3710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, 0, 112), - [3712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 1, 0, 0), - [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [3716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), - [3718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), - [3720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, 1, 110), - [3722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 1, 0, 0), - [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [3726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, -10, 0), - [3728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, -10, 0), - [3730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2, 0, 0), - [3732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2, 0, 0), - [3734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), - [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [3740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 1, 0, 0), - [3742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), - [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [3746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), - [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [3750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 32), - [3752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), - [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [3756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2, 0, 0), - [3758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2, 0, 0), - [3760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1604), - [3763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), - [3765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), - [3767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, 0, 22), - [3769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, 0, 22), - [3771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, 0, 35), - [3773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, 0, 22), - [3775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, 0, 22), - [3777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, 0, 51), - [3779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, 0, 51), - [3781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, 0, 92), - [3783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, 0, 92), - [3785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, 0, 0), - [3787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, 0, 0), - [3789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, -10, 0), - [3791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, -10, 0), - [3793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, 0, 34), - [3795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, 0, 34), - [3797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, 0, 112), - [3799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, 0, 112), - [3801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 4, -10, 0), - [3803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 4, -10, 0), - [3805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, 0, 6), - [3807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 1, 0, 6), - [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [3811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), SHIFT_REPEAT(1421), - [3814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), - [3816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), - [3818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [3830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_declarator, 4, 0, 34), - [3832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, 0, 112), - [3834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, 0, 112), - [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [3840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 1), - [3842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 1), - [3844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, -10, 0), - [3846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, -10, 0), - [3848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, 0, 22), - [3850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, 0, 22), - [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [3854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, 0, 22), - [3856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, 0, 22), - [3858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), SHIFT_REPEAT(588), - [3861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), - [3863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), SHIFT_REPEAT(1942), - [3866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1, 0, 0), - [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [3870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1, 0, 0), - [3872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, 0, 92), - [3874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, 0, 92), - [3876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), - [3878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(2026), - [3881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 0), - [3883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 0), - [3885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 21), - [3887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 21), - [3889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 4, -10, 0), - [3891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 4, -10, 0), - [3893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, 0, 34), - [3895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, 0, 34), - [3897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 19), - [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [3901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 17), - [3903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 17), - [3905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, 0, 17), - [3907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, 0, 17), - [3909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, 0, 73), - [3911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, 0, 73), - [3913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 41), - [3915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 41), - [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [3923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, 0, 97), - [3925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, 0, 97), - [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [3931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2, 0, 0), - [3933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1523), - [3936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 40), - [3938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 40), - [3940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, 0, 75), - [3942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 72), - [3944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 72), - [3946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), - [3948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, 0, 40), - [3950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, 0, 40), - [3952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 60), - [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [3958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 4, 1, 89), - [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [3962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 46), - [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [3972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 43), - [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [3984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 32), - [3986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), - [3988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 32), - [3990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [3992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 4, 0, 0), - [3994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2, 0, 0), - [3996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 1, 0, 0), - [3998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 6), - [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [4002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, 0, 20), - [4004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1, 0, 0), - [4006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 22), - [4008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 22), - [4010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 0), - [4012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 74), - [4014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 92), - [4016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3, 0, 0), - [4018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, 0, 112), - [4020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 3, 0, 93), - [4022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, 0, 34), - [4024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 98), - [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [4030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), - [4032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 3, 0, 101), - [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [4036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), - [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [4040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 3, 0, 107), - [4042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), - [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [4046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), - [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [4054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [4056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), - [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [4070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), - [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [4074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 2, 0, 86), - [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [4078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), - [4080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_qualifier, 1, 0, 0), - [4082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 1, 0, 11), - [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [4086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 1, 0, 0), - [4088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), - [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [4092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 3, 0, 122), - [4094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), - [4096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 2, 0, 118), - [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [4102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), - [4104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 117), SHIFT_REPEAT(1401), - [4107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 117), - [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [4111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), - [4113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1535), - [4116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1535), - [4119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [4123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), - [4125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 2, 0, 86), - [4127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, 0, 65), SHIFT_REPEAT(1350), - [4130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, 0, 65), - [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [4144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), - [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [4148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), - [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [4154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2, 0, 0), - [4156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1546), - [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [4163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 49), - [4165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 2, 0, 48), - [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [4171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), - [4173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 2, 0, 22), - [4175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 127), SHIFT_REPEAT(1387), - [4178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 127), - [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [4182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 2, 0, 0), - [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [4186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), - [4188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), - [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [4192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), - [4194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 2, 0, 0), - [4196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 2, 0, 48), - [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [4200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), - [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [4204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), - [4206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 65), SHIFT_REPEAT(1293), - [4209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 65), - [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [4221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 117), SHIFT_REPEAT(1402), - [4224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 117), - [4226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 3, 0, 107), - [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [4236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 7, 0, 131), - [4238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 7, 0, 131), - [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [4242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), - [4244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 130), SHIFT_REPEAT(1974), - [4247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 130), - [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [4251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), - [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [4259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 3, 0, 128), - [4261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 118), - [4263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 4, 0, 121), - [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [4269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1023), - [4272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2, 0, 0), - [4274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_range_designator, 5, 0, 126), - [4276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 2, 0, 123), - [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [4280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 86), - [4282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 4, 0, 121), - [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [4286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), - [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [4298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 86), - [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [4306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 3, 0, 32), - [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [4320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(496), - [4323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3, 0, 0), - [4325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__old_style_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1649), - [4328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__old_style_parameter_list_repeat1, 2, 0, 0), - [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [4340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), - [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [4386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 65), SHIFT_REPEAT(1177), - [4389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 65), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [4441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(506), - [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [4448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1218), - [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [4471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, 0, 99), - [4473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1740), - [4476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2, 0, 0), - [4478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2, 0, 0), SHIFT_REPEAT(1762), - [4481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2, 0, 0), - [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [4485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(704), - [4488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [4508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), - [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [4512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [4516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), - [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [4524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, 0, 49), - [4526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 123), - [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [4538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), - [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [4542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), - [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [4546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), - [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [4550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), - [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [4554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 1, 0, 0), - [4556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 6), - [4558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 4, 0, 113), - [4560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), REDUCE(aux_sym__old_style_parameter_list_repeat1, 2, 0, 0), - [4563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 4, 0, 0), - [4565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4, 0, 0), - [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [4569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), - [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [4573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), - [4575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 3, 0, 0), - [4577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3, 0, 0), - [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [4587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), - [4589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1, 0, 0), - [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [4593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [4597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), - [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [4601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), - [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [4605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), - [4607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 2, 0, 0), - [4609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2, 0, 0), - [4611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2, 0, 0), - [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [4725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 3, 0, 41), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [4735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, 0, 97), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [4753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, 0, 17), - [4755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, 0, 72), - [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [4761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, 0, 40), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [4775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, 0, 41), - [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [4781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, 0, 41), - [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [4789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 5, 0, 73), - [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [4799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, 0, 41), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [4805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, 0, 72), - [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [4827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 6, 0, 97), - [4829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, 0, 72), - [4831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, 0, 72), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [4843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 4, 0, 73), - [4845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 4, 0, 73), - [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [4855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, 0, 41), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [4867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, 0, 72), - [4869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 4, 0, 73), - [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [4891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 5, 0, 97), - [4893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 5, 0, 97), - [4895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, 0, 97), - [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [4969] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [4997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 4, 0, 73), - [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [1271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, 0, 4), + [1273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, 0, 4), + [1275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, 0, 40), + [1277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, 0, 40), + [1279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, 0, 97), + [1281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, 0, 97), + [1283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_item, 1, 0, 2), + [1285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_item, 1, 0, 2), + [1287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 3, 0, 36), + [1289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 3, 0, 36), + [1291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, 0, 17), + [1293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, 0, 17), + [1295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2, 0, 0), + [1297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2, 0, 0), + [1299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), + [1301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), + [1303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 94), + [1305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 94), + [1307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 61), + [1309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 61), + [1311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, 0, 16), + [1313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, 0, 16), + [1315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, 0, 33), + [1317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, 0, 33), + [1319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 4, 0, 66), + [1321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 4, 0, 66), + [1323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, 0, 17), + [1325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, 0, 17), + [1327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, 0, 17), + [1329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, 0, 17), + [1331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 67), + [1333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 67), + [1335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, 0, 18), + [1337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, 0, 18), + [1339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, 0, 41), + [1341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, 0, 41), + [1343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 4, 0, 68), + [1345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 4, 0, 68), + [1347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, 0, 71), + [1349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, 0, 71), + [1351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 72), + [1353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 72), + [1355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__block_item, 1, 0, 0), REDUCE(sym_statement, 1, 0, 0), + [1358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__block_item, 1, 0, 0), REDUCE(sym_statement, 1, 0, 0), + [1361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, 0, 73), + [1363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, 0, 73), + [1365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), + [1367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), + [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), + [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), + [1377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, 0, 57), + [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [1383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, 0, 57), + [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), + [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), + [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), + [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), + [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [1409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(733), + [1412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(385), + [1415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(545), + [1418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(545), + [1421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(547), + [1424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(227), + [1427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1702), + [1430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(38), + [1433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1677), + [1436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1667), + [1439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(530), + [1442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1757), + [1445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1675), + [1448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(351), + [1451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1978), + [1454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(465), + [1457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1828), + [1460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1817), + [1463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1913), + [1466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1663), + [1469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1800), + [1472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(562), + [1475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(561), + [1478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1950), + [1481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1947), + [1484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1946), + [1487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1403), + [1490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(672), + [1493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1625), + [1496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1471), + [1499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(672), + [1502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(673), + [1505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(731), + [1508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(177), + [1511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(25), + [1514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1710), + [1517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1651), + [1520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(534), + [1523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1783), + [1526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1713), + [1529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(325), + [1532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1959), + [1535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(475), + [1538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1953), + [1541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1952), + [1544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1951), + [1547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1655), + [1550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1862), + [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), + [1555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(725), + [1558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(110), + [1561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(32), + [1564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1701), + [1567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1676), + [1570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(531), + [1573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1829), + [1576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1698), + [1579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(328), + [1582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1975), + [1585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(479), + [1588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1781), + [1591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1777), + [1594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1886), + [1597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1671), + [1600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1762), + [1603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(720), + [1606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(164), + [1609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1649), + [1612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(556), + [1615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1961), + [1618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1654), + [1621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1958), + [1624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1696), + [1627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1825), + [1630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(727), + [1633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(30), + [1636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1728), + [1639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1700), + [1642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(514), + [1645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1766), + [1648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1730), + [1651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(332), + [1654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1940), + [1657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(458), + [1660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1772), + [1663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1774), + [1666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1805), + [1669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1680), + [1672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_item, 1, 0, 2), + [1674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_item, 1, 0, 2), + [1676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_expression_statement, 2, 0, 0), + [1678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_expression_statement, 2, 0, 0), + [1680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__top_level_item, 1, 0, 0), REDUCE(sym__top_level_statement, 1, 0, 0), + [1683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__top_level_item, 1, 0, 0), REDUCE(sym__top_level_statement, 1, 0, 0), + [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [1690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), + [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), + [1698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 4, 0, 0), + [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 4, 0, 0), + [1702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 3, 0, 0), + [1704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 3, 0, 0), + [1706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), + [1708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [1716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), + [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [1720] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), SHIFT(970), + [1724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [1726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), + [1729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), + [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), + [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [1741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), + [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [1746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), + [1749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), + [1751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), + [1753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), + [1755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), + [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [1762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(363), + [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), + [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), + [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), + [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [1793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [1799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), + [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [1805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), + [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), + [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), + [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), + [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), + [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), + [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), + [1869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, 0, 17), + [1871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, 0, 40), + [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), + [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), + [1879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, 0, 40), + [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), + [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), + [1887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 2, 0, 17), + [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), + [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [1915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(755), + [1918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1932), + [1921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1176), + [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), + [1926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1843), + [1929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1717), + [1932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(708), + [1935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(714), + [1938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1974), + [1941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1678), + [1944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1972), + [1947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(773), + [1950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1971), + [1953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(769), + [1956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1556), + [1959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1396), + [1962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1444), + [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), + [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), + [1969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), + [1971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), + [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), + [1977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), + [1979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1, 0, 0), + [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), + [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), + [1985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1933), + [1988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1180), + [1991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1897), + [1994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1708), + [1997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2, 0, 0), + [1999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1907), + [2002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1164), + [2005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1964), + [2008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1693), + [2011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [2025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 40), + [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), + [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, 0, 56), + [2059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 105), + [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [2071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, 0, 0), + [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [2079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 84), + [2081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 56), + [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [2129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), + [2133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 3, 0, 0), + [2135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 3, 0, 0), + [2137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(618), + [2140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [2142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [2144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1471), + [2147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), + [2149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), + [2151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), + [2153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), + [2155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, 0, 108), + [2157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, 0, 108), + [2159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, 0, 109), + [2161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, 0, 109), + [2163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, 0, 124), + [2165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, 0, 124), + [2167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 9, 0, 129), + [2169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 9, 0, 129), + [2171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), + [2173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), + [2175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(708), + [2178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(714), + [2181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1974), + [2184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1678), + [2187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1972), + [2190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1971), + [2193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, 0, 125), + [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, 0, 125), + [2197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, 0, 119), + [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, 0, 119), + [2201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, 0, 87), + [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, 0, 87), + [2205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, 0, 120), + [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, 0, 120), + [2209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, 0, 88), + [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, 0, 88), + [2213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 4, 0, 58), + [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 4, 0, 58), + [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [2221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(755), + [2224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(708), + [2227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(714), + [2230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1974), + [2233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1678), + [2236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1972), + [2239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), + [2241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(773), + [2244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1971), + [2247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(769), + [2250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1556), + [2253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1396), + [2256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1444), + [2259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [2261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [2263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [2265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4, 0, 0), + [2267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4, 0, 0), + [2269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), + [2271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), + [2273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(700), + [2276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(658), + [2279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1939), + [2282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [2284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string, 1, 0, 0), + [2286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string, 1, 0, 0), + [2288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5, 0, 0), + [2290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5, 0, 0), + [2292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2, 0, 0), + [2294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2, 0, 0), + [2296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 9, 0, 0), + [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 9, 0, 0), + [2300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 37), + [2302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 37), + [2304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 69), + [2306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 69), + [2308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignof_expression, 4, 0, 57), + [2310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignof_expression, 4, 0, 57), + [2312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 8, 0, 0), + [2314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 8, 0, 0), + [2316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3, 0, 0), + [2318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3, 0, 0), + [2320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 12), + [2322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 12), + [2324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4, 0, 0), + [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4, 0, 0), + [2328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1, 0, 0), + [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1, 0, 0), + [2332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_offsetof_expression, 6, 0, 106), + [2334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_offsetof_expression, 6, 0, 106), + [2336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3, 0, 0), + [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3, 0, 0), + [2340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, 0, 45), + [2342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, 0, 45), + [2344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 13), + [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 13), + [2348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, 0, 45), + [2350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, 0, 45), + [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [2360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 0), + [2362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 0), + [2364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), + [2366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), + [2368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [2372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 5), + [2374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 5), + [2376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 30), + [2378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 30), + [2380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, 0, 9), + [2382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, 0, 9), + [2384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), + [2386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), + [2388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 5), + [2390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 5), + [2392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), + [2394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), + [2396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, 0, 5), + [2398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, 0, 5), + [2400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignas_qualifier, 4, 0, 0), + [2402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignas_qualifier, 4, 0, 0), + [2404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), + [2406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), + [2408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, 0, 7), + [2410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, 0, 7), + [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [2414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 25), + [2416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 25), + [2418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4, 0, 0), + [2420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4, 0, 0), + [2422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 53), + [2424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 53), + [2426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, 0, 7), + [2428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, 0, 7), + [2430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 25), + [2432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 25), + [2434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, 0, 3), + [2436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, 0, 3), + [2438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, 0, 14), + [2440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, 0, 14), + [2442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1, 0, 0), + [2444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1, 0, 0), + [2446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, 0, 14), + [2448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, 0, 14), + [2450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, 0, 3), + [2452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, 0, 3), + [2454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 24), + [2456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 24), + [2458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 26), + [2460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 26), + [2462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 26), + [2464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 26), + [2466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), + [2468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), + [2470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(721), + [2473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, 0, 8), + [2475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, 0, 8), + [2477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 52), + [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 52), + [2481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 80), + [2483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 80), + [2485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 24), + [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 24), + [2489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, 0, 8), + [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, 0, 8), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [2495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 52), + [2497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 52), + [2499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 54), + [2501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 54), + [2503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 8), + [2505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 8), + [2507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 53), + [2509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 53), + [2511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 24), + [2513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 24), + [2515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 25), + [2517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 25), + [2519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 26), + [2521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 26), + [2523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [2527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 24), + [2529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 24), + [2531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 25), + [2533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 25), + [2535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 26), + [2537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 26), + [2539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4, 0, 0), + [2541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4, 0, 0), + [2543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 15), + [2545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, -1, 15), + [2547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [2549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 30), + [2551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 30), + [2553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [2555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [2561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [2563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [2565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [2569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), + [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [2573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [2577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 24), + [2579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 24), + [2581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3, 0, 0), + [2583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3, 0, 0), + [2585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 96), + [2587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, 0, 96), + [2589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2, 0, 0), + [2591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2, 0, 0), + [2593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), + [2596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), + [2599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 15), + [2601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, -1, 15), + [2603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), + [2605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 14), + [2607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 14), + [2609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), + [2611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 5, 0, 52), + [2613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 5, 0, 52), + [2615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, 0, 70), + [2617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, 0, 70), + [2619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(970), + [2622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 54), + [2624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 54), + [2626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [2630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 52), + [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 52), + [2634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 7), + [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 7), + [2638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 8), + [2640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 8), + [2642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 6, 0, 80), + [2644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 6, 0, 80), + [2646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 7), + [2648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 7), + [2650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_type_specifier, 4, -1, 59), + [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_type_specifier, 4, -1, 59), + [2654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 0), + [2656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 0), + [2658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), + [2660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 8), + [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 8), + [2664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(751), + [2667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), + [2669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), + [2671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), + [2673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), + [2675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 14), + [2677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, 0, 14), + [2679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [2681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [2683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 7), + [2685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 7), + [2687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 6, 0, 78), + [2689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 6, 0, 78), + [2691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 50), + [2693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 50), + [2695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 10), + [2697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, -1, 10), + [2699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 3), + [2701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 3), + [2703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), + [2705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [2707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [2711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [2715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, 0, 42), + [2717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, 0, 42), + [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [2725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, 0, 17), + [2727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, 0, 17), + [2729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, 0, 42), + [2731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 42), + [2733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, 0, 79), + [2735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 79), + [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [2741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [2743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [2745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), + [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [2751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, 0, 97), + [2753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, 0, 97), + [2755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, 0, 40), + [2757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, 0, 40), + [2759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 41), + [2761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 41), + [2763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 17), + [2765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 17), + [2767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, 0, 79), + [2769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 79), + [2771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 72), + [2773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 72), + [2775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 40), + [2777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 40), + [2779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, 0, 73), + [2781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, 0, 73), + [2783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 7), + [2785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 7), + [2787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 7), SHIFT(1974), + [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [2794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), + [2796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, 1, 0), + [2798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), + [2800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), + [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [2804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 0), + [2806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_list, 3, 0, 0), REDUCE(sym__old_style_parameter_list, 3, 0, 0), + [2809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), + [2811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 3, 0, 0), + [2813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), REDUCE(sym__old_style_parameter_list, 3, 0, 0), + [2816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3, 0, 0), + [2818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_list, 2, 0, 0), REDUCE(sym__old_style_parameter_list, 2, 0, 0), + [2821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), + [2823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 2, 0, 0), + [2825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), REDUCE(sym__old_style_parameter_list, 2, 0, 0), + [2828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2, 0, 0), + [2830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 50), + [2832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 50), + [2834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 50), SHIFT(1974), + [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [2839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), + [2841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), + [2843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [2849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [2851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [2853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [2857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), + [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [2861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [2867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 8), + [2869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 8), + [2871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 8), SHIFT(1974), + [2874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 24), + [2876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 24), + [2878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 24), SHIFT(1974), + [2881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 78), + [2883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 78), + [2885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 78), SHIFT(1974), + [2888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [2894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), + [2896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), + [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [2900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1, 0, 0), + [2902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1, 0, 0), + [2904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(1638), + [2907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(923), + [2910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), + [2913] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(970), + [2917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), + [2920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(aux_sym__old_style_parameter_list_repeat1, 2, 0, 0), + [2923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 0), + [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [2933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_declarator, 2, 0, 34), + [2935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_declarator, 2, 0, 34), + [2937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_parameter_list, 3, 0, 0), + [2939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 4, 0, 0), + [2941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_parameter_list, 4, 0, 0), + [2943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), + [2945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), + [2947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), + [2949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), + [2951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), + [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [2957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [2961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [2967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [2971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [2975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [2987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, 0, 77), + [2989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 3, 0, 77), + [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [2993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [2995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), + [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [2999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [3003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [3007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [3017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), + [3019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), + [3021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(999), + [3024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(994), + [3027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), + [3029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), + [3031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), + [3033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), + [3035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3, 0, 0), + [3037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3, 0, 0), + [3039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, 0, 13), + [3041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, 0, 13), + [3043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), + [3045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), + [3047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(708), + [3050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1971), + [3053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2, 0, 0), + [3055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2, 0, 0), + [3057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4, 0, 0), + [3059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4, 0, 0), + [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [3063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, 0, 44), + [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [3069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1, 0, 0), + [3071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1, 0, 0), + [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [3085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1, 0, 0), + [3087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1, 0, 0), + [3089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2, 0, 0), + [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [3099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [3103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [3109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [3113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [3117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), + [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [3125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, 0, 115), + [3127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), + [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [3131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, 0, 114), + [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [3139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 3, 0, 0), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [3151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 104), + [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [3155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 83), + [3157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 103), + [3159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, 0, 63), + [3161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 102), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [3165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 4, 0, 0), + [3167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 82), + [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [3179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 5, 0, 116), + [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [3187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [3215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, 0, 3), + [3217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 14), + [3219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 3), + [3221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 14), + [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), + [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), + [3227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 1, 0, 3), + [3229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 1, 0, 3), + [3231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, 0, 14), + [3233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, 0, 14), + [3235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 3, 0, 14), + [3237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 3, 0, 14), + [3239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, 0, 3), + [3241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, 0, 3), + [3243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1, 0, 0), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [3247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1, 0, 0), + [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), + [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [3265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [3269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [3273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [3279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(1124), + [3282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 15), SHIFT(721), + [3285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [3291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), + [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [3295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), + [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [3309] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT(721), + [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [3315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), + [3317] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [3319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(1122), + [3322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(1114), + [3325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(1123), + [3328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 15), SHIFT(1105), + [3331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 14), SHIFT(1127), + [3334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 10), SHIFT(721), + [3337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 3), SHIFT(721), + [3340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 14), SHIFT(721), + [3343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 0), SHIFT(1126), + [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [3348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), + [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [3352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), + [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [3356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), + [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [3364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, 0, 30), + [3366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, 0, 30), + [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [3370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2, 0, 0), + [3372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2, 0, 0), + [3374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, 0, 42), + [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [3378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, 0, 5), + [3380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, 0, 5), + [3382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2, 0, 0), + [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [3390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), + [3392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), + [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [3436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4, 0, 0), + [3438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4, 0, 0), + [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [3462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), + [3464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), + [3466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [3468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), + [3470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), + [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [3474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), + [3476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), + [3478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [3480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), + [3482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), + [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [3506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 7), SHIFT(1918), + [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [3519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), + [3521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, 0, 34), + [3523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, 0, 34), + [3525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_declarator, 2, 0, 34), + [3527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_declarator, 3, 0, 34), + [3529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 3, 0, 34), + [3531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 3, 0, 34), + [3533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declaration_declarator, 3, 0, 34), + [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [3537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1270), + [3540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), + [3542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1974), + [3545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), + [3547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 4, 0, 34), + [3549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 4, 0, 34), + [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [3553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 3, 0, 40), + [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [3557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), + [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [3563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 2, 0, 17), + [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [3571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), + [3573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1646), + [3576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), + [3578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, 1, 32), + [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [3582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [3584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, 1, 89), + [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [3588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), + [3590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), + [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [3594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, 1, 110), + [3596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, 1, 60), + [3598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 1, 0, 0), + [3600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 1, 0, 0), + [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [3604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4, 0, 0), + [3606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4, 0, 0), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [3610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 1, 0, 22), + [3612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [3616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2, 0, 0), + [3618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2, 0, 0), + [3620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, 0, 17), + [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), + [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [3628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1610), + [3631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1160), + [3634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1914), + [3637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1645), + [3640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), + [3642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 1, 0, 0), + [3644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 1, 0, 0), REDUCE(aux_sym_function_declarator_repeat1, 1, 0, 0), + [3647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 1, 0, 0), + [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [3651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, 1, 110), + [3653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, 1, 32), + [3655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 3, 0, 40), + [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [3659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), + [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [3663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, 0, 40), + [3665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, 1, 60), + [3667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, 0, 40), + [3669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, 0, 32), + [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [3675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, 0, 17), + [3677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, 1, 89), + [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [3683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 2, 0, 17), + [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [3687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), + [3689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 1, 0, 0), + [3691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, 1, 60), + [3693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [3695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 1, 0, 0), + [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [3699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, 0, 112), + [3701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, 0, 112), + [3703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2, 0, 0), + [3705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2, 0, 0), + [3707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 4, -10, 0), + [3709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 4, -10, 0), + [3711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, 0, 92), + [3713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, 0, 92), + [3715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, 0, 22), + [3717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, 0, 22), + [3719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, 1, 32), + [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [3725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, -10, 0), + [3727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, -10, 0), + [3729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, 1, 110), + [3731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), + [3733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), + [3735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, 1, 89), + [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [3739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 1, 0, 22), + [3741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 1, 0, 0), + [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [3745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, 0, 22), + [3747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, 0, 22), + [3749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), + [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [3755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), + [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [3759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), + [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [3763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), + [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [3767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2, 0, 0), + [3769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2, 0, 0), + [3771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 32), + [3773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 1, 0, 0), + [3775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, 0, 0), + [3777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, 0, 0), + [3779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, 0, 34), + [3781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, 0, 34), + [3783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, -10, 0), + [3785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, -10, 0), + [3787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), SHIFT_REPEAT(1372), + [3790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), + [3792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), + [3794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, 0, 22), + [3796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, 0, 22), + [3798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1610), + [3801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), + [3803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), + [3805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, 0, 22), + [3807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, 0, 22), + [3809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, 0, 35), + [3811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, 0, 92), + [3813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, 0, 92), + [3815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 4, -10, 0), + [3817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 4, -10, 0), + [3819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, 0, 112), + [3821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, 0, 112), + [3823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, 0, 51), + [3825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, 0, 51), + [3827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, 0, 6), + [3829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 1, 0, 6), + [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [3833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 21), + [3835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 21), + [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [3839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, -10, 0), + [3841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, -10, 0), + [3843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), + [3845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1974), + [3848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, 0, 22), + [3850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, 0, 22), + [3852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, 0, 92), + [3854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, 0, 92), + [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [3858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 0), + [3860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 0), + [3862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 4, -10, 0), + [3864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 4, -10, 0), + [3866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), SHIFT_REPEAT(593), + [3869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), + [3871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), SHIFT_REPEAT(1976), + [3874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, 0, 22), + [3876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, 0, 22), + [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [3884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1, 0, 0), + [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [3888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1, 0, 0), + [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [3892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_declarator, 4, 0, 34), + [3894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, 0, 34), + [3896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, 0, 34), + [3898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 1), + [3900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 1), + [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [3906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, 0, 112), + [3908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, 0, 112), + [3910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), + [3912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, 0, 17), + [3914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, 0, 17), + [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [3924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 32), + [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [3932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, 0, 40), + [3934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, 0, 40), + [3936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, 0, 97), + [3938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, 0, 97), + [3940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2, 0, 0), + [3942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1458), + [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [3947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, 0, 73), + [3949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, 0, 73), + [3951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 43), + [3953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 46), + [3955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 60), + [3957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 40), + [3959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 40), + [3961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 72), + [3963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 72), + [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [3969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, 0, 75), + [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [3977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 19), + [3979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), + [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [3987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 4, 1, 89), + [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [3991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 17), + [3993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 17), + [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [3997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 41), + [3999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 41), + [4001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 22), + [4003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 92), + [4005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 98), + [4007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 4, 0, 0), + [4009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 3, 0, 93), + [4011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1, 0, 0), + [4013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, 0, 20), + [4015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [4017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 22), + [4019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, 0, 112), + [4021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 0), + [4023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 74), + [4025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [4027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 1, 0, 0), + [4029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 6), + [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [4033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, 0, 34), + [4035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 32), + [4037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3, 0, 0), + [4039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2, 0, 0), + [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [4043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_qualifier, 1, 0, 0), + [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [4055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 2, 0, 22), + [4057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 127), SHIFT_REPEAT(1338), + [4060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 127), + [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [4064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 49), + [4066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 2, 0, 48), + [4068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 65), SHIFT_REPEAT(1243), + [4071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 65), + [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [4077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [4081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), + [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [4089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), + [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [4093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 2, 0, 86), + [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [4103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 2, 0, 48), + [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [4107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), + [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [4117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 3, 0, 122), + [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [4121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2, 0, 0), + [4123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1484), + [4126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), + [4128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1485), + [4131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1485), + [4134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 117), SHIFT_REPEAT(1359), + [4137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 117), + [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [4145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [4149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), + [4151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), + [4153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), + [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [4157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 2, 0, 0), + [4159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 2, 0, 0), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [4167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), + [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [4171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 1, 0, 0), + [4173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 2, 0, 118), + [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [4177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), + [4179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [4183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), + [4185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [4189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), + [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [4193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 3, 0, 107), + [4195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 117), SHIFT_REPEAT(1368), + [4198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 117), + [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [4202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), + [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [4208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [4210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), + [4212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [4214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 1, 0, 11), + [4216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 3, 0, 101), + [4218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 3, 0, 107), + [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [4222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), + [4224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, 0, 65), SHIFT_REPEAT(1289), + [4227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, 0, 65), + [4229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 2, 0, 86), + [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [4239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), + [4241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), + [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [4245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 4, 0, 121), + [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [4249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 7, 0, 131), + [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [4253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(445), + [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [4262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3, 0, 0), + [4264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__old_style_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1638), + [4267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__old_style_parameter_list_repeat1, 2, 0, 0), + [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [4295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), + [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [4307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), + [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [4335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 3, 0, 32), + [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [4361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), + [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [4369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 86), + [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [4383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 86), + [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [4389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 65), SHIFT_REPEAT(1112), + [4392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 65), + [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [4424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 2, 0, 123), + [4426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(652), + [4429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), + [4431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_range_designator, 5, 0, 126), + [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [4437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2, 0, 0), SHIFT_REPEAT(1715), + [4440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2, 0, 0), + [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [4462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1131), + [4465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(980), + [4468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2, 0, 0), + [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [4476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), + [4478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 4, 0, 121), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [4482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(454), + [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [4487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, 0, 99), + [4489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 118), + [4491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 3, 0, 128), + [4493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 130), SHIFT_REPEAT(1955), + [4496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 130), + [4498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 7, 0, 131), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [4502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1681), + [4505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2, 0, 0), + [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [4523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [4527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 123), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [4533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, 0, 49), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [4545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 1, 0, 0), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [4549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), + [4551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 6), + [4553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1, 0, 0), + [4555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 4, 0, 113), + [4557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), REDUCE(aux_sym__old_style_parameter_list_repeat1, 2, 0, 0), + [4560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 3, 0, 0), + [4562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3, 0, 0), + [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [4566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), + [4568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 2, 0, 0), + [4570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2, 0, 0), + [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [4574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), + [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [4582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), + [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [4586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), + [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [4590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), + [4592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 4, 0, 0), + [4594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4, 0, 0), + [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [4598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), + [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [4604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), + [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [4608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), + [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [4612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), + [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [4616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), + [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [4620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), + [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [4624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), + [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [4630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 4, 0, 73), + [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [4638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, 0, 72), + [4640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 3, 0, 41), + [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [4678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, 0, 17), + [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [4696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2, 0, 0), + [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [4712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, 0, 72), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [4800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, 0, 97), + [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [4816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, 0, 40), + [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [4830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, 0, 41), + [4832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, 0, 41), + [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [4842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 5, 0, 73), + [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [4848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, 0, 41), + [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [4854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, 0, 41), + [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [4888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 6, 0, 97), + [4890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, 0, 72), + [4892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, 0, 72), + [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [4902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 4, 0, 73), + [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [4906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 4, 0, 73), + [4908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, 0, 72), + [4910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 4, 0, 73), + [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [4936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 5, 0, 97), + [4938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 5, 0, 97), + [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [4942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, 0, 97), + [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [4964] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), }; #ifdef __cplusplus