diff --git a/corpus/statements.txt b/corpus/statements.txt index facd38a..5d5cb13 100644 --- a/corpus/statements.txt +++ b/corpus/statements.txt @@ -176,6 +176,27 @@ void foo(int a) { (expression_statement (call_expression (identifier) (argument_list))) (break_statement))))))) +============================================ +Return statements +============================================ + +void foo() { + return; + return a; + return a, b; +} + +--- + +(translation_unit + (function_definition + (primitive_type) + (function_declarator (identifier) (parameter_list)) + (compound_statement + (return_statement) + (return_statement (identifier)) + (return_statement (comma_expression (identifier) (identifier)))))) + ============================================ Comments with asterisks ============================================ diff --git a/grammar.js b/grammar.js index 8364a08..2e06b01 100644 --- a/grammar.js +++ b/grammar.js @@ -529,7 +529,7 @@ module.exports = grammar({ return_statement: $ => seq( 'return', - optional($._expression), + optional(choice($._expression, $.comma_expression)), ';' ), diff --git a/src/grammar.json b/src/grammar.json index 848eeb1..c33b858 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -2982,8 +2982,17 @@ "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "_expression" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "SYMBOL", + "name": "comma_expression" + } + ] }, { "type": "BLANK" diff --git a/src/node-types.json b/src/node-types.json index 5e02611..5942fcb 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -348,8 +348,8 @@ "named": true, "fields": {}, "children": { - "multiple": true, - "required": false, + "multiple": false, + "required": true, "types": [ { "type": "_abstract_declarator", @@ -490,8 +490,8 @@ "named": true, "fields": {}, "children": { - "multiple": true, - "required": false, + "multiple": false, + "required": true, "types": [ { "type": "argument_list", @@ -609,8 +609,8 @@ "named": true, "fields": {}, "children": { - "multiple": true, - "required": false, + "multiple": false, + "required": true, "types": [ { "type": "_expression", @@ -715,7 +715,7 @@ "named": true, "fields": {}, "children": { - "multiple": true, + "multiple": false, "required": false, "types": [ { @@ -730,7 +730,7 @@ "named": true, "fields": { "left": { - "multiple": true, + "multiple": false, "required": true, "types": [ { @@ -740,7 +740,7 @@ ] }, "right": { - "multiple": true, + "multiple": false, "required": true, "types": [ { @@ -806,7 +806,7 @@ "fields": {}, "children": { "multiple": true, - "required": false, + "required": true, "types": [ { "type": "string_literal", @@ -862,7 +862,7 @@ "fields": { "declarator": { "multiple": true, - "required": false, + "required": true, "types": [ { "type": "_declarator", @@ -968,7 +968,7 @@ "named": true, "fields": { "body": { - "multiple": true, + "multiple": false, "required": true, "types": [ { @@ -978,7 +978,7 @@ ] }, "condition": { - "multiple": true, + "multiple": false, "required": true, "types": [ { @@ -1061,7 +1061,7 @@ "named": true, "fields": {}, "children": { - "multiple": true, + "multiple": false, "required": false, "types": [ { @@ -1163,8 +1163,8 @@ "named": true, "fields": {}, "children": { - "multiple": true, - "required": false, + "multiple": false, + "required": true, "types": [ { "type": "field_identifier", @@ -1204,7 +1204,7 @@ "named": true, "fields": { "condition": { - "multiple": true, + "multiple": false, "required": false, "types": [ { @@ -1214,7 +1214,7 @@ ] }, "initializer": { - "multiple": true, + "multiple": false, "required": false, "types": [ { @@ -1232,7 +1232,7 @@ ] }, "update": { - "multiple": true, + "multiple": false, "required": false, "types": [ { @@ -1247,8 +1247,8 @@ } }, "children": { - "multiple": true, - "required": false, + "multiple": false, + "required": true, "types": [ { "type": "_statement", @@ -1368,7 +1368,7 @@ "named": true, "fields": { "alternative": { - "multiple": true, + "multiple": false, "required": false, "types": [ { @@ -1378,7 +1378,7 @@ ] }, "condition": { - "multiple": true, + "multiple": false, "required": true, "types": [ { @@ -1388,7 +1388,7 @@ ] }, "consequence": { - "multiple": true, + "multiple": false, "required": true, "types": [ { @@ -1491,7 +1491,7 @@ "named": true, "fields": { "label": { - "multiple": true, + "multiple": false, "required": true, "types": [ { @@ -1502,8 +1502,8 @@ } }, "children": { - "multiple": true, - "required": false, + "multiple": false, + "required": true, "types": [ { "type": "_statement", @@ -1640,8 +1640,8 @@ "named": true, "fields": {}, "children": { - "multiple": true, - "required": false, + "multiple": false, + "required": true, "types": [ { "type": "_type_declarator", @@ -1655,8 +1655,8 @@ "named": true, "fields": {}, "children": { - "multiple": true, - "required": false, + "multiple": false, + "required": true, "types": [ { "type": "_expression", @@ -1782,7 +1782,7 @@ "named": true, "fields": { "alternative": { - "multiple": true, + "multiple": false, "required": false, "types": [ { @@ -1796,7 +1796,7 @@ ] }, "condition": { - "multiple": true, + "multiple": false, "required": true, "types": [ { @@ -2068,12 +2068,16 @@ "named": true, "fields": {}, "children": { - "multiple": true, + "multiple": false, "required": false, "types": [ { "type": "_expression", "named": true + }, + { + "type": "comma_expression", + "named": true } ] } @@ -2175,8 +2179,8 @@ "named": true, "fields": {}, "children": { - "multiple": true, - "required": false, + "multiple": false, + "required": true, "types": [ { "type": "_expression", @@ -2302,7 +2306,7 @@ "fields": { "declarator": { "multiple": true, - "required": false, + "required": true, "types": [ { "type": "_type_declarator", @@ -2472,7 +2476,7 @@ "named": true, "fields": { "body": { - "multiple": true, + "multiple": false, "required": true, "types": [ { @@ -2482,7 +2486,7 @@ ] }, "condition": { - "multiple": true, + "multiple": false, "required": true, "types": [ { @@ -2498,43 +2502,39 @@ "named": false }, { - "type": "(", + "type": "!", "named": false }, { - "type": "...", + "type": "!=", "named": false }, { - "type": ",", + "type": "\"", "named": false }, { - "type": ")", + "type": "%", "named": false }, { - "type": "preproc_directive", - "named": true - }, - { - "type": "preproc_arg", - "named": true + "type": "%=", + "named": false }, { - "type": ";", + "type": "&", "named": false }, { - "type": "typedef", + "type": "&&", "named": false }, { - "type": "extern", + "type": "&=", "named": false }, { - "type": "__attribute__", + "type": "'", "named": false }, { @@ -2542,331 +2542,339 @@ "named": false }, { - "type": "{", + "type": ")", "named": false }, { - "type": "}", + "type": "*", "named": false }, { - "type": "*", + "type": "*=", "named": false }, { - "type": "[", + "type": "+", "named": false }, { - "type": "]", + "type": "++", "named": false }, { - "type": "=", + "type": "+=", "named": false }, { - "type": "static", + "type": ",", "named": false }, { - "type": "auto", + "type": "-", "named": false }, { - "type": "register", + "type": "--", "named": false }, { - "type": "inline", + "type": "-=", "named": false }, { - "type": "const", + "type": "->", "named": false }, { - "type": "volatile", + "type": ".", "named": false }, { - "type": "restrict", + "type": "...", "named": false }, { - "type": "_Atomic", + "type": "/", "named": false }, { - "type": "signed", + "type": "/=", "named": false }, { - "type": "unsigned", + "type": ":", "named": false }, { - "type": "long", + "type": ";", "named": false }, { - "type": "short", + "type": "<", "named": false }, { - "type": "primitive_type", - "named": true + "type": "<<", + "named": false }, { - "type": "enum", + "type": "<<=", "named": false }, { - "type": "struct", + "type": "<=", "named": false }, { - "type": "union", + "type": "=", "named": false }, { - "type": ":", + "type": "==", "named": false }, { - "type": "if", + "type": ">", "named": false }, { - "type": "else", + "type": ">=", "named": false }, { - "type": "switch", + "type": ">>", "named": false }, { - "type": "case", + "type": ">>=", "named": false }, { - "type": "default", + "type": "?", "named": false }, { - "type": "while", + "type": "L\"", "named": false }, { - "type": "do", + "type": "L'", "named": false }, { - "type": "for", + "type": "[", "named": false }, { - "type": "return", + "type": "]", "named": false }, { - "type": "break", + "type": "^", "named": false }, { - "type": "continue", + "type": "^=", "named": false }, { - "type": "goto", + "type": "_Atomic", "named": false }, { - "type": "?", + "type": "__attribute__", "named": false }, { - "type": "*=", + "type": "auto", "named": false }, { - "type": "/=", + "type": "break", "named": false }, { - "type": "%=", + "type": "case", "named": false }, { - "type": "+=", + "type": "const", "named": false }, { - "type": "-=", + "type": "continue", "named": false }, { - "type": "<<=", + "type": "default", "named": false }, { - "type": ">>=", + "type": "do", "named": false }, { - "type": "&=", + "type": "else", "named": false }, { - "type": "^=", + "type": "enum", "named": false }, { - "type": "|=", - "named": false + "type": "escape_sequence", + "named": true }, { - "type": "&", + "type": "extern", "named": false }, { - "type": "!", - "named": false + "type": "false", + "named": true }, { - "type": "~", - "named": false + "type": "field_identifier", + "named": true }, { - "type": "-", + "type": "for", "named": false }, { - "type": "+", + "type": "goto", "named": false }, { - "type": "/", - "named": false + "type": "identifier", + "named": true }, { - "type": "%", + "type": "if", "named": false }, { - "type": "||", + "type": "inline", "named": false }, { - "type": "&&", + "type": "long", "named": false }, { - "type": "|", - "named": false + "type": "null", + "named": true }, { - "type": "^", - "named": false + "type": "number_literal", + "named": true }, { - "type": "==", - "named": false + "type": "preproc_arg", + "named": true }, { - "type": "!=", - "named": false + "type": "preproc_directive", + "named": true }, { - "type": ">", - "named": false + "type": "primitive_type", + "named": true }, { - "type": ">=", + "type": "register", "named": false }, { - "type": "<=", + "type": "restrict", "named": false }, { - "type": "<", + "type": "return", "named": false }, { - "type": "<<", + "type": "short", "named": false }, { - "type": ">>", + "type": "signed", "named": false }, { - "type": "--", + "type": "sizeof", "named": false }, { - "type": "++", - "named": false + "type": "statement_identifier", + "named": true }, { - "type": "sizeof", + "type": "static", "named": false }, { - "type": ".", + "type": "struct", "named": false }, { - "type": "->", + "type": "switch", "named": false }, { - "type": "number_literal", + "type": "system_lib_string", "named": true }, { - "type": "L'", + "type": "true", + "named": true + }, + { + "type": "type_identifier", + "named": true + }, + { + "type": "typedef", "named": false }, { - "type": "'", + "type": "union", "named": false }, { - "type": "L\"", + "type": "unsigned", "named": false }, { - "type": "\"", + "type": "volatile", "named": false }, { - "type": "escape_sequence", - "named": true + "type": "while", + "named": false }, { - "type": "system_lib_string", - "named": true + "type": "{", + "named": false }, { - "type": "true", - "named": true + "type": "|", + "named": false }, { - "type": "false", - "named": true + "type": "|=", + "named": false }, { - "type": "null", - "named": true + "type": "||", + "named": false }, { - "type": "identifier", - "named": true + "type": "}", + "named": false }, { - "type": "comment", - "named": true + "type": "~", + "named": false } ] \ No newline at end of file diff --git a/src/parser.c b/src/parser.c index a98d616..17c6dcf 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,7 +6,7 @@ #endif #define LANGUAGE_VERSION 10 -#define STATE_COUNT 1291 +#define STATE_COUNT 1302 #define SYMBOL_COUNT 221 #define ALIAS_COUNT 3 #define TOKEN_COUNT 105 @@ -235,8 +235,8 @@ enum { aux_sym_initializer_pair_repeat1 = 218, aux_sym_concatenated_string_repeat1 = 219, aux_sym_string_literal_repeat1 = 220, - alias_sym_statement_identifier = 221, - alias_sym_field_identifier = 222, + alias_sym_field_identifier = 221, + alias_sym_statement_identifier = 222, alias_sym_type_identifier = 223, }; @@ -462,8 +462,8 @@ static const char *ts_symbol_names[] = { [aux_sym_initializer_pair_repeat1] = "initializer_pair_repeat1", [aux_sym_concatenated_string_repeat1] = "concatenated_string_repeat1", [aux_sym_string_literal_repeat1] = "string_literal_repeat1", - [alias_sym_statement_identifier] = "statement_identifier", [alias_sym_field_identifier] = "field_identifier", + [alias_sym_statement_identifier] = "statement_identifier", [alias_sym_type_identifier] = "type_identifier", }; @@ -1352,11 +1352,11 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [alias_sym_statement_identifier] = { + [alias_sym_field_identifier] = { .visible = true, .named = true, }, - [alias_sym_field_identifier] = { + [alias_sym_statement_identifier] = { .visible = true, .named = true, }, @@ -1425,63 +1425,63 @@ static const TSFieldMapSlice ts_field_map_slices[] = { [2] = {.index = 0, .length = 1}, [3] = {.index = 1, .length = 1}, [4] = {.index = 2, .length = 1}, - [5] = {.index = 3, .length = 1}, - [6] = {.index = 4, .length = 2}, + [5] = {.index = 3, .length = 2}, + [6] = {.index = 5, .length = 1}, [7] = {.index = 6, .length = 1}, [8] = {.index = 7, .length = 1}, [9] = {.index = 8, .length = 2}, [10] = {.index = 10, .length = 2}, [11] = {.index = 12, .length = 1}, [12] = {.index = 12, .length = 1}, - [13] = {.index = 13, .length = 2}, - [14] = {.index = 15, .length = 1}, - [15] = {.index = 16, .length = 2}, - [16] = {.index = 18, .length = 1}, - [17] = {.index = 19, .length = 1}, - [18] = {.index = 20, .length = 2}, - [19] = {.index = 22, .length = 2}, - [20] = {.index = 24, .length = 1}, - [21] = {.index = 1, .length = 1}, - [22] = {.index = 25, .length = 2}, - [23] = {.index = 27, .length = 2}, + [13] = {.index = 5, .length = 1}, + [14] = {.index = 13, .length = 1}, + [15] = {.index = 14, .length = 2}, + [16] = {.index = 16, .length = 2}, + [17] = {.index = 18, .length = 2}, + [18] = {.index = 20, .length = 1}, + [19] = {.index = 21, .length = 1}, + [20] = {.index = 22, .length = 2}, + [21] = {.index = 24, .length = 2}, + [22] = {.index = 26, .length = 2}, + [23] = {.index = 28, .length = 1}, [24] = {.index = 29, .length = 2}, [25] = {.index = 31, .length = 1}, - [26] = {.index = 32, .length = 3}, - [27] = {.index = 35, .length = 2}, - [28] = {.index = 37, .length = 1}, + [26] = {.index = 32, .length = 1}, + [27] = {.index = 33, .length = 2}, + [28] = {.index = 35, .length = 3}, [29] = {.index = 38, .length = 2}, - [30] = {.index = 40, .length = 2}, - [31] = {.index = 42, .length = 3}, - [33] = {.index = 45, .length = 1}, - [34] = {.index = 46, .length = 2}, - [35] = {.index = 48, .length = 2}, - [36] = {.index = 50, .length = 2}, - [37] = {.index = 52, .length = 2}, - [38] = {.index = 54, .length = 2}, - [39] = {.index = 56, .length = 2}, - [40] = {.index = 58, .length = 2}, + [30] = {.index = 40, .length = 3}, + [31] = {.index = 43, .length = 2}, + [32] = {.index = 45, .length = 2}, + [33] = {.index = 47, .length = 2}, + [34] = {.index = 49, .length = 2}, + [35] = {.index = 51, .length = 2}, + [36] = {.index = 53, .length = 2}, + [37] = {.index = 55, .length = 1}, + [38] = {.index = 56, .length = 2}, + [39] = {.index = 58, .length = 2}, [41] = {.index = 60, .length = 2}, - [42] = {.index = 62, .length = 2}, - [43] = {.index = 64, .length = 1}, - [44] = {.index = 65, .length = 2}, - [45] = {.index = 67, .length = 1}, - [46] = {.index = 68, .length = 2}, - [47] = {.index = 70, .length = 1}, - [48] = {.index = 71, .length = 3}, + [42] = {.index = 62, .length = 1}, + [43] = {.index = 63, .length = 2}, + [44] = {.index = 65, .length = 1}, + [45] = {.index = 66, .length = 1}, + [46] = {.index = 67, .length = 2}, + [47] = {.index = 69, .length = 3}, + [48] = {.index = 72, .length = 2}, [49] = {.index = 74, .length = 2}, - [50] = {.index = 76, .length = 2}, - [51] = {.index = 78, .length = 2}, - [52] = {.index = 80, .length = 1}, - [53] = {.index = 81, .length = 3}, - [54] = {.index = 84, .length = 2}, - [55] = {.index = 86, .length = 2}, - [56] = {.index = 88, .length = 3}, + [50] = {.index = 76, .length = 3}, + [51] = {.index = 79, .length = 2}, + [52] = {.index = 81, .length = 2}, + [53] = {.index = 83, .length = 3}, + [54] = {.index = 86, .length = 2}, + [55] = {.index = 88, .length = 1}, + [56] = {.index = 89, .length = 2}, [57] = {.index = 91, .length = 2}, [58] = {.index = 93, .length = 3}, - [59] = {.index = 96, .length = 3}, - [60] = {.index = 99, .length = 2}, - [62] = {.index = 101, .length = 1}, - [63] = {.index = 102, .length = 3}, + [59] = {.index = 96, .length = 2}, + [60] = {.index = 98, .length = 3}, + [61] = {.index = 101, .length = 3}, + [62] = {.index = 104, .length = 1}, [64] = {.index = 105, .length = 1}, [65] = {.index = 106, .length = 2}, [66] = {.index = 108, .length = 2}, @@ -1490,9 +1490,9 @@ static const TSFieldMapSlice ts_field_map_slices[] = { [69] = {.index = 112, .length = 2}, [70] = {.index = 114, .length = 2}, [71] = {.index = 116, .length = 2}, - [72] = {.index = 118, .length = 2}, - [73] = {.index = 120, .length = 2}, - [74] = {.index = 122, .length = 3}, + [72] = {.index = 118, .length = 3}, + [73] = {.index = 121, .length = 2}, + [74] = {.index = 123, .length = 2}, [75] = {.index = 125, .length = 3}, }; @@ -1500,16 +1500,16 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [0] = {field_type, 0}, [1] = - {field_name, 1}, + {field_path, 1}, [2] = - {field_body, 1}, - [3] = {field_directive, 0}, - [4] = + [3] = {field_argument, 1}, {field_operator, 0}, + [5] = + {field_name, 1}, [6] = - {field_path, 1}, + {field_body, 1}, [7] = {field_value, 1}, [8] = @@ -1521,145 +1521,145 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [12] = {field_type, 1}, [13] = - {field_body, 2}, - {field_name, 1}, - [15] = - {field_label, 1}, - [16] = + {field_condition, 1}, + [14] = {field_argument, 1}, {field_directive, 0}, + [16] = + {field_body, 2}, + {field_value, 1}, [18] = - {field_condition, 1}, - [19] = - {field_parameters, 0}, - [20] = {field_declarator, 1}, {field_type, 0}, + [20] = + {field_parameters, 0}, + [21] = + {field_name, 0}, [22] = - {field_left, 0}, - {field_right, 2}, - [24] = - {field_label, 0}, - [25] = {field_body, 2}, - {field_value, 1}, - [27] = + {field_name, 1}, + [24] = {field_condition, 1}, {field_consequence, 2}, - [29] = + [26] = {field_body, 2}, {field_condition, 1}, - [31] = - {field_name, 0}, - [32] = + [28] = + {field_label, 1}, + [29] = {field_left, 0}, - {field_operator, 1}, {field_right, 2}, - [35] = - {field_argument, 0}, - {field_field, 2}, - [37] = + [31] = + {field_label, 0}, + [32] = {field_declarator, 1}, - [38] = + [33] = {field_declarator, 1}, {field_type, 0, .inherited = true}, - [40] = - {field_declarator, 0}, - {field_parameters, 1}, - [42] = + [35] = {field_body, 2}, {field_declarator, 1}, {field_type, 0, .inherited = true}, + [38] = + {field_declarator, 0}, + {field_parameters, 1}, + [40] = + {field_left, 0}, + {field_operator, 1}, + {field_right, 2}, + [43] = + {field_argument, 0}, + {field_field, 2}, [45] = - {field_type, 0, .inherited = true}, - [46] = - {field_body, 1}, - {field_condition, 3}, - [48] = + {field_name, 1}, + {field_value, 2}, + [47] = + {field_name, 1}, + {field_parameters, 2}, + [49] = {field_alternative, 2}, {field_condition, 1}, - [50] = - {field_type, 1}, - {field_value, 3}, - [52] = + [51] = + {field_alternative, 2}, + {field_name, 1}, + [53] = {field_declarator, 2}, {field_type, 1}, - [54] = + [55] = + {field_type, 0, .inherited = true}, + [56] = {field_declarator, 2}, {field_type, 0}, - [56] = - {field_name, 0}, - {field_type, 2}, [58] = - {field_alternative, 2}, - {field_name, 1}, + {field_type, 1}, + {field_value, 3}, [60] = - {field_name, 1}, - {field_value, 2}, + {field_body, 1}, + {field_condition, 3}, [62] = - {field_name, 1}, - {field_parameters, 2}, - [64] = + {field_type, 2}, + [63] = + {field_name, 0}, {field_type, 2}, [65] = - {field_argument, 0}, - {field_index, 2}, - [67] = {field_declarator, 2}, - [68] = + [66] = {field_declarator, 0}, - {field_value, 2}, - [70] = + [67] = {field_declarator, 0}, - [71] = + {field_value, 2}, + [69] = {field_declarator, 1}, {field_declarator, 2, .inherited = true}, {field_type, 0, .inherited = true}, - [74] = + [72] = {field_declarator, 0, .inherited = true}, {field_declarator, 1, .inherited = true}, + [74] = + {field_argument, 0}, + {field_index, 2}, [76] = + {field_name, 1}, + {field_parameters, 2}, + {field_value, 3}, + [79] = {field_alternative, 3}, {field_condition, 1}, - [78] = - {field_declarator, 3}, - {field_type, 1}, - [80] = - {field_size, 1}, [81] = + {field_alternative, 3}, + {field_name, 1}, + [83] = {field_declarator, 2}, {field_declarator, 3, .inherited = true}, {field_type, 1}, - [84] = + [86] = {field_declarator, 3}, {field_type, 2}, - [86] = - {field_alternative, 3}, - {field_name, 1}, [88] = - {field_alternative, 4}, - {field_condition, 1}, - {field_consequence, 2}, + {field_size, 1}, + [89] = + {field_declarator, 3}, + {field_type, 1}, [91] = {field_name, 0}, {field_value, 2}, [93] = - {field_name, 1}, - {field_parameters, 2}, - {field_value, 3}, - [96] = {field_alternative, 4}, - {field_condition, 0}, + {field_condition, 1}, {field_consequence, 2}, - [99] = + [96] = {field_declarator, 0}, {field_size, 2}, + [98] = + {field_alternative, 4}, + {field_condition, 0}, + {field_consequence, 2}, [101] = - {field_size, 2}, - [102] = {field_declarator, 3}, {field_declarator, 4, .inherited = true}, {field_type, 2}, + [104] = + {field_size, 2}, [105] = {field_initializer, 2}, [106] = @@ -1682,15 +1682,15 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_condition, 3}, {field_update, 5}, [118] = + {field_condition, 3}, {field_initializer, 2}, {field_update, 5}, - [120] = - {field_condition, 4}, - {field_initializer, 2}, - [122] = - {field_condition, 3}, + [121] = {field_initializer, 2}, {field_update, 5}, + [123] = + {field_condition, 4}, + {field_initializer, 2}, [125] = {field_condition, 4}, {field_initializer, 2}, @@ -1698,532 +1698,497 @@ static const TSFieldMapEntry ts_field_map_entries[] = { }; static TSSymbol ts_alias_sequences[76][MAX_ALIAS_SEQUENCE_LENGTH] = { + [0] = {0}, [1] = { [0] = alias_sym_type_identifier, }, - [3] = { + [6] = { [1] = alias_sym_type_identifier, }, - [11] = { + [12] = { [1] = alias_sym_type_identifier, }, - [13] = { + [20] = { [1] = alias_sym_type_identifier, }, - [14] = { + [23] = { [1] = alias_sym_statement_identifier, }, - [20] = { + [25] = { [0] = alias_sym_statement_identifier, }, - [27] = { + [31] = { [2] = alias_sym_field_identifier, }, - [32] = { + [40] = { [0] = alias_sym_field_identifier, }, - [61] = { + [63] = { [1] = alias_sym_field_identifier, }, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { START_LEXER(); + eof = lookahead == 0; switch (state) { case 0: - if (lookahead == 0) ADVANCE(54); - if (lookahead == '!') ADVANCE(132); - if (lookahead == '"') ADVANCE(181); - if (lookahead == '#') ADVANCE(29); - if (lookahead == '%') ADVANCE(141); - if (lookahead == '&') ADVANCE(130); - if (lookahead == '\'') ADVANCE(176); - if (lookahead == '(') ADVANCE(59); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '*') ADVANCE(112); - if (lookahead == '+') ADVANCE(137); - if (lookahead == ',') ADVANCE(61); - if (lookahead == '-') ADVANCE(134); - if (lookahead == '.') ADVANCE(157); - if (lookahead == '/') ADVANCE(140); - if (lookahead == '0') ADVANCE(163); - if (lookahead == ':') ADVANCE(117); - if (lookahead == ';') ADVANCE(107); - if (lookahead == '<') ADVANCE(151); - if (lookahead == '=') ADVANCE(116); - if (lookahead == '>') ADVANCE(148); - if (lookahead == '?') ADVANCE(118); - if (lookahead == 'L') ADVANCE(192); - if (lookahead == '[') ADVANCE(113); - if (lookahead == '\\') ADVANCE(27); - if (lookahead == ']') ADVANCE(114); - if (lookahead == '^') ADVANCE(145); - if (lookahead == '{') ADVANCE(109); - if (lookahead == '|') ADVANCE(144); - if (lookahead == '}') ADVANCE(110); - if (lookahead == '~') ADVANCE(133); + if (eof) ADVANCE(55); + if (lookahead == '!') ADVANCE(133); + if (lookahead == '"') ADVANCE(182); + if (lookahead == '#') ADVANCE(27); + if (lookahead == '%') ADVANCE(142); + if (lookahead == '&') ADVANCE(131); + if (lookahead == '\'') ADVANCE(177); + if (lookahead == '(') ADVANCE(60); + if (lookahead == ')') ADVANCE(63); + if (lookahead == '*') ADVANCE(113); + if (lookahead == '+') ADVANCE(138); + if (lookahead == ',') ADVANCE(62); + if (lookahead == '-') ADVANCE(135); + if (lookahead == '.') ADVANCE(158); + if (lookahead == '/') ADVANCE(141); + if (lookahead == '0') ADVANCE(164); + if (lookahead == ':') ADVANCE(118); + if (lookahead == ';') ADVANCE(108); + if (lookahead == '<') ADVANCE(152); + if (lookahead == '=') ADVANCE(117); + if (lookahead == '>') ADVANCE(149); + if (lookahead == '?') ADVANCE(119); + if (lookahead == 'L') ADVANCE(193); + if (lookahead == '[') ADVANCE(114); + if (lookahead == '\\') ADVANCE(26); + if (lookahead == ']') ADVANCE(115); + if (lookahead == '^') ADVANCE(146); + if (lookahead == '{') ADVANCE(110); + if (lookahead == '|') ADVANCE(145); + if (lookahead == '}') ADVANCE(111); + if (lookahead == '~') ADVANCE(134); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(2) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(165); + lookahead == ' ') SKIP(53) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(166); if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(194); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(195); END_STATE(); case 1: - if (lookahead == 0) ADVANCE(54); - if (lookahead == '!') ADVANCE(131); - if (lookahead == '"') ADVANCE(181); - if (lookahead == '#') ADVANCE(33); - if (lookahead == '&') ADVANCE(129); - if (lookahead == '\'') ADVANCE(176); - if (lookahead == '(') ADVANCE(108); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '*') ADVANCE(111); - if (lookahead == '+') ADVANCE(138); - if (lookahead == ',') ADVANCE(61); - if (lookahead == '-') ADVANCE(135); - if (lookahead == '.') ADVANCE(19); - if (lookahead == '/') ADVANCE(16); - if (lookahead == '0') ADVANCE(163); - if (lookahead == ':') ADVANCE(117); - if (lookahead == ';') ADVANCE(107); - if (lookahead == '<') ADVANCE(26); - if (lookahead == '=') ADVANCE(115); - if (lookahead == 'L') ADVANCE(192); - if (lookahead == '[') ADVANCE(113); - if (lookahead == ']') ADVANCE(114); - if (lookahead == '{') ADVANCE(109); - if (lookahead == '}') ADVANCE(110); - if (lookahead == '~') ADVANCE(133); + if (lookahead == '\n') ADVANCE(58); + if (lookahead == '(') ADVANCE(60); + if (lookahead == '/') ADVANCE(101); + if (lookahead == '\\') ADVANCE(104); if (lookahead == '\t' || - lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(1) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(165); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(194); + lookahead == ' ') ADVANCE(99); + if (lookahead != 0) ADVANCE(102); END_STATE(); case 2: - if (lookahead == 0) ADVANCE(54); - if (lookahead == '!') ADVANCE(132); - if (lookahead == '"') ADVANCE(181); - if (lookahead == '#') ADVANCE(29); - if (lookahead == '%') ADVANCE(141); - if (lookahead == '&') ADVANCE(130); - if (lookahead == '\'') ADVANCE(176); - if (lookahead == '(') ADVANCE(108); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '*') ADVANCE(112); - if (lookahead == '+') ADVANCE(137); - if (lookahead == ',') ADVANCE(61); - if (lookahead == '-') ADVANCE(134); - if (lookahead == '.') ADVANCE(157); - if (lookahead == '/') ADVANCE(140); - if (lookahead == '0') ADVANCE(163); - if (lookahead == ':') ADVANCE(117); - if (lookahead == ';') ADVANCE(107); - if (lookahead == '<') ADVANCE(151); - if (lookahead == '=') ADVANCE(116); - if (lookahead == '>') ADVANCE(148); - if (lookahead == '?') ADVANCE(118); - if (lookahead == 'L') ADVANCE(192); - if (lookahead == '[') ADVANCE(113); - if (lookahead == ']') ADVANCE(114); - if (lookahead == '^') ADVANCE(145); - if (lookahead == '{') ADVANCE(109); - if (lookahead == '|') ADVANCE(144); - if (lookahead == '}') ADVANCE(110); - if (lookahead == '~') ADVANCE(133); + if (lookahead == '\n') ADVANCE(58); + if (lookahead == '/') ADVANCE(101); + if (lookahead == '\\') ADVANCE(104); if (lookahead == '\t' || - lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(2) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(165); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(194); + lookahead == ' ') ADVANCE(99); + if (lookahead != 0) ADVANCE(102); END_STATE(); case 3: - if (lookahead == '\n') SKIP(23) - if (lookahead == '/') ADVANCE(178); - if (lookahead == '\\') ADVANCE(179); + if (lookahead == '\n') SKIP(12) + if (lookahead == '"') ADVANCE(182); + if (lookahead == '/') ADVANCE(183); + if (lookahead == '\\') ADVANCE(26); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') ADVANCE(177); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(177); + lookahead == ' ') ADVANCE(186); + if (lookahead != 0) ADVANCE(187); END_STATE(); case 4: - if (lookahead == '\n') ADVANCE(57); - if (lookahead == '(') ADVANCE(59); - if (lookahead == '/') ADVANCE(100); - if (lookahead == '\\') ADVANCE(103); + if (lookahead == '\n') SKIP(22) + if (lookahead == '/') ADVANCE(179); + if (lookahead == '\\') ADVANCE(180); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') ADVANCE(98); - if (lookahead != 0) ADVANCE(101); + lookahead == ' ') ADVANCE(178); + if (lookahead != 0 && + lookahead != '\'') ADVANCE(178); END_STATE(); case 5: - if (lookahead == '\n') ADVANCE(57); - if (lookahead == '/') ADVANCE(100); - if (lookahead == '\\') ADVANCE(103); + if (lookahead == '\n') SKIP(5) + if (lookahead == '/') ADVANCE(101); + if (lookahead == '\\') ADVANCE(104); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') ADVANCE(98); - if (lookahead != 0) ADVANCE(101); + lookahead == ' ') ADVANCE(100); + if (lookahead != 0) ADVANCE(102); END_STATE(); case 6: - if (lookahead == '\n') SKIP(13) - if (lookahead == '"') ADVANCE(181); - if (lookahead == '/') ADVANCE(182); - if (lookahead == '\\') ADVANCE(27); + if (lookahead == '\n') ADVANCE(59); + if (lookahead == '/') ADVANCE(15); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') ADVANCE(185); - if (lookahead != 0) ADVANCE(186); + lookahead == ' ') SKIP(6) END_STATE(); case 7: - if (lookahead == '\n') SKIP(7) - if (lookahead == '/') ADVANCE(100); - if (lookahead == '\\') ADVANCE(103); + if (lookahead == '!') ADVANCE(133); + if (lookahead == '"') ADVANCE(182); + if (lookahead == '#') ADVANCE(34); + if (lookahead == '%') ADVANCE(142); + if (lookahead == '&') ADVANCE(131); + if (lookahead == '\'') ADVANCE(177); + if (lookahead == '(') ADVANCE(109); + if (lookahead == ')') ADVANCE(63); + if (lookahead == '*') ADVANCE(113); + if (lookahead == '+') ADVANCE(138); + if (lookahead == ',') ADVANCE(62); + if (lookahead == '-') ADVANCE(135); + if (lookahead == '.') ADVANCE(159); + if (lookahead == '/') ADVANCE(141); + if (lookahead == '0') ADVANCE(164); + if (lookahead == ':') ADVANCE(118); + if (lookahead == ';') ADVANCE(108); + if (lookahead == '<') ADVANCE(152); + if (lookahead == '=') ADVANCE(117); + if (lookahead == '>') ADVANCE(149); + if (lookahead == '?') ADVANCE(119); + if (lookahead == 'L') ADVANCE(193); + if (lookahead == '[') ADVANCE(114); + if (lookahead == ']') ADVANCE(115); + if (lookahead == '^') ADVANCE(146); + if (lookahead == '{') ADVANCE(110); + if (lookahead == '|') ADVANCE(145); + if (lookahead == '}') ADVANCE(111); + if (lookahead == '~') ADVANCE(134); if (lookahead == '\t' || + lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(99); - if (lookahead != 0) ADVANCE(101); + lookahead == ' ') SKIP(7) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(166); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(195); END_STATE(); case 8: - if (lookahead == '\n') ADVANCE(58); - if (lookahead == '/') ADVANCE(16); + if (lookahead == '!') ADVANCE(132); + if (lookahead == '"') ADVANCE(182); + if (lookahead == '#') ADVANCE(27); + if (lookahead == '&') ADVANCE(130); + if (lookahead == '\'') ADVANCE(177); + if (lookahead == '(') ADVANCE(109); + if (lookahead == '*') ADVANCE(112); + if (lookahead == '+') ADVANCE(139); + if (lookahead == '-') ADVANCE(136); + if (lookahead == '.') ADVANCE(39); + if (lookahead == '/') ADVANCE(15); + if (lookahead == '0') ADVANCE(164); + if (lookahead == ';') ADVANCE(108); + if (lookahead == 'L') ADVANCE(193); + if (lookahead == '{') ADVANCE(110); + if (lookahead == '~') ADVANCE(134); if (lookahead == '\t' || + lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(8) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(166); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(195); END_STATE(); case 9: - if (lookahead == '!') ADVANCE(24); - if (lookahead == '"') ADVANCE(181); - if (lookahead == '#') ADVANCE(34); - if (lookahead == '%') ADVANCE(141); + if (lookahead == '!') ADVANCE(132); + if (lookahead == '"') ADVANCE(182); + if (lookahead == '#') ADVANCE(29); if (lookahead == '&') ADVANCE(130); - if (lookahead == '(') ADVANCE(108); - if (lookahead == ')') ADVANCE(62); + if (lookahead == '\'') ADVANCE(177); + if (lookahead == '(') ADVANCE(109); if (lookahead == '*') ADVANCE(112); if (lookahead == '+') ADVANCE(139); - if (lookahead == ',') ADVANCE(61); if (lookahead == '-') ADVANCE(136); - if (lookahead == '.') ADVANCE(156); - if (lookahead == '/') ADVANCE(140); - if (lookahead == ':') ADVANCE(117); - if (lookahead == ';') ADVANCE(107); - if (lookahead == '<') ADVANCE(151); - if (lookahead == '=') ADVANCE(116); - if (lookahead == '>') ADVANCE(148); - if (lookahead == '?') ADVANCE(118); + if (lookahead == '.') ADVANCE(39); + if (lookahead == '/') ADVANCE(15); + if (lookahead == '0') ADVANCE(164); + if (lookahead == ';') ADVANCE(108); if (lookahead == 'L') ADVANCE(193); - if (lookahead == '[') ADVANCE(113); - if (lookahead == ']') ADVANCE(114); - if (lookahead == '^') ADVANCE(145); - if (lookahead == '{') ADVANCE(109); - if (lookahead == '|') ADVANCE(144); - if (lookahead == '}') ADVANCE(110); + if (lookahead == '{') ADVANCE(110); + if (lookahead == '~') ADVANCE(134); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(9) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(166); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(194); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(195); END_STATE(); case 10: - if (lookahead == '!') ADVANCE(131); - if (lookahead == '"') ADVANCE(181); - if (lookahead == '#') ADVANCE(29); - if (lookahead == '&') ADVANCE(129); - if (lookahead == '\'') ADVANCE(176); - if (lookahead == '(') ADVANCE(108); - if (lookahead == '*') ADVANCE(111); - if (lookahead == '+') ADVANCE(138); - if (lookahead == ',') ADVANCE(61); - if (lookahead == '-') ADVANCE(135); - if (lookahead == '.') ADVANCE(158); - if (lookahead == '/') ADVANCE(16); - if (lookahead == '0') ADVANCE(163); - if (lookahead == ';') ADVANCE(107); - if (lookahead == 'L') ADVANCE(192); - if (lookahead == '[') ADVANCE(113); - if (lookahead == '{') ADVANCE(109); - if (lookahead == '}') ADVANCE(110); - if (lookahead == '~') ADVANCE(133); + if (lookahead == '!') ADVANCE(23); + if (lookahead == '"') ADVANCE(182); + if (lookahead == '%') ADVANCE(142); + if (lookahead == '&') ADVANCE(131); + if (lookahead == '(') ADVANCE(109); + if (lookahead == ')') ADVANCE(63); + if (lookahead == '*') ADVANCE(113); + if (lookahead == '+') ADVANCE(140); + if (lookahead == ',') ADVANCE(62); + if (lookahead == '-') ADVANCE(137); + if (lookahead == '.') ADVANCE(157); + if (lookahead == '/') ADVANCE(141); + if (lookahead == ':') ADVANCE(118); + if (lookahead == ';') ADVANCE(108); + if (lookahead == '<') ADVANCE(152); + if (lookahead == '=') ADVANCE(117); + if (lookahead == '>') ADVANCE(149); + if (lookahead == '?') ADVANCE(119); + if (lookahead == 'L') ADVANCE(194); + if (lookahead == '[') ADVANCE(114); + if (lookahead == ']') ADVANCE(115); + if (lookahead == '^') ADVANCE(146); + if (lookahead == '|') ADVANCE(145); + if (lookahead == '}') ADVANCE(111); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(10) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(165); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(194); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(195); END_STATE(); case 11: - if (lookahead == '!') ADVANCE(131); - if (lookahead == '"') ADVANCE(181); - if (lookahead == '#') ADVANCE(31); - if (lookahead == '&') ADVANCE(129); - if (lookahead == '\'') ADVANCE(176); - if (lookahead == '(') ADVANCE(108); - if (lookahead == '*') ADVANCE(111); - if (lookahead == '+') ADVANCE(138); - if (lookahead == '-') ADVANCE(135); - if (lookahead == '.') ADVANCE(39); - if (lookahead == '/') ADVANCE(16); - if (lookahead == '0') ADVANCE(163); - if (lookahead == ';') ADVANCE(107); - if (lookahead == 'L') ADVANCE(192); - if (lookahead == '{') ADVANCE(109); - if (lookahead == '~') ADVANCE(133); + if (lookahead == '!') ADVANCE(23); + if (lookahead == '#') ADVANCE(28); + if (lookahead == '%') ADVANCE(142); + if (lookahead == '&') ADVANCE(131); + if (lookahead == '(') ADVANCE(109); + if (lookahead == ')') ADVANCE(63); + if (lookahead == '*') ADVANCE(113); + if (lookahead == '+') ADVANCE(140); + if (lookahead == ',') ADVANCE(62); + if (lookahead == '-') ADVANCE(137); + if (lookahead == '.') ADVANCE(157); + if (lookahead == '/') ADVANCE(141); + if (lookahead == ':') ADVANCE(118); + if (lookahead == ';') ADVANCE(108); + if (lookahead == '<') ADVANCE(152); + if (lookahead == '=') ADVANCE(117); + if (lookahead == '>') ADVANCE(149); + if (lookahead == '?') ADVANCE(119); + if (lookahead == '[') ADVANCE(114); + if (lookahead == ']') ADVANCE(115); + if (lookahead == '^') ADVANCE(146); + if (lookahead == '{') ADVANCE(110); + if (lookahead == '|') ADVANCE(145); + if (lookahead == '}') ADVANCE(111); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(11) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(165); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(194); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(195); END_STATE(); case 12: - if (lookahead == '!') ADVANCE(132); - if (lookahead == '"') ADVANCE(181); - if (lookahead == '#') ADVANCE(35); - if (lookahead == '%') ADVANCE(141); - if (lookahead == '&') ADVANCE(130); - if (lookahead == '\'') ADVANCE(176); - if (lookahead == '(') ADVANCE(108); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '*') ADVANCE(112); - if (lookahead == '+') ADVANCE(137); - if (lookahead == ',') ADVANCE(61); - if (lookahead == '-') ADVANCE(134); - if (lookahead == '.') ADVANCE(158); - if (lookahead == '/') ADVANCE(140); - if (lookahead == '0') ADVANCE(163); - if (lookahead == ':') ADVANCE(117); - if (lookahead == ';') ADVANCE(107); - if (lookahead == '<') ADVANCE(151); - if (lookahead == '=') ADVANCE(116); - if (lookahead == '>') ADVANCE(148); - if (lookahead == '?') ADVANCE(118); - if (lookahead == 'L') ADVANCE(192); - if (lookahead == '[') ADVANCE(113); - if (lookahead == ']') ADVANCE(114); - if (lookahead == '^') ADVANCE(145); - if (lookahead == '{') ADVANCE(109); - if (lookahead == '|') ADVANCE(144); - if (lookahead == '}') ADVANCE(110); - if (lookahead == '~') ADVANCE(133); + if (lookahead == '"') ADVANCE(182); + if (lookahead == '/') ADVANCE(15); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(12) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(165); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(194); END_STATE(); case 13: - if (lookahead == '"') ADVANCE(181); - if (lookahead == '/') ADVANCE(16); + if (lookahead == '#') ADVANCE(32); + if (lookahead == '(') ADVANCE(109); + if (lookahead == ')') ADVANCE(63); + if (lookahead == '*') ADVANCE(112); + if (lookahead == '.') ADVANCE(20); + if (lookahead == '/') ADVANCE(15); + if (lookahead == '[') ADVANCE(114); + if (lookahead == '}') ADVANCE(111); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(13) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(195); END_STATE(); case 14: if (lookahead == '#') ADVANCE(30); - if (lookahead == '/') ADVANCE(16); + if (lookahead == '/') ADVANCE(15); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(14) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(194); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(195); END_STATE(); case 15: - if (lookahead == '#') ADVANCE(32); - if (lookahead == '/') ADVANCE(16); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(15) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(194); + if (lookahead == '*') ADVANCE(17); + if (lookahead == '/') ADVANCE(198); END_STATE(); case 16: - if (lookahead == '*') ADVANCE(18); - if (lookahead == '/') ADVANCE(197); + if (lookahead == '*') ADVANCE(16); + if (lookahead == '/') ADVANCE(196); + if (lookahead != 0) ADVANCE(17); END_STATE(); case 17: - if (lookahead == '*') ADVANCE(17); - if (lookahead == '/') ADVANCE(195); - if (lookahead != 0) ADVANCE(18); + if (lookahead == '*') ADVANCE(16); + if (lookahead != 0) ADVANCE(17); END_STATE(); case 18: - if (lookahead == '*') ADVANCE(17); - if (lookahead != 0) ADVANCE(18); + if (lookahead == '.') ADVANCE(39); + if (lookahead == '0') ADVANCE(162); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(163); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(172); END_STATE(); case 19: - if (lookahead == '.') ADVANCE(20); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(162); + if (lookahead == '.') ADVANCE(39); + if (lookahead == '0') ADVANCE(165); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(166); END_STATE(); case 20: - if (lookahead == '.') ADVANCE(60); + if (lookahead == '.') ADVANCE(21); END_STATE(); case 21: - if (lookahead == '.') ADVANCE(39); - if (lookahead == '0') ADVANCE(160); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(161); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(171); + if (lookahead == '.') ADVANCE(61); END_STATE(); case 22: - if (lookahead == '.') ADVANCE(39); - if (lookahead == '0') ADVANCE(164); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(165); - END_STATE(); - case 23: - if (lookahead == '/') ADVANCE(16); + if (lookahead == '/') ADVANCE(15); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(23) + lookahead == ' ') SKIP(22) END_STATE(); - case 24: - if (lookahead == '=') ADVANCE(147); + case 23: + if (lookahead == '=') ADVANCE(148); END_STATE(); - case 25: + case 24: if (lookahead == '>') ADVANCE(191); if (lookahead == '\\') ADVANCE(25); if (lookahead != 0 && - lookahead != '\n') ADVANCE(26); + lookahead != '\n') ADVANCE(24); END_STATE(); - case 26: - if (lookahead == '>') ADVANCE(190); + case 25: + if (lookahead == '>') ADVANCE(192); if (lookahead == '\\') ADVANCE(25); if (lookahead != 0 && - lookahead != '\n') ADVANCE(26); + lookahead != '\n') ADVANCE(24); + END_STATE(); + case 26: + if (lookahead == 'U') ADVANCE(51); + if (lookahead == 'u') ADVANCE(47); + if (lookahead == 'x') ADVANCE(45); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(190); + if (lookahead != 0) ADVANCE(188); END_STATE(); case 27: - if (lookahead == 'U') ADVANCE(52); - if (lookahead == 'u') ADVANCE(48); - if (lookahead == 'x') ADVANCE(46); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(189); - if (lookahead != 0) ADVANCE(187); + if (lookahead == 'd') ADVANCE(75); + if (lookahead == 'e') ADVANCE(91); + if (lookahead == 'i') ADVANCE(81); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(27); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(96); END_STATE(); case 28: - if (lookahead == 'd') ADVANCE(37); + if (lookahead == 'd') ADVANCE(75); + if (lookahead == 'e') ADVANCE(91); + if (lookahead == 'i') ADVANCE(82); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(28); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(96); END_STATE(); case 29: - if (lookahead == 'd') ADVANCE(74); - if (lookahead == 'e') ADVANCE(91); - if (lookahead == 'i') ADVANCE(83); + if (lookahead == 'd') ADVANCE(75); + if (lookahead == 'e') ADVANCE(93); + if (lookahead == 'i') ADVANCE(81); if (lookahead == '\t' || lookahead == ' ') ADVANCE(29); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(96); END_STATE(); case 30: - if (lookahead == 'd') ADVANCE(74); - if (lookahead == 'e') ADVANCE(91); - if (lookahead == 'i') ADVANCE(84); + if (lookahead == 'd') ADVANCE(75); + if (lookahead == 'e') ADVANCE(93); + if (lookahead == 'i') ADVANCE(82); if (lookahead == '\t' || lookahead == ' ') ADVANCE(30); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(96); END_STATE(); case 31: - if (lookahead == 'd') ADVANCE(74); - if (lookahead == 'e') ADVANCE(92); - if (lookahead == 'i') ADVANCE(83); + if (lookahead == 'd') ADVANCE(75); + if (lookahead == 'i') ADVANCE(81); if (lookahead == '\t' || lookahead == ' ') ADVANCE(31); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(96); END_STATE(); case 32: - if (lookahead == 'd') ADVANCE(74); - if (lookahead == 'e') ADVANCE(92); - if (lookahead == 'i') ADVANCE(84); + if (lookahead == 'd') ADVANCE(75); + if (lookahead == 'i') ADVANCE(82); if (lookahead == '\t' || lookahead == ' ') ADVANCE(32); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(96); END_STATE(); case 33: - if (lookahead == 'd') ADVANCE(74); - if (lookahead == 'i') ADVANCE(83); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(33); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + if (lookahead == 'd') ADVANCE(36); END_STATE(); case 34: - if (lookahead == 'd') ADVANCE(74); - if (lookahead == 'i') ADVANCE(84); + if (lookahead == 'e') ADVANCE(37); if (lookahead == '\t' || lookahead == ' ') ADVANCE(34); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); END_STATE(); case 35: - if (lookahead == 'e') ADVANCE(38); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(35); + if (lookahead == 'f') ADVANCE(65); END_STATE(); case 36: - if (lookahead == 'f') ADVANCE(64); + if (lookahead == 'i') ADVANCE(35); END_STATE(); case 37: - if (lookahead == 'i') ADVANCE(36); + if (lookahead == 'n') ADVANCE(33); END_STATE(); case 38: - if (lookahead == 'n') ADVANCE(28); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(166); END_STATE(); case 39: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(162); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(161); END_STATE(); case 40: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(165); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(163); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(172); END_STATE(); case 41: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(161); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(171); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(188); END_STATE(); case 42: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(168); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(169); END_STATE(); case 43: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(171); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(172); END_STATE(); case 44: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(187); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(167); END_STATE(); case 45: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(166); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(41); END_STATE(); case 46: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(44); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(45); END_STATE(); case 47: if (('0' <= lookahead && lookahead <= '9') || @@ -2251,173 +2216,235 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'f')) ADVANCE(50); END_STATE(); case 52: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(51); + if (lookahead != 0 && + lookahead != '\r') ADVANCE(198); + if (lookahead == '\r') ADVANCE(200); END_STATE(); case 53: - if (lookahead != 0 && - lookahead != '\r') ADVANCE(197); - if (lookahead == '\r') ADVANCE(199); + if (eof) ADVANCE(55); + if (lookahead == '!') ADVANCE(133); + if (lookahead == '"') ADVANCE(182); + if (lookahead == '#') ADVANCE(27); + if (lookahead == '%') ADVANCE(142); + if (lookahead == '&') ADVANCE(131); + if (lookahead == '\'') ADVANCE(177); + if (lookahead == '(') ADVANCE(109); + if (lookahead == ')') ADVANCE(63); + if (lookahead == '*') ADVANCE(113); + if (lookahead == '+') ADVANCE(138); + if (lookahead == ',') ADVANCE(62); + if (lookahead == '-') ADVANCE(135); + if (lookahead == '.') ADVANCE(158); + if (lookahead == '/') ADVANCE(141); + if (lookahead == '0') ADVANCE(164); + if (lookahead == ':') ADVANCE(118); + if (lookahead == ';') ADVANCE(108); + if (lookahead == '<') ADVANCE(152); + if (lookahead == '=') ADVANCE(117); + if (lookahead == '>') ADVANCE(149); + if (lookahead == '?') ADVANCE(119); + if (lookahead == 'L') ADVANCE(193); + if (lookahead == '[') ADVANCE(114); + if (lookahead == ']') ADVANCE(115); + if (lookahead == '^') ADVANCE(146); + if (lookahead == '{') ADVANCE(110); + if (lookahead == '|') ADVANCE(145); + if (lookahead == '}') ADVANCE(111); + if (lookahead == '~') ADVANCE(134); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(53) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(166); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(195); END_STATE(); case 54: - ACCEPT_TOKEN(ts_builtin_sym_end); + if (eof) ADVANCE(55); + if (lookahead == '!') ADVANCE(132); + if (lookahead == '"') ADVANCE(182); + if (lookahead == '#') ADVANCE(31); + if (lookahead == '&') ADVANCE(130); + if (lookahead == '\'') ADVANCE(177); + if (lookahead == '(') ADVANCE(109); + if (lookahead == ')') ADVANCE(63); + if (lookahead == '*') ADVANCE(112); + if (lookahead == '+') ADVANCE(139); + if (lookahead == ',') ADVANCE(62); + if (lookahead == '-') ADVANCE(136); + if (lookahead == '.') ADVANCE(159); + if (lookahead == '/') ADVANCE(15); + if (lookahead == '0') ADVANCE(164); + if (lookahead == ':') ADVANCE(118); + if (lookahead == ';') ADVANCE(108); + if (lookahead == '<') ADVANCE(24); + if (lookahead == '=') ADVANCE(116); + if (lookahead == 'L') ADVANCE(193); + if (lookahead == '[') ADVANCE(114); + if (lookahead == ']') ADVANCE(115); + if (lookahead == '{') ADVANCE(110); + if (lookahead == '}') ADVANCE(111); + if (lookahead == '~') ADVANCE(134); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(54) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(166); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(195); END_STATE(); case 55: + ACCEPT_TOKEN(ts_builtin_sym_end); + END_STATE(); + case 56: ACCEPT_TOKEN(aux_sym_preproc_include_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(96); END_STATE(); - case 56: + case 57: ACCEPT_TOKEN(aux_sym_preproc_def_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(96); END_STATE(); - case 57: + case 58: ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(57); + if (lookahead == '\n') ADVANCE(58); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') ADVANCE(98); + lookahead == ' ') ADVANCE(99); END_STATE(); - case 58: + case 59: ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(58); + if (lookahead == '\n') ADVANCE(59); END_STATE(); - case 59: + case 60: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 60: + case 61: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); - case 61: + case 62: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 62: + case 63: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 63: + case 64: ACCEPT_TOKEN(aux_sym_preproc_if_token1); - if (lookahead == 'd') ADVANCE(78); - if (lookahead == 'n') ADVANCE(73); + if (lookahead == 'd') ADVANCE(79); + if (lookahead == 'n') ADVANCE(74); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); - END_STATE(); - case 64: - ACCEPT_TOKEN(aux_sym_preproc_if_token2); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(96); END_STATE(); case 65: ACCEPT_TOKEN(aux_sym_preproc_if_token2); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); END_STATE(); case 66: - ACCEPT_TOKEN(aux_sym_preproc_ifdef_token1); + ACCEPT_TOKEN(aux_sym_preproc_if_token2); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(96); END_STATE(); case 67: - ACCEPT_TOKEN(aux_sym_preproc_ifdef_token2); + ACCEPT_TOKEN(aux_sym_preproc_ifdef_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(96); END_STATE(); case 68: - ACCEPT_TOKEN(aux_sym_preproc_else_token1); + ACCEPT_TOKEN(aux_sym_preproc_ifdef_token2); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(96); END_STATE(); case 69: - ACCEPT_TOKEN(aux_sym_preproc_elif_token1); + ACCEPT_TOKEN(aux_sym_preproc_else_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(96); END_STATE(); case 70: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'c') ADVANCE(90); + ACCEPT_TOKEN(aux_sym_preproc_elif_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(96); END_STATE(); case 71: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'd') ADVANCE(89); + if (lookahead == 'c') ADVANCE(92); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(96); END_STATE(); case 72: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'd') ADVANCE(76); + if (lookahead == 'd') ADVANCE(90); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(96); END_STATE(); case 73: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'd') ADVANCE(79); + if (lookahead == 'd') ADVANCE(78); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(96); END_STATE(); case 74: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(81); + if (lookahead == 'd') ADVANCE(80); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(96); END_STATE(); case 75: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(56); + if (lookahead == 'e') ADVANCE(83); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(96); END_STATE(); case 76: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(55); + if (lookahead == 'e') ADVANCE(69); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(96); END_STATE(); case 77: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(68); + if (lookahead == 'e') ADVANCE(57); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(96); END_STATE(); case 78: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(82); + if (lookahead == 'e') ADVANCE(56); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(96); END_STATE(); case 79: ACCEPT_TOKEN(sym_preproc_directive); @@ -2425,56 +2452,56 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(96); END_STATE(); case 80: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(65); + if (lookahead == 'e') ADVANCE(87); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(96); END_STATE(); case 81: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(87); + if (lookahead == 'f') ADVANCE(64); + if (lookahead == 'n') ADVANCE(71); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(96); END_STATE(); case 82: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(66); + if (lookahead == 'f') ADVANCE(64); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(96); END_STATE(); case 83: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(63); - if (lookahead == 'n') ADVANCE(70); + if (lookahead == 'f') ADVANCE(88); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(96); END_STATE(); case 84: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(63); + if (lookahead == 'f') ADVANCE(70); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(96); END_STATE(); case 85: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(69); + if (lookahead == 'f') ADVANCE(66); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(96); END_STATE(); case 86: ACCEPT_TOKEN(sym_preproc_directive); @@ -2482,773 +2509,781 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(96); END_STATE(); case 87: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'i') ADVANCE(93); + if (lookahead == 'f') ADVANCE(68); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(96); END_STATE(); case 88: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'i') ADVANCE(85); - if (lookahead == 's') ADVANCE(77); + if (lookahead == 'i') ADVANCE(94); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(96); END_STATE(); case 89: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'i') ADVANCE(80); + if (lookahead == 'i') ADVANCE(84); + if (lookahead == 's') ADVANCE(76); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(96); END_STATE(); case 90: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'l') ADVANCE(94); + if (lookahead == 'i') ADVANCE(85); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(96); END_STATE(); case 91: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'l') ADVANCE(88); - if (lookahead == 'n') ADVANCE(71); + if (lookahead == 'l') ADVANCE(89); + if (lookahead == 'n') ADVANCE(72); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(96); END_STATE(); case 92: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'n') ADVANCE(71); + if (lookahead == 'l') ADVANCE(95); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(96); END_STATE(); case 93: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'n') ADVANCE(75); + if (lookahead == 'n') ADVANCE(72); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(96); END_STATE(); case 94: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'u') ADVANCE(72); + if (lookahead == 'n') ADVANCE(77); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(96); END_STATE(); case 95: ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'u') ADVANCE(73); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(96); END_STATE(); case 96: - ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') ADVANCE(18); - if (lookahead == '*') ADVANCE(96); - if (lookahead == '/') ADVANCE(195); - if (lookahead == '\\') ADVANCE(106); - if (lookahead != 0) ADVANCE(97); + ACCEPT_TOKEN(sym_preproc_directive); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(96); END_STATE(); case 97: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') ADVANCE(18); - if (lookahead == '*') ADVANCE(96); - if (lookahead == '\\') ADVANCE(106); - if (lookahead != 0) ADVANCE(97); + if (lookahead == '\n') ADVANCE(17); + if (lookahead == '*') ADVANCE(97); + if (lookahead == '/') ADVANCE(196); + if (lookahead == '\\') ADVANCE(107); + if (lookahead != 0) ADVANCE(98); END_STATE(); case 98: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') ADVANCE(57); - if (lookahead == '/') ADVANCE(100); - if (lookahead == '\\') ADVANCE(103); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(98); - if (lookahead != 0) ADVANCE(101); + if (lookahead == '\n') ADVANCE(17); + if (lookahead == '*') ADVANCE(97); + if (lookahead == '\\') ADVANCE(107); + if (lookahead != 0) ADVANCE(98); END_STATE(); case 99: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') SKIP(7) - if (lookahead == '/') ADVANCE(100); - if (lookahead == '\\') ADVANCE(103); + if (lookahead == '\n') ADVANCE(58); + if (lookahead == '/') ADVANCE(101); + if (lookahead == '\\') ADVANCE(104); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') ADVANCE(99); - if (lookahead != 0) ADVANCE(101); + if (lookahead != 0) ADVANCE(102); END_STATE(); case 100: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '*') ADVANCE(97); - if (lookahead == '/') ADVANCE(198); - if (lookahead == '\\') ADVANCE(103); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(101); + if (lookahead == '\n') SKIP(5) + if (lookahead == '/') ADVANCE(101); + if (lookahead == '\\') ADVANCE(104); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(100); + if (lookahead != 0) ADVANCE(102); END_STATE(); case 101: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\\') ADVANCE(103); + if (lookahead == '*') ADVANCE(98); + if (lookahead == '/') ADVANCE(199); + if (lookahead == '\\') ADVANCE(104); if (lookahead != 0 && - lookahead != '\n') ADVANCE(101); + lookahead != '\n') ADVANCE(102); END_STATE(); case 102: ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '\\') ADVANCE(104); if (lookahead != 0 && - lookahead != '\\') ADVANCE(101); - if (lookahead == '\\') ADVANCE(103); + lookahead != '\n') ADVANCE(102); END_STATE(); case 103: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead != 0 && - lookahead != '\r' && - lookahead != '\\') ADVANCE(101); - if (lookahead == '\r') ADVANCE(102); - if (lookahead == '\\') ADVANCE(103); + lookahead != '\\') ADVANCE(102); + if (lookahead == '\\') ADVANCE(104); END_STATE(); case 104: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead != 0 && lookahead != '\r' && - lookahead != '\\') ADVANCE(198); - if (lookahead == '\r') ADVANCE(200); - if (lookahead == '\\') ADVANCE(196); + lookahead != '\\') ADVANCE(102); + if (lookahead == '\r') ADVANCE(103); + if (lookahead == '\\') ADVANCE(104); END_STATE(); case 105: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead != 0 && - lookahead != '*' && - lookahead != '\\') ADVANCE(97); - if (lookahead == '*') ADVANCE(96); - if (lookahead == '\\') ADVANCE(106); + lookahead != '\r' && + lookahead != '\\') ADVANCE(199); + if (lookahead == '\r') ADVANCE(201); + if (lookahead == '\\') ADVANCE(197); END_STATE(); case 106: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead != 0 && - lookahead != '\r' && lookahead != '*' && - lookahead != '\\') ADVANCE(97); - if (lookahead == '\r') ADVANCE(105); - if (lookahead == '*') ADVANCE(96); - if (lookahead == '\\') ADVANCE(106); + lookahead != '\\') ADVANCE(98); + if (lookahead == '*') ADVANCE(97); + if (lookahead == '\\') ADVANCE(107); END_STATE(); case 107: - ACCEPT_TOKEN(anon_sym_SEMI); + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead != 0 && + lookahead != '\r' && + lookahead != '*' && + lookahead != '\\') ADVANCE(98); + if (lookahead == '\r') ADVANCE(106); + if (lookahead == '*') ADVANCE(97); + if (lookahead == '\\') ADVANCE(107); END_STATE(); case 108: - ACCEPT_TOKEN(anon_sym_LPAREN2); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 109: - ACCEPT_TOKEN(anon_sym_LBRACE); + ACCEPT_TOKEN(anon_sym_LPAREN2); END_STATE(); case 110: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 111: - ACCEPT_TOKEN(anon_sym_STAR); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 112: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '=') ADVANCE(119); END_STATE(); case 113: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '=') ADVANCE(120); END_STATE(); case 114: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 115: - ACCEPT_TOKEN(anon_sym_EQ); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 116: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(146); END_STATE(); case 117: - ACCEPT_TOKEN(anon_sym_COLON); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(147); END_STATE(); case 118: - ACCEPT_TOKEN(anon_sym_QMARK); + ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); case 119: - ACCEPT_TOKEN(anon_sym_STAR_EQ); + ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); case 120: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); + ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); case 121: - ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); case 122: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); case 123: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 124: - ACCEPT_TOKEN(anon_sym_LT_LT_EQ); + ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); case 125: - ACCEPT_TOKEN(anon_sym_GT_GT_EQ); + ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); case 126: - ACCEPT_TOKEN(anon_sym_AMP_EQ); + ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); case 127: - ACCEPT_TOKEN(anon_sym_CARET_EQ); + ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); case 128: - ACCEPT_TOKEN(anon_sym_PIPE_EQ); + ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); case 129: - ACCEPT_TOKEN(anon_sym_AMP); + ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); case 130: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(143); - if (lookahead == '=') ADVANCE(126); END_STATE(); case 131: - ACCEPT_TOKEN(anon_sym_BANG); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(144); + if (lookahead == '=') ADVANCE(127); END_STATE(); case 132: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(147); END_STATE(); case 133: - ACCEPT_TOKEN(anon_sym_TILDE); + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(148); END_STATE(); case 134: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(154); - if (lookahead == '.') ADVANCE(39); - if (lookahead == '0') ADVANCE(163); - if (lookahead == '=') ADVANCE(123); - if (lookahead == '>') ADVANCE(159); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(165); + ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); case 135: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(154); + if (lookahead == '-') ADVANCE(155); if (lookahead == '.') ADVANCE(39); - if (lookahead == '0') ADVANCE(163); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(165); + if (lookahead == '0') ADVANCE(164); + if (lookahead == '=') ADVANCE(124); + if (lookahead == '>') ADVANCE(160); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(166); END_STATE(); case 136: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(154); - if (lookahead == '=') ADVANCE(123); - if (lookahead == '>') ADVANCE(159); + if (lookahead == '-') ADVANCE(155); + if (lookahead == '.') ADVANCE(39); + if (lookahead == '0') ADVANCE(164); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(166); END_STATE(); case 137: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(155); - if (lookahead == '.') ADVANCE(39); - if (lookahead == '0') ADVANCE(163); - if (lookahead == '=') ADVANCE(122); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(165); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(155); + if (lookahead == '=') ADVANCE(124); + if (lookahead == '>') ADVANCE(160); END_STATE(); case 138: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(155); + if (lookahead == '+') ADVANCE(156); if (lookahead == '.') ADVANCE(39); - if (lookahead == '0') ADVANCE(163); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(165); + if (lookahead == '0') ADVANCE(164); + if (lookahead == '=') ADVANCE(123); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(166); END_STATE(); case 139: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(155); - if (lookahead == '=') ADVANCE(122); + if (lookahead == '+') ADVANCE(156); + if (lookahead == '.') ADVANCE(39); + if (lookahead == '0') ADVANCE(164); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(166); END_STATE(); case 140: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(18); - if (lookahead == '/') ADVANCE(197); - if (lookahead == '=') ADVANCE(120); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(156); + if (lookahead == '=') ADVANCE(123); END_STATE(); case 141: - ACCEPT_TOKEN(anon_sym_PERCENT); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(17); + if (lookahead == '/') ADVANCE(198); if (lookahead == '=') ADVANCE(121); END_STATE(); case 142: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '=') ADVANCE(122); END_STATE(); case 143: - ACCEPT_TOKEN(anon_sym_AMP_AMP); + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); case 144: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(128); - if (lookahead == '|') ADVANCE(142); + ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); case 145: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(127); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '=') ADVANCE(129); + if (lookahead == '|') ADVANCE(143); END_STATE(); case 146: - ACCEPT_TOKEN(anon_sym_EQ_EQ); + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(128); END_STATE(); case 147: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); case 148: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(149); - if (lookahead == '>') ADVANCE(153); + ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); case 149: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(150); + if (lookahead == '>') ADVANCE(154); END_STATE(); case 150: - ACCEPT_TOKEN(anon_sym_LT_EQ); + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 151: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(152); - if (lookahead == '=') ADVANCE(150); + ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); case 152: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(124); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(153); + if (lookahead == '=') ADVANCE(151); END_STATE(); case 153: - ACCEPT_TOKEN(anon_sym_GT_GT); + ACCEPT_TOKEN(anon_sym_LT_LT); if (lookahead == '=') ADVANCE(125); END_STATE(); case 154: - ACCEPT_TOKEN(anon_sym_DASH_DASH); + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '=') ADVANCE(126); END_STATE(); case 155: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); case 156: - ACCEPT_TOKEN(anon_sym_DOT); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); case 157: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(20); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(162); END_STATE(); case 158: ACCEPT_TOKEN(anon_sym_DOT); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(162); + if (lookahead == '.') ADVANCE(21); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(161); END_STATE(); case 159: - ACCEPT_TOKEN(anon_sym_DASH_GT); + ACCEPT_TOKEN(anon_sym_DOT); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(161); END_STATE(); case 160: + ACCEPT_TOKEN(anon_sym_DASH_GT); + END_STATE(); + case 161: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(41); - if (lookahead == '.') ADVANCE(172); + if (lookahead == '\'') ADVANCE(39); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(171); - if (lookahead == 'L' || + lookahead == 'L' || lookahead == 'U' || + lookahead == 'f' || lookahead == 'l' || - lookahead == 'u') ADVANCE(174); - if (lookahead == 'b') ADVANCE(170); - if (lookahead == 'x') ADVANCE(43); + lookahead == 'u') ADVANCE(175); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(169); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(173); - if (('A' <= lookahead && lookahead <= 'D') || - ('a' <= lookahead && lookahead <= 'd')) ADVANCE(171); + lookahead == 'P' || + lookahead == 'e' || + lookahead == 'p') ADVANCE(174); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(161); END_STATE(); - case 161: + case 162: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(41); - if (lookahead == '.') ADVANCE(172); + if (lookahead == '\'') ADVANCE(40); + if (lookahead == '.') ADVANCE(173); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(171); + lookahead == 'f') ADVANCE(172); if (lookahead == 'L' || lookahead == 'U' || lookahead == 'l' || - lookahead == 'u') ADVANCE(174); + lookahead == 'u') ADVANCE(175); + if (lookahead == 'b') ADVANCE(171); + if (lookahead == 'x') ADVANCE(43); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(169); + lookahead == 'e') ADVANCE(170); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(173); + lookahead == 'p') ADVANCE(174); if (('A' <= lookahead && lookahead <= 'D') || - ('a' <= lookahead && lookahead <= 'd')) ADVANCE(171); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(161); + ('a' <= lookahead && lookahead <= 'd')) ADVANCE(172); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(163); END_STATE(); - case 162: + case 163: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(39); + if (lookahead == '\'') ADVANCE(40); + if (lookahead == '.') ADVANCE(173); if (lookahead == 'F' || - lookahead == 'L' || + lookahead == 'f') ADVANCE(172); + if (lookahead == 'L' || lookahead == 'U' || - lookahead == 'f' || lookahead == 'l' || - lookahead == 'u') ADVANCE(174); + lookahead == 'u') ADVANCE(175); if (lookahead == 'E' || - lookahead == 'P' || - lookahead == 'e' || - lookahead == 'p') ADVANCE(173); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(162); + lookahead == 'e') ADVANCE(170); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(174); + if (('A' <= lookahead && lookahead <= 'D') || + ('a' <= lookahead && lookahead <= 'd')) ADVANCE(172); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(163); END_STATE(); - case 163: + case 164: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(40); - if (lookahead == '.') ADVANCE(172); + if (lookahead == '\'') ADVANCE(38); + if (lookahead == '.') ADVANCE(173); if (lookahead == 'F' || lookahead == 'L' || lookahead == 'U' || lookahead == 'f' || lookahead == 'l' || - lookahead == 'u') ADVANCE(174); - if (lookahead == 'b') ADVANCE(22); - if (lookahead == 'x') ADVANCE(21); + lookahead == 'u') ADVANCE(175); + if (lookahead == 'b') ADVANCE(19); + if (lookahead == 'x') ADVANCE(18); if (lookahead == 'E' || lookahead == 'P' || lookahead == 'e' || - lookahead == 'p') ADVANCE(173); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(165); + lookahead == 'p') ADVANCE(174); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(166); END_STATE(); - case 164: + case 165: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(40); - if (lookahead == '.') ADVANCE(172); + if (lookahead == '\'') ADVANCE(38); + if (lookahead == '.') ADVANCE(173); if (lookahead == 'F' || lookahead == 'L' || lookahead == 'U' || lookahead == 'f' || lookahead == 'l' || - lookahead == 'u') ADVANCE(174); - if (lookahead == 'b') ADVANCE(40); + lookahead == 'u') ADVANCE(175); + if (lookahead == 'b') ADVANCE(38); if (lookahead == 'x') ADVANCE(43); if (lookahead == 'E' || lookahead == 'P' || lookahead == 'e' || - lookahead == 'p') ADVANCE(173); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(165); + lookahead == 'p') ADVANCE(174); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(166); END_STATE(); - case 165: + case 166: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(40); - if (lookahead == '.') ADVANCE(172); + if (lookahead == '\'') ADVANCE(38); + if (lookahead == '.') ADVANCE(173); if (lookahead == 'F' || lookahead == 'L' || lookahead == 'U' || lookahead == 'f' || lookahead == 'l' || - lookahead == 'u') ADVANCE(174); + lookahead == 'u') ADVANCE(175); if (lookahead == 'E' || lookahead == 'P' || lookahead == 'e' || - lookahead == 'p') ADVANCE(173); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(165); + lookahead == 'p') ADVANCE(174); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(166); END_STATE(); - case 166: + case 167: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(45); + if (lookahead == '\'') ADVANCE(44); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(166); + lookahead == 'f') ADVANCE(167); if (lookahead == 'L' || lookahead == 'U' || lookahead == 'l' || - lookahead == 'u') ADVANCE(174); + lookahead == 'u') ADVANCE(175); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'E') || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(166); + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(167); END_STATE(); - case 167: + case 168: ACCEPT_TOKEN(sym_number_literal); if (lookahead == '\'') ADVANCE(42); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(168); + lookahead == 'f') ADVANCE(169); if (lookahead == 'L' || lookahead == 'U' || lookahead == 'l' || - lookahead == 'u') ADVANCE(174); + lookahead == 'u') ADVANCE(175); if (lookahead == '+' || - lookahead == '-') ADVANCE(45); + lookahead == '-') ADVANCE(44); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(167); + lookahead == 'e') ADVANCE(168); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(173); + lookahead == 'p') ADVANCE(174); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'D') || - ('a' <= lookahead && lookahead <= 'd')) ADVANCE(168); + ('a' <= lookahead && lookahead <= 'd')) ADVANCE(169); END_STATE(); - case 168: + case 169: ACCEPT_TOKEN(sym_number_literal); if (lookahead == '\'') ADVANCE(42); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(168); + lookahead == 'f') ADVANCE(169); if (lookahead == 'L' || lookahead == 'U' || lookahead == 'l' || - lookahead == 'u') ADVANCE(174); + lookahead == 'u') ADVANCE(175); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(167); + lookahead == 'e') ADVANCE(168); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(173); + lookahead == 'p') ADVANCE(174); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'D') || - ('a' <= lookahead && lookahead <= 'd')) ADVANCE(168); + ('a' <= lookahead && lookahead <= 'd')) ADVANCE(169); END_STATE(); - case 169: + case 170: ACCEPT_TOKEN(sym_number_literal); if (lookahead == '\'') ADVANCE(43); - if (lookahead == '.') ADVANCE(172); + if (lookahead == '.') ADVANCE(173); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(171); + lookahead == 'f') ADVANCE(172); if (lookahead == 'L' || lookahead == 'U' || lookahead == 'l' || - lookahead == 'u') ADVANCE(174); + lookahead == 'u') ADVANCE(175); if (lookahead == '+' || - lookahead == '-') ADVANCE(45); + lookahead == '-') ADVANCE(44); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(169); + lookahead == 'e') ADVANCE(170); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(173); + lookahead == 'p') ADVANCE(174); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'D') || - ('a' <= lookahead && lookahead <= 'd')) ADVANCE(171); + ('a' <= lookahead && lookahead <= 'd')) ADVANCE(172); END_STATE(); - case 170: + case 171: ACCEPT_TOKEN(sym_number_literal); if (lookahead == '\'') ADVANCE(43); - if (lookahead == '.') ADVANCE(172); + if (lookahead == '.') ADVANCE(173); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(171); + lookahead == 'f') ADVANCE(172); if (lookahead == 'L' || lookahead == 'U' || lookahead == 'l' || - lookahead == 'u') ADVANCE(174); + lookahead == 'u') ADVANCE(175); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(169); + lookahead == 'e') ADVANCE(170); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(173); + lookahead == 'p') ADVANCE(174); if (('A' <= lookahead && lookahead <= 'D') || - ('a' <= lookahead && lookahead <= 'd')) ADVANCE(171); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(161); + ('a' <= lookahead && lookahead <= 'd')) ADVANCE(172); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(163); END_STATE(); - case 171: + case 172: ACCEPT_TOKEN(sym_number_literal); if (lookahead == '\'') ADVANCE(43); - if (lookahead == '.') ADVANCE(172); + if (lookahead == '.') ADVANCE(173); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(171); + lookahead == 'f') ADVANCE(172); if (lookahead == 'L' || lookahead == 'U' || lookahead == 'l' || - lookahead == 'u') ADVANCE(174); + lookahead == 'u') ADVANCE(175); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(169); + lookahead == 'e') ADVANCE(170); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(173); + lookahead == 'p') ADVANCE(174); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'D') || - ('a' <= lookahead && lookahead <= 'd')) ADVANCE(171); + ('a' <= lookahead && lookahead <= 'd')) ADVANCE(172); END_STATE(); - case 172: + case 173: ACCEPT_TOKEN(sym_number_literal); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(168); + lookahead == 'f') ADVANCE(169); if (lookahead == 'L' || lookahead == 'U' || lookahead == 'l' || - lookahead == 'u') ADVANCE(174); + lookahead == 'u') ADVANCE(175); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(167); + lookahead == 'e') ADVANCE(168); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(173); + lookahead == 'p') ADVANCE(174); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'D') || - ('a' <= lookahead && lookahead <= 'd')) ADVANCE(168); + ('a' <= lookahead && lookahead <= 'd')) ADVANCE(169); END_STATE(); - case 173: + case 174: ACCEPT_TOKEN(sym_number_literal); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(166); + lookahead == 'f') ADVANCE(167); if (lookahead == 'L' || lookahead == 'U' || lookahead == 'l' || - lookahead == 'u') ADVANCE(174); + lookahead == 'u') ADVANCE(175); if (lookahead == '+' || - lookahead == '-') ADVANCE(45); + lookahead == '-') ADVANCE(44); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'E') || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(166); + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(167); END_STATE(); - case 174: + case 175: ACCEPT_TOKEN(sym_number_literal); if (lookahead == 'F' || lookahead == 'L' || lookahead == 'U' || lookahead == 'f' || lookahead == 'l' || - lookahead == 'u') ADVANCE(174); - END_STATE(); - case 175: - ACCEPT_TOKEN(anon_sym_L_SQUOTE); + lookahead == 'u') ADVANCE(175); END_STATE(); case 176: - ACCEPT_TOKEN(anon_sym_SQUOTE); + ACCEPT_TOKEN(anon_sym_L_SQUOTE); END_STATE(); case 177: - ACCEPT_TOKEN(aux_sym_char_literal_token1); + ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); case 178: ACCEPT_TOKEN(aux_sym_char_literal_token1); - if (lookahead == '*') ADVANCE(18); - if (lookahead == '/') ADVANCE(197); END_STATE(); case 179: ACCEPT_TOKEN(aux_sym_char_literal_token1); - if (lookahead == 'U') ADVANCE(52); - if (lookahead == 'u') ADVANCE(48); - if (lookahead == 'x') ADVANCE(46); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(189); - if (lookahead != 0) ADVANCE(187); + if (lookahead == '*') ADVANCE(17); + if (lookahead == '/') ADVANCE(198); END_STATE(); case 180: - ACCEPT_TOKEN(anon_sym_L_DQUOTE); + ACCEPT_TOKEN(aux_sym_char_literal_token1); + if (lookahead == 'U') ADVANCE(51); + if (lookahead == 'u') ADVANCE(47); + if (lookahead == 'x') ADVANCE(45); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(190); + if (lookahead != 0) ADVANCE(188); END_STATE(); case 181: - ACCEPT_TOKEN(anon_sym_DQUOTE); + ACCEPT_TOKEN(anon_sym_L_DQUOTE); END_STATE(); case 182: - ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '*') ADVANCE(184); - if (lookahead == '/') ADVANCE(186); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '"' && - lookahead != '\\') ADVANCE(186); + ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); case 183: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '*') ADVANCE(183); - if (lookahead == '/') ADVANCE(186); + if (lookahead == '*') ADVANCE(185); + if (lookahead == '/') ADVANCE(187); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(184); + lookahead != '\\') ADVANCE(187); END_STATE(); case 184: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '*') ADVANCE(183); + if (lookahead == '*') ADVANCE(184); + if (lookahead == '/') ADVANCE(187); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(184); + lookahead != '\\') ADVANCE(185); END_STATE(); case 185: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '/') ADVANCE(182); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(185); + if (lookahead == '*') ADVANCE(184); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(186); + lookahead != '\\') ADVANCE(185); END_STATE(); case 186: ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == '/') ADVANCE(183); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(186); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(186); + lookahead != '\\') ADVANCE(187); END_STATE(); case 187: - ACCEPT_TOKEN(sym_escape_sequence); + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(187); END_STATE(); case 188: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(187); END_STATE(); case 189: ACCEPT_TOKEN(sym_escape_sequence); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(188); END_STATE(); case 190: - ACCEPT_TOKEN(sym_system_lib_string); + ACCEPT_TOKEN(sym_escape_sequence); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(189); END_STATE(); case 191: ACCEPT_TOKEN(sym_system_lib_string); - if (lookahead == '>') ADVANCE(190); + END_STATE(); + case 192: + ACCEPT_TOKEN(sym_system_lib_string); + if (lookahead == '>') ADVANCE(191); if (lookahead == '\\') ADVANCE(25); if (lookahead != 0 && - lookahead != '\n') ADVANCE(26); + lookahead != '\n') ADVANCE(24); END_STATE(); - case 192: + case 193: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(180); - if (lookahead == '\'') ADVANCE(175); + if (lookahead == '"') ADVANCE(181); + if (lookahead == '\'') ADVANCE(176); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(194); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(195); END_STATE(); - case 193: + case 194: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(180); + if (lookahead == '"') ADVANCE(181); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(194); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(195); END_STATE(); - case 194: + case 195: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(194); - END_STATE(); - case 195: - ACCEPT_TOKEN(sym_comment); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(195); END_STATE(); case 196: ACCEPT_TOKEN(sym_comment); - if (lookahead == '\r') ADVANCE(198); - if (lookahead == '\\') ADVANCE(104); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(198); END_STATE(); case 197: ACCEPT_TOKEN(sym_comment); - if (lookahead == '\\') ADVANCE(53); + if (lookahead == '\r') ADVANCE(199); + if (lookahead == '\\') ADVANCE(105); if (lookahead != 0 && - lookahead != '\n') ADVANCE(197); + lookahead != '\n') ADVANCE(199); END_STATE(); case 198: ACCEPT_TOKEN(sym_comment); - if (lookahead == '\\') ADVANCE(104); + if (lookahead == '\\') ADVANCE(52); if (lookahead != 0 && lookahead != '\n') ADVANCE(198); END_STATE(); case 199: ACCEPT_TOKEN(sym_comment); + if (lookahead == '\\') ADVANCE(105); if (lookahead != 0 && - lookahead != '\\') ADVANCE(197); - if (lookahead == '\\') ADVANCE(53); + lookahead != '\n') ADVANCE(199); END_STATE(); case 200: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && lookahead != '\\') ADVANCE(198); - if (lookahead == '\\') ADVANCE(104); + if (lookahead == '\\') ADVANCE(52); + END_STATE(); + case 201: + ACCEPT_TOKEN(sym_comment); + if (lookahead != 0 && + lookahead != '\\') ADVANCE(199); + if (lookahead == '\\') ADVANCE(105); END_STATE(); default: return false; @@ -3257,6 +3292,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { START_LEXER(); + eof = lookahead == 0; switch (state) { case 0: if (lookahead == 'F') ADVANCE(1); @@ -4056,737 +4092,737 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0}, - [1] = {.lex_state = 1}, - [2] = {.lex_state = 1}, - [3] = {.lex_state = 0}, - [4] = {.lex_state = 1}, - [5] = {.lex_state = 1}, - [6] = {.lex_state = 0}, - [7] = {.lex_state = 5}, - [8] = {.lex_state = 1}, - [9] = {.lex_state = 7}, - [10] = {.lex_state = 1}, - [11] = {.lex_state = 1}, - [12] = {.lex_state = 0}, - [13] = {.lex_state = 1}, - [14] = {.lex_state = 6}, - [15] = {.lex_state = 9}, - [16] = {.lex_state = 1}, - [17] = {.lex_state = 0}, - [18] = {.lex_state = 0}, - [19] = {.lex_state = 1}, - [20] = {.lex_state = 1}, - [21] = {.lex_state = 0}, - [22] = {.lex_state = 1}, - [23] = {.lex_state = 0}, - [24] = {.lex_state = 1}, - [25] = {.lex_state = 0}, - [26] = {.lex_state = 3}, - [27] = {.lex_state = 1}, - [28] = {.lex_state = 1}, - [29] = {.lex_state = 0}, - [30] = {.lex_state = 1}, - [31] = {.lex_state = 0}, - [32] = {.lex_state = 1}, - [33] = {.lex_state = 1}, - [34] = {.lex_state = 9}, - [35] = {.lex_state = 0}, - [36] = {.lex_state = 9}, - [37] = {.lex_state = 1}, - [38] = {.lex_state = 1}, - [39] = {.lex_state = 0}, - [40] = {.lex_state = 1}, - [41] = {.lex_state = 9}, - [42] = {.lex_state = 1}, - [43] = {.lex_state = 0}, - [44] = {.lex_state = 1}, - [45] = {.lex_state = 1}, - [46] = {.lex_state = 9}, - [47] = {.lex_state = 1}, - [48] = {.lex_state = 1}, - [49] = {.lex_state = 9}, - [50] = {.lex_state = 0}, - [51] = {.lex_state = 0}, - [52] = {.lex_state = 1}, - [53] = {.lex_state = 8}, - [54] = {.lex_state = 9}, - [55] = {.lex_state = 10}, - [56] = {.lex_state = 9}, - [57] = {.lex_state = 9}, - [58] = {.lex_state = 0}, - [59] = {.lex_state = 9}, - [60] = {.lex_state = 0}, - [61] = {.lex_state = 0}, - [62] = {.lex_state = 1}, - [63] = {.lex_state = 1}, - [64] = {.lex_state = 1}, - [65] = {.lex_state = 0}, - [66] = {.lex_state = 9}, - [67] = {.lex_state = 9}, - [68] = {.lex_state = 6}, - [69] = {.lex_state = 1}, - [70] = {.lex_state = 0}, - [71] = {.lex_state = 1}, - [72] = {.lex_state = 1}, - [73] = {.lex_state = 1}, - [74] = {.lex_state = 10}, - [75] = {.lex_state = 1}, - [76] = {.lex_state = 0}, - [77] = {.lex_state = 1}, - [78] = {.lex_state = 1}, - [79] = {.lex_state = 1}, - [80] = {.lex_state = 1}, - [81] = {.lex_state = 0}, - [82] = {.lex_state = 0}, - [83] = {.lex_state = 1}, - [84] = {.lex_state = 1}, - [85] = {.lex_state = 0}, - [86] = {.lex_state = 1}, - [87] = {.lex_state = 9}, - [88] = {.lex_state = 1}, - [89] = {.lex_state = 1}, - [90] = {.lex_state = 4}, - [91] = {.lex_state = 1}, - [92] = {.lex_state = 1}, - [93] = {.lex_state = 9}, - [94] = {.lex_state = 1}, - [95] = {.lex_state = 1}, - [96] = {.lex_state = 1}, - [97] = {.lex_state = 1}, - [98] = {.lex_state = 1}, - [99] = {.lex_state = 1}, - [100] = {.lex_state = 1}, - [101] = {.lex_state = 1}, - [102] = {.lex_state = 1}, - [103] = {.lex_state = 1}, - [104] = {.lex_state = 9}, - [105] = {.lex_state = 0}, - [106] = {.lex_state = 1}, - [107] = {.lex_state = 1}, - [108] = {.lex_state = 1}, - [109] = {.lex_state = 1}, - [110] = {.lex_state = 1}, - [111] = {.lex_state = 9}, - [112] = {.lex_state = 1}, - [113] = {.lex_state = 1}, - [114] = {.lex_state = 1}, - [115] = {.lex_state = 1}, - [116] = {.lex_state = 1}, - [117] = {.lex_state = 1}, - [118] = {.lex_state = 1}, - [119] = {.lex_state = 1}, - [120] = {.lex_state = 0}, - [121] = {.lex_state = 9}, - [122] = {.lex_state = 1}, - [123] = {.lex_state = 1}, - [124] = {.lex_state = 1}, - [125] = {.lex_state = 1}, - [126] = {.lex_state = 0}, - [127] = {.lex_state = 7}, - [128] = {.lex_state = 1}, - [129] = {.lex_state = 9}, - [130] = {.lex_state = 1}, - [131] = {.lex_state = 1}, - [132] = {.lex_state = 1}, - [133] = {.lex_state = 1}, - [134] = {.lex_state = 1}, - [135] = {.lex_state = 1}, - [136] = {.lex_state = 1}, - [137] = {.lex_state = 7}, - [138] = {.lex_state = 11}, - [139] = {.lex_state = 12}, - [140] = {.lex_state = 10}, - [141] = {.lex_state = 1}, - [142] = {.lex_state = 9}, - [143] = {.lex_state = 1}, - [144] = {.lex_state = 1}, - [145] = {.lex_state = 1}, - [146] = {.lex_state = 1}, - [147] = {.lex_state = 1}, - [148] = {.lex_state = 1}, - [149] = {.lex_state = 1}, - [150] = {.lex_state = 1}, - [151] = {.lex_state = 1}, - [152] = {.lex_state = 1}, - [153] = {.lex_state = 1}, - [154] = {.lex_state = 1}, - [155] = {.lex_state = 1}, - [156] = {.lex_state = 9}, - [157] = {.lex_state = 6}, - [158] = {.lex_state = 9}, - [159] = {.lex_state = 0}, - [160] = {.lex_state = 1}, - [161] = {.lex_state = 1}, - [162] = {.lex_state = 9}, - [163] = {.lex_state = 0}, - [164] = {.lex_state = 1}, - [165] = {.lex_state = 1}, - [166] = {.lex_state = 1}, - [167] = {.lex_state = 12}, - [168] = {.lex_state = 10}, - [169] = {.lex_state = 1}, - [170] = {.lex_state = 1}, - [171] = {.lex_state = 1}, - [172] = {.lex_state = 1}, - [173] = {.lex_state = 1}, - [174] = {.lex_state = 1}, - [175] = {.lex_state = 1}, - [176] = {.lex_state = 0}, - [177] = {.lex_state = 0}, - [178] = {.lex_state = 0}, - [179] = {.lex_state = 1}, - [180] = {.lex_state = 9}, - [181] = {.lex_state = 1}, - [182] = {.lex_state = 1}, - [183] = {.lex_state = 8}, - [184] = {.lex_state = 1}, - [185] = {.lex_state = 1}, - [186] = {.lex_state = 5}, - [187] = {.lex_state = 0}, - [188] = {.lex_state = 0}, - [189] = {.lex_state = 9}, - [190] = {.lex_state = 9}, - [191] = {.lex_state = 9}, - [192] = {.lex_state = 9}, - [193] = {.lex_state = 9}, - [194] = {.lex_state = 0}, - [195] = {.lex_state = 9}, - [196] = {.lex_state = 9}, - [197] = {.lex_state = 9}, - [198] = {.lex_state = 9}, - [199] = {.lex_state = 9}, - [200] = {.lex_state = 9}, - [201] = {.lex_state = 9}, - [202] = {.lex_state = 9}, - [203] = {.lex_state = 9}, - [204] = {.lex_state = 9}, - [205] = {.lex_state = 9}, - [206] = {.lex_state = 1}, - [207] = {.lex_state = 1}, - [208] = {.lex_state = 1}, - [209] = {.lex_state = 1}, - [210] = {.lex_state = 1}, - [211] = {.lex_state = 1}, - [212] = {.lex_state = 1}, - [213] = {.lex_state = 1}, - [214] = {.lex_state = 1}, - [215] = {.lex_state = 1}, - [216] = {.lex_state = 0}, - [217] = {.lex_state = 9}, - [218] = {.lex_state = 1}, - [219] = {.lex_state = 14}, - [220] = {.lex_state = 14}, - [221] = {.lex_state = 1}, - [222] = {.lex_state = 9}, - [223] = {.lex_state = 1}, - [224] = {.lex_state = 1}, - [225] = {.lex_state = 1}, - [226] = {.lex_state = 1}, - [227] = {.lex_state = 9}, - [228] = {.lex_state = 0}, - [229] = {.lex_state = 1}, - [230] = {.lex_state = 1}, - [231] = {.lex_state = 10}, - [232] = {.lex_state = 11}, - [233] = {.lex_state = 1}, - [234] = {.lex_state = 1}, - [235] = {.lex_state = 12}, - [236] = {.lex_state = 10}, - [237] = {.lex_state = 9}, - [238] = {.lex_state = 9}, - [239] = {.lex_state = 1}, - [240] = {.lex_state = 1}, - [241] = {.lex_state = 1}, - [242] = {.lex_state = 1}, - [243] = {.lex_state = 1}, - [244] = {.lex_state = 0}, - [245] = {.lex_state = 1}, - [246] = {.lex_state = 1}, - [247] = {.lex_state = 1}, - [248] = {.lex_state = 1}, - [249] = {.lex_state = 9}, - [250] = {.lex_state = 1}, - [251] = {.lex_state = 1}, - [252] = {.lex_state = 1}, - [253] = {.lex_state = 1}, - [254] = {.lex_state = 1}, - [255] = {.lex_state = 1}, - [256] = {.lex_state = 1}, - [257] = {.lex_state = 1}, - [258] = {.lex_state = 1}, - [259] = {.lex_state = 1}, - [260] = {.lex_state = 0}, - [261] = {.lex_state = 1}, - [262] = {.lex_state = 1}, - [263] = {.lex_state = 1}, - [264] = {.lex_state = 1}, - [265] = {.lex_state = 9}, - [266] = {.lex_state = 1}, - [267] = {.lex_state = 1}, - [268] = {.lex_state = 9}, - [269] = {.lex_state = 1}, - [270] = {.lex_state = 1}, - [271] = {.lex_state = 1}, - [272] = {.lex_state = 12}, - [273] = {.lex_state = 1}, - [274] = {.lex_state = 1}, - [275] = {.lex_state = 1}, - [276] = {.lex_state = 1}, - [277] = {.lex_state = 1}, - [278] = {.lex_state = 0}, - [279] = {.lex_state = 1}, - [280] = {.lex_state = 1}, - [281] = {.lex_state = 1}, - [282] = {.lex_state = 0}, - [283] = {.lex_state = 0}, - [284] = {.lex_state = 1}, - [285] = {.lex_state = 0}, - [286] = {.lex_state = 5}, - [287] = {.lex_state = 1}, - [288] = {.lex_state = 8}, - [289] = {.lex_state = 1}, - [290] = {.lex_state = 12}, + [1] = {.lex_state = 54}, + [2] = {.lex_state = 8}, + [3] = {.lex_state = 8}, + [4] = {.lex_state = 8}, + [5] = {.lex_state = 8}, + [6] = {.lex_state = 8}, + [7] = {.lex_state = 8}, + [8] = {.lex_state = 8}, + [9] = {.lex_state = 8}, + [10] = {.lex_state = 8}, + [11] = {.lex_state = 8}, + [12] = {.lex_state = 8}, + [13] = {.lex_state = 8}, + [14] = {.lex_state = 8}, + [15] = {.lex_state = 8}, + [16] = {.lex_state = 8}, + [17] = {.lex_state = 8}, + [18] = {.lex_state = 8}, + [19] = {.lex_state = 8}, + [20] = {.lex_state = 8}, + [21] = {.lex_state = 54}, + [22] = {.lex_state = 54}, + [23] = {.lex_state = 54}, + [24] = {.lex_state = 54}, + [25] = {.lex_state = 9}, + [26] = {.lex_state = 54}, + [27] = {.lex_state = 9}, + [28] = {.lex_state = 54}, + [29] = {.lex_state = 9}, + [30] = {.lex_state = 54}, + [31] = {.lex_state = 54}, + [32] = {.lex_state = 54}, + [33] = {.lex_state = 54}, + [34] = {.lex_state = 54}, + [35] = {.lex_state = 54}, + [36] = {.lex_state = 54}, + [37] = {.lex_state = 54}, + [38] = {.lex_state = 54}, + [39] = {.lex_state = 54}, + [40] = {.lex_state = 54}, + [41] = {.lex_state = 54}, + [42] = {.lex_state = 54}, + [43] = {.lex_state = 54}, + [44] = {.lex_state = 54}, + [45] = {.lex_state = 54}, + [46] = {.lex_state = 54}, + [47] = {.lex_state = 54}, + [48] = {.lex_state = 54}, + [49] = {.lex_state = 54}, + [50] = {.lex_state = 7}, + [51] = {.lex_state = 54}, + [52] = {.lex_state = 54}, + [53] = {.lex_state = 54}, + [54] = {.lex_state = 54}, + [55] = {.lex_state = 54}, + [56] = {.lex_state = 54}, + [57] = {.lex_state = 54}, + [58] = {.lex_state = 54}, + [59] = {.lex_state = 54}, + [60] = {.lex_state = 54}, + [61] = {.lex_state = 54}, + [62] = {.lex_state = 54}, + [63] = {.lex_state = 54}, + [64] = {.lex_state = 54}, + [65] = {.lex_state = 54}, + [66] = {.lex_state = 54}, + [67] = {.lex_state = 54}, + [68] = {.lex_state = 7}, + [69] = {.lex_state = 54}, + [70] = {.lex_state = 54}, + [71] = {.lex_state = 54}, + [72] = {.lex_state = 54}, + [73] = {.lex_state = 54}, + [74] = {.lex_state = 54}, + [75] = {.lex_state = 54}, + [76] = {.lex_state = 54}, + [77] = {.lex_state = 54}, + [78] = {.lex_state = 54}, + [79] = {.lex_state = 54}, + [80] = {.lex_state = 54}, + [81] = {.lex_state = 54}, + [82] = {.lex_state = 54}, + [83] = {.lex_state = 54}, + [84] = {.lex_state = 54}, + [85] = {.lex_state = 54}, + [86] = {.lex_state = 54}, + [87] = {.lex_state = 54}, + [88] = {.lex_state = 54}, + [89] = {.lex_state = 54}, + [90] = {.lex_state = 54}, + [91] = {.lex_state = 54}, + [92] = {.lex_state = 54}, + [93] = {.lex_state = 54}, + [94] = {.lex_state = 54}, + [95] = {.lex_state = 54}, + [96] = {.lex_state = 54}, + [97] = {.lex_state = 54}, + [98] = {.lex_state = 54}, + [99] = {.lex_state = 54}, + [100] = {.lex_state = 54}, + [101] = {.lex_state = 54}, + [102] = {.lex_state = 54}, + [103] = {.lex_state = 54}, + [104] = {.lex_state = 54}, + [105] = {.lex_state = 54}, + [106] = {.lex_state = 54}, + [107] = {.lex_state = 54}, + [108] = {.lex_state = 54}, + [109] = {.lex_state = 54}, + [110] = {.lex_state = 54}, + [111] = {.lex_state = 54}, + [112] = {.lex_state = 54}, + [113] = {.lex_state = 54}, + [114] = {.lex_state = 54}, + [115] = {.lex_state = 54}, + [116] = {.lex_state = 54}, + [117] = {.lex_state = 54}, + [118] = {.lex_state = 54}, + [119] = {.lex_state = 54}, + [120] = {.lex_state = 54}, + [121] = {.lex_state = 54}, + [122] = {.lex_state = 54}, + [123] = {.lex_state = 54}, + [124] = {.lex_state = 54}, + [125] = {.lex_state = 54}, + [126] = {.lex_state = 54}, + [127] = {.lex_state = 54}, + [128] = {.lex_state = 54}, + [129] = {.lex_state = 54}, + [130] = {.lex_state = 54}, + [131] = {.lex_state = 54}, + [132] = {.lex_state = 54}, + [133] = {.lex_state = 54}, + [134] = {.lex_state = 54}, + [135] = {.lex_state = 54}, + [136] = {.lex_state = 54}, + [137] = {.lex_state = 54}, + [138] = {.lex_state = 54}, + [139] = {.lex_state = 54}, + [140] = {.lex_state = 54}, + [141] = {.lex_state = 54}, + [142] = {.lex_state = 54}, + [143] = {.lex_state = 54}, + [144] = {.lex_state = 54}, + [145] = {.lex_state = 54}, + [146] = {.lex_state = 54}, + [147] = {.lex_state = 54}, + [148] = {.lex_state = 54}, + [149] = {.lex_state = 54}, + [150] = {.lex_state = 54}, + [151] = {.lex_state = 54}, + [152] = {.lex_state = 54}, + [153] = {.lex_state = 54}, + [154] = {.lex_state = 54}, + [155] = {.lex_state = 54}, + [156] = {.lex_state = 54}, + [157] = {.lex_state = 54}, + [158] = {.lex_state = 54}, + [159] = {.lex_state = 54}, + [160] = {.lex_state = 54}, + [161] = {.lex_state = 54}, + [162] = {.lex_state = 54}, + [163] = {.lex_state = 54}, + [164] = {.lex_state = 54}, + [165] = {.lex_state = 54}, + [166] = {.lex_state = 54}, + [167] = {.lex_state = 54}, + [168] = {.lex_state = 54}, + [169] = {.lex_state = 54}, + [170] = {.lex_state = 54}, + [171] = {.lex_state = 54}, + [172] = {.lex_state = 54}, + [173] = {.lex_state = 54}, + [174] = {.lex_state = 54}, + [175] = {.lex_state = 54}, + [176] = {.lex_state = 54}, + [177] = {.lex_state = 54}, + [178] = {.lex_state = 54}, + [179] = {.lex_state = 54}, + [180] = {.lex_state = 54}, + [181] = {.lex_state = 54}, + [182] = {.lex_state = 54}, + [183] = {.lex_state = 54}, + [184] = {.lex_state = 54}, + [185] = {.lex_state = 54}, + [186] = {.lex_state = 54}, + [187] = {.lex_state = 54}, + [188] = {.lex_state = 54}, + [189] = {.lex_state = 54}, + [190] = {.lex_state = 54}, + [191] = {.lex_state = 54}, + [192] = {.lex_state = 54}, + [193] = {.lex_state = 54}, + [194] = {.lex_state = 54}, + [195] = {.lex_state = 54}, + [196] = {.lex_state = 54}, + [197] = {.lex_state = 54}, + [198] = {.lex_state = 54}, + [199] = {.lex_state = 54}, + [200] = {.lex_state = 54}, + [201] = {.lex_state = 54}, + [202] = {.lex_state = 8}, + [203] = {.lex_state = 8}, + [204] = {.lex_state = 8}, + [205] = {.lex_state = 8}, + [206] = {.lex_state = 8}, + [207] = {.lex_state = 8}, + [208] = {.lex_state = 8}, + [209] = {.lex_state = 8}, + [210] = {.lex_state = 8}, + [211] = {.lex_state = 8}, + [212] = {.lex_state = 8}, + [213] = {.lex_state = 8}, + [214] = {.lex_state = 8}, + [215] = {.lex_state = 54}, + [216] = {.lex_state = 54}, + [217] = {.lex_state = 8}, + [218] = {.lex_state = 54}, + [219] = {.lex_state = 8}, + [220] = {.lex_state = 8}, + [221] = {.lex_state = 8}, + [222] = {.lex_state = 54}, + [223] = {.lex_state = 8}, + [224] = {.lex_state = 8}, + [225] = {.lex_state = 8}, + [226] = {.lex_state = 8}, + [227] = {.lex_state = 8}, + [228] = {.lex_state = 8}, + [229] = {.lex_state = 8}, + [230] = {.lex_state = 8}, + [231] = {.lex_state = 54}, + [232] = {.lex_state = 8}, + [233] = {.lex_state = 8}, + [234] = {.lex_state = 54}, + [235] = {.lex_state = 54}, + [236] = {.lex_state = 8}, + [237] = {.lex_state = 54}, + [238] = {.lex_state = 8}, + [239] = {.lex_state = 8}, + [240] = {.lex_state = 54}, + [241] = {.lex_state = 8}, + [242] = {.lex_state = 8}, + [243] = {.lex_state = 8}, + [244] = {.lex_state = 8}, + [245] = {.lex_state = 8}, + [246] = {.lex_state = 8}, + [247] = {.lex_state = 8}, + [248] = {.lex_state = 8}, + [249] = {.lex_state = 8}, + [250] = {.lex_state = 8}, + [251] = {.lex_state = 8}, + [252] = {.lex_state = 8}, + [253] = {.lex_state = 8}, + [254] = {.lex_state = 8}, + [255] = {.lex_state = 8}, + [256] = {.lex_state = 8}, + [257] = {.lex_state = 8}, + [258] = {.lex_state = 8}, + [259] = {.lex_state = 8}, + [260] = {.lex_state = 8}, + [261] = {.lex_state = 8}, + [262] = {.lex_state = 8}, + [263] = {.lex_state = 8}, + [264] = {.lex_state = 8}, + [265] = {.lex_state = 8}, + [266] = {.lex_state = 8}, + [267] = {.lex_state = 8}, + [268] = {.lex_state = 8}, + [269] = {.lex_state = 54}, + [270] = {.lex_state = 54}, + [271] = {.lex_state = 9}, + [272] = {.lex_state = 9}, + [273] = {.lex_state = 54}, + [274] = {.lex_state = 9}, + [275] = {.lex_state = 9}, + [276] = {.lex_state = 9}, + [277] = {.lex_state = 54}, + [278] = {.lex_state = 54}, + [279] = {.lex_state = 54}, + [280] = {.lex_state = 54}, + [281] = {.lex_state = 9}, + [282] = {.lex_state = 54}, + [283] = {.lex_state = 54}, + [284] = {.lex_state = 54}, + [285] = {.lex_state = 54}, + [286] = {.lex_state = 54}, + [287] = {.lex_state = 54}, + [288] = {.lex_state = 54}, + [289] = {.lex_state = 9}, + [290] = {.lex_state = 9}, [291] = {.lex_state = 9}, - [292] = {.lex_state = 1}, + [292] = {.lex_state = 9}, [293] = {.lex_state = 9}, - [294] = {.lex_state = 0}, - [295] = {.lex_state = 1}, - [296] = {.lex_state = 1}, - [297] = {.lex_state = 1}, + [294] = {.lex_state = 54}, + [295] = {.lex_state = 9}, + [296] = {.lex_state = 54}, + [297] = {.lex_state = 9}, [298] = {.lex_state = 9}, - [299] = {.lex_state = 0}, - [300] = {.lex_state = 1}, - [301] = {.lex_state = 0}, - [302] = {.lex_state = 1}, - [303] = {.lex_state = 1}, - [304] = {.lex_state = 9}, - [305] = {.lex_state = 1}, - [306] = {.lex_state = 1}, - [307] = {.lex_state = 1}, - [308] = {.lex_state = 0}, - [309] = {.lex_state = 15}, - [310] = {.lex_state = 9}, - [311] = {.lex_state = 7}, - [312] = {.lex_state = 14}, - [313] = {.lex_state = 12}, + [299] = {.lex_state = 9}, + [300] = {.lex_state = 9}, + [301] = {.lex_state = 9}, + [302] = {.lex_state = 54}, + [303] = {.lex_state = 9}, + [304] = {.lex_state = 54}, + [305] = {.lex_state = 9}, + [306] = {.lex_state = 9}, + [307] = {.lex_state = 54}, + [308] = {.lex_state = 54}, + [309] = {.lex_state = 9}, + [310] = {.lex_state = 54}, + [311] = {.lex_state = 54}, + [312] = {.lex_state = 9}, + [313] = {.lex_state = 9}, [314] = {.lex_state = 9}, - [315] = {.lex_state = 14}, - [316] = {.lex_state = 12}, - [317] = {.lex_state = 1}, - [318] = {.lex_state = 1}, - [319] = {.lex_state = 1}, - [320] = {.lex_state = 9}, - [321] = {.lex_state = 9}, - [322] = {.lex_state = 9}, - [323] = {.lex_state = 1}, - [324] = {.lex_state = 1}, - [325] = {.lex_state = 0}, - [326] = {.lex_state = 0}, - [327] = {.lex_state = 1}, - [328] = {.lex_state = 12}, - [329] = {.lex_state = 10}, - [330] = {.lex_state = 1}, - [331] = {.lex_state = 1}, - [332] = {.lex_state = 0}, + [315] = {.lex_state = 54}, + [316] = {.lex_state = 54}, + [317] = {.lex_state = 9}, + [318] = {.lex_state = 9}, + [319] = {.lex_state = 9}, + [320] = {.lex_state = 54}, + [321] = {.lex_state = 54}, + [322] = {.lex_state = 54}, + [323] = {.lex_state = 54}, + [324] = {.lex_state = 9}, + [325] = {.lex_state = 9}, + [326] = {.lex_state = 54}, + [327] = {.lex_state = 9}, + [328] = {.lex_state = 54}, + [329] = {.lex_state = 9}, + [330] = {.lex_state = 9}, + [331] = {.lex_state = 9}, + [332] = {.lex_state = 9}, [333] = {.lex_state = 9}, - [334] = {.lex_state = 0}, - [335] = {.lex_state = 9}, + [334] = {.lex_state = 9}, + [335] = {.lex_state = 54}, [336] = {.lex_state = 9}, - [337] = {.lex_state = 0}, - [338] = {.lex_state = 1}, - [339] = {.lex_state = 1}, - [340] = {.lex_state = 1}, - [341] = {.lex_state = 1}, - [342] = {.lex_state = 0}, - [343] = {.lex_state = 1}, - [344] = {.lex_state = 1}, - [345] = {.lex_state = 1}, - [346] = {.lex_state = 1}, - [347] = {.lex_state = 1}, - [348] = {.lex_state = 1}, - [349] = {.lex_state = 1}, - [350] = {.lex_state = 1}, + [337] = {.lex_state = 54}, + [338] = {.lex_state = 54}, + [339] = {.lex_state = 9}, + [340] = {.lex_state = 9}, + [341] = {.lex_state = 9}, + [342] = {.lex_state = 9}, + [343] = {.lex_state = 9}, + [344] = {.lex_state = 54}, + [345] = {.lex_state = 9}, + [346] = {.lex_state = 54}, + [347] = {.lex_state = 9}, + [348] = {.lex_state = 54}, + [349] = {.lex_state = 9}, + [350] = {.lex_state = 54}, [351] = {.lex_state = 9}, - [352] = {.lex_state = 1}, - [353] = {.lex_state = 1}, - [354] = {.lex_state = 9}, - [355] = {.lex_state = 1}, - [356] = {.lex_state = 1}, - [357] = {.lex_state = 1}, - [358] = {.lex_state = 1}, - [359] = {.lex_state = 1}, - [360] = {.lex_state = 1}, - [361] = {.lex_state = 9}, - [362] = {.lex_state = 1}, - [363] = {.lex_state = 1}, - [364] = {.lex_state = 0}, - [365] = {.lex_state = 1}, - [366] = {.lex_state = 0}, - [367] = {.lex_state = 1}, - [368] = {.lex_state = 9}, - [369] = {.lex_state = 0}, - [370] = {.lex_state = 1}, - [371] = {.lex_state = 1}, - [372] = {.lex_state = 9}, - [373] = {.lex_state = 1}, - [374] = {.lex_state = 9}, - [375] = {.lex_state = 0}, - [376] = {.lex_state = 1}, - [377] = {.lex_state = 1}, - [378] = {.lex_state = 1}, - [379] = {.lex_state = 1}, - [380] = {.lex_state = 9}, - [381] = {.lex_state = 1}, - [382] = {.lex_state = 1}, - [383] = {.lex_state = 1}, - [384] = {.lex_state = 9}, - [385] = {.lex_state = 1}, - [386] = {.lex_state = 0}, - [387] = {.lex_state = 0}, - [388] = {.lex_state = 0}, - [389] = {.lex_state = 1}, - [390] = {.lex_state = 5}, - [391] = {.lex_state = 0}, - [392] = {.lex_state = 1}, - [393] = {.lex_state = 9}, - [394] = {.lex_state = 9}, - [395] = {.lex_state = 0}, - [396] = {.lex_state = 9}, - [397] = {.lex_state = 1}, - [398] = {.lex_state = 1}, - [399] = {.lex_state = 1}, - [400] = {.lex_state = 9}, - [401] = {.lex_state = 1}, - [402] = {.lex_state = 15}, - [403] = {.lex_state = 14}, - [404] = {.lex_state = 9}, - [405] = {.lex_state = 12}, - [406] = {.lex_state = 9}, - [407] = {.lex_state = 9}, - [408] = {.lex_state = 12}, - [409] = {.lex_state = 9}, - [410] = {.lex_state = 1}, - [411] = {.lex_state = 1}, - [412] = {.lex_state = 1}, - [413] = {.lex_state = 1}, - [414] = {.lex_state = 1}, - [415] = {.lex_state = 9}, - [416] = {.lex_state = 1}, - [417] = {.lex_state = 9}, - [418] = {.lex_state = 0}, - [419] = {.lex_state = 0}, - [420] = {.lex_state = 12}, - [421] = {.lex_state = 9}, - [422] = {.lex_state = 9}, - [423] = {.lex_state = 9}, - [424] = {.lex_state = 10}, - [425] = {.lex_state = 0}, - [426] = {.lex_state = 1}, - [427] = {.lex_state = 9}, - [428] = {.lex_state = 0}, - [429] = {.lex_state = 1}, - [430] = {.lex_state = 0}, - [431] = {.lex_state = 1}, - [432] = {.lex_state = 1}, - [433] = {.lex_state = 1}, - [434] = {.lex_state = 1}, - [435] = {.lex_state = 1}, - [436] = {.lex_state = 1}, - [437] = {.lex_state = 9}, - [438] = {.lex_state = 1}, - [439] = {.lex_state = 1}, - [440] = {.lex_state = 1}, - [441] = {.lex_state = 9}, - [442] = {.lex_state = 1}, - [443] = {.lex_state = 1}, - [444] = {.lex_state = 1}, - [445] = {.lex_state = 1}, - [446] = {.lex_state = 9}, - [447] = {.lex_state = 0}, - [448] = {.lex_state = 1}, - [449] = {.lex_state = 9}, - [450] = {.lex_state = 0}, - [451] = {.lex_state = 1}, - [452] = {.lex_state = 1}, - [453] = {.lex_state = 1}, - [454] = {.lex_state = 1}, - [455] = {.lex_state = 9}, - [456] = {.lex_state = 0}, - [457] = {.lex_state = 1}, - [458] = {.lex_state = 1}, - [459] = {.lex_state = 1}, - [460] = {.lex_state = 0}, - [461] = {.lex_state = 0}, - [462] = {.lex_state = 5}, - [463] = {.lex_state = 0}, - [464] = {.lex_state = 1}, - [465] = {.lex_state = 14}, - [466] = {.lex_state = 12}, - [467] = {.lex_state = 9}, - [468] = {.lex_state = 9}, - [469] = {.lex_state = 1}, - [470] = {.lex_state = 1}, - [471] = {.lex_state = 1}, - [472] = {.lex_state = 9}, - [473] = {.lex_state = 9}, - [474] = {.lex_state = 9}, - [475] = {.lex_state = 9}, - [476] = {.lex_state = 9}, - [477] = {.lex_state = 0}, - [478] = {.lex_state = 10}, - [479] = {.lex_state = 0}, - [480] = {.lex_state = 9}, - [481] = {.lex_state = 0}, - [482] = {.lex_state = 1}, - [483] = {.lex_state = 1}, - [484] = {.lex_state = 1}, - [485] = {.lex_state = 1}, - [486] = {.lex_state = 1}, - [487] = {.lex_state = 1}, - [488] = {.lex_state = 1}, - [489] = {.lex_state = 1}, - [490] = {.lex_state = 9}, - [491] = {.lex_state = 0}, - [492] = {.lex_state = 1}, - [493] = {.lex_state = 1}, - [494] = {.lex_state = 1}, - [495] = {.lex_state = 1}, - [496] = {.lex_state = 1}, - [497] = {.lex_state = 12}, - [498] = {.lex_state = 1}, - [499] = {.lex_state = 9}, - [500] = {.lex_state = 10}, - [501] = {.lex_state = 1}, - [502] = {.lex_state = 1}, - [503] = {.lex_state = 1}, - [504] = {.lex_state = 1}, - [505] = {.lex_state = 1}, - [506] = {.lex_state = 1}, - [507] = {.lex_state = 9}, - [508] = {.lex_state = 1}, - [509] = {.lex_state = 1}, - [510] = {.lex_state = 1}, - [511] = {.lex_state = 1}, - [512] = {.lex_state = 9}, - [513] = {.lex_state = 1}, - [514] = {.lex_state = 1}, - [515] = {.lex_state = 1}, - [516] = {.lex_state = 1}, - [517] = {.lex_state = 1}, - [518] = {.lex_state = 1}, - [519] = {.lex_state = 1}, - [520] = {.lex_state = 1}, - [521] = {.lex_state = 1}, - [522] = {.lex_state = 1}, - [523] = {.lex_state = 1}, - [524] = {.lex_state = 1}, - [525] = {.lex_state = 1}, - [526] = {.lex_state = 1}, - [527] = {.lex_state = 1}, - [528] = {.lex_state = 1}, - [529] = {.lex_state = 1}, - [530] = {.lex_state = 1}, - [531] = {.lex_state = 1}, - [532] = {.lex_state = 1}, - [533] = {.lex_state = 1}, - [534] = {.lex_state = 1}, - [535] = {.lex_state = 1}, - [536] = {.lex_state = 1}, - [537] = {.lex_state = 1}, - [538] = {.lex_state = 1}, - [539] = {.lex_state = 1}, - [540] = {.lex_state = 1}, - [541] = {.lex_state = 9}, - [542] = {.lex_state = 1}, - [543] = {.lex_state = 1}, - [544] = {.lex_state = 1}, - [545] = {.lex_state = 1}, - [546] = {.lex_state = 1}, - [547] = {.lex_state = 1}, - [548] = {.lex_state = 1}, - [549] = {.lex_state = 1}, - [550] = {.lex_state = 9}, - [551] = {.lex_state = 9}, - [552] = {.lex_state = 9}, - [553] = {.lex_state = 9}, - [554] = {.lex_state = 9}, - [555] = {.lex_state = 9}, - [556] = {.lex_state = 9}, - [557] = {.lex_state = 9}, - [558] = {.lex_state = 9}, - [559] = {.lex_state = 1}, - [560] = {.lex_state = 1}, - [561] = {.lex_state = 14}, - [562] = {.lex_state = 14}, - [563] = {.lex_state = 1}, - [564] = {.lex_state = 1}, - [565] = {.lex_state = 1}, - [566] = {.lex_state = 1}, - [567] = {.lex_state = 1}, - [568] = {.lex_state = 1}, - [569] = {.lex_state = 1}, - [570] = {.lex_state = 1}, - [571] = {.lex_state = 1}, - [572] = {.lex_state = 1}, - [573] = {.lex_state = 1}, - [574] = {.lex_state = 12}, - [575] = {.lex_state = 1}, - [576] = {.lex_state = 1}, - [577] = {.lex_state = 14}, - [578] = {.lex_state = 14}, - [579] = {.lex_state = 14}, - [580] = {.lex_state = 14}, - [581] = {.lex_state = 1}, - [582] = {.lex_state = 1}, - [583] = {.lex_state = 1}, - [584] = {.lex_state = 1}, - [585] = {.lex_state = 1}, - [586] = {.lex_state = 1}, - [587] = {.lex_state = 1}, - [588] = {.lex_state = 1}, - [589] = {.lex_state = 1}, - [590] = {.lex_state = 1}, - [591] = {.lex_state = 9}, - [592] = {.lex_state = 14}, - [593] = {.lex_state = 14}, - [594] = {.lex_state = 14}, - [595] = {.lex_state = 14}, - [596] = {.lex_state = 14}, - [597] = {.lex_state = 1}, - [598] = {.lex_state = 1}, - [599] = {.lex_state = 1}, - [600] = {.lex_state = 1}, - [601] = {.lex_state = 1}, - [602] = {.lex_state = 1}, - [603] = {.lex_state = 1}, - [604] = {.lex_state = 1}, - [605] = {.lex_state = 14}, - [606] = {.lex_state = 14}, - [607] = {.lex_state = 14}, - [608] = {.lex_state = 1}, - [609] = {.lex_state = 1}, - [610] = {.lex_state = 1}, - [611] = {.lex_state = 1}, - [612] = {.lex_state = 1}, - [613] = {.lex_state = 1}, - [614] = {.lex_state = 1}, - [615] = {.lex_state = 1}, - [616] = {.lex_state = 1}, - [617] = {.lex_state = 1}, - [618] = {.lex_state = 1}, - [619] = {.lex_state = 1}, - [620] = {.lex_state = 1}, - [621] = {.lex_state = 1}, - [622] = {.lex_state = 1}, - [623] = {.lex_state = 10}, - [624] = {.lex_state = 10}, - [625] = {.lex_state = 9}, - [626] = {.lex_state = 1}, - [627] = {.lex_state = 1}, - [628] = {.lex_state = 10}, - [629] = {.lex_state = 10}, - [630] = {.lex_state = 1}, - [631] = {.lex_state = 10}, - [632] = {.lex_state = 1}, - [633] = {.lex_state = 10}, - [634] = {.lex_state = 10}, - [635] = {.lex_state = 10}, - [636] = {.lex_state = 10}, - [637] = {.lex_state = 10}, - [638] = {.lex_state = 10}, - [639] = {.lex_state = 9}, - [640] = {.lex_state = 10}, - [641] = {.lex_state = 1}, - [642] = {.lex_state = 1}, - [643] = {.lex_state = 10}, - [644] = {.lex_state = 10}, - [645] = {.lex_state = 10}, - [646] = {.lex_state = 10}, - [647] = {.lex_state = 10}, - [648] = {.lex_state = 10}, - [649] = {.lex_state = 10}, - [650] = {.lex_state = 9}, - [651] = {.lex_state = 10}, - [652] = {.lex_state = 10}, - [653] = {.lex_state = 15}, - [654] = {.lex_state = 15}, - [655] = {.lex_state = 10}, - [656] = {.lex_state = 10}, - [657] = {.lex_state = 10}, - [658] = {.lex_state = 10}, - [659] = {.lex_state = 10}, - [660] = {.lex_state = 10}, - [661] = {.lex_state = 10}, - [662] = {.lex_state = 1}, - [663] = {.lex_state = 10}, - [664] = {.lex_state = 9}, - [665] = {.lex_state = 9}, - [666] = {.lex_state = 10}, - [667] = {.lex_state = 15}, - [668] = {.lex_state = 15}, - [669] = {.lex_state = 15}, - [670] = {.lex_state = 15}, - [671] = {.lex_state = 10}, - [672] = {.lex_state = 10}, - [673] = {.lex_state = 10}, - [674] = {.lex_state = 1}, - [675] = {.lex_state = 1}, - [676] = {.lex_state = 10}, - [677] = {.lex_state = 10}, - [678] = {.lex_state = 10}, - [679] = {.lex_state = 10}, - [680] = {.lex_state = 9}, - [681] = {.lex_state = 15}, - [682] = {.lex_state = 15}, - [683] = {.lex_state = 15}, - [684] = {.lex_state = 15}, - [685] = {.lex_state = 15}, - [686] = {.lex_state = 10}, - [687] = {.lex_state = 10}, - [688] = {.lex_state = 1}, - [689] = {.lex_state = 1}, - [690] = {.lex_state = 1}, - [691] = {.lex_state = 10}, - [692] = {.lex_state = 1}, - [693] = {.lex_state = 1}, - [694] = {.lex_state = 15}, - [695] = {.lex_state = 15}, - [696] = {.lex_state = 15}, - [697] = {.lex_state = 10}, - [698] = {.lex_state = 10}, - [699] = {.lex_state = 1}, - [700] = {.lex_state = 10}, - [701] = {.lex_state = 1}, - [702] = {.lex_state = 1}, - [703] = {.lex_state = 10}, - [704] = {.lex_state = 10}, - [705] = {.lex_state = 1}, - [706] = {.lex_state = 10}, - [707] = {.lex_state = 10}, - [708] = {.lex_state = 10}, - [709] = {.lex_state = 1}, - [710] = {.lex_state = 10}, - [711] = {.lex_state = 10}, + [352] = {.lex_state = 54}, + [353] = {.lex_state = 54}, + [354] = {.lex_state = 54}, + [355] = {.lex_state = 54}, + [356] = {.lex_state = 54}, + [357] = {.lex_state = 54}, + [358] = {.lex_state = 54}, + [359] = {.lex_state = 54}, + [360] = {.lex_state = 54}, + [361] = {.lex_state = 54}, + [362] = {.lex_state = 9}, + [363] = {.lex_state = 54}, + [364] = {.lex_state = 9}, + [365] = {.lex_state = 54}, + [366] = {.lex_state = 9}, + [367] = {.lex_state = 9}, + [368] = {.lex_state = 54}, + [369] = {.lex_state = 54}, + [370] = {.lex_state = 54}, + [371] = {.lex_state = 54}, + [372] = {.lex_state = 54}, + [373] = {.lex_state = 54}, + [374] = {.lex_state = 54}, + [375] = {.lex_state = 54}, + [376] = {.lex_state = 54}, + [377] = {.lex_state = 54}, + [378] = {.lex_state = 9}, + [379] = {.lex_state = 54}, + [380] = {.lex_state = 54}, + [381] = {.lex_state = 9}, + [382] = {.lex_state = 9}, + [383] = {.lex_state = 9}, + [384] = {.lex_state = 54}, + [385] = {.lex_state = 9}, + [386] = {.lex_state = 9}, + [387] = {.lex_state = 9}, + [388] = {.lex_state = 54}, + [389] = {.lex_state = 54}, + [390] = {.lex_state = 54}, + [391] = {.lex_state = 54}, + [392] = {.lex_state = 54}, + [393] = {.lex_state = 54}, + [394] = {.lex_state = 54}, + [395] = {.lex_state = 54}, + [396] = {.lex_state = 54}, + [397] = {.lex_state = 54}, + [398] = {.lex_state = 54}, + [399] = {.lex_state = 54}, + [400] = {.lex_state = 54}, + [401] = {.lex_state = 54}, + [402] = {.lex_state = 54}, + [403] = {.lex_state = 54}, + [404] = {.lex_state = 54}, + [405] = {.lex_state = 9}, + [406] = {.lex_state = 54}, + [407] = {.lex_state = 11}, + [408] = {.lex_state = 11}, + [409] = {.lex_state = 11}, + [410] = {.lex_state = 11}, + [411] = {.lex_state = 11}, + [412] = {.lex_state = 11}, + [413] = {.lex_state = 11}, + [414] = {.lex_state = 11}, + [415] = {.lex_state = 11}, + [416] = {.lex_state = 11}, + [417] = {.lex_state = 11}, + [418] = {.lex_state = 11}, + [419] = {.lex_state = 11}, + [420] = {.lex_state = 11}, + [421] = {.lex_state = 11}, + [422] = {.lex_state = 11}, + [423] = {.lex_state = 11}, + [424] = {.lex_state = 11}, + [425] = {.lex_state = 11}, + [426] = {.lex_state = 11}, + [427] = {.lex_state = 13}, + [428] = {.lex_state = 11}, + [429] = {.lex_state = 10}, + [430] = {.lex_state = 54}, + [431] = {.lex_state = 10}, + [432] = {.lex_state = 10}, + [433] = {.lex_state = 13}, + [434] = {.lex_state = 14}, + [435] = {.lex_state = 14}, + [436] = {.lex_state = 54}, + [437] = {.lex_state = 11}, + [438] = {.lex_state = 14}, + [439] = {.lex_state = 54}, + [440] = {.lex_state = 13}, + [441] = {.lex_state = 13}, + [442] = {.lex_state = 10}, + [443] = {.lex_state = 10}, + [444] = {.lex_state = 54}, + [445] = {.lex_state = 54}, + [446] = {.lex_state = 54}, + [447] = {.lex_state = 11}, + [448] = {.lex_state = 54}, + [449] = {.lex_state = 54}, + [450] = {.lex_state = 11}, + [451] = {.lex_state = 11}, + [452] = {.lex_state = 11}, + [453] = {.lex_state = 11}, + [454] = {.lex_state = 11}, + [455] = {.lex_state = 11}, + [456] = {.lex_state = 11}, + [457] = {.lex_state = 11}, + [458] = {.lex_state = 11}, + [459] = {.lex_state = 11}, + [460] = {.lex_state = 54}, + [461] = {.lex_state = 54}, + [462] = {.lex_state = 11}, + [463] = {.lex_state = 11}, + [464] = {.lex_state = 11}, + [465] = {.lex_state = 54}, + [466] = {.lex_state = 54}, + [467] = {.lex_state = 11}, + [468] = {.lex_state = 54}, + [469] = {.lex_state = 11}, + [470] = {.lex_state = 13}, + [471] = {.lex_state = 11}, + [472] = {.lex_state = 54}, + [473] = {.lex_state = 11}, + [474] = {.lex_state = 11}, + [475] = {.lex_state = 11}, + [476] = {.lex_state = 11}, + [477] = {.lex_state = 11}, + [478] = {.lex_state = 11}, + [479] = {.lex_state = 11}, + [480] = {.lex_state = 11}, + [481] = {.lex_state = 11}, + [482] = {.lex_state = 11}, + [483] = {.lex_state = 11}, + [484] = {.lex_state = 11}, + [485] = {.lex_state = 11}, + [486] = {.lex_state = 11}, + [487] = {.lex_state = 11}, + [488] = {.lex_state = 11}, + [489] = {.lex_state = 11}, + [490] = {.lex_state = 11}, + [491] = {.lex_state = 11}, + [492] = {.lex_state = 11}, + [493] = {.lex_state = 11}, + [494] = {.lex_state = 54}, + [495] = {.lex_state = 54}, + [496] = {.lex_state = 54}, + [497] = {.lex_state = 54}, + [498] = {.lex_state = 54}, + [499] = {.lex_state = 54}, + [500] = {.lex_state = 54}, + [501] = {.lex_state = 54}, + [502] = {.lex_state = 54}, + [503] = {.lex_state = 54}, + [504] = {.lex_state = 54}, + [505] = {.lex_state = 54}, + [506] = {.lex_state = 54}, + [507] = {.lex_state = 54}, + [508] = {.lex_state = 54}, + [509] = {.lex_state = 54}, + [510] = {.lex_state = 54}, + [511] = {.lex_state = 54}, + [512] = {.lex_state = 54}, + [513] = {.lex_state = 54}, + [514] = {.lex_state = 54}, + [515] = {.lex_state = 54}, + [516] = {.lex_state = 54}, + [517] = {.lex_state = 54}, + [518] = {.lex_state = 54}, + [519] = {.lex_state = 54}, + [520] = {.lex_state = 54}, + [521] = {.lex_state = 54}, + [522] = {.lex_state = 54}, + [523] = {.lex_state = 54}, + [524] = {.lex_state = 54}, + [525] = {.lex_state = 54}, + [526] = {.lex_state = 54}, + [527] = {.lex_state = 54}, + [528] = {.lex_state = 54}, + [529] = {.lex_state = 54}, + [530] = {.lex_state = 54}, + [531] = {.lex_state = 54}, + [532] = {.lex_state = 54}, + [533] = {.lex_state = 54}, + [534] = {.lex_state = 54}, + [535] = {.lex_state = 54}, + [536] = {.lex_state = 54}, + [537] = {.lex_state = 54}, + [538] = {.lex_state = 54}, + [539] = {.lex_state = 54}, + [540] = {.lex_state = 54}, + [541] = {.lex_state = 54}, + [542] = {.lex_state = 54}, + [543] = {.lex_state = 54}, + [544] = {.lex_state = 54}, + [545] = {.lex_state = 54}, + [546] = {.lex_state = 54}, + [547] = {.lex_state = 54}, + [548] = {.lex_state = 54}, + [549] = {.lex_state = 54}, + [550] = {.lex_state = 54}, + [551] = {.lex_state = 54}, + [552] = {.lex_state = 54}, + [553] = {.lex_state = 54}, + [554] = {.lex_state = 54}, + [555] = {.lex_state = 54}, + [556] = {.lex_state = 54}, + [557] = {.lex_state = 54}, + [558] = {.lex_state = 54}, + [559] = {.lex_state = 54}, + [560] = {.lex_state = 54}, + [561] = {.lex_state = 54}, + [562] = {.lex_state = 54}, + [563] = {.lex_state = 54}, + [564] = {.lex_state = 54}, + [565] = {.lex_state = 54}, + [566] = {.lex_state = 54}, + [567] = {.lex_state = 54}, + [568] = {.lex_state = 54}, + [569] = {.lex_state = 54}, + [570] = {.lex_state = 54}, + [571] = {.lex_state = 54}, + [572] = {.lex_state = 54}, + [573] = {.lex_state = 54}, + [574] = {.lex_state = 54}, + [575] = {.lex_state = 54}, + [576] = {.lex_state = 54}, + [577] = {.lex_state = 54}, + [578] = {.lex_state = 54}, + [579] = {.lex_state = 54}, + [580] = {.lex_state = 54}, + [581] = {.lex_state = 54}, + [582] = {.lex_state = 54}, + [583] = {.lex_state = 54}, + [584] = {.lex_state = 54}, + [585] = {.lex_state = 54}, + [586] = {.lex_state = 54}, + [587] = {.lex_state = 54}, + [588] = {.lex_state = 54}, + [589] = {.lex_state = 54}, + [590] = {.lex_state = 54}, + [591] = {.lex_state = 54}, + [592] = {.lex_state = 54}, + [593] = {.lex_state = 54}, + [594] = {.lex_state = 54}, + [595] = {.lex_state = 54}, + [596] = {.lex_state = 54}, + [597] = {.lex_state = 54}, + [598] = {.lex_state = 54}, + [599] = {.lex_state = 54}, + [600] = {.lex_state = 54}, + [601] = {.lex_state = 54}, + [602] = {.lex_state = 54}, + [603] = {.lex_state = 54}, + [604] = {.lex_state = 54}, + [605] = {.lex_state = 54}, + [606] = {.lex_state = 54}, + [607] = {.lex_state = 54}, + [608] = {.lex_state = 54}, + [609] = {.lex_state = 54}, + [610] = {.lex_state = 54}, + [611] = {.lex_state = 54}, + [612] = {.lex_state = 54}, + [613] = {.lex_state = 11}, + [614] = {.lex_state = 11}, + [615] = {.lex_state = 11}, + [616] = {.lex_state = 11}, + [617] = {.lex_state = 13}, + [618] = {.lex_state = 54}, + [619] = {.lex_state = 54}, + [620] = {.lex_state = 54}, + [621] = {.lex_state = 54}, + [622] = {.lex_state = 54}, + [623] = {.lex_state = 54}, + [624] = {.lex_state = 54}, + [625] = {.lex_state = 54}, + [626] = {.lex_state = 54}, + [627] = {.lex_state = 54}, + [628] = {.lex_state = 54}, + [629] = {.lex_state = 54}, + [630] = {.lex_state = 54}, + [631] = {.lex_state = 54}, + [632] = {.lex_state = 54}, + [633] = {.lex_state = 54}, + [634] = {.lex_state = 54}, + [635] = {.lex_state = 54}, + [636] = {.lex_state = 54}, + [637] = {.lex_state = 54}, + [638] = {.lex_state = 54}, + [639] = {.lex_state = 54}, + [640] = {.lex_state = 54}, + [641] = {.lex_state = 54}, + [642] = {.lex_state = 54}, + [643] = {.lex_state = 54}, + [644] = {.lex_state = 54}, + [645] = {.lex_state = 54}, + [646] = {.lex_state = 54}, + [647] = {.lex_state = 54}, + [648] = {.lex_state = 13}, + [649] = {.lex_state = 11}, + [650] = {.lex_state = 11}, + [651] = {.lex_state = 11}, + [652] = {.lex_state = 11}, + [653] = {.lex_state = 11}, + [654] = {.lex_state = 11}, + [655] = {.lex_state = 11}, + [656] = {.lex_state = 11}, + [657] = {.lex_state = 11}, + [658] = {.lex_state = 11}, + [659] = {.lex_state = 11}, + [660] = {.lex_state = 11}, + [661] = {.lex_state = 11}, + [662] = {.lex_state = 11}, + [663] = {.lex_state = 11}, + [664] = {.lex_state = 11}, + [665] = {.lex_state = 11}, + [666] = {.lex_state = 11}, + [667] = {.lex_state = 11}, + [668] = {.lex_state = 11}, + [669] = {.lex_state = 11}, + [670] = {.lex_state = 11}, + [671] = {.lex_state = 11}, + [672] = {.lex_state = 11}, + [673] = {.lex_state = 11}, + [674] = {.lex_state = 11}, + [675] = {.lex_state = 11}, + [676] = {.lex_state = 11}, + [677] = {.lex_state = 11}, + [678] = {.lex_state = 11}, + [679] = {.lex_state = 11}, + [680] = {.lex_state = 11}, + [681] = {.lex_state = 11}, + [682] = {.lex_state = 11}, + [683] = {.lex_state = 11}, + [684] = {.lex_state = 11}, + [685] = {.lex_state = 11}, + [686] = {.lex_state = 11}, + [687] = {.lex_state = 11}, + [688] = {.lex_state = 11}, + [689] = {.lex_state = 11}, + [690] = {.lex_state = 11}, + [691] = {.lex_state = 11}, + [692] = {.lex_state = 11}, + [693] = {.lex_state = 11}, + [694] = {.lex_state = 11}, + [695] = {.lex_state = 11}, + [696] = {.lex_state = 11}, + [697] = {.lex_state = 11}, + [698] = {.lex_state = 11}, + [699] = {.lex_state = 11}, + [700] = {.lex_state = 11}, + [701] = {.lex_state = 11}, + [702] = {.lex_state = 11}, + [703] = {.lex_state = 11}, + [704] = {.lex_state = 11}, + [705] = {.lex_state = 11}, + [706] = {.lex_state = 11}, + [707] = {.lex_state = 11}, + [708] = {.lex_state = 11}, + [709] = {.lex_state = 11}, + [710] = {.lex_state = 11}, + [711] = {.lex_state = 11}, [712] = {.lex_state = 11}, [713] = {.lex_state = 11}, - [714] = {.lex_state = 10}, - [715] = {.lex_state = 10}, - [716] = {.lex_state = 1}, + [714] = {.lex_state = 11}, + [715] = {.lex_state = 11}, + [716] = {.lex_state = 11}, [717] = {.lex_state = 11}, [718] = {.lex_state = 11}, - [719] = {.lex_state = 1}, + [719] = {.lex_state = 11}, [720] = {.lex_state = 11}, - [721] = {.lex_state = 1}, + [721] = {.lex_state = 11}, [722] = {.lex_state = 11}, [723] = {.lex_state = 11}, [724] = {.lex_state = 11}, [725] = {.lex_state = 11}, [726] = {.lex_state = 11}, [727] = {.lex_state = 11}, - [728] = {.lex_state = 10}, + [728] = {.lex_state = 11}, [729] = {.lex_state = 11}, - [730] = {.lex_state = 1}, - [731] = {.lex_state = 10}, + [730] = {.lex_state = 11}, + [731] = {.lex_state = 11}, [732] = {.lex_state = 11}, [733] = {.lex_state = 11}, [734] = {.lex_state = 11}, @@ -4794,7 +4830,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [736] = {.lex_state = 11}, [737] = {.lex_state = 11}, [738] = {.lex_state = 11}, - [739] = {.lex_state = 10}, + [739] = {.lex_state = 11}, [740] = {.lex_state = 11}, [741] = {.lex_state = 11}, [742] = {.lex_state = 11}, @@ -4804,47539 +4840,47622 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [746] = {.lex_state = 11}, [747] = {.lex_state = 11}, [748] = {.lex_state = 11}, - [749] = {.lex_state = 1}, + [749] = {.lex_state = 11}, [750] = {.lex_state = 11}, - [751] = {.lex_state = 10}, - [752] = {.lex_state = 10}, + [751] = {.lex_state = 11}, + [752] = {.lex_state = 11}, [753] = {.lex_state = 11}, [754] = {.lex_state = 11}, [755] = {.lex_state = 11}, [756] = {.lex_state = 11}, - [757] = {.lex_state = 1}, - [758] = {.lex_state = 1}, + [757] = {.lex_state = 11}, + [758] = {.lex_state = 11}, [759] = {.lex_state = 11}, [760] = {.lex_state = 11}, [761] = {.lex_state = 11}, [762] = {.lex_state = 11}, - [763] = {.lex_state = 10}, + [763] = {.lex_state = 11}, [764] = {.lex_state = 11}, [765] = {.lex_state = 11}, - [766] = {.lex_state = 1}, - [767] = {.lex_state = 1}, - [768] = {.lex_state = 1}, + [766] = {.lex_state = 11}, + [767] = {.lex_state = 11}, + [768] = {.lex_state = 11}, [769] = {.lex_state = 11}, - [770] = {.lex_state = 1}, - [771] = {.lex_state = 1}, + [770] = {.lex_state = 11}, + [771] = {.lex_state = 11}, [772] = {.lex_state = 11}, [773] = {.lex_state = 11}, - [774] = {.lex_state = 1}, + [774] = {.lex_state = 11}, [775] = {.lex_state = 11}, - [776] = {.lex_state = 1}, - [777] = {.lex_state = 1}, + [776] = {.lex_state = 11}, + [777] = {.lex_state = 11}, [778] = {.lex_state = 11}, [779] = {.lex_state = 11}, - [780] = {.lex_state = 1}, + [780] = {.lex_state = 11}, [781] = {.lex_state = 11}, [782] = {.lex_state = 11}, [783] = {.lex_state = 11}, - [784] = {.lex_state = 1}, - [785] = {.lex_state = 11}, - [786] = {.lex_state = 11}, - [787] = {.lex_state = 1}, - [788] = {.lex_state = 1}, - [789] = {.lex_state = 11}, - [790] = {.lex_state = 11}, - [791] = {.lex_state = 1}, - [792] = {.lex_state = 1}, - [793] = {.lex_state = 1}, - [794] = {.lex_state = 1}, - [795] = {.lex_state = 1}, - [796] = {.lex_state = 1}, - [797] = {.lex_state = 1}, - [798] = {.lex_state = 1}, - [799] = {.lex_state = 1}, - [800] = {.lex_state = 11}, - [801] = {.lex_state = 10}, - [802] = {.lex_state = 11}, - [803] = {.lex_state = 1}, - [804] = {.lex_state = 1}, - [805] = {.lex_state = 1}, - [806] = {.lex_state = 1}, - [807] = {.lex_state = 1}, - [808] = {.lex_state = 11}, - [809] = {.lex_state = 1}, - [810] = {.lex_state = 1}, - [811] = {.lex_state = 1}, - [812] = {.lex_state = 11}, - [813] = {.lex_state = 11}, - [814] = {.lex_state = 1}, - [815] = {.lex_state = 1}, - [816] = {.lex_state = 1}, - [817] = {.lex_state = 1}, - [818] = {.lex_state = 11}, - [819] = {.lex_state = 1}, - [820] = {.lex_state = 1}, - [821] = {.lex_state = 1}, - [822] = {.lex_state = 1}, - [823] = {.lex_state = 1}, - [824] = {.lex_state = 1}, - [825] = {.lex_state = 1}, - [826] = {.lex_state = 1}, - [827] = {.lex_state = 1}, - [828] = {.lex_state = 1}, - [829] = {.lex_state = 1}, - [830] = {.lex_state = 1}, - [831] = {.lex_state = 1}, - [832] = {.lex_state = 1}, - [833] = {.lex_state = 1}, - [834] = {.lex_state = 1}, - [835] = {.lex_state = 1}, - [836] = {.lex_state = 1}, - [837] = {.lex_state = 1}, - [838] = {.lex_state = 1}, - [839] = {.lex_state = 1}, - [840] = {.lex_state = 1}, - [841] = {.lex_state = 14}, - [842] = {.lex_state = 14}, + [784] = {.lex_state = 11}, + [785] = {.lex_state = 54}, + [786] = {.lex_state = 14}, + [787] = {.lex_state = 14}, + [788] = {.lex_state = 13}, + [789] = {.lex_state = 13}, + [790] = {.lex_state = 13}, + [791] = {.lex_state = 14}, + [792] = {.lex_state = 14}, + [793] = {.lex_state = 13}, + [794] = {.lex_state = 13}, + [795] = {.lex_state = 13}, + [796] = {.lex_state = 13}, + [797] = {.lex_state = 14}, + [798] = {.lex_state = 14}, + [799] = {.lex_state = 14}, + [800] = {.lex_state = 13}, + [801] = {.lex_state = 13}, + [802] = {.lex_state = 14}, + [803] = {.lex_state = 13}, + [804] = {.lex_state = 13}, + [805] = {.lex_state = 14}, + [806] = {.lex_state = 14}, + [807] = {.lex_state = 13}, + [808] = {.lex_state = 14}, + [809] = {.lex_state = 14}, + [810] = {.lex_state = 14}, + [811] = {.lex_state = 13}, + [812] = {.lex_state = 13}, + [813] = {.lex_state = 14}, + [814] = {.lex_state = 13}, + [815] = {.lex_state = 14}, + [816] = {.lex_state = 13}, + [817] = {.lex_state = 13}, + [818] = {.lex_state = 14}, + [819] = {.lex_state = 14}, + [820] = {.lex_state = 14}, + [821] = {.lex_state = 13}, + [822] = {.lex_state = 14}, + [823] = {.lex_state = 13}, + [824] = {.lex_state = 11}, + [825] = {.lex_state = 54}, + [826] = {.lex_state = 11}, + [827] = {.lex_state = 11}, + [828] = {.lex_state = 11}, + [829] = {.lex_state = 11}, + [830] = {.lex_state = 11}, + [831] = {.lex_state = 11}, + [832] = {.lex_state = 10}, + [833] = {.lex_state = 10}, + [834] = {.lex_state = 11}, + [835] = {.lex_state = 11}, + [836] = {.lex_state = 11}, + [837] = {.lex_state = 11}, + [838] = {.lex_state = 11}, + [839] = {.lex_state = 11}, + [840] = {.lex_state = 11}, + [841] = {.lex_state = 10}, + [842] = {.lex_state = 10}, [843] = {.lex_state = 11}, - [844] = {.lex_state = 14}, - [845] = {.lex_state = 14}, - [846] = {.lex_state = 14}, - [847] = {.lex_state = 14}, - [848] = {.lex_state = 15}, - [849] = {.lex_state = 15}, - [850] = {.lex_state = 15}, - [851] = {.lex_state = 15}, - [852] = {.lex_state = 15}, - [853] = {.lex_state = 15}, - [854] = {.lex_state = 1}, - [855] = {.lex_state = 5}, - [856] = {.lex_state = 1}, - [857] = {.lex_state = 1}, - [858] = {.lex_state = 6}, - [859] = {.lex_state = 9}, - [860] = {.lex_state = 0}, - [861] = {.lex_state = 1}, - [862] = {.lex_state = 1}, - [863] = {.lex_state = 1}, - [864] = {.lex_state = 1}, - [865] = {.lex_state = 0}, - [866] = {.lex_state = 1}, - [867] = {.lex_state = 9}, - [868] = {.lex_state = 0}, - [869] = {.lex_state = 1}, - [870] = {.lex_state = 1}, - [871] = {.lex_state = 9}, - [872] = {.lex_state = 0}, - [873] = {.lex_state = 8}, - [874] = {.lex_state = 10}, - [875] = {.lex_state = 0}, - [876] = {.lex_state = 9}, - [877] = {.lex_state = 0}, - [878] = {.lex_state = 6}, - [879] = {.lex_state = 10}, - [880] = {.lex_state = 0}, - [881] = {.lex_state = 1}, - [882] = {.lex_state = 0}, - [883] = {.lex_state = 9}, - [884] = {.lex_state = 4}, - [885] = {.lex_state = 9}, - [886] = {.lex_state = 1}, - [887] = {.lex_state = 0}, - [888] = {.lex_state = 1}, - [889] = {.lex_state = 1}, - [890] = {.lex_state = 12}, - [891] = {.lex_state = 10}, - [892] = {.lex_state = 1}, - [893] = {.lex_state = 12}, - [894] = {.lex_state = 10}, - [895] = {.lex_state = 1}, - [896] = {.lex_state = 1}, - [897] = {.lex_state = 8}, - [898] = {.lex_state = 5}, - [899] = {.lex_state = 0}, - [900] = {.lex_state = 9}, - [901] = {.lex_state = 0}, - [902] = {.lex_state = 14}, - [903] = {.lex_state = 14}, - [904] = {.lex_state = 0}, - [905] = {.lex_state = 1}, - [906] = {.lex_state = 12}, - [907] = {.lex_state = 0}, - [908] = {.lex_state = 1}, - [909] = {.lex_state = 1}, - [910] = {.lex_state = 1}, - [911] = {.lex_state = 12}, - [912] = {.lex_state = 1}, - [913] = {.lex_state = 1}, - [914] = {.lex_state = 8}, - [915] = {.lex_state = 14}, - [916] = {.lex_state = 12}, - [917] = {.lex_state = 14}, - [918] = {.lex_state = 12}, - [919] = {.lex_state = 0}, - [920] = {.lex_state = 0}, - [921] = {.lex_state = 0}, - [922] = {.lex_state = 9}, - [923] = {.lex_state = 0}, - [924] = {.lex_state = 1}, - [925] = {.lex_state = 1}, - [926] = {.lex_state = 9}, - [927] = {.lex_state = 0}, - [928] = {.lex_state = 1}, - [929] = {.lex_state = 12}, - [930] = {.lex_state = 12}, - [931] = {.lex_state = 0}, - [932] = {.lex_state = 9}, - [933] = {.lex_state = 0}, - [934] = {.lex_state = 9}, - [935] = {.lex_state = 0}, - [936] = {.lex_state = 1}, - [937] = {.lex_state = 9}, - [938] = {.lex_state = 0}, - [939] = {.lex_state = 9}, - [940] = {.lex_state = 0}, - [941] = {.lex_state = 1}, - [942] = {.lex_state = 5}, - [943] = {.lex_state = 6}, - [944] = {.lex_state = 9}, - [945] = {.lex_state = 0}, - [946] = {.lex_state = 1}, - [947] = {.lex_state = 1}, - [948] = {.lex_state = 1}, - [949] = {.lex_state = 1}, - [950] = {.lex_state = 0}, - [951] = {.lex_state = 9}, - [952] = {.lex_state = 0}, - [953] = {.lex_state = 1}, - [954] = {.lex_state = 1}, - [955] = {.lex_state = 9}, - [956] = {.lex_state = 0}, - [957] = {.lex_state = 8}, - [958] = {.lex_state = 10}, - [959] = {.lex_state = 9}, - [960] = {.lex_state = 0}, - [961] = {.lex_state = 6}, - [962] = {.lex_state = 10}, + [844] = {.lex_state = 11}, + [845] = {.lex_state = 11}, + [846] = {.lex_state = 11}, + [847] = {.lex_state = 11}, + [848] = {.lex_state = 11}, + [849] = {.lex_state = 11}, + [850] = {.lex_state = 11}, + [851] = {.lex_state = 11}, + [852] = {.lex_state = 11}, + [853] = {.lex_state = 11}, + [854] = {.lex_state = 11}, + [855] = {.lex_state = 11}, + [856] = {.lex_state = 11}, + [857] = {.lex_state = 11}, + [858] = {.lex_state = 11}, + [859] = {.lex_state = 11}, + [860] = {.lex_state = 11}, + [861] = {.lex_state = 11}, + [862] = {.lex_state = 11}, + [863] = {.lex_state = 11}, + [864] = {.lex_state = 11}, + [865] = {.lex_state = 11}, + [866] = {.lex_state = 11}, + [867] = {.lex_state = 11}, + [868] = {.lex_state = 11}, + [869] = {.lex_state = 11}, + [870] = {.lex_state = 11}, + [871] = {.lex_state = 11}, + [872] = {.lex_state = 11}, + [873] = {.lex_state = 11}, + [874] = {.lex_state = 11}, + [875] = {.lex_state = 11}, + [876] = {.lex_state = 11}, + [877] = {.lex_state = 11}, + [878] = {.lex_state = 11}, + [879] = {.lex_state = 11}, + [880] = {.lex_state = 11}, + [881] = {.lex_state = 11}, + [882] = {.lex_state = 11}, + [883] = {.lex_state = 11}, + [884] = {.lex_state = 11}, + [885] = {.lex_state = 11}, + [886] = {.lex_state = 11}, + [887] = {.lex_state = 11}, + [888] = {.lex_state = 11}, + [889] = {.lex_state = 11}, + [890] = {.lex_state = 11}, + [891] = {.lex_state = 11}, + [892] = {.lex_state = 11}, + [893] = {.lex_state = 11}, + [894] = {.lex_state = 11}, + [895] = {.lex_state = 11}, + [896] = {.lex_state = 54}, + [897] = {.lex_state = 54}, + [898] = {.lex_state = 11}, + [899] = {.lex_state = 11}, + [900] = {.lex_state = 11}, + [901] = {.lex_state = 11}, + [902] = {.lex_state = 54}, + [903] = {.lex_state = 11}, + [904] = {.lex_state = 54}, + [905] = {.lex_state = 11}, + [906] = {.lex_state = 11}, + [907] = {.lex_state = 54}, + [908] = {.lex_state = 11}, + [909] = {.lex_state = 11}, + [910] = {.lex_state = 11}, + [911] = {.lex_state = 11}, + [912] = {.lex_state = 11}, + [913] = {.lex_state = 54}, + [914] = {.lex_state = 11}, + [915] = {.lex_state = 11}, + [916] = {.lex_state = 54}, + [917] = {.lex_state = 54}, + [918] = {.lex_state = 54}, + [919] = {.lex_state = 11}, + [920] = {.lex_state = 11}, + [921] = {.lex_state = 11}, + [922] = {.lex_state = 11}, + [923] = {.lex_state = 11}, + [924] = {.lex_state = 11}, + [925] = {.lex_state = 54}, + [926] = {.lex_state = 54}, + [927] = {.lex_state = 54}, + [928] = {.lex_state = 54}, + [929] = {.lex_state = 54}, + [930] = {.lex_state = 54}, + [931] = {.lex_state = 54}, + [932] = {.lex_state = 54}, + [933] = {.lex_state = 54}, + [934] = {.lex_state = 54}, + [935] = {.lex_state = 54}, + [936] = {.lex_state = 54}, + [937] = {.lex_state = 54}, + [938] = {.lex_state = 54}, + [939] = {.lex_state = 54}, + [940] = {.lex_state = 54}, + [941] = {.lex_state = 54}, + [942] = {.lex_state = 54}, + [943] = {.lex_state = 54}, + [944] = {.lex_state = 54}, + [945] = {.lex_state = 54}, + [946] = {.lex_state = 54}, + [947] = {.lex_state = 54}, + [948] = {.lex_state = 54}, + [949] = {.lex_state = 54}, + [950] = {.lex_state = 54}, + [951] = {.lex_state = 54}, + [952] = {.lex_state = 54}, + [953] = {.lex_state = 54}, + [954] = {.lex_state = 54}, + [955] = {.lex_state = 54}, + [956] = {.lex_state = 54}, + [957] = {.lex_state = 54}, + [958] = {.lex_state = 54}, + [959] = {.lex_state = 0}, + [960] = {.lex_state = 54}, + [961] = {.lex_state = 0}, + [962] = {.lex_state = 54}, [963] = {.lex_state = 0}, - [964] = {.lex_state = 0}, - [965] = {.lex_state = 9}, - [966] = {.lex_state = 4}, - [967] = {.lex_state = 1}, - [968] = {.lex_state = 0}, + [964] = {.lex_state = 54}, + [965] = {.lex_state = 54}, + [966] = {.lex_state = 54}, + [967] = {.lex_state = 54}, + [968] = {.lex_state = 54}, [969] = {.lex_state = 1}, - [970] = {.lex_state = 1}, - [971] = {.lex_state = 12}, - [972] = {.lex_state = 10}, - [973] = {.lex_state = 1}, - [974] = {.lex_state = 12}, - [975] = {.lex_state = 10}, - [976] = {.lex_state = 1}, - [977] = {.lex_state = 1}, - [978] = {.lex_state = 8}, - [979] = {.lex_state = 5}, + [970] = {.lex_state = 54}, + [971] = {.lex_state = 3}, + [972] = {.lex_state = 54}, + [973] = {.lex_state = 3}, + [974] = {.lex_state = 1}, + [975] = {.lex_state = 3}, + [976] = {.lex_state = 54}, + [977] = {.lex_state = 54}, + [978] = {.lex_state = 3}, + [979] = {.lex_state = 3}, [980] = {.lex_state = 0}, - [981] = {.lex_state = 14}, - [982] = {.lex_state = 14}, - [983] = {.lex_state = 0}, + [981] = {.lex_state = 54}, + [982] = {.lex_state = 3}, + [983] = {.lex_state = 54}, [984] = {.lex_state = 1}, - [985] = {.lex_state = 12}, - [986] = {.lex_state = 0}, + [985] = {.lex_state = 3}, + [986] = {.lex_state = 3}, [987] = {.lex_state = 1}, - [988] = {.lex_state = 1}, + [988] = {.lex_state = 54}, [989] = {.lex_state = 1}, - [990] = {.lex_state = 12}, - [991] = {.lex_state = 1}, - [992] = {.lex_state = 1}, - [993] = {.lex_state = 8}, - [994] = {.lex_state = 14}, - [995] = {.lex_state = 12}, - [996] = {.lex_state = 14}, - [997] = {.lex_state = 12}, - [998] = {.lex_state = 0}, - [999] = {.lex_state = 0}, - [1000] = {.lex_state = 0}, - [1001] = {.lex_state = 9}, - [1002] = {.lex_state = 0}, - [1003] = {.lex_state = 1}, - [1004] = {.lex_state = 1}, - [1005] = {.lex_state = 9}, - [1006] = {.lex_state = 0}, - [1007] = {.lex_state = 1}, - [1008] = {.lex_state = 12}, - [1009] = {.lex_state = 12}, - [1010] = {.lex_state = 0}, - [1011] = {.lex_state = 9}, - [1012] = {.lex_state = 0}, - [1013] = {.lex_state = 9}, + [990] = {.lex_state = 3}, + [991] = {.lex_state = 3}, + [992] = {.lex_state = 54}, + [993] = {.lex_state = 11}, + [994] = {.lex_state = 54}, + [995] = {.lex_state = 3}, + [996] = {.lex_state = 54}, + [997] = {.lex_state = 54}, + [998] = {.lex_state = 54}, + [999] = {.lex_state = 54}, + [1000] = {.lex_state = 54}, + [1001] = {.lex_state = 1}, + [1002] = {.lex_state = 54}, + [1003] = {.lex_state = 54}, + [1004] = {.lex_state = 54}, + [1005] = {.lex_state = 3}, + [1006] = {.lex_state = 1}, + [1007] = {.lex_state = 3}, + [1008] = {.lex_state = 54}, + [1009] = {.lex_state = 54}, + [1010] = {.lex_state = 54}, + [1011] = {.lex_state = 54}, + [1012] = {.lex_state = 54}, + [1013] = {.lex_state = 54}, [1014] = {.lex_state = 0}, - [1015] = {.lex_state = 1}, - [1016] = {.lex_state = 9}, + [1015] = {.lex_state = 11}, + [1016] = {.lex_state = 0}, [1017] = {.lex_state = 0}, - [1018] = {.lex_state = 9}, + [1018] = {.lex_state = 0}, [1019] = {.lex_state = 0}, - [1020] = {.lex_state = 1}, - [1021] = {.lex_state = 5}, - [1022] = {.lex_state = 6}, - [1023] = {.lex_state = 9}, + [1020] = {.lex_state = 0}, + [1021] = {.lex_state = 0}, + [1022] = {.lex_state = 0}, + [1023] = {.lex_state = 0}, [1024] = {.lex_state = 0}, - [1025] = {.lex_state = 1}, - [1026] = {.lex_state = 1}, - [1027] = {.lex_state = 1}, - [1028] = {.lex_state = 1}, + [1025] = {.lex_state = 0}, + [1026] = {.lex_state = 0}, + [1027] = {.lex_state = 0}, + [1028] = {.lex_state = 0}, [1029] = {.lex_state = 0}, - [1030] = {.lex_state = 9}, - [1031] = {.lex_state = 0}, - [1032] = {.lex_state = 1}, - [1033] = {.lex_state = 1}, - [1034] = {.lex_state = 9}, - [1035] = {.lex_state = 0}, - [1036] = {.lex_state = 8}, - [1037] = {.lex_state = 10}, - [1038] = {.lex_state = 9}, - [1039] = {.lex_state = 0}, - [1040] = {.lex_state = 6}, - [1041] = {.lex_state = 10}, + [1030] = {.lex_state = 0}, + [1031] = {.lex_state = 11}, + [1032] = {.lex_state = 0}, + [1033] = {.lex_state = 0}, + [1034] = {.lex_state = 13}, + [1035] = {.lex_state = 11}, + [1036] = {.lex_state = 0}, + [1037] = {.lex_state = 0}, + [1038] = {.lex_state = 0}, + [1039] = {.lex_state = 11}, + [1040] = {.lex_state = 11}, + [1041] = {.lex_state = 0}, [1042] = {.lex_state = 0}, [1043] = {.lex_state = 0}, - [1044] = {.lex_state = 9}, - [1045] = {.lex_state = 4}, - [1046] = {.lex_state = 1}, - [1047] = {.lex_state = 0}, - [1048] = {.lex_state = 1}, - [1049] = {.lex_state = 12}, - [1050] = {.lex_state = 10}, - [1051] = {.lex_state = 1}, - [1052] = {.lex_state = 12}, - [1053] = {.lex_state = 10}, - [1054] = {.lex_state = 1}, - [1055] = {.lex_state = 1}, - [1056] = {.lex_state = 8}, - [1057] = {.lex_state = 5}, + [1044] = {.lex_state = 0}, + [1045] = {.lex_state = 0}, + [1046] = {.lex_state = 0}, + [1047] = {.lex_state = 54}, + [1048] = {.lex_state = 0}, + [1049] = {.lex_state = 0}, + [1050] = {.lex_state = 0}, + [1051] = {.lex_state = 54}, + [1052] = {.lex_state = 0}, + [1053] = {.lex_state = 0}, + [1054] = {.lex_state = 0}, + [1055] = {.lex_state = 54}, + [1056] = {.lex_state = 2}, + [1057] = {.lex_state = 2}, [1058] = {.lex_state = 0}, - [1059] = {.lex_state = 12}, - [1060] = {.lex_state = 0}, - [1061] = {.lex_state = 1}, - [1062] = {.lex_state = 1}, - [1063] = {.lex_state = 1}, - [1064] = {.lex_state = 12}, - [1065] = {.lex_state = 1}, - [1066] = {.lex_state = 1}, - [1067] = {.lex_state = 8}, - [1068] = {.lex_state = 0}, - [1069] = {.lex_state = 9}, - [1070] = {.lex_state = 0}, - [1071] = {.lex_state = 1}, - [1072] = {.lex_state = 1}, - [1073] = {.lex_state = 9}, - [1074] = {.lex_state = 0}, - [1075] = {.lex_state = 1}, - [1076] = {.lex_state = 9}, + [1059] = {.lex_state = 0}, + [1060] = {.lex_state = 11}, + [1061] = {.lex_state = 0}, + [1062] = {.lex_state = 0}, + [1063] = {.lex_state = 0}, + [1064] = {.lex_state = 11}, + [1065] = {.lex_state = 2}, + [1066] = {.lex_state = 54}, + [1067] = {.lex_state = 54}, + [1068] = {.lex_state = 2}, + [1069] = {.lex_state = 54}, + [1070] = {.lex_state = 2}, + [1071] = {.lex_state = 54}, + [1072] = {.lex_state = 0}, + [1073] = {.lex_state = 54}, + [1074] = {.lex_state = 54}, + [1075] = {.lex_state = 54}, + [1076] = {.lex_state = 2}, [1077] = {.lex_state = 0}, - [1078] = {.lex_state = 9}, - [1079] = {.lex_state = 0}, - [1080] = {.lex_state = 1}, - [1081] = {.lex_state = 9}, - [1082] = {.lex_state = 0}, - [1083] = {.lex_state = 9}, - [1084] = {.lex_state = 0}, - [1085] = {.lex_state = 1}, - [1086] = {.lex_state = 5}, - [1087] = {.lex_state = 6}, + [1078] = {.lex_state = 54}, + [1079] = {.lex_state = 54}, + [1080] = {.lex_state = 0}, + [1081] = {.lex_state = 0}, + [1082] = {.lex_state = 4}, + [1083] = {.lex_state = 2}, + [1084] = {.lex_state = 54}, + [1085] = {.lex_state = 2}, + [1086] = {.lex_state = 13}, + [1087] = {.lex_state = 0}, [1088] = {.lex_state = 0}, - [1089] = {.lex_state = 1}, - [1090] = {.lex_state = 1}, - [1091] = {.lex_state = 1}, - [1092] = {.lex_state = 0}, - [1093] = {.lex_state = 9}, - [1094] = {.lex_state = 0}, - [1095] = {.lex_state = 1}, - [1096] = {.lex_state = 9}, - [1097] = {.lex_state = 0}, - [1098] = {.lex_state = 8}, - [1099] = {.lex_state = 9}, - [1100] = {.lex_state = 0}, - [1101] = {.lex_state = 6}, - [1102] = {.lex_state = 0}, - [1103] = {.lex_state = 9}, - [1104] = {.lex_state = 4}, - [1105] = {.lex_state = 1}, - [1106] = {.lex_state = 1}, - [1107] = {.lex_state = 8}, - [1108] = {.lex_state = 5}, - [1109] = {.lex_state = 1}, - [1110] = {.lex_state = 1}, - [1111] = {.lex_state = 1}, - [1112] = {.lex_state = 8}, - [1113] = {.lex_state = 9}, + [1089] = {.lex_state = 54}, + [1090] = {.lex_state = 54}, + [1091] = {.lex_state = 2}, + [1092] = {.lex_state = 2}, + [1093] = {.lex_state = 2}, + [1094] = {.lex_state = 54}, + [1095] = {.lex_state = 54}, + [1096] = {.lex_state = 54}, + [1097] = {.lex_state = 54}, + [1098] = {.lex_state = 2}, + [1099] = {.lex_state = 54}, + [1100] = {.lex_state = 54}, + [1101] = {.lex_state = 0}, + [1102] = {.lex_state = 2}, + [1103] = {.lex_state = 54}, + [1104] = {.lex_state = 54}, + [1105] = {.lex_state = 2}, + [1106] = {.lex_state = 2}, + [1107] = {.lex_state = 54}, + [1108] = {.lex_state = 0}, + [1109] = {.lex_state = 2}, + [1110] = {.lex_state = 54}, + [1111] = {.lex_state = 2}, + [1112] = {.lex_state = 54}, + [1113] = {.lex_state = 5}, [1114] = {.lex_state = 0}, - [1115] = {.lex_state = 1}, - [1116] = {.lex_state = 1}, - [1117] = {.lex_state = 9}, + [1115] = {.lex_state = 0}, + [1116] = {.lex_state = 0}, + [1117] = {.lex_state = 0}, [1118] = {.lex_state = 0}, - [1119] = {.lex_state = 1}, - [1120] = {.lex_state = 9}, - [1121] = {.lex_state = 0}, - [1122] = {.lex_state = 9}, + [1119] = {.lex_state = 7}, + [1120] = {.lex_state = 0}, + [1121] = {.lex_state = 6}, + [1122] = {.lex_state = 0}, [1123] = {.lex_state = 0}, - [1124] = {.lex_state = 1}, - [1125] = {.lex_state = 9}, + [1124] = {.lex_state = 0}, + [1125] = {.lex_state = 11}, [1126] = {.lex_state = 0}, - [1127] = {.lex_state = 9}, + [1127] = {.lex_state = 0}, [1128] = {.lex_state = 0}, - [1129] = {.lex_state = 5}, - [1130] = {.lex_state = 8}, - [1131] = {.lex_state = 9}, - [1132] = {.lex_state = 0}, - [1133] = {.lex_state = 4}, - [1134] = {.lex_state = 1}, - [1135] = {.lex_state = 8}, - [1136] = {.lex_state = 5}, - [1137] = {.lex_state = 8}, - [1138] = {.lex_state = 5}, - [1139] = {.lex_state = 8}, - [1140] = {.lex_state = 4}, - [1141] = {.lex_state = 8}, - [1142] = {.lex_state = 5}, - [1143] = {.lex_state = 8}, + [1129] = {.lex_state = 6}, + [1130] = {.lex_state = 0}, + [1131] = {.lex_state = 6}, + [1132] = {.lex_state = 6}, + [1133] = {.lex_state = 0}, + [1134] = {.lex_state = 7}, + [1135] = {.lex_state = 0}, + [1136] = {.lex_state = 7}, + [1137] = {.lex_state = 5}, + [1138] = {.lex_state = 0}, + [1139] = {.lex_state = 0}, + [1140] = {.lex_state = 0}, + [1141] = {.lex_state = 0}, + [1142] = {.lex_state = 0}, + [1143] = {.lex_state = 0}, [1144] = {.lex_state = 0}, - [1145] = {.lex_state = 7}, - [1146] = {.lex_state = 1}, + [1145] = {.lex_state = 0}, + [1146] = {.lex_state = 5}, [1147] = {.lex_state = 0}, - [1148] = {.lex_state = 0}, - [1149] = {.lex_state = 1}, - [1150] = {.lex_state = 0}, - [1151] = {.lex_state = 1}, + [1148] = {.lex_state = 7}, + [1149] = {.lex_state = 6}, + [1150] = {.lex_state = 11}, + [1151] = {.lex_state = 0}, [1152] = {.lex_state = 0}, - [1153] = {.lex_state = 1}, - [1154] = {.lex_state = 1}, - [1155] = {.lex_state = 1}, - [1156] = {.lex_state = 1}, - [1157] = {.lex_state = 0}, - [1158] = {.lex_state = 7}, - [1159] = {.lex_state = 1}, - [1160] = {.lex_state = 1}, - [1161] = {.lex_state = 1}, - [1162] = {.lex_state = 9}, - [1163] = {.lex_state = 1}, - [1164] = {.lex_state = 9}, - [1165] = {.lex_state = 9}, + [1153] = {.lex_state = 6}, + [1154] = {.lex_state = 6}, + [1155] = {.lex_state = 7}, + [1156] = {.lex_state = 6}, + [1157] = {.lex_state = 6}, + [1158] = {.lex_state = 6}, + [1159] = {.lex_state = 11}, + [1160] = {.lex_state = 5}, + [1161] = {.lex_state = 11}, + [1162] = {.lex_state = 0}, + [1163] = {.lex_state = 11}, + [1164] = {.lex_state = 0}, + [1165] = {.lex_state = 11}, [1166] = {.lex_state = 0}, - [1167] = {.lex_state = 7}, + [1167] = {.lex_state = 11}, [1168] = {.lex_state = 0}, [1169] = {.lex_state = 0}, - [1170] = {.lex_state = 1}, - [1171] = {.lex_state = 0}, - [1172] = {.lex_state = 1}, + [1170] = {.lex_state = 0}, + [1171] = {.lex_state = 5}, + [1172] = {.lex_state = 11}, [1173] = {.lex_state = 0}, - [1174] = {.lex_state = 1}, - [1175] = {.lex_state = 1}, - [1176] = {.lex_state = 0}, - [1177] = {.lex_state = 7}, - [1178] = {.lex_state = 1}, - [1179] = {.lex_state = 1}, - [1180] = {.lex_state = 1}, - [1181] = {.lex_state = 9}, - [1182] = {.lex_state = 1}, - [1183] = {.lex_state = 9}, - [1184] = {.lex_state = 9}, + [1174] = {.lex_state = 6}, + [1175] = {.lex_state = 7}, + [1176] = {.lex_state = 7}, + [1177] = {.lex_state = 11}, + [1178] = {.lex_state = 6}, + [1179] = {.lex_state = 11}, + [1180] = {.lex_state = 0}, + [1181] = {.lex_state = 6}, + [1182] = {.lex_state = 11}, + [1183] = {.lex_state = 7}, + [1184] = {.lex_state = 0}, [1185] = {.lex_state = 0}, - [1186] = {.lex_state = 7}, + [1186] = {.lex_state = 11}, [1187] = {.lex_state = 0}, - [1188] = {.lex_state = 0}, - [1189] = {.lex_state = 1}, - [1190] = {.lex_state = 0}, - [1191] = {.lex_state = 1}, - [1192] = {.lex_state = 0}, - [1193] = {.lex_state = 1}, - [1194] = {.lex_state = 1}, - [1195] = {.lex_state = 1}, - [1196] = {.lex_state = 1}, - [1197] = {.lex_state = 1}, - [1198] = {.lex_state = 9}, - [1199] = {.lex_state = 1}, - [1200] = {.lex_state = 9}, - [1201] = {.lex_state = 9}, + [1188] = {.lex_state = 5}, + [1189] = {.lex_state = 11}, + [1190] = {.lex_state = 7}, + [1191] = {.lex_state = 7}, + [1192] = {.lex_state = 7}, + [1193] = {.lex_state = 7}, + [1194] = {.lex_state = 0}, + [1195] = {.lex_state = 0}, + [1196] = {.lex_state = 11}, + [1197] = {.lex_state = 5}, + [1198] = {.lex_state = 11}, + [1199] = {.lex_state = 0}, + [1200] = {.lex_state = 0}, + [1201] = {.lex_state = 11}, [1202] = {.lex_state = 0}, - [1203] = {.lex_state = 1}, + [1203] = {.lex_state = 0}, [1204] = {.lex_state = 0}, - [1205] = {.lex_state = 0}, - [1206] = {.lex_state = 1}, - [1207] = {.lex_state = 1}, - [1208] = {.lex_state = 1}, - [1209] = {.lex_state = 9}, - [1210] = {.lex_state = 1}, - [1211] = {.lex_state = 9}, - [1212] = {.lex_state = 9}, - [1213] = {.lex_state = 0}, - [1214] = {.lex_state = 0}, - [1215] = {.lex_state = 0}, - [1216] = {.lex_state = 1}, - [1217] = {.lex_state = 0}, + [1205] = {.lex_state = 11}, + [1206] = {.lex_state = 0}, + [1207] = {.lex_state = 0}, + [1208] = {.lex_state = 0}, + [1209] = {.lex_state = 0}, + [1210] = {.lex_state = 7}, + [1211] = {.lex_state = 0}, + [1212] = {.lex_state = 0}, + [1213] = {.lex_state = 11}, + [1214] = {.lex_state = 6}, + [1215] = {.lex_state = 11}, + [1216] = {.lex_state = 0}, + [1217] = {.lex_state = 11}, [1218] = {.lex_state = 0}, - [1219] = {.lex_state = 1}, - [1220] = {.lex_state = 1}, - [1221] = {.lex_state = 1}, - [1222] = {.lex_state = 1}, - [1223] = {.lex_state = 9}, - [1224] = {.lex_state = 0}, - [1225] = {.lex_state = 1}, - [1226] = {.lex_state = 1}, - [1227] = {.lex_state = 1}, - [1228] = {.lex_state = 1}, - [1229] = {.lex_state = 1}, - [1230] = {.lex_state = 1}, - [1231] = {.lex_state = 1}, - [1232] = {.lex_state = 1}, - [1233] = {.lex_state = 1}, - [1234] = {.lex_state = 1}, - [1235] = {.lex_state = 1}, - [1236] = {.lex_state = 1}, - [1237] = {.lex_state = 1}, - [1238] = {.lex_state = 1}, + [1219] = {.lex_state = 7}, + [1220] = {.lex_state = 0}, + [1221] = {.lex_state = 7}, + [1222] = {.lex_state = 0}, + [1223] = {.lex_state = 11}, + [1224] = {.lex_state = 11}, + [1225] = {.lex_state = 11}, + [1226] = {.lex_state = 11}, + [1227] = {.lex_state = 0}, + [1228] = {.lex_state = 0}, + [1229] = {.lex_state = 0}, + [1230] = {.lex_state = 0}, + [1231] = {.lex_state = 0}, + [1232] = {.lex_state = 0}, + [1233] = {.lex_state = 0}, + [1234] = {.lex_state = 5}, + [1235] = {.lex_state = 0}, + [1236] = {.lex_state = 11}, + [1237] = {.lex_state = 0}, + [1238] = {.lex_state = 0}, [1239] = {.lex_state = 0}, - [1240] = {.lex_state = 0}, - [1241] = {.lex_state = 1}, - [1242] = {.lex_state = 9}, - [1243] = {.lex_state = 0}, - [1244] = {.lex_state = 1}, + [1240] = {.lex_state = 54}, + [1241] = {.lex_state = 6}, + [1242] = {.lex_state = 7}, + [1243] = {.lex_state = 7}, + [1244] = {.lex_state = 0}, [1245] = {.lex_state = 0}, - [1246] = {.lex_state = 0}, - [1247] = {.lex_state = 1}, - [1248] = {.lex_state = 9}, + [1246] = {.lex_state = 7}, + [1247] = {.lex_state = 7}, + [1248] = {.lex_state = 7}, [1249] = {.lex_state = 0}, - [1250] = {.lex_state = 1}, - [1251] = {.lex_state = 1}, - [1252] = {.lex_state = 9}, - [1253] = {.lex_state = 0}, - [1254] = {.lex_state = 1}, - [1255] = {.lex_state = 1}, - [1256] = {.lex_state = 1}, - [1257] = {.lex_state = 1}, - [1258] = {.lex_state = 9}, - [1259] = {.lex_state = 0}, - [1260] = {.lex_state = 1}, - [1261] = {.lex_state = 1}, - [1262] = {.lex_state = 9}, + [1250] = {.lex_state = 0}, + [1251] = {.lex_state = 0}, + [1252] = {.lex_state = 54}, + [1253] = {.lex_state = 6}, + [1254] = {.lex_state = 0}, + [1255] = {.lex_state = 7}, + [1256] = {.lex_state = 6}, + [1257] = {.lex_state = 6}, + [1258] = {.lex_state = 7}, + [1259] = {.lex_state = 7}, + [1260] = {.lex_state = 0}, + [1261] = {.lex_state = 7}, + [1262] = {.lex_state = 11}, [1263] = {.lex_state = 0}, - [1264] = {.lex_state = 1}, - [1265] = {.lex_state = 1}, - [1266] = {.lex_state = 9}, + [1264] = {.lex_state = 0}, + [1265] = {.lex_state = 5}, + [1266] = {.lex_state = 7}, [1267] = {.lex_state = 0}, - [1268] = {.lex_state = 1}, - [1269] = {.lex_state = 9}, - [1270] = {.lex_state = 0}, - [1271] = {.lex_state = 9}, + [1268] = {.lex_state = 54}, + [1269] = {.lex_state = 7}, + [1270] = {.lex_state = 7}, + [1271] = {.lex_state = 6}, [1272] = {.lex_state = 0}, - [1273] = {.lex_state = 1}, - [1274] = {.lex_state = 9}, + [1273] = {.lex_state = 0}, + [1274] = {.lex_state = 0}, [1275] = {.lex_state = 0}, - [1276] = {.lex_state = 9}, + [1276] = {.lex_state = 7}, [1277] = {.lex_state = 0}, - [1278] = {.lex_state = 1}, - [1279] = {.lex_state = 1}, - [1280] = {.lex_state = 1}, - [1281] = {.lex_state = 1}, - [1282] = {.lex_state = 1}, - [1283] = {.lex_state = 9}, - [1284] = {.lex_state = 1}, - [1285] = {.lex_state = 9}, - [1286] = {.lex_state = 9}, - [1287] = {.lex_state = 1}, - [1288] = {.lex_state = 9}, - [1289] = {.lex_state = 0}, - [1290] = {.lex_state = 1}, + [1278] = {.lex_state = 0}, + [1279] = {.lex_state = 0}, + [1280] = {.lex_state = 0}, + [1281] = {.lex_state = 0}, + [1282] = {.lex_state = 6}, + [1283] = {.lex_state = 0}, + [1284] = {.lex_state = 0}, + [1285] = {.lex_state = 0}, + [1286] = {.lex_state = 7}, + [1287] = {.lex_state = 7}, + [1288] = {.lex_state = 0}, + [1289] = {.lex_state = 54}, + [1290] = {.lex_state = 54}, + [1291] = {.lex_state = 54}, + [1292] = {.lex_state = 0}, + [1293] = {.lex_state = 7}, + [1294] = {.lex_state = 0}, + [1295] = {.lex_state = 7}, + [1296] = {.lex_state = 0}, + [1297] = {.lex_state = 6}, + [1298] = {.lex_state = 11}, + [1299] = {.lex_state = 0}, + [1300] = {.lex_state = 0}, + [1301] = {.lex_state = 54}, }; static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [0] = { - [anon_sym_GT_GT] = ACTIONS(1), - [anon_sym_case] = ACTIONS(1), - [sym_true] = ACTIONS(1), - [anon_sym_restrict] = ACTIONS(1), - [sym_null] = ACTIONS(1), - [anon_sym_PERCENT_EQ] = ACTIONS(1), - [anon_sym_DASH_EQ] = ACTIONS(1), - [anon_sym_goto] = ACTIONS(1), - [anon_sym_PIPE] = ACTIONS(1), - [aux_sym_preproc_if_token2] = ACTIONS(1), - [anon_sym_EQ_EQ] = ACTIONS(1), - [anon_sym_SLASH] = ACTIONS(1), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1), - [anon_sym_DASH_GT] = ACTIONS(1), - [anon_sym_const] = ACTIONS(1), - [anon_sym_LT_LT] = ACTIONS(1), - [anon_sym_typedef] = ACTIONS(1), - [anon_sym_DASH_DASH] = ACTIONS(1), - [anon_sym_default] = ACTIONS(1), - [anon_sym__Atomic] = ACTIONS(1), + [ts_builtin_sym_end] = ACTIONS(1), [sym_identifier] = ACTIONS(1), - [anon_sym_PLUS_EQ] = ACTIONS(1), - [anon_sym_LT_LT_EQ] = ACTIONS(1), - [anon_sym_QMARK] = ACTIONS(1), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1), - [anon_sym_BANG_EQ] = ACTIONS(1), + [aux_sym_preproc_include_token1] = ACTIONS(1), + [aux_sym_preproc_def_token1] = ACTIONS(1), [anon_sym_LPAREN] = ACTIONS(1), - [anon_sym_CARET_EQ] = ACTIONS(1), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1), [anon_sym_COMMA] = ACTIONS(1), - [sym_number_literal] = ACTIONS(1), - [anon_sym_volatile] = ACTIONS(1), - [anon_sym_SQUOTE] = ACTIONS(1), - [anon_sym_extern] = ACTIONS(1), - [anon_sym_PLUS_PLUS] = ACTIONS(1), - [anon_sym_struct] = ACTIONS(1), - [anon_sym_signed] = ACTIONS(1), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1), - [anon_sym_GT_GT_EQ] = ACTIONS(1), - [anon_sym_while] = ACTIONS(1), + [anon_sym_RPAREN] = ACTIONS(1), + [aux_sym_preproc_if_token1] = ACTIONS(1), + [aux_sym_preproc_if_token2] = ACTIONS(1), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1), [aux_sym_preproc_ifdef_token2] = ACTIONS(1), - [anon_sym_GT] = ACTIONS(1), + [aux_sym_preproc_else_token1] = ACTIONS(1), [aux_sym_preproc_elif_token1] = ACTIONS(1), - [anon_sym_PIPE_EQ] = ACTIONS(1), - [anon_sym_RPAREN] = ACTIONS(1), - [anon_sym_L_SQUOTE] = ACTIONS(1), - [anon_sym_RBRACK] = ACTIONS(1), + [sym_preproc_directive] = ACTIONS(1), + [anon_sym_SEMI] = ACTIONS(1), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), [anon_sym___attribute__] = ACTIONS(1), - [anon_sym_sizeof] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(1), [anon_sym_LBRACE] = ACTIONS(1), - [anon_sym_union] = ACTIONS(1), + [anon_sym_RBRACE] = ACTIONS(1), + [anon_sym_STAR] = ACTIONS(1), + [anon_sym_LBRACK] = ACTIONS(1), + [anon_sym_RBRACK] = ACTIONS(1), + [anon_sym_EQ] = ACTIONS(1), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), [anon_sym_short] = ACTIONS(1), - [anon_sym_AMP_EQ] = ACTIONS(1), - [anon_sym_do] = ACTIONS(1), - [aux_sym_preproc_else_token1] = ACTIONS(1), - [anon_sym_PERCENT] = ACTIONS(1), - [sym_preproc_directive] = ACTIONS(1), - [anon_sym_AMP] = ACTIONS(1), - [aux_sym_preproc_if_token1] = ACTIONS(1), - [anon_sym_TILDE] = ACTIONS(1), - [anon_sym_EQ] = ACTIONS(1), - [anon_sym_L_DQUOTE] = ACTIONS(1), - [anon_sym_LPAREN2] = ACTIONS(1), - [anon_sym_GT_EQ] = ACTIONS(1), - [anon_sym_RBRACE] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), [anon_sym_COLON] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), [anon_sym_else] = ACTIONS(1), - [sym_escape_sequence] = ACTIONS(1), - [sym_primitive_type] = ACTIONS(1), - [anon_sym_STAR_EQ] = ACTIONS(1), - [anon_sym_for] = ACTIONS(1), - [anon_sym_break] = ACTIONS(1), - [anon_sym_PIPE_PIPE] = ACTIONS(1), - [anon_sym_BANG] = ACTIONS(1), - [aux_sym_preproc_include_token1] = ACTIONS(1), - [anon_sym_DASH] = ACTIONS(1), - [anon_sym_static] = ACTIONS(1), - [anon_sym_DQUOTE] = ACTIONS(1), - [anon_sym_register] = ACTIONS(1), - [anon_sym_LT_EQ] = ACTIONS(1), - [anon_sym_STAR] = ACTIONS(1), - [anon_sym_if] = ACTIONS(1), [anon_sym_switch] = ACTIONS(1), - [anon_sym_enum] = ACTIONS(1), - [sym_false] = ACTIONS(1), - [anon_sym_SLASH_EQ] = ACTIONS(1), - [ts_builtin_sym_end] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_default] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), [anon_sym_continue] = ACTIONS(1), + [anon_sym_goto] = ACTIONS(1), + [anon_sym_QMARK] = ACTIONS(1), + [anon_sym_STAR_EQ] = ACTIONS(1), + [anon_sym_SLASH_EQ] = ACTIONS(1), + [anon_sym_PERCENT_EQ] = ACTIONS(1), + [anon_sym_PLUS_EQ] = ACTIONS(1), + [anon_sym_DASH_EQ] = ACTIONS(1), + [anon_sym_LT_LT_EQ] = ACTIONS(1), + [anon_sym_GT_GT_EQ] = ACTIONS(1), + [anon_sym_AMP_EQ] = ACTIONS(1), + [anon_sym_CARET_EQ] = ACTIONS(1), + [anon_sym_PIPE_EQ] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(1), + [anon_sym_BANG] = ACTIONS(1), + [anon_sym_TILDE] = ACTIONS(1), + [anon_sym_DASH] = ACTIONS(1), + [anon_sym_PLUS] = ACTIONS(1), + [anon_sym_SLASH] = ACTIONS(1), + [anon_sym_PERCENT] = ACTIONS(1), + [anon_sym_PIPE_PIPE] = ACTIONS(1), [anon_sym_AMP_AMP] = ACTIONS(1), - [anon_sym_SEMI] = ACTIONS(1), + [anon_sym_PIPE] = ACTIONS(1), [anon_sym_CARET] = ACTIONS(1), - [aux_sym_preproc_def_token1] = ACTIONS(1), - [anon_sym_PLUS] = ACTIONS(1), - [anon_sym_auto] = ACTIONS(1), - [anon_sym_DOT] = ACTIONS(1), - [anon_sym_inline] = ACTIONS(1), + [anon_sym_EQ_EQ] = ACTIONS(1), + [anon_sym_BANG_EQ] = ACTIONS(1), + [anon_sym_GT] = ACTIONS(1), + [anon_sym_GT_EQ] = ACTIONS(1), + [anon_sym_LT_EQ] = ACTIONS(1), [anon_sym_LT] = ACTIONS(1), - [anon_sym_LBRACK] = ACTIONS(1), + [anon_sym_LT_LT] = ACTIONS(1), + [anon_sym_GT_GT] = ACTIONS(1), + [anon_sym_DASH_DASH] = ACTIONS(1), + [anon_sym_PLUS_PLUS] = ACTIONS(1), + [anon_sym_sizeof] = ACTIONS(1), + [anon_sym_DOT] = ACTIONS(1), + [anon_sym_DASH_GT] = ACTIONS(1), + [sym_number_literal] = ACTIONS(1), + [anon_sym_L_SQUOTE] = ACTIONS(1), + [anon_sym_SQUOTE] = ACTIONS(1), + [anon_sym_L_DQUOTE] = ACTIONS(1), + [anon_sym_DQUOTE] = ACTIONS(1), + [sym_escape_sequence] = ACTIONS(1), + [sym_true] = ACTIONS(1), + [sym_false] = ACTIONS(1), + [sym_null] = ACTIONS(1), + [sym_comment] = ACTIONS(3), }, [1] = { - [sym_if_statement] = STATE(42), - [sym_preproc_def] = STATE(42), - [sym_preproc_function_def] = STATE(42), - [sym__expression] = STATE(34), - [sym_comma_expression] = STATE(35), - [sym_binary_expression] = STATE(34), - [sym_update_expression] = STATE(34), - [sym_call_expression] = STATE(36), - [sym_function_definition] = STATE(42), - [sym_declaration] = STATE(42), - [sym_do_statement] = STATE(42), - [sym_for_statement] = STATE(42), - [sym_goto_statement] = STATE(42), - [sym_expression_statement] = STATE(42), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(37), - [sym_union_specifier] = STATE(37), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_switch_statement] = STATE(42), - [sym_translation_unit] = STATE(39), - [sym_return_statement] = STATE(42), - [sym_preproc_call] = STATE(42), - [sym_conditional_expression] = STATE(34), - [sym_assignment_expression] = STATE(34), - [sym_cast_expression] = STATE(34), - [sym__declaration_specifiers] = STATE(40), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(34), - [sym_type_definition] = STATE(42), - [sym_char_literal] = STATE(34), - [sym_break_statement] = STATE(42), - [sym__empty_declaration] = STATE(42), - [sym_sized_type_specifier] = STATE(37), - [sym_enum_specifier] = STATE(37), - [sym_labeled_statement] = STATE(42), - [sym_preproc_include] = STATE(42), - [sym_preproc_if] = STATE(42), - [sym_preproc_ifdef] = STATE(42), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(34), - [sym_sizeof_expression] = STATE(34), - [sym_attribute_specifier] = STATE(43), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_linkage_specification] = STATE(42), - [sym_concatenated_string] = STATE(34), - [sym_string_literal] = STATE(41), - [sym_macro_type_specifier] = STATE(37), - [aux_sym_translation_unit_repeat1] = STATE(42), - [sym_storage_class_specifier] = STATE(43), - [sym_compound_statement] = STATE(42), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_while_statement] = STATE(42), - [sym_struct_specifier] = STATE(37), - [sym_continue_statement] = STATE(42), - [sym_true] = ACTIONS(5), - [anon_sym_restrict] = ACTIONS(7), - [sym_null] = ACTIONS(5), - [anon_sym_goto] = ACTIONS(9), - [anon_sym_const] = ACTIONS(7), - [anon_sym_typedef] = ACTIONS(11), - [anon_sym_DASH_DASH] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(7), - [sym_identifier] = ACTIONS(15), - [aux_sym_preproc_ifdef_token1] = ACTIONS(17), - [sym_number_literal] = ACTIONS(19), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_SQUOTE] = ACTIONS(21), + [sym_translation_unit] = STATE(1168), + [sym_preproc_include] = STATE(34), + [sym_preproc_def] = STATE(34), + [sym_preproc_function_def] = STATE(34), + [sym_preproc_call] = STATE(34), + [sym_preproc_if] = STATE(34), + [sym_preproc_ifdef] = STATE(34), + [sym_function_definition] = STATE(34), + [sym_declaration] = STATE(34), + [sym_type_definition] = STATE(34), + [sym__declaration_specifiers] = STATE(899), + [sym_linkage_specification] = STATE(34), + [sym_attribute_specifier] = STATE(661), + [sym_compound_statement] = STATE(34), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(855), + [sym_sized_type_specifier] = STATE(855), + [sym_enum_specifier] = STATE(855), + [sym_struct_specifier] = STATE(855), + [sym_union_specifier] = STATE(855), + [sym_labeled_statement] = STATE(34), + [sym_expression_statement] = STATE(34), + [sym_if_statement] = STATE(34), + [sym_switch_statement] = STATE(34), + [sym_while_statement] = STATE(34), + [sym_do_statement] = STATE(34), + [sym_for_statement] = STATE(34), + [sym_return_statement] = STATE(34), + [sym_break_statement] = STATE(34), + [sym_continue_statement] = STATE(34), + [sym_goto_statement] = STATE(34), + [sym__expression] = STATE(721), + [sym_comma_expression] = STATE(1123), + [sym_conditional_expression] = STATE(721), + [sym_assignment_expression] = STATE(721), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(721), + [sym_binary_expression] = STATE(721), + [sym_update_expression] = STATE(721), + [sym_cast_expression] = STATE(721), + [sym_sizeof_expression] = STATE(721), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(721), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(721), + [sym_concatenated_string] = STATE(721), + [sym_string_literal] = STATE(431), + [sym__empty_declaration] = STATE(34), + [sym_macro_type_specifier] = STATE(855), + [aux_sym_translation_unit_repeat1] = STATE(34), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [ts_builtin_sym_end] = ACTIONS(5), + [sym_identifier] = ACTIONS(7), + [aux_sym_preproc_include_token1] = ACTIONS(9), + [aux_sym_preproc_def_token1] = ACTIONS(11), + [aux_sym_preproc_if_token1] = ACTIONS(13), + [aux_sym_preproc_ifdef_token1] = ACTIONS(15), + [aux_sym_preproc_ifdef_token2] = ACTIONS(15), + [sym_preproc_directive] = ACTIONS(17), + [anon_sym_SEMI] = ACTIONS(19), + [anon_sym_typedef] = ACTIONS(21), [anon_sym_extern] = ACTIONS(23), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_struct] = ACTIONS(25), - [anon_sym_signed] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(27), - [anon_sym_while] = ACTIONS(29), - [aux_sym_preproc_ifdef_token2] = ACTIONS(17), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_sizeof] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_union] = ACTIONS(37), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_short] = ACTIONS(27), - [anon_sym_do] = ACTIONS(39), - [sym_preproc_directive] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(43), - [aux_sym_preproc_if_token1] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(39), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [anon_sym_if] = ACTIONS(47), + [anon_sym_switch] = ACTIONS(49), + [anon_sym_while] = ACTIONS(51), + [anon_sym_do] = ACTIONS(53), [anon_sym_for] = ACTIONS(55), - [anon_sym_break] = ACTIONS(57), - [anon_sym_BANG] = ACTIONS(47), - [aux_sym_preproc_include_token1] = ACTIONS(59), - [anon_sym_DASH] = ACTIONS(61), - [anon_sym_static] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_register] = ACTIONS(63), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(65), - [anon_sym_switch] = ACTIONS(67), - [anon_sym_enum] = ACTIONS(69), - [sym_false] = ACTIONS(5), - [ts_builtin_sym_end] = ACTIONS(71), - [anon_sym_return] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_SEMI] = ACTIONS(77), - [aux_sym_preproc_def_token1] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_auto] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), + [anon_sym_return] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(61), + [anon_sym_goto] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(73), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_null] = ACTIONS(79), + [sym_comment] = ACTIONS(3), }, [2] = { - [sym_do_statement] = STATE(45), - [sym_preproc_function_def] = STATE(45), - [sym__expression] = STATE(867), - [sym_binary_expression] = STATE(867), - [sym_declaration] = STATE(45), - [sym_call_expression] = STATE(36), - [sym__type_specifier] = STATE(869), - [sym_break_statement] = STATE(45), - [sym_assignment_expression] = STATE(867), - [sym_type_definition] = STATE(45), - [sym_compound_literal_expression] = STATE(867), - [sym_char_literal] = STATE(867), - [sym__empty_declaration] = STATE(45), - [sym_sized_type_specifier] = STATE(869), - [sym_preproc_include] = STATE(45), - [sym_continue_statement] = STATE(45), - [sym_preproc_ifdef] = STATE(45), - [sym_pointer_expression] = STATE(36), - [sym_sizeof_expression] = STATE(867), - [sym_attribute_specifier] = STATE(43), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(867), - [sym_macro_type_specifier] = STATE(869), - [sym_storage_class_specifier] = STATE(43), - [sym_struct_specifier] = STATE(869), - [sym_if_statement] = STATE(45), - [sym_preproc_def] = STATE(45), - [sym_for_statement] = STATE(45), - [sym_comma_expression] = STATE(868), - [sym_function_definition] = STATE(45), - [sym_update_expression] = STATE(867), - [sym_type_qualifier] = STATE(43), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_union_specifier] = STATE(869), - [sym_switch_statement] = STATE(45), - [sym_return_statement] = STATE(45), - [sym_preproc_call] = STATE(45), - [sym_conditional_expression] = STATE(867), - [sym_cast_expression] = STATE(867), - [sym__declaration_specifiers] = STATE(1151), - [sym_field_expression] = STATE(36), - [sym_enum_specifier] = STATE(869), - [sym_labeled_statement] = STATE(45), - [sym_while_statement] = STATE(45), - [sym_preproc_if] = STATE(45), - [sym_goto_statement] = STATE(45), - [sym_unary_expression] = STATE(867), - [sym_linkage_specification] = STATE(45), - [sym_subscript_expression] = STATE(36), - [sym_string_literal] = STATE(41), - [aux_sym_translation_unit_repeat1] = STATE(45), - [sym_compound_statement] = STATE(45), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_expression_statement] = STATE(45), - [sym_true] = ACTIONS(81), - [anon_sym_restrict] = ACTIONS(7), - [sym_null] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_const] = ACTIONS(7), - [anon_sym_typedef] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(7), - [sym_identifier] = ACTIONS(87), - [aux_sym_preproc_ifdef_token1] = ACTIONS(89), - [sym_number_literal] = ACTIONS(91), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_extern] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_struct] = ACTIONS(25), - [anon_sym_signed] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(27), - [anon_sym_while] = ACTIONS(95), - [aux_sym_preproc_ifdef_token2] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_sizeof] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(97), - [anon_sym_union] = ACTIONS(37), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_short] = ACTIONS(27), - [anon_sym_do] = ACTIONS(99), - [sym_preproc_directive] = ACTIONS(101), - [anon_sym_AMP] = ACTIONS(43), - [aux_sym_preproc_if_token1] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(105), + [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(1266), + [sym_preproc_elif] = STATE(1266), + [sym_function_definition] = STATE(9), + [sym_declaration] = STATE(9), + [sym_type_definition] = STATE(9), + [sym__declaration_specifiers] = STATE(895), + [sym_linkage_specification] = STATE(9), + [sym_attribute_specifier] = STATE(661), + [sym_compound_statement] = STATE(9), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(870), + [sym_sized_type_specifier] = STATE(870), + [sym_enum_specifier] = STATE(870), + [sym_struct_specifier] = STATE(870), + [sym_union_specifier] = STATE(870), + [sym_labeled_statement] = STATE(9), + [sym_expression_statement] = STATE(9), + [sym_if_statement] = STATE(9), + [sym_switch_statement] = STATE(9), + [sym_while_statement] = STATE(9), + [sym_do_statement] = STATE(9), + [sym_for_statement] = STATE(9), + [sym_return_statement] = STATE(9), + [sym_break_statement] = STATE(9), + [sym_continue_statement] = STATE(9), + [sym_goto_statement] = STATE(9), + [sym__expression] = STATE(671), + [sym_comma_expression] = STATE(1275), + [sym_conditional_expression] = STATE(671), + [sym_assignment_expression] = STATE(671), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(671), + [sym_binary_expression] = STATE(671), + [sym_update_expression] = STATE(671), + [sym_cast_expression] = STATE(671), + [sym_sizeof_expression] = STATE(671), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(671), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(671), + [sym_concatenated_string] = STATE(671), + [sym_string_literal] = STATE(431), + [sym__empty_declaration] = STATE(9), + [sym_macro_type_specifier] = STATE(870), + [aux_sym_translation_unit_repeat1] = STATE(9), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(81), + [aux_sym_preproc_include_token1] = ACTIONS(83), + [aux_sym_preproc_def_token1] = ACTIONS(85), + [aux_sym_preproc_if_token1] = ACTIONS(87), + [aux_sym_preproc_if_token2] = ACTIONS(89), + [aux_sym_preproc_ifdef_token1] = ACTIONS(91), + [aux_sym_preproc_ifdef_token2] = ACTIONS(91), + [aux_sym_preproc_else_token1] = ACTIONS(93), + [aux_sym_preproc_elif_token1] = ACTIONS(95), + [sym_preproc_directive] = ACTIONS(97), + [anon_sym_SEMI] = ACTIONS(99), + [anon_sym_typedef] = ACTIONS(101), + [anon_sym_extern] = ACTIONS(103), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), [sym_primitive_type] = ACTIONS(107), - [anon_sym_for] = ACTIONS(109), - [anon_sym_break] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(47), - [aux_sym_preproc_include_token1] = ACTIONS(113), - [anon_sym_DASH] = ACTIONS(61), - [anon_sym_static] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_register] = ACTIONS(63), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(115), - [anon_sym_switch] = ACTIONS(117), - [anon_sym_enum] = ACTIONS(69), - [sym_false] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [anon_sym_if] = ACTIONS(109), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_do] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), [anon_sym_return] = ACTIONS(119), - [anon_sym_continue] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(123), - [aux_sym_preproc_def_token1] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_auto] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), + [anon_sym_break] = ACTIONS(121), + [anon_sym_continue] = ACTIONS(123), + [anon_sym_goto] = ACTIONS(125), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(127), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(129), + [sym_false] = ACTIONS(129), + [sym_null] = ACTIONS(129), + [sym_comment] = ACTIONS(3), }, [3] = { - [sym_field_declaration_list] = STATE(48), - [anon_sym_LBRACE] = ACTIONS(127), - [sym_identifier] = ACTIONS(129), + [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(1258), + [sym_preproc_elif] = STATE(1258), + [sym_function_definition] = STATE(20), + [sym_declaration] = STATE(20), + [sym_type_definition] = STATE(20), + [sym__declaration_specifiers] = STATE(895), + [sym_linkage_specification] = STATE(20), + [sym_attribute_specifier] = STATE(661), + [sym_compound_statement] = STATE(20), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(870), + [sym_sized_type_specifier] = STATE(870), + [sym_enum_specifier] = STATE(870), + [sym_struct_specifier] = STATE(870), + [sym_union_specifier] = STATE(870), + [sym_labeled_statement] = STATE(20), + [sym_expression_statement] = STATE(20), + [sym_if_statement] = STATE(20), + [sym_switch_statement] = STATE(20), + [sym_while_statement] = STATE(20), + [sym_do_statement] = STATE(20), + [sym_for_statement] = STATE(20), + [sym_return_statement] = STATE(20), + [sym_break_statement] = STATE(20), + [sym_continue_statement] = STATE(20), + [sym_goto_statement] = STATE(20), + [sym__expression] = STATE(671), + [sym_comma_expression] = STATE(1275), + [sym_conditional_expression] = STATE(671), + [sym_assignment_expression] = STATE(671), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(671), + [sym_binary_expression] = STATE(671), + [sym_update_expression] = STATE(671), + [sym_cast_expression] = STATE(671), + [sym_sizeof_expression] = STATE(671), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(671), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(671), + [sym_concatenated_string] = STATE(671), + [sym_string_literal] = STATE(431), + [sym__empty_declaration] = STATE(20), + [sym_macro_type_specifier] = STATE(870), + [aux_sym_translation_unit_repeat1] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(81), + [aux_sym_preproc_include_token1] = ACTIONS(83), + [aux_sym_preproc_def_token1] = ACTIONS(85), + [aux_sym_preproc_if_token1] = ACTIONS(87), + [aux_sym_preproc_if_token2] = ACTIONS(131), + [aux_sym_preproc_ifdef_token1] = ACTIONS(91), + [aux_sym_preproc_ifdef_token2] = ACTIONS(91), + [aux_sym_preproc_else_token1] = ACTIONS(93), + [aux_sym_preproc_elif_token1] = ACTIONS(95), + [sym_preproc_directive] = ACTIONS(97), + [anon_sym_SEMI] = ACTIONS(99), + [anon_sym_typedef] = ACTIONS(101), + [anon_sym_extern] = ACTIONS(103), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [anon_sym_if] = ACTIONS(109), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_do] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_return] = ACTIONS(119), + [anon_sym_break] = ACTIONS(121), + [anon_sym_continue] = ACTIONS(123), + [anon_sym_goto] = ACTIONS(125), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(127), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(129), + [sym_false] = ACTIONS(129), + [sym_null] = ACTIONS(129), [sym_comment] = ACTIONS(3), }, [4] = { - [anon_sym_L_SQUOTE] = ACTIONS(131), - [anon_sym_union] = ACTIONS(133), - [anon_sym_RBRACK] = ACTIONS(131), - [anon_sym_unsigned] = ACTIONS(133), - [anon_sym_restrict] = ACTIONS(133), - [anon_sym_short] = ACTIONS(133), - [sym_true] = ACTIONS(133), - [sym_null] = ACTIONS(133), - [anon_sym_sizeof] = ACTIONS(133), - [anon_sym_AMP] = ACTIONS(131), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_const] = ACTIONS(133), - [anon_sym_LPAREN2] = ACTIONS(131), - [anon_sym_L_DQUOTE] = ACTIONS(131), - [anon_sym_DASH_DASH] = ACTIONS(131), - [anon_sym_COLON] = ACTIONS(131), - [anon_sym__Atomic] = ACTIONS(133), - [sym_primitive_type] = ACTIONS(133), - [sym_identifier] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(131), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_static] = ACTIONS(133), - [anon_sym_volatile] = ACTIONS(133), - [anon_sym_register] = ACTIONS(133), - [anon_sym_extern] = ACTIONS(133), - [anon_sym_STAR] = ACTIONS(131), - [sym_number_literal] = ACTIONS(131), - [anon_sym_struct] = ACTIONS(133), - [anon_sym_SQUOTE] = ACTIONS(131), - [anon_sym_signed] = ACTIONS(133), - [anon_sym_enum] = ACTIONS(133), - [anon_sym_long] = ACTIONS(133), - [sym_comment] = ACTIONS(3), - [anon_sym_DQUOTE] = ACTIONS(131), - [anon_sym_PLUS_PLUS] = ACTIONS(131), - [sym_false] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(131), - [anon_sym_SEMI] = ACTIONS(131), - [anon_sym_RPAREN] = ACTIONS(131), - [anon_sym_auto] = ACTIONS(133), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_inline] = ACTIONS(133), - [anon_sym___attribute__] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(131), + [sym_preproc_include] = STATE(3), + [sym_preproc_def] = STATE(3), + [sym_preproc_function_def] = STATE(3), + [sym_preproc_call] = STATE(3), + [sym_preproc_if] = STATE(3), + [sym_preproc_ifdef] = STATE(3), + [sym_preproc_else] = STATE(1210), + [sym_preproc_elif] = STATE(1210), + [sym_function_definition] = STATE(3), + [sym_declaration] = STATE(3), + [sym_type_definition] = STATE(3), + [sym__declaration_specifiers] = STATE(895), + [sym_linkage_specification] = STATE(3), + [sym_attribute_specifier] = STATE(661), + [sym_compound_statement] = STATE(3), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(870), + [sym_sized_type_specifier] = STATE(870), + [sym_enum_specifier] = STATE(870), + [sym_struct_specifier] = STATE(870), + [sym_union_specifier] = STATE(870), + [sym_labeled_statement] = STATE(3), + [sym_expression_statement] = STATE(3), + [sym_if_statement] = STATE(3), + [sym_switch_statement] = STATE(3), + [sym_while_statement] = STATE(3), + [sym_do_statement] = STATE(3), + [sym_for_statement] = STATE(3), + [sym_return_statement] = STATE(3), + [sym_break_statement] = STATE(3), + [sym_continue_statement] = STATE(3), + [sym_goto_statement] = STATE(3), + [sym__expression] = STATE(671), + [sym_comma_expression] = STATE(1275), + [sym_conditional_expression] = STATE(671), + [sym_assignment_expression] = STATE(671), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(671), + [sym_binary_expression] = STATE(671), + [sym_update_expression] = STATE(671), + [sym_cast_expression] = STATE(671), + [sym_sizeof_expression] = STATE(671), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(671), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(671), + [sym_concatenated_string] = STATE(671), + [sym_string_literal] = STATE(431), + [sym__empty_declaration] = STATE(3), + [sym_macro_type_specifier] = STATE(870), + [aux_sym_translation_unit_repeat1] = STATE(3), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(81), + [aux_sym_preproc_include_token1] = ACTIONS(83), + [aux_sym_preproc_def_token1] = ACTIONS(85), + [aux_sym_preproc_if_token1] = ACTIONS(87), + [aux_sym_preproc_if_token2] = ACTIONS(133), + [aux_sym_preproc_ifdef_token1] = ACTIONS(91), + [aux_sym_preproc_ifdef_token2] = ACTIONS(91), + [aux_sym_preproc_else_token1] = ACTIONS(93), + [aux_sym_preproc_elif_token1] = ACTIONS(95), + [sym_preproc_directive] = ACTIONS(97), + [anon_sym_SEMI] = ACTIONS(99), + [anon_sym_typedef] = ACTIONS(101), + [anon_sym_extern] = ACTIONS(103), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [anon_sym_if] = ACTIONS(109), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_do] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_return] = ACTIONS(119), + [anon_sym_break] = ACTIONS(121), + [anon_sym_continue] = ACTIONS(123), + [anon_sym_goto] = ACTIONS(125), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(127), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(129), + [sym_false] = ACTIONS(129), + [sym_null] = ACTIONS(129), + [sym_comment] = ACTIONS(3), }, [5] = { - [sym_if_statement] = STATE(50), - [sym_do_statement] = STATE(50), - [sym_for_statement] = STATE(50), - [sym__expression] = STATE(34), - [sym_comma_expression] = STATE(35), - [sym_binary_expression] = STATE(34), - [sym_update_expression] = STATE(34), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(50), - [sym_return_statement] = STATE(50), - [sym_break_statement] = STATE(50), - [sym_conditional_expression] = STATE(34), - [sym_assignment_expression] = STATE(34), - [sym_cast_expression] = STATE(34), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(34), - [sym_char_literal] = STATE(34), - [sym_labeled_statement] = STATE(50), - [sym_while_statement] = STATE(50), - [sym_continue_statement] = STATE(50), - [sym_goto_statement] = STATE(50), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(34), - [sym_sizeof_expression] = STATE(34), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(34), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(50), - [sym_expression_statement] = STATE(50), - [anon_sym_LBRACE] = ACTIONS(35), - [sym_true] = ACTIONS(5), - [sym_null] = ACTIONS(5), - [anon_sym_do] = ACTIONS(135), - [anon_sym_goto] = ACTIONS(9), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(137), - [anon_sym_for] = ACTIONS(139), - [anon_sym_break] = ACTIONS(57), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(141), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(67), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(5), - [anon_sym_return] = ACTIONS(73), - [anon_sym_while] = ACTIONS(143), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_SEMI] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [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(1176), + [sym_preproc_elif] = STATE(1176), + [sym_function_definition] = STATE(20), + [sym_declaration] = STATE(20), + [sym_type_definition] = STATE(20), + [sym__declaration_specifiers] = STATE(895), + [sym_linkage_specification] = STATE(20), + [sym_attribute_specifier] = STATE(661), + [sym_compound_statement] = STATE(20), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(870), + [sym_sized_type_specifier] = STATE(870), + [sym_enum_specifier] = STATE(870), + [sym_struct_specifier] = STATE(870), + [sym_union_specifier] = STATE(870), + [sym_labeled_statement] = STATE(20), + [sym_expression_statement] = STATE(20), + [sym_if_statement] = STATE(20), + [sym_switch_statement] = STATE(20), + [sym_while_statement] = STATE(20), + [sym_do_statement] = STATE(20), + [sym_for_statement] = STATE(20), + [sym_return_statement] = STATE(20), + [sym_break_statement] = STATE(20), + [sym_continue_statement] = STATE(20), + [sym_goto_statement] = STATE(20), + [sym__expression] = STATE(671), + [sym_comma_expression] = STATE(1275), + [sym_conditional_expression] = STATE(671), + [sym_assignment_expression] = STATE(671), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(671), + [sym_binary_expression] = STATE(671), + [sym_update_expression] = STATE(671), + [sym_cast_expression] = STATE(671), + [sym_sizeof_expression] = STATE(671), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(671), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(671), + [sym_concatenated_string] = STATE(671), + [sym_string_literal] = STATE(431), + [sym__empty_declaration] = STATE(20), + [sym_macro_type_specifier] = STATE(870), + [aux_sym_translation_unit_repeat1] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(81), + [aux_sym_preproc_include_token1] = ACTIONS(83), + [aux_sym_preproc_def_token1] = ACTIONS(85), + [aux_sym_preproc_if_token1] = ACTIONS(87), + [aux_sym_preproc_if_token2] = ACTIONS(135), + [aux_sym_preproc_ifdef_token1] = ACTIONS(91), + [aux_sym_preproc_ifdef_token2] = ACTIONS(91), + [aux_sym_preproc_else_token1] = ACTIONS(93), + [aux_sym_preproc_elif_token1] = ACTIONS(95), + [sym_preproc_directive] = ACTIONS(97), + [anon_sym_SEMI] = ACTIONS(99), + [anon_sym_typedef] = ACTIONS(101), + [anon_sym_extern] = ACTIONS(103), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [anon_sym_if] = ACTIONS(109), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_do] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_return] = ACTIONS(119), + [anon_sym_break] = ACTIONS(121), + [anon_sym_continue] = ACTIONS(123), + [anon_sym_goto] = ACTIONS(125), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(127), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(129), + [sym_false] = ACTIONS(129), + [sym_null] = ACTIONS(129), + [sym_comment] = ACTIONS(3), }, [6] = { - [sym_identifier] = ACTIONS(145), + [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(1175), + [sym_preproc_elif] = STATE(1175), + [sym_function_definition] = STATE(20), + [sym_declaration] = STATE(20), + [sym_type_definition] = STATE(20), + [sym__declaration_specifiers] = STATE(895), + [sym_linkage_specification] = STATE(20), + [sym_attribute_specifier] = STATE(661), + [sym_compound_statement] = STATE(20), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(870), + [sym_sized_type_specifier] = STATE(870), + [sym_enum_specifier] = STATE(870), + [sym_struct_specifier] = STATE(870), + [sym_union_specifier] = STATE(870), + [sym_labeled_statement] = STATE(20), + [sym_expression_statement] = STATE(20), + [sym_if_statement] = STATE(20), + [sym_switch_statement] = STATE(20), + [sym_while_statement] = STATE(20), + [sym_do_statement] = STATE(20), + [sym_for_statement] = STATE(20), + [sym_return_statement] = STATE(20), + [sym_break_statement] = STATE(20), + [sym_continue_statement] = STATE(20), + [sym_goto_statement] = STATE(20), + [sym__expression] = STATE(671), + [sym_comma_expression] = STATE(1275), + [sym_conditional_expression] = STATE(671), + [sym_assignment_expression] = STATE(671), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(671), + [sym_binary_expression] = STATE(671), + [sym_update_expression] = STATE(671), + [sym_cast_expression] = STATE(671), + [sym_sizeof_expression] = STATE(671), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(671), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(671), + [sym_concatenated_string] = STATE(671), + [sym_string_literal] = STATE(431), + [sym__empty_declaration] = STATE(20), + [sym_macro_type_specifier] = STATE(870), + [aux_sym_translation_unit_repeat1] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(81), + [aux_sym_preproc_include_token1] = ACTIONS(83), + [aux_sym_preproc_def_token1] = ACTIONS(85), + [aux_sym_preproc_if_token1] = ACTIONS(87), + [aux_sym_preproc_if_token2] = ACTIONS(137), + [aux_sym_preproc_ifdef_token1] = ACTIONS(91), + [aux_sym_preproc_ifdef_token2] = ACTIONS(91), + [aux_sym_preproc_else_token1] = ACTIONS(93), + [aux_sym_preproc_elif_token1] = ACTIONS(95), + [sym_preproc_directive] = ACTIONS(97), + [anon_sym_SEMI] = ACTIONS(99), + [anon_sym_typedef] = ACTIONS(101), + [anon_sym_extern] = ACTIONS(103), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [anon_sym_if] = ACTIONS(109), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_do] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_return] = ACTIONS(119), + [anon_sym_break] = ACTIONS(121), + [anon_sym_continue] = ACTIONS(123), + [anon_sym_goto] = ACTIONS(125), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(127), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(129), + [sym_false] = ACTIONS(129), + [sym_null] = ACTIONS(129), [sym_comment] = ACTIONS(3), }, [7] = { - [sym_comment] = ACTIONS(147), - [anon_sym_LF] = ACTIONS(149), - [sym_preproc_arg] = ACTIONS(151), + [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(1255), + [sym_preproc_elif] = STATE(1255), + [sym_function_definition] = STATE(20), + [sym_declaration] = STATE(20), + [sym_type_definition] = STATE(20), + [sym__declaration_specifiers] = STATE(895), + [sym_linkage_specification] = STATE(20), + [sym_attribute_specifier] = STATE(661), + [sym_compound_statement] = STATE(20), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(870), + [sym_sized_type_specifier] = STATE(870), + [sym_enum_specifier] = STATE(870), + [sym_struct_specifier] = STATE(870), + [sym_union_specifier] = STATE(870), + [sym_labeled_statement] = STATE(20), + [sym_expression_statement] = STATE(20), + [sym_if_statement] = STATE(20), + [sym_switch_statement] = STATE(20), + [sym_while_statement] = STATE(20), + [sym_do_statement] = STATE(20), + [sym_for_statement] = STATE(20), + [sym_return_statement] = STATE(20), + [sym_break_statement] = STATE(20), + [sym_continue_statement] = STATE(20), + [sym_goto_statement] = STATE(20), + [sym__expression] = STATE(671), + [sym_comma_expression] = STATE(1275), + [sym_conditional_expression] = STATE(671), + [sym_assignment_expression] = STATE(671), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(671), + [sym_binary_expression] = STATE(671), + [sym_update_expression] = STATE(671), + [sym_cast_expression] = STATE(671), + [sym_sizeof_expression] = STATE(671), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(671), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(671), + [sym_concatenated_string] = STATE(671), + [sym_string_literal] = STATE(431), + [sym__empty_declaration] = STATE(20), + [sym_macro_type_specifier] = STATE(870), + [aux_sym_translation_unit_repeat1] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(81), + [aux_sym_preproc_include_token1] = ACTIONS(83), + [aux_sym_preproc_def_token1] = ACTIONS(85), + [aux_sym_preproc_if_token1] = ACTIONS(87), + [aux_sym_preproc_if_token2] = ACTIONS(139), + [aux_sym_preproc_ifdef_token1] = ACTIONS(91), + [aux_sym_preproc_ifdef_token2] = ACTIONS(91), + [aux_sym_preproc_else_token1] = ACTIONS(93), + [aux_sym_preproc_elif_token1] = ACTIONS(95), + [sym_preproc_directive] = ACTIONS(97), + [anon_sym_SEMI] = ACTIONS(99), + [anon_sym_typedef] = ACTIONS(101), + [anon_sym_extern] = ACTIONS(103), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [anon_sym_if] = ACTIONS(109), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_do] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_return] = ACTIONS(119), + [anon_sym_break] = ACTIONS(121), + [anon_sym_continue] = ACTIONS(123), + [anon_sym_goto] = ACTIONS(125), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(127), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(129), + [sym_false] = ACTIONS(129), + [sym_null] = ACTIONS(129), + [sym_comment] = ACTIONS(3), }, [8] = { - [sym_char_literal] = STATE(54), - [sym__expression] = STATE(54), - [sym_binary_expression] = STATE(54), - [sym_update_expression] = STATE(54), - [sym_call_expression] = STATE(54), - [sym_pointer_expression] = STATE(54), - [sym_unary_expression] = STATE(54), - [sym_sizeof_expression] = STATE(54), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(54), - [sym_concatenated_string] = STATE(54), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(54), - [sym_assignment_expression] = STATE(54), - [sym_cast_expression] = STATE(54), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(54), - [sym_true] = ACTIONS(153), - [sym_null] = ACTIONS(153), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(155), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(159), - [sym_identifier] = ACTIONS(153), - [anon_sym_BANG] = ACTIONS(155), - [anon_sym_DASH] = ACTIONS(161), - [sym_number_literal] = ACTIONS(163), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(159), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(165), + [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(1276), + [sym_preproc_elif] = STATE(1276), + [sym_function_definition] = STATE(20), + [sym_declaration] = STATE(20), + [sym_type_definition] = STATE(20), + [sym__declaration_specifiers] = STATE(895), + [sym_linkage_specification] = STATE(20), + [sym_attribute_specifier] = STATE(661), + [sym_compound_statement] = STATE(20), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(870), + [sym_sized_type_specifier] = STATE(870), + [sym_enum_specifier] = STATE(870), + [sym_struct_specifier] = STATE(870), + [sym_union_specifier] = STATE(870), + [sym_labeled_statement] = STATE(20), + [sym_expression_statement] = STATE(20), + [sym_if_statement] = STATE(20), + [sym_switch_statement] = STATE(20), + [sym_while_statement] = STATE(20), + [sym_do_statement] = STATE(20), + [sym_for_statement] = STATE(20), + [sym_return_statement] = STATE(20), + [sym_break_statement] = STATE(20), + [sym_continue_statement] = STATE(20), + [sym_goto_statement] = STATE(20), + [sym__expression] = STATE(671), + [sym_comma_expression] = STATE(1275), + [sym_conditional_expression] = STATE(671), + [sym_assignment_expression] = STATE(671), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(671), + [sym_binary_expression] = STATE(671), + [sym_update_expression] = STATE(671), + [sym_cast_expression] = STATE(671), + [sym_sizeof_expression] = STATE(671), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(671), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(671), + [sym_concatenated_string] = STATE(671), + [sym_string_literal] = STATE(431), + [sym__empty_declaration] = STATE(20), + [sym_macro_type_specifier] = STATE(870), + [aux_sym_translation_unit_repeat1] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(81), + [aux_sym_preproc_include_token1] = ACTIONS(83), + [aux_sym_preproc_def_token1] = ACTIONS(85), + [aux_sym_preproc_if_token1] = ACTIONS(87), + [aux_sym_preproc_if_token2] = ACTIONS(141), + [aux_sym_preproc_ifdef_token1] = ACTIONS(91), + [aux_sym_preproc_ifdef_token2] = ACTIONS(91), + [aux_sym_preproc_else_token1] = ACTIONS(93), + [aux_sym_preproc_elif_token1] = ACTIONS(95), + [sym_preproc_directive] = ACTIONS(97), + [anon_sym_SEMI] = ACTIONS(99), + [anon_sym_typedef] = ACTIONS(101), + [anon_sym_extern] = ACTIONS(103), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [anon_sym_if] = ACTIONS(109), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_do] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_return] = ACTIONS(119), + [anon_sym_break] = ACTIONS(121), + [anon_sym_continue] = ACTIONS(123), + [anon_sym_goto] = ACTIONS(125), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(127), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(129), + [sym_false] = ACTIONS(129), + [sym_null] = ACTIONS(129), + [sym_comment] = ACTIONS(3), }, [9] = { - [sym_preproc_arg] = ACTIONS(167), - [sym_comment] = ACTIONS(147), + [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(1243), + [sym_preproc_elif] = STATE(1243), + [sym_function_definition] = STATE(20), + [sym_declaration] = STATE(20), + [sym_type_definition] = STATE(20), + [sym__declaration_specifiers] = STATE(895), + [sym_linkage_specification] = STATE(20), + [sym_attribute_specifier] = STATE(661), + [sym_compound_statement] = STATE(20), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(870), + [sym_sized_type_specifier] = STATE(870), + [sym_enum_specifier] = STATE(870), + [sym_struct_specifier] = STATE(870), + [sym_union_specifier] = STATE(870), + [sym_labeled_statement] = STATE(20), + [sym_expression_statement] = STATE(20), + [sym_if_statement] = STATE(20), + [sym_switch_statement] = STATE(20), + [sym_while_statement] = STATE(20), + [sym_do_statement] = STATE(20), + [sym_for_statement] = STATE(20), + [sym_return_statement] = STATE(20), + [sym_break_statement] = STATE(20), + [sym_continue_statement] = STATE(20), + [sym_goto_statement] = STATE(20), + [sym__expression] = STATE(671), + [sym_comma_expression] = STATE(1275), + [sym_conditional_expression] = STATE(671), + [sym_assignment_expression] = STATE(671), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(671), + [sym_binary_expression] = STATE(671), + [sym_update_expression] = STATE(671), + [sym_cast_expression] = STATE(671), + [sym_sizeof_expression] = STATE(671), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(671), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(671), + [sym_concatenated_string] = STATE(671), + [sym_string_literal] = STATE(431), + [sym__empty_declaration] = STATE(20), + [sym_macro_type_specifier] = STATE(870), + [aux_sym_translation_unit_repeat1] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(81), + [aux_sym_preproc_include_token1] = ACTIONS(83), + [aux_sym_preproc_def_token1] = ACTIONS(85), + [aux_sym_preproc_if_token1] = ACTIONS(87), + [aux_sym_preproc_if_token2] = ACTIONS(143), + [aux_sym_preproc_ifdef_token1] = ACTIONS(91), + [aux_sym_preproc_ifdef_token2] = ACTIONS(91), + [aux_sym_preproc_else_token1] = ACTIONS(93), + [aux_sym_preproc_elif_token1] = ACTIONS(95), + [sym_preproc_directive] = ACTIONS(97), + [anon_sym_SEMI] = ACTIONS(99), + [anon_sym_typedef] = ACTIONS(101), + [anon_sym_extern] = ACTIONS(103), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [anon_sym_if] = ACTIONS(109), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_do] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_return] = ACTIONS(119), + [anon_sym_break] = ACTIONS(121), + [anon_sym_continue] = ACTIONS(123), + [anon_sym_goto] = ACTIONS(125), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(127), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(129), + [sym_false] = ACTIONS(129), + [sym_null] = ACTIONS(129), + [sym_comment] = ACTIONS(3), }, [10] = { - [sym_char_literal] = STATE(56), - [sym__expression] = STATE(56), - [sym_binary_expression] = STATE(56), - [sym_update_expression] = STATE(56), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(56), - [sym_sizeof_expression] = STATE(56), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(56), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(56), - [sym_assignment_expression] = STATE(56), - [sym_cast_expression] = STATE(56), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(56), - [sym_true] = ACTIONS(169), - [sym_null] = ACTIONS(169), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(173), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [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(1270), + [sym_preproc_elif] = STATE(1270), + [sym_function_definition] = STATE(7), + [sym_declaration] = STATE(7), + [sym_type_definition] = STATE(7), + [sym__declaration_specifiers] = STATE(895), + [sym_linkage_specification] = STATE(7), + [sym_attribute_specifier] = STATE(661), + [sym_compound_statement] = STATE(7), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(870), + [sym_sized_type_specifier] = STATE(870), + [sym_enum_specifier] = STATE(870), + [sym_struct_specifier] = STATE(870), + [sym_union_specifier] = STATE(870), + [sym_labeled_statement] = STATE(7), + [sym_expression_statement] = STATE(7), + [sym_if_statement] = STATE(7), + [sym_switch_statement] = STATE(7), + [sym_while_statement] = STATE(7), + [sym_do_statement] = STATE(7), + [sym_for_statement] = STATE(7), + [sym_return_statement] = STATE(7), + [sym_break_statement] = STATE(7), + [sym_continue_statement] = STATE(7), + [sym_goto_statement] = STATE(7), + [sym__expression] = STATE(671), + [sym_comma_expression] = STATE(1275), + [sym_conditional_expression] = STATE(671), + [sym_assignment_expression] = STATE(671), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(671), + [sym_binary_expression] = STATE(671), + [sym_update_expression] = STATE(671), + [sym_cast_expression] = STATE(671), + [sym_sizeof_expression] = STATE(671), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(671), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(671), + [sym_concatenated_string] = STATE(671), + [sym_string_literal] = STATE(431), + [sym__empty_declaration] = STATE(7), + [sym_macro_type_specifier] = STATE(870), + [aux_sym_translation_unit_repeat1] = STATE(7), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(81), + [aux_sym_preproc_include_token1] = ACTIONS(83), + [aux_sym_preproc_def_token1] = ACTIONS(85), + [aux_sym_preproc_if_token1] = ACTIONS(87), + [aux_sym_preproc_if_token2] = ACTIONS(145), + [aux_sym_preproc_ifdef_token1] = ACTIONS(91), + [aux_sym_preproc_ifdef_token2] = ACTIONS(91), + [aux_sym_preproc_else_token1] = ACTIONS(93), + [aux_sym_preproc_elif_token1] = ACTIONS(95), + [sym_preproc_directive] = ACTIONS(97), + [anon_sym_SEMI] = ACTIONS(99), + [anon_sym_typedef] = ACTIONS(101), + [anon_sym_extern] = ACTIONS(103), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [anon_sym_if] = ACTIONS(109), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_do] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_return] = ACTIONS(119), + [anon_sym_break] = ACTIONS(121), + [anon_sym_continue] = ACTIONS(123), + [anon_sym_goto] = ACTIONS(125), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(127), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(129), + [sym_false] = ACTIONS(129), + [sym_null] = ACTIONS(129), + [sym_comment] = ACTIONS(3), }, [11] = { - [sym__expression] = STATE(59), - [sym_comma_expression] = STATE(61), - [sym_binary_expression] = STATE(59), - [sym_update_expression] = STATE(59), - [sym_call_expression] = STATE(36), - [sym_type_qualifier] = STATE(60), - [sym__type_specifier] = STATE(62), - [aux_sym_sized_type_specifier_repeat1] = STATE(509), - [sym_union_specifier] = STATE(62), - [sym_conditional_expression] = STATE(59), - [sym_assignment_expression] = STATE(59), - [sym_cast_expression] = STATE(59), - [sym_type_descriptor] = STATE(58), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(59), - [sym_char_literal] = STATE(59), - [aux_sym_type_definition_repeat1] = STATE(60), - [sym_sized_type_specifier] = STATE(62), - [sym_enum_specifier] = STATE(62), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(59), - [sym_sizeof_expression] = STATE(59), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(59), - [sym_string_literal] = STATE(41), - [sym_macro_type_specifier] = STATE(62), - [sym_struct_specifier] = STATE(62), - [anon_sym_union] = ACTIONS(37), - [sym_true] = ACTIONS(175), - [anon_sym_restrict] = ACTIONS(7), - [sym_null] = ACTIONS(175), - [anon_sym_unsigned] = ACTIONS(177), - [anon_sym_short] = ACTIONS(177), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_const] = ACTIONS(7), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_DASH_DASH] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(7), - [sym_primitive_type] = ACTIONS(179), - [sym_identifier] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(183), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_struct] = ACTIONS(25), - [anon_sym_signed] = ACTIONS(177), - [anon_sym_enum] = ACTIONS(69), - [sym_false] = ACTIONS(175), - [anon_sym_long] = ACTIONS(177), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [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(1293), + [sym_preproc_elif] = STATE(1293), + [sym_function_definition] = STATE(15), + [sym_declaration] = STATE(15), + [sym_type_definition] = STATE(15), + [sym__declaration_specifiers] = STATE(895), + [sym_linkage_specification] = STATE(15), + [sym_attribute_specifier] = STATE(661), + [sym_compound_statement] = STATE(15), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(870), + [sym_sized_type_specifier] = STATE(870), + [sym_enum_specifier] = STATE(870), + [sym_struct_specifier] = STATE(870), + [sym_union_specifier] = STATE(870), + [sym_labeled_statement] = STATE(15), + [sym_expression_statement] = STATE(15), + [sym_if_statement] = STATE(15), + [sym_switch_statement] = STATE(15), + [sym_while_statement] = STATE(15), + [sym_do_statement] = STATE(15), + [sym_for_statement] = STATE(15), + [sym_return_statement] = STATE(15), + [sym_break_statement] = STATE(15), + [sym_continue_statement] = STATE(15), + [sym_goto_statement] = STATE(15), + [sym__expression] = STATE(671), + [sym_comma_expression] = STATE(1275), + [sym_conditional_expression] = STATE(671), + [sym_assignment_expression] = STATE(671), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(671), + [sym_binary_expression] = STATE(671), + [sym_update_expression] = STATE(671), + [sym_cast_expression] = STATE(671), + [sym_sizeof_expression] = STATE(671), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(671), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(671), + [sym_concatenated_string] = STATE(671), + [sym_string_literal] = STATE(431), + [sym__empty_declaration] = STATE(15), + [sym_macro_type_specifier] = STATE(870), + [aux_sym_translation_unit_repeat1] = STATE(15), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(81), + [aux_sym_preproc_include_token1] = ACTIONS(83), + [aux_sym_preproc_def_token1] = ACTIONS(85), + [aux_sym_preproc_if_token1] = ACTIONS(87), + [aux_sym_preproc_if_token2] = ACTIONS(147), + [aux_sym_preproc_ifdef_token1] = ACTIONS(91), + [aux_sym_preproc_ifdef_token2] = ACTIONS(91), + [aux_sym_preproc_else_token1] = ACTIONS(93), + [aux_sym_preproc_elif_token1] = ACTIONS(95), + [sym_preproc_directive] = ACTIONS(97), + [anon_sym_SEMI] = ACTIONS(99), + [anon_sym_typedef] = ACTIONS(101), + [anon_sym_extern] = ACTIONS(103), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [anon_sym_if] = ACTIONS(109), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_do] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_return] = ACTIONS(119), + [anon_sym_break] = ACTIONS(121), + [anon_sym_continue] = ACTIONS(123), + [anon_sym_goto] = ACTIONS(125), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(127), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(129), + [sym_false] = ACTIONS(129), + [sym_null] = ACTIONS(129), + [sym_comment] = ACTIONS(3), }, [12] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_union_specifier] = STATE(64), - [sym__type_specifier] = STATE(64), - [aux_sym_type_definition_repeat1] = STATE(65), - [sym_sized_type_specifier] = STATE(64), - [sym_enum_specifier] = STATE(64), - [sym_macro_type_specifier] = STATE(64), - [sym_struct_specifier] = STATE(64), - [sym_type_qualifier] = STATE(65), - [anon_sym_union] = ACTIONS(37), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(7), - [anon_sym_short] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_struct] = ACTIONS(25), - [anon_sym_signed] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(27), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_const] = ACTIONS(7), - [anon_sym__Atomic] = ACTIONS(7), - [sym_primitive_type] = ACTIONS(185), - [sym_identifier] = ACTIONS(187), + [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(1295), + [sym_preproc_elif] = STATE(1295), + [sym_function_definition] = STATE(19), + [sym_declaration] = STATE(19), + [sym_type_definition] = STATE(19), + [sym__declaration_specifiers] = STATE(895), + [sym_linkage_specification] = STATE(19), + [sym_attribute_specifier] = STATE(661), + [sym_compound_statement] = STATE(19), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(870), + [sym_sized_type_specifier] = STATE(870), + [sym_enum_specifier] = STATE(870), + [sym_struct_specifier] = STATE(870), + [sym_union_specifier] = STATE(870), + [sym_labeled_statement] = STATE(19), + [sym_expression_statement] = STATE(19), + [sym_if_statement] = STATE(19), + [sym_switch_statement] = STATE(19), + [sym_while_statement] = STATE(19), + [sym_do_statement] = STATE(19), + [sym_for_statement] = STATE(19), + [sym_return_statement] = STATE(19), + [sym_break_statement] = STATE(19), + [sym_continue_statement] = STATE(19), + [sym_goto_statement] = STATE(19), + [sym__expression] = STATE(671), + [sym_comma_expression] = STATE(1275), + [sym_conditional_expression] = STATE(671), + [sym_assignment_expression] = STATE(671), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(671), + [sym_binary_expression] = STATE(671), + [sym_update_expression] = STATE(671), + [sym_cast_expression] = STATE(671), + [sym_sizeof_expression] = STATE(671), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(671), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(671), + [sym_concatenated_string] = STATE(671), + [sym_string_literal] = STATE(431), + [sym__empty_declaration] = STATE(19), + [sym_macro_type_specifier] = STATE(870), + [aux_sym_translation_unit_repeat1] = STATE(19), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(81), + [aux_sym_preproc_include_token1] = ACTIONS(83), + [aux_sym_preproc_def_token1] = ACTIONS(85), + [aux_sym_preproc_if_token1] = ACTIONS(87), + [aux_sym_preproc_if_token2] = ACTIONS(149), + [aux_sym_preproc_ifdef_token1] = ACTIONS(91), + [aux_sym_preproc_ifdef_token2] = ACTIONS(91), + [aux_sym_preproc_else_token1] = ACTIONS(93), + [aux_sym_preproc_elif_token1] = ACTIONS(95), + [sym_preproc_directive] = ACTIONS(97), + [anon_sym_SEMI] = ACTIONS(99), + [anon_sym_typedef] = ACTIONS(101), + [anon_sym_extern] = ACTIONS(103), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [anon_sym_if] = ACTIONS(109), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_do] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_return] = ACTIONS(119), + [anon_sym_break] = ACTIONS(121), + [anon_sym_continue] = ACTIONS(123), + [anon_sym_goto] = ACTIONS(125), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(127), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(129), + [sym_false] = ACTIONS(129), + [sym_null] = ACTIONS(129), + [sym_comment] = ACTIONS(3), }, [13] = { - [sym_char_literal] = STATE(66), - [sym__expression] = STATE(66), - [sym_binary_expression] = STATE(66), - [sym_update_expression] = STATE(66), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(66), - [sym_sizeof_expression] = STATE(66), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(66), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(66), - [sym_assignment_expression] = STATE(66), - [sym_cast_expression] = STATE(66), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(66), - [sym_true] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(191), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(189), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [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(1242), + [sym_preproc_elif] = STATE(1242), + [sym_function_definition] = STATE(8), + [sym_declaration] = STATE(8), + [sym_type_definition] = STATE(8), + [sym__declaration_specifiers] = STATE(895), + [sym_linkage_specification] = STATE(8), + [sym_attribute_specifier] = STATE(661), + [sym_compound_statement] = STATE(8), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(870), + [sym_sized_type_specifier] = STATE(870), + [sym_enum_specifier] = STATE(870), + [sym_struct_specifier] = STATE(870), + [sym_union_specifier] = STATE(870), + [sym_labeled_statement] = STATE(8), + [sym_expression_statement] = STATE(8), + [sym_if_statement] = STATE(8), + [sym_switch_statement] = STATE(8), + [sym_while_statement] = STATE(8), + [sym_do_statement] = STATE(8), + [sym_for_statement] = STATE(8), + [sym_return_statement] = STATE(8), + [sym_break_statement] = STATE(8), + [sym_continue_statement] = STATE(8), + [sym_goto_statement] = STATE(8), + [sym__expression] = STATE(671), + [sym_comma_expression] = STATE(1275), + [sym_conditional_expression] = STATE(671), + [sym_assignment_expression] = STATE(671), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(671), + [sym_binary_expression] = STATE(671), + [sym_update_expression] = STATE(671), + [sym_cast_expression] = STATE(671), + [sym_sizeof_expression] = STATE(671), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(671), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(671), + [sym_concatenated_string] = STATE(671), + [sym_string_literal] = STATE(431), + [sym__empty_declaration] = STATE(8), + [sym_macro_type_specifier] = STATE(870), + [aux_sym_translation_unit_repeat1] = STATE(8), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(81), + [aux_sym_preproc_include_token1] = ACTIONS(83), + [aux_sym_preproc_def_token1] = ACTIONS(85), + [aux_sym_preproc_if_token1] = ACTIONS(87), + [aux_sym_preproc_if_token2] = ACTIONS(151), + [aux_sym_preproc_ifdef_token1] = ACTIONS(91), + [aux_sym_preproc_ifdef_token2] = ACTIONS(91), + [aux_sym_preproc_else_token1] = ACTIONS(93), + [aux_sym_preproc_elif_token1] = ACTIONS(95), + [sym_preproc_directive] = ACTIONS(97), + [anon_sym_SEMI] = ACTIONS(99), + [anon_sym_typedef] = ACTIONS(101), + [anon_sym_extern] = ACTIONS(103), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [anon_sym_if] = ACTIONS(109), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_do] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_return] = ACTIONS(119), + [anon_sym_break] = ACTIONS(121), + [anon_sym_continue] = ACTIONS(123), + [anon_sym_goto] = ACTIONS(125), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(127), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(129), + [sym_false] = ACTIONS(129), + [sym_null] = ACTIONS(129), + [sym_comment] = ACTIONS(3), }, [14] = { - [aux_sym_string_literal_repeat1] = STATE(68), - [sym_comment] = ACTIONS(147), - [sym_escape_sequence] = ACTIONS(193), - [aux_sym_string_literal_token1] = ACTIONS(193), - [anon_sym_DQUOTE] = ACTIONS(195), + [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(1119), + [sym_preproc_elif] = STATE(1119), + [sym_function_definition] = STATE(20), + [sym_declaration] = STATE(20), + [sym_type_definition] = STATE(20), + [sym__declaration_specifiers] = STATE(895), + [sym_linkage_specification] = STATE(20), + [sym_attribute_specifier] = STATE(661), + [sym_compound_statement] = STATE(20), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(870), + [sym_sized_type_specifier] = STATE(870), + [sym_enum_specifier] = STATE(870), + [sym_struct_specifier] = STATE(870), + [sym_union_specifier] = STATE(870), + [sym_labeled_statement] = STATE(20), + [sym_expression_statement] = STATE(20), + [sym_if_statement] = STATE(20), + [sym_switch_statement] = STATE(20), + [sym_while_statement] = STATE(20), + [sym_do_statement] = STATE(20), + [sym_for_statement] = STATE(20), + [sym_return_statement] = STATE(20), + [sym_break_statement] = STATE(20), + [sym_continue_statement] = STATE(20), + [sym_goto_statement] = STATE(20), + [sym__expression] = STATE(671), + [sym_comma_expression] = STATE(1275), + [sym_conditional_expression] = STATE(671), + [sym_assignment_expression] = STATE(671), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(671), + [sym_binary_expression] = STATE(671), + [sym_update_expression] = STATE(671), + [sym_cast_expression] = STATE(671), + [sym_sizeof_expression] = STATE(671), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(671), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(671), + [sym_concatenated_string] = STATE(671), + [sym_string_literal] = STATE(431), + [sym__empty_declaration] = STATE(20), + [sym_macro_type_specifier] = STATE(870), + [aux_sym_translation_unit_repeat1] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(81), + [aux_sym_preproc_include_token1] = ACTIONS(83), + [aux_sym_preproc_def_token1] = ACTIONS(85), + [aux_sym_preproc_if_token1] = ACTIONS(87), + [aux_sym_preproc_if_token2] = ACTIONS(153), + [aux_sym_preproc_ifdef_token1] = ACTIONS(91), + [aux_sym_preproc_ifdef_token2] = ACTIONS(91), + [aux_sym_preproc_else_token1] = ACTIONS(93), + [aux_sym_preproc_elif_token1] = ACTIONS(95), + [sym_preproc_directive] = ACTIONS(97), + [anon_sym_SEMI] = ACTIONS(99), + [anon_sym_typedef] = ACTIONS(101), + [anon_sym_extern] = ACTIONS(103), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [anon_sym_if] = ACTIONS(109), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_do] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_return] = ACTIONS(119), + [anon_sym_break] = ACTIONS(121), + [anon_sym_continue] = ACTIONS(123), + [anon_sym_goto] = ACTIONS(125), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(127), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(129), + [sym_false] = ACTIONS(129), + [sym_null] = ACTIONS(129), + [sym_comment] = ACTIONS(3), }, [15] = { - [anon_sym_LT] = ACTIONS(197), - [anon_sym_GT_GT] = ACTIONS(197), - [anon_sym_PIPE_EQ] = ACTIONS(199), - [anon_sym_restrict] = ACTIONS(201), - [anon_sym_PERCENT_EQ] = ACTIONS(199), - [anon_sym_AMP_EQ] = ACTIONS(199), - [anon_sym_DASH_EQ] = ACTIONS(199), - [anon_sym_PIPE] = ACTIONS(197), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_EQ_EQ] = ACTIONS(203), - [anon_sym_AMP] = ACTIONS(197), - [anon_sym_SLASH] = ACTIONS(197), - [anon_sym_DASH_GT] = ACTIONS(203), - [anon_sym_const] = ACTIONS(201), - [anon_sym_LPAREN2] = ACTIONS(205), - [anon_sym_GT_EQ] = ACTIONS(203), - [anon_sym_LT_LT] = ACTIONS(197), - [anon_sym_DASH_DASH] = ACTIONS(203), - [anon_sym_EQ] = ACTIONS(209), - [anon_sym_COLON] = ACTIONS(211), - [anon_sym__Atomic] = ACTIONS(201), - [sym_identifier] = ACTIONS(201), - [anon_sym_PLUS_EQ] = ACTIONS(199), - [anon_sym_STAR_EQ] = ACTIONS(199), - [anon_sym_LT_LT_EQ] = ACTIONS(199), - [anon_sym_QMARK] = ACTIONS(203), - [anon_sym_PIPE_PIPE] = ACTIONS(203), - [anon_sym_BANG_EQ] = ACTIONS(203), - [anon_sym_CARET_EQ] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(203), - [anon_sym_static] = ACTIONS(201), - [anon_sym_volatile] = ACTIONS(201), - [anon_sym_register] = ACTIONS(201), - [anon_sym_extern] = ACTIONS(201), - [anon_sym_STAR] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_LT_EQ] = ACTIONS(203), - [anon_sym_PLUS_PLUS] = ACTIONS(203), - [sym_comment] = ACTIONS(3), - [anon_sym_SLASH_EQ] = ACTIONS(199), - [anon_sym_GT_GT_EQ] = ACTIONS(199), - [anon_sym_AMP_AMP] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(216), - [anon_sym_CARET] = ACTIONS(197), - [anon_sym_GT] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_auto] = ACTIONS(201), - [anon_sym_DOT] = ACTIONS(203), - [anon_sym_inline] = ACTIONS(201), - [anon_sym___attribute__] = ACTIONS(201), - [anon_sym_LBRACK] = ACTIONS(203), + [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(1246), + [sym_preproc_elif] = STATE(1246), + [sym_function_definition] = STATE(20), + [sym_declaration] = STATE(20), + [sym_type_definition] = STATE(20), + [sym__declaration_specifiers] = STATE(895), + [sym_linkage_specification] = STATE(20), + [sym_attribute_specifier] = STATE(661), + [sym_compound_statement] = STATE(20), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(870), + [sym_sized_type_specifier] = STATE(870), + [sym_enum_specifier] = STATE(870), + [sym_struct_specifier] = STATE(870), + [sym_union_specifier] = STATE(870), + [sym_labeled_statement] = STATE(20), + [sym_expression_statement] = STATE(20), + [sym_if_statement] = STATE(20), + [sym_switch_statement] = STATE(20), + [sym_while_statement] = STATE(20), + [sym_do_statement] = STATE(20), + [sym_for_statement] = STATE(20), + [sym_return_statement] = STATE(20), + [sym_break_statement] = STATE(20), + [sym_continue_statement] = STATE(20), + [sym_goto_statement] = STATE(20), + [sym__expression] = STATE(671), + [sym_comma_expression] = STATE(1275), + [sym_conditional_expression] = STATE(671), + [sym_assignment_expression] = STATE(671), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(671), + [sym_binary_expression] = STATE(671), + [sym_update_expression] = STATE(671), + [sym_cast_expression] = STATE(671), + [sym_sizeof_expression] = STATE(671), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(671), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(671), + [sym_concatenated_string] = STATE(671), + [sym_string_literal] = STATE(431), + [sym__empty_declaration] = STATE(20), + [sym_macro_type_specifier] = STATE(870), + [aux_sym_translation_unit_repeat1] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(81), + [aux_sym_preproc_include_token1] = ACTIONS(83), + [aux_sym_preproc_def_token1] = ACTIONS(85), + [aux_sym_preproc_if_token1] = ACTIONS(87), + [aux_sym_preproc_if_token2] = ACTIONS(155), + [aux_sym_preproc_ifdef_token1] = ACTIONS(91), + [aux_sym_preproc_ifdef_token2] = ACTIONS(91), + [aux_sym_preproc_else_token1] = ACTIONS(93), + [aux_sym_preproc_elif_token1] = ACTIONS(95), + [sym_preproc_directive] = ACTIONS(97), + [anon_sym_SEMI] = ACTIONS(99), + [anon_sym_typedef] = ACTIONS(101), + [anon_sym_extern] = ACTIONS(103), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [anon_sym_if] = ACTIONS(109), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_do] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_return] = ACTIONS(119), + [anon_sym_break] = ACTIONS(121), + [anon_sym_continue] = ACTIONS(123), + [anon_sym_goto] = ACTIONS(125), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(127), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(129), + [sym_false] = ACTIONS(129), + [sym_null] = ACTIONS(129), + [sym_comment] = ACTIONS(3), }, [16] = { + [sym_preproc_include] = STATE(14), + [sym_preproc_def] = STATE(14), + [sym_preproc_function_def] = STATE(14), + [sym_preproc_call] = STATE(14), + [sym_preproc_if] = STATE(14), + [sym_preproc_ifdef] = STATE(14), + [sym_preproc_else] = STATE(1261), + [sym_preproc_elif] = STATE(1261), + [sym_function_definition] = STATE(14), + [sym_declaration] = STATE(14), + [sym_type_definition] = STATE(14), + [sym__declaration_specifiers] = STATE(895), + [sym_linkage_specification] = STATE(14), + [sym_attribute_specifier] = STATE(661), + [sym_compound_statement] = STATE(14), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(870), + [sym_sized_type_specifier] = STATE(870), + [sym_enum_specifier] = STATE(870), + [sym_struct_specifier] = STATE(870), + [sym_union_specifier] = STATE(870), + [sym_labeled_statement] = STATE(14), + [sym_expression_statement] = STATE(14), + [sym_if_statement] = STATE(14), + [sym_switch_statement] = STATE(14), + [sym_while_statement] = STATE(14), + [sym_do_statement] = STATE(14), + [sym_for_statement] = STATE(14), + [sym_return_statement] = STATE(14), + [sym_break_statement] = STATE(14), + [sym_continue_statement] = STATE(14), + [sym_goto_statement] = STATE(14), + [sym__expression] = STATE(671), + [sym_comma_expression] = STATE(1275), + [sym_conditional_expression] = STATE(671), + [sym_assignment_expression] = STATE(671), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(671), + [sym_binary_expression] = STATE(671), + [sym_update_expression] = STATE(671), + [sym_cast_expression] = STATE(671), + [sym_sizeof_expression] = STATE(671), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(671), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(671), + [sym_concatenated_string] = STATE(671), + [sym_string_literal] = STATE(431), + [sym__empty_declaration] = STATE(14), + [sym_macro_type_specifier] = STATE(870), + [aux_sym_translation_unit_repeat1] = STATE(14), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(81), + [aux_sym_preproc_include_token1] = ACTIONS(83), + [aux_sym_preproc_def_token1] = ACTIONS(85), + [aux_sym_preproc_if_token1] = ACTIONS(87), + [aux_sym_preproc_if_token2] = ACTIONS(157), + [aux_sym_preproc_ifdef_token1] = ACTIONS(91), + [aux_sym_preproc_ifdef_token2] = ACTIONS(91), + [aux_sym_preproc_else_token1] = ACTIONS(93), + [aux_sym_preproc_elif_token1] = ACTIONS(95), + [sym_preproc_directive] = ACTIONS(97), + [anon_sym_SEMI] = ACTIONS(99), + [anon_sym_typedef] = ACTIONS(101), + [anon_sym_extern] = ACTIONS(103), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [anon_sym_if] = ACTIONS(109), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_do] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_return] = ACTIONS(119), + [anon_sym_break] = ACTIONS(121), + [anon_sym_continue] = ACTIONS(123), + [anon_sym_goto] = ACTIONS(125), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(127), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(129), + [sym_false] = ACTIONS(129), + [sym_null] = ACTIONS(129), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(219), }, [17] = { + [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(1134), + [sym_preproc_elif] = STATE(1134), + [sym_function_definition] = STATE(6), + [sym_declaration] = STATE(6), + [sym_type_definition] = STATE(6), + [sym__declaration_specifiers] = STATE(895), + [sym_linkage_specification] = STATE(6), + [sym_attribute_specifier] = STATE(661), + [sym_compound_statement] = STATE(6), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(870), + [sym_sized_type_specifier] = STATE(870), + [sym_enum_specifier] = STATE(870), + [sym_struct_specifier] = STATE(870), + [sym_union_specifier] = STATE(870), + [sym_labeled_statement] = STATE(6), + [sym_expression_statement] = STATE(6), + [sym_if_statement] = STATE(6), + [sym_switch_statement] = STATE(6), + [sym_while_statement] = STATE(6), + [sym_do_statement] = STATE(6), + [sym_for_statement] = STATE(6), + [sym_return_statement] = STATE(6), + [sym_break_statement] = STATE(6), + [sym_continue_statement] = STATE(6), + [sym_goto_statement] = STATE(6), + [sym__expression] = STATE(671), + [sym_comma_expression] = STATE(1275), + [sym_conditional_expression] = STATE(671), + [sym_assignment_expression] = STATE(671), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(671), + [sym_binary_expression] = STATE(671), + [sym_update_expression] = STATE(671), + [sym_cast_expression] = STATE(671), + [sym_sizeof_expression] = STATE(671), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(671), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(671), + [sym_concatenated_string] = STATE(671), + [sym_string_literal] = STATE(431), + [sym__empty_declaration] = STATE(6), + [sym_macro_type_specifier] = STATE(870), + [aux_sym_translation_unit_repeat1] = STATE(6), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(81), + [aux_sym_preproc_include_token1] = ACTIONS(83), + [aux_sym_preproc_def_token1] = ACTIONS(85), + [aux_sym_preproc_if_token1] = ACTIONS(87), + [aux_sym_preproc_if_token2] = ACTIONS(159), + [aux_sym_preproc_ifdef_token1] = ACTIONS(91), + [aux_sym_preproc_ifdef_token2] = ACTIONS(91), + [aux_sym_preproc_else_token1] = ACTIONS(93), + [aux_sym_preproc_elif_token1] = ACTIONS(95), + [sym_preproc_directive] = ACTIONS(97), + [anon_sym_SEMI] = ACTIONS(99), + [anon_sym_typedef] = ACTIONS(101), + [anon_sym_extern] = ACTIONS(103), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [anon_sym_if] = ACTIONS(109), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_do] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_return] = ACTIONS(119), + [anon_sym_break] = ACTIONS(121), + [anon_sym_continue] = ACTIONS(123), + [anon_sym_goto] = ACTIONS(125), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(127), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(129), + [sym_false] = ACTIONS(129), + [sym_null] = ACTIONS(129), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(221), }, [18] = { - [sym_identifier] = ACTIONS(223), + [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(1136), + [sym_preproc_elif] = STATE(1136), + [sym_function_definition] = STATE(5), + [sym_declaration] = STATE(5), + [sym_type_definition] = STATE(5), + [sym__declaration_specifiers] = STATE(895), + [sym_linkage_specification] = STATE(5), + [sym_attribute_specifier] = STATE(661), + [sym_compound_statement] = STATE(5), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(870), + [sym_sized_type_specifier] = STATE(870), + [sym_enum_specifier] = STATE(870), + [sym_struct_specifier] = STATE(870), + [sym_union_specifier] = STATE(870), + [sym_labeled_statement] = STATE(5), + [sym_expression_statement] = STATE(5), + [sym_if_statement] = STATE(5), + [sym_switch_statement] = STATE(5), + [sym_while_statement] = STATE(5), + [sym_do_statement] = STATE(5), + [sym_for_statement] = STATE(5), + [sym_return_statement] = STATE(5), + [sym_break_statement] = STATE(5), + [sym_continue_statement] = STATE(5), + [sym_goto_statement] = STATE(5), + [sym__expression] = STATE(671), + [sym_comma_expression] = STATE(1275), + [sym_conditional_expression] = STATE(671), + [sym_assignment_expression] = STATE(671), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(671), + [sym_binary_expression] = STATE(671), + [sym_update_expression] = STATE(671), + [sym_cast_expression] = STATE(671), + [sym_sizeof_expression] = STATE(671), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(671), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(671), + [sym_concatenated_string] = STATE(671), + [sym_string_literal] = STATE(431), + [sym__empty_declaration] = STATE(5), + [sym_macro_type_specifier] = STATE(870), + [aux_sym_translation_unit_repeat1] = STATE(5), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(81), + [aux_sym_preproc_include_token1] = ACTIONS(83), + [aux_sym_preproc_def_token1] = ACTIONS(85), + [aux_sym_preproc_if_token1] = ACTIONS(87), + [aux_sym_preproc_if_token2] = ACTIONS(161), + [aux_sym_preproc_ifdef_token1] = ACTIONS(91), + [aux_sym_preproc_ifdef_token2] = ACTIONS(91), + [aux_sym_preproc_else_token1] = ACTIONS(93), + [aux_sym_preproc_elif_token1] = ACTIONS(95), + [sym_preproc_directive] = ACTIONS(97), + [anon_sym_SEMI] = ACTIONS(99), + [anon_sym_typedef] = ACTIONS(101), + [anon_sym_extern] = ACTIONS(103), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [anon_sym_if] = ACTIONS(109), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_do] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_return] = ACTIONS(119), + [anon_sym_break] = ACTIONS(121), + [anon_sym_continue] = ACTIONS(123), + [anon_sym_goto] = ACTIONS(125), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(127), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(129), + [sym_false] = ACTIONS(129), + [sym_null] = ACTIONS(129), [sym_comment] = ACTIONS(3), }, [19] = { - [sym_string_literal] = STATE(75), + [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(1248), + [sym_preproc_elif] = STATE(1248), + [sym_function_definition] = STATE(20), + [sym_declaration] = STATE(20), + [sym_type_definition] = STATE(20), + [sym__declaration_specifiers] = STATE(895), + [sym_linkage_specification] = STATE(20), + [sym_attribute_specifier] = STATE(661), + [sym_compound_statement] = STATE(20), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(870), + [sym_sized_type_specifier] = STATE(870), + [sym_enum_specifier] = STATE(870), + [sym_struct_specifier] = STATE(870), + [sym_union_specifier] = STATE(870), + [sym_labeled_statement] = STATE(20), + [sym_expression_statement] = STATE(20), + [sym_if_statement] = STATE(20), + [sym_switch_statement] = STATE(20), + [sym_while_statement] = STATE(20), + [sym_do_statement] = STATE(20), + [sym_for_statement] = STATE(20), + [sym_return_statement] = STATE(20), + [sym_break_statement] = STATE(20), + [sym_continue_statement] = STATE(20), + [sym_goto_statement] = STATE(20), + [sym__expression] = STATE(671), + [sym_comma_expression] = STATE(1275), + [sym_conditional_expression] = STATE(671), + [sym_assignment_expression] = STATE(671), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(671), + [sym_binary_expression] = STATE(671), + [sym_update_expression] = STATE(671), + [sym_cast_expression] = STATE(671), + [sym_sizeof_expression] = STATE(671), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(671), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(671), + [sym_concatenated_string] = STATE(671), + [sym_string_literal] = STATE(431), + [sym__empty_declaration] = STATE(20), + [sym_macro_type_specifier] = STATE(870), + [aux_sym_translation_unit_repeat1] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(81), + [aux_sym_preproc_include_token1] = ACTIONS(83), + [aux_sym_preproc_def_token1] = ACTIONS(85), + [aux_sym_preproc_if_token1] = ACTIONS(87), + [aux_sym_preproc_if_token2] = ACTIONS(163), + [aux_sym_preproc_ifdef_token1] = ACTIONS(91), + [aux_sym_preproc_ifdef_token2] = ACTIONS(91), + [aux_sym_preproc_else_token1] = ACTIONS(93), + [aux_sym_preproc_elif_token1] = ACTIONS(95), + [sym_preproc_directive] = ACTIONS(97), + [anon_sym_SEMI] = ACTIONS(99), + [anon_sym_typedef] = ACTIONS(101), + [anon_sym_extern] = ACTIONS(103), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [anon_sym_if] = ACTIONS(109), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_do] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_return] = ACTIONS(119), + [anon_sym_break] = ACTIONS(121), + [anon_sym_continue] = ACTIONS(123), + [anon_sym_goto] = ACTIONS(125), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(127), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(129), + [sym_false] = ACTIONS(129), + [sym_null] = ACTIONS(129), [sym_comment] = ACTIONS(3), - [anon_sym_L_DQUOTE] = ACTIONS(225), - [sym_system_lib_string] = ACTIONS(227), - [anon_sym_DQUOTE] = ACTIONS(225), }, [20] = { - [anon_sym_union] = ACTIONS(229), - [anon_sym_unsigned] = ACTIONS(229), - [anon_sym_restrict] = ACTIONS(229), - [anon_sym_short] = ACTIONS(229), - [anon_sym_const] = ACTIONS(229), - [anon_sym_LPAREN2] = ACTIONS(231), - [anon_sym_COLON] = ACTIONS(231), - [anon_sym__Atomic] = ACTIONS(229), - [sym_primitive_type] = ACTIONS(229), - [sym_identifier] = ACTIONS(229), - [anon_sym_COMMA] = ACTIONS(231), - [anon_sym_static] = ACTIONS(229), - [anon_sym_volatile] = ACTIONS(229), - [anon_sym_register] = ACTIONS(229), - [anon_sym_extern] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(231), - [anon_sym_struct] = ACTIONS(229), - [anon_sym_signed] = ACTIONS(229), - [anon_sym_enum] = ACTIONS(229), - [anon_sym_long] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(231), - [anon_sym_RPAREN] = ACTIONS(231), - [anon_sym_auto] = ACTIONS(229), - [anon_sym_inline] = ACTIONS(229), - [anon_sym___attribute__] = ACTIONS(229), - [anon_sym_LBRACK] = ACTIONS(231), + [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_function_definition] = STATE(20), + [sym_declaration] = STATE(20), + [sym_type_definition] = STATE(20), + [sym__declaration_specifiers] = STATE(895), + [sym_linkage_specification] = STATE(20), + [sym_attribute_specifier] = STATE(661), + [sym_compound_statement] = STATE(20), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(870), + [sym_sized_type_specifier] = STATE(870), + [sym_enum_specifier] = STATE(870), + [sym_struct_specifier] = STATE(870), + [sym_union_specifier] = STATE(870), + [sym_labeled_statement] = STATE(20), + [sym_expression_statement] = STATE(20), + [sym_if_statement] = STATE(20), + [sym_switch_statement] = STATE(20), + [sym_while_statement] = STATE(20), + [sym_do_statement] = STATE(20), + [sym_for_statement] = STATE(20), + [sym_return_statement] = STATE(20), + [sym_break_statement] = STATE(20), + [sym_continue_statement] = STATE(20), + [sym_goto_statement] = STATE(20), + [sym__expression] = STATE(671), + [sym_comma_expression] = STATE(1275), + [sym_conditional_expression] = STATE(671), + [sym_assignment_expression] = STATE(671), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(671), + [sym_binary_expression] = STATE(671), + [sym_update_expression] = STATE(671), + [sym_cast_expression] = STATE(671), + [sym_sizeof_expression] = STATE(671), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(671), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(671), + [sym_concatenated_string] = STATE(671), + [sym_string_literal] = STATE(431), + [sym__empty_declaration] = STATE(20), + [sym_macro_type_specifier] = STATE(870), + [aux_sym_translation_unit_repeat1] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(165), + [aux_sym_preproc_include_token1] = ACTIONS(168), + [aux_sym_preproc_def_token1] = ACTIONS(171), + [aux_sym_preproc_if_token1] = ACTIONS(174), + [aux_sym_preproc_if_token2] = ACTIONS(177), + [aux_sym_preproc_ifdef_token1] = ACTIONS(179), + [aux_sym_preproc_ifdef_token2] = ACTIONS(179), + [aux_sym_preproc_else_token1] = ACTIONS(177), + [aux_sym_preproc_elif_token1] = ACTIONS(177), + [sym_preproc_directive] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(185), + [anon_sym_typedef] = ACTIONS(188), + [anon_sym_extern] = ACTIONS(191), + [anon_sym___attribute__] = ACTIONS(194), + [anon_sym_LPAREN2] = ACTIONS(197), + [anon_sym_LBRACE] = ACTIONS(200), + [anon_sym_STAR] = ACTIONS(203), + [anon_sym_static] = ACTIONS(206), + [anon_sym_auto] = ACTIONS(206), + [anon_sym_register] = ACTIONS(206), + [anon_sym_inline] = ACTIONS(206), + [anon_sym_const] = ACTIONS(209), + [anon_sym_volatile] = ACTIONS(209), + [anon_sym_restrict] = ACTIONS(209), + [anon_sym__Atomic] = ACTIONS(209), + [anon_sym_signed] = ACTIONS(212), + [anon_sym_unsigned] = ACTIONS(212), + [anon_sym_long] = ACTIONS(212), + [anon_sym_short] = ACTIONS(212), + [sym_primitive_type] = ACTIONS(215), + [anon_sym_enum] = ACTIONS(218), + [anon_sym_struct] = ACTIONS(221), + [anon_sym_union] = ACTIONS(224), + [anon_sym_if] = ACTIONS(227), + [anon_sym_switch] = ACTIONS(230), + [anon_sym_while] = ACTIONS(233), + [anon_sym_do] = ACTIONS(236), + [anon_sym_for] = ACTIONS(239), + [anon_sym_return] = ACTIONS(242), + [anon_sym_break] = ACTIONS(245), + [anon_sym_continue] = ACTIONS(248), + [anon_sym_goto] = ACTIONS(251), + [anon_sym_AMP] = ACTIONS(203), + [anon_sym_BANG] = ACTIONS(254), + [anon_sym_TILDE] = ACTIONS(254), + [anon_sym_DASH] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(257), + [anon_sym_DASH_DASH] = ACTIONS(260), + [anon_sym_PLUS_PLUS] = ACTIONS(260), + [anon_sym_sizeof] = ACTIONS(263), + [sym_number_literal] = ACTIONS(266), + [anon_sym_L_SQUOTE] = ACTIONS(269), + [anon_sym_SQUOTE] = ACTIONS(269), + [anon_sym_L_DQUOTE] = ACTIONS(272), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_true] = ACTIONS(275), + [sym_false] = ACTIONS(275), + [sym_null] = ACTIONS(275), + [sym_comment] = ACTIONS(3), }, [21] = { - [sym_string_literal] = STATE(76), - [anon_sym_union] = ACTIONS(229), - [anon_sym_unsigned] = ACTIONS(229), - [anon_sym_restrict] = ACTIONS(229), - [anon_sym_short] = ACTIONS(229), - [anon_sym_static] = ACTIONS(229), - [anon_sym_volatile] = ACTIONS(229), - [anon_sym_register] = ACTIONS(229), - [anon_sym_extern] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(229), - [anon_sym_signed] = ACTIONS(229), - [anon_sym_enum] = ACTIONS(229), - [anon_sym_long] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(229), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(229), - [sym_primitive_type] = ACTIONS(229), - [anon_sym_auto] = ACTIONS(229), - [sym_identifier] = ACTIONS(229), - [anon_sym_inline] = ACTIONS(229), - [anon_sym___attribute__] = ACTIONS(229), + [sym_preproc_include] = STATE(21), + [sym_preproc_def] = STATE(21), + [sym_preproc_function_def] = STATE(21), + [sym_preproc_call] = STATE(21), + [sym_preproc_if] = STATE(21), + [sym_preproc_ifdef] = STATE(21), + [sym_function_definition] = STATE(21), + [sym_declaration] = STATE(21), + [sym_type_definition] = STATE(21), + [sym__declaration_specifiers] = STATE(906), + [sym_linkage_specification] = STATE(21), + [sym_attribute_specifier] = STATE(661), + [sym_compound_statement] = STATE(21), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(871), + [sym_sized_type_specifier] = STATE(871), + [sym_enum_specifier] = STATE(871), + [sym_struct_specifier] = STATE(871), + [sym_union_specifier] = STATE(871), + [sym_labeled_statement] = STATE(21), + [sym_expression_statement] = STATE(21), + [sym_if_statement] = STATE(21), + [sym_switch_statement] = STATE(21), + [sym_while_statement] = STATE(21), + [sym_do_statement] = STATE(21), + [sym_for_statement] = STATE(21), + [sym_return_statement] = STATE(21), + [sym_break_statement] = STATE(21), + [sym_continue_statement] = STATE(21), + [sym_goto_statement] = STATE(21), + [sym__expression] = STATE(707), + [sym_comma_expression] = STATE(1207), + [sym_conditional_expression] = STATE(707), + [sym_assignment_expression] = STATE(707), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(707), + [sym_binary_expression] = STATE(707), + [sym_update_expression] = STATE(707), + [sym_cast_expression] = STATE(707), + [sym_sizeof_expression] = STATE(707), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(707), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(707), + [sym_concatenated_string] = STATE(707), + [sym_string_literal] = STATE(431), + [sym__empty_declaration] = STATE(21), + [sym_macro_type_specifier] = STATE(871), + [aux_sym_translation_unit_repeat1] = STATE(21), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(278), + [aux_sym_preproc_include_token1] = ACTIONS(281), + [aux_sym_preproc_def_token1] = ACTIONS(284), + [aux_sym_preproc_if_token1] = ACTIONS(287), + [aux_sym_preproc_ifdef_token1] = ACTIONS(290), + [aux_sym_preproc_ifdef_token2] = ACTIONS(290), + [sym_preproc_directive] = ACTIONS(293), + [anon_sym_SEMI] = ACTIONS(296), + [anon_sym_typedef] = ACTIONS(299), + [anon_sym_extern] = ACTIONS(302), + [anon_sym___attribute__] = ACTIONS(194), + [anon_sym_LPAREN2] = ACTIONS(197), + [anon_sym_LBRACE] = ACTIONS(305), + [anon_sym_RBRACE] = ACTIONS(308), + [anon_sym_STAR] = ACTIONS(203), + [anon_sym_static] = ACTIONS(206), + [anon_sym_auto] = ACTIONS(206), + [anon_sym_register] = ACTIONS(206), + [anon_sym_inline] = ACTIONS(206), + [anon_sym_const] = ACTIONS(209), + [anon_sym_volatile] = ACTIONS(209), + [anon_sym_restrict] = ACTIONS(209), + [anon_sym__Atomic] = ACTIONS(209), + [anon_sym_signed] = ACTIONS(212), + [anon_sym_unsigned] = ACTIONS(212), + [anon_sym_long] = ACTIONS(212), + [anon_sym_short] = ACTIONS(212), + [sym_primitive_type] = ACTIONS(310), + [anon_sym_enum] = ACTIONS(218), + [anon_sym_struct] = ACTIONS(221), + [anon_sym_union] = ACTIONS(224), + [anon_sym_if] = ACTIONS(313), + [anon_sym_switch] = ACTIONS(316), + [anon_sym_while] = ACTIONS(319), + [anon_sym_do] = ACTIONS(322), + [anon_sym_for] = ACTIONS(325), + [anon_sym_return] = ACTIONS(328), + [anon_sym_break] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(334), + [anon_sym_goto] = ACTIONS(337), + [anon_sym_AMP] = ACTIONS(203), + [anon_sym_BANG] = ACTIONS(254), + [anon_sym_TILDE] = ACTIONS(254), + [anon_sym_DASH] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(257), + [anon_sym_DASH_DASH] = ACTIONS(260), + [anon_sym_PLUS_PLUS] = ACTIONS(260), + [anon_sym_sizeof] = ACTIONS(263), + [sym_number_literal] = ACTIONS(340), + [anon_sym_L_SQUOTE] = ACTIONS(269), + [anon_sym_SQUOTE] = ACTIONS(269), + [anon_sym_L_DQUOTE] = ACTIONS(272), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_true] = ACTIONS(343), + [sym_false] = ACTIONS(343), + [sym_null] = ACTIONS(343), + [sym_comment] = ACTIONS(3), }, [22] = { - [sym_parenthesized_expression] = STATE(78), + [sym_preproc_include] = STATE(33), + [sym_preproc_def] = STATE(33), + [sym_preproc_function_def] = STATE(33), + [sym_preproc_call] = STATE(33), + [sym_preproc_if] = STATE(33), + [sym_preproc_ifdef] = STATE(33), + [sym_function_definition] = STATE(33), + [sym_declaration] = STATE(33), + [sym_type_definition] = STATE(33), + [sym__declaration_specifiers] = STATE(906), + [sym_linkage_specification] = STATE(33), + [sym_attribute_specifier] = STATE(661), + [sym_compound_statement] = STATE(33), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(871), + [sym_sized_type_specifier] = STATE(871), + [sym_enum_specifier] = STATE(871), + [sym_struct_specifier] = STATE(871), + [sym_union_specifier] = STATE(871), + [sym_labeled_statement] = STATE(33), + [sym_expression_statement] = STATE(33), + [sym_if_statement] = STATE(33), + [sym_switch_statement] = STATE(33), + [sym_while_statement] = STATE(33), + [sym_do_statement] = STATE(33), + [sym_for_statement] = STATE(33), + [sym_return_statement] = STATE(33), + [sym_break_statement] = STATE(33), + [sym_continue_statement] = STATE(33), + [sym_goto_statement] = STATE(33), + [sym__expression] = STATE(707), + [sym_comma_expression] = STATE(1207), + [sym_conditional_expression] = STATE(707), + [sym_assignment_expression] = STATE(707), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(707), + [sym_binary_expression] = STATE(707), + [sym_update_expression] = STATE(707), + [sym_cast_expression] = STATE(707), + [sym_sizeof_expression] = STATE(707), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(707), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(707), + [sym_concatenated_string] = STATE(707), + [sym_string_literal] = STATE(431), + [sym__empty_declaration] = STATE(33), + [sym_macro_type_specifier] = STATE(871), + [aux_sym_translation_unit_repeat1] = STATE(33), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(346), + [aux_sym_preproc_include_token1] = ACTIONS(348), + [aux_sym_preproc_def_token1] = ACTIONS(350), + [aux_sym_preproc_if_token1] = ACTIONS(352), + [aux_sym_preproc_ifdef_token1] = ACTIONS(354), + [aux_sym_preproc_ifdef_token2] = ACTIONS(354), + [sym_preproc_directive] = ACTIONS(356), + [anon_sym_SEMI] = ACTIONS(358), + [anon_sym_typedef] = ACTIONS(360), + [anon_sym_extern] = ACTIONS(362), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(364), + [anon_sym_RBRACE] = ACTIONS(366), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(368), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [anon_sym_if] = ACTIONS(370), + [anon_sym_switch] = ACTIONS(372), + [anon_sym_while] = ACTIONS(374), + [anon_sym_do] = ACTIONS(376), + [anon_sym_for] = ACTIONS(378), + [anon_sym_return] = ACTIONS(380), + [anon_sym_break] = ACTIONS(382), + [anon_sym_continue] = ACTIONS(384), + [anon_sym_goto] = ACTIONS(386), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(388), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(390), + [sym_false] = ACTIONS(390), + [sym_null] = ACTIONS(390), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(233), }, [23] = { - [sym_field_declaration_list] = STATE(80), - [anon_sym_LBRACE] = ACTIONS(127), - [sym_identifier] = ACTIONS(235), + [sym_preproc_include] = STATE(31), + [sym_preproc_def] = STATE(31), + [sym_preproc_function_def] = STATE(31), + [sym_preproc_call] = STATE(31), + [sym_preproc_if] = STATE(31), + [sym_preproc_ifdef] = STATE(31), + [sym_function_definition] = STATE(31), + [sym_declaration] = STATE(31), + [sym_type_definition] = STATE(31), + [sym__declaration_specifiers] = STATE(906), + [sym_linkage_specification] = STATE(31), + [sym_attribute_specifier] = STATE(661), + [sym_compound_statement] = STATE(31), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(871), + [sym_sized_type_specifier] = STATE(871), + [sym_enum_specifier] = STATE(871), + [sym_struct_specifier] = STATE(871), + [sym_union_specifier] = STATE(871), + [sym_labeled_statement] = STATE(31), + [sym_expression_statement] = STATE(31), + [sym_if_statement] = STATE(31), + [sym_switch_statement] = STATE(31), + [sym_while_statement] = STATE(31), + [sym_do_statement] = STATE(31), + [sym_for_statement] = STATE(31), + [sym_return_statement] = STATE(31), + [sym_break_statement] = STATE(31), + [sym_continue_statement] = STATE(31), + [sym_goto_statement] = STATE(31), + [sym__expression] = STATE(707), + [sym_comma_expression] = STATE(1207), + [sym_conditional_expression] = STATE(707), + [sym_assignment_expression] = STATE(707), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(707), + [sym_binary_expression] = STATE(707), + [sym_update_expression] = STATE(707), + [sym_cast_expression] = STATE(707), + [sym_sizeof_expression] = STATE(707), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(707), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(707), + [sym_concatenated_string] = STATE(707), + [sym_string_literal] = STATE(431), + [sym__empty_declaration] = STATE(31), + [sym_macro_type_specifier] = STATE(871), + [aux_sym_translation_unit_repeat1] = STATE(31), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(346), + [aux_sym_preproc_include_token1] = ACTIONS(348), + [aux_sym_preproc_def_token1] = ACTIONS(350), + [aux_sym_preproc_if_token1] = ACTIONS(352), + [aux_sym_preproc_ifdef_token1] = ACTIONS(354), + [aux_sym_preproc_ifdef_token2] = ACTIONS(354), + [sym_preproc_directive] = ACTIONS(356), + [anon_sym_SEMI] = ACTIONS(358), + [anon_sym_typedef] = ACTIONS(360), + [anon_sym_extern] = ACTIONS(362), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(364), + [anon_sym_RBRACE] = ACTIONS(392), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(368), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [anon_sym_if] = ACTIONS(370), + [anon_sym_switch] = ACTIONS(372), + [anon_sym_while] = ACTIONS(374), + [anon_sym_do] = ACTIONS(376), + [anon_sym_for] = ACTIONS(378), + [anon_sym_return] = ACTIONS(380), + [anon_sym_break] = ACTIONS(382), + [anon_sym_continue] = ACTIONS(384), + [anon_sym_goto] = ACTIONS(386), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(388), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(390), + [sym_false] = ACTIONS(390), + [sym_null] = ACTIONS(390), [sym_comment] = ACTIONS(3), }, [24] = { - [sym_parenthesized_expression] = STATE(81), + [sym_preproc_include] = STATE(21), + [sym_preproc_def] = STATE(21), + [sym_preproc_function_def] = STATE(21), + [sym_preproc_call] = STATE(21), + [sym_preproc_if] = STATE(21), + [sym_preproc_ifdef] = STATE(21), + [sym_function_definition] = STATE(21), + [sym_declaration] = STATE(21), + [sym_type_definition] = STATE(21), + [sym__declaration_specifiers] = STATE(906), + [sym_linkage_specification] = STATE(21), + [sym_attribute_specifier] = STATE(661), + [sym_compound_statement] = STATE(21), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(871), + [sym_sized_type_specifier] = STATE(871), + [sym_enum_specifier] = STATE(871), + [sym_struct_specifier] = STATE(871), + [sym_union_specifier] = STATE(871), + [sym_labeled_statement] = STATE(21), + [sym_expression_statement] = STATE(21), + [sym_if_statement] = STATE(21), + [sym_switch_statement] = STATE(21), + [sym_while_statement] = STATE(21), + [sym_do_statement] = STATE(21), + [sym_for_statement] = STATE(21), + [sym_return_statement] = STATE(21), + [sym_break_statement] = STATE(21), + [sym_continue_statement] = STATE(21), + [sym_goto_statement] = STATE(21), + [sym__expression] = STATE(707), + [sym_comma_expression] = STATE(1207), + [sym_conditional_expression] = STATE(707), + [sym_assignment_expression] = STATE(707), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(707), + [sym_binary_expression] = STATE(707), + [sym_update_expression] = STATE(707), + [sym_cast_expression] = STATE(707), + [sym_sizeof_expression] = STATE(707), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(707), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(707), + [sym_concatenated_string] = STATE(707), + [sym_string_literal] = STATE(431), + [sym__empty_declaration] = STATE(21), + [sym_macro_type_specifier] = STATE(871), + [aux_sym_translation_unit_repeat1] = STATE(21), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(346), + [aux_sym_preproc_include_token1] = ACTIONS(348), + [aux_sym_preproc_def_token1] = ACTIONS(350), + [aux_sym_preproc_if_token1] = ACTIONS(352), + [aux_sym_preproc_ifdef_token1] = ACTIONS(354), + [aux_sym_preproc_ifdef_token2] = ACTIONS(354), + [sym_preproc_directive] = ACTIONS(356), + [anon_sym_SEMI] = ACTIONS(358), + [anon_sym_typedef] = ACTIONS(360), + [anon_sym_extern] = ACTIONS(362), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(364), + [anon_sym_RBRACE] = ACTIONS(394), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(368), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [anon_sym_if] = ACTIONS(370), + [anon_sym_switch] = ACTIONS(372), + [anon_sym_while] = ACTIONS(374), + [anon_sym_do] = ACTIONS(376), + [anon_sym_for] = ACTIONS(378), + [anon_sym_return] = ACTIONS(380), + [anon_sym_break] = ACTIONS(382), + [anon_sym_continue] = ACTIONS(384), + [anon_sym_goto] = ACTIONS(386), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(388), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(390), + [sym_false] = ACTIONS(390), + [sym_null] = ACTIONS(390), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(237), }, [25] = { - [sym_enumerator_list] = STATE(84), - [anon_sym_LBRACE] = ACTIONS(239), - [sym_identifier] = ACTIONS(241), + [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_declaration] = STATE(27), + [sym_type_definition] = STATE(27), + [sym__declaration_specifiers] = STATE(903), + [sym_linkage_specification] = STATE(27), + [sym_attribute_specifier] = STATE(661), + [sym_compound_statement] = STATE(27), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(859), + [sym_sized_type_specifier] = STATE(859), + [sym_enum_specifier] = STATE(859), + [sym_struct_specifier] = STATE(859), + [sym_union_specifier] = STATE(859), + [sym_labeled_statement] = STATE(27), + [sym_expression_statement] = STATE(27), + [sym_if_statement] = STATE(27), + [sym_switch_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__expression] = STATE(688), + [sym_comma_expression] = STATE(1124), + [sym_conditional_expression] = STATE(688), + [sym_assignment_expression] = STATE(688), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(688), + [sym_binary_expression] = STATE(688), + [sym_update_expression] = STATE(688), + [sym_cast_expression] = STATE(688), + [sym_sizeof_expression] = STATE(688), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(688), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(688), + [sym_concatenated_string] = STATE(688), + [sym_string_literal] = STATE(431), + [sym__empty_declaration] = STATE(27), + [sym_macro_type_specifier] = STATE(859), + [aux_sym_translation_unit_repeat1] = STATE(27), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(396), + [aux_sym_preproc_include_token1] = ACTIONS(398), + [aux_sym_preproc_def_token1] = ACTIONS(400), + [aux_sym_preproc_if_token1] = ACTIONS(402), + [aux_sym_preproc_if_token2] = ACTIONS(404), + [aux_sym_preproc_ifdef_token1] = ACTIONS(406), + [aux_sym_preproc_ifdef_token2] = ACTIONS(406), + [sym_preproc_directive] = ACTIONS(408), + [anon_sym_SEMI] = ACTIONS(410), + [anon_sym_typedef] = ACTIONS(412), + [anon_sym_extern] = ACTIONS(414), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(416), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(418), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [anon_sym_if] = ACTIONS(420), + [anon_sym_switch] = ACTIONS(422), + [anon_sym_while] = ACTIONS(424), + [anon_sym_do] = ACTIONS(426), + [anon_sym_for] = ACTIONS(428), + [anon_sym_return] = ACTIONS(430), + [anon_sym_break] = ACTIONS(432), + [anon_sym_continue] = ACTIONS(434), + [anon_sym_goto] = ACTIONS(436), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(438), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(440), + [sym_false] = ACTIONS(440), + [sym_null] = ACTIONS(440), [sym_comment] = ACTIONS(3), }, [26] = { - [sym_escape_sequence] = ACTIONS(243), - [aux_sym_char_literal_token1] = ACTIONS(245), - [sym_comment] = ACTIONS(147), + [sym_preproc_include] = STATE(37), + [sym_preproc_def] = STATE(37), + [sym_preproc_function_def] = STATE(37), + [sym_preproc_call] = STATE(37), + [sym_preproc_if] = STATE(37), + [sym_preproc_ifdef] = STATE(37), + [sym_function_definition] = STATE(37), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_specifiers] = STATE(906), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(661), + [sym_compound_statement] = STATE(37), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(871), + [sym_sized_type_specifier] = STATE(871), + [sym_enum_specifier] = STATE(871), + [sym_struct_specifier] = STATE(871), + [sym_union_specifier] = STATE(871), + [sym_labeled_statement] = STATE(37), + [sym_expression_statement] = STATE(37), + [sym_if_statement] = STATE(37), + [sym_switch_statement] = STATE(37), + [sym_while_statement] = STATE(37), + [sym_do_statement] = STATE(37), + [sym_for_statement] = STATE(37), + [sym_return_statement] = STATE(37), + [sym_break_statement] = STATE(37), + [sym_continue_statement] = STATE(37), + [sym_goto_statement] = STATE(37), + [sym__expression] = STATE(707), + [sym_comma_expression] = STATE(1207), + [sym_conditional_expression] = STATE(707), + [sym_assignment_expression] = STATE(707), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(707), + [sym_binary_expression] = STATE(707), + [sym_update_expression] = STATE(707), + [sym_cast_expression] = STATE(707), + [sym_sizeof_expression] = STATE(707), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(707), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(707), + [sym_concatenated_string] = STATE(707), + [sym_string_literal] = STATE(431), + [sym__empty_declaration] = STATE(37), + [sym_macro_type_specifier] = STATE(871), + [aux_sym_translation_unit_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(346), + [aux_sym_preproc_include_token1] = ACTIONS(348), + [aux_sym_preproc_def_token1] = ACTIONS(350), + [aux_sym_preproc_if_token1] = ACTIONS(352), + [aux_sym_preproc_ifdef_token1] = ACTIONS(354), + [aux_sym_preproc_ifdef_token2] = ACTIONS(354), + [sym_preproc_directive] = ACTIONS(356), + [anon_sym_SEMI] = ACTIONS(358), + [anon_sym_typedef] = ACTIONS(360), + [anon_sym_extern] = ACTIONS(362), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(364), + [anon_sym_RBRACE] = ACTIONS(442), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(368), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [anon_sym_if] = ACTIONS(370), + [anon_sym_switch] = ACTIONS(372), + [anon_sym_while] = ACTIONS(374), + [anon_sym_do] = ACTIONS(376), + [anon_sym_for] = ACTIONS(378), + [anon_sym_return] = ACTIONS(380), + [anon_sym_break] = ACTIONS(382), + [anon_sym_continue] = ACTIONS(384), + [anon_sym_goto] = ACTIONS(386), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(388), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(390), + [sym_false] = ACTIONS(390), + [sym_null] = ACTIONS(390), + [sym_comment] = ACTIONS(3), }, [27] = { - [sym_char_literal] = STATE(87), - [sym__expression] = STATE(87), - [sym_binary_expression] = STATE(87), - [sym_update_expression] = STATE(87), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(87), - [sym_sizeof_expression] = STATE(87), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(87), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(87), - [sym_assignment_expression] = STATE(87), - [sym_cast_expression] = STATE(87), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(87), - [sym_true] = ACTIONS(247), - [sym_null] = ACTIONS(247), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(249), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(247), - [anon_sym_SEMI] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_preproc_include] = STATE(29), + [sym_preproc_def] = STATE(29), + [sym_preproc_function_def] = STATE(29), + [sym_preproc_call] = STATE(29), + [sym_preproc_if] = STATE(29), + [sym_preproc_ifdef] = STATE(29), + [sym_function_definition] = STATE(29), + [sym_declaration] = STATE(29), + [sym_type_definition] = STATE(29), + [sym__declaration_specifiers] = STATE(903), + [sym_linkage_specification] = STATE(29), + [sym_attribute_specifier] = STATE(661), + [sym_compound_statement] = STATE(29), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(859), + [sym_sized_type_specifier] = STATE(859), + [sym_enum_specifier] = STATE(859), + [sym_struct_specifier] = STATE(859), + [sym_union_specifier] = STATE(859), + [sym_labeled_statement] = STATE(29), + [sym_expression_statement] = STATE(29), + [sym_if_statement] = STATE(29), + [sym_switch_statement] = STATE(29), + [sym_while_statement] = STATE(29), + [sym_do_statement] = STATE(29), + [sym_for_statement] = STATE(29), + [sym_return_statement] = STATE(29), + [sym_break_statement] = STATE(29), + [sym_continue_statement] = STATE(29), + [sym_goto_statement] = STATE(29), + [sym__expression] = STATE(688), + [sym_comma_expression] = STATE(1124), + [sym_conditional_expression] = STATE(688), + [sym_assignment_expression] = STATE(688), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(688), + [sym_binary_expression] = STATE(688), + [sym_update_expression] = STATE(688), + [sym_cast_expression] = STATE(688), + [sym_sizeof_expression] = STATE(688), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(688), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(688), + [sym_concatenated_string] = STATE(688), + [sym_string_literal] = STATE(431), + [sym__empty_declaration] = STATE(29), + [sym_macro_type_specifier] = STATE(859), + [aux_sym_translation_unit_repeat1] = STATE(29), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(396), + [aux_sym_preproc_include_token1] = ACTIONS(398), + [aux_sym_preproc_def_token1] = ACTIONS(400), + [aux_sym_preproc_if_token1] = ACTIONS(402), + [aux_sym_preproc_if_token2] = ACTIONS(444), + [aux_sym_preproc_ifdef_token1] = ACTIONS(406), + [aux_sym_preproc_ifdef_token2] = ACTIONS(406), + [sym_preproc_directive] = ACTIONS(408), + [anon_sym_SEMI] = ACTIONS(410), + [anon_sym_typedef] = ACTIONS(412), + [anon_sym_extern] = ACTIONS(414), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(416), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(418), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [anon_sym_if] = ACTIONS(420), + [anon_sym_switch] = ACTIONS(422), + [anon_sym_while] = ACTIONS(424), + [anon_sym_do] = ACTIONS(426), + [anon_sym_for] = ACTIONS(428), + [anon_sym_return] = ACTIONS(430), + [anon_sym_break] = ACTIONS(432), + [anon_sym_continue] = ACTIONS(434), + [anon_sym_goto] = ACTIONS(436), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(438), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(440), + [sym_false] = ACTIONS(440), + [sym_null] = ACTIONS(440), + [sym_comment] = ACTIONS(3), }, [28] = { - [sym_parenthesized_expression] = STATE(88), + [sym_preproc_include] = STATE(30), + [sym_preproc_def] = STATE(30), + [sym_preproc_function_def] = STATE(30), + [sym_preproc_call] = STATE(30), + [sym_preproc_if] = STATE(30), + [sym_preproc_ifdef] = STATE(30), + [sym_function_definition] = STATE(30), + [sym_declaration] = STATE(30), + [sym_type_definition] = STATE(30), + [sym__declaration_specifiers] = STATE(906), + [sym_linkage_specification] = STATE(30), + [sym_attribute_specifier] = STATE(661), + [sym_compound_statement] = STATE(30), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(871), + [sym_sized_type_specifier] = STATE(871), + [sym_enum_specifier] = STATE(871), + [sym_struct_specifier] = STATE(871), + [sym_union_specifier] = STATE(871), + [sym_labeled_statement] = STATE(30), + [sym_expression_statement] = STATE(30), + [sym_if_statement] = STATE(30), + [sym_switch_statement] = STATE(30), + [sym_while_statement] = STATE(30), + [sym_do_statement] = STATE(30), + [sym_for_statement] = STATE(30), + [sym_return_statement] = STATE(30), + [sym_break_statement] = STATE(30), + [sym_continue_statement] = STATE(30), + [sym_goto_statement] = STATE(30), + [sym__expression] = STATE(707), + [sym_comma_expression] = STATE(1207), + [sym_conditional_expression] = STATE(707), + [sym_assignment_expression] = STATE(707), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(707), + [sym_binary_expression] = STATE(707), + [sym_update_expression] = STATE(707), + [sym_cast_expression] = STATE(707), + [sym_sizeof_expression] = STATE(707), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(707), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(707), + [sym_concatenated_string] = STATE(707), + [sym_string_literal] = STATE(431), + [sym__empty_declaration] = STATE(30), + [sym_macro_type_specifier] = STATE(871), + [aux_sym_translation_unit_repeat1] = STATE(30), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(346), + [aux_sym_preproc_include_token1] = ACTIONS(348), + [aux_sym_preproc_def_token1] = ACTIONS(350), + [aux_sym_preproc_if_token1] = ACTIONS(352), + [aux_sym_preproc_ifdef_token1] = ACTIONS(354), + [aux_sym_preproc_ifdef_token2] = ACTIONS(354), + [sym_preproc_directive] = ACTIONS(356), + [anon_sym_SEMI] = ACTIONS(358), + [anon_sym_typedef] = ACTIONS(360), + [anon_sym_extern] = ACTIONS(362), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(364), + [anon_sym_RBRACE] = ACTIONS(446), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(368), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [anon_sym_if] = ACTIONS(370), + [anon_sym_switch] = ACTIONS(372), + [anon_sym_while] = ACTIONS(374), + [anon_sym_do] = ACTIONS(376), + [anon_sym_for] = ACTIONS(378), + [anon_sym_return] = ACTIONS(380), + [anon_sym_break] = ACTIONS(382), + [anon_sym_continue] = ACTIONS(384), + [anon_sym_goto] = ACTIONS(386), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(388), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(390), + [sym_false] = ACTIONS(390), + [sym_null] = ACTIONS(390), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(233), }, [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_declaration] = STATE(29), + [sym_type_definition] = STATE(29), + [sym__declaration_specifiers] = STATE(903), + [sym_linkage_specification] = STATE(29), + [sym_attribute_specifier] = STATE(661), + [sym_compound_statement] = STATE(29), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(859), + [sym_sized_type_specifier] = STATE(859), + [sym_enum_specifier] = STATE(859), + [sym_struct_specifier] = STATE(859), + [sym_union_specifier] = STATE(859), + [sym_labeled_statement] = STATE(29), + [sym_expression_statement] = STATE(29), + [sym_if_statement] = STATE(29), + [sym_switch_statement] = STATE(29), + [sym_while_statement] = STATE(29), + [sym_do_statement] = STATE(29), + [sym_for_statement] = STATE(29), + [sym_return_statement] = STATE(29), + [sym_break_statement] = STATE(29), + [sym_continue_statement] = STATE(29), + [sym_goto_statement] = STATE(29), + [sym__expression] = STATE(688), + [sym_comma_expression] = STATE(1124), + [sym_conditional_expression] = STATE(688), + [sym_assignment_expression] = STATE(688), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(688), + [sym_binary_expression] = STATE(688), + [sym_update_expression] = STATE(688), + [sym_cast_expression] = STATE(688), + [sym_sizeof_expression] = STATE(688), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(688), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(688), + [sym_concatenated_string] = STATE(688), + [sym_string_literal] = STATE(431), + [sym__empty_declaration] = STATE(29), + [sym_macro_type_specifier] = STATE(859), + [aux_sym_translation_unit_repeat1] = STATE(29), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(448), + [aux_sym_preproc_include_token1] = ACTIONS(451), + [aux_sym_preproc_def_token1] = ACTIONS(454), + [aux_sym_preproc_if_token1] = ACTIONS(457), + [aux_sym_preproc_if_token2] = ACTIONS(177), + [aux_sym_preproc_ifdef_token1] = ACTIONS(460), + [aux_sym_preproc_ifdef_token2] = ACTIONS(460), + [sym_preproc_directive] = ACTIONS(463), + [anon_sym_SEMI] = ACTIONS(466), + [anon_sym_typedef] = ACTIONS(469), + [anon_sym_extern] = ACTIONS(472), + [anon_sym___attribute__] = ACTIONS(194), + [anon_sym_LPAREN2] = ACTIONS(197), + [anon_sym_LBRACE] = ACTIONS(475), + [anon_sym_STAR] = ACTIONS(203), + [anon_sym_static] = ACTIONS(206), + [anon_sym_auto] = ACTIONS(206), + [anon_sym_register] = ACTIONS(206), + [anon_sym_inline] = ACTIONS(206), + [anon_sym_const] = ACTIONS(209), + [anon_sym_volatile] = ACTIONS(209), + [anon_sym_restrict] = ACTIONS(209), + [anon_sym__Atomic] = ACTIONS(209), + [anon_sym_signed] = ACTIONS(212), + [anon_sym_unsigned] = ACTIONS(212), + [anon_sym_long] = ACTIONS(212), + [anon_sym_short] = ACTIONS(212), + [sym_primitive_type] = ACTIONS(478), + [anon_sym_enum] = ACTIONS(218), + [anon_sym_struct] = ACTIONS(221), + [anon_sym_union] = ACTIONS(224), + [anon_sym_if] = ACTIONS(481), + [anon_sym_switch] = ACTIONS(484), + [anon_sym_while] = ACTIONS(487), + [anon_sym_do] = ACTIONS(490), + [anon_sym_for] = ACTIONS(493), + [anon_sym_return] = ACTIONS(496), + [anon_sym_break] = ACTIONS(499), + [anon_sym_continue] = ACTIONS(502), + [anon_sym_goto] = ACTIONS(505), + [anon_sym_AMP] = ACTIONS(203), + [anon_sym_BANG] = ACTIONS(254), + [anon_sym_TILDE] = ACTIONS(254), + [anon_sym_DASH] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(257), + [anon_sym_DASH_DASH] = ACTIONS(260), + [anon_sym_PLUS_PLUS] = ACTIONS(260), + [anon_sym_sizeof] = ACTIONS(263), + [sym_number_literal] = ACTIONS(508), + [anon_sym_L_SQUOTE] = ACTIONS(269), + [anon_sym_SQUOTE] = ACTIONS(269), + [anon_sym_L_DQUOTE] = ACTIONS(272), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_true] = ACTIONS(511), + [sym_false] = ACTIONS(511), + [sym_null] = ACTIONS(511), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(253), }, [30] = { - [anon_sym_case] = ACTIONS(255), - [sym_true] = ACTIONS(255), - [anon_sym_restrict] = ACTIONS(255), - [sym_null] = ACTIONS(255), - [anon_sym_goto] = ACTIONS(255), - [anon_sym_const] = ACTIONS(255), - [anon_sym_typedef] = ACTIONS(255), - [anon_sym_DASH_DASH] = ACTIONS(257), - [anon_sym_default] = ACTIONS(255), - [anon_sym__Atomic] = ACTIONS(255), - [sym_identifier] = ACTIONS(255), - [aux_sym_preproc_ifdef_token1] = ACTIONS(255), - [sym_number_literal] = ACTIONS(257), - [anon_sym_volatile] = ACTIONS(255), - [anon_sym_SQUOTE] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(255), - [anon_sym_PLUS_PLUS] = ACTIONS(257), - [anon_sym_struct] = ACTIONS(255), - [anon_sym_signed] = ACTIONS(255), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(255), - [anon_sym_while] = ACTIONS(255), - [aux_sym_preproc_ifdef_token2] = ACTIONS(255), - [anon_sym_L_SQUOTE] = ACTIONS(257), - [anon_sym___attribute__] = ACTIONS(255), - [anon_sym_sizeof] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(257), - [anon_sym_union] = ACTIONS(255), - [anon_sym_unsigned] = ACTIONS(255), - [anon_sym_short] = ACTIONS(255), - [anon_sym_do] = ACTIONS(255), - [sym_preproc_directive] = ACTIONS(255), - [anon_sym_AMP] = ACTIONS(257), - [aux_sym_preproc_if_token1] = ACTIONS(255), - [anon_sym_TILDE] = ACTIONS(257), - [anon_sym_L_DQUOTE] = ACTIONS(257), - [anon_sym_LPAREN2] = ACTIONS(257), - [anon_sym_RBRACE] = ACTIONS(257), - [anon_sym_else] = ACTIONS(255), - [sym_primitive_type] = ACTIONS(255), - [anon_sym_for] = ACTIONS(255), - [anon_sym_break] = ACTIONS(255), - [anon_sym_BANG] = ACTIONS(257), - [aux_sym_preproc_include_token1] = ACTIONS(255), - [anon_sym_DASH] = ACTIONS(255), - [anon_sym_static] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(257), - [anon_sym_register] = ACTIONS(255), - [anon_sym_STAR] = ACTIONS(257), - [anon_sym_if] = ACTIONS(255), - [anon_sym_switch] = ACTIONS(255), - [anon_sym_enum] = ACTIONS(255), - [sym_false] = ACTIONS(255), - [ts_builtin_sym_end] = ACTIONS(257), - [anon_sym_return] = ACTIONS(255), - [anon_sym_continue] = ACTIONS(255), - [anon_sym_SEMI] = ACTIONS(257), - [aux_sym_preproc_def_token1] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(255), - [anon_sym_auto] = ACTIONS(255), - [anon_sym_inline] = ACTIONS(255), + [sym_preproc_include] = STATE(21), + [sym_preproc_def] = STATE(21), + [sym_preproc_function_def] = STATE(21), + [sym_preproc_call] = STATE(21), + [sym_preproc_if] = STATE(21), + [sym_preproc_ifdef] = STATE(21), + [sym_function_definition] = STATE(21), + [sym_declaration] = STATE(21), + [sym_type_definition] = STATE(21), + [sym__declaration_specifiers] = STATE(906), + [sym_linkage_specification] = STATE(21), + [sym_attribute_specifier] = STATE(661), + [sym_compound_statement] = STATE(21), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(871), + [sym_sized_type_specifier] = STATE(871), + [sym_enum_specifier] = STATE(871), + [sym_struct_specifier] = STATE(871), + [sym_union_specifier] = STATE(871), + [sym_labeled_statement] = STATE(21), + [sym_expression_statement] = STATE(21), + [sym_if_statement] = STATE(21), + [sym_switch_statement] = STATE(21), + [sym_while_statement] = STATE(21), + [sym_do_statement] = STATE(21), + [sym_for_statement] = STATE(21), + [sym_return_statement] = STATE(21), + [sym_break_statement] = STATE(21), + [sym_continue_statement] = STATE(21), + [sym_goto_statement] = STATE(21), + [sym__expression] = STATE(707), + [sym_comma_expression] = STATE(1207), + [sym_conditional_expression] = STATE(707), + [sym_assignment_expression] = STATE(707), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(707), + [sym_binary_expression] = STATE(707), + [sym_update_expression] = STATE(707), + [sym_cast_expression] = STATE(707), + [sym_sizeof_expression] = STATE(707), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(707), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(707), + [sym_concatenated_string] = STATE(707), + [sym_string_literal] = STATE(431), + [sym__empty_declaration] = STATE(21), + [sym_macro_type_specifier] = STATE(871), + [aux_sym_translation_unit_repeat1] = STATE(21), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(346), + [aux_sym_preproc_include_token1] = ACTIONS(348), + [aux_sym_preproc_def_token1] = ACTIONS(350), + [aux_sym_preproc_if_token1] = ACTIONS(352), + [aux_sym_preproc_ifdef_token1] = ACTIONS(354), + [aux_sym_preproc_ifdef_token2] = ACTIONS(354), + [sym_preproc_directive] = ACTIONS(356), + [anon_sym_SEMI] = ACTIONS(358), + [anon_sym_typedef] = ACTIONS(360), + [anon_sym_extern] = ACTIONS(362), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(364), + [anon_sym_RBRACE] = ACTIONS(514), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(368), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [anon_sym_if] = ACTIONS(370), + [anon_sym_switch] = ACTIONS(372), + [anon_sym_while] = ACTIONS(374), + [anon_sym_do] = ACTIONS(376), + [anon_sym_for] = ACTIONS(378), + [anon_sym_return] = ACTIONS(380), + [anon_sym_break] = ACTIONS(382), + [anon_sym_continue] = ACTIONS(384), + [anon_sym_goto] = ACTIONS(386), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(388), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(390), + [sym_false] = ACTIONS(390), + [sym_null] = ACTIONS(390), + [sym_comment] = ACTIONS(3), }, [31] = { - [sym_identifier] = ACTIONS(259), + [sym_preproc_include] = STATE(21), + [sym_preproc_def] = STATE(21), + [sym_preproc_function_def] = STATE(21), + [sym_preproc_call] = STATE(21), + [sym_preproc_if] = STATE(21), + [sym_preproc_ifdef] = STATE(21), + [sym_function_definition] = STATE(21), + [sym_declaration] = STATE(21), + [sym_type_definition] = STATE(21), + [sym__declaration_specifiers] = STATE(906), + [sym_linkage_specification] = STATE(21), + [sym_attribute_specifier] = STATE(661), + [sym_compound_statement] = STATE(21), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(871), + [sym_sized_type_specifier] = STATE(871), + [sym_enum_specifier] = STATE(871), + [sym_struct_specifier] = STATE(871), + [sym_union_specifier] = STATE(871), + [sym_labeled_statement] = STATE(21), + [sym_expression_statement] = STATE(21), + [sym_if_statement] = STATE(21), + [sym_switch_statement] = STATE(21), + [sym_while_statement] = STATE(21), + [sym_do_statement] = STATE(21), + [sym_for_statement] = STATE(21), + [sym_return_statement] = STATE(21), + [sym_break_statement] = STATE(21), + [sym_continue_statement] = STATE(21), + [sym_goto_statement] = STATE(21), + [sym__expression] = STATE(707), + [sym_comma_expression] = STATE(1207), + [sym_conditional_expression] = STATE(707), + [sym_assignment_expression] = STATE(707), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(707), + [sym_binary_expression] = STATE(707), + [sym_update_expression] = STATE(707), + [sym_cast_expression] = STATE(707), + [sym_sizeof_expression] = STATE(707), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(707), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(707), + [sym_concatenated_string] = STATE(707), + [sym_string_literal] = STATE(431), + [sym__empty_declaration] = STATE(21), + [sym_macro_type_specifier] = STATE(871), + [aux_sym_translation_unit_repeat1] = STATE(21), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(346), + [aux_sym_preproc_include_token1] = ACTIONS(348), + [aux_sym_preproc_def_token1] = ACTIONS(350), + [aux_sym_preproc_if_token1] = ACTIONS(352), + [aux_sym_preproc_ifdef_token1] = ACTIONS(354), + [aux_sym_preproc_ifdef_token2] = ACTIONS(354), + [sym_preproc_directive] = ACTIONS(356), + [anon_sym_SEMI] = ACTIONS(358), + [anon_sym_typedef] = ACTIONS(360), + [anon_sym_extern] = ACTIONS(362), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(364), + [anon_sym_RBRACE] = ACTIONS(516), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(368), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [anon_sym_if] = ACTIONS(370), + [anon_sym_switch] = ACTIONS(372), + [anon_sym_while] = ACTIONS(374), + [anon_sym_do] = ACTIONS(376), + [anon_sym_for] = ACTIONS(378), + [anon_sym_return] = ACTIONS(380), + [anon_sym_break] = ACTIONS(382), + [anon_sym_continue] = ACTIONS(384), + [anon_sym_goto] = ACTIONS(386), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(388), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(390), + [sym_false] = ACTIONS(390), + [sym_null] = ACTIONS(390), [sym_comment] = ACTIONS(3), }, [32] = { + [sym_preproc_include] = STATE(24), + [sym_preproc_def] = STATE(24), + [sym_preproc_function_def] = STATE(24), + [sym_preproc_call] = STATE(24), + [sym_preproc_if] = STATE(24), + [sym_preproc_ifdef] = STATE(24), + [sym_function_definition] = STATE(24), + [sym_declaration] = STATE(24), + [sym_type_definition] = STATE(24), + [sym__declaration_specifiers] = STATE(906), + [sym_linkage_specification] = STATE(24), + [sym_attribute_specifier] = STATE(661), + [sym_compound_statement] = STATE(24), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(871), + [sym_sized_type_specifier] = STATE(871), + [sym_enum_specifier] = STATE(871), + [sym_struct_specifier] = STATE(871), + [sym_union_specifier] = STATE(871), + [sym_labeled_statement] = STATE(24), + [sym_expression_statement] = STATE(24), + [sym_if_statement] = STATE(24), + [sym_switch_statement] = STATE(24), + [sym_while_statement] = STATE(24), + [sym_do_statement] = STATE(24), + [sym_for_statement] = STATE(24), + [sym_return_statement] = STATE(24), + [sym_break_statement] = STATE(24), + [sym_continue_statement] = STATE(24), + [sym_goto_statement] = STATE(24), + [sym__expression] = STATE(707), + [sym_comma_expression] = STATE(1207), + [sym_conditional_expression] = STATE(707), + [sym_assignment_expression] = STATE(707), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(707), + [sym_binary_expression] = STATE(707), + [sym_update_expression] = STATE(707), + [sym_cast_expression] = STATE(707), + [sym_sizeof_expression] = STATE(707), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(707), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(707), + [sym_concatenated_string] = STATE(707), + [sym_string_literal] = STATE(431), + [sym__empty_declaration] = STATE(24), + [sym_macro_type_specifier] = STATE(871), + [aux_sym_translation_unit_repeat1] = STATE(24), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(346), + [aux_sym_preproc_include_token1] = ACTIONS(348), + [aux_sym_preproc_def_token1] = ACTIONS(350), + [aux_sym_preproc_if_token1] = ACTIONS(352), + [aux_sym_preproc_ifdef_token1] = ACTIONS(354), + [aux_sym_preproc_ifdef_token2] = ACTIONS(354), + [sym_preproc_directive] = ACTIONS(356), + [anon_sym_SEMI] = ACTIONS(358), + [anon_sym_typedef] = ACTIONS(360), + [anon_sym_extern] = ACTIONS(362), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(364), + [anon_sym_RBRACE] = ACTIONS(518), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(368), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [anon_sym_if] = ACTIONS(370), + [anon_sym_switch] = ACTIONS(372), + [anon_sym_while] = ACTIONS(374), + [anon_sym_do] = ACTIONS(376), + [anon_sym_for] = ACTIONS(378), + [anon_sym_return] = ACTIONS(380), + [anon_sym_break] = ACTIONS(382), + [anon_sym_continue] = ACTIONS(384), + [anon_sym_goto] = ACTIONS(386), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(388), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(390), + [sym_false] = ACTIONS(390), + [sym_null] = ACTIONS(390), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(261), }, [33] = { - [sym_char_literal] = STATE(93), - [sym__expression] = STATE(93), - [sym_binary_expression] = STATE(93), - [sym_update_expression] = STATE(93), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(93), - [sym_sizeof_expression] = STATE(93), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(93), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(93), - [sym_assignment_expression] = STATE(93), - [sym_cast_expression] = STATE(93), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(93), - [sym_true] = ACTIONS(263), - [sym_null] = ACTIONS(263), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(265), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(267), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_preproc_include] = STATE(21), + [sym_preproc_def] = STATE(21), + [sym_preproc_function_def] = STATE(21), + [sym_preproc_call] = STATE(21), + [sym_preproc_if] = STATE(21), + [sym_preproc_ifdef] = STATE(21), + [sym_function_definition] = STATE(21), + [sym_declaration] = STATE(21), + [sym_type_definition] = STATE(21), + [sym__declaration_specifiers] = STATE(906), + [sym_linkage_specification] = STATE(21), + [sym_attribute_specifier] = STATE(661), + [sym_compound_statement] = STATE(21), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(871), + [sym_sized_type_specifier] = STATE(871), + [sym_enum_specifier] = STATE(871), + [sym_struct_specifier] = STATE(871), + [sym_union_specifier] = STATE(871), + [sym_labeled_statement] = STATE(21), + [sym_expression_statement] = STATE(21), + [sym_if_statement] = STATE(21), + [sym_switch_statement] = STATE(21), + [sym_while_statement] = STATE(21), + [sym_do_statement] = STATE(21), + [sym_for_statement] = STATE(21), + [sym_return_statement] = STATE(21), + [sym_break_statement] = STATE(21), + [sym_continue_statement] = STATE(21), + [sym_goto_statement] = STATE(21), + [sym__expression] = STATE(707), + [sym_comma_expression] = STATE(1207), + [sym_conditional_expression] = STATE(707), + [sym_assignment_expression] = STATE(707), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(707), + [sym_binary_expression] = STATE(707), + [sym_update_expression] = STATE(707), + [sym_cast_expression] = STATE(707), + [sym_sizeof_expression] = STATE(707), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(707), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(707), + [sym_concatenated_string] = STATE(707), + [sym_string_literal] = STATE(431), + [sym__empty_declaration] = STATE(21), + [sym_macro_type_specifier] = STATE(871), + [aux_sym_translation_unit_repeat1] = STATE(21), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(346), + [aux_sym_preproc_include_token1] = ACTIONS(348), + [aux_sym_preproc_def_token1] = ACTIONS(350), + [aux_sym_preproc_if_token1] = ACTIONS(352), + [aux_sym_preproc_ifdef_token1] = ACTIONS(354), + [aux_sym_preproc_ifdef_token2] = ACTIONS(354), + [sym_preproc_directive] = ACTIONS(356), + [anon_sym_SEMI] = ACTIONS(358), + [anon_sym_typedef] = ACTIONS(360), + [anon_sym_extern] = ACTIONS(362), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(364), + [anon_sym_RBRACE] = ACTIONS(520), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(368), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [anon_sym_if] = ACTIONS(370), + [anon_sym_switch] = ACTIONS(372), + [anon_sym_while] = ACTIONS(374), + [anon_sym_do] = ACTIONS(376), + [anon_sym_for] = ACTIONS(378), + [anon_sym_return] = ACTIONS(380), + [anon_sym_break] = ACTIONS(382), + [anon_sym_continue] = ACTIONS(384), + [anon_sym_goto] = ACTIONS(386), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(388), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(390), + [sym_false] = ACTIONS(390), + [sym_null] = ACTIONS(390), + [sym_comment] = ACTIONS(3), }, [34] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_COMMA] = ACTIONS(293), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_SEMI] = ACTIONS(299), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [sym_preproc_include] = STATE(39), + [sym_preproc_def] = STATE(39), + [sym_preproc_function_def] = STATE(39), + [sym_preproc_call] = STATE(39), + [sym_preproc_if] = STATE(39), + [sym_preproc_ifdef] = STATE(39), + [sym_function_definition] = STATE(39), + [sym_declaration] = STATE(39), + [sym_type_definition] = STATE(39), + [sym__declaration_specifiers] = STATE(899), + [sym_linkage_specification] = STATE(39), + [sym_attribute_specifier] = STATE(661), + [sym_compound_statement] = STATE(39), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(855), + [sym_sized_type_specifier] = STATE(855), + [sym_enum_specifier] = STATE(855), + [sym_struct_specifier] = STATE(855), + [sym_union_specifier] = STATE(855), + [sym_labeled_statement] = STATE(39), + [sym_expression_statement] = STATE(39), + [sym_if_statement] = STATE(39), + [sym_switch_statement] = STATE(39), + [sym_while_statement] = STATE(39), + [sym_do_statement] = STATE(39), + [sym_for_statement] = STATE(39), + [sym_return_statement] = STATE(39), + [sym_break_statement] = STATE(39), + [sym_continue_statement] = STATE(39), + [sym_goto_statement] = STATE(39), + [sym__expression] = STATE(721), + [sym_comma_expression] = STATE(1123), + [sym_conditional_expression] = STATE(721), + [sym_assignment_expression] = STATE(721), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(721), + [sym_binary_expression] = STATE(721), + [sym_update_expression] = STATE(721), + [sym_cast_expression] = STATE(721), + [sym_sizeof_expression] = STATE(721), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(721), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(721), + [sym_concatenated_string] = STATE(721), + [sym_string_literal] = STATE(431), + [sym__empty_declaration] = STATE(39), + [sym_macro_type_specifier] = STATE(855), + [aux_sym_translation_unit_repeat1] = STATE(39), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [ts_builtin_sym_end] = ACTIONS(522), + [sym_identifier] = ACTIONS(7), + [aux_sym_preproc_include_token1] = ACTIONS(9), + [aux_sym_preproc_def_token1] = ACTIONS(11), + [aux_sym_preproc_if_token1] = ACTIONS(13), + [aux_sym_preproc_ifdef_token1] = ACTIONS(15), + [aux_sym_preproc_ifdef_token2] = ACTIONS(15), + [sym_preproc_directive] = ACTIONS(17), + [anon_sym_SEMI] = ACTIONS(19), + [anon_sym_typedef] = ACTIONS(21), + [anon_sym_extern] = ACTIONS(23), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(39), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [anon_sym_if] = ACTIONS(47), + [anon_sym_switch] = ACTIONS(49), + [anon_sym_while] = ACTIONS(51), + [anon_sym_do] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_return] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(61), + [anon_sym_goto] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(73), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_null] = ACTIONS(79), + [sym_comment] = ACTIONS(3), }, [35] = { + [sym_preproc_include] = STATE(36), + [sym_preproc_def] = STATE(36), + [sym_preproc_function_def] = STATE(36), + [sym_preproc_call] = STATE(36), + [sym_preproc_if] = STATE(36), + [sym_preproc_ifdef] = STATE(36), + [sym_function_definition] = STATE(36), + [sym_declaration] = STATE(36), + [sym_type_definition] = STATE(36), + [sym__declaration_specifiers] = STATE(906), + [sym_linkage_specification] = STATE(36), + [sym_attribute_specifier] = STATE(661), + [sym_compound_statement] = STATE(36), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(871), + [sym_sized_type_specifier] = STATE(871), + [sym_enum_specifier] = STATE(871), + [sym_struct_specifier] = STATE(871), + [sym_union_specifier] = STATE(871), + [sym_labeled_statement] = STATE(36), + [sym_expression_statement] = STATE(36), + [sym_if_statement] = STATE(36), + [sym_switch_statement] = STATE(36), + [sym_while_statement] = STATE(36), + [sym_do_statement] = STATE(36), + [sym_for_statement] = STATE(36), + [sym_return_statement] = STATE(36), + [sym_break_statement] = STATE(36), + [sym_continue_statement] = STATE(36), + [sym_goto_statement] = STATE(36), + [sym__expression] = STATE(707), + [sym_comma_expression] = STATE(1207), + [sym_conditional_expression] = STATE(707), + [sym_assignment_expression] = STATE(707), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(707), + [sym_binary_expression] = STATE(707), + [sym_update_expression] = STATE(707), + [sym_cast_expression] = STATE(707), + [sym_sizeof_expression] = STATE(707), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(707), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(707), + [sym_concatenated_string] = STATE(707), + [sym_string_literal] = STATE(431), + [sym__empty_declaration] = STATE(36), + [sym_macro_type_specifier] = STATE(871), + [aux_sym_translation_unit_repeat1] = STATE(36), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(346), + [aux_sym_preproc_include_token1] = ACTIONS(348), + [aux_sym_preproc_def_token1] = ACTIONS(350), + [aux_sym_preproc_if_token1] = ACTIONS(352), + [aux_sym_preproc_ifdef_token1] = ACTIONS(354), + [aux_sym_preproc_ifdef_token2] = ACTIONS(354), + [sym_preproc_directive] = ACTIONS(356), + [anon_sym_SEMI] = ACTIONS(358), + [anon_sym_typedef] = ACTIONS(360), + [anon_sym_extern] = ACTIONS(362), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(364), + [anon_sym_RBRACE] = ACTIONS(524), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(368), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [anon_sym_if] = ACTIONS(370), + [anon_sym_switch] = ACTIONS(372), + [anon_sym_while] = ACTIONS(374), + [anon_sym_do] = ACTIONS(376), + [anon_sym_for] = ACTIONS(378), + [anon_sym_return] = ACTIONS(380), + [anon_sym_break] = ACTIONS(382), + [anon_sym_continue] = ACTIONS(384), + [anon_sym_goto] = ACTIONS(386), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(388), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(390), + [sym_false] = ACTIONS(390), + [sym_null] = ACTIONS(390), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(299), }, [36] = { - [anon_sym_GT_GT] = ACTIONS(197), - [anon_sym_PERCENT_EQ] = ACTIONS(199), - [anon_sym_DASH_EQ] = ACTIONS(199), - [anon_sym_PIPE] = ACTIONS(197), - [anon_sym_EQ_EQ] = ACTIONS(203), - [anon_sym_SLASH] = ACTIONS(197), - [anon_sym_DASH_GT] = ACTIONS(203), - [anon_sym_LT_LT] = ACTIONS(197), - [anon_sym_DASH_DASH] = ACTIONS(203), - [anon_sym_PLUS_EQ] = ACTIONS(199), - [anon_sym_LT_LT_EQ] = ACTIONS(199), - [anon_sym_QMARK] = ACTIONS(203), - [anon_sym_BANG_EQ] = ACTIONS(203), - [anon_sym_CARET_EQ] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(203), - [anon_sym_PLUS_PLUS] = ACTIONS(203), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT_EQ] = ACTIONS(199), - [anon_sym_GT] = ACTIONS(197), - [anon_sym_PIPE_EQ] = ACTIONS(199), - [anon_sym_RPAREN] = ACTIONS(203), - [anon_sym_RBRACK] = ACTIONS(203), - [anon_sym_AMP_EQ] = ACTIONS(199), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_AMP] = ACTIONS(197), - [anon_sym_EQ] = ACTIONS(209), - [anon_sym_LPAREN2] = ACTIONS(203), - [anon_sym_GT_EQ] = ACTIONS(203), - [anon_sym_RBRACE] = ACTIONS(203), - [anon_sym_COLON] = ACTIONS(203), - [anon_sym_STAR_EQ] = ACTIONS(199), - [anon_sym_PIPE_PIPE] = ACTIONS(203), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_LT_EQ] = ACTIONS(203), - [anon_sym_STAR] = ACTIONS(197), - [anon_sym_SLASH_EQ] = ACTIONS(199), - [anon_sym_AMP_AMP] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(203), - [anon_sym_CARET] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_DOT] = ACTIONS(203), - [anon_sym_LT] = ACTIONS(197), - [anon_sym_LBRACK] = ACTIONS(203), + [sym_preproc_include] = STATE(21), + [sym_preproc_def] = STATE(21), + [sym_preproc_function_def] = STATE(21), + [sym_preproc_call] = STATE(21), + [sym_preproc_if] = STATE(21), + [sym_preproc_ifdef] = STATE(21), + [sym_function_definition] = STATE(21), + [sym_declaration] = STATE(21), + [sym_type_definition] = STATE(21), + [sym__declaration_specifiers] = STATE(906), + [sym_linkage_specification] = STATE(21), + [sym_attribute_specifier] = STATE(661), + [sym_compound_statement] = STATE(21), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(871), + [sym_sized_type_specifier] = STATE(871), + [sym_enum_specifier] = STATE(871), + [sym_struct_specifier] = STATE(871), + [sym_union_specifier] = STATE(871), + [sym_labeled_statement] = STATE(21), + [sym_expression_statement] = STATE(21), + [sym_if_statement] = STATE(21), + [sym_switch_statement] = STATE(21), + [sym_while_statement] = STATE(21), + [sym_do_statement] = STATE(21), + [sym_for_statement] = STATE(21), + [sym_return_statement] = STATE(21), + [sym_break_statement] = STATE(21), + [sym_continue_statement] = STATE(21), + [sym_goto_statement] = STATE(21), + [sym__expression] = STATE(707), + [sym_comma_expression] = STATE(1207), + [sym_conditional_expression] = STATE(707), + [sym_assignment_expression] = STATE(707), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(707), + [sym_binary_expression] = STATE(707), + [sym_update_expression] = STATE(707), + [sym_cast_expression] = STATE(707), + [sym_sizeof_expression] = STATE(707), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(707), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(707), + [sym_concatenated_string] = STATE(707), + [sym_string_literal] = STATE(431), + [sym__empty_declaration] = STATE(21), + [sym_macro_type_specifier] = STATE(871), + [aux_sym_translation_unit_repeat1] = STATE(21), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(346), + [aux_sym_preproc_include_token1] = ACTIONS(348), + [aux_sym_preproc_def_token1] = ACTIONS(350), + [aux_sym_preproc_if_token1] = ACTIONS(352), + [aux_sym_preproc_ifdef_token1] = ACTIONS(354), + [aux_sym_preproc_ifdef_token2] = ACTIONS(354), + [sym_preproc_directive] = ACTIONS(356), + [anon_sym_SEMI] = ACTIONS(358), + [anon_sym_typedef] = ACTIONS(360), + [anon_sym_extern] = ACTIONS(362), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(364), + [anon_sym_RBRACE] = ACTIONS(526), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(368), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [anon_sym_if] = ACTIONS(370), + [anon_sym_switch] = ACTIONS(372), + [anon_sym_while] = ACTIONS(374), + [anon_sym_do] = ACTIONS(376), + [anon_sym_for] = ACTIONS(378), + [anon_sym_return] = ACTIONS(380), + [anon_sym_break] = ACTIONS(382), + [anon_sym_continue] = ACTIONS(384), + [anon_sym_goto] = ACTIONS(386), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(388), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(390), + [sym_false] = ACTIONS(390), + [sym_null] = ACTIONS(390), + [sym_comment] = ACTIONS(3), }, [37] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(113), - [sym_attribute_specifier] = STATE(113), - [sym_storage_class_specifier] = STATE(113), - [sym_type_qualifier] = STATE(113), - [anon_sym_restrict] = ACTIONS(7), - [anon_sym_static] = ACTIONS(63), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_register] = ACTIONS(63), - [anon_sym_extern] = ACTIONS(63), - [anon_sym_STAR] = ACTIONS(307), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(7), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_SEMI] = ACTIONS(309), - [anon_sym__Atomic] = ACTIONS(7), - [sym_identifier] = ACTIONS(311), - [anon_sym_auto] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(31), + [sym_preproc_include] = STATE(21), + [sym_preproc_def] = STATE(21), + [sym_preproc_function_def] = STATE(21), + [sym_preproc_call] = STATE(21), + [sym_preproc_if] = STATE(21), + [sym_preproc_ifdef] = STATE(21), + [sym_function_definition] = STATE(21), + [sym_declaration] = STATE(21), + [sym_type_definition] = STATE(21), + [sym__declaration_specifiers] = STATE(906), + [sym_linkage_specification] = STATE(21), + [sym_attribute_specifier] = STATE(661), + [sym_compound_statement] = STATE(21), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(871), + [sym_sized_type_specifier] = STATE(871), + [sym_enum_specifier] = STATE(871), + [sym_struct_specifier] = STATE(871), + [sym_union_specifier] = STATE(871), + [sym_labeled_statement] = STATE(21), + [sym_expression_statement] = STATE(21), + [sym_if_statement] = STATE(21), + [sym_switch_statement] = STATE(21), + [sym_while_statement] = STATE(21), + [sym_do_statement] = STATE(21), + [sym_for_statement] = STATE(21), + [sym_return_statement] = STATE(21), + [sym_break_statement] = STATE(21), + [sym_continue_statement] = STATE(21), + [sym_goto_statement] = STATE(21), + [sym__expression] = STATE(707), + [sym_comma_expression] = STATE(1207), + [sym_conditional_expression] = STATE(707), + [sym_assignment_expression] = STATE(707), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(707), + [sym_binary_expression] = STATE(707), + [sym_update_expression] = STATE(707), + [sym_cast_expression] = STATE(707), + [sym_sizeof_expression] = STATE(707), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(707), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(707), + [sym_concatenated_string] = STATE(707), + [sym_string_literal] = STATE(431), + [sym__empty_declaration] = STATE(21), + [sym_macro_type_specifier] = STATE(871), + [aux_sym_translation_unit_repeat1] = STATE(21), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(346), + [aux_sym_preproc_include_token1] = ACTIONS(348), + [aux_sym_preproc_def_token1] = ACTIONS(350), + [aux_sym_preproc_if_token1] = ACTIONS(352), + [aux_sym_preproc_ifdef_token1] = ACTIONS(354), + [aux_sym_preproc_ifdef_token2] = ACTIONS(354), + [sym_preproc_directive] = ACTIONS(356), + [anon_sym_SEMI] = ACTIONS(358), + [anon_sym_typedef] = ACTIONS(360), + [anon_sym_extern] = ACTIONS(362), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(364), + [anon_sym_RBRACE] = ACTIONS(528), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(368), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [anon_sym_if] = ACTIONS(370), + [anon_sym_switch] = ACTIONS(372), + [anon_sym_while] = ACTIONS(374), + [anon_sym_do] = ACTIONS(376), + [anon_sym_for] = ACTIONS(378), + [anon_sym_return] = ACTIONS(380), + [anon_sym_break] = ACTIONS(382), + [anon_sym_continue] = ACTIONS(384), + [anon_sym_goto] = ACTIONS(386), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(388), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(390), + [sym_false] = ACTIONS(390), + [sym_null] = ACTIONS(390), + [sym_comment] = ACTIONS(3), }, [38] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(116), - [anon_sym_unsigned] = ACTIONS(313), - [anon_sym_restrict] = ACTIONS(315), - [anon_sym_short] = ACTIONS(313), - [anon_sym_const] = ACTIONS(315), - [anon_sym_LPAREN2] = ACTIONS(317), - [anon_sym_COLON] = ACTIONS(317), - [anon_sym__Atomic] = ACTIONS(315), - [sym_identifier] = ACTIONS(319), - [sym_primitive_type] = ACTIONS(322), - [anon_sym_COMMA] = ACTIONS(317), - [anon_sym_static] = ACTIONS(315), - [anon_sym_volatile] = ACTIONS(315), - [anon_sym_register] = ACTIONS(315), - [anon_sym_extern] = ACTIONS(315), - [anon_sym_STAR] = ACTIONS(317), - [anon_sym_signed] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(313), - [anon_sym_SEMI] = ACTIONS(317), - [anon_sym_RPAREN] = ACTIONS(317), - [anon_sym_auto] = ACTIONS(315), - [anon_sym_inline] = ACTIONS(315), - [anon_sym___attribute__] = ACTIONS(315), - [anon_sym_LBRACK] = ACTIONS(317), + [sym_preproc_include] = STATE(21), + [sym_preproc_def] = STATE(21), + [sym_preproc_function_def] = STATE(21), + [sym_preproc_call] = STATE(21), + [sym_preproc_if] = STATE(21), + [sym_preproc_ifdef] = STATE(21), + [sym_function_definition] = STATE(21), + [sym_declaration] = STATE(21), + [sym_type_definition] = STATE(21), + [sym__declaration_specifiers] = STATE(906), + [sym_linkage_specification] = STATE(21), + [sym_attribute_specifier] = STATE(661), + [sym_compound_statement] = STATE(21), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(871), + [sym_sized_type_specifier] = STATE(871), + [sym_enum_specifier] = STATE(871), + [sym_struct_specifier] = STATE(871), + [sym_union_specifier] = STATE(871), + [sym_labeled_statement] = STATE(21), + [sym_expression_statement] = STATE(21), + [sym_if_statement] = STATE(21), + [sym_switch_statement] = STATE(21), + [sym_while_statement] = STATE(21), + [sym_do_statement] = STATE(21), + [sym_for_statement] = STATE(21), + [sym_return_statement] = STATE(21), + [sym_break_statement] = STATE(21), + [sym_continue_statement] = STATE(21), + [sym_goto_statement] = STATE(21), + [sym__expression] = STATE(707), + [sym_comma_expression] = STATE(1207), + [sym_conditional_expression] = STATE(707), + [sym_assignment_expression] = STATE(707), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(707), + [sym_binary_expression] = STATE(707), + [sym_update_expression] = STATE(707), + [sym_cast_expression] = STATE(707), + [sym_sizeof_expression] = STATE(707), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(707), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(707), + [sym_concatenated_string] = STATE(707), + [sym_string_literal] = STATE(431), + [sym__empty_declaration] = STATE(21), + [sym_macro_type_specifier] = STATE(871), + [aux_sym_translation_unit_repeat1] = STATE(21), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(346), + [aux_sym_preproc_include_token1] = ACTIONS(348), + [aux_sym_preproc_def_token1] = ACTIONS(350), + [aux_sym_preproc_if_token1] = ACTIONS(352), + [aux_sym_preproc_ifdef_token1] = ACTIONS(354), + [aux_sym_preproc_ifdef_token2] = ACTIONS(354), + [sym_preproc_directive] = ACTIONS(356), + [anon_sym_SEMI] = ACTIONS(358), + [anon_sym_typedef] = ACTIONS(360), + [anon_sym_extern] = ACTIONS(362), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(364), + [anon_sym_RBRACE] = ACTIONS(530), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(368), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [anon_sym_if] = ACTIONS(370), + [anon_sym_switch] = ACTIONS(372), + [anon_sym_while] = ACTIONS(374), + [anon_sym_do] = ACTIONS(376), + [anon_sym_for] = ACTIONS(378), + [anon_sym_return] = ACTIONS(380), + [anon_sym_break] = ACTIONS(382), + [anon_sym_continue] = ACTIONS(384), + [anon_sym_goto] = ACTIONS(386), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(388), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(390), + [sym_false] = ACTIONS(390), + [sym_null] = ACTIONS(390), + [sym_comment] = ACTIONS(3), }, [39] = { - [ts_builtin_sym_end] = ACTIONS(324), + [sym_preproc_include] = STATE(39), + [sym_preproc_def] = STATE(39), + [sym_preproc_function_def] = STATE(39), + [sym_preproc_call] = STATE(39), + [sym_preproc_if] = STATE(39), + [sym_preproc_ifdef] = STATE(39), + [sym_function_definition] = STATE(39), + [sym_declaration] = STATE(39), + [sym_type_definition] = STATE(39), + [sym__declaration_specifiers] = STATE(899), + [sym_linkage_specification] = STATE(39), + [sym_attribute_specifier] = STATE(661), + [sym_compound_statement] = STATE(39), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(855), + [sym_sized_type_specifier] = STATE(855), + [sym_enum_specifier] = STATE(855), + [sym_struct_specifier] = STATE(855), + [sym_union_specifier] = STATE(855), + [sym_labeled_statement] = STATE(39), + [sym_expression_statement] = STATE(39), + [sym_if_statement] = STATE(39), + [sym_switch_statement] = STATE(39), + [sym_while_statement] = STATE(39), + [sym_do_statement] = STATE(39), + [sym_for_statement] = STATE(39), + [sym_return_statement] = STATE(39), + [sym_break_statement] = STATE(39), + [sym_continue_statement] = STATE(39), + [sym_goto_statement] = STATE(39), + [sym__expression] = STATE(721), + [sym_comma_expression] = STATE(1123), + [sym_conditional_expression] = STATE(721), + [sym_assignment_expression] = STATE(721), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(721), + [sym_binary_expression] = STATE(721), + [sym_update_expression] = STATE(721), + [sym_cast_expression] = STATE(721), + [sym_sizeof_expression] = STATE(721), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(721), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(721), + [sym_concatenated_string] = STATE(721), + [sym_string_literal] = STATE(431), + [sym__empty_declaration] = STATE(39), + [sym_macro_type_specifier] = STATE(855), + [aux_sym_translation_unit_repeat1] = STATE(39), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [ts_builtin_sym_end] = ACTIONS(308), + [sym_identifier] = ACTIONS(532), + [aux_sym_preproc_include_token1] = ACTIONS(535), + [aux_sym_preproc_def_token1] = ACTIONS(538), + [aux_sym_preproc_if_token1] = ACTIONS(541), + [aux_sym_preproc_ifdef_token1] = ACTIONS(544), + [aux_sym_preproc_ifdef_token2] = ACTIONS(544), + [sym_preproc_directive] = ACTIONS(547), + [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_typedef] = ACTIONS(553), + [anon_sym_extern] = ACTIONS(556), + [anon_sym___attribute__] = ACTIONS(194), + [anon_sym_LPAREN2] = ACTIONS(197), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_STAR] = ACTIONS(203), + [anon_sym_static] = ACTIONS(206), + [anon_sym_auto] = ACTIONS(206), + [anon_sym_register] = ACTIONS(206), + [anon_sym_inline] = ACTIONS(206), + [anon_sym_const] = ACTIONS(209), + [anon_sym_volatile] = ACTIONS(209), + [anon_sym_restrict] = ACTIONS(209), + [anon_sym__Atomic] = ACTIONS(209), + [anon_sym_signed] = ACTIONS(212), + [anon_sym_unsigned] = ACTIONS(212), + [anon_sym_long] = ACTIONS(212), + [anon_sym_short] = ACTIONS(212), + [sym_primitive_type] = ACTIONS(562), + [anon_sym_enum] = ACTIONS(218), + [anon_sym_struct] = ACTIONS(221), + [anon_sym_union] = ACTIONS(224), + [anon_sym_if] = ACTIONS(565), + [anon_sym_switch] = ACTIONS(568), + [anon_sym_while] = ACTIONS(571), + [anon_sym_do] = ACTIONS(574), + [anon_sym_for] = ACTIONS(577), + [anon_sym_return] = ACTIONS(580), + [anon_sym_break] = ACTIONS(583), + [anon_sym_continue] = ACTIONS(586), + [anon_sym_goto] = ACTIONS(589), + [anon_sym_AMP] = ACTIONS(203), + [anon_sym_BANG] = ACTIONS(254), + [anon_sym_TILDE] = ACTIONS(254), + [anon_sym_DASH] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(257), + [anon_sym_DASH_DASH] = ACTIONS(260), + [anon_sym_PLUS_PLUS] = ACTIONS(260), + [anon_sym_sizeof] = ACTIONS(263), + [sym_number_literal] = ACTIONS(592), + [anon_sym_L_SQUOTE] = ACTIONS(269), + [anon_sym_SQUOTE] = ACTIONS(269), + [anon_sym_L_DQUOTE] = ACTIONS(272), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_true] = ACTIONS(595), + [sym_false] = ACTIONS(595), + [sym_null] = ACTIONS(595), [sym_comment] = ACTIONS(3), }, [40] = { - [sym_pointer_declarator] = STATE(119), - [sym_array_declarator] = STATE(119), - [sym__declarator] = STATE(119), - [sym_parenthesized_declarator] = STATE(119), - [sym_function_declarator] = STATE(119), - [sym_init_declarator] = STATE(120), - [anon_sym_STAR] = ACTIONS(326), - [anon_sym_LPAREN2] = ACTIONS(328), - [sym_identifier] = ACTIONS(330), + [sym_preproc_include] = STATE(38), + [sym_preproc_def] = STATE(38), + [sym_preproc_function_def] = STATE(38), + [sym_preproc_call] = STATE(38), + [sym_preproc_if] = STATE(38), + [sym_preproc_ifdef] = STATE(38), + [sym_function_definition] = STATE(38), + [sym_declaration] = STATE(38), + [sym_type_definition] = STATE(38), + [sym__declaration_specifiers] = STATE(906), + [sym_linkage_specification] = STATE(38), + [sym_attribute_specifier] = STATE(661), + [sym_compound_statement] = STATE(38), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(871), + [sym_sized_type_specifier] = STATE(871), + [sym_enum_specifier] = STATE(871), + [sym_struct_specifier] = STATE(871), + [sym_union_specifier] = STATE(871), + [sym_labeled_statement] = STATE(38), + [sym_expression_statement] = STATE(38), + [sym_if_statement] = STATE(38), + [sym_switch_statement] = STATE(38), + [sym_while_statement] = STATE(38), + [sym_do_statement] = STATE(38), + [sym_for_statement] = STATE(38), + [sym_return_statement] = STATE(38), + [sym_break_statement] = STATE(38), + [sym_continue_statement] = STATE(38), + [sym_goto_statement] = STATE(38), + [sym__expression] = STATE(707), + [sym_comma_expression] = STATE(1207), + [sym_conditional_expression] = STATE(707), + [sym_assignment_expression] = STATE(707), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(707), + [sym_binary_expression] = STATE(707), + [sym_update_expression] = STATE(707), + [sym_cast_expression] = STATE(707), + [sym_sizeof_expression] = STATE(707), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(707), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(707), + [sym_concatenated_string] = STATE(707), + [sym_string_literal] = STATE(431), + [sym__empty_declaration] = STATE(38), + [sym_macro_type_specifier] = STATE(871), + [aux_sym_translation_unit_repeat1] = STATE(38), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(346), + [aux_sym_preproc_include_token1] = ACTIONS(348), + [aux_sym_preproc_def_token1] = ACTIONS(350), + [aux_sym_preproc_if_token1] = ACTIONS(352), + [aux_sym_preproc_ifdef_token1] = ACTIONS(354), + [aux_sym_preproc_ifdef_token2] = ACTIONS(354), + [sym_preproc_directive] = ACTIONS(356), + [anon_sym_SEMI] = ACTIONS(358), + [anon_sym_typedef] = ACTIONS(360), + [anon_sym_extern] = ACTIONS(362), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(364), + [anon_sym_RBRACE] = ACTIONS(598), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(368), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [anon_sym_if] = ACTIONS(370), + [anon_sym_switch] = ACTIONS(372), + [anon_sym_while] = ACTIONS(374), + [anon_sym_do] = ACTIONS(376), + [anon_sym_for] = ACTIONS(378), + [anon_sym_return] = ACTIONS(380), + [anon_sym_break] = ACTIONS(382), + [anon_sym_continue] = ACTIONS(384), + [anon_sym_goto] = ACTIONS(386), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(388), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(390), + [sym_false] = ACTIONS(390), + [sym_null] = ACTIONS(390), [sym_comment] = ACTIONS(3), }, [41] = { - [aux_sym_concatenated_string_repeat1] = STATE(121), - [sym_string_literal] = STATE(121), - [anon_sym_GT_GT] = ACTIONS(197), - [anon_sym_PERCENT_EQ] = ACTIONS(203), - [anon_sym_DASH_EQ] = ACTIONS(203), - [anon_sym_PIPE] = ACTIONS(197), - [anon_sym_EQ_EQ] = ACTIONS(203), - [anon_sym_SLASH] = ACTIONS(197), - [anon_sym_DASH_GT] = ACTIONS(203), - [anon_sym_LT_LT] = ACTIONS(197), - [anon_sym_DASH_DASH] = ACTIONS(203), - [anon_sym_PLUS_EQ] = ACTIONS(203), - [anon_sym_LT_LT_EQ] = ACTIONS(203), - [anon_sym_QMARK] = ACTIONS(203), - [anon_sym_BANG_EQ] = ACTIONS(203), - [anon_sym_CARET_EQ] = ACTIONS(203), - [anon_sym_COMMA] = ACTIONS(203), - [anon_sym_PLUS_PLUS] = ACTIONS(203), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT_EQ] = ACTIONS(203), - [anon_sym_GT] = ACTIONS(197), - [anon_sym_PIPE_EQ] = ACTIONS(203), - [anon_sym_RPAREN] = ACTIONS(203), - [anon_sym_RBRACK] = ACTIONS(203), - [anon_sym_AMP_EQ] = ACTIONS(203), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_AMP] = ACTIONS(197), - [anon_sym_EQ] = ACTIONS(197), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(203), - [anon_sym_GT_EQ] = ACTIONS(203), - [anon_sym_RBRACE] = ACTIONS(203), - [anon_sym_COLON] = ACTIONS(203), - [anon_sym_STAR_EQ] = ACTIONS(203), - [anon_sym_PIPE_PIPE] = ACTIONS(203), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(203), - [anon_sym_STAR] = ACTIONS(197), - [anon_sym_SLASH_EQ] = ACTIONS(203), - [anon_sym_AMP_AMP] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(203), - [anon_sym_CARET] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_DOT] = ACTIONS(203), - [anon_sym_LT] = ACTIONS(197), - [anon_sym_LBRACK] = ACTIONS(203), + [sym_preproc_include] = STATE(44), + [sym_preproc_def] = STATE(44), + [sym_preproc_function_def] = STATE(44), + [sym_preproc_call] = STATE(44), + [sym_preproc_if] = STATE(44), + [sym_preproc_ifdef] = STATE(44), + [sym_function_definition] = STATE(44), + [sym_declaration] = STATE(44), + [sym_type_definition] = STATE(44), + [sym__declaration_specifiers] = STATE(906), + [sym_linkage_specification] = STATE(44), + [sym_attribute_specifier] = STATE(661), + [sym_compound_statement] = STATE(44), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(871), + [sym_sized_type_specifier] = STATE(871), + [sym_enum_specifier] = STATE(871), + [sym_struct_specifier] = STATE(871), + [sym_union_specifier] = STATE(871), + [sym_labeled_statement] = STATE(44), + [sym_expression_statement] = STATE(44), + [sym_if_statement] = STATE(44), + [sym_switch_statement] = STATE(44), + [sym_while_statement] = STATE(44), + [sym_do_statement] = STATE(44), + [sym_for_statement] = STATE(44), + [sym_return_statement] = STATE(44), + [sym_break_statement] = STATE(44), + [sym_continue_statement] = STATE(44), + [sym_goto_statement] = STATE(44), + [sym__expression] = STATE(707), + [sym_comma_expression] = STATE(1207), + [sym_conditional_expression] = STATE(707), + [sym_assignment_expression] = STATE(707), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(707), + [sym_binary_expression] = STATE(707), + [sym_update_expression] = STATE(707), + [sym_cast_expression] = STATE(707), + [sym_sizeof_expression] = STATE(707), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(707), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(707), + [sym_concatenated_string] = STATE(707), + [sym_string_literal] = STATE(431), + [sym__empty_declaration] = STATE(44), + [sym_macro_type_specifier] = STATE(871), + [aux_sym_translation_unit_repeat1] = STATE(44), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(346), + [aux_sym_preproc_include_token1] = ACTIONS(348), + [aux_sym_preproc_def_token1] = ACTIONS(350), + [aux_sym_preproc_if_token1] = ACTIONS(352), + [aux_sym_preproc_ifdef_token1] = ACTIONS(354), + [aux_sym_preproc_ifdef_token2] = ACTIONS(354), + [sym_preproc_directive] = ACTIONS(356), + [anon_sym_SEMI] = ACTIONS(358), + [anon_sym_typedef] = ACTIONS(360), + [anon_sym_extern] = ACTIONS(362), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(364), + [anon_sym_RBRACE] = ACTIONS(600), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(368), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [anon_sym_if] = ACTIONS(370), + [anon_sym_switch] = ACTIONS(372), + [anon_sym_while] = ACTIONS(374), + [anon_sym_do] = ACTIONS(376), + [anon_sym_for] = ACTIONS(378), + [anon_sym_return] = ACTIONS(380), + [anon_sym_break] = ACTIONS(382), + [anon_sym_continue] = ACTIONS(384), + [anon_sym_goto] = ACTIONS(386), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(388), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(390), + [sym_false] = ACTIONS(390), + [sym_null] = ACTIONS(390), + [sym_comment] = ACTIONS(3), }, [42] = { - [sym_if_statement] = STATE(122), - [sym_preproc_def] = STATE(122), - [sym_preproc_function_def] = STATE(122), - [sym__expression] = STATE(34), - [sym_comma_expression] = STATE(35), - [sym_binary_expression] = STATE(34), - [sym_update_expression] = STATE(34), - [sym_call_expression] = STATE(36), - [sym_function_definition] = STATE(122), - [sym_declaration] = STATE(122), - [sym_do_statement] = STATE(122), - [sym_for_statement] = STATE(122), - [aux_sym_translation_unit_repeat1] = STATE(122), - [sym_expression_statement] = STATE(122), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(37), - [sym_union_specifier] = STATE(37), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_switch_statement] = STATE(122), - [sym_return_statement] = STATE(122), - [sym_preproc_call] = STATE(122), - [sym_conditional_expression] = STATE(34), - [sym_assignment_expression] = STATE(34), - [sym_type_definition] = STATE(122), - [sym_cast_expression] = STATE(34), - [sym__declaration_specifiers] = STATE(40), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(34), - [sym_char_literal] = STATE(34), - [sym_break_statement] = STATE(122), - [sym__empty_declaration] = STATE(122), - [sym_sized_type_specifier] = STATE(37), - [sym_enum_specifier] = STATE(37), - [sym_labeled_statement] = STATE(122), - [sym_preproc_include] = STATE(122), - [sym_preproc_if] = STATE(122), - [sym_preproc_ifdef] = STATE(122), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(34), - [sym_sizeof_expression] = STATE(34), - [sym_attribute_specifier] = STATE(43), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_linkage_specification] = STATE(122), - [sym_concatenated_string] = STATE(34), - [sym_string_literal] = STATE(41), - [sym_macro_type_specifier] = STATE(37), - [sym_while_statement] = STATE(122), - [sym_storage_class_specifier] = STATE(43), - [sym_compound_statement] = STATE(122), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_continue_statement] = STATE(122), - [sym_struct_specifier] = STATE(37), - [sym_goto_statement] = STATE(122), - [sym_true] = ACTIONS(5), - [anon_sym_restrict] = ACTIONS(7), - [sym_null] = ACTIONS(5), - [anon_sym_goto] = ACTIONS(9), - [anon_sym_const] = ACTIONS(7), - [anon_sym_typedef] = ACTIONS(11), - [anon_sym_DASH_DASH] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(7), - [sym_identifier] = ACTIONS(15), - [aux_sym_preproc_ifdef_token1] = ACTIONS(17), - [sym_number_literal] = ACTIONS(19), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_extern] = ACTIONS(23), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_struct] = ACTIONS(25), - [anon_sym_signed] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(27), - [anon_sym_while] = ACTIONS(29), - [aux_sym_preproc_ifdef_token2] = ACTIONS(17), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_sizeof] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_union] = ACTIONS(37), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_short] = ACTIONS(27), - [anon_sym_do] = ACTIONS(39), - [sym_preproc_directive] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(43), - [aux_sym_preproc_if_token1] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_break] = ACTIONS(57), - [anon_sym_BANG] = ACTIONS(47), - [aux_sym_preproc_include_token1] = ACTIONS(59), - [anon_sym_DASH] = ACTIONS(61), - [anon_sym_static] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_register] = ACTIONS(63), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(65), - [anon_sym_switch] = ACTIONS(67), - [anon_sym_enum] = ACTIONS(69), - [sym_false] = ACTIONS(5), - [ts_builtin_sym_end] = ACTIONS(332), - [anon_sym_return] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_SEMI] = ACTIONS(77), - [aux_sym_preproc_def_token1] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_auto] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), + [sym_preproc_include] = STATE(43), + [sym_preproc_def] = STATE(43), + [sym_preproc_function_def] = STATE(43), + [sym_preproc_call] = STATE(43), + [sym_preproc_if] = STATE(43), + [sym_preproc_ifdef] = STATE(43), + [sym_function_definition] = STATE(43), + [sym_declaration] = STATE(43), + [sym_type_definition] = STATE(43), + [sym__declaration_specifiers] = STATE(906), + [sym_linkage_specification] = STATE(43), + [sym_attribute_specifier] = STATE(661), + [sym_compound_statement] = STATE(43), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(871), + [sym_sized_type_specifier] = STATE(871), + [sym_enum_specifier] = STATE(871), + [sym_struct_specifier] = STATE(871), + [sym_union_specifier] = STATE(871), + [sym_labeled_statement] = STATE(43), + [sym_expression_statement] = STATE(43), + [sym_if_statement] = STATE(43), + [sym_switch_statement] = STATE(43), + [sym_while_statement] = STATE(43), + [sym_do_statement] = STATE(43), + [sym_for_statement] = STATE(43), + [sym_return_statement] = STATE(43), + [sym_break_statement] = STATE(43), + [sym_continue_statement] = STATE(43), + [sym_goto_statement] = STATE(43), + [sym__expression] = STATE(707), + [sym_comma_expression] = STATE(1207), + [sym_conditional_expression] = STATE(707), + [sym_assignment_expression] = STATE(707), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(707), + [sym_binary_expression] = STATE(707), + [sym_update_expression] = STATE(707), + [sym_cast_expression] = STATE(707), + [sym_sizeof_expression] = STATE(707), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(707), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(707), + [sym_concatenated_string] = STATE(707), + [sym_string_literal] = STATE(431), + [sym__empty_declaration] = STATE(43), + [sym_macro_type_specifier] = STATE(871), + [aux_sym_translation_unit_repeat1] = STATE(43), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(346), + [aux_sym_preproc_include_token1] = ACTIONS(348), + [aux_sym_preproc_def_token1] = ACTIONS(350), + [aux_sym_preproc_if_token1] = ACTIONS(352), + [aux_sym_preproc_ifdef_token1] = ACTIONS(354), + [aux_sym_preproc_ifdef_token2] = ACTIONS(354), + [sym_preproc_directive] = ACTIONS(356), + [anon_sym_SEMI] = ACTIONS(358), + [anon_sym_typedef] = ACTIONS(360), + [anon_sym_extern] = ACTIONS(362), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(364), + [anon_sym_RBRACE] = ACTIONS(602), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(368), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [anon_sym_if] = ACTIONS(370), + [anon_sym_switch] = ACTIONS(372), + [anon_sym_while] = ACTIONS(374), + [anon_sym_do] = ACTIONS(376), + [anon_sym_for] = ACTIONS(378), + [anon_sym_return] = ACTIONS(380), + [anon_sym_break] = ACTIONS(382), + [anon_sym_continue] = ACTIONS(384), + [anon_sym_goto] = ACTIONS(386), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(388), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(390), + [sym_false] = ACTIONS(390), + [sym_null] = ACTIONS(390), + [sym_comment] = ACTIONS(3), }, [43] = { - [sym_sized_type_specifier] = STATE(123), - [sym_enum_specifier] = STATE(123), - [sym_type_qualifier] = STATE(124), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_union_specifier] = STATE(123), - [sym_attribute_specifier] = STATE(124), - [sym__type_specifier] = STATE(123), - [sym_macro_type_specifier] = STATE(123), - [sym_storage_class_specifier] = STATE(124), - [aux_sym__declaration_specifiers_repeat1] = STATE(124), - [sym_struct_specifier] = STATE(123), - [anon_sym_union] = ACTIONS(37), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(7), - [anon_sym_short] = ACTIONS(27), - [anon_sym_const] = ACTIONS(7), - [anon_sym__Atomic] = ACTIONS(7), - [sym_primitive_type] = ACTIONS(334), - [sym_identifier] = ACTIONS(187), - [anon_sym_static] = ACTIONS(63), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_register] = ACTIONS(63), - [anon_sym_extern] = ACTIONS(63), - [anon_sym_struct] = ACTIONS(25), - [anon_sym_signed] = ACTIONS(27), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_long] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_auto] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(31), + [sym_preproc_include] = STATE(21), + [sym_preproc_def] = STATE(21), + [sym_preproc_function_def] = STATE(21), + [sym_preproc_call] = STATE(21), + [sym_preproc_if] = STATE(21), + [sym_preproc_ifdef] = STATE(21), + [sym_function_definition] = STATE(21), + [sym_declaration] = STATE(21), + [sym_type_definition] = STATE(21), + [sym__declaration_specifiers] = STATE(906), + [sym_linkage_specification] = STATE(21), + [sym_attribute_specifier] = STATE(661), + [sym_compound_statement] = STATE(21), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(871), + [sym_sized_type_specifier] = STATE(871), + [sym_enum_specifier] = STATE(871), + [sym_struct_specifier] = STATE(871), + [sym_union_specifier] = STATE(871), + [sym_labeled_statement] = STATE(21), + [sym_expression_statement] = STATE(21), + [sym_if_statement] = STATE(21), + [sym_switch_statement] = STATE(21), + [sym_while_statement] = STATE(21), + [sym_do_statement] = STATE(21), + [sym_for_statement] = STATE(21), + [sym_return_statement] = STATE(21), + [sym_break_statement] = STATE(21), + [sym_continue_statement] = STATE(21), + [sym_goto_statement] = STATE(21), + [sym__expression] = STATE(707), + [sym_comma_expression] = STATE(1207), + [sym_conditional_expression] = STATE(707), + [sym_assignment_expression] = STATE(707), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(707), + [sym_binary_expression] = STATE(707), + [sym_update_expression] = STATE(707), + [sym_cast_expression] = STATE(707), + [sym_sizeof_expression] = STATE(707), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(707), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(707), + [sym_concatenated_string] = STATE(707), + [sym_string_literal] = STATE(431), + [sym__empty_declaration] = STATE(21), + [sym_macro_type_specifier] = STATE(871), + [aux_sym_translation_unit_repeat1] = STATE(21), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(346), + [aux_sym_preproc_include_token1] = ACTIONS(348), + [aux_sym_preproc_def_token1] = ACTIONS(350), + [aux_sym_preproc_if_token1] = ACTIONS(352), + [aux_sym_preproc_ifdef_token1] = ACTIONS(354), + [aux_sym_preproc_ifdef_token2] = ACTIONS(354), + [sym_preproc_directive] = ACTIONS(356), + [anon_sym_SEMI] = ACTIONS(358), + [anon_sym_typedef] = ACTIONS(360), + [anon_sym_extern] = ACTIONS(362), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(364), + [anon_sym_RBRACE] = ACTIONS(604), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(368), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [anon_sym_if] = ACTIONS(370), + [anon_sym_switch] = ACTIONS(372), + [anon_sym_while] = ACTIONS(374), + [anon_sym_do] = ACTIONS(376), + [anon_sym_for] = ACTIONS(378), + [anon_sym_return] = ACTIONS(380), + [anon_sym_break] = ACTIONS(382), + [anon_sym_continue] = ACTIONS(384), + [anon_sym_goto] = ACTIONS(386), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(388), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(390), + [sym_false] = ACTIONS(390), + [sym_null] = ACTIONS(390), + [sym_comment] = ACTIONS(3), }, [44] = { - [anon_sym_case] = ACTIONS(336), - [sym_true] = ACTIONS(336), - [anon_sym_restrict] = ACTIONS(336), - [sym_null] = ACTIONS(336), - [anon_sym_goto] = ACTIONS(336), - [anon_sym_const] = ACTIONS(336), - [anon_sym_typedef] = ACTIONS(336), - [anon_sym_DASH_DASH] = ACTIONS(338), - [anon_sym_default] = ACTIONS(336), - [anon_sym__Atomic] = ACTIONS(336), - [sym_identifier] = ACTIONS(336), - [aux_sym_preproc_ifdef_token1] = ACTIONS(336), - [sym_number_literal] = ACTIONS(338), - [anon_sym_volatile] = ACTIONS(336), - [anon_sym_SQUOTE] = ACTIONS(338), - [anon_sym_extern] = ACTIONS(336), - [anon_sym_PLUS_PLUS] = ACTIONS(338), - [anon_sym_struct] = ACTIONS(336), - [anon_sym_signed] = ACTIONS(336), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(336), - [anon_sym_while] = ACTIONS(336), - [aux_sym_preproc_ifdef_token2] = ACTIONS(336), - [anon_sym_L_SQUOTE] = ACTIONS(338), - [anon_sym___attribute__] = ACTIONS(336), - [anon_sym_sizeof] = ACTIONS(336), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_union] = ACTIONS(336), - [anon_sym_unsigned] = ACTIONS(336), - [anon_sym_short] = ACTIONS(336), - [anon_sym_do] = ACTIONS(336), - [sym_preproc_directive] = ACTIONS(336), - [anon_sym_AMP] = ACTIONS(338), - [aux_sym_preproc_if_token1] = ACTIONS(336), - [anon_sym_TILDE] = ACTIONS(338), - [anon_sym_L_DQUOTE] = ACTIONS(338), - [anon_sym_LPAREN2] = ACTIONS(338), - [anon_sym_RBRACE] = ACTIONS(338), - [anon_sym_else] = ACTIONS(336), - [sym_primitive_type] = ACTIONS(336), - [anon_sym_for] = ACTIONS(336), - [anon_sym_break] = ACTIONS(336), - [anon_sym_BANG] = ACTIONS(338), - [aux_sym_preproc_include_token1] = ACTIONS(336), - [anon_sym_DASH] = ACTIONS(336), - [anon_sym_static] = ACTIONS(336), - [anon_sym_DQUOTE] = ACTIONS(338), - [anon_sym_register] = ACTIONS(336), - [anon_sym_STAR] = ACTIONS(338), - [anon_sym_if] = ACTIONS(336), - [anon_sym_switch] = ACTIONS(336), - [anon_sym_enum] = ACTIONS(336), - [sym_false] = ACTIONS(336), - [ts_builtin_sym_end] = ACTIONS(338), - [anon_sym_return] = ACTIONS(336), - [anon_sym_continue] = ACTIONS(336), - [anon_sym_SEMI] = ACTIONS(338), - [aux_sym_preproc_def_token1] = ACTIONS(336), - [anon_sym_PLUS] = ACTIONS(336), - [anon_sym_auto] = ACTIONS(336), - [anon_sym_inline] = ACTIONS(336), + [sym_preproc_include] = STATE(21), + [sym_preproc_def] = STATE(21), + [sym_preproc_function_def] = STATE(21), + [sym_preproc_call] = STATE(21), + [sym_preproc_if] = STATE(21), + [sym_preproc_ifdef] = STATE(21), + [sym_function_definition] = STATE(21), + [sym_declaration] = STATE(21), + [sym_type_definition] = STATE(21), + [sym__declaration_specifiers] = STATE(906), + [sym_linkage_specification] = STATE(21), + [sym_attribute_specifier] = STATE(661), + [sym_compound_statement] = STATE(21), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(871), + [sym_sized_type_specifier] = STATE(871), + [sym_enum_specifier] = STATE(871), + [sym_struct_specifier] = STATE(871), + [sym_union_specifier] = STATE(871), + [sym_labeled_statement] = STATE(21), + [sym_expression_statement] = STATE(21), + [sym_if_statement] = STATE(21), + [sym_switch_statement] = STATE(21), + [sym_while_statement] = STATE(21), + [sym_do_statement] = STATE(21), + [sym_for_statement] = STATE(21), + [sym_return_statement] = STATE(21), + [sym_break_statement] = STATE(21), + [sym_continue_statement] = STATE(21), + [sym_goto_statement] = STATE(21), + [sym__expression] = STATE(707), + [sym_comma_expression] = STATE(1207), + [sym_conditional_expression] = STATE(707), + [sym_assignment_expression] = STATE(707), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(707), + [sym_binary_expression] = STATE(707), + [sym_update_expression] = STATE(707), + [sym_cast_expression] = STATE(707), + [sym_sizeof_expression] = STATE(707), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(707), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(707), + [sym_concatenated_string] = STATE(707), + [sym_string_literal] = STATE(431), + [sym__empty_declaration] = STATE(21), + [sym_macro_type_specifier] = STATE(871), + [aux_sym_translation_unit_repeat1] = STATE(21), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(346), + [aux_sym_preproc_include_token1] = ACTIONS(348), + [aux_sym_preproc_def_token1] = ACTIONS(350), + [aux_sym_preproc_if_token1] = ACTIONS(352), + [aux_sym_preproc_ifdef_token1] = ACTIONS(354), + [aux_sym_preproc_ifdef_token2] = ACTIONS(354), + [sym_preproc_directive] = ACTIONS(356), + [anon_sym_SEMI] = ACTIONS(358), + [anon_sym_typedef] = ACTIONS(360), + [anon_sym_extern] = ACTIONS(362), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(364), + [anon_sym_RBRACE] = ACTIONS(606), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(368), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [anon_sym_if] = ACTIONS(370), + [anon_sym_switch] = ACTIONS(372), + [anon_sym_while] = ACTIONS(374), + [anon_sym_do] = ACTIONS(376), + [anon_sym_for] = ACTIONS(378), + [anon_sym_return] = ACTIONS(380), + [anon_sym_break] = ACTIONS(382), + [anon_sym_continue] = ACTIONS(384), + [anon_sym_goto] = ACTIONS(386), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(388), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(390), + [sym_false] = ACTIONS(390), + [sym_null] = ACTIONS(390), + [sym_comment] = ACTIONS(3), }, [45] = { - [sym_do_statement] = STATE(533), - [sym_preproc_function_def] = STATE(533), - [sym__expression] = STATE(867), - [sym_binary_expression] = STATE(867), - [sym_declaration] = STATE(533), - [sym_call_expression] = STATE(36), - [sym__type_specifier] = STATE(869), - [sym_break_statement] = STATE(533), - [sym_assignment_expression] = STATE(867), - [sym_type_definition] = STATE(533), - [sym_compound_literal_expression] = STATE(867), - [sym_char_literal] = STATE(867), - [sym__empty_declaration] = STATE(533), - [sym_sized_type_specifier] = STATE(869), - [sym_preproc_include] = STATE(533), - [sym_continue_statement] = STATE(533), - [sym_preproc_ifdef] = STATE(533), - [sym_pointer_expression] = STATE(36), - [sym_sizeof_expression] = STATE(867), - [sym_attribute_specifier] = STATE(43), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(867), - [sym_macro_type_specifier] = STATE(869), - [sym_storage_class_specifier] = STATE(43), - [sym_struct_specifier] = STATE(869), - [sym_if_statement] = STATE(533), - [sym_preproc_def] = STATE(533), - [sym_for_statement] = STATE(533), - [sym_comma_expression] = STATE(868), - [sym_function_definition] = STATE(533), - [sym_update_expression] = STATE(867), - [sym_type_qualifier] = STATE(43), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_union_specifier] = STATE(869), - [sym_switch_statement] = STATE(533), - [sym_return_statement] = STATE(533), - [sym_preproc_call] = STATE(533), - [sym_conditional_expression] = STATE(867), - [sym_cast_expression] = STATE(867), - [sym__declaration_specifiers] = STATE(1151), - [sym_field_expression] = STATE(36), - [sym_enum_specifier] = STATE(869), - [sym_labeled_statement] = STATE(533), - [sym_while_statement] = STATE(533), - [sym_preproc_if] = STATE(533), - [sym_goto_statement] = STATE(533), - [sym_unary_expression] = STATE(867), - [sym_linkage_specification] = STATE(533), - [sym_subscript_expression] = STATE(36), - [sym_string_literal] = STATE(41), - [aux_sym_translation_unit_repeat1] = STATE(533), - [sym_compound_statement] = STATE(533), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_expression_statement] = STATE(533), - [sym_true] = ACTIONS(81), - [anon_sym_restrict] = ACTIONS(7), - [sym_null] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_const] = ACTIONS(7), - [anon_sym_typedef] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(7), - [sym_identifier] = ACTIONS(87), - [aux_sym_preproc_ifdef_token1] = ACTIONS(89), - [sym_number_literal] = ACTIONS(91), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_extern] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_struct] = ACTIONS(25), - [anon_sym_signed] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(27), - [anon_sym_while] = ACTIONS(95), - [aux_sym_preproc_ifdef_token2] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_sizeof] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(97), - [anon_sym_union] = ACTIONS(37), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_short] = ACTIONS(27), - [anon_sym_do] = ACTIONS(99), - [sym_preproc_directive] = ACTIONS(101), - [anon_sym_AMP] = ACTIONS(43), - [aux_sym_preproc_if_token1] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(340), - [sym_primitive_type] = ACTIONS(107), - [anon_sym_for] = ACTIONS(109), - [anon_sym_break] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(47), - [aux_sym_preproc_include_token1] = ACTIONS(113), - [anon_sym_DASH] = ACTIONS(61), - [anon_sym_static] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_register] = ACTIONS(63), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(115), - [anon_sym_switch] = ACTIONS(117), - [anon_sym_enum] = ACTIONS(69), - [sym_false] = ACTIONS(81), - [anon_sym_return] = ACTIONS(119), - [anon_sym_continue] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(123), - [aux_sym_preproc_def_token1] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_auto] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), + [sym_declaration] = STATE(45), + [sym_type_definition] = STATE(45), + [sym__declaration_specifiers] = STATE(901), + [sym_attribute_specifier] = STATE(661), + [sym_compound_statement] = STATE(45), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(835), + [sym_sized_type_specifier] = STATE(835), + [sym_enum_specifier] = STATE(835), + [sym_struct_specifier] = STATE(835), + [sym_union_specifier] = STATE(835), + [sym_labeled_statement] = STATE(45), + [sym_expression_statement] = STATE(45), + [sym_if_statement] = STATE(45), + [sym_switch_statement] = STATE(45), + [sym_while_statement] = STATE(45), + [sym_do_statement] = STATE(45), + [sym_for_statement] = STATE(45), + [sym_return_statement] = STATE(45), + [sym_break_statement] = STATE(45), + [sym_continue_statement] = STATE(45), + [sym_goto_statement] = STATE(45), + [sym__expression] = STATE(721), + [sym_comma_expression] = STATE(1123), + [sym_conditional_expression] = STATE(721), + [sym_assignment_expression] = STATE(721), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(721), + [sym_binary_expression] = STATE(721), + [sym_update_expression] = STATE(721), + [sym_cast_expression] = STATE(721), + [sym_sizeof_expression] = STATE(721), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(721), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(721), + [sym_concatenated_string] = STATE(721), + [sym_string_literal] = STATE(431), + [sym_macro_type_specifier] = STATE(835), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [aux_sym_case_statement_repeat1] = STATE(45), + [sym_identifier] = ACTIONS(608), + [anon_sym_SEMI] = ACTIONS(611), + [anon_sym_typedef] = ACTIONS(614), + [anon_sym_extern] = ACTIONS(617), + [anon_sym___attribute__] = ACTIONS(620), + [anon_sym_LPAREN2] = ACTIONS(623), + [anon_sym_LBRACE] = ACTIONS(626), + [anon_sym_RBRACE] = ACTIONS(629), + [anon_sym_STAR] = ACTIONS(631), + [anon_sym_static] = ACTIONS(617), + [anon_sym_auto] = ACTIONS(617), + [anon_sym_register] = ACTIONS(617), + [anon_sym_inline] = ACTIONS(617), + [anon_sym_const] = ACTIONS(634), + [anon_sym_volatile] = ACTIONS(634), + [anon_sym_restrict] = ACTIONS(634), + [anon_sym__Atomic] = ACTIONS(634), + [anon_sym_signed] = ACTIONS(637), + [anon_sym_unsigned] = ACTIONS(637), + [anon_sym_long] = ACTIONS(637), + [anon_sym_short] = ACTIONS(637), + [sym_primitive_type] = ACTIONS(640), + [anon_sym_enum] = ACTIONS(643), + [anon_sym_struct] = ACTIONS(646), + [anon_sym_union] = ACTIONS(649), + [anon_sym_if] = ACTIONS(652), + [anon_sym_switch] = ACTIONS(655), + [anon_sym_case] = ACTIONS(658), + [anon_sym_default] = ACTIONS(658), + [anon_sym_while] = ACTIONS(660), + [anon_sym_do] = ACTIONS(663), + [anon_sym_for] = ACTIONS(666), + [anon_sym_return] = ACTIONS(669), + [anon_sym_break] = ACTIONS(672), + [anon_sym_continue] = ACTIONS(675), + [anon_sym_goto] = ACTIONS(678), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(684), + [anon_sym_PLUS] = ACTIONS(684), + [anon_sym_DASH_DASH] = ACTIONS(687), + [anon_sym_PLUS_PLUS] = ACTIONS(687), + [anon_sym_sizeof] = ACTIONS(690), + [sym_number_literal] = ACTIONS(693), + [anon_sym_L_SQUOTE] = ACTIONS(696), + [anon_sym_SQUOTE] = ACTIONS(696), + [anon_sym_L_DQUOTE] = ACTIONS(699), + [anon_sym_DQUOTE] = ACTIONS(699), + [sym_true] = ACTIONS(702), + [sym_false] = ACTIONS(702), + [sym_null] = ACTIONS(702), + [sym_comment] = ACTIONS(3), }, [46] = { - [sym_preproc_def] = STATE(129), - [sym_preproc_function_def] = STATE(129), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(129), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(130), - [sym_union_specifier] = STATE(130), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_preproc_call] = STATE(129), - [sym_preproc_if_in_field_declaration_list] = STATE(129), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(129), - [sym__declaration_specifiers] = STATE(131), - [sym_sized_type_specifier] = STATE(130), - [sym_enum_specifier] = STATE(130), - [sym__field_declaration_list_item] = STATE(129), - [sym_field_declaration] = STATE(129), - [sym_attribute_specifier] = STATE(43), - [sym_macro_type_specifier] = STATE(130), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_storage_class_specifier] = STATE(43), - [sym_struct_specifier] = STATE(130), - [anon_sym_union] = ACTIONS(37), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(7), - [anon_sym_short] = ACTIONS(27), - [sym_preproc_directive] = ACTIONS(342), - [aux_sym_preproc_if_token1] = ACTIONS(344), - [anon_sym_const] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(346), - [anon_sym__Atomic] = ACTIONS(7), - [sym_primitive_type] = ACTIONS(348), - [sym_identifier] = ACTIONS(187), - [aux_sym_preproc_ifdef_token1] = ACTIONS(350), - [anon_sym_static] = ACTIONS(63), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_register] = ACTIONS(63), - [anon_sym_extern] = ACTIONS(63), - [anon_sym_struct] = ACTIONS(25), - [anon_sym_signed] = ACTIONS(27), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_long] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(350), - [aux_sym_preproc_def_token1] = ACTIONS(352), - [anon_sym_auto] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(31), + [sym_declaration] = STATE(48), + [sym_type_definition] = STATE(48), + [sym__declaration_specifiers] = STATE(901), + [sym_attribute_specifier] = STATE(661), + [sym_compound_statement] = STATE(48), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(835), + [sym_sized_type_specifier] = STATE(835), + [sym_enum_specifier] = STATE(835), + [sym_struct_specifier] = STATE(835), + [sym_union_specifier] = STATE(835), + [sym_labeled_statement] = STATE(48), + [sym_expression_statement] = STATE(48), + [sym_if_statement] = STATE(48), + [sym_switch_statement] = STATE(48), + [sym_while_statement] = STATE(48), + [sym_do_statement] = STATE(48), + [sym_for_statement] = STATE(48), + [sym_return_statement] = STATE(48), + [sym_break_statement] = STATE(48), + [sym_continue_statement] = STATE(48), + [sym_goto_statement] = STATE(48), + [sym__expression] = STATE(721), + [sym_comma_expression] = STATE(1123), + [sym_conditional_expression] = STATE(721), + [sym_assignment_expression] = STATE(721), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(721), + [sym_binary_expression] = STATE(721), + [sym_update_expression] = STATE(721), + [sym_cast_expression] = STATE(721), + [sym_sizeof_expression] = STATE(721), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(721), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(721), + [sym_concatenated_string] = STATE(721), + [sym_string_literal] = STATE(431), + [sym_macro_type_specifier] = STATE(835), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [aux_sym_case_statement_repeat1] = STATE(48), + [sym_identifier] = ACTIONS(705), + [anon_sym_SEMI] = ACTIONS(19), + [anon_sym_typedef] = ACTIONS(21), + [anon_sym_extern] = ACTIONS(33), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(709), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [anon_sym_if] = ACTIONS(47), + [anon_sym_switch] = ACTIONS(49), + [anon_sym_case] = ACTIONS(711), + [anon_sym_default] = ACTIONS(711), + [anon_sym_while] = ACTIONS(51), + [anon_sym_do] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_return] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(61), + [anon_sym_goto] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(73), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_null] = ACTIONS(79), + [sym_comment] = ACTIONS(3), }, [47] = { - [sym_field_declaration_list] = STATE(132), - [anon_sym_LBRACE] = ACTIONS(127), - [anon_sym_restrict] = ACTIONS(354), - [anon_sym_COMMA] = ACTIONS(356), - [anon_sym_static] = ACTIONS(354), - [anon_sym_volatile] = ACTIONS(354), - [anon_sym_register] = ACTIONS(354), - [anon_sym_extern] = ACTIONS(354), - [anon_sym_STAR] = ACTIONS(356), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(354), - [anon_sym_LPAREN2] = ACTIONS(356), - [anon_sym_COLON] = ACTIONS(356), - [anon_sym_SEMI] = ACTIONS(356), - [anon_sym__Atomic] = ACTIONS(354), - [sym_identifier] = ACTIONS(354), - [anon_sym_auto] = ACTIONS(354), - [anon_sym_RPAREN] = ACTIONS(356), - [anon_sym_inline] = ACTIONS(354), - [anon_sym___attribute__] = ACTIONS(354), - [anon_sym_LBRACK] = ACTIONS(356), + [sym_declaration] = STATE(49), + [sym_type_definition] = STATE(49), + [sym__declaration_specifiers] = STATE(901), + [sym_attribute_specifier] = STATE(661), + [sym_compound_statement] = STATE(49), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(835), + [sym_sized_type_specifier] = STATE(835), + [sym_enum_specifier] = STATE(835), + [sym_struct_specifier] = STATE(835), + [sym_union_specifier] = STATE(835), + [sym_labeled_statement] = STATE(49), + [sym_expression_statement] = STATE(49), + [sym_if_statement] = STATE(49), + [sym_switch_statement] = STATE(49), + [sym_while_statement] = STATE(49), + [sym_do_statement] = STATE(49), + [sym_for_statement] = STATE(49), + [sym_return_statement] = STATE(49), + [sym_break_statement] = STATE(49), + [sym_continue_statement] = STATE(49), + [sym_goto_statement] = STATE(49), + [sym__expression] = STATE(721), + [sym_comma_expression] = STATE(1123), + [sym_conditional_expression] = STATE(721), + [sym_assignment_expression] = STATE(721), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(721), + [sym_binary_expression] = STATE(721), + [sym_update_expression] = STATE(721), + [sym_cast_expression] = STATE(721), + [sym_sizeof_expression] = STATE(721), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(721), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(721), + [sym_concatenated_string] = STATE(721), + [sym_string_literal] = STATE(431), + [sym_macro_type_specifier] = STATE(835), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [aux_sym_case_statement_repeat1] = STATE(49), + [sym_identifier] = ACTIONS(705), + [anon_sym_SEMI] = ACTIONS(19), + [anon_sym_typedef] = ACTIONS(21), + [anon_sym_extern] = ACTIONS(33), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(709), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [anon_sym_if] = ACTIONS(47), + [anon_sym_switch] = ACTIONS(49), + [anon_sym_case] = ACTIONS(715), + [anon_sym_default] = ACTIONS(715), + [anon_sym_while] = ACTIONS(51), + [anon_sym_do] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_return] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(61), + [anon_sym_goto] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(73), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_null] = ACTIONS(79), + [sym_comment] = ACTIONS(3), }, [48] = { - [anon_sym_restrict] = ACTIONS(358), - [anon_sym_COMMA] = ACTIONS(360), - [anon_sym_static] = ACTIONS(358), - [anon_sym_volatile] = ACTIONS(358), - [anon_sym_register] = ACTIONS(358), - [anon_sym_extern] = ACTIONS(358), - [anon_sym_STAR] = ACTIONS(360), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(358), - [anon_sym_LPAREN2] = ACTIONS(360), - [anon_sym_COLON] = ACTIONS(360), - [anon_sym_SEMI] = ACTIONS(360), - [anon_sym__Atomic] = ACTIONS(358), - [sym_identifier] = ACTIONS(358), - [anon_sym_auto] = ACTIONS(358), - [anon_sym_RPAREN] = ACTIONS(360), - [anon_sym_inline] = ACTIONS(358), - [anon_sym___attribute__] = ACTIONS(358), - [anon_sym_LBRACK] = ACTIONS(360), + [sym_declaration] = STATE(45), + [sym_type_definition] = STATE(45), + [sym__declaration_specifiers] = STATE(901), + [sym_attribute_specifier] = STATE(661), + [sym_compound_statement] = STATE(45), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(835), + [sym_sized_type_specifier] = STATE(835), + [sym_enum_specifier] = STATE(835), + [sym_struct_specifier] = STATE(835), + [sym_union_specifier] = STATE(835), + [sym_labeled_statement] = STATE(45), + [sym_expression_statement] = STATE(45), + [sym_if_statement] = STATE(45), + [sym_switch_statement] = STATE(45), + [sym_while_statement] = STATE(45), + [sym_do_statement] = STATE(45), + [sym_for_statement] = STATE(45), + [sym_return_statement] = STATE(45), + [sym_break_statement] = STATE(45), + [sym_continue_statement] = STATE(45), + [sym_goto_statement] = STATE(45), + [sym__expression] = STATE(721), + [sym_comma_expression] = STATE(1123), + [sym_conditional_expression] = STATE(721), + [sym_assignment_expression] = STATE(721), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(721), + [sym_binary_expression] = STATE(721), + [sym_update_expression] = STATE(721), + [sym_cast_expression] = STATE(721), + [sym_sizeof_expression] = STATE(721), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(721), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(721), + [sym_concatenated_string] = STATE(721), + [sym_string_literal] = STATE(431), + [sym_macro_type_specifier] = STATE(835), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [aux_sym_case_statement_repeat1] = STATE(45), + [sym_identifier] = ACTIONS(705), + [anon_sym_SEMI] = ACTIONS(19), + [anon_sym_typedef] = ACTIONS(21), + [anon_sym_extern] = ACTIONS(33), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(717), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(709), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [anon_sym_if] = ACTIONS(47), + [anon_sym_switch] = ACTIONS(49), + [anon_sym_case] = ACTIONS(719), + [anon_sym_default] = ACTIONS(719), + [anon_sym_while] = ACTIONS(51), + [anon_sym_do] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_return] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(61), + [anon_sym_goto] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(73), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_null] = ACTIONS(79), + [sym_comment] = ACTIONS(3), }, [49] = { - [anon_sym_GT_GT] = ACTIONS(197), - [anon_sym_PERCENT_EQ] = ACTIONS(199), - [anon_sym_DASH_EQ] = ACTIONS(199), - [anon_sym_PIPE] = ACTIONS(197), - [anon_sym_EQ_EQ] = ACTIONS(203), - [anon_sym_SLASH] = ACTIONS(197), - [anon_sym_DASH_GT] = ACTIONS(203), - [anon_sym_LT_LT] = ACTIONS(197), - [anon_sym_DASH_DASH] = ACTIONS(203), - [anon_sym_PLUS_EQ] = ACTIONS(199), - [anon_sym_LT_LT_EQ] = ACTIONS(199), - [anon_sym_QMARK] = ACTIONS(203), - [anon_sym_BANG_EQ] = ACTIONS(203), - [anon_sym_CARET_EQ] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(203), - [anon_sym_PLUS_PLUS] = ACTIONS(203), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT_EQ] = ACTIONS(199), - [anon_sym_GT] = ACTIONS(197), - [anon_sym_PIPE_EQ] = ACTIONS(199), - [anon_sym_AMP_EQ] = ACTIONS(199), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_AMP] = ACTIONS(197), - [anon_sym_EQ] = ACTIONS(209), - [anon_sym_LPAREN2] = ACTIONS(203), - [anon_sym_GT_EQ] = ACTIONS(203), - [anon_sym_COLON] = ACTIONS(362), - [anon_sym_STAR_EQ] = ACTIONS(199), - [anon_sym_PIPE_PIPE] = ACTIONS(203), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_LT_EQ] = ACTIONS(203), - [anon_sym_STAR] = ACTIONS(197), - [anon_sym_SLASH_EQ] = ACTIONS(199), - [anon_sym_AMP_AMP] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(203), - [anon_sym_CARET] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_DOT] = ACTIONS(203), - [anon_sym_LT] = ACTIONS(197), - [anon_sym_LBRACK] = ACTIONS(203), + [sym_declaration] = STATE(45), + [sym_type_definition] = STATE(45), + [sym__declaration_specifiers] = STATE(901), + [sym_attribute_specifier] = STATE(661), + [sym_compound_statement] = STATE(45), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(835), + [sym_sized_type_specifier] = STATE(835), + [sym_enum_specifier] = STATE(835), + [sym_struct_specifier] = STATE(835), + [sym_union_specifier] = STATE(835), + [sym_labeled_statement] = STATE(45), + [sym_expression_statement] = STATE(45), + [sym_if_statement] = STATE(45), + [sym_switch_statement] = STATE(45), + [sym_while_statement] = STATE(45), + [sym_do_statement] = STATE(45), + [sym_for_statement] = STATE(45), + [sym_return_statement] = STATE(45), + [sym_break_statement] = STATE(45), + [sym_continue_statement] = STATE(45), + [sym_goto_statement] = STATE(45), + [sym__expression] = STATE(721), + [sym_comma_expression] = STATE(1123), + [sym_conditional_expression] = STATE(721), + [sym_assignment_expression] = STATE(721), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(721), + [sym_binary_expression] = STATE(721), + [sym_update_expression] = STATE(721), + [sym_cast_expression] = STATE(721), + [sym_sizeof_expression] = STATE(721), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(721), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(721), + [sym_concatenated_string] = STATE(721), + [sym_string_literal] = STATE(431), + [sym_macro_type_specifier] = STATE(835), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [aux_sym_case_statement_repeat1] = STATE(45), + [sym_identifier] = ACTIONS(705), + [anon_sym_SEMI] = ACTIONS(19), + [anon_sym_typedef] = ACTIONS(21), + [anon_sym_extern] = ACTIONS(33), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(721), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(709), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [anon_sym_if] = ACTIONS(47), + [anon_sym_switch] = ACTIONS(49), + [anon_sym_case] = ACTIONS(723), + [anon_sym_default] = ACTIONS(723), + [anon_sym_while] = ACTIONS(51), + [anon_sym_do] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_return] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(61), + [anon_sym_goto] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(73), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_null] = ACTIONS(79), + [sym_comment] = ACTIONS(3), }, [50] = { - [anon_sym_while] = ACTIONS(364), + [sym__expression] = STATE(453), + [sym_conditional_expression] = STATE(453), + [sym_assignment_expression] = STATE(453), + [sym_pointer_expression] = STATE(453), + [sym_unary_expression] = STATE(453), + [sym_binary_expression] = STATE(453), + [sym_update_expression] = STATE(453), + [sym_cast_expression] = STATE(453), + [sym_sizeof_expression] = STATE(453), + [sym_subscript_expression] = STATE(453), + [sym_call_expression] = STATE(453), + [sym_field_expression] = STATE(453), + [sym_compound_literal_expression] = STATE(453), + [sym_parenthesized_expression] = STATE(453), + [sym_initializer_list] = STATE(486), + [sym_char_literal] = STATE(453), + [sym_concatenated_string] = STATE(453), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(725), + [anon_sym_COMMA] = ACTIONS(727), + [anon_sym_RPAREN] = ACTIONS(727), + [anon_sym_SEMI] = ACTIONS(727), + [anon_sym_LPAREN2] = ACTIONS(729), + [anon_sym_LBRACE] = ACTIONS(731), + [anon_sym_RBRACE] = ACTIONS(727), + [anon_sym_STAR] = ACTIONS(733), + [anon_sym_LBRACK] = ACTIONS(727), + [anon_sym_RBRACK] = ACTIONS(727), + [anon_sym_EQ] = ACTIONS(735), + [anon_sym_COLON] = ACTIONS(727), + [anon_sym_QMARK] = ACTIONS(727), + [anon_sym_STAR_EQ] = ACTIONS(727), + [anon_sym_SLASH_EQ] = ACTIONS(727), + [anon_sym_PERCENT_EQ] = ACTIONS(727), + [anon_sym_PLUS_EQ] = ACTIONS(727), + [anon_sym_DASH_EQ] = ACTIONS(727), + [anon_sym_LT_LT_EQ] = ACTIONS(727), + [anon_sym_GT_GT_EQ] = ACTIONS(727), + [anon_sym_AMP_EQ] = ACTIONS(727), + [anon_sym_CARET_EQ] = ACTIONS(727), + [anon_sym_PIPE_EQ] = ACTIONS(727), + [anon_sym_AMP] = ACTIONS(733), + [anon_sym_BANG] = ACTIONS(737), + [anon_sym_TILDE] = ACTIONS(739), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_SLASH] = ACTIONS(735), + [anon_sym_PERCENT] = ACTIONS(735), + [anon_sym_PIPE_PIPE] = ACTIONS(727), + [anon_sym_AMP_AMP] = ACTIONS(727), + [anon_sym_PIPE] = ACTIONS(735), + [anon_sym_CARET] = ACTIONS(735), + [anon_sym_EQ_EQ] = ACTIONS(727), + [anon_sym_BANG_EQ] = ACTIONS(727), + [anon_sym_GT] = ACTIONS(735), + [anon_sym_GT_EQ] = ACTIONS(727), + [anon_sym_LT_EQ] = ACTIONS(727), + [anon_sym_LT] = ACTIONS(735), + [anon_sym_LT_LT] = ACTIONS(735), + [anon_sym_GT_GT] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(741), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_sizeof] = ACTIONS(743), + [anon_sym_DOT] = ACTIONS(735), + [anon_sym_DASH_GT] = ACTIONS(727), + [sym_number_literal] = ACTIONS(745), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(725), + [sym_false] = ACTIONS(725), + [sym_null] = ACTIONS(725), [sym_comment] = ACTIONS(3), }, [51] = { + [sym_declaration] = STATE(560), + [sym__declaration_specifiers] = STATE(901), + [sym_attribute_specifier] = STATE(661), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(835), + [sym_sized_type_specifier] = STATE(835), + [sym_enum_specifier] = STATE(835), + [sym_struct_specifier] = STATE(835), + [sym_union_specifier] = STATE(835), + [sym__expression] = STATE(712), + [sym_comma_expression] = STATE(1260), + [sym_conditional_expression] = STATE(712), + [sym_assignment_expression] = STATE(712), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(712), + [sym_binary_expression] = STATE(712), + [sym_update_expression] = STATE(712), + [sym_cast_expression] = STATE(712), + [sym_sizeof_expression] = STATE(712), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(712), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(712), + [sym_concatenated_string] = STATE(712), + [sym_string_literal] = STATE(431), + [sym_macro_type_specifier] = STATE(835), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(747), + [anon_sym_SEMI] = ACTIONS(749), + [anon_sym_extern] = ACTIONS(33), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(709), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(751), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(753), + [sym_false] = ACTIONS(753), + [sym_null] = ACTIONS(753), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(366), }, [52] = { - [sym_true] = ACTIONS(368), - [anon_sym_restrict] = ACTIONS(368), - [sym_null] = ACTIONS(368), - [anon_sym_goto] = ACTIONS(368), - [anon_sym_const] = ACTIONS(368), - [anon_sym_typedef] = ACTIONS(368), - [anon_sym_DASH_DASH] = ACTIONS(370), - [anon_sym__Atomic] = ACTIONS(368), - [sym_identifier] = ACTIONS(368), - [aux_sym_preproc_ifdef_token1] = ACTIONS(368), - [sym_number_literal] = ACTIONS(370), - [anon_sym_volatile] = ACTIONS(368), - [anon_sym_SQUOTE] = ACTIONS(370), - [anon_sym_extern] = ACTIONS(368), - [anon_sym_PLUS_PLUS] = ACTIONS(370), - [anon_sym_struct] = ACTIONS(368), - [anon_sym_signed] = ACTIONS(368), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(368), - [anon_sym_while] = ACTIONS(368), - [aux_sym_preproc_ifdef_token2] = ACTIONS(368), - [anon_sym_L_SQUOTE] = ACTIONS(370), - [anon_sym___attribute__] = ACTIONS(368), - [anon_sym_sizeof] = ACTIONS(368), - [anon_sym_LBRACE] = ACTIONS(370), - [anon_sym_union] = ACTIONS(368), - [anon_sym_unsigned] = ACTIONS(368), - [anon_sym_short] = ACTIONS(368), - [anon_sym_do] = ACTIONS(368), - [sym_preproc_directive] = ACTIONS(368), - [anon_sym_AMP] = ACTIONS(370), - [aux_sym_preproc_if_token1] = ACTIONS(368), - [anon_sym_TILDE] = ACTIONS(370), - [anon_sym_L_DQUOTE] = ACTIONS(370), - [anon_sym_LPAREN2] = ACTIONS(370), - [sym_primitive_type] = ACTIONS(368), - [anon_sym_for] = ACTIONS(368), - [anon_sym_break] = ACTIONS(368), - [anon_sym_BANG] = ACTIONS(370), - [aux_sym_preproc_include_token1] = ACTIONS(368), - [anon_sym_DASH] = ACTIONS(368), - [anon_sym_static] = ACTIONS(368), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_register] = ACTIONS(368), - [anon_sym_STAR] = ACTIONS(370), - [anon_sym_if] = ACTIONS(368), - [anon_sym_switch] = ACTIONS(368), - [anon_sym_enum] = ACTIONS(368), - [sym_false] = ACTIONS(368), - [ts_builtin_sym_end] = ACTIONS(370), - [anon_sym_return] = ACTIONS(368), - [anon_sym_continue] = ACTIONS(368), - [anon_sym_SEMI] = ACTIONS(370), - [aux_sym_preproc_def_token1] = ACTIONS(368), - [anon_sym_PLUS] = ACTIONS(368), - [anon_sym_auto] = ACTIONS(368), - [anon_sym_inline] = ACTIONS(368), + [sym_declaration] = STATE(548), + [sym__declaration_specifiers] = STATE(901), + [sym_attribute_specifier] = STATE(661), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(835), + [sym_sized_type_specifier] = STATE(835), + [sym_enum_specifier] = STATE(835), + [sym_struct_specifier] = STATE(835), + [sym_union_specifier] = STATE(835), + [sym__expression] = STATE(669), + [sym_comma_expression] = STATE(1300), + [sym_conditional_expression] = STATE(669), + [sym_assignment_expression] = STATE(669), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(669), + [sym_binary_expression] = STATE(669), + [sym_update_expression] = STATE(669), + [sym_cast_expression] = STATE(669), + [sym_sizeof_expression] = STATE(669), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(669), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(669), + [sym_concatenated_string] = STATE(669), + [sym_string_literal] = STATE(431), + [sym_macro_type_specifier] = STATE(835), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(747), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_extern] = ACTIONS(33), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(709), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(757), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(759), + [sym_false] = ACTIONS(759), + [sym_null] = ACTIONS(759), + [sym_comment] = ACTIONS(3), }, [53] = { - [anon_sym_LF] = ACTIONS(372), - [sym_comment] = ACTIONS(147), + [sym_declaration] = STATE(566), + [sym__declaration_specifiers] = STATE(901), + [sym_attribute_specifier] = STATE(661), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(835), + [sym_sized_type_specifier] = STATE(835), + [sym_enum_specifier] = STATE(835), + [sym_struct_specifier] = STATE(835), + [sym_union_specifier] = STATE(835), + [sym__expression] = STATE(723), + [sym_comma_expression] = STATE(1162), + [sym_conditional_expression] = STATE(723), + [sym_assignment_expression] = STATE(723), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(723), + [sym_binary_expression] = STATE(723), + [sym_update_expression] = STATE(723), + [sym_cast_expression] = STATE(723), + [sym_sizeof_expression] = STATE(723), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(723), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(723), + [sym_concatenated_string] = STATE(723), + [sym_string_literal] = STATE(431), + [sym_macro_type_specifier] = STATE(835), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(747), + [anon_sym_SEMI] = ACTIONS(761), + [anon_sym_extern] = ACTIONS(33), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(709), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(763), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(765), + [sym_false] = ACTIONS(765), + [sym_null] = ACTIONS(765), + [sym_comment] = ACTIONS(3), }, [54] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(374), - [anon_sym_PERCENT_EQ] = ACTIONS(376), - [anon_sym_DASH_EQ] = ACTIONS(376), - [anon_sym_PIPE] = ACTIONS(374), - [anon_sym_EQ_EQ] = ACTIONS(376), - [anon_sym_SLASH] = ACTIONS(374), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LT_LT] = ACTIONS(374), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_PLUS_EQ] = ACTIONS(376), - [anon_sym_LT_LT_EQ] = ACTIONS(376), - [anon_sym_QMARK] = ACTIONS(376), - [anon_sym_BANG_EQ] = ACTIONS(376), - [anon_sym_CARET_EQ] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(376), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT_EQ] = ACTIONS(376), - [anon_sym_GT] = ACTIONS(374), - [anon_sym_PIPE_EQ] = ACTIONS(376), - [anon_sym_RPAREN] = ACTIONS(376), - [anon_sym_RBRACK] = ACTIONS(376), - [anon_sym_AMP_EQ] = ACTIONS(376), - [anon_sym_PERCENT] = ACTIONS(374), - [anon_sym_AMP] = ACTIONS(374), - [anon_sym_EQ] = ACTIONS(374), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(376), - [anon_sym_RBRACE] = ACTIONS(376), - [anon_sym_COLON] = ACTIONS(376), - [anon_sym_STAR_EQ] = ACTIONS(376), - [anon_sym_PIPE_PIPE] = ACTIONS(376), - [anon_sym_DASH] = ACTIONS(374), - [anon_sym_LT_EQ] = ACTIONS(376), - [anon_sym_STAR] = ACTIONS(374), - [anon_sym_SLASH_EQ] = ACTIONS(376), - [anon_sym_AMP_AMP] = ACTIONS(376), - [anon_sym_SEMI] = ACTIONS(376), - [anon_sym_CARET] = ACTIONS(374), - [anon_sym_PLUS] = ACTIONS(374), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(305), + [sym_declaration] = STATE(554), + [sym__declaration_specifiers] = STATE(901), + [sym_attribute_specifier] = STATE(661), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(835), + [sym_sized_type_specifier] = STATE(835), + [sym_enum_specifier] = STATE(835), + [sym_struct_specifier] = STATE(835), + [sym_union_specifier] = STATE(835), + [sym__expression] = STATE(666), + [sym_comma_expression] = STATE(1235), + [sym_conditional_expression] = STATE(666), + [sym_assignment_expression] = STATE(666), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(666), + [sym_binary_expression] = STATE(666), + [sym_update_expression] = STATE(666), + [sym_cast_expression] = STATE(666), + [sym_sizeof_expression] = STATE(666), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(666), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(666), + [sym_concatenated_string] = STATE(666), + [sym_string_literal] = STATE(431), + [sym_macro_type_specifier] = STATE(835), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(747), + [anon_sym_SEMI] = ACTIONS(767), + [anon_sym_extern] = ACTIONS(33), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(709), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(769), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(771), + [sym_false] = ACTIONS(771), + [sym_null] = ACTIONS(771), + [sym_comment] = ACTIONS(3), }, [55] = { - [sym_if_statement] = STATE(140), - [sym_preproc_def] = STATE(140), - [sym_preproc_function_def] = STATE(140), - [sym__expression] = STATE(951), - [sym_comma_expression] = STATE(952), - [sym_binary_expression] = STATE(951), - [sym_update_expression] = STATE(951), - [sym_call_expression] = STATE(36), - [sym_function_definition] = STATE(140), - [sym_declaration] = STATE(140), - [sym_do_statement] = STATE(140), - [sym_for_statement] = STATE(140), - [sym_preproc_else] = STATE(139), - [sym_preproc_elif] = STATE(139), - [aux_sym_translation_unit_repeat1] = STATE(140), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(953), - [sym_union_specifier] = STATE(953), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_expression_statement] = STATE(140), - [sym_switch_statement] = STATE(140), - [sym_return_statement] = STATE(140), - [sym_preproc_call] = STATE(140), - [sym_conditional_expression] = STATE(951), - [sym_assignment_expression] = STATE(951), - [sym_cast_expression] = STATE(951), - [sym__declaration_specifiers] = STATE(1172), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(951), - [sym_type_definition] = STATE(140), - [sym_char_literal] = STATE(951), - [sym_break_statement] = STATE(140), - [sym__empty_declaration] = STATE(140), - [sym_sized_type_specifier] = STATE(953), - [sym_enum_specifier] = STATE(953), - [sym_labeled_statement] = STATE(140), - [sym_preproc_include] = STATE(140), - [sym_preproc_if] = STATE(140), - [sym_preproc_ifdef] = STATE(140), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(951), - [sym_sizeof_expression] = STATE(951), - [sym_attribute_specifier] = STATE(43), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_linkage_specification] = STATE(140), - [sym_concatenated_string] = STATE(951), - [sym_string_literal] = STATE(41), - [sym_macro_type_specifier] = STATE(953), - [sym_while_statement] = STATE(140), - [sym_storage_class_specifier] = STATE(43), - [sym_compound_statement] = STATE(140), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_continue_statement] = STATE(140), - [sym_struct_specifier] = STATE(953), - [sym_goto_statement] = STATE(140), - [sym_true] = ACTIONS(378), - [anon_sym_restrict] = ACTIONS(7), - [sym_null] = ACTIONS(378), - [anon_sym_goto] = ACTIONS(380), - [aux_sym_preproc_if_token2] = ACTIONS(382), - [anon_sym_const] = ACTIONS(7), - [anon_sym_typedef] = ACTIONS(384), - [anon_sym_DASH_DASH] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(7), - [sym_identifier] = ACTIONS(386), - [aux_sym_preproc_ifdef_token1] = ACTIONS(388), - [sym_number_literal] = ACTIONS(390), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_extern] = ACTIONS(392), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_struct] = ACTIONS(25), - [anon_sym_signed] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(27), - [anon_sym_while] = ACTIONS(394), - [aux_sym_preproc_ifdef_token2] = ACTIONS(388), - [aux_sym_preproc_elif_token1] = ACTIONS(396), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_sizeof] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(398), - [anon_sym_union] = ACTIONS(37), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_short] = ACTIONS(27), - [anon_sym_do] = ACTIONS(400), - [aux_sym_preproc_else_token1] = ACTIONS(402), - [sym_preproc_directive] = ACTIONS(404), - [anon_sym_AMP] = ACTIONS(43), - [aux_sym_preproc_if_token1] = ACTIONS(406), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(408), - [anon_sym_for] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_BANG] = ACTIONS(47), - [aux_sym_preproc_include_token1] = ACTIONS(414), - [anon_sym_DASH] = ACTIONS(61), - [anon_sym_static] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_register] = ACTIONS(63), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(416), - [anon_sym_switch] = ACTIONS(418), - [anon_sym_enum] = ACTIONS(69), - [sym_false] = ACTIONS(378), - [anon_sym_return] = ACTIONS(420), - [anon_sym_continue] = ACTIONS(422), - [anon_sym_SEMI] = ACTIONS(424), - [aux_sym_preproc_def_token1] = ACTIONS(426), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_auto] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), + [sym_declaration] = STATE(543), + [sym__declaration_specifiers] = STATE(901), + [sym_attribute_specifier] = STATE(661), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(835), + [sym_sized_type_specifier] = STATE(835), + [sym_enum_specifier] = STATE(835), + [sym_struct_specifier] = STATE(835), + [sym_union_specifier] = STATE(835), + [sym__expression] = STATE(715), + [sym_comma_expression] = STATE(1254), + [sym_conditional_expression] = STATE(715), + [sym_assignment_expression] = STATE(715), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(715), + [sym_binary_expression] = STATE(715), + [sym_update_expression] = STATE(715), + [sym_cast_expression] = STATE(715), + [sym_sizeof_expression] = STATE(715), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(715), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(715), + [sym_concatenated_string] = STATE(715), + [sym_string_literal] = STATE(431), + [sym_macro_type_specifier] = STATE(835), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(747), + [anon_sym_SEMI] = ACTIONS(773), + [anon_sym_extern] = ACTIONS(33), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(709), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(775), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(777), + [sym_false] = ACTIONS(777), + [sym_null] = ACTIONS(777), + [sym_comment] = ACTIONS(3), }, [56] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(428), - [anon_sym_PERCENT_EQ] = ACTIONS(430), - [anon_sym_DASH_EQ] = ACTIONS(430), - [anon_sym_PIPE] = ACTIONS(428), - [anon_sym_EQ_EQ] = ACTIONS(430), - [anon_sym_SLASH] = ACTIONS(428), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LT_LT] = ACTIONS(428), - [anon_sym_DASH_DASH] = ACTIONS(430), - [anon_sym_PLUS_EQ] = ACTIONS(430), - [anon_sym_LT_LT_EQ] = ACTIONS(430), - [anon_sym_QMARK] = ACTIONS(430), - [anon_sym_BANG_EQ] = ACTIONS(430), - [anon_sym_CARET_EQ] = ACTIONS(430), - [anon_sym_COMMA] = ACTIONS(430), - [anon_sym_PLUS_PLUS] = ACTIONS(430), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT_EQ] = ACTIONS(430), - [anon_sym_GT] = ACTIONS(428), - [anon_sym_PIPE_EQ] = ACTIONS(430), - [anon_sym_RPAREN] = ACTIONS(430), - [anon_sym_RBRACK] = ACTIONS(430), - [anon_sym_AMP_EQ] = ACTIONS(430), - [anon_sym_PERCENT] = ACTIONS(428), - [anon_sym_AMP] = ACTIONS(428), - [anon_sym_EQ] = ACTIONS(428), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(430), - [anon_sym_RBRACE] = ACTIONS(430), - [anon_sym_COLON] = ACTIONS(430), - [anon_sym_STAR_EQ] = ACTIONS(430), - [anon_sym_PIPE_PIPE] = ACTIONS(430), - [anon_sym_DASH] = ACTIONS(428), - [anon_sym_LT_EQ] = ACTIONS(430), - [anon_sym_STAR] = ACTIONS(428), - [anon_sym_SLASH_EQ] = ACTIONS(430), - [anon_sym_AMP_AMP] = ACTIONS(430), - [anon_sym_SEMI] = ACTIONS(430), - [anon_sym_CARET] = ACTIONS(428), - [anon_sym_PLUS] = ACTIONS(428), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(428), - [anon_sym_LBRACK] = ACTIONS(305), + [sym_declaration] = STATE(539), + [sym__declaration_specifiers] = STATE(901), + [sym_attribute_specifier] = STATE(661), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(835), + [sym_sized_type_specifier] = STATE(835), + [sym_enum_specifier] = STATE(835), + [sym_struct_specifier] = STATE(835), + [sym_union_specifier] = STATE(835), + [sym__expression] = STATE(703), + [sym_comma_expression] = STATE(1264), + [sym_conditional_expression] = STATE(703), + [sym_assignment_expression] = STATE(703), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(703), + [sym_binary_expression] = STATE(703), + [sym_update_expression] = STATE(703), + [sym_cast_expression] = STATE(703), + [sym_sizeof_expression] = STATE(703), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(703), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(703), + [sym_concatenated_string] = STATE(703), + [sym_string_literal] = STATE(431), + [sym_macro_type_specifier] = STATE(835), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(747), + [anon_sym_SEMI] = ACTIONS(779), + [anon_sym_extern] = ACTIONS(33), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(709), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(781), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(783), + [sym_false] = ACTIONS(783), + [sym_null] = ACTIONS(783), + [sym_comment] = ACTIONS(3), }, [57] = { - [anon_sym_GT_GT] = ACTIONS(197), - [anon_sym_restrict] = ACTIONS(432), - [anon_sym_PERCENT_EQ] = ACTIONS(199), - [anon_sym_AMP_EQ] = ACTIONS(199), - [anon_sym_DASH_EQ] = ACTIONS(199), - [anon_sym_PIPE] = ACTIONS(197), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_EQ_EQ] = ACTIONS(203), - [anon_sym_AMP] = ACTIONS(197), - [anon_sym_SLASH] = ACTIONS(197), - [anon_sym_DASH_GT] = ACTIONS(203), - [anon_sym_const] = ACTIONS(432), - [anon_sym_LPAREN2] = ACTIONS(205), - [anon_sym_GT_EQ] = ACTIONS(203), - [anon_sym_LT_LT] = ACTIONS(197), - [anon_sym_DASH_DASH] = ACTIONS(203), - [anon_sym_EQ] = ACTIONS(209), - [anon_sym__Atomic] = ACTIONS(432), - [anon_sym_PLUS_EQ] = ACTIONS(199), - [anon_sym_STAR_EQ] = ACTIONS(199), - [anon_sym_LT_LT_EQ] = ACTIONS(199), - [anon_sym_QMARK] = ACTIONS(203), - [anon_sym_PIPE_PIPE] = ACTIONS(203), - [anon_sym_BANG_EQ] = ACTIONS(203), - [anon_sym_CARET_EQ] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(203), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_volatile] = ACTIONS(432), - [anon_sym_LT_EQ] = ACTIONS(203), - [anon_sym_STAR] = ACTIONS(213), - [anon_sym_PLUS_PLUS] = ACTIONS(203), - [sym_comment] = ACTIONS(3), - [anon_sym_SLASH_EQ] = ACTIONS(199), - [anon_sym_GT_GT_EQ] = ACTIONS(199), - [anon_sym_AMP_AMP] = ACTIONS(203), - [anon_sym_GT] = ACTIONS(197), - [anon_sym_CARET] = ACTIONS(197), - [anon_sym_PIPE_EQ] = ACTIONS(199), - [anon_sym_RPAREN] = ACTIONS(216), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_DOT] = ACTIONS(203), - [anon_sym_LT] = ACTIONS(197), - [anon_sym_LBRACK] = ACTIONS(216), + [sym_compound_statement] = STATE(64), + [sym_labeled_statement] = STATE(64), + [sym_expression_statement] = STATE(64), + [sym_if_statement] = STATE(64), + [sym_switch_statement] = STATE(64), + [sym_case_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__expression] = STATE(713), + [sym_comma_expression] = STATE(1120), + [sym_conditional_expression] = STATE(713), + [sym_assignment_expression] = STATE(713), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(713), + [sym_binary_expression] = STATE(713), + [sym_update_expression] = STATE(713), + [sym_cast_expression] = STATE(713), + [sym_sizeof_expression] = STATE(713), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(713), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(713), + [sym_concatenated_string] = STATE(713), + [sym_string_literal] = STATE(431), + [aux_sym_switch_body_repeat1] = STATE(64), + [sym_identifier] = ACTIONS(785), + [anon_sym_SEMI] = ACTIONS(787), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(789), + [anon_sym_RBRACE] = ACTIONS(791), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(793), + [anon_sym_switch] = ACTIONS(795), + [anon_sym_case] = ACTIONS(797), + [anon_sym_default] = ACTIONS(799), + [anon_sym_while] = ACTIONS(801), + [anon_sym_do] = ACTIONS(803), + [anon_sym_for] = ACTIONS(805), + [anon_sym_return] = ACTIONS(807), + [anon_sym_break] = ACTIONS(809), + [anon_sym_continue] = ACTIONS(811), + [anon_sym_goto] = ACTIONS(813), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(815), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(817), + [sym_false] = ACTIONS(817), + [sym_null] = ACTIONS(817), + [sym_comment] = ACTIONS(3), }, [58] = { - [anon_sym_RPAREN] = ACTIONS(434), + [sym_compound_statement] = STATE(65), + [sym_labeled_statement] = STATE(65), + [sym_expression_statement] = STATE(65), + [sym_if_statement] = STATE(65), + [sym_switch_statement] = STATE(65), + [sym_case_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_do_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_return_statement] = STATE(65), + [sym_break_statement] = STATE(65), + [sym_continue_statement] = STATE(65), + [sym_goto_statement] = STATE(65), + [sym__expression] = STATE(713), + [sym_comma_expression] = STATE(1120), + [sym_conditional_expression] = STATE(713), + [sym_assignment_expression] = STATE(713), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(713), + [sym_binary_expression] = STATE(713), + [sym_update_expression] = STATE(713), + [sym_cast_expression] = STATE(713), + [sym_sizeof_expression] = STATE(713), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(713), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(713), + [sym_concatenated_string] = STATE(713), + [sym_string_literal] = STATE(431), + [aux_sym_switch_body_repeat1] = STATE(65), + [sym_identifier] = ACTIONS(785), + [anon_sym_SEMI] = ACTIONS(787), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(789), + [anon_sym_RBRACE] = ACTIONS(819), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(793), + [anon_sym_switch] = ACTIONS(795), + [anon_sym_case] = ACTIONS(797), + [anon_sym_default] = ACTIONS(799), + [anon_sym_while] = ACTIONS(801), + [anon_sym_do] = ACTIONS(803), + [anon_sym_for] = ACTIONS(805), + [anon_sym_return] = ACTIONS(807), + [anon_sym_break] = ACTIONS(809), + [anon_sym_continue] = ACTIONS(811), + [anon_sym_goto] = ACTIONS(813), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(815), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(817), + [sym_false] = ACTIONS(817), + [sym_null] = ACTIONS(817), [sym_comment] = ACTIONS(3), }, [59] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_COMMA] = ACTIONS(293), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_RPAREN] = ACTIONS(436), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [sym_compound_statement] = STATE(60), + [sym_labeled_statement] = STATE(60), + [sym_expression_statement] = STATE(60), + [sym_if_statement] = STATE(60), + [sym_switch_statement] = STATE(60), + [sym_case_statement] = STATE(60), + [sym_while_statement] = STATE(60), + [sym_do_statement] = STATE(60), + [sym_for_statement] = STATE(60), + [sym_return_statement] = STATE(60), + [sym_break_statement] = STATE(60), + [sym_continue_statement] = STATE(60), + [sym_goto_statement] = STATE(60), + [sym__expression] = STATE(713), + [sym_comma_expression] = STATE(1120), + [sym_conditional_expression] = STATE(713), + [sym_assignment_expression] = STATE(713), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(713), + [sym_binary_expression] = STATE(713), + [sym_update_expression] = STATE(713), + [sym_cast_expression] = STATE(713), + [sym_sizeof_expression] = STATE(713), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(713), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(713), + [sym_concatenated_string] = STATE(713), + [sym_string_literal] = STATE(431), + [aux_sym_switch_body_repeat1] = STATE(60), + [sym_identifier] = ACTIONS(785), + [anon_sym_SEMI] = ACTIONS(787), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(789), + [anon_sym_RBRACE] = ACTIONS(821), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(793), + [anon_sym_switch] = ACTIONS(795), + [anon_sym_case] = ACTIONS(797), + [anon_sym_default] = ACTIONS(799), + [anon_sym_while] = ACTIONS(801), + [anon_sym_do] = ACTIONS(803), + [anon_sym_for] = ACTIONS(805), + [anon_sym_return] = ACTIONS(807), + [anon_sym_break] = ACTIONS(809), + [anon_sym_continue] = ACTIONS(811), + [anon_sym_goto] = ACTIONS(813), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(815), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(817), + [sym_false] = ACTIONS(817), + [sym_null] = ACTIONS(817), + [sym_comment] = ACTIONS(3), }, [60] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(509), - [sym_union_specifier] = STATE(143), - [sym__type_specifier] = STATE(143), - [aux_sym_type_definition_repeat1] = STATE(144), - [sym_sized_type_specifier] = STATE(143), - [sym_enum_specifier] = STATE(143), - [sym_macro_type_specifier] = STATE(143), - [sym_struct_specifier] = STATE(143), - [sym_type_qualifier] = STATE(144), - [anon_sym_long] = ACTIONS(177), - [anon_sym_union] = ACTIONS(37), - [anon_sym_const] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(177), - [anon_sym_restrict] = ACTIONS(7), - [anon_sym_short] = ACTIONS(177), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym__Atomic] = ACTIONS(7), - [sym_primitive_type] = ACTIONS(438), - [sym_identifier] = ACTIONS(187), - [anon_sym_struct] = ACTIONS(25), - [anon_sym_signed] = ACTIONS(177), - [anon_sym_enum] = ACTIONS(69), + [sym_compound_statement] = STATE(60), + [sym_labeled_statement] = STATE(60), + [sym_expression_statement] = STATE(60), + [sym_if_statement] = STATE(60), + [sym_switch_statement] = STATE(60), + [sym_case_statement] = STATE(60), + [sym_while_statement] = STATE(60), + [sym_do_statement] = STATE(60), + [sym_for_statement] = STATE(60), + [sym_return_statement] = STATE(60), + [sym_break_statement] = STATE(60), + [sym_continue_statement] = STATE(60), + [sym_goto_statement] = STATE(60), + [sym__expression] = STATE(713), + [sym_comma_expression] = STATE(1120), + [sym_conditional_expression] = STATE(713), + [sym_assignment_expression] = STATE(713), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(713), + [sym_binary_expression] = STATE(713), + [sym_update_expression] = STATE(713), + [sym_cast_expression] = STATE(713), + [sym_sizeof_expression] = STATE(713), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(713), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(713), + [sym_concatenated_string] = STATE(713), + [sym_string_literal] = STATE(431), + [aux_sym_switch_body_repeat1] = STATE(60), + [sym_identifier] = ACTIONS(823), + [anon_sym_SEMI] = ACTIONS(826), + [anon_sym_LPAREN2] = ACTIONS(829), + [anon_sym_LBRACE] = ACTIONS(832), + [anon_sym_RBRACE] = ACTIONS(835), + [anon_sym_STAR] = ACTIONS(837), + [anon_sym_if] = ACTIONS(840), + [anon_sym_switch] = ACTIONS(843), + [anon_sym_case] = ACTIONS(846), + [anon_sym_default] = ACTIONS(849), + [anon_sym_while] = ACTIONS(852), + [anon_sym_do] = ACTIONS(855), + [anon_sym_for] = ACTIONS(858), + [anon_sym_return] = ACTIONS(861), + [anon_sym_break] = ACTIONS(864), + [anon_sym_continue] = ACTIONS(867), + [anon_sym_goto] = ACTIONS(870), + [anon_sym_AMP] = ACTIONS(837), + [anon_sym_BANG] = ACTIONS(873), + [anon_sym_TILDE] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(876), + [anon_sym_PLUS] = ACTIONS(876), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_PLUS_PLUS] = ACTIONS(879), + [anon_sym_sizeof] = ACTIONS(882), + [sym_number_literal] = ACTIONS(885), + [anon_sym_L_SQUOTE] = ACTIONS(888), + [anon_sym_SQUOTE] = ACTIONS(888), + [anon_sym_L_DQUOTE] = ACTIONS(891), + [anon_sym_DQUOTE] = ACTIONS(891), + [sym_true] = ACTIONS(894), + [sym_false] = ACTIONS(894), + [sym_null] = ACTIONS(894), + [sym_comment] = ACTIONS(3), }, [61] = { - [anon_sym_RPAREN] = ACTIONS(436), + [sym_compound_statement] = STATE(59), + [sym_labeled_statement] = STATE(59), + [sym_expression_statement] = STATE(59), + [sym_if_statement] = STATE(59), + [sym_switch_statement] = STATE(59), + [sym_case_statement] = STATE(59), + [sym_while_statement] = STATE(59), + [sym_do_statement] = STATE(59), + [sym_for_statement] = STATE(59), + [sym_return_statement] = STATE(59), + [sym_break_statement] = STATE(59), + [sym_continue_statement] = STATE(59), + [sym_goto_statement] = STATE(59), + [sym__expression] = STATE(713), + [sym_comma_expression] = STATE(1120), + [sym_conditional_expression] = STATE(713), + [sym_assignment_expression] = STATE(713), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(713), + [sym_binary_expression] = STATE(713), + [sym_update_expression] = STATE(713), + [sym_cast_expression] = STATE(713), + [sym_sizeof_expression] = STATE(713), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(713), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(713), + [sym_concatenated_string] = STATE(713), + [sym_string_literal] = STATE(431), + [aux_sym_switch_body_repeat1] = STATE(59), + [sym_identifier] = ACTIONS(785), + [anon_sym_SEMI] = ACTIONS(787), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(789), + [anon_sym_RBRACE] = ACTIONS(897), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(793), + [anon_sym_switch] = ACTIONS(795), + [anon_sym_case] = ACTIONS(797), + [anon_sym_default] = ACTIONS(799), + [anon_sym_while] = ACTIONS(801), + [anon_sym_do] = ACTIONS(803), + [anon_sym_for] = ACTIONS(805), + [anon_sym_return] = ACTIONS(807), + [anon_sym_break] = ACTIONS(809), + [anon_sym_continue] = ACTIONS(811), + [anon_sym_goto] = ACTIONS(813), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(815), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(817), + [sym_false] = ACTIONS(817), + [sym_null] = ACTIONS(817), [sym_comment] = ACTIONS(3), }, [62] = { - [sym_abstract_parenthesized_declarator] = STATE(149), - [sym_abstract_array_declarator] = STATE(149), - [sym_parameter_list] = STATE(148), - [sym__abstract_declarator] = STATE(149), - [aux_sym_type_definition_repeat1] = STATE(150), - [sym_abstract_function_declarator] = STATE(149), - [sym_abstract_pointer_declarator] = STATE(149), - [sym_type_qualifier] = STATE(150), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(440), - [anon_sym_LPAREN2] = ACTIONS(442), - [anon_sym_restrict] = ACTIONS(440), - [anon_sym_volatile] = ACTIONS(440), - [anon_sym__Atomic] = ACTIONS(440), - [anon_sym_RPAREN] = ACTIONS(444), - [anon_sym_STAR] = ACTIONS(446), - [anon_sym_LBRACK] = ACTIONS(448), + [sym_compound_statement] = STATE(66), + [sym_labeled_statement] = STATE(66), + [sym_expression_statement] = STATE(66), + [sym_if_statement] = STATE(66), + [sym_switch_statement] = STATE(66), + [sym_case_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__expression] = STATE(713), + [sym_comma_expression] = STATE(1120), + [sym_conditional_expression] = STATE(713), + [sym_assignment_expression] = STATE(713), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(713), + [sym_binary_expression] = STATE(713), + [sym_update_expression] = STATE(713), + [sym_cast_expression] = STATE(713), + [sym_sizeof_expression] = STATE(713), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(713), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(713), + [sym_concatenated_string] = STATE(713), + [sym_string_literal] = STATE(431), + [aux_sym_switch_body_repeat1] = STATE(66), + [sym_identifier] = ACTIONS(785), + [anon_sym_SEMI] = ACTIONS(787), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(789), + [anon_sym_RBRACE] = ACTIONS(899), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(793), + [anon_sym_switch] = ACTIONS(795), + [anon_sym_case] = ACTIONS(797), + [anon_sym_default] = ACTIONS(799), + [anon_sym_while] = ACTIONS(801), + [anon_sym_do] = ACTIONS(803), + [anon_sym_for] = ACTIONS(805), + [anon_sym_return] = ACTIONS(807), + [anon_sym_break] = ACTIONS(809), + [anon_sym_continue] = ACTIONS(811), + [anon_sym_goto] = ACTIONS(813), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(815), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(817), + [sym_false] = ACTIONS(817), + [sym_null] = ACTIONS(817), + [sym_comment] = ACTIONS(3), }, [63] = { - [anon_sym_restrict] = ACTIONS(201), - [anon_sym_COMMA] = ACTIONS(432), - [anon_sym_static] = ACTIONS(201), - [anon_sym_volatile] = ACTIONS(201), - [anon_sym_register] = ACTIONS(201), - [anon_sym_extern] = ACTIONS(201), - [anon_sym_STAR] = ACTIONS(432), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(201), - [anon_sym_LPAREN2] = ACTIONS(450), - [anon_sym_COLON] = ACTIONS(432), - [anon_sym_SEMI] = ACTIONS(432), - [anon_sym__Atomic] = ACTIONS(201), - [sym_identifier] = ACTIONS(201), - [anon_sym_auto] = ACTIONS(201), - [anon_sym_RPAREN] = ACTIONS(432), - [anon_sym_inline] = ACTIONS(201), - [anon_sym___attribute__] = ACTIONS(201), - [anon_sym_LBRACK] = ACTIONS(432), + [sym_compound_statement] = STATE(60), + [sym_labeled_statement] = STATE(60), + [sym_expression_statement] = STATE(60), + [sym_if_statement] = STATE(60), + [sym_switch_statement] = STATE(60), + [sym_case_statement] = STATE(60), + [sym_while_statement] = STATE(60), + [sym_do_statement] = STATE(60), + [sym_for_statement] = STATE(60), + [sym_return_statement] = STATE(60), + [sym_break_statement] = STATE(60), + [sym_continue_statement] = STATE(60), + [sym_goto_statement] = STATE(60), + [sym__expression] = STATE(713), + [sym_comma_expression] = STATE(1120), + [sym_conditional_expression] = STATE(713), + [sym_assignment_expression] = STATE(713), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(713), + [sym_binary_expression] = STATE(713), + [sym_update_expression] = STATE(713), + [sym_cast_expression] = STATE(713), + [sym_sizeof_expression] = STATE(713), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(713), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(713), + [sym_concatenated_string] = STATE(713), + [sym_string_literal] = STATE(431), + [aux_sym_switch_body_repeat1] = STATE(60), + [sym_identifier] = ACTIONS(785), + [anon_sym_SEMI] = ACTIONS(787), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(789), + [anon_sym_RBRACE] = ACTIONS(901), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(793), + [anon_sym_switch] = ACTIONS(795), + [anon_sym_case] = ACTIONS(797), + [anon_sym_default] = ACTIONS(799), + [anon_sym_while] = ACTIONS(801), + [anon_sym_do] = ACTIONS(803), + [anon_sym_for] = ACTIONS(805), + [anon_sym_return] = ACTIONS(807), + [anon_sym_break] = ACTIONS(809), + [anon_sym_continue] = ACTIONS(811), + [anon_sym_goto] = ACTIONS(813), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(815), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(817), + [sym_false] = ACTIONS(817), + [sym_null] = ACTIONS(817), + [sym_comment] = ACTIONS(3), }, [64] = { - [sym_function_type_declarator] = STATE(154), - [sym_pointer_type_declarator] = STATE(154), - [sym_parenthesized_type_declarator] = STATE(154), - [sym_array_type_declarator] = STATE(154), - [sym__type_declarator] = STATE(154), - [anon_sym_STAR] = ACTIONS(453), - [anon_sym_LPAREN2] = ACTIONS(455), - [sym_identifier] = ACTIONS(457), + [sym_compound_statement] = STATE(60), + [sym_labeled_statement] = STATE(60), + [sym_expression_statement] = STATE(60), + [sym_if_statement] = STATE(60), + [sym_switch_statement] = STATE(60), + [sym_case_statement] = STATE(60), + [sym_while_statement] = STATE(60), + [sym_do_statement] = STATE(60), + [sym_for_statement] = STATE(60), + [sym_return_statement] = STATE(60), + [sym_break_statement] = STATE(60), + [sym_continue_statement] = STATE(60), + [sym_goto_statement] = STATE(60), + [sym__expression] = STATE(713), + [sym_comma_expression] = STATE(1120), + [sym_conditional_expression] = STATE(713), + [sym_assignment_expression] = STATE(713), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(713), + [sym_binary_expression] = STATE(713), + [sym_update_expression] = STATE(713), + [sym_cast_expression] = STATE(713), + [sym_sizeof_expression] = STATE(713), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(713), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(713), + [sym_concatenated_string] = STATE(713), + [sym_string_literal] = STATE(431), + [aux_sym_switch_body_repeat1] = STATE(60), + [sym_identifier] = ACTIONS(785), + [anon_sym_SEMI] = ACTIONS(787), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(789), + [anon_sym_RBRACE] = ACTIONS(903), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(793), + [anon_sym_switch] = ACTIONS(795), + [anon_sym_case] = ACTIONS(797), + [anon_sym_default] = ACTIONS(799), + [anon_sym_while] = ACTIONS(801), + [anon_sym_do] = ACTIONS(803), + [anon_sym_for] = ACTIONS(805), + [anon_sym_return] = ACTIONS(807), + [anon_sym_break] = ACTIONS(809), + [anon_sym_continue] = ACTIONS(811), + [anon_sym_goto] = ACTIONS(813), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(815), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(817), + [sym_false] = ACTIONS(817), + [sym_null] = ACTIONS(817), [sym_comment] = ACTIONS(3), }, [65] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_union_specifier] = STATE(155), - [sym__type_specifier] = STATE(155), - [aux_sym_type_definition_repeat1] = STATE(144), - [sym_sized_type_specifier] = STATE(155), - [sym_enum_specifier] = STATE(155), - [sym_macro_type_specifier] = STATE(155), - [sym_struct_specifier] = STATE(155), - [sym_type_qualifier] = STATE(144), - [anon_sym_union] = ACTIONS(37), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(7), - [anon_sym_short] = ACTIONS(27), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_struct] = ACTIONS(25), - [anon_sym_signed] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(27), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_const] = ACTIONS(7), - [anon_sym__Atomic] = ACTIONS(7), - [sym_primitive_type] = ACTIONS(459), - [sym_identifier] = ACTIONS(187), + [sym_compound_statement] = STATE(60), + [sym_labeled_statement] = STATE(60), + [sym_expression_statement] = STATE(60), + [sym_if_statement] = STATE(60), + [sym_switch_statement] = STATE(60), + [sym_case_statement] = STATE(60), + [sym_while_statement] = STATE(60), + [sym_do_statement] = STATE(60), + [sym_for_statement] = STATE(60), + [sym_return_statement] = STATE(60), + [sym_break_statement] = STATE(60), + [sym_continue_statement] = STATE(60), + [sym_goto_statement] = STATE(60), + [sym__expression] = STATE(713), + [sym_comma_expression] = STATE(1120), + [sym_conditional_expression] = STATE(713), + [sym_assignment_expression] = STATE(713), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(713), + [sym_binary_expression] = STATE(713), + [sym_update_expression] = STATE(713), + [sym_cast_expression] = STATE(713), + [sym_sizeof_expression] = STATE(713), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(713), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(713), + [sym_concatenated_string] = STATE(713), + [sym_string_literal] = STATE(431), + [aux_sym_switch_body_repeat1] = STATE(60), + [sym_identifier] = ACTIONS(785), + [anon_sym_SEMI] = ACTIONS(787), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(789), + [anon_sym_RBRACE] = ACTIONS(905), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(793), + [anon_sym_switch] = ACTIONS(795), + [anon_sym_case] = ACTIONS(797), + [anon_sym_default] = ACTIONS(799), + [anon_sym_while] = ACTIONS(801), + [anon_sym_do] = ACTIONS(803), + [anon_sym_for] = ACTIONS(805), + [anon_sym_return] = ACTIONS(807), + [anon_sym_break] = ACTIONS(809), + [anon_sym_continue] = ACTIONS(811), + [anon_sym_goto] = ACTIONS(813), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(815), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(817), + [sym_false] = ACTIONS(817), + [sym_null] = ACTIONS(817), + [sym_comment] = ACTIONS(3), }, [66] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(461), - [anon_sym_PERCENT_EQ] = ACTIONS(463), - [anon_sym_DASH_EQ] = ACTIONS(463), - [anon_sym_PIPE] = ACTIONS(461), - [anon_sym_EQ_EQ] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(461), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LT_LT] = ACTIONS(461), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_PLUS_EQ] = ACTIONS(463), - [anon_sym_LT_LT_EQ] = ACTIONS(463), - [anon_sym_QMARK] = ACTIONS(463), - [anon_sym_BANG_EQ] = ACTIONS(463), - [anon_sym_CARET_EQ] = ACTIONS(463), - [anon_sym_COMMA] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT_EQ] = ACTIONS(463), - [anon_sym_GT] = ACTIONS(461), - [anon_sym_PIPE_EQ] = ACTIONS(463), - [anon_sym_RPAREN] = ACTIONS(463), - [anon_sym_RBRACK] = ACTIONS(463), - [anon_sym_AMP_EQ] = ACTIONS(463), - [anon_sym_PERCENT] = ACTIONS(461), - [anon_sym_AMP] = ACTIONS(461), - [anon_sym_EQ] = ACTIONS(461), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(463), - [anon_sym_RBRACE] = ACTIONS(463), - [anon_sym_COLON] = ACTIONS(463), - [anon_sym_STAR_EQ] = ACTIONS(463), - [anon_sym_PIPE_PIPE] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(461), - [anon_sym_LT_EQ] = ACTIONS(463), - [anon_sym_STAR] = ACTIONS(461), - [anon_sym_SLASH_EQ] = ACTIONS(463), - [anon_sym_AMP_AMP] = ACTIONS(463), - [anon_sym_SEMI] = ACTIONS(463), - [anon_sym_CARET] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(461), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(305), + [sym_compound_statement] = STATE(60), + [sym_labeled_statement] = STATE(60), + [sym_expression_statement] = STATE(60), + [sym_if_statement] = STATE(60), + [sym_switch_statement] = STATE(60), + [sym_case_statement] = STATE(60), + [sym_while_statement] = STATE(60), + [sym_do_statement] = STATE(60), + [sym_for_statement] = STATE(60), + [sym_return_statement] = STATE(60), + [sym_break_statement] = STATE(60), + [sym_continue_statement] = STATE(60), + [sym_goto_statement] = STATE(60), + [sym__expression] = STATE(713), + [sym_comma_expression] = STATE(1120), + [sym_conditional_expression] = STATE(713), + [sym_assignment_expression] = STATE(713), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(713), + [sym_binary_expression] = STATE(713), + [sym_update_expression] = STATE(713), + [sym_cast_expression] = STATE(713), + [sym_sizeof_expression] = STATE(713), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(713), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(713), + [sym_concatenated_string] = STATE(713), + [sym_string_literal] = STATE(431), + [aux_sym_switch_body_repeat1] = STATE(60), + [sym_identifier] = ACTIONS(785), + [anon_sym_SEMI] = ACTIONS(787), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(789), + [anon_sym_RBRACE] = ACTIONS(907), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(793), + [anon_sym_switch] = ACTIONS(795), + [anon_sym_case] = ACTIONS(797), + [anon_sym_default] = ACTIONS(799), + [anon_sym_while] = ACTIONS(801), + [anon_sym_do] = ACTIONS(803), + [anon_sym_for] = ACTIONS(805), + [anon_sym_return] = ACTIONS(807), + [anon_sym_break] = ACTIONS(809), + [anon_sym_continue] = ACTIONS(811), + [anon_sym_goto] = ACTIONS(813), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(815), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(817), + [sym_false] = ACTIONS(817), + [sym_null] = ACTIONS(817), + [sym_comment] = ACTIONS(3), }, [67] = { - [anon_sym_GT_GT] = ACTIONS(465), - [anon_sym_restrict] = ACTIONS(465), - [anon_sym_PERCENT_EQ] = ACTIONS(467), - [anon_sym_DASH_EQ] = ACTIONS(467), - [anon_sym_PIPE] = ACTIONS(465), - [anon_sym_EQ_EQ] = ACTIONS(467), - [anon_sym_SLASH] = ACTIONS(465), - [anon_sym_DASH_GT] = ACTIONS(467), - [anon_sym_const] = ACTIONS(465), - [anon_sym_LT_LT] = ACTIONS(465), - [anon_sym_DASH_DASH] = ACTIONS(467), - [anon_sym__Atomic] = ACTIONS(465), - [sym_identifier] = ACTIONS(465), - [anon_sym_PLUS_EQ] = ACTIONS(467), - [anon_sym_LT_LT_EQ] = ACTIONS(467), - [anon_sym_QMARK] = ACTIONS(467), - [anon_sym_BANG_EQ] = ACTIONS(467), - [anon_sym_CARET_EQ] = ACTIONS(467), - [anon_sym_COMMA] = ACTIONS(467), - [anon_sym_volatile] = ACTIONS(465), - [anon_sym_extern] = ACTIONS(465), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_struct] = ACTIONS(465), - [anon_sym_signed] = ACTIONS(465), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(465), - [anon_sym_GT_GT_EQ] = ACTIONS(467), - [anon_sym_GT] = ACTIONS(465), - [anon_sym_PIPE_EQ] = ACTIONS(467), - [anon_sym_RPAREN] = ACTIONS(467), - [anon_sym_RBRACK] = ACTIONS(467), - [anon_sym___attribute__] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(467), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsigned] = ACTIONS(465), - [anon_sym_short] = ACTIONS(465), - [anon_sym_AMP_EQ] = ACTIONS(467), - [anon_sym_PERCENT] = ACTIONS(465), - [anon_sym_AMP] = ACTIONS(465), - [anon_sym_EQ] = ACTIONS(465), - [anon_sym_L_DQUOTE] = ACTIONS(467), - [anon_sym_LPAREN2] = ACTIONS(467), - [anon_sym_GT_EQ] = ACTIONS(467), - [anon_sym_RBRACE] = ACTIONS(467), - [anon_sym_COLON] = ACTIONS(467), - [sym_primitive_type] = ACTIONS(465), - [anon_sym_STAR_EQ] = ACTIONS(467), - [anon_sym_PIPE_PIPE] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(465), - [anon_sym_static] = ACTIONS(465), - [anon_sym_DQUOTE] = ACTIONS(467), - [anon_sym_register] = ACTIONS(465), - [anon_sym_LT_EQ] = ACTIONS(467), - [anon_sym_STAR] = ACTIONS(465), - [anon_sym_enum] = ACTIONS(465), - [anon_sym_SLASH_EQ] = ACTIONS(467), - [anon_sym_AMP_AMP] = ACTIONS(467), - [anon_sym_SEMI] = ACTIONS(467), - [anon_sym_CARET] = ACTIONS(465), - [anon_sym_PLUS] = ACTIONS(465), - [anon_sym_auto] = ACTIONS(465), - [anon_sym_DOT] = ACTIONS(467), - [anon_sym_inline] = ACTIONS(465), - [anon_sym_LT] = ACTIONS(465), - [anon_sym_LBRACK] = ACTIONS(467), + [sym_compound_statement] = STATE(63), + [sym_labeled_statement] = STATE(63), + [sym_expression_statement] = STATE(63), + [sym_if_statement] = STATE(63), + [sym_switch_statement] = STATE(63), + [sym_case_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__expression] = STATE(713), + [sym_comma_expression] = STATE(1120), + [sym_conditional_expression] = STATE(713), + [sym_assignment_expression] = STATE(713), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(713), + [sym_binary_expression] = STATE(713), + [sym_update_expression] = STATE(713), + [sym_cast_expression] = STATE(713), + [sym_sizeof_expression] = STATE(713), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(713), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(713), + [sym_concatenated_string] = STATE(713), + [sym_string_literal] = STATE(431), + [aux_sym_switch_body_repeat1] = STATE(63), + [sym_identifier] = ACTIONS(785), + [anon_sym_SEMI] = ACTIONS(787), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(789), + [anon_sym_RBRACE] = ACTIONS(909), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(793), + [anon_sym_switch] = ACTIONS(795), + [anon_sym_case] = ACTIONS(797), + [anon_sym_default] = ACTIONS(799), + [anon_sym_while] = ACTIONS(801), + [anon_sym_do] = ACTIONS(803), + [anon_sym_for] = ACTIONS(805), + [anon_sym_return] = ACTIONS(807), + [anon_sym_break] = ACTIONS(809), + [anon_sym_continue] = ACTIONS(811), + [anon_sym_goto] = ACTIONS(813), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(815), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(817), + [sym_false] = ACTIONS(817), + [sym_null] = ACTIONS(817), + [sym_comment] = ACTIONS(3), }, [68] = { - [aux_sym_string_literal_repeat1] = STATE(157), - [sym_comment] = ACTIONS(147), - [sym_escape_sequence] = ACTIONS(469), - [aux_sym_string_literal_token1] = ACTIONS(469), - [anon_sym_DQUOTE] = ACTIONS(471), + [sym__expression] = STATE(453), + [sym_conditional_expression] = STATE(453), + [sym_assignment_expression] = STATE(453), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(453), + [sym_binary_expression] = STATE(453), + [sym_update_expression] = STATE(453), + [sym_cast_expression] = STATE(453), + [sym_sizeof_expression] = STATE(453), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(453), + [sym_parenthesized_expression] = STATE(484), + [sym_initializer_list] = STATE(486), + [sym_char_literal] = STATE(453), + [sym_concatenated_string] = STATE(453), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_COMMA] = ACTIONS(727), + [anon_sym_RPAREN] = ACTIONS(727), + [anon_sym_SEMI] = ACTIONS(727), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(731), + [anon_sym_RBRACE] = ACTIONS(727), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(727), + [anon_sym_RBRACK] = ACTIONS(727), + [anon_sym_COLON] = ACTIONS(727), + [anon_sym_QMARK] = ACTIONS(727), + [anon_sym_AMP] = ACTIONS(733), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_SLASH] = ACTIONS(735), + [anon_sym_PERCENT] = ACTIONS(727), + [anon_sym_PIPE_PIPE] = ACTIONS(727), + [anon_sym_AMP_AMP] = ACTIONS(727), + [anon_sym_PIPE] = ACTIONS(735), + [anon_sym_CARET] = ACTIONS(727), + [anon_sym_EQ_EQ] = ACTIONS(727), + [anon_sym_BANG_EQ] = ACTIONS(727), + [anon_sym_GT] = ACTIONS(735), + [anon_sym_GT_EQ] = ACTIONS(727), + [anon_sym_LT_EQ] = ACTIONS(727), + [anon_sym_LT] = ACTIONS(735), + [anon_sym_LT_LT] = ACTIONS(727), + [anon_sym_GT_GT] = ACTIONS(727), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(735), + [anon_sym_DASH_GT] = ACTIONS(727), + [sym_number_literal] = ACTIONS(745), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(725), + [sym_false] = ACTIONS(725), + [sym_null] = ACTIONS(725), + [sym_comment] = ACTIONS(3), }, [69] = { - [sym_char_literal] = STATE(158), - [sym__expression] = STATE(158), - [sym_binary_expression] = STATE(158), - [sym_update_expression] = STATE(158), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(158), - [sym_sizeof_expression] = STATE(158), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(158), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(158), - [sym_assignment_expression] = STATE(158), - [sym_cast_expression] = STATE(158), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(158), - [sym_true] = ACTIONS(473), - [sym_null] = ACTIONS(473), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(475), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(473), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [ts_builtin_sym_end] = ACTIONS(913), + [sym_identifier] = ACTIONS(915), + [aux_sym_preproc_include_token1] = ACTIONS(915), + [aux_sym_preproc_def_token1] = ACTIONS(915), + [aux_sym_preproc_if_token1] = ACTIONS(915), + [aux_sym_preproc_ifdef_token1] = ACTIONS(915), + [aux_sym_preproc_ifdef_token2] = ACTIONS(915), + [sym_preproc_directive] = ACTIONS(915), + [anon_sym_SEMI] = ACTIONS(913), + [anon_sym_typedef] = ACTIONS(915), + [anon_sym_extern] = ACTIONS(915), + [anon_sym___attribute__] = ACTIONS(915), + [anon_sym_LPAREN2] = ACTIONS(913), + [anon_sym_LBRACE] = ACTIONS(913), + [anon_sym_RBRACE] = ACTIONS(913), + [anon_sym_STAR] = ACTIONS(913), + [anon_sym_static] = ACTIONS(915), + [anon_sym_auto] = ACTIONS(915), + [anon_sym_register] = ACTIONS(915), + [anon_sym_inline] = ACTIONS(915), + [anon_sym_const] = ACTIONS(915), + [anon_sym_volatile] = ACTIONS(915), + [anon_sym_restrict] = ACTIONS(915), + [anon_sym__Atomic] = ACTIONS(915), + [anon_sym_signed] = ACTIONS(915), + [anon_sym_unsigned] = ACTIONS(915), + [anon_sym_long] = ACTIONS(915), + [anon_sym_short] = ACTIONS(915), + [sym_primitive_type] = ACTIONS(915), + [anon_sym_enum] = ACTIONS(915), + [anon_sym_struct] = ACTIONS(915), + [anon_sym_union] = ACTIONS(915), + [anon_sym_if] = ACTIONS(915), + [anon_sym_else] = ACTIONS(915), + [anon_sym_switch] = ACTIONS(915), + [anon_sym_case] = ACTIONS(915), + [anon_sym_default] = ACTIONS(915), + [anon_sym_while] = ACTIONS(915), + [anon_sym_do] = ACTIONS(915), + [anon_sym_for] = ACTIONS(915), + [anon_sym_return] = ACTIONS(915), + [anon_sym_break] = ACTIONS(915), + [anon_sym_continue] = ACTIONS(915), + [anon_sym_goto] = ACTIONS(915), + [anon_sym_AMP] = ACTIONS(913), + [anon_sym_BANG] = ACTIONS(913), + [anon_sym_TILDE] = ACTIONS(913), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_PLUS] = ACTIONS(915), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_sizeof] = ACTIONS(915), + [sym_number_literal] = ACTIONS(913), + [anon_sym_L_SQUOTE] = ACTIONS(913), + [anon_sym_SQUOTE] = ACTIONS(913), + [anon_sym_L_DQUOTE] = ACTIONS(913), + [anon_sym_DQUOTE] = ACTIONS(913), + [sym_true] = ACTIONS(915), + [sym_false] = ACTIONS(915), + [sym_null] = ACTIONS(915), + [sym_comment] = ACTIONS(3), }, [70] = { - [aux_sym_type_definition_repeat1] = STATE(60), - [sym_sized_type_specifier] = STATE(62), - [sym_enum_specifier] = STATE(62), - [sym_type_qualifier] = STATE(60), - [aux_sym_sized_type_specifier_repeat1] = STATE(509), - [sym_union_specifier] = STATE(62), - [sym__type_specifier] = STATE(62), - [sym_macro_type_specifier] = STATE(62), - [sym_struct_specifier] = STATE(62), - [sym_type_descriptor] = STATE(159), - [anon_sym_union] = ACTIONS(37), - [anon_sym_unsigned] = ACTIONS(177), - [anon_sym_restrict] = ACTIONS(7), - [anon_sym_short] = ACTIONS(177), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_struct] = ACTIONS(25), - [anon_sym_signed] = ACTIONS(177), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(177), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_const] = ACTIONS(7), - [anon_sym__Atomic] = ACTIONS(7), - [sym_primitive_type] = ACTIONS(179), - [sym_identifier] = ACTIONS(187), + [sym_compound_statement] = STATE(323), + [sym_labeled_statement] = STATE(323), + [sym_expression_statement] = STATE(323), + [sym_if_statement] = STATE(323), + [sym_switch_statement] = STATE(323), + [sym_while_statement] = STATE(323), + [sym_do_statement] = STATE(323), + [sym_for_statement] = STATE(323), + [sym_return_statement] = STATE(323), + [sym_break_statement] = STATE(323), + [sym_continue_statement] = STATE(323), + [sym_goto_statement] = STATE(323), + [sym__expression] = STATE(707), + [sym_comma_expression] = STATE(1207), + [sym_conditional_expression] = STATE(707), + [sym_assignment_expression] = STATE(707), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(707), + [sym_binary_expression] = STATE(707), + [sym_update_expression] = STATE(707), + [sym_cast_expression] = STATE(707), + [sym_sizeof_expression] = STATE(707), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(707), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(707), + [sym_concatenated_string] = STATE(707), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(917), + [anon_sym_SEMI] = ACTIONS(358), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(364), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(370), + [anon_sym_switch] = ACTIONS(372), + [anon_sym_while] = ACTIONS(374), + [anon_sym_do] = ACTIONS(376), + [anon_sym_for] = ACTIONS(378), + [anon_sym_return] = ACTIONS(380), + [anon_sym_break] = ACTIONS(382), + [anon_sym_continue] = ACTIONS(384), + [anon_sym_goto] = ACTIONS(386), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(388), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(390), + [sym_false] = ACTIONS(390), + [sym_null] = ACTIONS(390), + [sym_comment] = ACTIONS(3), }, [71] = { - [sym_if_statement] = STATE(160), - [sym_do_statement] = STATE(160), - [sym_for_statement] = STATE(160), - [sym__expression] = STATE(34), - [sym_comma_expression] = STATE(35), - [sym_binary_expression] = STATE(34), - [sym_update_expression] = STATE(34), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(160), - [sym_return_statement] = STATE(160), - [sym_break_statement] = STATE(160), - [sym_conditional_expression] = STATE(34), - [sym_assignment_expression] = STATE(34), - [sym_cast_expression] = STATE(34), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(34), - [sym_char_literal] = STATE(34), - [sym_labeled_statement] = STATE(160), - [sym_while_statement] = STATE(160), - [sym_continue_statement] = STATE(160), - [sym_goto_statement] = STATE(160), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(34), - [sym_sizeof_expression] = STATE(34), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(34), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(160), - [sym_expression_statement] = STATE(160), - [anon_sym_LBRACE] = ACTIONS(35), - [sym_true] = ACTIONS(5), - [sym_null] = ACTIONS(5), - [anon_sym_do] = ACTIONS(39), - [anon_sym_goto] = ACTIONS(9), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(477), - [anon_sym_for] = ACTIONS(55), - [anon_sym_break] = ACTIONS(57), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(65), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(67), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(5), - [anon_sym_return] = ACTIONS(73), - [anon_sym_while] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_SEMI] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_compound_statement] = STATE(102), + [sym_labeled_statement] = STATE(102), + [sym_expression_statement] = STATE(102), + [sym_if_statement] = STATE(102), + [sym_switch_statement] = STATE(102), + [sym_while_statement] = STATE(102), + [sym_do_statement] = STATE(102), + [sym_for_statement] = STATE(102), + [sym_return_statement] = STATE(102), + [sym_break_statement] = STATE(102), + [sym_continue_statement] = STATE(102), + [sym_goto_statement] = STATE(102), + [sym__expression] = STATE(721), + [sym_comma_expression] = STATE(1123), + [sym_conditional_expression] = STATE(721), + [sym_assignment_expression] = STATE(721), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(721), + [sym_binary_expression] = STATE(721), + [sym_update_expression] = STATE(721), + [sym_cast_expression] = STATE(721), + [sym_sizeof_expression] = STATE(721), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(721), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(721), + [sym_concatenated_string] = STATE(721), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(919), + [anon_sym_SEMI] = ACTIONS(19), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(921), + [anon_sym_switch] = ACTIONS(49), + [anon_sym_while] = ACTIONS(923), + [anon_sym_do] = ACTIONS(925), + [anon_sym_for] = ACTIONS(927), + [anon_sym_return] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(61), + [anon_sym_goto] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(73), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_null] = ACTIONS(79), + [sym_comment] = ACTIONS(3), }, [72] = { - [sym__expression] = STATE(162), - [sym_comma_expression] = STATE(163), - [sym_binary_expression] = STATE(162), - [sym_declaration] = STATE(164), - [sym_update_expression] = STATE(162), - [sym_call_expression] = STATE(36), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(130), - [sym_union_specifier] = STATE(130), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_conditional_expression] = STATE(162), - [sym_assignment_expression] = STATE(162), - [sym_cast_expression] = STATE(162), - [sym__declaration_specifiers] = STATE(165), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(162), - [sym_char_literal] = STATE(162), - [sym_sized_type_specifier] = STATE(130), - [sym_enum_specifier] = STATE(130), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(162), - [sym_sizeof_expression] = STATE(162), - [sym_attribute_specifier] = STATE(43), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(162), - [sym_string_literal] = STATE(41), - [sym_macro_type_specifier] = STATE(130), - [sym_storage_class_specifier] = STATE(43), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_struct_specifier] = STATE(130), - [sym_true] = ACTIONS(479), - [anon_sym_restrict] = ACTIONS(7), - [sym_null] = ACTIONS(479), - [anon_sym_const] = ACTIONS(7), - [anon_sym_DASH_DASH] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(7), - [sym_identifier] = ACTIONS(481), - [sym_number_literal] = ACTIONS(483), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_extern] = ACTIONS(63), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_struct] = ACTIONS(25), - [anon_sym_signed] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(27), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_sizeof] = ACTIONS(33), - [anon_sym_union] = ACTIONS(37), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_short] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(348), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [anon_sym_static] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_register] = ACTIONS(63), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_enum] = ACTIONS(69), - [sym_false] = ACTIONS(479), - [anon_sym_SEMI] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_auto] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), + [sym_compound_statement] = STATE(120), + [sym_labeled_statement] = STATE(120), + [sym_expression_statement] = STATE(120), + [sym_if_statement] = STATE(120), + [sym_switch_statement] = STATE(120), + [sym_while_statement] = STATE(120), + [sym_do_statement] = STATE(120), + [sym_for_statement] = STATE(120), + [sym_return_statement] = STATE(120), + [sym_break_statement] = STATE(120), + [sym_continue_statement] = STATE(120), + [sym_goto_statement] = STATE(120), + [sym__expression] = STATE(721), + [sym_comma_expression] = STATE(1123), + [sym_conditional_expression] = STATE(721), + [sym_assignment_expression] = STATE(721), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(721), + [sym_binary_expression] = STATE(721), + [sym_update_expression] = STATE(721), + [sym_cast_expression] = STATE(721), + [sym_sizeof_expression] = STATE(721), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(721), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(721), + [sym_concatenated_string] = STATE(721), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(919), + [anon_sym_SEMI] = ACTIONS(19), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(921), + [anon_sym_switch] = ACTIONS(49), + [anon_sym_while] = ACTIONS(923), + [anon_sym_do] = ACTIONS(925), + [anon_sym_for] = ACTIONS(927), + [anon_sym_return] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(61), + [anon_sym_goto] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(73), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_null] = ACTIONS(79), + [sym_comment] = ACTIONS(3), }, [73] = { - [anon_sym_case] = ACTIONS(487), - [sym_true] = ACTIONS(487), - [anon_sym_restrict] = ACTIONS(487), - [sym_null] = ACTIONS(487), - [anon_sym_goto] = ACTIONS(487), - [anon_sym_const] = ACTIONS(487), - [anon_sym_typedef] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(489), - [anon_sym_default] = ACTIONS(487), - [anon_sym__Atomic] = ACTIONS(487), - [sym_identifier] = ACTIONS(487), - [aux_sym_preproc_ifdef_token1] = ACTIONS(487), - [sym_number_literal] = ACTIONS(489), - [anon_sym_volatile] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [anon_sym_extern] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(489), - [anon_sym_struct] = ACTIONS(487), - [anon_sym_signed] = ACTIONS(487), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(487), - [anon_sym_while] = ACTIONS(487), - [aux_sym_preproc_ifdef_token2] = ACTIONS(487), - [anon_sym_L_SQUOTE] = ACTIONS(489), - [anon_sym___attribute__] = ACTIONS(487), - [anon_sym_sizeof] = ACTIONS(487), - [anon_sym_LBRACE] = ACTIONS(489), - [anon_sym_union] = ACTIONS(487), - [anon_sym_unsigned] = ACTIONS(487), - [anon_sym_short] = ACTIONS(487), - [anon_sym_do] = ACTIONS(487), - [sym_preproc_directive] = ACTIONS(487), - [anon_sym_AMP] = ACTIONS(489), - [aux_sym_preproc_if_token1] = ACTIONS(487), - [anon_sym_TILDE] = ACTIONS(489), - [anon_sym_L_DQUOTE] = ACTIONS(489), - [anon_sym_LPAREN2] = ACTIONS(489), - [anon_sym_RBRACE] = ACTIONS(489), - [anon_sym_else] = ACTIONS(487), - [sym_primitive_type] = ACTIONS(487), - [anon_sym_for] = ACTIONS(487), - [anon_sym_break] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(489), - [aux_sym_preproc_include_token1] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_static] = ACTIONS(487), - [anon_sym_DQUOTE] = ACTIONS(489), - [anon_sym_register] = ACTIONS(487), - [anon_sym_STAR] = ACTIONS(489), - [anon_sym_if] = ACTIONS(487), - [anon_sym_switch] = ACTIONS(487), - [anon_sym_enum] = ACTIONS(487), - [sym_false] = ACTIONS(487), - [ts_builtin_sym_end] = ACTIONS(489), - [anon_sym_return] = ACTIONS(487), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(489), - [aux_sym_preproc_def_token1] = ACTIONS(487), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_auto] = ACTIONS(487), - [anon_sym_inline] = ACTIONS(487), + [sym_compound_statement] = STATE(69), + [sym_labeled_statement] = STATE(69), + [sym_expression_statement] = STATE(69), + [sym_if_statement] = STATE(69), + [sym_switch_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_do_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_return_statement] = STATE(69), + [sym_break_statement] = STATE(69), + [sym_continue_statement] = STATE(69), + [sym_goto_statement] = STATE(69), + [sym__expression] = STATE(721), + [sym_comma_expression] = STATE(1123), + [sym_conditional_expression] = STATE(721), + [sym_assignment_expression] = STATE(721), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(721), + [sym_binary_expression] = STATE(721), + [sym_update_expression] = STATE(721), + [sym_cast_expression] = STATE(721), + [sym_sizeof_expression] = STATE(721), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(721), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(721), + [sym_concatenated_string] = STATE(721), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(919), + [anon_sym_SEMI] = ACTIONS(19), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(921), + [anon_sym_switch] = ACTIONS(49), + [anon_sym_while] = ACTIONS(923), + [anon_sym_do] = ACTIONS(925), + [anon_sym_for] = ACTIONS(927), + [anon_sym_return] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(61), + [anon_sym_goto] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(73), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_null] = ACTIONS(79), + [sym_comment] = ACTIONS(3), }, [74] = { - [sym_if_statement] = STATE(168), - [sym_preproc_def] = STATE(168), - [sym_preproc_function_def] = STATE(168), - [sym__expression] = STATE(951), - [sym_comma_expression] = STATE(952), - [sym_binary_expression] = STATE(951), - [sym_update_expression] = STATE(951), - [sym_call_expression] = STATE(36), - [sym_function_definition] = STATE(168), - [sym_declaration] = STATE(168), - [sym_do_statement] = STATE(168), - [sym_for_statement] = STATE(168), - [sym_preproc_else] = STATE(167), - [sym_preproc_elif] = STATE(167), - [aux_sym_translation_unit_repeat1] = STATE(168), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(953), - [sym_union_specifier] = STATE(953), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_expression_statement] = STATE(168), - [sym_switch_statement] = STATE(168), - [sym_return_statement] = STATE(168), - [sym_preproc_call] = STATE(168), - [sym_conditional_expression] = STATE(951), - [sym_assignment_expression] = STATE(951), - [sym_cast_expression] = STATE(951), - [sym__declaration_specifiers] = STATE(1172), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(951), - [sym_type_definition] = STATE(168), - [sym_char_literal] = STATE(951), - [sym_break_statement] = STATE(168), - [sym__empty_declaration] = STATE(168), - [sym_sized_type_specifier] = STATE(953), - [sym_enum_specifier] = STATE(953), - [sym_labeled_statement] = STATE(168), - [sym_preproc_include] = STATE(168), - [sym_preproc_if] = STATE(168), - [sym_preproc_ifdef] = STATE(168), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(951), - [sym_sizeof_expression] = STATE(951), - [sym_attribute_specifier] = STATE(43), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_linkage_specification] = STATE(168), - [sym_concatenated_string] = STATE(951), - [sym_string_literal] = STATE(41), - [sym_macro_type_specifier] = STATE(953), - [sym_while_statement] = STATE(168), - [sym_storage_class_specifier] = STATE(43), - [sym_compound_statement] = STATE(168), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_continue_statement] = STATE(168), - [sym_struct_specifier] = STATE(953), - [sym_goto_statement] = STATE(168), - [sym_true] = ACTIONS(378), - [anon_sym_restrict] = ACTIONS(7), - [sym_null] = ACTIONS(378), - [anon_sym_goto] = ACTIONS(380), - [aux_sym_preproc_if_token2] = ACTIONS(491), - [anon_sym_const] = ACTIONS(7), - [anon_sym_typedef] = ACTIONS(384), - [anon_sym_DASH_DASH] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(7), - [sym_identifier] = ACTIONS(386), - [aux_sym_preproc_ifdef_token1] = ACTIONS(388), - [sym_number_literal] = ACTIONS(390), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_extern] = ACTIONS(392), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_struct] = ACTIONS(25), - [anon_sym_signed] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(27), - [anon_sym_while] = ACTIONS(394), - [aux_sym_preproc_ifdef_token2] = ACTIONS(388), - [aux_sym_preproc_elif_token1] = ACTIONS(396), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_sizeof] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(398), - [anon_sym_union] = ACTIONS(37), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_short] = ACTIONS(27), - [anon_sym_do] = ACTIONS(400), - [aux_sym_preproc_else_token1] = ACTIONS(402), - [sym_preproc_directive] = ACTIONS(404), - [anon_sym_AMP] = ACTIONS(43), - [aux_sym_preproc_if_token1] = ACTIONS(406), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(408), - [anon_sym_for] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_BANG] = ACTIONS(47), - [aux_sym_preproc_include_token1] = ACTIONS(414), - [anon_sym_DASH] = ACTIONS(61), - [anon_sym_static] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_register] = ACTIONS(63), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(416), - [anon_sym_switch] = ACTIONS(418), - [anon_sym_enum] = ACTIONS(69), - [sym_false] = ACTIONS(378), - [anon_sym_return] = ACTIONS(420), - [anon_sym_continue] = ACTIONS(422), - [anon_sym_SEMI] = ACTIONS(424), - [aux_sym_preproc_def_token1] = ACTIONS(426), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_auto] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), + [sym_compound_statement] = STATE(189), + [sym_labeled_statement] = STATE(189), + [sym_expression_statement] = STATE(189), + [sym_if_statement] = STATE(189), + [sym_switch_statement] = STATE(189), + [sym_while_statement] = STATE(189), + [sym_do_statement] = STATE(189), + [sym_for_statement] = STATE(189), + [sym_return_statement] = STATE(189), + [sym_break_statement] = STATE(189), + [sym_continue_statement] = STATE(189), + [sym_goto_statement] = STATE(189), + [sym__expression] = STATE(721), + [sym_comma_expression] = STATE(1123), + [sym_conditional_expression] = STATE(721), + [sym_assignment_expression] = STATE(721), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(721), + [sym_binary_expression] = STATE(721), + [sym_update_expression] = STATE(721), + [sym_cast_expression] = STATE(721), + [sym_sizeof_expression] = STATE(721), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(721), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(721), + [sym_concatenated_string] = STATE(721), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(919), + [anon_sym_SEMI] = ACTIONS(19), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(921), + [anon_sym_switch] = ACTIONS(49), + [anon_sym_while] = ACTIONS(923), + [anon_sym_do] = ACTIONS(925), + [anon_sym_for] = ACTIONS(927), + [anon_sym_return] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(61), + [anon_sym_goto] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(73), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_null] = ACTIONS(79), + [sym_comment] = ACTIONS(3), }, [75] = { - [sym_true] = ACTIONS(493), - [anon_sym_restrict] = ACTIONS(493), - [sym_null] = ACTIONS(493), - [anon_sym_goto] = ACTIONS(493), - [anon_sym_const] = ACTIONS(493), - [anon_sym_typedef] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(495), - [anon_sym__Atomic] = ACTIONS(493), - [sym_identifier] = ACTIONS(493), - [aux_sym_preproc_ifdef_token1] = ACTIONS(493), - [sym_number_literal] = ACTIONS(495), - [anon_sym_volatile] = ACTIONS(493), - [anon_sym_SQUOTE] = ACTIONS(495), - [anon_sym_extern] = ACTIONS(493), - [anon_sym_PLUS_PLUS] = ACTIONS(495), - [anon_sym_struct] = ACTIONS(493), - [anon_sym_signed] = ACTIONS(493), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(493), - [anon_sym_while] = ACTIONS(493), - [aux_sym_preproc_ifdef_token2] = ACTIONS(493), - [anon_sym_L_SQUOTE] = ACTIONS(495), - [anon_sym___attribute__] = ACTIONS(493), - [anon_sym_sizeof] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_union] = ACTIONS(493), - [anon_sym_unsigned] = ACTIONS(493), - [anon_sym_short] = ACTIONS(493), - [anon_sym_do] = ACTIONS(493), - [sym_preproc_directive] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(495), - [aux_sym_preproc_if_token1] = ACTIONS(493), - [anon_sym_TILDE] = ACTIONS(495), - [anon_sym_L_DQUOTE] = ACTIONS(495), - [anon_sym_LPAREN2] = ACTIONS(495), - [sym_primitive_type] = ACTIONS(493), - [anon_sym_for] = ACTIONS(493), - [anon_sym_break] = ACTIONS(493), - [anon_sym_BANG] = ACTIONS(495), - [aux_sym_preproc_include_token1] = ACTIONS(493), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_static] = ACTIONS(493), - [anon_sym_DQUOTE] = ACTIONS(495), - [anon_sym_register] = ACTIONS(493), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_if] = ACTIONS(493), - [anon_sym_switch] = ACTIONS(493), - [anon_sym_enum] = ACTIONS(493), - [sym_false] = ACTIONS(493), - [ts_builtin_sym_end] = ACTIONS(495), - [anon_sym_return] = ACTIONS(493), - [anon_sym_continue] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(495), - [aux_sym_preproc_def_token1] = ACTIONS(493), - [anon_sym_PLUS] = ACTIONS(493), - [anon_sym_auto] = ACTIONS(493), - [anon_sym_inline] = ACTIONS(493), + [sym_compound_statement] = STATE(174), + [sym_labeled_statement] = STATE(174), + [sym_expression_statement] = STATE(174), + [sym_if_statement] = STATE(174), + [sym_switch_statement] = STATE(174), + [sym_while_statement] = STATE(174), + [sym_do_statement] = STATE(174), + [sym_for_statement] = STATE(174), + [sym_return_statement] = STATE(174), + [sym_break_statement] = STATE(174), + [sym_continue_statement] = STATE(174), + [sym_goto_statement] = STATE(174), + [sym__expression] = STATE(721), + [sym_comma_expression] = STATE(1123), + [sym_conditional_expression] = STATE(721), + [sym_assignment_expression] = STATE(721), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(721), + [sym_binary_expression] = STATE(721), + [sym_update_expression] = STATE(721), + [sym_cast_expression] = STATE(721), + [sym_sizeof_expression] = STATE(721), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(721), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(721), + [sym_concatenated_string] = STATE(721), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(919), + [anon_sym_SEMI] = ACTIONS(19), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(921), + [anon_sym_switch] = ACTIONS(49), + [anon_sym_while] = ACTIONS(923), + [anon_sym_do] = ACTIONS(925), + [anon_sym_for] = ACTIONS(927), + [anon_sym_return] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(61), + [anon_sym_goto] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(73), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_null] = ACTIONS(79), + [sym_comment] = ACTIONS(3), }, [76] = { - [sym_sized_type_specifier] = STATE(130), - [sym_declaration] = STATE(170), - [sym_declaration_list] = STATE(170), - [sym_enum_specifier] = STATE(130), - [sym_function_definition] = STATE(170), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(130), - [sym_union_specifier] = STATE(130), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_attribute_specifier] = STATE(43), - [sym_macro_type_specifier] = STATE(130), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_storage_class_specifier] = STATE(43), - [sym__declaration_specifiers] = STATE(40), - [sym_struct_specifier] = STATE(130), - [anon_sym_LBRACE] = ACTIONS(497), - [anon_sym_union] = ACTIONS(37), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(7), - [anon_sym_short] = ACTIONS(27), - [anon_sym_static] = ACTIONS(63), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_register] = ACTIONS(63), - [anon_sym_extern] = ACTIONS(63), - [anon_sym_struct] = ACTIONS(25), - [anon_sym_signed] = ACTIONS(27), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_long] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(7), - [anon_sym__Atomic] = ACTIONS(7), - [sym_primitive_type] = ACTIONS(348), - [anon_sym_auto] = ACTIONS(63), - [sym_identifier] = ACTIONS(187), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(31), + [sym_compound_statement] = STATE(1064), + [sym_labeled_statement] = STATE(1064), + [sym_expression_statement] = STATE(1064), + [sym_if_statement] = STATE(1064), + [sym_switch_statement] = STATE(1064), + [sym_while_statement] = STATE(1064), + [sym_do_statement] = STATE(1064), + [sym_for_statement] = STATE(1064), + [sym_return_statement] = STATE(1064), + [sym_break_statement] = STATE(1064), + [sym_continue_statement] = STATE(1064), + [sym_goto_statement] = STATE(1064), + [sym__expression] = STATE(721), + [sym_comma_expression] = STATE(1123), + [sym_conditional_expression] = STATE(721), + [sym_assignment_expression] = STATE(721), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(721), + [sym_binary_expression] = STATE(721), + [sym_update_expression] = STATE(721), + [sym_cast_expression] = STATE(721), + [sym_sizeof_expression] = STATE(721), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(721), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(721), + [sym_concatenated_string] = STATE(721), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(919), + [anon_sym_SEMI] = ACTIONS(19), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(921), + [anon_sym_switch] = ACTIONS(49), + [anon_sym_while] = ACTIONS(923), + [anon_sym_do] = ACTIONS(925), + [anon_sym_for] = ACTIONS(927), + [anon_sym_return] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(61), + [anon_sym_goto] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(73), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_null] = ACTIONS(79), + [sym_comment] = ACTIONS(3), }, [77] = { - [sym_char_literal] = STATE(876), - [sym__expression] = STATE(876), - [sym_comma_expression] = STATE(877), - [sym_binary_expression] = STATE(876), - [sym_update_expression] = STATE(876), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(876), - [sym_sizeof_expression] = STATE(876), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(876), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(876), - [sym_assignment_expression] = STATE(876), - [sym_cast_expression] = STATE(876), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(876), - [sym_true] = ACTIONS(499), - [sym_null] = ACTIONS(499), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(501), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(499), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_compound_statement] = STATE(1167), + [sym_labeled_statement] = STATE(1167), + [sym_expression_statement] = STATE(1167), + [sym_if_statement] = STATE(1167), + [sym_switch_statement] = STATE(1167), + [sym_while_statement] = STATE(1167), + [sym_do_statement] = STATE(1167), + [sym_for_statement] = STATE(1167), + [sym_return_statement] = STATE(1167), + [sym_break_statement] = STATE(1167), + [sym_continue_statement] = STATE(1167), + [sym_goto_statement] = STATE(1167), + [sym__expression] = STATE(721), + [sym_comma_expression] = STATE(1123), + [sym_conditional_expression] = STATE(721), + [sym_assignment_expression] = STATE(721), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(721), + [sym_binary_expression] = STATE(721), + [sym_update_expression] = STATE(721), + [sym_cast_expression] = STATE(721), + [sym_sizeof_expression] = STATE(721), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(721), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(721), + [sym_concatenated_string] = STATE(721), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(919), + [anon_sym_SEMI] = ACTIONS(19), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(921), + [anon_sym_switch] = ACTIONS(49), + [anon_sym_while] = ACTIONS(923), + [anon_sym_do] = ACTIONS(925), + [anon_sym_for] = ACTIONS(927), + [anon_sym_return] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(61), + [anon_sym_goto] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(73), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_null] = ACTIONS(79), + [sym_comment] = ACTIONS(3), }, [78] = { - [sym_if_statement] = STATE(171), - [sym_do_statement] = STATE(171), - [sym_for_statement] = STATE(171), - [sym__expression] = STATE(34), - [sym_comma_expression] = STATE(35), - [sym_binary_expression] = STATE(34), - [sym_update_expression] = STATE(34), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(171), - [sym_return_statement] = STATE(171), - [sym_break_statement] = STATE(171), - [sym_conditional_expression] = STATE(34), - [sym_assignment_expression] = STATE(34), - [sym_cast_expression] = STATE(34), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(34), - [sym_char_literal] = STATE(34), - [sym_labeled_statement] = STATE(171), - [sym_while_statement] = STATE(171), - [sym_continue_statement] = STATE(171), - [sym_goto_statement] = STATE(171), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(34), - [sym_sizeof_expression] = STATE(34), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(34), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(171), - [sym_expression_statement] = STATE(171), - [anon_sym_LBRACE] = ACTIONS(35), - [sym_true] = ACTIONS(5), - [sym_null] = ACTIONS(5), - [anon_sym_do] = ACTIONS(39), - [anon_sym_goto] = ACTIONS(9), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(477), - [anon_sym_for] = ACTIONS(55), - [anon_sym_break] = ACTIONS(57), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(65), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(67), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(5), - [anon_sym_return] = ACTIONS(73), - [anon_sym_while] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_SEMI] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_compound_statement] = STATE(219), + [sym_labeled_statement] = STATE(219), + [sym_expression_statement] = STATE(219), + [sym_if_statement] = STATE(219), + [sym_switch_statement] = STATE(219), + [sym_while_statement] = STATE(219), + [sym_do_statement] = STATE(219), + [sym_for_statement] = STATE(219), + [sym_return_statement] = STATE(219), + [sym_break_statement] = STATE(219), + [sym_continue_statement] = STATE(219), + [sym_goto_statement] = STATE(219), + [sym__expression] = STATE(671), + [sym_comma_expression] = STATE(1275), + [sym_conditional_expression] = STATE(671), + [sym_assignment_expression] = STATE(671), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(671), + [sym_binary_expression] = STATE(671), + [sym_update_expression] = STATE(671), + [sym_cast_expression] = STATE(671), + [sym_sizeof_expression] = STATE(671), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(671), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(671), + [sym_concatenated_string] = STATE(671), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(929), + [anon_sym_SEMI] = ACTIONS(99), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(109), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_do] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_return] = ACTIONS(119), + [anon_sym_break] = ACTIONS(121), + [anon_sym_continue] = ACTIONS(123), + [anon_sym_goto] = ACTIONS(125), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(127), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(129), + [sym_false] = ACTIONS(129), + [sym_null] = ACTIONS(129), + [sym_comment] = ACTIONS(3), }, [79] = { - [sym_field_declaration_list] = STATE(172), - [anon_sym_LBRACE] = ACTIONS(127), - [anon_sym_restrict] = ACTIONS(503), - [anon_sym_COMMA] = ACTIONS(505), - [anon_sym_static] = ACTIONS(503), - [anon_sym_volatile] = ACTIONS(503), - [anon_sym_register] = ACTIONS(503), - [anon_sym_extern] = ACTIONS(503), - [anon_sym_STAR] = ACTIONS(505), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(503), - [anon_sym_LPAREN2] = ACTIONS(505), - [anon_sym_COLON] = ACTIONS(505), - [anon_sym_SEMI] = ACTIONS(505), - [anon_sym__Atomic] = ACTIONS(503), - [sym_identifier] = ACTIONS(503), - [anon_sym_auto] = ACTIONS(503), - [anon_sym_RPAREN] = ACTIONS(505), - [anon_sym_inline] = ACTIONS(503), - [anon_sym___attribute__] = ACTIONS(503), - [anon_sym_LBRACK] = ACTIONS(505), + [ts_builtin_sym_end] = ACTIONS(931), + [sym_identifier] = ACTIONS(933), + [aux_sym_preproc_include_token1] = ACTIONS(933), + [aux_sym_preproc_def_token1] = ACTIONS(933), + [aux_sym_preproc_if_token1] = ACTIONS(933), + [aux_sym_preproc_ifdef_token1] = ACTIONS(933), + [aux_sym_preproc_ifdef_token2] = ACTIONS(933), + [sym_preproc_directive] = ACTIONS(933), + [anon_sym_SEMI] = ACTIONS(931), + [anon_sym_typedef] = ACTIONS(933), + [anon_sym_extern] = ACTIONS(933), + [anon_sym___attribute__] = ACTIONS(933), + [anon_sym_LPAREN2] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(931), + [anon_sym_RBRACE] = ACTIONS(931), + [anon_sym_STAR] = ACTIONS(931), + [anon_sym_static] = ACTIONS(933), + [anon_sym_auto] = ACTIONS(933), + [anon_sym_register] = ACTIONS(933), + [anon_sym_inline] = ACTIONS(933), + [anon_sym_const] = ACTIONS(933), + [anon_sym_volatile] = ACTIONS(933), + [anon_sym_restrict] = ACTIONS(933), + [anon_sym__Atomic] = ACTIONS(933), + [anon_sym_signed] = ACTIONS(933), + [anon_sym_unsigned] = ACTIONS(933), + [anon_sym_long] = ACTIONS(933), + [anon_sym_short] = ACTIONS(933), + [sym_primitive_type] = ACTIONS(933), + [anon_sym_enum] = ACTIONS(933), + [anon_sym_struct] = ACTIONS(933), + [anon_sym_union] = ACTIONS(933), + [anon_sym_if] = ACTIONS(933), + [anon_sym_else] = ACTIONS(933), + [anon_sym_switch] = ACTIONS(933), + [anon_sym_case] = ACTIONS(933), + [anon_sym_default] = ACTIONS(933), + [anon_sym_while] = ACTIONS(933), + [anon_sym_do] = ACTIONS(933), + [anon_sym_for] = ACTIONS(933), + [anon_sym_return] = ACTIONS(933), + [anon_sym_break] = ACTIONS(933), + [anon_sym_continue] = ACTIONS(933), + [anon_sym_goto] = ACTIONS(933), + [anon_sym_AMP] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_TILDE] = ACTIONS(931), + [anon_sym_DASH] = ACTIONS(933), + [anon_sym_PLUS] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_sizeof] = ACTIONS(933), + [sym_number_literal] = ACTIONS(931), + [anon_sym_L_SQUOTE] = ACTIONS(931), + [anon_sym_SQUOTE] = ACTIONS(931), + [anon_sym_L_DQUOTE] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(931), + [sym_true] = ACTIONS(933), + [sym_false] = ACTIONS(933), + [sym_null] = ACTIONS(933), + [sym_comment] = ACTIONS(3), }, [80] = { - [anon_sym_restrict] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(509), - [anon_sym_static] = ACTIONS(507), - [anon_sym_volatile] = ACTIONS(507), - [anon_sym_register] = ACTIONS(507), - [anon_sym_extern] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(507), - [anon_sym_LPAREN2] = ACTIONS(509), - [anon_sym_COLON] = ACTIONS(509), - [anon_sym_SEMI] = ACTIONS(509), - [anon_sym__Atomic] = ACTIONS(507), - [sym_identifier] = ACTIONS(507), - [anon_sym_auto] = ACTIONS(507), - [anon_sym_RPAREN] = ACTIONS(509), - [anon_sym_inline] = ACTIONS(507), - [anon_sym___attribute__] = ACTIONS(507), - [anon_sym_LBRACK] = ACTIONS(509), + [sym_compound_statement] = STATE(220), + [sym_labeled_statement] = STATE(220), + [sym_expression_statement] = STATE(220), + [sym_if_statement] = STATE(220), + [sym_switch_statement] = STATE(220), + [sym_while_statement] = STATE(220), + [sym_do_statement] = STATE(220), + [sym_for_statement] = STATE(220), + [sym_return_statement] = STATE(220), + [sym_break_statement] = STATE(220), + [sym_continue_statement] = STATE(220), + [sym_goto_statement] = STATE(220), + [sym__expression] = STATE(671), + [sym_comma_expression] = STATE(1275), + [sym_conditional_expression] = STATE(671), + [sym_assignment_expression] = STATE(671), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(671), + [sym_binary_expression] = STATE(671), + [sym_update_expression] = STATE(671), + [sym_cast_expression] = STATE(671), + [sym_sizeof_expression] = STATE(671), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(671), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(671), + [sym_concatenated_string] = STATE(671), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(929), + [anon_sym_SEMI] = ACTIONS(99), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(109), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_do] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_return] = ACTIONS(119), + [anon_sym_break] = ACTIONS(121), + [anon_sym_continue] = ACTIONS(123), + [anon_sym_goto] = ACTIONS(125), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(127), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(129), + [sym_false] = ACTIONS(129), + [sym_null] = ACTIONS(129), + [sym_comment] = ACTIONS(3), }, [81] = { - [sym_switch_body] = STATE(174), - [anon_sym_LBRACE] = ACTIONS(511), + [sym_compound_statement] = STATE(103), + [sym_labeled_statement] = STATE(103), + [sym_expression_statement] = STATE(103), + [sym_if_statement] = STATE(103), + [sym_switch_statement] = STATE(103), + [sym_while_statement] = STATE(103), + [sym_do_statement] = STATE(103), + [sym_for_statement] = STATE(103), + [sym_return_statement] = STATE(103), + [sym_break_statement] = STATE(103), + [sym_continue_statement] = STATE(103), + [sym_goto_statement] = STATE(103), + [sym__expression] = STATE(721), + [sym_comma_expression] = STATE(1123), + [sym_conditional_expression] = STATE(721), + [sym_assignment_expression] = STATE(721), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(721), + [sym_binary_expression] = STATE(721), + [sym_update_expression] = STATE(721), + [sym_cast_expression] = STATE(721), + [sym_sizeof_expression] = STATE(721), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(721), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(721), + [sym_concatenated_string] = STATE(721), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(935), + [anon_sym_SEMI] = ACTIONS(19), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(47), + [anon_sym_switch] = ACTIONS(49), + [anon_sym_while] = ACTIONS(51), + [anon_sym_do] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_return] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(61), + [anon_sym_goto] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(73), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_null] = ACTIONS(79), [sym_comment] = ACTIONS(3), }, [82] = { - [sym_enumerator] = STATE(178), - [sym_identifier] = ACTIONS(513), - [anon_sym_RBRACE] = ACTIONS(515), - [anon_sym_COMMA] = ACTIONS(517), + [sym_compound_statement] = STATE(104), + [sym_labeled_statement] = STATE(104), + [sym_expression_statement] = STATE(104), + [sym_if_statement] = STATE(104), + [sym_switch_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__expression] = STATE(721), + [sym_comma_expression] = STATE(1123), + [sym_conditional_expression] = STATE(721), + [sym_assignment_expression] = STATE(721), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(721), + [sym_binary_expression] = STATE(721), + [sym_update_expression] = STATE(721), + [sym_cast_expression] = STATE(721), + [sym_sizeof_expression] = STATE(721), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(721), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(721), + [sym_concatenated_string] = STATE(721), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(935), + [anon_sym_SEMI] = ACTIONS(19), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(47), + [anon_sym_switch] = ACTIONS(49), + [anon_sym_while] = ACTIONS(51), + [anon_sym_do] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_return] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(61), + [anon_sym_goto] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(73), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_null] = ACTIONS(79), [sym_comment] = ACTIONS(3), }, [83] = { - [sym_enumerator_list] = STATE(179), - [anon_sym_LBRACE] = ACTIONS(239), - [anon_sym_restrict] = ACTIONS(519), - [anon_sym_COMMA] = ACTIONS(521), - [anon_sym_static] = ACTIONS(519), - [anon_sym_volatile] = ACTIONS(519), - [anon_sym_register] = ACTIONS(519), - [anon_sym_extern] = ACTIONS(519), - [anon_sym_STAR] = ACTIONS(521), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(519), - [anon_sym_LPAREN2] = ACTIONS(521), - [anon_sym_COLON] = ACTIONS(521), - [anon_sym_SEMI] = ACTIONS(521), - [anon_sym__Atomic] = ACTIONS(519), - [sym_identifier] = ACTIONS(519), - [anon_sym_auto] = ACTIONS(519), - [anon_sym_RPAREN] = ACTIONS(521), - [anon_sym_inline] = ACTIONS(519), - [anon_sym___attribute__] = ACTIONS(519), - [anon_sym_LBRACK] = ACTIONS(521), + [sym_compound_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_switch_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__expression] = STATE(688), + [sym_comma_expression] = STATE(1124), + [sym_conditional_expression] = STATE(688), + [sym_assignment_expression] = STATE(688), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(688), + [sym_binary_expression] = STATE(688), + [sym_update_expression] = STATE(688), + [sym_cast_expression] = STATE(688), + [sym_sizeof_expression] = STATE(688), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(688), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(688), + [sym_concatenated_string] = STATE(688), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(937), + [anon_sym_SEMI] = ACTIONS(410), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(416), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(420), + [anon_sym_switch] = ACTIONS(422), + [anon_sym_while] = ACTIONS(424), + [anon_sym_do] = ACTIONS(426), + [anon_sym_for] = ACTIONS(428), + [anon_sym_return] = ACTIONS(430), + [anon_sym_break] = ACTIONS(432), + [anon_sym_continue] = ACTIONS(434), + [anon_sym_goto] = ACTIONS(436), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(438), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(440), + [sym_false] = ACTIONS(440), + [sym_null] = ACTIONS(440), + [sym_comment] = ACTIONS(3), }, [84] = { - [anon_sym_restrict] = ACTIONS(523), - [anon_sym_COMMA] = ACTIONS(525), - [anon_sym_static] = ACTIONS(523), - [anon_sym_volatile] = ACTIONS(523), - [anon_sym_register] = ACTIONS(523), - [anon_sym_extern] = ACTIONS(523), - [anon_sym_STAR] = ACTIONS(525), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(523), - [anon_sym_LPAREN2] = ACTIONS(525), - [anon_sym_COLON] = ACTIONS(525), - [anon_sym_SEMI] = ACTIONS(525), - [anon_sym__Atomic] = ACTIONS(523), - [sym_identifier] = ACTIONS(523), - [anon_sym_auto] = ACTIONS(523), - [anon_sym_RPAREN] = ACTIONS(525), - [anon_sym_inline] = ACTIONS(523), - [anon_sym___attribute__] = ACTIONS(523), - [anon_sym_LBRACK] = ACTIONS(525), + [sym_compound_statement] = STATE(122), + [sym_labeled_statement] = STATE(122), + [sym_expression_statement] = STATE(122), + [sym_if_statement] = STATE(122), + [sym_switch_statement] = STATE(122), + [sym_while_statement] = STATE(122), + [sym_do_statement] = STATE(122), + [sym_for_statement] = STATE(122), + [sym_return_statement] = STATE(122), + [sym_break_statement] = STATE(122), + [sym_continue_statement] = STATE(122), + [sym_goto_statement] = STATE(122), + [sym__expression] = STATE(721), + [sym_comma_expression] = STATE(1123), + [sym_conditional_expression] = STATE(721), + [sym_assignment_expression] = STATE(721), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(721), + [sym_binary_expression] = STATE(721), + [sym_update_expression] = STATE(721), + [sym_cast_expression] = STATE(721), + [sym_sizeof_expression] = STATE(721), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(721), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(721), + [sym_concatenated_string] = STATE(721), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(935), + [anon_sym_SEMI] = ACTIONS(19), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(47), + [anon_sym_switch] = ACTIONS(49), + [anon_sym_while] = ACTIONS(51), + [anon_sym_do] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_return] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(61), + [anon_sym_goto] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(73), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_null] = ACTIONS(79), + [sym_comment] = ACTIONS(3), }, [85] = { - [anon_sym_SQUOTE] = ACTIONS(527), + [ts_builtin_sym_end] = ACTIONS(939), + [sym_identifier] = ACTIONS(941), + [aux_sym_preproc_include_token1] = ACTIONS(941), + [aux_sym_preproc_def_token1] = ACTIONS(941), + [aux_sym_preproc_if_token1] = ACTIONS(941), + [aux_sym_preproc_ifdef_token1] = ACTIONS(941), + [aux_sym_preproc_ifdef_token2] = ACTIONS(941), + [sym_preproc_directive] = ACTIONS(941), + [anon_sym_SEMI] = ACTIONS(939), + [anon_sym_typedef] = ACTIONS(941), + [anon_sym_extern] = ACTIONS(941), + [anon_sym___attribute__] = ACTIONS(941), + [anon_sym_LPAREN2] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(939), + [anon_sym_RBRACE] = ACTIONS(939), + [anon_sym_STAR] = ACTIONS(939), + [anon_sym_static] = ACTIONS(941), + [anon_sym_auto] = ACTIONS(941), + [anon_sym_register] = ACTIONS(941), + [anon_sym_inline] = ACTIONS(941), + [anon_sym_const] = ACTIONS(941), + [anon_sym_volatile] = ACTIONS(941), + [anon_sym_restrict] = ACTIONS(941), + [anon_sym__Atomic] = ACTIONS(941), + [anon_sym_signed] = ACTIONS(941), + [anon_sym_unsigned] = ACTIONS(941), + [anon_sym_long] = ACTIONS(941), + [anon_sym_short] = ACTIONS(941), + [sym_primitive_type] = ACTIONS(941), + [anon_sym_enum] = ACTIONS(941), + [anon_sym_struct] = ACTIONS(941), + [anon_sym_union] = ACTIONS(941), + [anon_sym_if] = ACTIONS(941), + [anon_sym_else] = ACTIONS(941), + [anon_sym_switch] = ACTIONS(941), + [anon_sym_case] = ACTIONS(941), + [anon_sym_default] = ACTIONS(941), + [anon_sym_while] = ACTIONS(941), + [anon_sym_do] = ACTIONS(941), + [anon_sym_for] = ACTIONS(941), + [anon_sym_return] = ACTIONS(941), + [anon_sym_break] = ACTIONS(941), + [anon_sym_continue] = ACTIONS(941), + [anon_sym_goto] = ACTIONS(941), + [anon_sym_AMP] = ACTIONS(939), + [anon_sym_BANG] = ACTIONS(939), + [anon_sym_TILDE] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(941), + [anon_sym_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(939), + [anon_sym_sizeof] = ACTIONS(941), + [sym_number_literal] = ACTIONS(939), + [anon_sym_L_SQUOTE] = ACTIONS(939), + [anon_sym_SQUOTE] = ACTIONS(939), + [anon_sym_L_DQUOTE] = ACTIONS(939), + [anon_sym_DQUOTE] = ACTIONS(939), + [sym_true] = ACTIONS(941), + [sym_false] = ACTIONS(941), + [sym_null] = ACTIONS(941), [sym_comment] = ACTIONS(3), }, [86] = { - [anon_sym_case] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [anon_sym_restrict] = ACTIONS(529), - [sym_null] = ACTIONS(529), - [anon_sym_goto] = ACTIONS(529), - [anon_sym_const] = ACTIONS(529), - [anon_sym_typedef] = ACTIONS(529), - [anon_sym_DASH_DASH] = ACTIONS(531), - [anon_sym_default] = ACTIONS(529), - [anon_sym__Atomic] = ACTIONS(529), - [sym_identifier] = ACTIONS(529), - [aux_sym_preproc_ifdef_token1] = ACTIONS(529), - [sym_number_literal] = ACTIONS(531), - [anon_sym_volatile] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [anon_sym_extern] = ACTIONS(529), - [anon_sym_PLUS_PLUS] = ACTIONS(531), - [anon_sym_struct] = ACTIONS(529), - [anon_sym_signed] = ACTIONS(529), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(529), - [anon_sym_while] = ACTIONS(529), - [aux_sym_preproc_ifdef_token2] = ACTIONS(529), - [anon_sym_L_SQUOTE] = ACTIONS(531), - [anon_sym___attribute__] = ACTIONS(529), - [anon_sym_sizeof] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_union] = ACTIONS(529), - [anon_sym_unsigned] = ACTIONS(529), - [anon_sym_short] = ACTIONS(529), - [anon_sym_do] = ACTIONS(529), - [sym_preproc_directive] = ACTIONS(529), - [anon_sym_AMP] = ACTIONS(531), - [aux_sym_preproc_if_token1] = ACTIONS(529), - [anon_sym_TILDE] = ACTIONS(531), - [anon_sym_L_DQUOTE] = ACTIONS(531), - [anon_sym_LPAREN2] = ACTIONS(531), - [anon_sym_RBRACE] = ACTIONS(531), - [anon_sym_else] = ACTIONS(529), - [sym_primitive_type] = ACTIONS(529), - [anon_sym_for] = ACTIONS(529), - [anon_sym_break] = ACTIONS(529), - [anon_sym_BANG] = ACTIONS(531), - [aux_sym_preproc_include_token1] = ACTIONS(529), - [anon_sym_DASH] = ACTIONS(529), - [anon_sym_static] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [anon_sym_register] = ACTIONS(529), - [anon_sym_STAR] = ACTIONS(531), - [anon_sym_if] = ACTIONS(529), - [anon_sym_switch] = ACTIONS(529), - [anon_sym_enum] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [ts_builtin_sym_end] = ACTIONS(531), - [anon_sym_return] = ACTIONS(529), - [anon_sym_continue] = ACTIONS(529), - [anon_sym_SEMI] = ACTIONS(531), - [aux_sym_preproc_def_token1] = ACTIONS(529), - [anon_sym_PLUS] = ACTIONS(529), - [anon_sym_auto] = ACTIONS(529), - [anon_sym_inline] = ACTIONS(529), + [ts_builtin_sym_end] = ACTIONS(943), + [sym_identifier] = ACTIONS(945), + [aux_sym_preproc_include_token1] = ACTIONS(945), + [aux_sym_preproc_def_token1] = ACTIONS(945), + [aux_sym_preproc_if_token1] = ACTIONS(945), + [aux_sym_preproc_ifdef_token1] = ACTIONS(945), + [aux_sym_preproc_ifdef_token2] = ACTIONS(945), + [sym_preproc_directive] = ACTIONS(945), + [anon_sym_SEMI] = ACTIONS(943), + [anon_sym_typedef] = ACTIONS(945), + [anon_sym_extern] = ACTIONS(945), + [anon_sym___attribute__] = ACTIONS(945), + [anon_sym_LPAREN2] = ACTIONS(943), + [anon_sym_LBRACE] = ACTIONS(943), + [anon_sym_RBRACE] = ACTIONS(943), + [anon_sym_STAR] = ACTIONS(943), + [anon_sym_static] = ACTIONS(945), + [anon_sym_auto] = ACTIONS(945), + [anon_sym_register] = ACTIONS(945), + [anon_sym_inline] = ACTIONS(945), + [anon_sym_const] = ACTIONS(945), + [anon_sym_volatile] = ACTIONS(945), + [anon_sym_restrict] = ACTIONS(945), + [anon_sym__Atomic] = ACTIONS(945), + [anon_sym_signed] = ACTIONS(945), + [anon_sym_unsigned] = ACTIONS(945), + [anon_sym_long] = ACTIONS(945), + [anon_sym_short] = ACTIONS(945), + [sym_primitive_type] = ACTIONS(945), + [anon_sym_enum] = ACTIONS(945), + [anon_sym_struct] = ACTIONS(945), + [anon_sym_union] = ACTIONS(945), + [anon_sym_if] = ACTIONS(945), + [anon_sym_else] = ACTIONS(945), + [anon_sym_switch] = ACTIONS(945), + [anon_sym_case] = ACTIONS(945), + [anon_sym_default] = ACTIONS(945), + [anon_sym_while] = ACTIONS(945), + [anon_sym_do] = ACTIONS(945), + [anon_sym_for] = ACTIONS(945), + [anon_sym_return] = ACTIONS(945), + [anon_sym_break] = ACTIONS(945), + [anon_sym_continue] = ACTIONS(945), + [anon_sym_goto] = ACTIONS(945), + [anon_sym_AMP] = ACTIONS(943), + [anon_sym_BANG] = ACTIONS(943), + [anon_sym_TILDE] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(945), + [anon_sym_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(943), + [anon_sym_sizeof] = ACTIONS(945), + [sym_number_literal] = ACTIONS(943), + [anon_sym_L_SQUOTE] = ACTIONS(943), + [anon_sym_SQUOTE] = ACTIONS(943), + [anon_sym_L_DQUOTE] = ACTIONS(943), + [anon_sym_DQUOTE] = ACTIONS(943), + [sym_true] = ACTIONS(945), + [sym_false] = ACTIONS(945), + [sym_null] = ACTIONS(945), + [sym_comment] = ACTIONS(3), }, [87] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_SEMI] = ACTIONS(533), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [sym_compound_statement] = STATE(126), + [sym_labeled_statement] = STATE(126), + [sym_expression_statement] = STATE(126), + [sym_if_statement] = STATE(126), + [sym_switch_statement] = STATE(126), + [sym_while_statement] = STATE(126), + [sym_do_statement] = STATE(126), + [sym_for_statement] = STATE(126), + [sym_return_statement] = STATE(126), + [sym_break_statement] = STATE(126), + [sym_continue_statement] = STATE(126), + [sym_goto_statement] = STATE(126), + [sym__expression] = STATE(721), + [sym_comma_expression] = STATE(1123), + [sym_conditional_expression] = STATE(721), + [sym_assignment_expression] = STATE(721), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(721), + [sym_binary_expression] = STATE(721), + [sym_update_expression] = STATE(721), + [sym_cast_expression] = STATE(721), + [sym_sizeof_expression] = STATE(721), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(721), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(721), + [sym_concatenated_string] = STATE(721), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(935), + [anon_sym_SEMI] = ACTIONS(19), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(47), + [anon_sym_switch] = ACTIONS(49), + [anon_sym_while] = ACTIONS(51), + [anon_sym_do] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_return] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(61), + [anon_sym_goto] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(73), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_null] = ACTIONS(79), + [sym_comment] = ACTIONS(3), }, [88] = { - [sym_if_statement] = STATE(182), - [sym_do_statement] = STATE(182), - [sym_for_statement] = STATE(182), - [sym__expression] = STATE(34), - [sym_comma_expression] = STATE(35), - [sym_binary_expression] = STATE(34), - [sym_update_expression] = STATE(34), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(182), - [sym_return_statement] = STATE(182), - [sym_break_statement] = STATE(182), - [sym_conditional_expression] = STATE(34), - [sym_assignment_expression] = STATE(34), - [sym_cast_expression] = STATE(34), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(34), - [sym_char_literal] = STATE(34), - [sym_labeled_statement] = STATE(182), - [sym_while_statement] = STATE(182), - [sym_continue_statement] = STATE(182), - [sym_goto_statement] = STATE(182), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(34), - [sym_sizeof_expression] = STATE(34), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(34), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(182), - [sym_expression_statement] = STATE(182), - [anon_sym_LBRACE] = ACTIONS(35), - [sym_true] = ACTIONS(5), - [sym_null] = ACTIONS(5), - [anon_sym_do] = ACTIONS(39), - [anon_sym_goto] = ACTIONS(9), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(477), - [anon_sym_for] = ACTIONS(55), - [anon_sym_break] = ACTIONS(57), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(65), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(67), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(5), - [anon_sym_return] = ACTIONS(73), - [anon_sym_while] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_SEMI] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [ts_builtin_sym_end] = ACTIONS(947), + [sym_identifier] = ACTIONS(949), + [aux_sym_preproc_include_token1] = ACTIONS(949), + [aux_sym_preproc_def_token1] = ACTIONS(949), + [aux_sym_preproc_if_token1] = ACTIONS(949), + [aux_sym_preproc_ifdef_token1] = ACTIONS(949), + [aux_sym_preproc_ifdef_token2] = ACTIONS(949), + [sym_preproc_directive] = ACTIONS(949), + [anon_sym_SEMI] = ACTIONS(947), + [anon_sym_typedef] = ACTIONS(949), + [anon_sym_extern] = ACTIONS(949), + [anon_sym___attribute__] = ACTIONS(949), + [anon_sym_LPAREN2] = ACTIONS(947), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(947), + [anon_sym_STAR] = ACTIONS(947), + [anon_sym_static] = ACTIONS(949), + [anon_sym_auto] = ACTIONS(949), + [anon_sym_register] = ACTIONS(949), + [anon_sym_inline] = ACTIONS(949), + [anon_sym_const] = ACTIONS(949), + [anon_sym_volatile] = ACTIONS(949), + [anon_sym_restrict] = ACTIONS(949), + [anon_sym__Atomic] = ACTIONS(949), + [anon_sym_signed] = ACTIONS(949), + [anon_sym_unsigned] = ACTIONS(949), + [anon_sym_long] = ACTIONS(949), + [anon_sym_short] = ACTIONS(949), + [sym_primitive_type] = ACTIONS(949), + [anon_sym_enum] = ACTIONS(949), + [anon_sym_struct] = ACTIONS(949), + [anon_sym_union] = ACTIONS(949), + [anon_sym_if] = ACTIONS(949), + [anon_sym_else] = ACTIONS(949), + [anon_sym_switch] = ACTIONS(949), + [anon_sym_case] = ACTIONS(949), + [anon_sym_default] = ACTIONS(949), + [anon_sym_while] = ACTIONS(949), + [anon_sym_do] = ACTIONS(949), + [anon_sym_for] = ACTIONS(949), + [anon_sym_return] = ACTIONS(949), + [anon_sym_break] = ACTIONS(949), + [anon_sym_continue] = ACTIONS(949), + [anon_sym_goto] = ACTIONS(949), + [anon_sym_AMP] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_TILDE] = ACTIONS(947), + [anon_sym_DASH] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(949), + [anon_sym_DASH_DASH] = ACTIONS(947), + [anon_sym_PLUS_PLUS] = ACTIONS(947), + [anon_sym_sizeof] = ACTIONS(949), + [sym_number_literal] = ACTIONS(947), + [anon_sym_L_SQUOTE] = ACTIONS(947), + [anon_sym_SQUOTE] = ACTIONS(947), + [anon_sym_L_DQUOTE] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(947), + [sym_true] = ACTIONS(949), + [sym_false] = ACTIONS(949), + [sym_null] = ACTIONS(949), + [sym_comment] = ACTIONS(3), }, [89] = { - [anon_sym_case] = ACTIONS(535), - [sym_true] = ACTIONS(535), - [anon_sym_restrict] = ACTIONS(535), - [sym_null] = ACTIONS(535), - [anon_sym_goto] = ACTIONS(535), - [anon_sym_const] = ACTIONS(535), - [anon_sym_typedef] = ACTIONS(535), - [anon_sym_DASH_DASH] = ACTIONS(537), - [anon_sym_default] = ACTIONS(535), - [anon_sym__Atomic] = ACTIONS(535), - [sym_identifier] = ACTIONS(535), - [aux_sym_preproc_ifdef_token1] = ACTIONS(535), - [sym_number_literal] = ACTIONS(537), - [anon_sym_volatile] = ACTIONS(535), - [anon_sym_SQUOTE] = ACTIONS(537), - [anon_sym_extern] = ACTIONS(535), - [anon_sym_PLUS_PLUS] = ACTIONS(537), - [anon_sym_struct] = ACTIONS(535), - [anon_sym_signed] = ACTIONS(535), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(535), - [anon_sym_while] = ACTIONS(535), - [aux_sym_preproc_ifdef_token2] = ACTIONS(535), - [anon_sym_L_SQUOTE] = ACTIONS(537), - [anon_sym___attribute__] = ACTIONS(535), - [anon_sym_sizeof] = ACTIONS(535), - [anon_sym_LBRACE] = ACTIONS(537), - [anon_sym_union] = ACTIONS(535), - [anon_sym_unsigned] = ACTIONS(535), - [anon_sym_short] = ACTIONS(535), - [anon_sym_do] = ACTIONS(535), - [sym_preproc_directive] = ACTIONS(535), - [anon_sym_AMP] = ACTIONS(537), - [aux_sym_preproc_if_token1] = ACTIONS(535), - [anon_sym_TILDE] = ACTIONS(537), - [anon_sym_L_DQUOTE] = ACTIONS(537), - [anon_sym_LPAREN2] = ACTIONS(537), - [anon_sym_RBRACE] = ACTIONS(537), - [anon_sym_else] = ACTIONS(535), - [sym_primitive_type] = ACTIONS(535), - [anon_sym_for] = ACTIONS(535), - [anon_sym_break] = ACTIONS(535), - [anon_sym_BANG] = ACTIONS(537), - [aux_sym_preproc_include_token1] = ACTIONS(535), - [anon_sym_DASH] = ACTIONS(535), - [anon_sym_static] = ACTIONS(535), - [anon_sym_DQUOTE] = ACTIONS(537), - [anon_sym_register] = ACTIONS(535), - [anon_sym_STAR] = ACTIONS(537), - [anon_sym_if] = ACTIONS(535), - [anon_sym_switch] = ACTIONS(535), - [anon_sym_enum] = ACTIONS(535), - [sym_false] = ACTIONS(535), - [ts_builtin_sym_end] = ACTIONS(537), - [anon_sym_return] = ACTIONS(535), - [anon_sym_continue] = ACTIONS(535), - [anon_sym_SEMI] = ACTIONS(537), - [aux_sym_preproc_def_token1] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(535), - [anon_sym_auto] = ACTIONS(535), - [anon_sym_inline] = ACTIONS(535), + [ts_builtin_sym_end] = ACTIONS(951), + [sym_identifier] = ACTIONS(953), + [aux_sym_preproc_include_token1] = ACTIONS(953), + [aux_sym_preproc_def_token1] = ACTIONS(953), + [aux_sym_preproc_if_token1] = ACTIONS(953), + [aux_sym_preproc_ifdef_token1] = ACTIONS(953), + [aux_sym_preproc_ifdef_token2] = ACTIONS(953), + [sym_preproc_directive] = ACTIONS(953), + [anon_sym_SEMI] = ACTIONS(951), + [anon_sym_typedef] = ACTIONS(953), + [anon_sym_extern] = ACTIONS(953), + [anon_sym___attribute__] = ACTIONS(953), + [anon_sym_LPAREN2] = ACTIONS(951), + [anon_sym_LBRACE] = ACTIONS(951), + [anon_sym_RBRACE] = ACTIONS(951), + [anon_sym_STAR] = ACTIONS(951), + [anon_sym_static] = ACTIONS(953), + [anon_sym_auto] = ACTIONS(953), + [anon_sym_register] = ACTIONS(953), + [anon_sym_inline] = ACTIONS(953), + [anon_sym_const] = ACTIONS(953), + [anon_sym_volatile] = ACTIONS(953), + [anon_sym_restrict] = ACTIONS(953), + [anon_sym__Atomic] = ACTIONS(953), + [anon_sym_signed] = ACTIONS(953), + [anon_sym_unsigned] = ACTIONS(953), + [anon_sym_long] = ACTIONS(953), + [anon_sym_short] = ACTIONS(953), + [sym_primitive_type] = ACTIONS(953), + [anon_sym_enum] = ACTIONS(953), + [anon_sym_struct] = ACTIONS(953), + [anon_sym_union] = ACTIONS(953), + [anon_sym_if] = ACTIONS(953), + [anon_sym_else] = ACTIONS(953), + [anon_sym_switch] = ACTIONS(953), + [anon_sym_case] = ACTIONS(953), + [anon_sym_default] = ACTIONS(953), + [anon_sym_while] = ACTIONS(953), + [anon_sym_do] = ACTIONS(953), + [anon_sym_for] = ACTIONS(953), + [anon_sym_return] = ACTIONS(953), + [anon_sym_break] = ACTIONS(953), + [anon_sym_continue] = ACTIONS(953), + [anon_sym_goto] = ACTIONS(953), + [anon_sym_AMP] = ACTIONS(951), + [anon_sym_BANG] = ACTIONS(951), + [anon_sym_TILDE] = ACTIONS(951), + [anon_sym_DASH] = ACTIONS(953), + [anon_sym_PLUS] = ACTIONS(953), + [anon_sym_DASH_DASH] = ACTIONS(951), + [anon_sym_PLUS_PLUS] = ACTIONS(951), + [anon_sym_sizeof] = ACTIONS(953), + [sym_number_literal] = ACTIONS(951), + [anon_sym_L_SQUOTE] = ACTIONS(951), + [anon_sym_SQUOTE] = ACTIONS(951), + [anon_sym_L_DQUOTE] = ACTIONS(951), + [anon_sym_DQUOTE] = ACTIONS(951), + [sym_true] = ACTIONS(953), + [sym_false] = ACTIONS(953), + [sym_null] = ACTIONS(953), + [sym_comment] = ACTIONS(3), }, [90] = { - [sym_preproc_params] = STATE(186), - [sym_preproc_arg] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_LF] = ACTIONS(543), - [sym_comment] = ACTIONS(147), + [ts_builtin_sym_end] = ACTIONS(955), + [sym_identifier] = ACTIONS(957), + [aux_sym_preproc_include_token1] = ACTIONS(957), + [aux_sym_preproc_def_token1] = ACTIONS(957), + [aux_sym_preproc_if_token1] = ACTIONS(957), + [aux_sym_preproc_ifdef_token1] = ACTIONS(957), + [aux_sym_preproc_ifdef_token2] = ACTIONS(957), + [sym_preproc_directive] = ACTIONS(957), + [anon_sym_SEMI] = ACTIONS(955), + [anon_sym_typedef] = ACTIONS(957), + [anon_sym_extern] = ACTIONS(957), + [anon_sym___attribute__] = ACTIONS(957), + [anon_sym_LPAREN2] = ACTIONS(955), + [anon_sym_LBRACE] = ACTIONS(955), + [anon_sym_RBRACE] = ACTIONS(955), + [anon_sym_STAR] = ACTIONS(955), + [anon_sym_static] = ACTIONS(957), + [anon_sym_auto] = ACTIONS(957), + [anon_sym_register] = ACTIONS(957), + [anon_sym_inline] = ACTIONS(957), + [anon_sym_const] = ACTIONS(957), + [anon_sym_volatile] = ACTIONS(957), + [anon_sym_restrict] = ACTIONS(957), + [anon_sym__Atomic] = ACTIONS(957), + [anon_sym_signed] = ACTIONS(957), + [anon_sym_unsigned] = ACTIONS(957), + [anon_sym_long] = ACTIONS(957), + [anon_sym_short] = ACTIONS(957), + [sym_primitive_type] = ACTIONS(957), + [anon_sym_enum] = ACTIONS(957), + [anon_sym_struct] = ACTIONS(957), + [anon_sym_union] = ACTIONS(957), + [anon_sym_if] = ACTIONS(957), + [anon_sym_else] = ACTIONS(957), + [anon_sym_switch] = ACTIONS(957), + [anon_sym_case] = ACTIONS(957), + [anon_sym_default] = ACTIONS(957), + [anon_sym_while] = ACTIONS(957), + [anon_sym_do] = ACTIONS(957), + [anon_sym_for] = ACTIONS(957), + [anon_sym_return] = ACTIONS(957), + [anon_sym_break] = ACTIONS(957), + [anon_sym_continue] = ACTIONS(957), + [anon_sym_goto] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(955), + [anon_sym_BANG] = ACTIONS(955), + [anon_sym_TILDE] = ACTIONS(955), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_DASH_DASH] = ACTIONS(955), + [anon_sym_PLUS_PLUS] = ACTIONS(955), + [anon_sym_sizeof] = ACTIONS(957), + [sym_number_literal] = ACTIONS(955), + [anon_sym_L_SQUOTE] = ACTIONS(955), + [anon_sym_SQUOTE] = ACTIONS(955), + [anon_sym_L_DQUOTE] = ACTIONS(955), + [anon_sym_DQUOTE] = ACTIONS(955), + [sym_true] = ACTIONS(957), + [sym_false] = ACTIONS(957), + [sym_null] = ACTIONS(957), + [sym_comment] = ACTIONS(3), }, [91] = { - [sym_argument_list] = STATE(187), + [sym_compound_statement] = STATE(171), + [sym_labeled_statement] = STATE(171), + [sym_expression_statement] = STATE(171), + [sym_if_statement] = STATE(171), + [sym_switch_statement] = STATE(171), + [sym_while_statement] = STATE(171), + [sym_do_statement] = STATE(171), + [sym_for_statement] = STATE(171), + [sym_return_statement] = STATE(171), + [sym_break_statement] = STATE(171), + [sym_continue_statement] = STATE(171), + [sym_goto_statement] = STATE(171), + [sym__expression] = STATE(721), + [sym_comma_expression] = STATE(1123), + [sym_conditional_expression] = STATE(721), + [sym_assignment_expression] = STATE(721), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(721), + [sym_binary_expression] = STATE(721), + [sym_update_expression] = STATE(721), + [sym_cast_expression] = STATE(721), + [sym_sizeof_expression] = STATE(721), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(721), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(721), + [sym_concatenated_string] = STATE(721), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(935), + [anon_sym_SEMI] = ACTIONS(19), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(47), + [anon_sym_switch] = ACTIONS(49), + [anon_sym_while] = ACTIONS(51), + [anon_sym_do] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_return] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(61), + [anon_sym_goto] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(73), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_null] = ACTIONS(79), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(283), }, [92] = { - [sym__expression] = STATE(59), - [sym_comma_expression] = STATE(61), - [sym_binary_expression] = STATE(59), - [sym_update_expression] = STATE(59), - [sym_call_expression] = STATE(36), - [sym_type_qualifier] = STATE(60), - [sym__type_specifier] = STATE(62), - [aux_sym_sized_type_specifier_repeat1] = STATE(509), - [sym_union_specifier] = STATE(62), - [sym_conditional_expression] = STATE(59), - [sym_assignment_expression] = STATE(59), - [sym_cast_expression] = STATE(59), - [sym_type_descriptor] = STATE(188), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(59), - [sym_char_literal] = STATE(59), - [aux_sym_type_definition_repeat1] = STATE(60), - [sym_sized_type_specifier] = STATE(62), - [sym_enum_specifier] = STATE(62), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(59), - [sym_sizeof_expression] = STATE(59), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(59), - [sym_string_literal] = STATE(41), - [sym_macro_type_specifier] = STATE(62), - [sym_struct_specifier] = STATE(62), - [anon_sym_union] = ACTIONS(37), - [sym_true] = ACTIONS(175), - [anon_sym_restrict] = ACTIONS(7), - [sym_null] = ACTIONS(175), - [anon_sym_unsigned] = ACTIONS(177), - [anon_sym_short] = ACTIONS(177), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_const] = ACTIONS(7), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_DASH_DASH] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(7), - [sym_primitive_type] = ACTIONS(179), - [sym_identifier] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(183), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_struct] = ACTIONS(25), - [anon_sym_signed] = ACTIONS(177), - [anon_sym_enum] = ACTIONS(69), - [sym_false] = ACTIONS(175), - [anon_sym_long] = ACTIONS(177), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_compound_statement] = STATE(174), + [sym_labeled_statement] = STATE(174), + [sym_expression_statement] = STATE(174), + [sym_if_statement] = STATE(174), + [sym_switch_statement] = STATE(174), + [sym_while_statement] = STATE(174), + [sym_do_statement] = STATE(174), + [sym_for_statement] = STATE(174), + [sym_return_statement] = STATE(174), + [sym_break_statement] = STATE(174), + [sym_continue_statement] = STATE(174), + [sym_goto_statement] = STATE(174), + [sym__expression] = STATE(721), + [sym_comma_expression] = STATE(1123), + [sym_conditional_expression] = STATE(721), + [sym_assignment_expression] = STATE(721), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(721), + [sym_binary_expression] = STATE(721), + [sym_update_expression] = STATE(721), + [sym_cast_expression] = STATE(721), + [sym_sizeof_expression] = STATE(721), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(721), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(721), + [sym_concatenated_string] = STATE(721), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(935), + [anon_sym_SEMI] = ACTIONS(19), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(47), + [anon_sym_switch] = ACTIONS(49), + [anon_sym_while] = ACTIONS(51), + [anon_sym_do] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_return] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(61), + [anon_sym_goto] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(73), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_null] = ACTIONS(79), + [sym_comment] = ACTIONS(3), }, [93] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(545), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(547), - [anon_sym_AMP] = ACTIONS(545), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(547), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_COLON] = ACTIONS(547), - [anon_sym_RBRACE] = ACTIONS(547), - [anon_sym_QMARK] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_BANG_EQ] = ACTIONS(547), - [anon_sym_COMMA] = ACTIONS(547), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(547), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_SEMI] = ACTIONS(547), - [anon_sym_CARET] = ACTIONS(547), - [anon_sym_GT] = ACTIONS(545), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_RPAREN] = ACTIONS(547), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_RBRACK] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(545), - [anon_sym_LBRACK] = ACTIONS(305), + [sym_compound_statement] = STATE(143), + [sym_labeled_statement] = STATE(143), + [sym_expression_statement] = STATE(143), + [sym_if_statement] = STATE(143), + [sym_switch_statement] = STATE(143), + [sym_while_statement] = STATE(143), + [sym_do_statement] = STATE(143), + [sym_for_statement] = STATE(143), + [sym_return_statement] = STATE(143), + [sym_break_statement] = STATE(143), + [sym_continue_statement] = STATE(143), + [sym_goto_statement] = STATE(143), + [sym__expression] = STATE(721), + [sym_comma_expression] = STATE(1123), + [sym_conditional_expression] = STATE(721), + [sym_assignment_expression] = STATE(721), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(721), + [sym_binary_expression] = STATE(721), + [sym_update_expression] = STATE(721), + [sym_cast_expression] = STATE(721), + [sym_sizeof_expression] = STATE(721), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(721), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(721), + [sym_concatenated_string] = STATE(721), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(935), + [anon_sym_SEMI] = ACTIONS(19), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(47), + [anon_sym_switch] = ACTIONS(49), + [anon_sym_while] = ACTIONS(51), + [anon_sym_do] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_return] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(61), + [anon_sym_goto] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(73), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_null] = ACTIONS(79), + [sym_comment] = ACTIONS(3), }, [94] = { - [sym_char_literal] = STATE(189), - [sym__expression] = STATE(189), - [sym_binary_expression] = STATE(189), - [sym_update_expression] = STATE(189), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(189), - [sym_sizeof_expression] = STATE(189), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(189), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(189), - [sym_assignment_expression] = STATE(189), - [sym_cast_expression] = STATE(189), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(189), - [sym_true] = ACTIONS(549), - [sym_null] = ACTIONS(549), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(551), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(549), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [ts_builtin_sym_end] = ACTIONS(959), + [sym_identifier] = ACTIONS(961), + [aux_sym_preproc_include_token1] = ACTIONS(961), + [aux_sym_preproc_def_token1] = ACTIONS(961), + [aux_sym_preproc_if_token1] = ACTIONS(961), + [aux_sym_preproc_ifdef_token1] = ACTIONS(961), + [aux_sym_preproc_ifdef_token2] = ACTIONS(961), + [sym_preproc_directive] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(959), + [anon_sym_typedef] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(959), + [anon_sym_LBRACE] = ACTIONS(959), + [anon_sym_RBRACE] = ACTIONS(959), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_static] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [sym_primitive_type] = ACTIONS(961), + [anon_sym_enum] = ACTIONS(961), + [anon_sym_struct] = ACTIONS(961), + [anon_sym_union] = ACTIONS(961), + [anon_sym_if] = ACTIONS(961), + [anon_sym_else] = ACTIONS(961), + [anon_sym_switch] = ACTIONS(961), + [anon_sym_case] = ACTIONS(961), + [anon_sym_default] = ACTIONS(961), + [anon_sym_while] = ACTIONS(961), + [anon_sym_do] = ACTIONS(961), + [anon_sym_for] = ACTIONS(961), + [anon_sym_return] = ACTIONS(961), + [anon_sym_break] = ACTIONS(961), + [anon_sym_continue] = ACTIONS(961), + [anon_sym_goto] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(959), + [anon_sym_BANG] = ACTIONS(959), + [anon_sym_TILDE] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(959), + [anon_sym_sizeof] = ACTIONS(961), + [sym_number_literal] = ACTIONS(959), + [anon_sym_L_SQUOTE] = ACTIONS(959), + [anon_sym_SQUOTE] = ACTIONS(959), + [anon_sym_L_DQUOTE] = ACTIONS(959), + [anon_sym_DQUOTE] = ACTIONS(959), + [sym_true] = ACTIONS(961), + [sym_false] = ACTIONS(961), + [sym_null] = ACTIONS(961), + [sym_comment] = ACTIONS(3), }, [95] = { - [sym_char_literal] = STATE(190), - [sym__expression] = STATE(190), - [sym_binary_expression] = STATE(190), - [sym_update_expression] = STATE(190), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(190), - [sym_sizeof_expression] = STATE(190), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(190), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(190), - [sym_assignment_expression] = STATE(190), - [sym_cast_expression] = STATE(190), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(190), - [sym_true] = ACTIONS(553), - [sym_null] = ACTIONS(553), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(555), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_compound_statement] = STATE(79), + [sym_labeled_statement] = STATE(79), + [sym_expression_statement] = STATE(79), + [sym_if_statement] = STATE(79), + [sym_switch_statement] = STATE(79), + [sym_while_statement] = STATE(79), + [sym_do_statement] = STATE(79), + [sym_for_statement] = STATE(79), + [sym_return_statement] = STATE(79), + [sym_break_statement] = STATE(79), + [sym_continue_statement] = STATE(79), + [sym_goto_statement] = STATE(79), + [sym__expression] = STATE(721), + [sym_comma_expression] = STATE(1123), + [sym_conditional_expression] = STATE(721), + [sym_assignment_expression] = STATE(721), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(721), + [sym_binary_expression] = STATE(721), + [sym_update_expression] = STATE(721), + [sym_cast_expression] = STATE(721), + [sym_sizeof_expression] = STATE(721), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(721), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(721), + [sym_concatenated_string] = STATE(721), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(935), + [anon_sym_SEMI] = ACTIONS(19), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(47), + [anon_sym_switch] = ACTIONS(49), + [anon_sym_while] = ACTIONS(51), + [anon_sym_do] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_return] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(61), + [anon_sym_goto] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(73), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_null] = ACTIONS(79), + [sym_comment] = ACTIONS(3), }, [96] = { - [sym_char_literal] = STATE(191), - [sym__expression] = STATE(191), - [sym_binary_expression] = STATE(191), - [sym_update_expression] = STATE(191), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(191), - [sym_sizeof_expression] = STATE(191), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(191), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(191), - [sym_assignment_expression] = STATE(191), - [sym_cast_expression] = STATE(191), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(191), - [sym_true] = ACTIONS(557), - [sym_null] = ACTIONS(557), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(557), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [ts_builtin_sym_end] = ACTIONS(963), + [sym_identifier] = ACTIONS(965), + [aux_sym_preproc_include_token1] = ACTIONS(965), + [aux_sym_preproc_def_token1] = ACTIONS(965), + [aux_sym_preproc_if_token1] = ACTIONS(965), + [aux_sym_preproc_ifdef_token1] = ACTIONS(965), + [aux_sym_preproc_ifdef_token2] = ACTIONS(965), + [sym_preproc_directive] = ACTIONS(965), + [anon_sym_SEMI] = ACTIONS(963), + [anon_sym_typedef] = ACTIONS(965), + [anon_sym_extern] = ACTIONS(965), + [anon_sym___attribute__] = ACTIONS(965), + [anon_sym_LPAREN2] = ACTIONS(963), + [anon_sym_LBRACE] = ACTIONS(963), + [anon_sym_RBRACE] = ACTIONS(963), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_static] = ACTIONS(965), + [anon_sym_auto] = ACTIONS(965), + [anon_sym_register] = ACTIONS(965), + [anon_sym_inline] = ACTIONS(965), + [anon_sym_const] = ACTIONS(965), + [anon_sym_volatile] = ACTIONS(965), + [anon_sym_restrict] = ACTIONS(965), + [anon_sym__Atomic] = ACTIONS(965), + [anon_sym_signed] = ACTIONS(965), + [anon_sym_unsigned] = ACTIONS(965), + [anon_sym_long] = ACTIONS(965), + [anon_sym_short] = ACTIONS(965), + [sym_primitive_type] = ACTIONS(965), + [anon_sym_enum] = ACTIONS(965), + [anon_sym_struct] = ACTIONS(965), + [anon_sym_union] = ACTIONS(965), + [anon_sym_if] = ACTIONS(965), + [anon_sym_else] = ACTIONS(965), + [anon_sym_switch] = ACTIONS(965), + [anon_sym_case] = ACTIONS(965), + [anon_sym_default] = ACTIONS(965), + [anon_sym_while] = ACTIONS(965), + [anon_sym_do] = ACTIONS(965), + [anon_sym_for] = ACTIONS(965), + [anon_sym_return] = ACTIONS(965), + [anon_sym_break] = ACTIONS(965), + [anon_sym_continue] = ACTIONS(965), + [anon_sym_goto] = ACTIONS(965), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(963), + [anon_sym_TILDE] = ACTIONS(963), + [anon_sym_DASH] = ACTIONS(965), + [anon_sym_PLUS] = ACTIONS(965), + [anon_sym_DASH_DASH] = ACTIONS(963), + [anon_sym_PLUS_PLUS] = ACTIONS(963), + [anon_sym_sizeof] = ACTIONS(965), + [sym_number_literal] = ACTIONS(963), + [anon_sym_L_SQUOTE] = ACTIONS(963), + [anon_sym_SQUOTE] = ACTIONS(963), + [anon_sym_L_DQUOTE] = ACTIONS(963), + [anon_sym_DQUOTE] = ACTIONS(963), + [sym_true] = ACTIONS(965), + [sym_false] = ACTIONS(965), + [sym_null] = ACTIONS(965), + [sym_comment] = ACTIONS(3), }, [97] = { - [sym_char_literal] = STATE(192), - [sym__expression] = STATE(192), - [sym_binary_expression] = STATE(192), - [sym_update_expression] = STATE(192), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(192), - [sym_sizeof_expression] = STATE(192), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(192), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(192), - [sym_assignment_expression] = STATE(192), - [sym_cast_expression] = STATE(192), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(192), - [sym_true] = ACTIONS(561), - [sym_null] = ACTIONS(561), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(563), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(561), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [ts_builtin_sym_end] = ACTIONS(967), + [sym_identifier] = ACTIONS(969), + [aux_sym_preproc_include_token1] = ACTIONS(969), + [aux_sym_preproc_def_token1] = ACTIONS(969), + [aux_sym_preproc_if_token1] = ACTIONS(969), + [aux_sym_preproc_ifdef_token1] = ACTIONS(969), + [aux_sym_preproc_ifdef_token2] = ACTIONS(969), + [sym_preproc_directive] = ACTIONS(969), + [anon_sym_SEMI] = ACTIONS(967), + [anon_sym_typedef] = ACTIONS(969), + [anon_sym_extern] = ACTIONS(969), + [anon_sym___attribute__] = ACTIONS(969), + [anon_sym_LPAREN2] = ACTIONS(967), + [anon_sym_LBRACE] = ACTIONS(967), + [anon_sym_RBRACE] = ACTIONS(967), + [anon_sym_STAR] = ACTIONS(967), + [anon_sym_static] = ACTIONS(969), + [anon_sym_auto] = ACTIONS(969), + [anon_sym_register] = ACTIONS(969), + [anon_sym_inline] = ACTIONS(969), + [anon_sym_const] = ACTIONS(969), + [anon_sym_volatile] = ACTIONS(969), + [anon_sym_restrict] = ACTIONS(969), + [anon_sym__Atomic] = ACTIONS(969), + [anon_sym_signed] = ACTIONS(969), + [anon_sym_unsigned] = ACTIONS(969), + [anon_sym_long] = ACTIONS(969), + [anon_sym_short] = ACTIONS(969), + [sym_primitive_type] = ACTIONS(969), + [anon_sym_enum] = ACTIONS(969), + [anon_sym_struct] = ACTIONS(969), + [anon_sym_union] = ACTIONS(969), + [anon_sym_if] = ACTIONS(969), + [anon_sym_else] = ACTIONS(969), + [anon_sym_switch] = ACTIONS(969), + [anon_sym_case] = ACTIONS(969), + [anon_sym_default] = ACTIONS(969), + [anon_sym_while] = ACTIONS(969), + [anon_sym_do] = ACTIONS(969), + [anon_sym_for] = ACTIONS(969), + [anon_sym_return] = ACTIONS(969), + [anon_sym_break] = ACTIONS(969), + [anon_sym_continue] = ACTIONS(969), + [anon_sym_goto] = ACTIONS(969), + [anon_sym_AMP] = ACTIONS(967), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH_DASH] = ACTIONS(967), + [anon_sym_PLUS_PLUS] = ACTIONS(967), + [anon_sym_sizeof] = ACTIONS(969), + [sym_number_literal] = ACTIONS(967), + [anon_sym_L_SQUOTE] = ACTIONS(967), + [anon_sym_SQUOTE] = ACTIONS(967), + [anon_sym_L_DQUOTE] = ACTIONS(967), + [anon_sym_DQUOTE] = ACTIONS(967), + [sym_true] = ACTIONS(969), + [sym_false] = ACTIONS(969), + [sym_null] = ACTIONS(969), + [sym_comment] = ACTIONS(3), }, [98] = { - [sym_char_literal] = STATE(193), - [sym__expression] = STATE(193), - [sym_comma_expression] = STATE(194), - [sym_binary_expression] = STATE(193), - [sym_update_expression] = STATE(193), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(193), - [sym_sizeof_expression] = STATE(193), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(193), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(193), - [sym_assignment_expression] = STATE(193), - [sym_cast_expression] = STATE(193), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(193), - [sym_true] = ACTIONS(565), - [sym_null] = ACTIONS(565), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(565), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_compound_statement] = STATE(85), + [sym_labeled_statement] = STATE(85), + [sym_expression_statement] = STATE(85), + [sym_if_statement] = STATE(85), + [sym_switch_statement] = STATE(85), + [sym_while_statement] = STATE(85), + [sym_do_statement] = STATE(85), + [sym_for_statement] = STATE(85), + [sym_return_statement] = STATE(85), + [sym_break_statement] = STATE(85), + [sym_continue_statement] = STATE(85), + [sym_goto_statement] = STATE(85), + [sym__expression] = STATE(721), + [sym_comma_expression] = STATE(1123), + [sym_conditional_expression] = STATE(721), + [sym_assignment_expression] = STATE(721), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(721), + [sym_binary_expression] = STATE(721), + [sym_update_expression] = STATE(721), + [sym_cast_expression] = STATE(721), + [sym_sizeof_expression] = STATE(721), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(721), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(721), + [sym_concatenated_string] = STATE(721), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(935), + [anon_sym_SEMI] = ACTIONS(19), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(47), + [anon_sym_switch] = ACTIONS(49), + [anon_sym_while] = ACTIONS(51), + [anon_sym_do] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_return] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(61), + [anon_sym_goto] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(73), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_null] = ACTIONS(79), + [sym_comment] = ACTIONS(3), }, [99] = { - [sym_char_literal] = STATE(195), - [sym__expression] = STATE(195), - [sym_binary_expression] = STATE(195), - [sym_update_expression] = STATE(195), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(195), - [sym_sizeof_expression] = STATE(195), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(195), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(195), - [sym_assignment_expression] = STATE(195), - [sym_cast_expression] = STATE(195), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(195), - [sym_true] = ACTIONS(569), - [sym_null] = ACTIONS(569), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(571), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(569), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_compound_statement] = STATE(223), + [sym_labeled_statement] = STATE(223), + [sym_expression_statement] = STATE(223), + [sym_if_statement] = STATE(223), + [sym_switch_statement] = STATE(223), + [sym_while_statement] = STATE(223), + [sym_do_statement] = STATE(223), + [sym_for_statement] = STATE(223), + [sym_return_statement] = STATE(223), + [sym_break_statement] = STATE(223), + [sym_continue_statement] = STATE(223), + [sym_goto_statement] = STATE(223), + [sym__expression] = STATE(671), + [sym_comma_expression] = STATE(1275), + [sym_conditional_expression] = STATE(671), + [sym_assignment_expression] = STATE(671), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(671), + [sym_binary_expression] = STATE(671), + [sym_update_expression] = STATE(671), + [sym_cast_expression] = STATE(671), + [sym_sizeof_expression] = STATE(671), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(671), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(671), + [sym_concatenated_string] = STATE(671), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(929), + [anon_sym_SEMI] = ACTIONS(99), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(109), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_do] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_return] = ACTIONS(119), + [anon_sym_break] = ACTIONS(121), + [anon_sym_continue] = ACTIONS(123), + [anon_sym_goto] = ACTIONS(125), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(127), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(129), + [sym_false] = ACTIONS(129), + [sym_null] = ACTIONS(129), + [sym_comment] = ACTIONS(3), }, [100] = { - [sym_char_literal] = STATE(196), - [sym__expression] = STATE(196), - [sym_binary_expression] = STATE(196), - [sym_update_expression] = STATE(196), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(196), - [sym_sizeof_expression] = STATE(196), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(196), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(196), - [sym_assignment_expression] = STATE(196), - [sym_cast_expression] = STATE(196), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(196), - [sym_true] = ACTIONS(573), - [sym_null] = ACTIONS(573), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_compound_statement] = STATE(86), + [sym_labeled_statement] = STATE(86), + [sym_expression_statement] = STATE(86), + [sym_if_statement] = STATE(86), + [sym_switch_statement] = STATE(86), + [sym_while_statement] = STATE(86), + [sym_do_statement] = STATE(86), + [sym_for_statement] = STATE(86), + [sym_return_statement] = STATE(86), + [sym_break_statement] = STATE(86), + [sym_continue_statement] = STATE(86), + [sym_goto_statement] = STATE(86), + [sym__expression] = STATE(721), + [sym_comma_expression] = STATE(1123), + [sym_conditional_expression] = STATE(721), + [sym_assignment_expression] = STATE(721), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(721), + [sym_binary_expression] = STATE(721), + [sym_update_expression] = STATE(721), + [sym_cast_expression] = STATE(721), + [sym_sizeof_expression] = STATE(721), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(721), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(721), + [sym_concatenated_string] = STATE(721), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(935), + [anon_sym_SEMI] = ACTIONS(19), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(47), + [anon_sym_switch] = ACTIONS(49), + [anon_sym_while] = ACTIONS(51), + [anon_sym_do] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_return] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(61), + [anon_sym_goto] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(73), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_null] = ACTIONS(79), + [sym_comment] = ACTIONS(3), }, [101] = { - [sym_char_literal] = STATE(197), - [sym__expression] = STATE(197), - [sym_binary_expression] = STATE(197), - [sym_update_expression] = STATE(197), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(197), - [sym_sizeof_expression] = STATE(197), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(197), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(197), - [sym_assignment_expression] = STATE(197), - [sym_cast_expression] = STATE(197), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(197), - [sym_true] = ACTIONS(577), - [sym_null] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(579), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(577), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_compound_statement] = STATE(189), + [sym_labeled_statement] = STATE(189), + [sym_expression_statement] = STATE(189), + [sym_if_statement] = STATE(189), + [sym_switch_statement] = STATE(189), + [sym_while_statement] = STATE(189), + [sym_do_statement] = STATE(189), + [sym_for_statement] = STATE(189), + [sym_return_statement] = STATE(189), + [sym_break_statement] = STATE(189), + [sym_continue_statement] = STATE(189), + [sym_goto_statement] = STATE(189), + [sym__expression] = STATE(721), + [sym_comma_expression] = STATE(1123), + [sym_conditional_expression] = STATE(721), + [sym_assignment_expression] = STATE(721), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(721), + [sym_binary_expression] = STATE(721), + [sym_update_expression] = STATE(721), + [sym_cast_expression] = STATE(721), + [sym_sizeof_expression] = STATE(721), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(721), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(721), + [sym_concatenated_string] = STATE(721), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(935), + [anon_sym_SEMI] = ACTIONS(19), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(47), + [anon_sym_switch] = ACTIONS(49), + [anon_sym_while] = ACTIONS(51), + [anon_sym_do] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_return] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(61), + [anon_sym_goto] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(73), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_null] = ACTIONS(79), + [sym_comment] = ACTIONS(3), }, [102] = { - [sym_char_literal] = STATE(198), - [sym__expression] = STATE(198), - [sym_binary_expression] = STATE(198), - [sym_update_expression] = STATE(198), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(198), - [sym_sizeof_expression] = STATE(198), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(198), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(198), - [sym_assignment_expression] = STATE(198), - [sym_cast_expression] = STATE(198), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(198), - [sym_true] = ACTIONS(581), - [sym_null] = ACTIONS(581), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [ts_builtin_sym_end] = ACTIONS(971), + [sym_identifier] = ACTIONS(973), + [aux_sym_preproc_include_token1] = ACTIONS(973), + [aux_sym_preproc_def_token1] = ACTIONS(973), + [aux_sym_preproc_if_token1] = ACTIONS(973), + [aux_sym_preproc_ifdef_token1] = ACTIONS(973), + [aux_sym_preproc_ifdef_token2] = ACTIONS(973), + [sym_preproc_directive] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(971), + [anon_sym_typedef] = ACTIONS(973), + [anon_sym_extern] = ACTIONS(973), + [anon_sym___attribute__] = ACTIONS(973), + [anon_sym_LPAREN2] = ACTIONS(971), + [anon_sym_LBRACE] = ACTIONS(971), + [anon_sym_RBRACE] = ACTIONS(971), + [anon_sym_STAR] = ACTIONS(971), + [anon_sym_static] = ACTIONS(973), + [anon_sym_auto] = ACTIONS(973), + [anon_sym_register] = ACTIONS(973), + [anon_sym_inline] = ACTIONS(973), + [anon_sym_const] = ACTIONS(973), + [anon_sym_volatile] = ACTIONS(973), + [anon_sym_restrict] = ACTIONS(973), + [anon_sym__Atomic] = ACTIONS(973), + [anon_sym_signed] = ACTIONS(973), + [anon_sym_unsigned] = ACTIONS(973), + [anon_sym_long] = ACTIONS(973), + [anon_sym_short] = ACTIONS(973), + [sym_primitive_type] = ACTIONS(973), + [anon_sym_enum] = ACTIONS(973), + [anon_sym_struct] = ACTIONS(973), + [anon_sym_union] = ACTIONS(973), + [anon_sym_if] = ACTIONS(973), + [anon_sym_else] = ACTIONS(973), + [anon_sym_switch] = ACTIONS(973), + [anon_sym_case] = ACTIONS(973), + [anon_sym_default] = ACTIONS(973), + [anon_sym_while] = ACTIONS(973), + [anon_sym_do] = ACTIONS(973), + [anon_sym_for] = ACTIONS(973), + [anon_sym_return] = ACTIONS(973), + [anon_sym_break] = ACTIONS(973), + [anon_sym_continue] = ACTIONS(973), + [anon_sym_goto] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(971), + [anon_sym_BANG] = ACTIONS(971), + [anon_sym_TILDE] = ACTIONS(971), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_PLUS] = ACTIONS(973), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_sizeof] = ACTIONS(973), + [sym_number_literal] = ACTIONS(971), + [anon_sym_L_SQUOTE] = ACTIONS(971), + [anon_sym_SQUOTE] = ACTIONS(971), + [anon_sym_L_DQUOTE] = ACTIONS(971), + [anon_sym_DQUOTE] = ACTIONS(971), + [sym_true] = ACTIONS(973), + [sym_false] = ACTIONS(973), + [sym_null] = ACTIONS(973), + [sym_comment] = ACTIONS(3), }, [103] = { - [sym_char_literal] = STATE(199), - [sym__expression] = STATE(199), - [sym_binary_expression] = STATE(199), - [sym_update_expression] = STATE(199), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(199), - [sym_sizeof_expression] = STATE(199), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(199), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(199), - [sym_assignment_expression] = STATE(199), - [sym_cast_expression] = STATE(199), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(199), - [sym_true] = ACTIONS(585), - [sym_null] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [ts_builtin_sym_end] = ACTIONS(975), + [sym_identifier] = ACTIONS(977), + [aux_sym_preproc_include_token1] = ACTIONS(977), + [aux_sym_preproc_def_token1] = ACTIONS(977), + [aux_sym_preproc_if_token1] = ACTIONS(977), + [aux_sym_preproc_ifdef_token1] = ACTIONS(977), + [aux_sym_preproc_ifdef_token2] = ACTIONS(977), + [sym_preproc_directive] = ACTIONS(977), + [anon_sym_SEMI] = ACTIONS(975), + [anon_sym_typedef] = ACTIONS(977), + [anon_sym_extern] = ACTIONS(977), + [anon_sym___attribute__] = ACTIONS(977), + [anon_sym_LPAREN2] = ACTIONS(975), + [anon_sym_LBRACE] = ACTIONS(975), + [anon_sym_RBRACE] = ACTIONS(975), + [anon_sym_STAR] = ACTIONS(975), + [anon_sym_static] = ACTIONS(977), + [anon_sym_auto] = ACTIONS(977), + [anon_sym_register] = ACTIONS(977), + [anon_sym_inline] = ACTIONS(977), + [anon_sym_const] = ACTIONS(977), + [anon_sym_volatile] = ACTIONS(977), + [anon_sym_restrict] = ACTIONS(977), + [anon_sym__Atomic] = ACTIONS(977), + [anon_sym_signed] = ACTIONS(977), + [anon_sym_unsigned] = ACTIONS(977), + [anon_sym_long] = ACTIONS(977), + [anon_sym_short] = ACTIONS(977), + [sym_primitive_type] = ACTIONS(977), + [anon_sym_enum] = ACTIONS(977), + [anon_sym_struct] = ACTIONS(977), + [anon_sym_union] = ACTIONS(977), + [anon_sym_if] = ACTIONS(977), + [anon_sym_else] = ACTIONS(977), + [anon_sym_switch] = ACTIONS(977), + [anon_sym_case] = ACTIONS(977), + [anon_sym_default] = ACTIONS(977), + [anon_sym_while] = ACTIONS(977), + [anon_sym_do] = ACTIONS(977), + [anon_sym_for] = ACTIONS(977), + [anon_sym_return] = ACTIONS(977), + [anon_sym_break] = ACTIONS(977), + [anon_sym_continue] = ACTIONS(977), + [anon_sym_goto] = ACTIONS(977), + [anon_sym_AMP] = ACTIONS(975), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(977), + [anon_sym_PLUS] = ACTIONS(977), + [anon_sym_DASH_DASH] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(975), + [anon_sym_sizeof] = ACTIONS(977), + [sym_number_literal] = ACTIONS(975), + [anon_sym_L_SQUOTE] = ACTIONS(975), + [anon_sym_SQUOTE] = ACTIONS(975), + [anon_sym_L_DQUOTE] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(975), + [sym_true] = ACTIONS(977), + [sym_false] = ACTIONS(977), + [sym_null] = ACTIONS(977), + [sym_comment] = ACTIONS(3), }, [104] = { - [anon_sym_GT_GT] = ACTIONS(589), - [anon_sym_PERCENT_EQ] = ACTIONS(591), - [anon_sym_DASH_EQ] = ACTIONS(591), - [anon_sym_PIPE] = ACTIONS(589), - [anon_sym_EQ_EQ] = ACTIONS(591), - [anon_sym_SLASH] = ACTIONS(589), - [anon_sym_DASH_GT] = ACTIONS(591), - [anon_sym_LT_LT] = ACTIONS(589), - [anon_sym_DASH_DASH] = ACTIONS(591), - [anon_sym_PLUS_EQ] = ACTIONS(591), - [anon_sym_LT_LT_EQ] = ACTIONS(591), - [anon_sym_QMARK] = ACTIONS(591), - [anon_sym_BANG_EQ] = ACTIONS(591), - [anon_sym_CARET_EQ] = ACTIONS(591), - [anon_sym_COMMA] = ACTIONS(591), - [anon_sym_PLUS_PLUS] = ACTIONS(591), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT_EQ] = ACTIONS(591), - [anon_sym_GT] = ACTIONS(589), - [anon_sym_PIPE_EQ] = ACTIONS(591), - [anon_sym_RPAREN] = ACTIONS(591), - [anon_sym_RBRACK] = ACTIONS(591), - [anon_sym_AMP_EQ] = ACTIONS(591), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_EQ] = ACTIONS(589), - [anon_sym_LPAREN2] = ACTIONS(591), - [anon_sym_GT_EQ] = ACTIONS(591), - [anon_sym_RBRACE] = ACTIONS(591), - [anon_sym_COLON] = ACTIONS(591), - [anon_sym_STAR_EQ] = ACTIONS(591), - [anon_sym_PIPE_PIPE] = ACTIONS(591), - [anon_sym_DASH] = ACTIONS(589), - [anon_sym_LT_EQ] = ACTIONS(591), - [anon_sym_STAR] = ACTIONS(589), - [anon_sym_SLASH_EQ] = ACTIONS(591), - [anon_sym_AMP_AMP] = ACTIONS(591), - [anon_sym_SEMI] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(589), - [anon_sym_DOT] = ACTIONS(591), - [anon_sym_LT] = ACTIONS(589), - [anon_sym_LBRACK] = ACTIONS(591), + [ts_builtin_sym_end] = ACTIONS(979), + [sym_identifier] = ACTIONS(981), + [aux_sym_preproc_include_token1] = ACTIONS(981), + [aux_sym_preproc_def_token1] = ACTIONS(981), + [aux_sym_preproc_if_token1] = ACTIONS(981), + [aux_sym_preproc_ifdef_token1] = ACTIONS(981), + [aux_sym_preproc_ifdef_token2] = ACTIONS(981), + [sym_preproc_directive] = ACTIONS(981), + [anon_sym_SEMI] = ACTIONS(979), + [anon_sym_typedef] = ACTIONS(981), + [anon_sym_extern] = ACTIONS(981), + [anon_sym___attribute__] = ACTIONS(981), + [anon_sym_LPAREN2] = ACTIONS(979), + [anon_sym_LBRACE] = ACTIONS(979), + [anon_sym_RBRACE] = ACTIONS(979), + [anon_sym_STAR] = ACTIONS(979), + [anon_sym_static] = ACTIONS(981), + [anon_sym_auto] = ACTIONS(981), + [anon_sym_register] = ACTIONS(981), + [anon_sym_inline] = ACTIONS(981), + [anon_sym_const] = ACTIONS(981), + [anon_sym_volatile] = ACTIONS(981), + [anon_sym_restrict] = ACTIONS(981), + [anon_sym__Atomic] = ACTIONS(981), + [anon_sym_signed] = ACTIONS(981), + [anon_sym_unsigned] = ACTIONS(981), + [anon_sym_long] = ACTIONS(981), + [anon_sym_short] = ACTIONS(981), + [sym_primitive_type] = ACTIONS(981), + [anon_sym_enum] = ACTIONS(981), + [anon_sym_struct] = ACTIONS(981), + [anon_sym_union] = ACTIONS(981), + [anon_sym_if] = ACTIONS(981), + [anon_sym_else] = ACTIONS(981), + [anon_sym_switch] = ACTIONS(981), + [anon_sym_case] = ACTIONS(981), + [anon_sym_default] = ACTIONS(981), + [anon_sym_while] = ACTIONS(981), + [anon_sym_do] = ACTIONS(981), + [anon_sym_for] = ACTIONS(981), + [anon_sym_return] = ACTIONS(981), + [anon_sym_break] = ACTIONS(981), + [anon_sym_continue] = ACTIONS(981), + [anon_sym_goto] = ACTIONS(981), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_BANG] = ACTIONS(979), + [anon_sym_TILDE] = ACTIONS(979), + [anon_sym_DASH] = ACTIONS(981), + [anon_sym_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(979), + [anon_sym_PLUS_PLUS] = ACTIONS(979), + [anon_sym_sizeof] = ACTIONS(981), + [sym_number_literal] = ACTIONS(979), + [anon_sym_L_SQUOTE] = ACTIONS(979), + [anon_sym_SQUOTE] = ACTIONS(979), + [anon_sym_L_DQUOTE] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(979), + [sym_true] = ACTIONS(981), + [sym_false] = ACTIONS(981), + [sym_null] = ACTIONS(981), + [sym_comment] = ACTIONS(3), }, [105] = { - [sym_identifier] = ACTIONS(593), + [sym_compound_statement] = STATE(88), + [sym_labeled_statement] = STATE(88), + [sym_expression_statement] = STATE(88), + [sym_if_statement] = STATE(88), + [sym_switch_statement] = STATE(88), + [sym_while_statement] = STATE(88), + [sym_do_statement] = STATE(88), + [sym_for_statement] = STATE(88), + [sym_return_statement] = STATE(88), + [sym_break_statement] = STATE(88), + [sym_continue_statement] = STATE(88), + [sym_goto_statement] = STATE(88), + [sym__expression] = STATE(721), + [sym_comma_expression] = STATE(1123), + [sym_conditional_expression] = STATE(721), + [sym_assignment_expression] = STATE(721), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(721), + [sym_binary_expression] = STATE(721), + [sym_update_expression] = STATE(721), + [sym_cast_expression] = STATE(721), + [sym_sizeof_expression] = STATE(721), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(721), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(721), + [sym_concatenated_string] = STATE(721), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(935), + [anon_sym_SEMI] = ACTIONS(19), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(47), + [anon_sym_switch] = ACTIONS(49), + [anon_sym_while] = ACTIONS(51), + [anon_sym_do] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_return] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(61), + [anon_sym_goto] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(73), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_null] = ACTIONS(79), [sym_comment] = ACTIONS(3), }, [106] = { - [sym_char_literal] = STATE(202), - [sym__expression] = STATE(202), - [sym_binary_expression] = STATE(202), - [sym_update_expression] = STATE(202), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(202), - [sym_sizeof_expression] = STATE(202), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(202), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(202), - [sym_assignment_expression] = STATE(202), - [sym_cast_expression] = STATE(202), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(202), - [sym_true] = ACTIONS(595), - [sym_null] = ACTIONS(595), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(597), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_compound_statement] = STATE(90), + [sym_labeled_statement] = STATE(90), + [sym_expression_statement] = STATE(90), + [sym_if_statement] = STATE(90), + [sym_switch_statement] = STATE(90), + [sym_while_statement] = STATE(90), + [sym_do_statement] = STATE(90), + [sym_for_statement] = STATE(90), + [sym_return_statement] = STATE(90), + [sym_break_statement] = STATE(90), + [sym_continue_statement] = STATE(90), + [sym_goto_statement] = STATE(90), + [sym__expression] = STATE(721), + [sym_comma_expression] = STATE(1123), + [sym_conditional_expression] = STATE(721), + [sym_assignment_expression] = STATE(721), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(721), + [sym_binary_expression] = STATE(721), + [sym_update_expression] = STATE(721), + [sym_cast_expression] = STATE(721), + [sym_sizeof_expression] = STATE(721), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(721), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(721), + [sym_concatenated_string] = STATE(721), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(935), + [anon_sym_SEMI] = ACTIONS(19), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(47), + [anon_sym_switch] = ACTIONS(49), + [anon_sym_while] = ACTIONS(51), + [anon_sym_do] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_return] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(61), + [anon_sym_goto] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(73), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_null] = ACTIONS(79), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(595), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_RPAREN] = ACTIONS(599), - [anon_sym_sizeof] = ACTIONS(33), }, [107] = { - [sym_char_literal] = STATE(203), - [sym__expression] = STATE(203), - [sym_binary_expression] = STATE(203), - [sym_update_expression] = STATE(203), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(203), - [sym_sizeof_expression] = STATE(203), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(203), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(203), - [sym_assignment_expression] = STATE(203), - [sym_cast_expression] = STATE(203), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(203), - [sym_true] = ACTIONS(601), - [sym_null] = ACTIONS(601), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(603), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(601), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [ts_builtin_sym_end] = ACTIONS(983), + [sym_identifier] = ACTIONS(985), + [aux_sym_preproc_include_token1] = ACTIONS(985), + [aux_sym_preproc_def_token1] = ACTIONS(985), + [aux_sym_preproc_if_token1] = ACTIONS(985), + [aux_sym_preproc_ifdef_token1] = ACTIONS(985), + [aux_sym_preproc_ifdef_token2] = ACTIONS(985), + [sym_preproc_directive] = ACTIONS(985), + [anon_sym_SEMI] = ACTIONS(983), + [anon_sym_typedef] = ACTIONS(985), + [anon_sym_extern] = ACTIONS(985), + [anon_sym___attribute__] = ACTIONS(985), + [anon_sym_LPAREN2] = ACTIONS(983), + [anon_sym_LBRACE] = ACTIONS(983), + [anon_sym_RBRACE] = ACTIONS(983), + [anon_sym_STAR] = ACTIONS(983), + [anon_sym_static] = ACTIONS(985), + [anon_sym_auto] = ACTIONS(985), + [anon_sym_register] = ACTIONS(985), + [anon_sym_inline] = ACTIONS(985), + [anon_sym_const] = ACTIONS(985), + [anon_sym_volatile] = ACTIONS(985), + [anon_sym_restrict] = ACTIONS(985), + [anon_sym__Atomic] = ACTIONS(985), + [anon_sym_signed] = ACTIONS(985), + [anon_sym_unsigned] = ACTIONS(985), + [anon_sym_long] = ACTIONS(985), + [anon_sym_short] = ACTIONS(985), + [sym_primitive_type] = ACTIONS(985), + [anon_sym_enum] = ACTIONS(985), + [anon_sym_struct] = ACTIONS(985), + [anon_sym_union] = ACTIONS(985), + [anon_sym_if] = ACTIONS(985), + [anon_sym_else] = ACTIONS(985), + [anon_sym_switch] = ACTIONS(985), + [anon_sym_case] = ACTIONS(985), + [anon_sym_default] = ACTIONS(985), + [anon_sym_while] = ACTIONS(985), + [anon_sym_do] = ACTIONS(985), + [anon_sym_for] = ACTIONS(985), + [anon_sym_return] = ACTIONS(985), + [anon_sym_break] = ACTIONS(985), + [anon_sym_continue] = ACTIONS(985), + [anon_sym_goto] = ACTIONS(985), + [anon_sym_AMP] = ACTIONS(983), + [anon_sym_BANG] = ACTIONS(983), + [anon_sym_TILDE] = ACTIONS(983), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(985), + [anon_sym_DASH_DASH] = ACTIONS(983), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_sizeof] = ACTIONS(985), + [sym_number_literal] = ACTIONS(983), + [anon_sym_L_SQUOTE] = ACTIONS(983), + [anon_sym_SQUOTE] = ACTIONS(983), + [anon_sym_L_DQUOTE] = ACTIONS(983), + [anon_sym_DQUOTE] = ACTIONS(983), + [sym_true] = ACTIONS(985), + [sym_false] = ACTIONS(985), + [sym_null] = ACTIONS(985), + [sym_comment] = ACTIONS(3), }, [108] = { - [anon_sym_case] = ACTIONS(605), - [sym_true] = ACTIONS(605), - [anon_sym_restrict] = ACTIONS(605), - [sym_null] = ACTIONS(605), - [anon_sym_goto] = ACTIONS(605), - [anon_sym_const] = ACTIONS(605), - [anon_sym_typedef] = ACTIONS(605), - [anon_sym_DASH_DASH] = ACTIONS(607), - [anon_sym_default] = ACTIONS(605), - [anon_sym__Atomic] = ACTIONS(605), - [sym_identifier] = ACTIONS(605), - [aux_sym_preproc_ifdef_token1] = ACTIONS(605), - [sym_number_literal] = ACTIONS(607), - [anon_sym_volatile] = ACTIONS(605), - [anon_sym_SQUOTE] = ACTIONS(607), - [anon_sym_extern] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(607), - [anon_sym_struct] = ACTIONS(605), - [anon_sym_signed] = ACTIONS(605), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(605), - [anon_sym_while] = ACTIONS(605), - [aux_sym_preproc_ifdef_token2] = ACTIONS(605), - [anon_sym_L_SQUOTE] = ACTIONS(607), - [anon_sym___attribute__] = ACTIONS(605), - [anon_sym_sizeof] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(607), - [anon_sym_union] = ACTIONS(605), - [anon_sym_unsigned] = ACTIONS(605), - [anon_sym_short] = ACTIONS(605), - [anon_sym_do] = ACTIONS(605), - [sym_preproc_directive] = ACTIONS(605), - [anon_sym_AMP] = ACTIONS(607), - [aux_sym_preproc_if_token1] = ACTIONS(605), - [anon_sym_TILDE] = ACTIONS(607), - [anon_sym_L_DQUOTE] = ACTIONS(607), - [anon_sym_LPAREN2] = ACTIONS(607), - [anon_sym_RBRACE] = ACTIONS(607), - [anon_sym_else] = ACTIONS(605), - [sym_primitive_type] = ACTIONS(605), - [anon_sym_for] = ACTIONS(605), - [anon_sym_break] = ACTIONS(605), - [anon_sym_BANG] = ACTIONS(607), - [aux_sym_preproc_include_token1] = ACTIONS(605), - [anon_sym_DASH] = ACTIONS(605), - [anon_sym_static] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(607), - [anon_sym_register] = ACTIONS(605), - [anon_sym_STAR] = ACTIONS(607), - [anon_sym_if] = ACTIONS(605), - [anon_sym_switch] = ACTIONS(605), - [anon_sym_enum] = ACTIONS(605), - [sym_false] = ACTIONS(605), - [ts_builtin_sym_end] = ACTIONS(607), - [anon_sym_return] = ACTIONS(605), - [anon_sym_continue] = ACTIONS(605), - [anon_sym_SEMI] = ACTIONS(607), - [aux_sym_preproc_def_token1] = ACTIONS(605), - [anon_sym_PLUS] = ACTIONS(605), - [anon_sym_auto] = ACTIONS(605), - [anon_sym_inline] = ACTIONS(605), + [sym_compound_statement] = STATE(618), + [sym_labeled_statement] = STATE(618), + [sym_expression_statement] = STATE(618), + [sym_if_statement] = STATE(618), + [sym_switch_statement] = STATE(618), + [sym_while_statement] = STATE(618), + [sym_do_statement] = STATE(618), + [sym_for_statement] = STATE(618), + [sym_return_statement] = STATE(618), + [sym_break_statement] = STATE(618), + [sym_continue_statement] = STATE(618), + [sym_goto_statement] = STATE(618), + [sym__expression] = STATE(713), + [sym_comma_expression] = STATE(1120), + [sym_conditional_expression] = STATE(713), + [sym_assignment_expression] = STATE(713), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(713), + [sym_binary_expression] = STATE(713), + [sym_update_expression] = STATE(713), + [sym_cast_expression] = STATE(713), + [sym_sizeof_expression] = STATE(713), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(713), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(713), + [sym_concatenated_string] = STATE(713), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(785), + [anon_sym_SEMI] = ACTIONS(787), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(789), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(793), + [anon_sym_switch] = ACTIONS(795), + [anon_sym_while] = ACTIONS(801), + [anon_sym_do] = ACTIONS(803), + [anon_sym_for] = ACTIONS(805), + [anon_sym_return] = ACTIONS(807), + [anon_sym_break] = ACTIONS(809), + [anon_sym_continue] = ACTIONS(811), + [anon_sym_goto] = ACTIONS(813), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(815), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(817), + [sym_false] = ACTIONS(817), + [sym_null] = ACTIONS(817), + [sym_comment] = ACTIONS(3), }, [109] = { - [sym_char_literal] = STATE(204), - [sym__expression] = STATE(204), - [sym_binary_expression] = STATE(204), - [sym_update_expression] = STATE(204), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(204), - [sym_sizeof_expression] = STATE(204), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(204), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(204), - [sym_assignment_expression] = STATE(204), - [sym_cast_expression] = STATE(204), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(204), - [sym_true] = ACTIONS(609), - [sym_null] = ACTIONS(609), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(611), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_compound_statement] = STATE(634), + [sym_labeled_statement] = STATE(634), + [sym_expression_statement] = STATE(634), + [sym_if_statement] = STATE(634), + [sym_switch_statement] = STATE(634), + [sym_while_statement] = STATE(634), + [sym_do_statement] = STATE(634), + [sym_for_statement] = STATE(634), + [sym_return_statement] = STATE(634), + [sym_break_statement] = STATE(634), + [sym_continue_statement] = STATE(634), + [sym_goto_statement] = STATE(634), + [sym__expression] = STATE(713), + [sym_comma_expression] = STATE(1120), + [sym_conditional_expression] = STATE(713), + [sym_assignment_expression] = STATE(713), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(713), + [sym_binary_expression] = STATE(713), + [sym_update_expression] = STATE(713), + [sym_cast_expression] = STATE(713), + [sym_sizeof_expression] = STATE(713), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(713), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(713), + [sym_concatenated_string] = STATE(713), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(785), + [anon_sym_SEMI] = ACTIONS(787), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(789), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(793), + [anon_sym_switch] = ACTIONS(795), + [anon_sym_while] = ACTIONS(801), + [anon_sym_do] = ACTIONS(803), + [anon_sym_for] = ACTIONS(805), + [anon_sym_return] = ACTIONS(807), + [anon_sym_break] = ACTIONS(809), + [anon_sym_continue] = ACTIONS(811), + [anon_sym_goto] = ACTIONS(813), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(815), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(817), + [sym_false] = ACTIONS(817), + [sym_null] = ACTIONS(817), + [sym_comment] = ACTIONS(3), }, [110] = { - [sym_char_literal] = STATE(205), - [sym__expression] = STATE(205), - [sym_binary_expression] = STATE(205), - [sym_update_expression] = STATE(205), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(205), - [sym_sizeof_expression] = STATE(205), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(205), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(205), - [sym_assignment_expression] = STATE(205), - [sym_cast_expression] = STATE(205), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(205), - [sym_true] = ACTIONS(613), - [sym_null] = ACTIONS(613), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(615), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(613), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_compound_statement] = STATE(637), + [sym_labeled_statement] = STATE(637), + [sym_expression_statement] = STATE(637), + [sym_if_statement] = STATE(637), + [sym_switch_statement] = STATE(637), + [sym_while_statement] = STATE(637), + [sym_do_statement] = STATE(637), + [sym_for_statement] = STATE(637), + [sym_return_statement] = STATE(637), + [sym_break_statement] = STATE(637), + [sym_continue_statement] = STATE(637), + [sym_goto_statement] = STATE(637), + [sym__expression] = STATE(713), + [sym_comma_expression] = STATE(1120), + [sym_conditional_expression] = STATE(713), + [sym_assignment_expression] = STATE(713), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(713), + [sym_binary_expression] = STATE(713), + [sym_update_expression] = STATE(713), + [sym_cast_expression] = STATE(713), + [sym_sizeof_expression] = STATE(713), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(713), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(713), + [sym_concatenated_string] = STATE(713), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(785), + [anon_sym_SEMI] = ACTIONS(787), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(789), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(793), + [anon_sym_switch] = ACTIONS(795), + [anon_sym_while] = ACTIONS(801), + [anon_sym_do] = ACTIONS(803), + [anon_sym_for] = ACTIONS(805), + [anon_sym_return] = ACTIONS(807), + [anon_sym_break] = ACTIONS(809), + [anon_sym_continue] = ACTIONS(811), + [anon_sym_goto] = ACTIONS(813), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(815), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(817), + [sym_false] = ACTIONS(817), + [sym_null] = ACTIONS(817), + [sym_comment] = ACTIONS(3), }, [111] = { - [anon_sym_GT_GT] = ACTIONS(617), - [anon_sym_PERCENT_EQ] = ACTIONS(619), - [anon_sym_DASH_EQ] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(617), - [anon_sym_EQ_EQ] = ACTIONS(619), - [anon_sym_SLASH] = ACTIONS(617), - [anon_sym_DASH_GT] = ACTIONS(619), - [anon_sym_LT_LT] = ACTIONS(617), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_PLUS_EQ] = ACTIONS(619), - [anon_sym_LT_LT_EQ] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(619), - [anon_sym_BANG_EQ] = ACTIONS(619), - [anon_sym_CARET_EQ] = ACTIONS(619), - [anon_sym_COMMA] = ACTIONS(619), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT_EQ] = ACTIONS(619), - [anon_sym_GT] = ACTIONS(617), - [anon_sym_PIPE_EQ] = ACTIONS(619), - [anon_sym_RPAREN] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(619), - [anon_sym_AMP_EQ] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(617), - [anon_sym_AMP] = ACTIONS(617), - [anon_sym_EQ] = ACTIONS(617), - [anon_sym_LPAREN2] = ACTIONS(619), - [anon_sym_GT_EQ] = ACTIONS(619), - [anon_sym_RBRACE] = ACTIONS(619), - [anon_sym_COLON] = ACTIONS(619), - [anon_sym_STAR_EQ] = ACTIONS(619), - [anon_sym_PIPE_PIPE] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_LT_EQ] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(617), - [anon_sym_SLASH_EQ] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(619), - [anon_sym_SEMI] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), + [sym_compound_statement] = STATE(639), + [sym_labeled_statement] = STATE(639), + [sym_expression_statement] = STATE(639), + [sym_if_statement] = STATE(639), + [sym_switch_statement] = STATE(639), + [sym_while_statement] = STATE(639), + [sym_do_statement] = STATE(639), + [sym_for_statement] = STATE(639), + [sym_return_statement] = STATE(639), + [sym_break_statement] = STATE(639), + [sym_continue_statement] = STATE(639), + [sym_goto_statement] = STATE(639), + [sym__expression] = STATE(713), + [sym_comma_expression] = STATE(1120), + [sym_conditional_expression] = STATE(713), + [sym_assignment_expression] = STATE(713), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(713), + [sym_binary_expression] = STATE(713), + [sym_update_expression] = STATE(713), + [sym_cast_expression] = STATE(713), + [sym_sizeof_expression] = STATE(713), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(713), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(713), + [sym_concatenated_string] = STATE(713), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(785), + [anon_sym_SEMI] = ACTIONS(787), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(789), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(793), + [anon_sym_switch] = ACTIONS(795), + [anon_sym_while] = ACTIONS(801), + [anon_sym_do] = ACTIONS(803), + [anon_sym_for] = ACTIONS(805), + [anon_sym_return] = ACTIONS(807), + [anon_sym_break] = ACTIONS(809), + [anon_sym_continue] = ACTIONS(811), + [anon_sym_goto] = ACTIONS(813), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(815), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(817), + [sym_false] = ACTIONS(817), + [sym_null] = ACTIONS(817), + [sym_comment] = ACTIONS(3), }, [112] = { - [sym_true] = ACTIONS(621), - [anon_sym_restrict] = ACTIONS(621), - [sym_null] = ACTIONS(621), - [anon_sym_goto] = ACTIONS(621), - [anon_sym_const] = ACTIONS(621), - [anon_sym_typedef] = ACTIONS(621), - [anon_sym_DASH_DASH] = ACTIONS(623), - [anon_sym__Atomic] = ACTIONS(621), - [sym_identifier] = ACTIONS(621), - [aux_sym_preproc_ifdef_token1] = ACTIONS(621), - [sym_number_literal] = ACTIONS(623), - [anon_sym_volatile] = ACTIONS(621), - [anon_sym_SQUOTE] = ACTIONS(623), - [anon_sym_extern] = ACTIONS(621), - [anon_sym_PLUS_PLUS] = ACTIONS(623), - [anon_sym_struct] = ACTIONS(621), - [anon_sym_signed] = ACTIONS(621), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(621), - [anon_sym_while] = ACTIONS(621), - [aux_sym_preproc_ifdef_token2] = ACTIONS(621), - [anon_sym_L_SQUOTE] = ACTIONS(623), - [anon_sym___attribute__] = ACTIONS(621), - [anon_sym_sizeof] = ACTIONS(621), - [anon_sym_LBRACE] = ACTIONS(623), - [anon_sym_union] = ACTIONS(621), - [anon_sym_unsigned] = ACTIONS(621), - [anon_sym_short] = ACTIONS(621), - [anon_sym_do] = ACTIONS(621), - [sym_preproc_directive] = ACTIONS(621), - [anon_sym_AMP] = ACTIONS(623), - [aux_sym_preproc_if_token1] = ACTIONS(621), - [anon_sym_TILDE] = ACTIONS(623), - [anon_sym_L_DQUOTE] = ACTIONS(623), - [anon_sym_LPAREN2] = ACTIONS(623), - [sym_primitive_type] = ACTIONS(621), - [anon_sym_for] = ACTIONS(621), - [anon_sym_break] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(623), - [aux_sym_preproc_include_token1] = ACTIONS(621), - [anon_sym_DASH] = ACTIONS(621), - [anon_sym_static] = ACTIONS(621), - [anon_sym_DQUOTE] = ACTIONS(623), - [anon_sym_register] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(623), - [anon_sym_if] = ACTIONS(621), - [anon_sym_switch] = ACTIONS(621), - [anon_sym_enum] = ACTIONS(621), - [sym_false] = ACTIONS(621), - [ts_builtin_sym_end] = ACTIONS(623), - [anon_sym_return] = ACTIONS(621), - [anon_sym_continue] = ACTIONS(621), - [anon_sym_SEMI] = ACTIONS(623), - [aux_sym_preproc_def_token1] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(621), - [anon_sym_auto] = ACTIONS(621), - [anon_sym_inline] = ACTIONS(621), + [sym_compound_statement] = STATE(643), + [sym_labeled_statement] = STATE(643), + [sym_expression_statement] = STATE(643), + [sym_if_statement] = STATE(643), + [sym_switch_statement] = STATE(643), + [sym_while_statement] = STATE(643), + [sym_do_statement] = STATE(643), + [sym_for_statement] = STATE(643), + [sym_return_statement] = STATE(643), + [sym_break_statement] = STATE(643), + [sym_continue_statement] = STATE(643), + [sym_goto_statement] = STATE(643), + [sym__expression] = STATE(713), + [sym_comma_expression] = STATE(1120), + [sym_conditional_expression] = STATE(713), + [sym_assignment_expression] = STATE(713), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(713), + [sym_binary_expression] = STATE(713), + [sym_update_expression] = STATE(713), + [sym_cast_expression] = STATE(713), + [sym_sizeof_expression] = STATE(713), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(713), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(713), + [sym_concatenated_string] = STATE(713), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(785), + [anon_sym_SEMI] = ACTIONS(787), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(789), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(793), + [anon_sym_switch] = ACTIONS(795), + [anon_sym_while] = ACTIONS(801), + [anon_sym_do] = ACTIONS(803), + [anon_sym_for] = ACTIONS(805), + [anon_sym_return] = ACTIONS(807), + [anon_sym_break] = ACTIONS(809), + [anon_sym_continue] = ACTIONS(811), + [anon_sym_goto] = ACTIONS(813), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(815), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(817), + [sym_false] = ACTIONS(817), + [sym_null] = ACTIONS(817), + [sym_comment] = ACTIONS(3), }, [113] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(124), - [sym_attribute_specifier] = STATE(124), - [sym_storage_class_specifier] = STATE(124), - [sym_type_qualifier] = STATE(124), - [anon_sym_restrict] = ACTIONS(7), - [anon_sym_COMMA] = ACTIONS(625), - [anon_sym_static] = ACTIONS(63), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_register] = ACTIONS(63), - [anon_sym_extern] = ACTIONS(63), - [anon_sym_STAR] = ACTIONS(625), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(7), - [anon_sym_LPAREN2] = ACTIONS(625), - [anon_sym_COLON] = ACTIONS(625), - [anon_sym_SEMI] = ACTIONS(625), - [anon_sym__Atomic] = ACTIONS(7), - [sym_identifier] = ACTIONS(627), - [anon_sym_auto] = ACTIONS(63), - [anon_sym_RPAREN] = ACTIONS(625), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(625), + [sym_compound_statement] = STATE(631), + [sym_labeled_statement] = STATE(631), + [sym_expression_statement] = STATE(631), + [sym_if_statement] = STATE(631), + [sym_switch_statement] = STATE(631), + [sym_while_statement] = STATE(631), + [sym_do_statement] = STATE(631), + [sym_for_statement] = STATE(631), + [sym_return_statement] = STATE(631), + [sym_break_statement] = STATE(631), + [sym_continue_statement] = STATE(631), + [sym_goto_statement] = STATE(631), + [sym__expression] = STATE(713), + [sym_comma_expression] = STATE(1120), + [sym_conditional_expression] = STATE(713), + [sym_assignment_expression] = STATE(713), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(713), + [sym_binary_expression] = STATE(713), + [sym_update_expression] = STATE(713), + [sym_cast_expression] = STATE(713), + [sym_sizeof_expression] = STATE(713), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(713), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(713), + [sym_concatenated_string] = STATE(713), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(785), + [anon_sym_SEMI] = ACTIONS(787), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(789), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(793), + [anon_sym_switch] = ACTIONS(795), + [anon_sym_while] = ACTIONS(801), + [anon_sym_do] = ACTIONS(803), + [anon_sym_for] = ACTIONS(805), + [anon_sym_return] = ACTIONS(807), + [anon_sym_break] = ACTIONS(809), + [anon_sym_continue] = ACTIONS(811), + [anon_sym_goto] = ACTIONS(813), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(815), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(817), + [sym_false] = ACTIONS(817), + [sym_null] = ACTIONS(817), + [sym_comment] = ACTIONS(3), }, [114] = { - [anon_sym_restrict] = ACTIONS(629), - [anon_sym_COMMA] = ACTIONS(631), - [anon_sym_static] = ACTIONS(629), - [anon_sym_volatile] = ACTIONS(629), - [anon_sym_register] = ACTIONS(629), - [anon_sym_extern] = ACTIONS(629), - [anon_sym_STAR] = ACTIONS(631), + [sym_compound_statement] = STATE(625), + [sym_labeled_statement] = STATE(625), + [sym_expression_statement] = STATE(625), + [sym_if_statement] = STATE(625), + [sym_switch_statement] = STATE(625), + [sym_while_statement] = STATE(625), + [sym_do_statement] = STATE(625), + [sym_for_statement] = STATE(625), + [sym_return_statement] = STATE(625), + [sym_break_statement] = STATE(625), + [sym_continue_statement] = STATE(625), + [sym_goto_statement] = STATE(625), + [sym__expression] = STATE(713), + [sym_comma_expression] = STATE(1120), + [sym_conditional_expression] = STATE(713), + [sym_assignment_expression] = STATE(713), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(713), + [sym_binary_expression] = STATE(713), + [sym_update_expression] = STATE(713), + [sym_cast_expression] = STATE(713), + [sym_sizeof_expression] = STATE(713), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(713), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(713), + [sym_concatenated_string] = STATE(713), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(785), + [anon_sym_SEMI] = ACTIONS(787), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(789), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(793), + [anon_sym_switch] = ACTIONS(795), + [anon_sym_while] = ACTIONS(801), + [anon_sym_do] = ACTIONS(803), + [anon_sym_for] = ACTIONS(805), + [anon_sym_return] = ACTIONS(807), + [anon_sym_break] = ACTIONS(809), + [anon_sym_continue] = ACTIONS(811), + [anon_sym_goto] = ACTIONS(813), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(815), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(817), + [sym_false] = ACTIONS(817), + [sym_null] = ACTIONS(817), [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(629), - [anon_sym_LPAREN2] = ACTIONS(631), - [anon_sym_COLON] = ACTIONS(631), - [anon_sym_SEMI] = ACTIONS(631), - [anon_sym__Atomic] = ACTIONS(629), - [sym_identifier] = ACTIONS(629), - [anon_sym_auto] = ACTIONS(629), - [anon_sym_RPAREN] = ACTIONS(631), - [anon_sym_inline] = ACTIONS(629), - [anon_sym___attribute__] = ACTIONS(629), - [anon_sym_LBRACK] = ACTIONS(631), }, [115] = { - [anon_sym_restrict] = ACTIONS(633), - [anon_sym_COMMA] = ACTIONS(635), - [anon_sym_static] = ACTIONS(633), - [anon_sym_volatile] = ACTIONS(633), - [anon_sym_register] = ACTIONS(633), - [anon_sym_extern] = ACTIONS(633), - [anon_sym_STAR] = ACTIONS(635), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(633), - [anon_sym_LPAREN2] = ACTIONS(635), - [anon_sym_COLON] = ACTIONS(635), - [anon_sym_SEMI] = ACTIONS(635), - [anon_sym__Atomic] = ACTIONS(633), - [sym_identifier] = ACTIONS(633), - [anon_sym_auto] = ACTIONS(633), - [anon_sym_RPAREN] = ACTIONS(635), - [anon_sym_inline] = ACTIONS(633), - [anon_sym___attribute__] = ACTIONS(633), - [anon_sym_LBRACK] = ACTIONS(635), + [sym_compound_statement] = STATE(629), + [sym_labeled_statement] = STATE(629), + [sym_expression_statement] = STATE(629), + [sym_if_statement] = STATE(629), + [sym_switch_statement] = STATE(629), + [sym_while_statement] = STATE(629), + [sym_do_statement] = STATE(629), + [sym_for_statement] = STATE(629), + [sym_return_statement] = STATE(629), + [sym_break_statement] = STATE(629), + [sym_continue_statement] = STATE(629), + [sym_goto_statement] = STATE(629), + [sym__expression] = STATE(713), + [sym_comma_expression] = STATE(1120), + [sym_conditional_expression] = STATE(713), + [sym_assignment_expression] = STATE(713), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(713), + [sym_binary_expression] = STATE(713), + [sym_update_expression] = STATE(713), + [sym_cast_expression] = STATE(713), + [sym_sizeof_expression] = STATE(713), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(713), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(713), + [sym_concatenated_string] = STATE(713), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(785), + [anon_sym_SEMI] = ACTIONS(787), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(789), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(793), + [anon_sym_switch] = ACTIONS(795), + [anon_sym_while] = ACTIONS(801), + [anon_sym_do] = ACTIONS(803), + [anon_sym_for] = ACTIONS(805), + [anon_sym_return] = ACTIONS(807), + [anon_sym_break] = ACTIONS(809), + [anon_sym_continue] = ACTIONS(811), + [anon_sym_goto] = ACTIONS(813), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(815), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(817), + [sym_false] = ACTIONS(817), + [sym_null] = ACTIONS(817), + [sym_comment] = ACTIONS(3), }, [116] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(116), - [anon_sym_unsigned] = ACTIONS(637), - [anon_sym_restrict] = ACTIONS(640), - [anon_sym_short] = ACTIONS(637), - [anon_sym_const] = ACTIONS(640), - [anon_sym_LPAREN2] = ACTIONS(642), - [anon_sym_COLON] = ACTIONS(642), - [anon_sym__Atomic] = ACTIONS(640), - [sym_primitive_type] = ACTIONS(640), - [sym_identifier] = ACTIONS(640), - [anon_sym_COMMA] = ACTIONS(642), - [anon_sym_static] = ACTIONS(640), - [anon_sym_volatile] = ACTIONS(640), - [anon_sym_register] = ACTIONS(640), - [anon_sym_extern] = ACTIONS(640), - [anon_sym_STAR] = ACTIONS(642), - [anon_sym_signed] = ACTIONS(637), + [sym_compound_statement] = STATE(635), + [sym_labeled_statement] = STATE(635), + [sym_expression_statement] = STATE(635), + [sym_if_statement] = STATE(635), + [sym_switch_statement] = STATE(635), + [sym_while_statement] = STATE(635), + [sym_do_statement] = STATE(635), + [sym_for_statement] = STATE(635), + [sym_return_statement] = STATE(635), + [sym_break_statement] = STATE(635), + [sym_continue_statement] = STATE(635), + [sym_goto_statement] = STATE(635), + [sym__expression] = STATE(713), + [sym_comma_expression] = STATE(1120), + [sym_conditional_expression] = STATE(713), + [sym_assignment_expression] = STATE(713), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(713), + [sym_binary_expression] = STATE(713), + [sym_update_expression] = STATE(713), + [sym_cast_expression] = STATE(713), + [sym_sizeof_expression] = STATE(713), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(713), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(713), + [sym_concatenated_string] = STATE(713), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(785), + [anon_sym_SEMI] = ACTIONS(787), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(789), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(793), + [anon_sym_switch] = ACTIONS(795), + [anon_sym_while] = ACTIONS(801), + [anon_sym_do] = ACTIONS(803), + [anon_sym_for] = ACTIONS(805), + [anon_sym_return] = ACTIONS(807), + [anon_sym_break] = ACTIONS(809), + [anon_sym_continue] = ACTIONS(811), + [anon_sym_goto] = ACTIONS(813), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(815), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(817), + [sym_false] = ACTIONS(817), + [sym_null] = ACTIONS(817), [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(637), - [anon_sym_SEMI] = ACTIONS(642), - [anon_sym_RPAREN] = ACTIONS(642), - [anon_sym_auto] = ACTIONS(640), - [anon_sym_inline] = ACTIONS(640), - [anon_sym___attribute__] = ACTIONS(640), - [anon_sym_LBRACK] = ACTIONS(642), }, [117] = { - [sym_pointer_declarator] = STATE(206), - [sym_parenthesized_declarator] = STATE(206), - [aux_sym_type_definition_repeat1] = STATE(207), - [sym_array_declarator] = STATE(206), - [sym__declarator] = STATE(206), - [sym_function_declarator] = STATE(206), - [sym_type_qualifier] = STATE(207), - [anon_sym_const] = ACTIONS(7), - [anon_sym_LPAREN2] = ACTIONS(328), - [anon_sym_restrict] = ACTIONS(7), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym__Atomic] = ACTIONS(7), - [anon_sym_STAR] = ACTIONS(326), - [sym_identifier] = ACTIONS(644), + [sym_compound_statement] = STATE(636), + [sym_labeled_statement] = STATE(636), + [sym_expression_statement] = STATE(636), + [sym_if_statement] = STATE(636), + [sym_switch_statement] = STATE(636), + [sym_while_statement] = STATE(636), + [sym_do_statement] = STATE(636), + [sym_for_statement] = STATE(636), + [sym_return_statement] = STATE(636), + [sym_break_statement] = STATE(636), + [sym_continue_statement] = STATE(636), + [sym_goto_statement] = STATE(636), + [sym__expression] = STATE(713), + [sym_comma_expression] = STATE(1120), + [sym_conditional_expression] = STATE(713), + [sym_assignment_expression] = STATE(713), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(713), + [sym_binary_expression] = STATE(713), + [sym_update_expression] = STATE(713), + [sym_cast_expression] = STATE(713), + [sym_sizeof_expression] = STATE(713), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(713), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(713), + [sym_concatenated_string] = STATE(713), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(785), + [anon_sym_SEMI] = ACTIONS(787), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(789), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(793), + [anon_sym_switch] = ACTIONS(795), + [anon_sym_while] = ACTIONS(801), + [anon_sym_do] = ACTIONS(803), + [anon_sym_for] = ACTIONS(805), + [anon_sym_return] = ACTIONS(807), + [anon_sym_break] = ACTIONS(809), + [anon_sym_continue] = ACTIONS(811), + [anon_sym_goto] = ACTIONS(813), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(815), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(817), + [sym_false] = ACTIONS(817), + [sym_null] = ACTIONS(817), [sym_comment] = ACTIONS(3), }, [118] = { - [sym_pointer_declarator] = STATE(208), - [sym_parenthesized_declarator] = STATE(208), - [sym_array_declarator] = STATE(208), - [sym__declarator] = STATE(208), - [sym_function_declarator] = STATE(208), - [anon_sym_STAR] = ACTIONS(326), - [anon_sym_LPAREN2] = ACTIONS(328), - [sym_identifier] = ACTIONS(646), + [sym_compound_statement] = STATE(646), + [sym_labeled_statement] = STATE(646), + [sym_expression_statement] = STATE(646), + [sym_if_statement] = STATE(646), + [sym_switch_statement] = STATE(646), + [sym_while_statement] = STATE(646), + [sym_do_statement] = STATE(646), + [sym_for_statement] = STATE(646), + [sym_return_statement] = STATE(646), + [sym_break_statement] = STATE(646), + [sym_continue_statement] = STATE(646), + [sym_goto_statement] = STATE(646), + [sym__expression] = STATE(713), + [sym_comma_expression] = STATE(1120), + [sym_conditional_expression] = STATE(713), + [sym_assignment_expression] = STATE(713), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(713), + [sym_binary_expression] = STATE(713), + [sym_update_expression] = STATE(713), + [sym_cast_expression] = STATE(713), + [sym_sizeof_expression] = STATE(713), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(713), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(713), + [sym_concatenated_string] = STATE(713), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(785), + [anon_sym_SEMI] = ACTIONS(787), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(789), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(793), + [anon_sym_switch] = ACTIONS(795), + [anon_sym_while] = ACTIONS(801), + [anon_sym_do] = ACTIONS(803), + [anon_sym_for] = ACTIONS(805), + [anon_sym_return] = ACTIONS(807), + [anon_sym_break] = ACTIONS(809), + [anon_sym_continue] = ACTIONS(811), + [anon_sym_goto] = ACTIONS(813), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(815), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(817), + [sym_false] = ACTIONS(817), + [sym_null] = ACTIONS(817), [sym_comment] = ACTIONS(3), }, [119] = { - [aux_sym_declaration_repeat1] = STATE(216), - [sym_compound_statement] = STATE(215), - [sym_parameter_list] = STATE(214), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_EQ] = ACTIONS(648), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN2] = ACTIONS(652), + [sym_compound_statement] = STATE(622), + [sym_labeled_statement] = STATE(622), + [sym_expression_statement] = STATE(622), + [sym_if_statement] = STATE(622), + [sym_switch_statement] = STATE(622), + [sym_while_statement] = STATE(622), + [sym_do_statement] = STATE(622), + [sym_for_statement] = STATE(622), + [sym_return_statement] = STATE(622), + [sym_break_statement] = STATE(622), + [sym_continue_statement] = STATE(622), + [sym_goto_statement] = STATE(622), + [sym__expression] = STATE(713), + [sym_comma_expression] = STATE(1120), + [sym_conditional_expression] = STATE(713), + [sym_assignment_expression] = STATE(713), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(713), + [sym_binary_expression] = STATE(713), + [sym_update_expression] = STATE(713), + [sym_cast_expression] = STATE(713), + [sym_sizeof_expression] = STATE(713), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(713), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(713), + [sym_concatenated_string] = STATE(713), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(785), + [anon_sym_SEMI] = ACTIONS(787), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(789), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(793), + [anon_sym_switch] = ACTIONS(795), + [anon_sym_while] = ACTIONS(801), + [anon_sym_do] = ACTIONS(803), + [anon_sym_for] = ACTIONS(805), + [anon_sym_return] = ACTIONS(807), + [anon_sym_break] = ACTIONS(809), + [anon_sym_continue] = ACTIONS(811), + [anon_sym_goto] = ACTIONS(813), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(815), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(817), + [sym_false] = ACTIONS(817), + [sym_null] = ACTIONS(817), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(654), - [anon_sym_SEMI] = ACTIONS(656), }, [120] = { - [aux_sym_declaration_repeat1] = STATE(216), - [anon_sym_SEMI] = ACTIONS(656), - [anon_sym_COMMA] = ACTIONS(654), + [ts_builtin_sym_end] = ACTIONS(987), + [sym_identifier] = ACTIONS(989), + [aux_sym_preproc_include_token1] = ACTIONS(989), + [aux_sym_preproc_def_token1] = ACTIONS(989), + [aux_sym_preproc_if_token1] = ACTIONS(989), + [aux_sym_preproc_ifdef_token1] = ACTIONS(989), + [aux_sym_preproc_ifdef_token2] = ACTIONS(989), + [sym_preproc_directive] = ACTIONS(989), + [anon_sym_SEMI] = ACTIONS(987), + [anon_sym_typedef] = ACTIONS(989), + [anon_sym_extern] = ACTIONS(989), + [anon_sym___attribute__] = ACTIONS(989), + [anon_sym_LPAREN2] = ACTIONS(987), + [anon_sym_LBRACE] = ACTIONS(987), + [anon_sym_RBRACE] = ACTIONS(987), + [anon_sym_STAR] = ACTIONS(987), + [anon_sym_static] = ACTIONS(989), + [anon_sym_auto] = ACTIONS(989), + [anon_sym_register] = ACTIONS(989), + [anon_sym_inline] = ACTIONS(989), + [anon_sym_const] = ACTIONS(989), + [anon_sym_volatile] = ACTIONS(989), + [anon_sym_restrict] = ACTIONS(989), + [anon_sym__Atomic] = ACTIONS(989), + [anon_sym_signed] = ACTIONS(989), + [anon_sym_unsigned] = ACTIONS(989), + [anon_sym_long] = ACTIONS(989), + [anon_sym_short] = ACTIONS(989), + [sym_primitive_type] = ACTIONS(989), + [anon_sym_enum] = ACTIONS(989), + [anon_sym_struct] = ACTIONS(989), + [anon_sym_union] = ACTIONS(989), + [anon_sym_if] = ACTIONS(989), + [anon_sym_else] = ACTIONS(989), + [anon_sym_switch] = ACTIONS(989), + [anon_sym_case] = ACTIONS(989), + [anon_sym_default] = ACTIONS(989), + [anon_sym_while] = ACTIONS(989), + [anon_sym_do] = ACTIONS(989), + [anon_sym_for] = ACTIONS(989), + [anon_sym_return] = ACTIONS(989), + [anon_sym_break] = ACTIONS(989), + [anon_sym_continue] = ACTIONS(989), + [anon_sym_goto] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(987), + [anon_sym_BANG] = ACTIONS(987), + [anon_sym_TILDE] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(987), + [anon_sym_PLUS_PLUS] = ACTIONS(987), + [anon_sym_sizeof] = ACTIONS(989), + [sym_number_literal] = ACTIONS(987), + [anon_sym_L_SQUOTE] = ACTIONS(987), + [anon_sym_SQUOTE] = ACTIONS(987), + [anon_sym_L_DQUOTE] = ACTIONS(987), + [anon_sym_DQUOTE] = ACTIONS(987), + [sym_true] = ACTIONS(989), + [sym_false] = ACTIONS(989), + [sym_null] = ACTIONS(989), [sym_comment] = ACTIONS(3), }, [121] = { - [aux_sym_concatenated_string_repeat1] = STATE(217), - [sym_string_literal] = STATE(217), - [anon_sym_GT_GT] = ACTIONS(658), - [anon_sym_PERCENT_EQ] = ACTIONS(660), - [anon_sym_DASH_EQ] = ACTIONS(660), - [anon_sym_PIPE] = ACTIONS(658), - [anon_sym_EQ_EQ] = ACTIONS(660), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_DASH_GT] = ACTIONS(660), - [anon_sym_LT_LT] = ACTIONS(658), - [anon_sym_DASH_DASH] = ACTIONS(660), - [anon_sym_PLUS_EQ] = ACTIONS(660), - [anon_sym_LT_LT_EQ] = ACTIONS(660), - [anon_sym_QMARK] = ACTIONS(660), - [anon_sym_BANG_EQ] = ACTIONS(660), - [anon_sym_CARET_EQ] = ACTIONS(660), - [anon_sym_COMMA] = ACTIONS(660), - [anon_sym_PLUS_PLUS] = ACTIONS(660), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT_EQ] = ACTIONS(660), - [anon_sym_GT] = ACTIONS(658), - [anon_sym_PIPE_EQ] = ACTIONS(660), - [anon_sym_RPAREN] = ACTIONS(660), - [anon_sym_RBRACK] = ACTIONS(660), - [anon_sym_AMP_EQ] = ACTIONS(660), - [anon_sym_PERCENT] = ACTIONS(658), - [anon_sym_AMP] = ACTIONS(658), - [anon_sym_EQ] = ACTIONS(658), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(660), - [anon_sym_GT_EQ] = ACTIONS(660), - [anon_sym_RBRACE] = ACTIONS(660), - [anon_sym_COLON] = ACTIONS(660), - [anon_sym_STAR_EQ] = ACTIONS(660), - [anon_sym_PIPE_PIPE] = ACTIONS(660), - [anon_sym_DASH] = ACTIONS(658), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(660), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_SLASH_EQ] = ACTIONS(660), - [anon_sym_AMP_AMP] = ACTIONS(660), - [anon_sym_SEMI] = ACTIONS(660), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym_PLUS] = ACTIONS(658), - [anon_sym_DOT] = ACTIONS(660), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_LBRACK] = ACTIONS(660), + [sym_compound_statement] = STATE(624), + [sym_labeled_statement] = STATE(624), + [sym_expression_statement] = STATE(624), + [sym_if_statement] = STATE(624), + [sym_switch_statement] = STATE(624), + [sym_while_statement] = STATE(624), + [sym_do_statement] = STATE(624), + [sym_for_statement] = STATE(624), + [sym_return_statement] = STATE(624), + [sym_break_statement] = STATE(624), + [sym_continue_statement] = STATE(624), + [sym_goto_statement] = STATE(624), + [sym__expression] = STATE(713), + [sym_comma_expression] = STATE(1120), + [sym_conditional_expression] = STATE(713), + [sym_assignment_expression] = STATE(713), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(713), + [sym_binary_expression] = STATE(713), + [sym_update_expression] = STATE(713), + [sym_cast_expression] = STATE(713), + [sym_sizeof_expression] = STATE(713), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(713), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(713), + [sym_concatenated_string] = STATE(713), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(785), + [anon_sym_SEMI] = ACTIONS(787), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(789), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(793), + [anon_sym_switch] = ACTIONS(795), + [anon_sym_while] = ACTIONS(801), + [anon_sym_do] = ACTIONS(803), + [anon_sym_for] = ACTIONS(805), + [anon_sym_return] = ACTIONS(807), + [anon_sym_break] = ACTIONS(809), + [anon_sym_continue] = ACTIONS(811), + [anon_sym_goto] = ACTIONS(813), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(815), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(817), + [sym_false] = ACTIONS(817), + [sym_null] = ACTIONS(817), + [sym_comment] = ACTIONS(3), }, [122] = { - [sym_if_statement] = STATE(122), - [sym_preproc_def] = STATE(122), - [sym_preproc_function_def] = STATE(122), - [sym__expression] = STATE(34), - [sym_comma_expression] = STATE(35), - [sym_binary_expression] = STATE(34), - [sym_update_expression] = STATE(34), - [sym_call_expression] = STATE(36), - [sym_function_definition] = STATE(122), - [sym_declaration] = STATE(122), - [sym_do_statement] = STATE(122), - [sym_for_statement] = STATE(122), - [aux_sym_translation_unit_repeat1] = STATE(122), - [sym_expression_statement] = STATE(122), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(37), - [sym_union_specifier] = STATE(37), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_switch_statement] = STATE(122), - [sym_return_statement] = STATE(122), - [sym_preproc_call] = STATE(122), - [sym_conditional_expression] = STATE(34), - [sym_assignment_expression] = STATE(34), - [sym_type_definition] = STATE(122), - [sym_cast_expression] = STATE(34), - [sym__declaration_specifiers] = STATE(40), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(34), - [sym_char_literal] = STATE(34), - [sym_break_statement] = STATE(122), - [sym__empty_declaration] = STATE(122), - [sym_sized_type_specifier] = STATE(37), - [sym_enum_specifier] = STATE(37), - [sym_labeled_statement] = STATE(122), - [sym_preproc_include] = STATE(122), - [sym_preproc_if] = STATE(122), - [sym_preproc_ifdef] = STATE(122), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(34), - [sym_sizeof_expression] = STATE(34), - [sym_attribute_specifier] = STATE(43), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_linkage_specification] = STATE(122), - [sym_concatenated_string] = STATE(34), - [sym_string_literal] = STATE(41), - [sym_macro_type_specifier] = STATE(37), - [sym_while_statement] = STATE(122), - [sym_storage_class_specifier] = STATE(43), - [sym_compound_statement] = STATE(122), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_continue_statement] = STATE(122), - [sym_struct_specifier] = STATE(37), - [sym_goto_statement] = STATE(122), - [sym_true] = ACTIONS(662), - [anon_sym_restrict] = ACTIONS(665), - [sym_null] = ACTIONS(662), - [anon_sym_goto] = ACTIONS(668), - [anon_sym_const] = ACTIONS(665), - [anon_sym_typedef] = ACTIONS(671), - [anon_sym_DASH_DASH] = ACTIONS(674), - [anon_sym__Atomic] = ACTIONS(665), - [sym_identifier] = ACTIONS(677), - [aux_sym_preproc_ifdef_token1] = ACTIONS(680), - [sym_number_literal] = ACTIONS(683), - [anon_sym_volatile] = ACTIONS(665), - [anon_sym_SQUOTE] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(689), - [anon_sym_PLUS_PLUS] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(692), - [anon_sym_signed] = ACTIONS(695), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(695), - [anon_sym_while] = ACTIONS(698), - [aux_sym_preproc_ifdef_token2] = ACTIONS(680), - [anon_sym_L_SQUOTE] = ACTIONS(686), - [anon_sym___attribute__] = ACTIONS(701), - [anon_sym_sizeof] = ACTIONS(704), - [anon_sym_LBRACE] = ACTIONS(707), - [anon_sym_union] = ACTIONS(710), - [anon_sym_unsigned] = ACTIONS(695), - [anon_sym_short] = ACTIONS(695), - [anon_sym_do] = ACTIONS(713), - [sym_preproc_directive] = ACTIONS(716), - [anon_sym_AMP] = ACTIONS(719), - [aux_sym_preproc_if_token1] = ACTIONS(722), - [anon_sym_TILDE] = ACTIONS(725), - [anon_sym_L_DQUOTE] = ACTIONS(728), - [anon_sym_LPAREN2] = ACTIONS(731), - [sym_primitive_type] = ACTIONS(734), - [anon_sym_for] = ACTIONS(737), - [anon_sym_break] = ACTIONS(740), - [anon_sym_BANG] = ACTIONS(725), - [aux_sym_preproc_include_token1] = ACTIONS(743), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_static] = ACTIONS(749), - [anon_sym_DQUOTE] = ACTIONS(728), - [anon_sym_register] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(719), - [anon_sym_if] = ACTIONS(752), - [anon_sym_switch] = ACTIONS(755), - [anon_sym_enum] = ACTIONS(758), - [sym_false] = ACTIONS(662), - [ts_builtin_sym_end] = ACTIONS(761), - [anon_sym_return] = ACTIONS(763), - [anon_sym_continue] = ACTIONS(766), - [anon_sym_SEMI] = ACTIONS(769), - [aux_sym_preproc_def_token1] = ACTIONS(772), - [anon_sym_PLUS] = ACTIONS(746), - [anon_sym_auto] = ACTIONS(749), - [anon_sym_inline] = ACTIONS(749), + [ts_builtin_sym_end] = ACTIONS(991), + [sym_identifier] = ACTIONS(993), + [aux_sym_preproc_include_token1] = ACTIONS(993), + [aux_sym_preproc_def_token1] = ACTIONS(993), + [aux_sym_preproc_if_token1] = ACTIONS(993), + [aux_sym_preproc_ifdef_token1] = ACTIONS(993), + [aux_sym_preproc_ifdef_token2] = ACTIONS(993), + [sym_preproc_directive] = ACTIONS(993), + [anon_sym_SEMI] = ACTIONS(991), + [anon_sym_typedef] = ACTIONS(993), + [anon_sym_extern] = ACTIONS(993), + [anon_sym___attribute__] = ACTIONS(993), + [anon_sym_LPAREN2] = ACTIONS(991), + [anon_sym_LBRACE] = ACTIONS(991), + [anon_sym_RBRACE] = ACTIONS(991), + [anon_sym_STAR] = ACTIONS(991), + [anon_sym_static] = ACTIONS(993), + [anon_sym_auto] = ACTIONS(993), + [anon_sym_register] = ACTIONS(993), + [anon_sym_inline] = ACTIONS(993), + [anon_sym_const] = ACTIONS(993), + [anon_sym_volatile] = ACTIONS(993), + [anon_sym_restrict] = ACTIONS(993), + [anon_sym__Atomic] = ACTIONS(993), + [anon_sym_signed] = ACTIONS(993), + [anon_sym_unsigned] = ACTIONS(993), + [anon_sym_long] = ACTIONS(993), + [anon_sym_short] = ACTIONS(993), + [sym_primitive_type] = ACTIONS(993), + [anon_sym_enum] = ACTIONS(993), + [anon_sym_struct] = ACTIONS(993), + [anon_sym_union] = ACTIONS(993), + [anon_sym_if] = ACTIONS(993), + [anon_sym_else] = ACTIONS(993), + [anon_sym_switch] = ACTIONS(993), + [anon_sym_case] = ACTIONS(993), + [anon_sym_default] = ACTIONS(993), + [anon_sym_while] = ACTIONS(993), + [anon_sym_do] = ACTIONS(993), + [anon_sym_for] = ACTIONS(993), + [anon_sym_return] = ACTIONS(993), + [anon_sym_break] = ACTIONS(993), + [anon_sym_continue] = ACTIONS(993), + [anon_sym_goto] = ACTIONS(993), + [anon_sym_AMP] = ACTIONS(991), + [anon_sym_BANG] = ACTIONS(991), + [anon_sym_TILDE] = ACTIONS(991), + [anon_sym_DASH] = ACTIONS(993), + [anon_sym_PLUS] = ACTIONS(993), + [anon_sym_DASH_DASH] = ACTIONS(991), + [anon_sym_PLUS_PLUS] = ACTIONS(991), + [anon_sym_sizeof] = ACTIONS(993), + [sym_number_literal] = ACTIONS(991), + [anon_sym_L_SQUOTE] = ACTIONS(991), + [anon_sym_SQUOTE] = ACTIONS(991), + [anon_sym_L_DQUOTE] = ACTIONS(991), + [anon_sym_DQUOTE] = ACTIONS(991), + [sym_true] = ACTIONS(993), + [sym_false] = ACTIONS(993), + [sym_null] = ACTIONS(993), + [sym_comment] = ACTIONS(3), }, [123] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(218), - [sym_attribute_specifier] = STATE(218), - [sym_storage_class_specifier] = STATE(218), - [sym_type_qualifier] = STATE(218), - [anon_sym_restrict] = ACTIONS(7), - [anon_sym_COMMA] = ACTIONS(775), - [anon_sym_static] = ACTIONS(63), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_register] = ACTIONS(63), - [anon_sym_extern] = ACTIONS(63), - [anon_sym_STAR] = ACTIONS(775), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(7), - [anon_sym_LPAREN2] = ACTIONS(775), - [anon_sym_COLON] = ACTIONS(775), - [anon_sym_SEMI] = ACTIONS(775), - [anon_sym__Atomic] = ACTIONS(7), - [sym_identifier] = ACTIONS(777), - [anon_sym_auto] = ACTIONS(63), - [anon_sym_RPAREN] = ACTIONS(775), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(775), + [sym_compound_statement] = STATE(228), + [sym_labeled_statement] = STATE(228), + [sym_expression_statement] = STATE(228), + [sym_if_statement] = STATE(228), + [sym_switch_statement] = STATE(228), + [sym_while_statement] = STATE(228), + [sym_do_statement] = STATE(228), + [sym_for_statement] = STATE(228), + [sym_return_statement] = STATE(228), + [sym_break_statement] = STATE(228), + [sym_continue_statement] = STATE(228), + [sym_goto_statement] = STATE(228), + [sym__expression] = STATE(671), + [sym_comma_expression] = STATE(1275), + [sym_conditional_expression] = STATE(671), + [sym_assignment_expression] = STATE(671), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(671), + [sym_binary_expression] = STATE(671), + [sym_update_expression] = STATE(671), + [sym_cast_expression] = STATE(671), + [sym_sizeof_expression] = STATE(671), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(671), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(671), + [sym_concatenated_string] = STATE(671), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(929), + [anon_sym_SEMI] = ACTIONS(99), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(109), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_do] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_return] = ACTIONS(119), + [anon_sym_break] = ACTIONS(121), + [anon_sym_continue] = ACTIONS(123), + [anon_sym_goto] = ACTIONS(125), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(127), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(129), + [sym_false] = ACTIONS(129), + [sym_null] = ACTIONS(129), + [sym_comment] = ACTIONS(3), }, [124] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(124), - [sym_attribute_specifier] = STATE(124), - [sym_storage_class_specifier] = STATE(124), - [sym_type_qualifier] = STATE(124), - [anon_sym_union] = ACTIONS(779), - [anon_sym_unsigned] = ACTIONS(779), - [anon_sym_restrict] = ACTIONS(781), - [anon_sym_short] = ACTIONS(779), - [anon_sym_const] = ACTIONS(781), - [anon_sym_LPAREN2] = ACTIONS(784), - [anon_sym_COLON] = ACTIONS(784), - [anon_sym__Atomic] = ACTIONS(781), - [sym_primitive_type] = ACTIONS(779), - [sym_identifier] = ACTIONS(779), - [anon_sym_COMMA] = ACTIONS(784), - [anon_sym_static] = ACTIONS(786), - [anon_sym_volatile] = ACTIONS(781), - [anon_sym_register] = ACTIONS(786), - [anon_sym_extern] = ACTIONS(786), - [anon_sym_STAR] = ACTIONS(784), - [anon_sym_struct] = ACTIONS(779), - [anon_sym_signed] = ACTIONS(779), - [anon_sym_enum] = ACTIONS(779), - [anon_sym_long] = ACTIONS(779), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(784), - [anon_sym_RPAREN] = ACTIONS(784), - [anon_sym_auto] = ACTIONS(786), - [anon_sym_inline] = ACTIONS(786), - [anon_sym___attribute__] = ACTIONS(789), - [anon_sym_LBRACK] = ACTIONS(784), + [sym_compound_statement] = STATE(230), + [sym_labeled_statement] = STATE(230), + [sym_expression_statement] = STATE(230), + [sym_if_statement] = STATE(230), + [sym_switch_statement] = STATE(230), + [sym_while_statement] = STATE(230), + [sym_do_statement] = STATE(230), + [sym_for_statement] = STATE(230), + [sym_return_statement] = STATE(230), + [sym_break_statement] = STATE(230), + [sym_continue_statement] = STATE(230), + [sym_goto_statement] = STATE(230), + [sym__expression] = STATE(671), + [sym_comma_expression] = STATE(1275), + [sym_conditional_expression] = STATE(671), + [sym_assignment_expression] = STATE(671), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(671), + [sym_binary_expression] = STATE(671), + [sym_update_expression] = STATE(671), + [sym_cast_expression] = STATE(671), + [sym_sizeof_expression] = STATE(671), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(671), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(671), + [sym_concatenated_string] = STATE(671), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(929), + [anon_sym_SEMI] = ACTIONS(99), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(109), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_do] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_return] = ACTIONS(119), + [anon_sym_break] = ACTIONS(121), + [anon_sym_continue] = ACTIONS(123), + [anon_sym_goto] = ACTIONS(125), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(127), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(129), + [sym_false] = ACTIONS(129), + [sym_null] = ACTIONS(129), + [sym_comment] = ACTIONS(3), }, [125] = { - [anon_sym_case] = ACTIONS(792), - [sym_true] = ACTIONS(792), - [anon_sym_restrict] = ACTIONS(792), - [sym_null] = ACTIONS(792), - [anon_sym_goto] = ACTIONS(792), - [anon_sym_const] = ACTIONS(792), - [anon_sym_typedef] = ACTIONS(792), - [anon_sym_DASH_DASH] = ACTIONS(794), - [anon_sym_default] = ACTIONS(792), - [anon_sym__Atomic] = ACTIONS(792), - [sym_identifier] = ACTIONS(792), - [aux_sym_preproc_ifdef_token1] = ACTIONS(792), - [sym_number_literal] = ACTIONS(794), - [anon_sym_volatile] = ACTIONS(792), - [anon_sym_SQUOTE] = ACTIONS(794), - [anon_sym_extern] = ACTIONS(792), - [anon_sym_PLUS_PLUS] = ACTIONS(794), - [anon_sym_struct] = ACTIONS(792), - [anon_sym_signed] = ACTIONS(792), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(792), - [anon_sym_while] = ACTIONS(792), - [aux_sym_preproc_ifdef_token2] = ACTIONS(792), - [anon_sym_L_SQUOTE] = ACTIONS(794), - [anon_sym___attribute__] = ACTIONS(792), - [anon_sym_sizeof] = ACTIONS(792), - [anon_sym_LBRACE] = ACTIONS(794), - [anon_sym_union] = ACTIONS(792), - [anon_sym_unsigned] = ACTIONS(792), - [anon_sym_short] = ACTIONS(792), - [anon_sym_do] = ACTIONS(792), - [sym_preproc_directive] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(794), - [aux_sym_preproc_if_token1] = ACTIONS(792), - [anon_sym_TILDE] = ACTIONS(794), - [anon_sym_L_DQUOTE] = ACTIONS(794), - [anon_sym_LPAREN2] = ACTIONS(794), - [anon_sym_RBRACE] = ACTIONS(794), - [anon_sym_else] = ACTIONS(792), - [sym_primitive_type] = ACTIONS(792), - [anon_sym_for] = ACTIONS(792), - [anon_sym_break] = ACTIONS(792), - [anon_sym_BANG] = ACTIONS(794), - [aux_sym_preproc_include_token1] = ACTIONS(792), - [anon_sym_DASH] = ACTIONS(792), - [anon_sym_static] = ACTIONS(792), - [anon_sym_DQUOTE] = ACTIONS(794), - [anon_sym_register] = ACTIONS(792), - [anon_sym_STAR] = ACTIONS(794), - [anon_sym_if] = ACTIONS(792), - [anon_sym_switch] = ACTIONS(792), - [anon_sym_enum] = ACTIONS(792), - [sym_false] = ACTIONS(792), - [ts_builtin_sym_end] = ACTIONS(794), - [anon_sym_return] = ACTIONS(792), - [anon_sym_continue] = ACTIONS(792), - [anon_sym_SEMI] = ACTIONS(794), - [aux_sym_preproc_def_token1] = ACTIONS(792), - [anon_sym_PLUS] = ACTIONS(792), - [anon_sym_auto] = ACTIONS(792), - [anon_sym_inline] = ACTIONS(792), + [sym_compound_statement] = STATE(236), + [sym_labeled_statement] = STATE(236), + [sym_expression_statement] = STATE(236), + [sym_if_statement] = STATE(236), + [sym_switch_statement] = STATE(236), + [sym_while_statement] = STATE(236), + [sym_do_statement] = STATE(236), + [sym_for_statement] = STATE(236), + [sym_return_statement] = STATE(236), + [sym_break_statement] = STATE(236), + [sym_continue_statement] = STATE(236), + [sym_goto_statement] = STATE(236), + [sym__expression] = STATE(671), + [sym_comma_expression] = STATE(1275), + [sym_conditional_expression] = STATE(671), + [sym_assignment_expression] = STATE(671), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(671), + [sym_binary_expression] = STATE(671), + [sym_update_expression] = STATE(671), + [sym_cast_expression] = STATE(671), + [sym_sizeof_expression] = STATE(671), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(671), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(671), + [sym_concatenated_string] = STATE(671), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(929), + [anon_sym_SEMI] = ACTIONS(99), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(109), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_do] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_return] = ACTIONS(119), + [anon_sym_break] = ACTIONS(121), + [anon_sym_continue] = ACTIONS(123), + [anon_sym_goto] = ACTIONS(125), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(127), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(129), + [sym_false] = ACTIONS(129), + [sym_null] = ACTIONS(129), + [sym_comment] = ACTIONS(3), }, [126] = { - [sym_identifier] = ACTIONS(796), + [ts_builtin_sym_end] = ACTIONS(995), + [sym_identifier] = ACTIONS(997), + [aux_sym_preproc_include_token1] = ACTIONS(997), + [aux_sym_preproc_def_token1] = ACTIONS(997), + [aux_sym_preproc_if_token1] = ACTIONS(997), + [aux_sym_preproc_ifdef_token1] = ACTIONS(997), + [aux_sym_preproc_ifdef_token2] = ACTIONS(997), + [sym_preproc_directive] = ACTIONS(997), + [anon_sym_SEMI] = ACTIONS(995), + [anon_sym_typedef] = ACTIONS(997), + [anon_sym_extern] = ACTIONS(997), + [anon_sym___attribute__] = ACTIONS(997), + [anon_sym_LPAREN2] = ACTIONS(995), + [anon_sym_LBRACE] = ACTIONS(995), + [anon_sym_RBRACE] = ACTIONS(995), + [anon_sym_STAR] = ACTIONS(995), + [anon_sym_static] = ACTIONS(997), + [anon_sym_auto] = ACTIONS(997), + [anon_sym_register] = ACTIONS(997), + [anon_sym_inline] = ACTIONS(997), + [anon_sym_const] = ACTIONS(997), + [anon_sym_volatile] = ACTIONS(997), + [anon_sym_restrict] = ACTIONS(997), + [anon_sym__Atomic] = ACTIONS(997), + [anon_sym_signed] = ACTIONS(997), + [anon_sym_unsigned] = ACTIONS(997), + [anon_sym_long] = ACTIONS(997), + [anon_sym_short] = ACTIONS(997), + [sym_primitive_type] = ACTIONS(997), + [anon_sym_enum] = ACTIONS(997), + [anon_sym_struct] = ACTIONS(997), + [anon_sym_union] = ACTIONS(997), + [anon_sym_if] = ACTIONS(997), + [anon_sym_else] = ACTIONS(997), + [anon_sym_switch] = ACTIONS(997), + [anon_sym_case] = ACTIONS(997), + [anon_sym_default] = ACTIONS(997), + [anon_sym_while] = ACTIONS(997), + [anon_sym_do] = ACTIONS(997), + [anon_sym_for] = ACTIONS(997), + [anon_sym_return] = ACTIONS(997), + [anon_sym_break] = ACTIONS(997), + [anon_sym_continue] = ACTIONS(997), + [anon_sym_goto] = ACTIONS(997), + [anon_sym_AMP] = ACTIONS(995), + [anon_sym_BANG] = ACTIONS(995), + [anon_sym_TILDE] = ACTIONS(995), + [anon_sym_DASH] = ACTIONS(997), + [anon_sym_PLUS] = ACTIONS(997), + [anon_sym_DASH_DASH] = ACTIONS(995), + [anon_sym_PLUS_PLUS] = ACTIONS(995), + [anon_sym_sizeof] = ACTIONS(997), + [sym_number_literal] = ACTIONS(995), + [anon_sym_L_SQUOTE] = ACTIONS(995), + [anon_sym_SQUOTE] = ACTIONS(995), + [anon_sym_L_DQUOTE] = ACTIONS(995), + [anon_sym_DQUOTE] = ACTIONS(995), + [sym_true] = ACTIONS(997), + [sym_false] = ACTIONS(997), + [sym_null] = ACTIONS(997), [sym_comment] = ACTIONS(3), }, [127] = { - [sym_preproc_arg] = ACTIONS(798), - [sym_comment] = ACTIONS(147), + [sym_compound_statement] = STATE(623), + [sym_labeled_statement] = STATE(623), + [sym_expression_statement] = STATE(623), + [sym_if_statement] = STATE(623), + [sym_switch_statement] = STATE(623), + [sym_while_statement] = STATE(623), + [sym_do_statement] = STATE(623), + [sym_for_statement] = STATE(623), + [sym_return_statement] = STATE(623), + [sym_break_statement] = STATE(623), + [sym_continue_statement] = STATE(623), + [sym_goto_statement] = STATE(623), + [sym__expression] = STATE(713), + [sym_comma_expression] = STATE(1120), + [sym_conditional_expression] = STATE(713), + [sym_assignment_expression] = STATE(713), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(713), + [sym_binary_expression] = STATE(713), + [sym_update_expression] = STATE(713), + [sym_cast_expression] = STATE(713), + [sym_sizeof_expression] = STATE(713), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(713), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(713), + [sym_concatenated_string] = STATE(713), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(785), + [anon_sym_SEMI] = ACTIONS(787), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(789), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(793), + [anon_sym_switch] = ACTIONS(795), + [anon_sym_while] = ACTIONS(801), + [anon_sym_do] = ACTIONS(803), + [anon_sym_for] = ACTIONS(805), + [anon_sym_return] = ACTIONS(807), + [anon_sym_break] = ACTIONS(809), + [anon_sym_continue] = ACTIONS(811), + [anon_sym_goto] = ACTIONS(813), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(815), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(817), + [sym_false] = ACTIONS(817), + [sym_null] = ACTIONS(817), + [sym_comment] = ACTIONS(3), }, [128] = { - [anon_sym_restrict] = ACTIONS(800), - [anon_sym_COMMA] = ACTIONS(802), - [anon_sym_static] = ACTIONS(800), - [anon_sym_volatile] = ACTIONS(800), - [anon_sym_register] = ACTIONS(800), - [anon_sym_extern] = ACTIONS(800), - [anon_sym_STAR] = ACTIONS(802), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(800), - [anon_sym_LPAREN2] = ACTIONS(802), - [anon_sym_COLON] = ACTIONS(802), - [anon_sym_SEMI] = ACTIONS(802), - [anon_sym__Atomic] = ACTIONS(800), - [sym_identifier] = ACTIONS(800), - [anon_sym_auto] = ACTIONS(800), - [anon_sym_RPAREN] = ACTIONS(802), - [anon_sym_inline] = ACTIONS(800), - [anon_sym___attribute__] = ACTIONS(800), - [anon_sym_LBRACK] = ACTIONS(802), + [sym_compound_statement] = STATE(284), + [sym_labeled_statement] = STATE(284), + [sym_expression_statement] = STATE(284), + [sym_if_statement] = STATE(284), + [sym_switch_statement] = STATE(284), + [sym_while_statement] = STATE(284), + [sym_do_statement] = STATE(284), + [sym_for_statement] = STATE(284), + [sym_return_statement] = STATE(284), + [sym_break_statement] = STATE(284), + [sym_continue_statement] = STATE(284), + [sym_goto_statement] = STATE(284), + [sym__expression] = STATE(707), + [sym_comma_expression] = STATE(1207), + [sym_conditional_expression] = STATE(707), + [sym_assignment_expression] = STATE(707), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(707), + [sym_binary_expression] = STATE(707), + [sym_update_expression] = STATE(707), + [sym_cast_expression] = STATE(707), + [sym_sizeof_expression] = STATE(707), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(707), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(707), + [sym_concatenated_string] = STATE(707), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(917), + [anon_sym_SEMI] = ACTIONS(358), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(364), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(370), + [anon_sym_switch] = ACTIONS(372), + [anon_sym_while] = ACTIONS(374), + [anon_sym_do] = ACTIONS(376), + [anon_sym_for] = ACTIONS(378), + [anon_sym_return] = ACTIONS(380), + [anon_sym_break] = ACTIONS(382), + [anon_sym_continue] = ACTIONS(384), + [anon_sym_goto] = ACTIONS(386), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(388), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(390), + [sym_false] = ACTIONS(390), + [sym_null] = ACTIONS(390), + [sym_comment] = ACTIONS(3), }, [129] = { - [sym_preproc_def] = STATE(222), - [sym_preproc_function_def] = STATE(222), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(222), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(130), - [sym_union_specifier] = STATE(130), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_preproc_call] = STATE(222), - [sym_preproc_if_in_field_declaration_list] = STATE(222), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(222), - [sym__declaration_specifiers] = STATE(131), - [sym_sized_type_specifier] = STATE(130), - [sym_enum_specifier] = STATE(130), - [sym__field_declaration_list_item] = STATE(222), - [sym_field_declaration] = STATE(222), - [sym_attribute_specifier] = STATE(43), - [sym_macro_type_specifier] = STATE(130), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_storage_class_specifier] = STATE(43), - [sym_struct_specifier] = STATE(130), - [anon_sym_union] = ACTIONS(37), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(7), - [anon_sym_short] = ACTIONS(27), - [sym_preproc_directive] = ACTIONS(342), - [aux_sym_preproc_if_token1] = ACTIONS(344), - [anon_sym_const] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(804), - [anon_sym__Atomic] = ACTIONS(7), - [sym_primitive_type] = ACTIONS(348), - [sym_identifier] = ACTIONS(187), - [aux_sym_preproc_ifdef_token1] = ACTIONS(350), - [anon_sym_static] = ACTIONS(63), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_register] = ACTIONS(63), - [anon_sym_extern] = ACTIONS(63), - [anon_sym_struct] = ACTIONS(25), - [anon_sym_signed] = ACTIONS(27), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_long] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(350), - [aux_sym_preproc_def_token1] = ACTIONS(352), - [anon_sym_auto] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(31), + [sym_compound_statement] = STATE(239), + [sym_labeled_statement] = STATE(239), + [sym_expression_statement] = STATE(239), + [sym_if_statement] = STATE(239), + [sym_switch_statement] = STATE(239), + [sym_while_statement] = STATE(239), + [sym_do_statement] = STATE(239), + [sym_for_statement] = STATE(239), + [sym_return_statement] = STATE(239), + [sym_break_statement] = STATE(239), + [sym_continue_statement] = STATE(239), + [sym_goto_statement] = STATE(239), + [sym__expression] = STATE(671), + [sym_comma_expression] = STATE(1275), + [sym_conditional_expression] = STATE(671), + [sym_assignment_expression] = STATE(671), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(671), + [sym_binary_expression] = STATE(671), + [sym_update_expression] = STATE(671), + [sym_cast_expression] = STATE(671), + [sym_sizeof_expression] = STATE(671), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(671), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(671), + [sym_concatenated_string] = STATE(671), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(929), + [anon_sym_SEMI] = ACTIONS(99), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(109), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_do] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_return] = ACTIONS(119), + [anon_sym_break] = ACTIONS(121), + [anon_sym_continue] = ACTIONS(123), + [anon_sym_goto] = ACTIONS(125), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(127), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(129), + [sym_false] = ACTIONS(129), + [sym_null] = ACTIONS(129), + [sym_comment] = ACTIONS(3), }, [130] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(113), - [sym_attribute_specifier] = STATE(113), - [sym_storage_class_specifier] = STATE(113), - [sym_type_qualifier] = STATE(113), - [anon_sym_restrict] = ACTIONS(7), - [anon_sym_COMMA] = ACTIONS(307), - [anon_sym_static] = ACTIONS(63), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_register] = ACTIONS(63), - [anon_sym_extern] = ACTIONS(63), - [anon_sym_STAR] = ACTIONS(307), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(7), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_COLON] = ACTIONS(307), - [anon_sym_SEMI] = ACTIONS(307), - [anon_sym__Atomic] = ACTIONS(7), - [sym_identifier] = ACTIONS(311), - [anon_sym_auto] = ACTIONS(63), - [anon_sym_RPAREN] = ACTIONS(307), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(307), + [sym_compound_statement] = STATE(628), + [sym_labeled_statement] = STATE(628), + [sym_expression_statement] = STATE(628), + [sym_if_statement] = STATE(628), + [sym_switch_statement] = STATE(628), + [sym_while_statement] = STATE(628), + [sym_do_statement] = STATE(628), + [sym_for_statement] = STATE(628), + [sym_return_statement] = STATE(628), + [sym_break_statement] = STATE(628), + [sym_continue_statement] = STATE(628), + [sym_goto_statement] = STATE(628), + [sym__expression] = STATE(713), + [sym_comma_expression] = STATE(1120), + [sym_conditional_expression] = STATE(713), + [sym_assignment_expression] = STATE(713), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(713), + [sym_binary_expression] = STATE(713), + [sym_update_expression] = STATE(713), + [sym_cast_expression] = STATE(713), + [sym_sizeof_expression] = STATE(713), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(713), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(713), + [sym_concatenated_string] = STATE(713), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(785), + [anon_sym_SEMI] = ACTIONS(787), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(789), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(793), + [anon_sym_switch] = ACTIONS(795), + [anon_sym_while] = ACTIONS(801), + [anon_sym_do] = ACTIONS(803), + [anon_sym_for] = ACTIONS(805), + [anon_sym_return] = ACTIONS(807), + [anon_sym_break] = ACTIONS(809), + [anon_sym_continue] = ACTIONS(811), + [anon_sym_goto] = ACTIONS(813), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(815), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(817), + [sym_false] = ACTIONS(817), + [sym_null] = ACTIONS(817), + [sym_comment] = ACTIONS(3), }, [131] = { - [sym__field_declarator] = STATE(229), - [sym_parenthesized_field_declarator] = STATE(229), - [sym_function_field_declarator] = STATE(229), - [sym_bitfield_clause] = STATE(228), - [sym_pointer_field_declarator] = STATE(229), - [sym_array_field_declarator] = STATE(229), - [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(806), - [anon_sym_LPAREN2] = ACTIONS(808), - [sym_identifier] = ACTIONS(810), - [anon_sym_COLON] = ACTIONS(812), - [anon_sym_SEMI] = ACTIONS(814), + [sym_compound_statement] = STATE(641), + [sym_labeled_statement] = STATE(641), + [sym_expression_statement] = STATE(641), + [sym_if_statement] = STATE(641), + [sym_switch_statement] = STATE(641), + [sym_while_statement] = STATE(641), + [sym_do_statement] = STATE(641), + [sym_for_statement] = STATE(641), + [sym_return_statement] = STATE(641), + [sym_break_statement] = STATE(641), + [sym_continue_statement] = STATE(641), + [sym_goto_statement] = STATE(641), + [sym__expression] = STATE(713), + [sym_comma_expression] = STATE(1120), + [sym_conditional_expression] = STATE(713), + [sym_assignment_expression] = STATE(713), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(713), + [sym_binary_expression] = STATE(713), + [sym_update_expression] = STATE(713), + [sym_cast_expression] = STATE(713), + [sym_sizeof_expression] = STATE(713), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(713), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(713), + [sym_concatenated_string] = STATE(713), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(785), + [anon_sym_SEMI] = ACTIONS(787), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(789), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(793), + [anon_sym_switch] = ACTIONS(795), + [anon_sym_while] = ACTIONS(801), + [anon_sym_do] = ACTIONS(803), + [anon_sym_for] = ACTIONS(805), + [anon_sym_return] = ACTIONS(807), + [anon_sym_break] = ACTIONS(809), + [anon_sym_continue] = ACTIONS(811), + [anon_sym_goto] = ACTIONS(813), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(815), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(817), + [sym_false] = ACTIONS(817), + [sym_null] = ACTIONS(817), + [sym_comment] = ACTIONS(3), }, [132] = { - [anon_sym_restrict] = ACTIONS(816), - [anon_sym_COMMA] = ACTIONS(818), - [anon_sym_static] = ACTIONS(816), - [anon_sym_volatile] = ACTIONS(816), - [anon_sym_register] = ACTIONS(816), - [anon_sym_extern] = ACTIONS(816), - [anon_sym_STAR] = ACTIONS(818), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(816), - [anon_sym_LPAREN2] = ACTIONS(818), - [anon_sym_COLON] = ACTIONS(818), - [anon_sym_SEMI] = ACTIONS(818), - [anon_sym__Atomic] = ACTIONS(816), - [sym_identifier] = ACTIONS(816), - [anon_sym_auto] = ACTIONS(816), - [anon_sym_RPAREN] = ACTIONS(818), - [anon_sym_inline] = ACTIONS(816), - [anon_sym___attribute__] = ACTIONS(816), - [anon_sym_LBRACK] = ACTIONS(818), + [sym_compound_statement] = STATE(294), + [sym_labeled_statement] = STATE(294), + [sym_expression_statement] = STATE(294), + [sym_if_statement] = STATE(294), + [sym_switch_statement] = STATE(294), + [sym_while_statement] = STATE(294), + [sym_do_statement] = STATE(294), + [sym_for_statement] = STATE(294), + [sym_return_statement] = STATE(294), + [sym_break_statement] = STATE(294), + [sym_continue_statement] = STATE(294), + [sym_goto_statement] = STATE(294), + [sym__expression] = STATE(707), + [sym_comma_expression] = STATE(1207), + [sym_conditional_expression] = STATE(707), + [sym_assignment_expression] = STATE(707), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(707), + [sym_binary_expression] = STATE(707), + [sym_update_expression] = STATE(707), + [sym_cast_expression] = STATE(707), + [sym_sizeof_expression] = STATE(707), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(707), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(707), + [sym_concatenated_string] = STATE(707), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(917), + [anon_sym_SEMI] = ACTIONS(358), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(364), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(370), + [anon_sym_switch] = ACTIONS(372), + [anon_sym_while] = ACTIONS(374), + [anon_sym_do] = ACTIONS(376), + [anon_sym_for] = ACTIONS(378), + [anon_sym_return] = ACTIONS(380), + [anon_sym_break] = ACTIONS(382), + [anon_sym_continue] = ACTIONS(384), + [anon_sym_goto] = ACTIONS(386), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(388), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(390), + [sym_false] = ACTIONS(390), + [sym_null] = ACTIONS(390), + [sym_comment] = ACTIONS(3), }, [133] = { - [sym_parenthesized_expression] = STATE(230), + [sym_compound_statement] = STATE(211), + [sym_labeled_statement] = STATE(211), + [sym_expression_statement] = STATE(211), + [sym_if_statement] = STATE(211), + [sym_switch_statement] = STATE(211), + [sym_while_statement] = STATE(211), + [sym_do_statement] = STATE(211), + [sym_for_statement] = STATE(211), + [sym_return_statement] = STATE(211), + [sym_break_statement] = STATE(211), + [sym_continue_statement] = STATE(211), + [sym_goto_statement] = STATE(211), + [sym__expression] = STATE(671), + [sym_comma_expression] = STATE(1275), + [sym_conditional_expression] = STATE(671), + [sym_assignment_expression] = STATE(671), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(671), + [sym_binary_expression] = STATE(671), + [sym_update_expression] = STATE(671), + [sym_cast_expression] = STATE(671), + [sym_sizeof_expression] = STATE(671), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(671), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(671), + [sym_concatenated_string] = STATE(671), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(929), + [anon_sym_SEMI] = ACTIONS(99), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(109), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_do] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_return] = ACTIONS(119), + [anon_sym_break] = ACTIONS(121), + [anon_sym_continue] = ACTIONS(123), + [anon_sym_goto] = ACTIONS(125), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(127), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(129), + [sym_false] = ACTIONS(129), + [sym_null] = ACTIONS(129), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(820), }, [134] = { - [anon_sym_case] = ACTIONS(822), - [sym_true] = ACTIONS(822), - [anon_sym_restrict] = ACTIONS(822), - [sym_null] = ACTIONS(822), - [anon_sym_goto] = ACTIONS(822), - [anon_sym_const] = ACTIONS(822), - [anon_sym_typedef] = ACTIONS(822), - [anon_sym_DASH_DASH] = ACTIONS(824), - [anon_sym_default] = ACTIONS(822), - [anon_sym__Atomic] = ACTIONS(822), - [sym_identifier] = ACTIONS(822), - [aux_sym_preproc_ifdef_token1] = ACTIONS(822), - [sym_number_literal] = ACTIONS(824), - [anon_sym_volatile] = ACTIONS(822), - [anon_sym_SQUOTE] = ACTIONS(824), - [anon_sym_extern] = ACTIONS(822), - [anon_sym_PLUS_PLUS] = ACTIONS(824), - [anon_sym_struct] = ACTIONS(822), - [anon_sym_signed] = ACTIONS(822), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(822), - [anon_sym_while] = ACTIONS(822), - [aux_sym_preproc_ifdef_token2] = ACTIONS(822), - [anon_sym_L_SQUOTE] = ACTIONS(824), - [anon_sym___attribute__] = ACTIONS(822), - [anon_sym_sizeof] = ACTIONS(822), - [anon_sym_LBRACE] = ACTIONS(824), - [anon_sym_union] = ACTIONS(822), - [anon_sym_unsigned] = ACTIONS(822), - [anon_sym_short] = ACTIONS(822), - [anon_sym_do] = ACTIONS(822), - [sym_preproc_directive] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(824), - [aux_sym_preproc_if_token1] = ACTIONS(822), - [anon_sym_TILDE] = ACTIONS(824), - [anon_sym_L_DQUOTE] = ACTIONS(824), - [anon_sym_LPAREN2] = ACTIONS(824), - [anon_sym_RBRACE] = ACTIONS(824), - [anon_sym_else] = ACTIONS(822), - [sym_primitive_type] = ACTIONS(822), - [anon_sym_for] = ACTIONS(822), - [anon_sym_break] = ACTIONS(822), - [anon_sym_BANG] = ACTIONS(824), - [aux_sym_preproc_include_token1] = ACTIONS(822), - [anon_sym_DASH] = ACTIONS(822), - [anon_sym_static] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(824), - [anon_sym_register] = ACTIONS(822), - [anon_sym_STAR] = ACTIONS(824), - [anon_sym_if] = ACTIONS(822), - [anon_sym_switch] = ACTIONS(822), - [anon_sym_enum] = ACTIONS(822), - [sym_false] = ACTIONS(822), - [ts_builtin_sym_end] = ACTIONS(824), - [anon_sym_return] = ACTIONS(822), - [anon_sym_continue] = ACTIONS(822), - [anon_sym_SEMI] = ACTIONS(824), - [aux_sym_preproc_def_token1] = ACTIONS(822), - [anon_sym_PLUS] = ACTIONS(822), - [anon_sym_auto] = ACTIONS(822), - [anon_sym_inline] = ACTIONS(822), + [sym_compound_statement] = STATE(1186), + [sym_labeled_statement] = STATE(1186), + [sym_expression_statement] = STATE(1186), + [sym_if_statement] = STATE(1186), + [sym_switch_statement] = STATE(1186), + [sym_while_statement] = STATE(1186), + [sym_do_statement] = STATE(1186), + [sym_for_statement] = STATE(1186), + [sym_return_statement] = STATE(1186), + [sym_break_statement] = STATE(1186), + [sym_continue_statement] = STATE(1186), + [sym_goto_statement] = STATE(1186), + [sym__expression] = STATE(721), + [sym_comma_expression] = STATE(1123), + [sym_conditional_expression] = STATE(721), + [sym_assignment_expression] = STATE(721), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(721), + [sym_binary_expression] = STATE(721), + [sym_update_expression] = STATE(721), + [sym_cast_expression] = STATE(721), + [sym_sizeof_expression] = STATE(721), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(721), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(721), + [sym_concatenated_string] = STATE(721), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(919), + [anon_sym_SEMI] = ACTIONS(19), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(921), + [anon_sym_switch] = ACTIONS(49), + [anon_sym_while] = ACTIONS(923), + [anon_sym_do] = ACTIONS(925), + [anon_sym_for] = ACTIONS(927), + [anon_sym_return] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(61), + [anon_sym_goto] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(73), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_null] = ACTIONS(79), + [sym_comment] = ACTIONS(3), }, [135] = { - [sym_true] = ACTIONS(826), - [anon_sym_restrict] = ACTIONS(826), - [sym_null] = ACTIONS(826), - [anon_sym_goto] = ACTIONS(826), - [anon_sym_const] = ACTIONS(826), - [anon_sym_typedef] = ACTIONS(826), - [anon_sym_DASH_DASH] = ACTIONS(828), - [anon_sym__Atomic] = ACTIONS(826), - [sym_identifier] = ACTIONS(826), - [aux_sym_preproc_ifdef_token1] = ACTIONS(826), - [sym_number_literal] = ACTIONS(828), - [anon_sym_volatile] = ACTIONS(826), - [anon_sym_SQUOTE] = ACTIONS(828), - [anon_sym_extern] = ACTIONS(826), - [anon_sym_PLUS_PLUS] = ACTIONS(828), - [anon_sym_struct] = ACTIONS(826), - [anon_sym_signed] = ACTIONS(826), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(826), - [anon_sym_while] = ACTIONS(826), - [aux_sym_preproc_ifdef_token2] = ACTIONS(826), - [anon_sym_L_SQUOTE] = ACTIONS(828), - [anon_sym___attribute__] = ACTIONS(826), - [anon_sym_sizeof] = ACTIONS(826), - [anon_sym_LBRACE] = ACTIONS(828), - [anon_sym_union] = ACTIONS(826), - [anon_sym_unsigned] = ACTIONS(826), - [anon_sym_short] = ACTIONS(826), - [anon_sym_do] = ACTIONS(826), - [sym_preproc_directive] = ACTIONS(826), - [anon_sym_AMP] = ACTIONS(828), - [aux_sym_preproc_if_token1] = ACTIONS(826), - [anon_sym_TILDE] = ACTIONS(828), - [anon_sym_L_DQUOTE] = ACTIONS(828), - [anon_sym_LPAREN2] = ACTIONS(828), - [sym_primitive_type] = ACTIONS(826), - [anon_sym_for] = ACTIONS(826), - [anon_sym_break] = ACTIONS(826), - [anon_sym_BANG] = ACTIONS(828), - [aux_sym_preproc_include_token1] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_static] = ACTIONS(826), - [anon_sym_DQUOTE] = ACTIONS(828), - [anon_sym_register] = ACTIONS(826), - [anon_sym_STAR] = ACTIONS(828), - [anon_sym_if] = ACTIONS(826), - [anon_sym_switch] = ACTIONS(826), - [anon_sym_enum] = ACTIONS(826), - [sym_false] = ACTIONS(826), - [ts_builtin_sym_end] = ACTIONS(828), - [anon_sym_return] = ACTIONS(826), - [anon_sym_continue] = ACTIONS(826), - [anon_sym_SEMI] = ACTIONS(828), - [aux_sym_preproc_def_token1] = ACTIONS(826), - [anon_sym_PLUS] = ACTIONS(826), - [anon_sym_auto] = ACTIONS(826), - [anon_sym_inline] = ACTIONS(826), + [sym_compound_statement] = STATE(102), + [sym_labeled_statement] = STATE(102), + [sym_expression_statement] = STATE(102), + [sym_if_statement] = STATE(102), + [sym_switch_statement] = STATE(102), + [sym_while_statement] = STATE(102), + [sym_do_statement] = STATE(102), + [sym_for_statement] = STATE(102), + [sym_return_statement] = STATE(102), + [sym_break_statement] = STATE(102), + [sym_continue_statement] = STATE(102), + [sym_goto_statement] = STATE(102), + [sym__expression] = STATE(721), + [sym_comma_expression] = STATE(1123), + [sym_conditional_expression] = STATE(721), + [sym_assignment_expression] = STATE(721), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(721), + [sym_binary_expression] = STATE(721), + [sym_update_expression] = STATE(721), + [sym_cast_expression] = STATE(721), + [sym_sizeof_expression] = STATE(721), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(721), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(721), + [sym_concatenated_string] = STATE(721), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(935), + [anon_sym_SEMI] = ACTIONS(19), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(47), + [anon_sym_switch] = ACTIONS(49), + [anon_sym_while] = ACTIONS(51), + [anon_sym_do] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_return] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(61), + [anon_sym_goto] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(73), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_null] = ACTIONS(79), + [sym_comment] = ACTIONS(3), }, [136] = { - [sym_true] = ACTIONS(830), - [anon_sym_restrict] = ACTIONS(830), - [sym_null] = ACTIONS(830), - [anon_sym_goto] = ACTIONS(830), - [anon_sym_const] = ACTIONS(830), - [anon_sym_typedef] = ACTIONS(830), - [anon_sym_DASH_DASH] = ACTIONS(832), - [anon_sym__Atomic] = ACTIONS(830), - [sym_identifier] = ACTIONS(830), - [aux_sym_preproc_ifdef_token1] = ACTIONS(830), - [sym_number_literal] = ACTIONS(832), - [anon_sym_volatile] = ACTIONS(830), - [anon_sym_SQUOTE] = ACTIONS(832), - [anon_sym_extern] = ACTIONS(830), - [anon_sym_PLUS_PLUS] = ACTIONS(832), - [anon_sym_struct] = ACTIONS(830), - [anon_sym_signed] = ACTIONS(830), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(830), - [anon_sym_while] = ACTIONS(830), - [aux_sym_preproc_ifdef_token2] = ACTIONS(830), - [anon_sym_L_SQUOTE] = ACTIONS(832), - [anon_sym___attribute__] = ACTIONS(830), - [anon_sym_sizeof] = ACTIONS(830), - [anon_sym_LBRACE] = ACTIONS(832), - [anon_sym_union] = ACTIONS(830), - [anon_sym_unsigned] = ACTIONS(830), - [anon_sym_short] = ACTIONS(830), - [anon_sym_do] = ACTIONS(830), - [sym_preproc_directive] = ACTIONS(830), - [anon_sym_AMP] = ACTIONS(832), - [aux_sym_preproc_if_token1] = ACTIONS(830), - [anon_sym_TILDE] = ACTIONS(832), - [anon_sym_L_DQUOTE] = ACTIONS(832), - [anon_sym_LPAREN2] = ACTIONS(832), - [sym_primitive_type] = ACTIONS(830), - [anon_sym_for] = ACTIONS(830), - [anon_sym_break] = ACTIONS(830), - [anon_sym_BANG] = ACTIONS(832), - [aux_sym_preproc_include_token1] = ACTIONS(830), - [anon_sym_DASH] = ACTIONS(830), - [anon_sym_static] = ACTIONS(830), - [anon_sym_DQUOTE] = ACTIONS(832), - [anon_sym_register] = ACTIONS(830), - [anon_sym_STAR] = ACTIONS(832), - [anon_sym_if] = ACTIONS(830), - [anon_sym_switch] = ACTIONS(830), - [anon_sym_enum] = ACTIONS(830), - [sym_false] = ACTIONS(830), - [ts_builtin_sym_end] = ACTIONS(832), - [anon_sym_return] = ACTIONS(830), - [anon_sym_continue] = ACTIONS(830), - [anon_sym_SEMI] = ACTIONS(832), - [aux_sym_preproc_def_token1] = ACTIONS(830), - [anon_sym_PLUS] = ACTIONS(830), - [anon_sym_auto] = ACTIONS(830), - [anon_sym_inline] = ACTIONS(830), + [sym_compound_statement] = STATE(281), + [sym_labeled_statement] = STATE(281), + [sym_expression_statement] = STATE(281), + [sym_if_statement] = STATE(281), + [sym_switch_statement] = STATE(281), + [sym_while_statement] = STATE(281), + [sym_do_statement] = STATE(281), + [sym_for_statement] = STATE(281), + [sym_return_statement] = STATE(281), + [sym_break_statement] = STATE(281), + [sym_continue_statement] = STATE(281), + [sym_goto_statement] = STATE(281), + [sym__expression] = STATE(688), + [sym_comma_expression] = STATE(1124), + [sym_conditional_expression] = STATE(688), + [sym_assignment_expression] = STATE(688), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(688), + [sym_binary_expression] = STATE(688), + [sym_update_expression] = STATE(688), + [sym_cast_expression] = STATE(688), + [sym_sizeof_expression] = STATE(688), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(688), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(688), + [sym_concatenated_string] = STATE(688), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(937), + [anon_sym_SEMI] = ACTIONS(410), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(416), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(420), + [anon_sym_switch] = ACTIONS(422), + [anon_sym_while] = ACTIONS(424), + [anon_sym_do] = ACTIONS(426), + [anon_sym_for] = ACTIONS(428), + [anon_sym_return] = ACTIONS(430), + [anon_sym_break] = ACTIONS(432), + [anon_sym_continue] = ACTIONS(434), + [anon_sym_goto] = ACTIONS(436), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(438), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(440), + [sym_false] = ACTIONS(440), + [sym_null] = ACTIONS(440), + [sym_comment] = ACTIONS(3), }, [137] = { - [sym_preproc_arg] = ACTIONS(834), - [sym_comment] = ACTIONS(147), + [ts_builtin_sym_end] = ACTIONS(999), + [sym_identifier] = ACTIONS(1001), + [aux_sym_preproc_include_token1] = ACTIONS(1001), + [aux_sym_preproc_def_token1] = ACTIONS(1001), + [aux_sym_preproc_if_token1] = ACTIONS(1001), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1001), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1001), + [sym_preproc_directive] = ACTIONS(1001), + [anon_sym_SEMI] = ACTIONS(999), + [anon_sym_typedef] = ACTIONS(1001), + [anon_sym_extern] = ACTIONS(1001), + [anon_sym___attribute__] = ACTIONS(1001), + [anon_sym_LPAREN2] = ACTIONS(999), + [anon_sym_LBRACE] = ACTIONS(999), + [anon_sym_RBRACE] = ACTIONS(999), + [anon_sym_STAR] = ACTIONS(999), + [anon_sym_static] = ACTIONS(1001), + [anon_sym_auto] = ACTIONS(1001), + [anon_sym_register] = ACTIONS(1001), + [anon_sym_inline] = ACTIONS(1001), + [anon_sym_const] = ACTIONS(1001), + [anon_sym_volatile] = ACTIONS(1001), + [anon_sym_restrict] = ACTIONS(1001), + [anon_sym__Atomic] = ACTIONS(1001), + [anon_sym_signed] = ACTIONS(1001), + [anon_sym_unsigned] = ACTIONS(1001), + [anon_sym_long] = ACTIONS(1001), + [anon_sym_short] = ACTIONS(1001), + [sym_primitive_type] = ACTIONS(1001), + [anon_sym_enum] = ACTIONS(1001), + [anon_sym_struct] = ACTIONS(1001), + [anon_sym_union] = ACTIONS(1001), + [anon_sym_if] = ACTIONS(1001), + [anon_sym_else] = ACTIONS(1001), + [anon_sym_switch] = ACTIONS(1001), + [anon_sym_case] = ACTIONS(1001), + [anon_sym_default] = ACTIONS(1001), + [anon_sym_while] = ACTIONS(1001), + [anon_sym_do] = ACTIONS(1001), + [anon_sym_for] = ACTIONS(1001), + [anon_sym_return] = ACTIONS(1001), + [anon_sym_break] = ACTIONS(1001), + [anon_sym_continue] = ACTIONS(1001), + [anon_sym_goto] = ACTIONS(1001), + [anon_sym_AMP] = ACTIONS(999), + [anon_sym_BANG] = ACTIONS(999), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH_DASH] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_sizeof] = ACTIONS(1001), + [sym_number_literal] = ACTIONS(999), + [anon_sym_L_SQUOTE] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(999), + [anon_sym_L_DQUOTE] = ACTIONS(999), + [anon_sym_DQUOTE] = ACTIONS(999), + [sym_true] = ACTIONS(1001), + [sym_false] = ACTIONS(1001), + [sym_null] = ACTIONS(1001), + [sym_comment] = ACTIONS(3), }, [138] = { - [sym_if_statement] = STATE(232), - [sym_preproc_def] = STATE(232), - [sym_preproc_function_def] = STATE(232), - [sym__expression] = STATE(1030), - [sym_comma_expression] = STATE(1031), - [sym_binary_expression] = STATE(1030), - [sym_update_expression] = STATE(1030), - [sym_call_expression] = STATE(36), - [sym_function_definition] = STATE(232), - [sym_declaration] = STATE(232), - [sym_do_statement] = STATE(232), - [sym_for_statement] = STATE(232), - [aux_sym_translation_unit_repeat1] = STATE(232), - [sym_expression_statement] = STATE(232), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(1032), - [sym_union_specifier] = STATE(1032), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_switch_statement] = STATE(232), - [sym_return_statement] = STATE(232), - [sym_preproc_call] = STATE(232), - [sym_conditional_expression] = STATE(1030), - [sym_assignment_expression] = STATE(1030), - [sym_type_definition] = STATE(232), - [sym_cast_expression] = STATE(1030), - [sym__declaration_specifiers] = STATE(1191), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1030), - [sym_char_literal] = STATE(1030), - [sym_break_statement] = STATE(232), - [sym__empty_declaration] = STATE(232), - [sym_sized_type_specifier] = STATE(1032), - [sym_enum_specifier] = STATE(1032), - [sym_labeled_statement] = STATE(232), - [sym_preproc_include] = STATE(232), - [sym_preproc_if] = STATE(232), - [sym_preproc_ifdef] = STATE(232), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1030), - [sym_sizeof_expression] = STATE(1030), - [sym_attribute_specifier] = STATE(43), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_linkage_specification] = STATE(232), - [sym_concatenated_string] = STATE(1030), - [sym_string_literal] = STATE(41), - [sym_macro_type_specifier] = STATE(1032), - [sym_while_statement] = STATE(232), - [sym_storage_class_specifier] = STATE(43), - [sym_compound_statement] = STATE(232), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_continue_statement] = STATE(232), - [sym_struct_specifier] = STATE(1032), - [sym_goto_statement] = STATE(232), - [sym_true] = ACTIONS(836), - [anon_sym_restrict] = ACTIONS(7), - [sym_null] = ACTIONS(836), - [anon_sym_goto] = ACTIONS(838), - [aux_sym_preproc_if_token2] = ACTIONS(840), - [anon_sym_const] = ACTIONS(7), - [anon_sym_typedef] = ACTIONS(842), - [anon_sym_DASH_DASH] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(7), - [sym_identifier] = ACTIONS(844), - [aux_sym_preproc_ifdef_token1] = ACTIONS(846), - [sym_number_literal] = ACTIONS(848), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_extern] = ACTIONS(850), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_struct] = ACTIONS(25), - [anon_sym_signed] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(27), - [anon_sym_while] = ACTIONS(852), - [aux_sym_preproc_ifdef_token2] = ACTIONS(846), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_sizeof] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_union] = ACTIONS(37), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_short] = ACTIONS(27), - [anon_sym_do] = ACTIONS(856), - [sym_preproc_directive] = ACTIONS(858), - [anon_sym_AMP] = ACTIONS(43), - [aux_sym_preproc_if_token1] = ACTIONS(860), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_break] = ACTIONS(866), - [anon_sym_BANG] = ACTIONS(47), - [aux_sym_preproc_include_token1] = ACTIONS(868), - [anon_sym_DASH] = ACTIONS(61), - [anon_sym_static] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_register] = ACTIONS(63), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(870), - [anon_sym_switch] = ACTIONS(872), - [anon_sym_enum] = ACTIONS(69), - [sym_false] = ACTIONS(836), - [anon_sym_return] = ACTIONS(874), - [anon_sym_continue] = ACTIONS(876), - [anon_sym_SEMI] = ACTIONS(878), - [aux_sym_preproc_def_token1] = ACTIONS(880), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_auto] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), + [sym_compound_statement] = STATE(120), + [sym_labeled_statement] = STATE(120), + [sym_expression_statement] = STATE(120), + [sym_if_statement] = STATE(120), + [sym_switch_statement] = STATE(120), + [sym_while_statement] = STATE(120), + [sym_do_statement] = STATE(120), + [sym_for_statement] = STATE(120), + [sym_return_statement] = STATE(120), + [sym_break_statement] = STATE(120), + [sym_continue_statement] = STATE(120), + [sym_goto_statement] = STATE(120), + [sym__expression] = STATE(721), + [sym_comma_expression] = STATE(1123), + [sym_conditional_expression] = STATE(721), + [sym_assignment_expression] = STATE(721), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(721), + [sym_binary_expression] = STATE(721), + [sym_update_expression] = STATE(721), + [sym_cast_expression] = STATE(721), + [sym_sizeof_expression] = STATE(721), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(721), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(721), + [sym_concatenated_string] = STATE(721), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(935), + [anon_sym_SEMI] = ACTIONS(19), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(47), + [anon_sym_switch] = ACTIONS(49), + [anon_sym_while] = ACTIONS(51), + [anon_sym_do] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_return] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(61), + [anon_sym_goto] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(73), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_null] = ACTIONS(79), + [sym_comment] = ACTIONS(3), }, [139] = { - [aux_sym_preproc_if_token2] = ACTIONS(882), + [sym_compound_statement] = STATE(1165), + [sym_labeled_statement] = STATE(1165), + [sym_expression_statement] = STATE(1165), + [sym_if_statement] = STATE(1165), + [sym_switch_statement] = STATE(1165), + [sym_while_statement] = STATE(1165), + [sym_do_statement] = STATE(1165), + [sym_for_statement] = STATE(1165), + [sym_return_statement] = STATE(1165), + [sym_break_statement] = STATE(1165), + [sym_continue_statement] = STATE(1165), + [sym_goto_statement] = STATE(1165), + [sym__expression] = STATE(721), + [sym_comma_expression] = STATE(1123), + [sym_conditional_expression] = STATE(721), + [sym_assignment_expression] = STATE(721), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(721), + [sym_binary_expression] = STATE(721), + [sym_update_expression] = STATE(721), + [sym_cast_expression] = STATE(721), + [sym_sizeof_expression] = STATE(721), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(721), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(721), + [sym_concatenated_string] = STATE(721), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(919), + [anon_sym_SEMI] = ACTIONS(19), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(921), + [anon_sym_switch] = ACTIONS(49), + [anon_sym_while] = ACTIONS(923), + [anon_sym_do] = ACTIONS(925), + [anon_sym_for] = ACTIONS(927), + [anon_sym_return] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(61), + [anon_sym_goto] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(73), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_null] = ACTIONS(79), [sym_comment] = ACTIONS(3), }, [140] = { - [sym_if_statement] = STATE(636), - [sym_preproc_def] = STATE(636), - [sym_preproc_function_def] = STATE(636), - [sym__expression] = STATE(951), - [sym_comma_expression] = STATE(952), - [sym_binary_expression] = STATE(951), - [sym_update_expression] = STATE(951), - [sym_call_expression] = STATE(36), - [sym_function_definition] = STATE(636), - [sym_declaration] = STATE(636), - [sym_do_statement] = STATE(636), - [sym_for_statement] = STATE(636), - [sym_preproc_else] = STATE(235), - [sym_preproc_elif] = STATE(235), - [aux_sym_translation_unit_repeat1] = STATE(636), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(953), - [sym_union_specifier] = STATE(953), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_expression_statement] = STATE(636), - [sym_switch_statement] = STATE(636), - [sym_return_statement] = STATE(636), - [sym_preproc_call] = STATE(636), - [sym_conditional_expression] = STATE(951), - [sym_assignment_expression] = STATE(951), - [sym_cast_expression] = STATE(951), - [sym__declaration_specifiers] = STATE(1172), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(951), - [sym_type_definition] = STATE(636), - [sym_char_literal] = STATE(951), - [sym_break_statement] = STATE(636), - [sym__empty_declaration] = STATE(636), - [sym_sized_type_specifier] = STATE(953), - [sym_enum_specifier] = STATE(953), - [sym_labeled_statement] = STATE(636), - [sym_preproc_include] = STATE(636), - [sym_preproc_if] = STATE(636), - [sym_preproc_ifdef] = STATE(636), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(951), - [sym_sizeof_expression] = STATE(951), - [sym_attribute_specifier] = STATE(43), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_linkage_specification] = STATE(636), - [sym_concatenated_string] = STATE(951), - [sym_string_literal] = STATE(41), - [sym_macro_type_specifier] = STATE(953), - [sym_while_statement] = STATE(636), - [sym_storage_class_specifier] = STATE(43), - [sym_compound_statement] = STATE(636), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_continue_statement] = STATE(636), - [sym_struct_specifier] = STATE(953), - [sym_goto_statement] = STATE(636), - [sym_true] = ACTIONS(378), - [anon_sym_restrict] = ACTIONS(7), - [sym_null] = ACTIONS(378), - [anon_sym_goto] = ACTIONS(380), - [aux_sym_preproc_if_token2] = ACTIONS(884), - [anon_sym_const] = ACTIONS(7), - [anon_sym_typedef] = ACTIONS(384), - [anon_sym_DASH_DASH] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(7), - [sym_identifier] = ACTIONS(386), - [aux_sym_preproc_ifdef_token1] = ACTIONS(388), - [sym_number_literal] = ACTIONS(390), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_extern] = ACTIONS(392), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_struct] = ACTIONS(25), - [anon_sym_signed] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(27), - [anon_sym_while] = ACTIONS(394), - [aux_sym_preproc_ifdef_token2] = ACTIONS(388), - [aux_sym_preproc_elif_token1] = ACTIONS(396), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_sizeof] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(398), - [anon_sym_union] = ACTIONS(37), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_short] = ACTIONS(27), - [anon_sym_do] = ACTIONS(400), - [aux_sym_preproc_else_token1] = ACTIONS(402), - [sym_preproc_directive] = ACTIONS(404), - [anon_sym_AMP] = ACTIONS(43), - [aux_sym_preproc_if_token1] = ACTIONS(406), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(408), - [anon_sym_for] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_BANG] = ACTIONS(47), - [aux_sym_preproc_include_token1] = ACTIONS(414), - [anon_sym_DASH] = ACTIONS(61), - [anon_sym_static] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_register] = ACTIONS(63), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(416), - [anon_sym_switch] = ACTIONS(418), - [anon_sym_enum] = ACTIONS(69), - [sym_false] = ACTIONS(378), - [anon_sym_return] = ACTIONS(420), - [anon_sym_continue] = ACTIONS(422), - [anon_sym_SEMI] = ACTIONS(424), - [aux_sym_preproc_def_token1] = ACTIONS(426), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_auto] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), + [ts_builtin_sym_end] = ACTIONS(1003), + [sym_identifier] = ACTIONS(1005), + [aux_sym_preproc_include_token1] = ACTIONS(1005), + [aux_sym_preproc_def_token1] = ACTIONS(1005), + [aux_sym_preproc_if_token1] = ACTIONS(1005), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1005), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1005), + [sym_preproc_directive] = ACTIONS(1005), + [anon_sym_SEMI] = ACTIONS(1003), + [anon_sym_typedef] = ACTIONS(1005), + [anon_sym_extern] = ACTIONS(1005), + [anon_sym___attribute__] = ACTIONS(1005), + [anon_sym_LPAREN2] = ACTIONS(1003), + [anon_sym_LBRACE] = ACTIONS(1003), + [anon_sym_RBRACE] = ACTIONS(1003), + [anon_sym_STAR] = ACTIONS(1003), + [anon_sym_static] = ACTIONS(1005), + [anon_sym_auto] = ACTIONS(1005), + [anon_sym_register] = ACTIONS(1005), + [anon_sym_inline] = ACTIONS(1005), + [anon_sym_const] = ACTIONS(1005), + [anon_sym_volatile] = ACTIONS(1005), + [anon_sym_restrict] = ACTIONS(1005), + [anon_sym__Atomic] = ACTIONS(1005), + [anon_sym_signed] = ACTIONS(1005), + [anon_sym_unsigned] = ACTIONS(1005), + [anon_sym_long] = ACTIONS(1005), + [anon_sym_short] = ACTIONS(1005), + [sym_primitive_type] = ACTIONS(1005), + [anon_sym_enum] = ACTIONS(1005), + [anon_sym_struct] = ACTIONS(1005), + [anon_sym_union] = ACTIONS(1005), + [anon_sym_if] = ACTIONS(1005), + [anon_sym_else] = ACTIONS(1005), + [anon_sym_switch] = ACTIONS(1005), + [anon_sym_case] = ACTIONS(1005), + [anon_sym_default] = ACTIONS(1005), + [anon_sym_while] = ACTIONS(1005), + [anon_sym_do] = ACTIONS(1005), + [anon_sym_for] = ACTIONS(1005), + [anon_sym_return] = ACTIONS(1005), + [anon_sym_break] = ACTIONS(1005), + [anon_sym_continue] = ACTIONS(1005), + [anon_sym_goto] = ACTIONS(1005), + [anon_sym_AMP] = ACTIONS(1003), + [anon_sym_BANG] = ACTIONS(1003), + [anon_sym_TILDE] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1005), + [anon_sym_PLUS] = ACTIONS(1005), + [anon_sym_DASH_DASH] = ACTIONS(1003), + [anon_sym_PLUS_PLUS] = ACTIONS(1003), + [anon_sym_sizeof] = ACTIONS(1005), + [sym_number_literal] = ACTIONS(1003), + [anon_sym_L_SQUOTE] = ACTIONS(1003), + [anon_sym_SQUOTE] = ACTIONS(1003), + [anon_sym_L_DQUOTE] = ACTIONS(1003), + [anon_sym_DQUOTE] = ACTIONS(1003), + [sym_true] = ACTIONS(1005), + [sym_false] = ACTIONS(1005), + [sym_null] = ACTIONS(1005), + [sym_comment] = ACTIONS(3), }, [141] = { - [sym_char_literal] = STATE(237), - [sym__expression] = STATE(237), - [sym_binary_expression] = STATE(237), - [sym_update_expression] = STATE(237), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(237), - [sym_sizeof_expression] = STATE(237), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_initializer_list] = STATE(238), - [sym_concatenated_string] = STATE(237), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(237), - [sym_assignment_expression] = STATE(237), - [sym_cast_expression] = STATE(237), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(237), - [anon_sym_LBRACE] = ACTIONS(886), - [sym_true] = ACTIONS(888), - [sym_null] = ACTIONS(888), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(890), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(888), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_compound_statement] = STATE(88), + [sym_labeled_statement] = STATE(88), + [sym_expression_statement] = STATE(88), + [sym_if_statement] = STATE(88), + [sym_switch_statement] = STATE(88), + [sym_while_statement] = STATE(88), + [sym_do_statement] = STATE(88), + [sym_for_statement] = STATE(88), + [sym_return_statement] = STATE(88), + [sym_break_statement] = STATE(88), + [sym_continue_statement] = STATE(88), + [sym_goto_statement] = STATE(88), + [sym__expression] = STATE(721), + [sym_comma_expression] = STATE(1123), + [sym_conditional_expression] = STATE(721), + [sym_assignment_expression] = STATE(721), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(721), + [sym_binary_expression] = STATE(721), + [sym_update_expression] = STATE(721), + [sym_cast_expression] = STATE(721), + [sym_sizeof_expression] = STATE(721), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(721), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(721), + [sym_concatenated_string] = STATE(721), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(919), + [anon_sym_SEMI] = ACTIONS(19), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(921), + [anon_sym_switch] = ACTIONS(49), + [anon_sym_while] = ACTIONS(923), + [anon_sym_do] = ACTIONS(925), + [anon_sym_for] = ACTIONS(927), + [anon_sym_return] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(61), + [anon_sym_goto] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(73), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_null] = ACTIONS(79), + [sym_comment] = ACTIONS(3), }, [142] = { - [anon_sym_GT_GT] = ACTIONS(892), - [anon_sym_PERCENT_EQ] = ACTIONS(894), - [anon_sym_DASH_EQ] = ACTIONS(894), - [anon_sym_PIPE] = ACTIONS(892), - [anon_sym_EQ_EQ] = ACTIONS(894), - [anon_sym_SLASH] = ACTIONS(892), - [anon_sym_DASH_GT] = ACTIONS(894), - [anon_sym_LT_LT] = ACTIONS(892), - [anon_sym_DASH_DASH] = ACTIONS(894), - [anon_sym_PLUS_EQ] = ACTIONS(894), - [anon_sym_LT_LT_EQ] = ACTIONS(894), - [anon_sym_QMARK] = ACTIONS(894), - [anon_sym_BANG_EQ] = ACTIONS(894), - [anon_sym_CARET_EQ] = ACTIONS(894), - [anon_sym_COMMA] = ACTIONS(894), - [anon_sym_PLUS_PLUS] = ACTIONS(894), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT_EQ] = ACTIONS(894), - [anon_sym_while] = ACTIONS(894), - [anon_sym_GT] = ACTIONS(892), - [anon_sym_PIPE_EQ] = ACTIONS(894), - [anon_sym_RPAREN] = ACTIONS(894), - [anon_sym_RBRACK] = ACTIONS(894), - [anon_sym_LBRACE] = ACTIONS(894), - [anon_sym_AMP_EQ] = ACTIONS(894), - [anon_sym_PERCENT] = ACTIONS(892), - [anon_sym_AMP] = ACTIONS(892), - [anon_sym_EQ] = ACTIONS(892), - [anon_sym_LPAREN2] = ACTIONS(894), - [anon_sym_GT_EQ] = ACTIONS(894), - [anon_sym_RBRACE] = ACTIONS(894), - [anon_sym_COLON] = ACTIONS(894), - [anon_sym_else] = ACTIONS(894), - [anon_sym_STAR_EQ] = ACTIONS(894), - [anon_sym_PIPE_PIPE] = ACTIONS(894), - [anon_sym_DASH] = ACTIONS(892), - [anon_sym_LT_EQ] = ACTIONS(894), - [anon_sym_STAR] = ACTIONS(892), - [anon_sym_SLASH_EQ] = ACTIONS(894), - [anon_sym_AMP_AMP] = ACTIONS(894), - [anon_sym_SEMI] = ACTIONS(894), - [anon_sym_CARET] = ACTIONS(892), - [anon_sym_PLUS] = ACTIONS(892), - [anon_sym_DOT] = ACTIONS(894), - [anon_sym_LT] = ACTIONS(892), - [anon_sym_LBRACK] = ACTIONS(894), + [sym_compound_statement] = STATE(290), + [sym_labeled_statement] = STATE(290), + [sym_expression_statement] = STATE(290), + [sym_if_statement] = STATE(290), + [sym_switch_statement] = STATE(290), + [sym_while_statement] = STATE(290), + [sym_do_statement] = STATE(290), + [sym_for_statement] = STATE(290), + [sym_return_statement] = STATE(290), + [sym_break_statement] = STATE(290), + [sym_continue_statement] = STATE(290), + [sym_goto_statement] = STATE(290), + [sym__expression] = STATE(688), + [sym_comma_expression] = STATE(1124), + [sym_conditional_expression] = STATE(688), + [sym_assignment_expression] = STATE(688), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(688), + [sym_binary_expression] = STATE(688), + [sym_update_expression] = STATE(688), + [sym_cast_expression] = STATE(688), + [sym_sizeof_expression] = STATE(688), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(688), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(688), + [sym_concatenated_string] = STATE(688), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(937), + [anon_sym_SEMI] = ACTIONS(410), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(416), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(420), + [anon_sym_switch] = ACTIONS(422), + [anon_sym_while] = ACTIONS(424), + [anon_sym_do] = ACTIONS(426), + [anon_sym_for] = ACTIONS(428), + [anon_sym_return] = ACTIONS(430), + [anon_sym_break] = ACTIONS(432), + [anon_sym_continue] = ACTIONS(434), + [anon_sym_goto] = ACTIONS(436), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(438), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(440), + [sym_false] = ACTIONS(440), + [sym_null] = ACTIONS(440), + [sym_comment] = ACTIONS(3), }, [143] = { - [sym_abstract_parenthesized_declarator] = STATE(239), - [sym_abstract_array_declarator] = STATE(239), - [sym_parameter_list] = STATE(148), - [sym__abstract_declarator] = STATE(239), - [aux_sym_type_definition_repeat1] = STATE(240), - [sym_abstract_function_declarator] = STATE(239), - [sym_abstract_pointer_declarator] = STATE(239), - [sym_type_qualifier] = STATE(240), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(440), - [anon_sym_LPAREN2] = ACTIONS(442), - [anon_sym_restrict] = ACTIONS(440), - [anon_sym_volatile] = ACTIONS(440), - [anon_sym__Atomic] = ACTIONS(440), - [anon_sym_RPAREN] = ACTIONS(896), - [anon_sym_STAR] = ACTIONS(446), - [anon_sym_LBRACK] = ACTIONS(448), + [ts_builtin_sym_end] = ACTIONS(1007), + [sym_identifier] = ACTIONS(1009), + [aux_sym_preproc_include_token1] = ACTIONS(1009), + [aux_sym_preproc_def_token1] = ACTIONS(1009), + [aux_sym_preproc_if_token1] = ACTIONS(1009), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1009), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1009), + [sym_preproc_directive] = ACTIONS(1009), + [anon_sym_SEMI] = ACTIONS(1007), + [anon_sym_typedef] = ACTIONS(1009), + [anon_sym_extern] = ACTIONS(1009), + [anon_sym___attribute__] = ACTIONS(1009), + [anon_sym_LPAREN2] = ACTIONS(1007), + [anon_sym_LBRACE] = ACTIONS(1007), + [anon_sym_RBRACE] = ACTIONS(1007), + [anon_sym_STAR] = ACTIONS(1007), + [anon_sym_static] = ACTIONS(1009), + [anon_sym_auto] = ACTIONS(1009), + [anon_sym_register] = ACTIONS(1009), + [anon_sym_inline] = ACTIONS(1009), + [anon_sym_const] = ACTIONS(1009), + [anon_sym_volatile] = ACTIONS(1009), + [anon_sym_restrict] = ACTIONS(1009), + [anon_sym__Atomic] = ACTIONS(1009), + [anon_sym_signed] = ACTIONS(1009), + [anon_sym_unsigned] = ACTIONS(1009), + [anon_sym_long] = ACTIONS(1009), + [anon_sym_short] = ACTIONS(1009), + [sym_primitive_type] = ACTIONS(1009), + [anon_sym_enum] = ACTIONS(1009), + [anon_sym_struct] = ACTIONS(1009), + [anon_sym_union] = ACTIONS(1009), + [anon_sym_if] = ACTIONS(1009), + [anon_sym_else] = ACTIONS(1009), + [anon_sym_switch] = ACTIONS(1009), + [anon_sym_case] = ACTIONS(1009), + [anon_sym_default] = ACTIONS(1009), + [anon_sym_while] = ACTIONS(1009), + [anon_sym_do] = ACTIONS(1009), + [anon_sym_for] = ACTIONS(1009), + [anon_sym_return] = ACTIONS(1009), + [anon_sym_break] = ACTIONS(1009), + [anon_sym_continue] = ACTIONS(1009), + [anon_sym_goto] = ACTIONS(1009), + [anon_sym_AMP] = ACTIONS(1007), + [anon_sym_BANG] = ACTIONS(1007), + [anon_sym_TILDE] = ACTIONS(1007), + [anon_sym_DASH] = ACTIONS(1009), + [anon_sym_PLUS] = ACTIONS(1009), + [anon_sym_DASH_DASH] = ACTIONS(1007), + [anon_sym_PLUS_PLUS] = ACTIONS(1007), + [anon_sym_sizeof] = ACTIONS(1009), + [sym_number_literal] = ACTIONS(1007), + [anon_sym_L_SQUOTE] = ACTIONS(1007), + [anon_sym_SQUOTE] = ACTIONS(1007), + [anon_sym_L_DQUOTE] = ACTIONS(1007), + [anon_sym_DQUOTE] = ACTIONS(1007), + [sym_true] = ACTIONS(1009), + [sym_false] = ACTIONS(1009), + [sym_null] = ACTIONS(1009), + [sym_comment] = ACTIONS(3), }, [144] = { - [aux_sym_type_definition_repeat1] = STATE(144), - [sym_type_qualifier] = STATE(144), - [anon_sym_sizeof] = ACTIONS(898), - [anon_sym_union] = ACTIONS(898), - [anon_sym_unsigned] = ACTIONS(898), - [anon_sym_restrict] = ACTIONS(900), - [anon_sym_short] = ACTIONS(898), - [sym_true] = ACTIONS(898), - [sym_null] = ACTIONS(898), - [anon_sym_AMP] = ACTIONS(903), - [anon_sym_TILDE] = ACTIONS(903), - [anon_sym_const] = ACTIONS(900), - [anon_sym_LPAREN2] = ACTIONS(903), - [anon_sym_L_DQUOTE] = ACTIONS(903), - [anon_sym_DASH_DASH] = ACTIONS(903), - [anon_sym__Atomic] = ACTIONS(900), - [sym_primitive_type] = ACTIONS(898), - [sym_identifier] = ACTIONS(898), - [anon_sym_BANG] = ACTIONS(903), - [anon_sym_DASH] = ACTIONS(898), - [sym_number_literal] = ACTIONS(903), - [anon_sym_volatile] = ACTIONS(900), - [anon_sym_SQUOTE] = ACTIONS(903), - [anon_sym_DQUOTE] = ACTIONS(903), - [anon_sym_STAR] = ACTIONS(903), - [anon_sym_PLUS_PLUS] = ACTIONS(903), - [anon_sym_struct] = ACTIONS(898), - [anon_sym_COMMA] = ACTIONS(903), - [anon_sym_signed] = ACTIONS(898), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(898), - [anon_sym_enum] = ACTIONS(898), - [sym_false] = ACTIONS(898), - [anon_sym_RPAREN] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(898), - [anon_sym_L_SQUOTE] = ACTIONS(903), - [anon_sym_RBRACK] = ACTIONS(903), - [anon_sym_LBRACK] = ACTIONS(903), + [sym_compound_statement] = STATE(1205), + [sym_labeled_statement] = STATE(1205), + [sym_expression_statement] = STATE(1205), + [sym_if_statement] = STATE(1205), + [sym_switch_statement] = STATE(1205), + [sym_while_statement] = STATE(1205), + [sym_do_statement] = STATE(1205), + [sym_for_statement] = STATE(1205), + [sym_return_statement] = STATE(1205), + [sym_break_statement] = STATE(1205), + [sym_continue_statement] = STATE(1205), + [sym_goto_statement] = STATE(1205), + [sym__expression] = STATE(721), + [sym_comma_expression] = STATE(1123), + [sym_conditional_expression] = STATE(721), + [sym_assignment_expression] = STATE(721), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(721), + [sym_binary_expression] = STATE(721), + [sym_update_expression] = STATE(721), + [sym_cast_expression] = STATE(721), + [sym_sizeof_expression] = STATE(721), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(721), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(721), + [sym_concatenated_string] = STATE(721), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(919), + [anon_sym_SEMI] = ACTIONS(19), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(921), + [anon_sym_switch] = ACTIONS(49), + [anon_sym_while] = ACTIONS(923), + [anon_sym_do] = ACTIONS(925), + [anon_sym_for] = ACTIONS(927), + [anon_sym_return] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(61), + [anon_sym_goto] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(73), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_null] = ACTIONS(79), + [sym_comment] = ACTIONS(3), }, [145] = { - [sym_abstract_parenthesized_declarator] = STATE(241), - [sym_abstract_array_declarator] = STATE(241), - [sym_parameter_list] = STATE(148), - [sym__abstract_declarator] = STATE(241), - [aux_sym_type_definition_repeat1] = STATE(242), - [sym_abstract_function_declarator] = STATE(241), - [sym_abstract_pointer_declarator] = STATE(241), - [sym_type_qualifier] = STATE(242), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(440), - [anon_sym_LPAREN2] = ACTIONS(442), - [anon_sym_restrict] = ACTIONS(440), - [anon_sym_volatile] = ACTIONS(440), - [anon_sym__Atomic] = ACTIONS(440), - [anon_sym_RPAREN] = ACTIONS(905), - [anon_sym_STAR] = ACTIONS(446), - [anon_sym_LBRACK] = ACTIONS(448), + [sym_compound_statement] = STATE(286), + [sym_labeled_statement] = STATE(286), + [sym_expression_statement] = STATE(286), + [sym_if_statement] = STATE(286), + [sym_switch_statement] = STATE(286), + [sym_while_statement] = STATE(286), + [sym_do_statement] = STATE(286), + [sym_for_statement] = STATE(286), + [sym_return_statement] = STATE(286), + [sym_break_statement] = STATE(286), + [sym_continue_statement] = STATE(286), + [sym_goto_statement] = STATE(286), + [sym__expression] = STATE(707), + [sym_comma_expression] = STATE(1207), + [sym_conditional_expression] = STATE(707), + [sym_assignment_expression] = STATE(707), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(707), + [sym_binary_expression] = STATE(707), + [sym_update_expression] = STATE(707), + [sym_cast_expression] = STATE(707), + [sym_sizeof_expression] = STATE(707), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(707), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(707), + [sym_concatenated_string] = STATE(707), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(917), + [anon_sym_SEMI] = ACTIONS(358), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(364), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(370), + [anon_sym_switch] = ACTIONS(372), + [anon_sym_while] = ACTIONS(374), + [anon_sym_do] = ACTIONS(376), + [anon_sym_for] = ACTIONS(378), + [anon_sym_return] = ACTIONS(380), + [anon_sym_break] = ACTIONS(382), + [anon_sym_continue] = ACTIONS(384), + [anon_sym_goto] = ACTIONS(386), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(388), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(390), + [sym_false] = ACTIONS(390), + [sym_null] = ACTIONS(390), + [sym_comment] = ACTIONS(3), }, [146] = { - [sym_abstract_array_declarator] = STATE(245), - [sym_sized_type_specifier] = STATE(130), - [sym_enum_specifier] = STATE(130), - [sym_abstract_pointer_declarator] = STATE(245), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(130), - [sym_union_specifier] = STATE(130), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_parameter_list] = STATE(148), - [sym__abstract_declarator] = STATE(245), - [sym_attribute_specifier] = STATE(43), - [sym_parameter_declaration] = STATE(244), - [sym_abstract_function_declarator] = STATE(245), - [sym_macro_type_specifier] = STATE(130), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_storage_class_specifier] = STATE(43), - [sym_struct_specifier] = STATE(130), - [sym__declaration_specifiers] = STATE(246), - [sym_abstract_parenthesized_declarator] = STATE(245), - [anon_sym_LBRACK] = ACTIONS(448), - [anon_sym_union] = ACTIONS(37), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(7), - [anon_sym_short] = ACTIONS(27), - [anon_sym_static] = ACTIONS(63), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_register] = ACTIONS(63), - [anon_sym_extern] = ACTIONS(63), - [anon_sym_STAR] = ACTIONS(446), - [anon_sym_struct] = ACTIONS(25), - [anon_sym_signed] = ACTIONS(27), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_long] = ACTIONS(27), - [anon_sym_DOT_DOT_DOT] = ACTIONS(907), - [anon_sym_const] = ACTIONS(7), - [anon_sym_LPAREN2] = ACTIONS(442), - [sym_comment] = ACTIONS(3), - [anon_sym__Atomic] = ACTIONS(7), - [anon_sym_RPAREN] = ACTIONS(909), - [sym_primitive_type] = ACTIONS(348), - [anon_sym_auto] = ACTIONS(63), - [sym_identifier] = ACTIONS(187), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(31), + [sym_compound_statement] = STATE(311), + [sym_labeled_statement] = STATE(311), + [sym_expression_statement] = STATE(311), + [sym_if_statement] = STATE(311), + [sym_switch_statement] = STATE(311), + [sym_while_statement] = STATE(311), + [sym_do_statement] = STATE(311), + [sym_for_statement] = STATE(311), + [sym_return_statement] = STATE(311), + [sym_break_statement] = STATE(311), + [sym_continue_statement] = STATE(311), + [sym_goto_statement] = STATE(311), + [sym__expression] = STATE(707), + [sym_comma_expression] = STATE(1207), + [sym_conditional_expression] = STATE(707), + [sym_assignment_expression] = STATE(707), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(707), + [sym_binary_expression] = STATE(707), + [sym_update_expression] = STATE(707), + [sym_cast_expression] = STATE(707), + [sym_sizeof_expression] = STATE(707), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(707), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(707), + [sym_concatenated_string] = STATE(707), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(917), + [anon_sym_SEMI] = ACTIONS(358), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(364), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(370), + [anon_sym_switch] = ACTIONS(372), + [anon_sym_while] = ACTIONS(374), + [anon_sym_do] = ACTIONS(376), + [anon_sym_for] = ACTIONS(378), + [anon_sym_return] = ACTIONS(380), + [anon_sym_break] = ACTIONS(382), + [anon_sym_continue] = ACTIONS(384), + [anon_sym_goto] = ACTIONS(386), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(388), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(390), + [sym_false] = ACTIONS(390), + [sym_null] = ACTIONS(390), + [sym_comment] = ACTIONS(3), }, [147] = { - [sym__expression] = STATE(249), - [sym_binary_expression] = STATE(249), - [sym_update_expression] = STATE(249), - [sym_call_expression] = STATE(36), - [sym_type_qualifier] = STATE(250), - [sym_conditional_expression] = STATE(249), - [sym_assignment_expression] = STATE(249), - [sym_cast_expression] = STATE(249), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(249), - [sym_char_literal] = STATE(249), - [aux_sym_type_definition_repeat1] = STATE(250), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(249), - [sym_sizeof_expression] = STATE(249), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(249), - [sym_string_literal] = STATE(41), - [sym_true] = ACTIONS(911), - [anon_sym_restrict] = ACTIONS(7), - [sym_null] = ACTIONS(911), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_const] = ACTIONS(7), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_DASH_DASH] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(7), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(913), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(915), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(911), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_RBRACK] = ACTIONS(917), - [anon_sym_sizeof] = ACTIONS(33), + [sym_compound_statement] = STATE(86), + [sym_labeled_statement] = STATE(86), + [sym_expression_statement] = STATE(86), + [sym_if_statement] = STATE(86), + [sym_switch_statement] = STATE(86), + [sym_while_statement] = STATE(86), + [sym_do_statement] = STATE(86), + [sym_for_statement] = STATE(86), + [sym_return_statement] = STATE(86), + [sym_break_statement] = STATE(86), + [sym_continue_statement] = STATE(86), + [sym_goto_statement] = STATE(86), + [sym__expression] = STATE(721), + [sym_comma_expression] = STATE(1123), + [sym_conditional_expression] = STATE(721), + [sym_assignment_expression] = STATE(721), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(721), + [sym_binary_expression] = STATE(721), + [sym_update_expression] = STATE(721), + [sym_cast_expression] = STATE(721), + [sym_sizeof_expression] = STATE(721), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(721), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(721), + [sym_concatenated_string] = STATE(721), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(919), + [anon_sym_SEMI] = ACTIONS(19), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(921), + [anon_sym_switch] = ACTIONS(49), + [anon_sym_while] = ACTIONS(923), + [anon_sym_do] = ACTIONS(925), + [anon_sym_for] = ACTIONS(927), + [anon_sym_return] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(61), + [anon_sym_goto] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(73), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_null] = ACTIONS(79), + [sym_comment] = ACTIONS(3), }, [148] = { + [sym_compound_statement] = STATE(291), + [sym_labeled_statement] = STATE(291), + [sym_expression_statement] = STATE(291), + [sym_if_statement] = STATE(291), + [sym_switch_statement] = STATE(291), + [sym_while_statement] = STATE(291), + [sym_do_statement] = STATE(291), + [sym_for_statement] = STATE(291), + [sym_return_statement] = STATE(291), + [sym_break_statement] = STATE(291), + [sym_continue_statement] = STATE(291), + [sym_goto_statement] = STATE(291), + [sym__expression] = STATE(688), + [sym_comma_expression] = STATE(1124), + [sym_conditional_expression] = STATE(688), + [sym_assignment_expression] = STATE(688), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(688), + [sym_binary_expression] = STATE(688), + [sym_update_expression] = STATE(688), + [sym_cast_expression] = STATE(688), + [sym_sizeof_expression] = STATE(688), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(688), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(688), + [sym_concatenated_string] = STATE(688), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(937), + [anon_sym_SEMI] = ACTIONS(410), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(416), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(420), + [anon_sym_switch] = ACTIONS(422), + [anon_sym_while] = ACTIONS(424), + [anon_sym_do] = ACTIONS(426), + [anon_sym_for] = ACTIONS(428), + [anon_sym_return] = ACTIONS(430), + [anon_sym_break] = ACTIONS(432), + [anon_sym_continue] = ACTIONS(434), + [anon_sym_goto] = ACTIONS(436), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(438), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(440), + [sym_false] = ACTIONS(440), + [sym_null] = ACTIONS(440), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(919), - [anon_sym_LPAREN2] = ACTIONS(919), - [anon_sym_COMMA] = ACTIONS(919), - [anon_sym_LBRACK] = ACTIONS(919), }, [149] = { - [sym_parameter_list] = STATE(252), + [sym_compound_statement] = STATE(310), + [sym_labeled_statement] = STATE(310), + [sym_expression_statement] = STATE(310), + [sym_if_statement] = STATE(310), + [sym_switch_statement] = STATE(310), + [sym_while_statement] = STATE(310), + [sym_do_statement] = STATE(310), + [sym_for_statement] = STATE(310), + [sym_return_statement] = STATE(310), + [sym_break_statement] = STATE(310), + [sym_continue_statement] = STATE(310), + [sym_goto_statement] = STATE(310), + [sym__expression] = STATE(707), + [sym_comma_expression] = STATE(1207), + [sym_conditional_expression] = STATE(707), + [sym_assignment_expression] = STATE(707), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(707), + [sym_binary_expression] = STATE(707), + [sym_update_expression] = STATE(707), + [sym_cast_expression] = STATE(707), + [sym_sizeof_expression] = STATE(707), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(707), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(707), + [sym_concatenated_string] = STATE(707), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(917), + [anon_sym_SEMI] = ACTIONS(358), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(364), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(370), + [anon_sym_switch] = ACTIONS(372), + [anon_sym_while] = ACTIONS(374), + [anon_sym_do] = ACTIONS(376), + [anon_sym_for] = ACTIONS(378), + [anon_sym_return] = ACTIONS(380), + [anon_sym_break] = ACTIONS(382), + [anon_sym_continue] = ACTIONS(384), + [anon_sym_goto] = ACTIONS(386), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(388), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(390), + [sym_false] = ACTIONS(390), + [sym_null] = ACTIONS(390), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(921), - [anon_sym_LPAREN2] = ACTIONS(652), - [anon_sym_LBRACK] = ACTIONS(923), }, [150] = { - [sym_abstract_parenthesized_declarator] = STATE(253), - [sym_abstract_array_declarator] = STATE(253), - [sym_parameter_list] = STATE(148), - [sym__abstract_declarator] = STATE(253), - [aux_sym_type_definition_repeat1] = STATE(144), - [sym_abstract_function_declarator] = STATE(253), - [sym_abstract_pointer_declarator] = STATE(253), - [sym_type_qualifier] = STATE(144), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(440), - [anon_sym_LPAREN2] = ACTIONS(442), - [anon_sym_restrict] = ACTIONS(440), - [anon_sym_volatile] = ACTIONS(440), - [anon_sym__Atomic] = ACTIONS(440), - [anon_sym_RPAREN] = ACTIONS(925), - [anon_sym_STAR] = ACTIONS(446), - [anon_sym_LBRACK] = ACTIONS(448), + [sym_compound_statement] = STATE(270), + [sym_labeled_statement] = STATE(270), + [sym_expression_statement] = STATE(270), + [sym_if_statement] = STATE(270), + [sym_switch_statement] = STATE(270), + [sym_while_statement] = STATE(270), + [sym_do_statement] = STATE(270), + [sym_for_statement] = STATE(270), + [sym_return_statement] = STATE(270), + [sym_break_statement] = STATE(270), + [sym_continue_statement] = STATE(270), + [sym_goto_statement] = STATE(270), + [sym__expression] = STATE(707), + [sym_comma_expression] = STATE(1207), + [sym_conditional_expression] = STATE(707), + [sym_assignment_expression] = STATE(707), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(707), + [sym_binary_expression] = STATE(707), + [sym_update_expression] = STATE(707), + [sym_cast_expression] = STATE(707), + [sym_sizeof_expression] = STATE(707), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(707), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(707), + [sym_concatenated_string] = STATE(707), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(917), + [anon_sym_SEMI] = ACTIONS(358), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(364), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(370), + [anon_sym_switch] = ACTIONS(372), + [anon_sym_while] = ACTIONS(374), + [anon_sym_do] = ACTIONS(376), + [anon_sym_for] = ACTIONS(378), + [anon_sym_return] = ACTIONS(380), + [anon_sym_break] = ACTIONS(382), + [anon_sym_continue] = ACTIONS(384), + [anon_sym_goto] = ACTIONS(386), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(388), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(390), + [sym_false] = ACTIONS(390), + [sym_null] = ACTIONS(390), + [sym_comment] = ACTIONS(3), }, [151] = { - [sym_type_qualifier] = STATE(255), - [sym_function_type_declarator] = STATE(254), - [aux_sym_type_definition_repeat1] = STATE(255), - [sym_pointer_type_declarator] = STATE(254), - [sym_parenthesized_type_declarator] = STATE(254), - [sym_array_type_declarator] = STATE(254), - [sym__type_declarator] = STATE(254), - [anon_sym_const] = ACTIONS(7), - [anon_sym_LPAREN2] = ACTIONS(455), - [anon_sym_restrict] = ACTIONS(7), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym__Atomic] = ACTIONS(7), - [anon_sym_STAR] = ACTIONS(453), - [sym_identifier] = ACTIONS(927), + [sym_compound_statement] = STATE(293), + [sym_labeled_statement] = STATE(293), + [sym_expression_statement] = STATE(293), + [sym_if_statement] = STATE(293), + [sym_switch_statement] = STATE(293), + [sym_while_statement] = STATE(293), + [sym_do_statement] = STATE(293), + [sym_for_statement] = STATE(293), + [sym_return_statement] = STATE(293), + [sym_break_statement] = STATE(293), + [sym_continue_statement] = STATE(293), + [sym_goto_statement] = STATE(293), + [sym__expression] = STATE(688), + [sym_comma_expression] = STATE(1124), + [sym_conditional_expression] = STATE(688), + [sym_assignment_expression] = STATE(688), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(688), + [sym_binary_expression] = STATE(688), + [sym_update_expression] = STATE(688), + [sym_cast_expression] = STATE(688), + [sym_sizeof_expression] = STATE(688), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(688), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(688), + [sym_concatenated_string] = STATE(688), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(937), + [anon_sym_SEMI] = ACTIONS(410), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(416), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(420), + [anon_sym_switch] = ACTIONS(422), + [anon_sym_while] = ACTIONS(424), + [anon_sym_do] = ACTIONS(426), + [anon_sym_for] = ACTIONS(428), + [anon_sym_return] = ACTIONS(430), + [anon_sym_break] = ACTIONS(432), + [anon_sym_continue] = ACTIONS(434), + [anon_sym_goto] = ACTIONS(436), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(438), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(440), + [sym_false] = ACTIONS(440), + [sym_null] = ACTIONS(440), [sym_comment] = ACTIONS(3), }, [152] = { - [anon_sym_LBRACK] = ACTIONS(929), + [sym_compound_statement] = STATE(322), + [sym_labeled_statement] = STATE(322), + [sym_expression_statement] = STATE(322), + [sym_if_statement] = STATE(322), + [sym_switch_statement] = STATE(322), + [sym_while_statement] = STATE(322), + [sym_do_statement] = STATE(322), + [sym_for_statement] = STATE(322), + [sym_return_statement] = STATE(322), + [sym_break_statement] = STATE(322), + [sym_continue_statement] = STATE(322), + [sym_goto_statement] = STATE(322), + [sym__expression] = STATE(707), + [sym_comma_expression] = STATE(1207), + [sym_conditional_expression] = STATE(707), + [sym_assignment_expression] = STATE(707), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(707), + [sym_binary_expression] = STATE(707), + [sym_update_expression] = STATE(707), + [sym_cast_expression] = STATE(707), + [sym_sizeof_expression] = STATE(707), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(707), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(707), + [sym_concatenated_string] = STATE(707), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(917), + [anon_sym_SEMI] = ACTIONS(358), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(364), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(370), + [anon_sym_switch] = ACTIONS(372), + [anon_sym_while] = ACTIONS(374), + [anon_sym_do] = ACTIONS(376), + [anon_sym_for] = ACTIONS(378), + [anon_sym_return] = ACTIONS(380), + [anon_sym_break] = ACTIONS(382), + [anon_sym_continue] = ACTIONS(384), + [anon_sym_goto] = ACTIONS(386), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(388), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(390), + [sym_false] = ACTIONS(390), + [sym_null] = ACTIONS(390), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(929), - [anon_sym_LPAREN2] = ACTIONS(929), - [anon_sym_COMMA] = ACTIONS(929), - [anon_sym_SEMI] = ACTIONS(929), }, [153] = { - [sym_function_type_declarator] = STATE(256), - [sym_pointer_type_declarator] = STATE(256), - [sym_parenthesized_type_declarator] = STATE(256), - [sym_array_type_declarator] = STATE(256), - [sym__type_declarator] = STATE(256), - [anon_sym_STAR] = ACTIONS(453), - [anon_sym_LPAREN2] = ACTIONS(455), - [sym_identifier] = ACTIONS(457), + [sym_compound_statement] = STATE(320), + [sym_labeled_statement] = STATE(320), + [sym_expression_statement] = STATE(320), + [sym_if_statement] = STATE(320), + [sym_switch_statement] = STATE(320), + [sym_while_statement] = STATE(320), + [sym_do_statement] = STATE(320), + [sym_for_statement] = STATE(320), + [sym_return_statement] = STATE(320), + [sym_break_statement] = STATE(320), + [sym_continue_statement] = STATE(320), + [sym_goto_statement] = STATE(320), + [sym__expression] = STATE(707), + [sym_comma_expression] = STATE(1207), + [sym_conditional_expression] = STATE(707), + [sym_assignment_expression] = STATE(707), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(707), + [sym_binary_expression] = STATE(707), + [sym_update_expression] = STATE(707), + [sym_cast_expression] = STATE(707), + [sym_sizeof_expression] = STATE(707), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(707), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(707), + [sym_concatenated_string] = STATE(707), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(917), + [anon_sym_SEMI] = ACTIONS(358), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(364), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(370), + [anon_sym_switch] = ACTIONS(372), + [anon_sym_while] = ACTIONS(374), + [anon_sym_do] = ACTIONS(376), + [anon_sym_for] = ACTIONS(378), + [anon_sym_return] = ACTIONS(380), + [anon_sym_break] = ACTIONS(382), + [anon_sym_continue] = ACTIONS(384), + [anon_sym_goto] = ACTIONS(386), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(388), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(390), + [sym_false] = ACTIONS(390), + [sym_null] = ACTIONS(390), [sym_comment] = ACTIONS(3), }, [154] = { - [aux_sym_type_definition_repeat2] = STATE(260), - [sym_parameter_list] = STATE(261), + [sym_compound_statement] = STATE(295), + [sym_labeled_statement] = STATE(295), + [sym_expression_statement] = STATE(295), + [sym_if_statement] = STATE(295), + [sym_switch_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__expression] = STATE(688), + [sym_comma_expression] = STATE(1124), + [sym_conditional_expression] = STATE(688), + [sym_assignment_expression] = STATE(688), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(688), + [sym_binary_expression] = STATE(688), + [sym_update_expression] = STATE(688), + [sym_cast_expression] = STATE(688), + [sym_sizeof_expression] = STATE(688), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(688), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(688), + [sym_concatenated_string] = STATE(688), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(937), + [anon_sym_SEMI] = ACTIONS(410), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(416), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(420), + [anon_sym_switch] = ACTIONS(422), + [anon_sym_while] = ACTIONS(424), + [anon_sym_do] = ACTIONS(426), + [anon_sym_for] = ACTIONS(428), + [anon_sym_return] = ACTIONS(430), + [anon_sym_break] = ACTIONS(432), + [anon_sym_continue] = ACTIONS(434), + [anon_sym_goto] = ACTIONS(436), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(438), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(440), + [sym_false] = ACTIONS(440), + [sym_null] = ACTIONS(440), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(652), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_SEMI] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(935), }, [155] = { - [sym_function_type_declarator] = STATE(262), - [sym_pointer_type_declarator] = STATE(262), - [sym_parenthesized_type_declarator] = STATE(262), - [sym_array_type_declarator] = STATE(262), - [sym__type_declarator] = STATE(262), - [anon_sym_STAR] = ACTIONS(453), - [anon_sym_LPAREN2] = ACTIONS(455), - [sym_identifier] = ACTIONS(457), + [sym_compound_statement] = STATE(316), + [sym_labeled_statement] = STATE(316), + [sym_expression_statement] = STATE(316), + [sym_if_statement] = STATE(316), + [sym_switch_statement] = STATE(316), + [sym_while_statement] = STATE(316), + [sym_do_statement] = STATE(316), + [sym_for_statement] = STATE(316), + [sym_return_statement] = STATE(316), + [sym_break_statement] = STATE(316), + [sym_continue_statement] = STATE(316), + [sym_goto_statement] = STATE(316), + [sym__expression] = STATE(707), + [sym_comma_expression] = STATE(1207), + [sym_conditional_expression] = STATE(707), + [sym_assignment_expression] = STATE(707), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(707), + [sym_binary_expression] = STATE(707), + [sym_update_expression] = STATE(707), + [sym_cast_expression] = STATE(707), + [sym_sizeof_expression] = STATE(707), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(707), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(707), + [sym_concatenated_string] = STATE(707), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(917), + [anon_sym_SEMI] = ACTIONS(358), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(364), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(370), + [anon_sym_switch] = ACTIONS(372), + [anon_sym_while] = ACTIONS(374), + [anon_sym_do] = ACTIONS(376), + [anon_sym_for] = ACTIONS(378), + [anon_sym_return] = ACTIONS(380), + [anon_sym_break] = ACTIONS(382), + [anon_sym_continue] = ACTIONS(384), + [anon_sym_goto] = ACTIONS(386), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(388), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(390), + [sym_false] = ACTIONS(390), + [sym_null] = ACTIONS(390), [sym_comment] = ACTIONS(3), }, [156] = { - [anon_sym_GT_GT] = ACTIONS(937), - [anon_sym_restrict] = ACTIONS(937), - [anon_sym_PERCENT_EQ] = ACTIONS(939), - [anon_sym_DASH_EQ] = ACTIONS(939), - [anon_sym_PIPE] = ACTIONS(937), - [anon_sym_EQ_EQ] = ACTIONS(939), - [anon_sym_SLASH] = ACTIONS(937), - [anon_sym_DASH_GT] = ACTIONS(939), - [anon_sym_const] = ACTIONS(937), - [anon_sym_LT_LT] = ACTIONS(937), - [anon_sym_DASH_DASH] = ACTIONS(939), - [anon_sym__Atomic] = ACTIONS(937), + [sym_compound_statement] = STATE(306), + [sym_labeled_statement] = STATE(306), + [sym_expression_statement] = STATE(306), + [sym_if_statement] = STATE(306), + [sym_switch_statement] = STATE(306), + [sym_while_statement] = STATE(306), + [sym_do_statement] = STATE(306), + [sym_for_statement] = STATE(306), + [sym_return_statement] = STATE(306), + [sym_break_statement] = STATE(306), + [sym_continue_statement] = STATE(306), + [sym_goto_statement] = STATE(306), + [sym__expression] = STATE(688), + [sym_comma_expression] = STATE(1124), + [sym_conditional_expression] = STATE(688), + [sym_assignment_expression] = STATE(688), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(688), + [sym_binary_expression] = STATE(688), + [sym_update_expression] = STATE(688), + [sym_cast_expression] = STATE(688), + [sym_sizeof_expression] = STATE(688), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(688), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(688), + [sym_concatenated_string] = STATE(688), + [sym_string_literal] = STATE(431), [sym_identifier] = ACTIONS(937), - [anon_sym_PLUS_EQ] = ACTIONS(939), - [anon_sym_LT_LT_EQ] = ACTIONS(939), - [anon_sym_QMARK] = ACTIONS(939), - [anon_sym_BANG_EQ] = ACTIONS(939), - [anon_sym_CARET_EQ] = ACTIONS(939), - [anon_sym_COMMA] = ACTIONS(939), - [anon_sym_volatile] = ACTIONS(937), - [anon_sym_extern] = ACTIONS(937), - [anon_sym_PLUS_PLUS] = ACTIONS(939), - [anon_sym_struct] = ACTIONS(937), - [anon_sym_signed] = ACTIONS(937), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(937), - [anon_sym_GT_GT_EQ] = ACTIONS(939), - [anon_sym_GT] = ACTIONS(937), - [anon_sym_PIPE_EQ] = ACTIONS(939), - [anon_sym_RPAREN] = ACTIONS(939), - [anon_sym_RBRACK] = ACTIONS(939), - [anon_sym___attribute__] = ACTIONS(937), - [anon_sym_LBRACE] = ACTIONS(939), - [anon_sym_union] = ACTIONS(937), - [anon_sym_unsigned] = ACTIONS(937), - [anon_sym_short] = ACTIONS(937), - [anon_sym_AMP_EQ] = ACTIONS(939), - [anon_sym_PERCENT] = ACTIONS(937), - [anon_sym_AMP] = ACTIONS(937), - [anon_sym_EQ] = ACTIONS(937), - [anon_sym_L_DQUOTE] = ACTIONS(939), - [anon_sym_LPAREN2] = ACTIONS(939), - [anon_sym_GT_EQ] = ACTIONS(939), - [anon_sym_RBRACE] = ACTIONS(939), - [anon_sym_COLON] = ACTIONS(939), - [sym_primitive_type] = ACTIONS(937), - [anon_sym_STAR_EQ] = ACTIONS(939), - [anon_sym_PIPE_PIPE] = ACTIONS(939), - [anon_sym_DASH] = ACTIONS(937), - [anon_sym_static] = ACTIONS(937), - [anon_sym_DQUOTE] = ACTIONS(939), - [anon_sym_register] = ACTIONS(937), - [anon_sym_LT_EQ] = ACTIONS(939), - [anon_sym_STAR] = ACTIONS(937), - [anon_sym_enum] = ACTIONS(937), - [anon_sym_SLASH_EQ] = ACTIONS(939), - [anon_sym_AMP_AMP] = ACTIONS(939), - [anon_sym_SEMI] = ACTIONS(939), - [anon_sym_CARET] = ACTIONS(937), - [anon_sym_PLUS] = ACTIONS(937), - [anon_sym_auto] = ACTIONS(937), - [anon_sym_DOT] = ACTIONS(939), - [anon_sym_inline] = ACTIONS(937), - [anon_sym_LT] = ACTIONS(937), - [anon_sym_LBRACK] = ACTIONS(939), + [anon_sym_SEMI] = ACTIONS(410), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(416), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(420), + [anon_sym_switch] = ACTIONS(422), + [anon_sym_while] = ACTIONS(424), + [anon_sym_do] = ACTIONS(426), + [anon_sym_for] = ACTIONS(428), + [anon_sym_return] = ACTIONS(430), + [anon_sym_break] = ACTIONS(432), + [anon_sym_continue] = ACTIONS(434), + [anon_sym_goto] = ACTIONS(436), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(438), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(440), + [sym_false] = ACTIONS(440), + [sym_null] = ACTIONS(440), + [sym_comment] = ACTIONS(3), }, [157] = { - [aux_sym_string_literal_repeat1] = STATE(157), - [sym_comment] = ACTIONS(147), - [sym_escape_sequence] = ACTIONS(941), - [aux_sym_string_literal_token1] = ACTIONS(941), - [anon_sym_DQUOTE] = ACTIONS(944), + [sym_compound_statement] = STATE(325), + [sym_labeled_statement] = STATE(325), + [sym_expression_statement] = STATE(325), + [sym_if_statement] = STATE(325), + [sym_switch_statement] = STATE(325), + [sym_while_statement] = STATE(325), + [sym_do_statement] = STATE(325), + [sym_for_statement] = STATE(325), + [sym_return_statement] = STATE(325), + [sym_break_statement] = STATE(325), + [sym_continue_statement] = STATE(325), + [sym_goto_statement] = STATE(325), + [sym__expression] = STATE(688), + [sym_comma_expression] = STATE(1124), + [sym_conditional_expression] = STATE(688), + [sym_assignment_expression] = STATE(688), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(688), + [sym_binary_expression] = STATE(688), + [sym_update_expression] = STATE(688), + [sym_cast_expression] = STATE(688), + [sym_sizeof_expression] = STATE(688), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(688), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(688), + [sym_concatenated_string] = STATE(688), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(937), + [anon_sym_SEMI] = ACTIONS(410), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(416), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(420), + [anon_sym_switch] = ACTIONS(422), + [anon_sym_while] = ACTIONS(424), + [anon_sym_do] = ACTIONS(426), + [anon_sym_for] = ACTIONS(428), + [anon_sym_return] = ACTIONS(430), + [anon_sym_break] = ACTIONS(432), + [anon_sym_continue] = ACTIONS(434), + [anon_sym_goto] = ACTIONS(436), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(438), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(440), + [sym_false] = ACTIONS(440), + [sym_null] = ACTIONS(440), + [sym_comment] = ACTIONS(3), }, [158] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_COLON] = ACTIONS(946), - [anon_sym_RBRACE] = ACTIONS(946), - [anon_sym_QMARK] = ACTIONS(946), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_COMMA] = ACTIONS(946), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_SEMI] = ACTIONS(946), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_RPAREN] = ACTIONS(946), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_RBRACK] = ACTIONS(946), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [ts_builtin_sym_end] = ACTIONS(1011), + [sym_identifier] = ACTIONS(1013), + [aux_sym_preproc_include_token1] = ACTIONS(1013), + [aux_sym_preproc_def_token1] = ACTIONS(1013), + [aux_sym_preproc_if_token1] = ACTIONS(1013), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1013), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1013), + [sym_preproc_directive] = ACTIONS(1013), + [anon_sym_SEMI] = ACTIONS(1011), + [anon_sym_typedef] = ACTIONS(1013), + [anon_sym_extern] = ACTIONS(1013), + [anon_sym___attribute__] = ACTIONS(1013), + [anon_sym_LPAREN2] = ACTIONS(1011), + [anon_sym_LBRACE] = ACTIONS(1011), + [anon_sym_RBRACE] = ACTIONS(1011), + [anon_sym_STAR] = ACTIONS(1011), + [anon_sym_static] = ACTIONS(1013), + [anon_sym_auto] = ACTIONS(1013), + [anon_sym_register] = ACTIONS(1013), + [anon_sym_inline] = ACTIONS(1013), + [anon_sym_const] = ACTIONS(1013), + [anon_sym_volatile] = ACTIONS(1013), + [anon_sym_restrict] = ACTIONS(1013), + [anon_sym__Atomic] = ACTIONS(1013), + [anon_sym_signed] = ACTIONS(1013), + [anon_sym_unsigned] = ACTIONS(1013), + [anon_sym_long] = ACTIONS(1013), + [anon_sym_short] = ACTIONS(1013), + [sym_primitive_type] = ACTIONS(1013), + [anon_sym_enum] = ACTIONS(1013), + [anon_sym_struct] = ACTIONS(1013), + [anon_sym_union] = ACTIONS(1013), + [anon_sym_if] = ACTIONS(1013), + [anon_sym_else] = ACTIONS(1013), + [anon_sym_switch] = ACTIONS(1013), + [anon_sym_case] = ACTIONS(1013), + [anon_sym_default] = ACTIONS(1013), + [anon_sym_while] = ACTIONS(1013), + [anon_sym_do] = ACTIONS(1013), + [anon_sym_for] = ACTIONS(1013), + [anon_sym_return] = ACTIONS(1013), + [anon_sym_break] = ACTIONS(1013), + [anon_sym_continue] = ACTIONS(1013), + [anon_sym_goto] = ACTIONS(1013), + [anon_sym_AMP] = ACTIONS(1011), + [anon_sym_BANG] = ACTIONS(1011), + [anon_sym_TILDE] = ACTIONS(1011), + [anon_sym_DASH] = ACTIONS(1013), + [anon_sym_PLUS] = ACTIONS(1013), + [anon_sym_DASH_DASH] = ACTIONS(1011), + [anon_sym_PLUS_PLUS] = ACTIONS(1011), + [anon_sym_sizeof] = ACTIONS(1013), + [sym_number_literal] = ACTIONS(1011), + [anon_sym_L_SQUOTE] = ACTIONS(1011), + [anon_sym_SQUOTE] = ACTIONS(1011), + [anon_sym_L_DQUOTE] = ACTIONS(1011), + [anon_sym_DQUOTE] = ACTIONS(1011), + [sym_true] = ACTIONS(1013), + [sym_false] = ACTIONS(1013), + [sym_null] = ACTIONS(1013), + [sym_comment] = ACTIONS(3), }, [159] = { - [anon_sym_RPAREN] = ACTIONS(948), + [sym_compound_statement] = STATE(315), + [sym_labeled_statement] = STATE(315), + [sym_expression_statement] = STATE(315), + [sym_if_statement] = STATE(315), + [sym_switch_statement] = STATE(315), + [sym_while_statement] = STATE(315), + [sym_do_statement] = STATE(315), + [sym_for_statement] = STATE(315), + [sym_return_statement] = STATE(315), + [sym_break_statement] = STATE(315), + [sym_continue_statement] = STATE(315), + [sym_goto_statement] = STATE(315), + [sym__expression] = STATE(707), + [sym_comma_expression] = STATE(1207), + [sym_conditional_expression] = STATE(707), + [sym_assignment_expression] = STATE(707), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(707), + [sym_binary_expression] = STATE(707), + [sym_update_expression] = STATE(707), + [sym_cast_expression] = STATE(707), + [sym_sizeof_expression] = STATE(707), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(707), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(707), + [sym_concatenated_string] = STATE(707), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(917), + [anon_sym_SEMI] = ACTIONS(358), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(364), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(370), + [anon_sym_switch] = ACTIONS(372), + [anon_sym_while] = ACTIONS(374), + [anon_sym_do] = ACTIONS(376), + [anon_sym_for] = ACTIONS(378), + [anon_sym_return] = ACTIONS(380), + [anon_sym_break] = ACTIONS(382), + [anon_sym_continue] = ACTIONS(384), + [anon_sym_goto] = ACTIONS(386), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(388), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(390), + [sym_false] = ACTIONS(390), + [sym_null] = ACTIONS(390), [sym_comment] = ACTIONS(3), }, [160] = { - [anon_sym_case] = ACTIONS(950), - [sym_true] = ACTIONS(950), - [anon_sym_restrict] = ACTIONS(950), - [sym_null] = ACTIONS(950), - [anon_sym_goto] = ACTIONS(950), - [anon_sym_const] = ACTIONS(950), - [anon_sym_typedef] = ACTIONS(950), - [anon_sym_DASH_DASH] = ACTIONS(952), - [anon_sym_default] = ACTIONS(950), - [anon_sym__Atomic] = ACTIONS(950), - [sym_identifier] = ACTIONS(950), - [aux_sym_preproc_ifdef_token1] = ACTIONS(950), - [sym_number_literal] = ACTIONS(952), - [anon_sym_volatile] = ACTIONS(950), - [anon_sym_SQUOTE] = ACTIONS(952), - [anon_sym_extern] = ACTIONS(950), - [anon_sym_PLUS_PLUS] = ACTIONS(952), - [anon_sym_struct] = ACTIONS(950), - [anon_sym_signed] = ACTIONS(950), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(950), - [anon_sym_while] = ACTIONS(950), - [aux_sym_preproc_ifdef_token2] = ACTIONS(950), - [anon_sym_L_SQUOTE] = ACTIONS(952), - [anon_sym___attribute__] = ACTIONS(950), - [anon_sym_sizeof] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(952), - [anon_sym_union] = ACTIONS(950), - [anon_sym_unsigned] = ACTIONS(950), - [anon_sym_short] = ACTIONS(950), - [anon_sym_do] = ACTIONS(950), - [sym_preproc_directive] = ACTIONS(950), - [anon_sym_AMP] = ACTIONS(952), - [aux_sym_preproc_if_token1] = ACTIONS(950), - [anon_sym_TILDE] = ACTIONS(952), - [anon_sym_L_DQUOTE] = ACTIONS(952), - [anon_sym_LPAREN2] = ACTIONS(952), - [anon_sym_RBRACE] = ACTIONS(952), - [anon_sym_else] = ACTIONS(950), - [sym_primitive_type] = ACTIONS(950), - [anon_sym_for] = ACTIONS(950), - [anon_sym_break] = ACTIONS(950), - [anon_sym_BANG] = ACTIONS(952), - [aux_sym_preproc_include_token1] = ACTIONS(950), - [anon_sym_DASH] = ACTIONS(950), - [anon_sym_static] = ACTIONS(950), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_register] = ACTIONS(950), - [anon_sym_STAR] = ACTIONS(952), - [anon_sym_if] = ACTIONS(950), - [anon_sym_switch] = ACTIONS(950), - [anon_sym_enum] = ACTIONS(950), - [sym_false] = ACTIONS(950), - [ts_builtin_sym_end] = ACTIONS(952), - [anon_sym_return] = ACTIONS(950), - [anon_sym_continue] = ACTIONS(950), - [anon_sym_SEMI] = ACTIONS(952), - [aux_sym_preproc_def_token1] = ACTIONS(950), - [anon_sym_PLUS] = ACTIONS(950), - [anon_sym_auto] = ACTIONS(950), - [anon_sym_inline] = ACTIONS(950), + [sym_compound_statement] = STATE(324), + [sym_labeled_statement] = STATE(324), + [sym_expression_statement] = STATE(324), + [sym_if_statement] = STATE(324), + [sym_switch_statement] = STATE(324), + [sym_while_statement] = STATE(324), + [sym_do_statement] = STATE(324), + [sym_for_statement] = STATE(324), + [sym_return_statement] = STATE(324), + [sym_break_statement] = STATE(324), + [sym_continue_statement] = STATE(324), + [sym_goto_statement] = STATE(324), + [sym__expression] = STATE(688), + [sym_comma_expression] = STATE(1124), + [sym_conditional_expression] = STATE(688), + [sym_assignment_expression] = STATE(688), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(688), + [sym_binary_expression] = STATE(688), + [sym_update_expression] = STATE(688), + [sym_cast_expression] = STATE(688), + [sym_sizeof_expression] = STATE(688), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(688), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(688), + [sym_concatenated_string] = STATE(688), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(937), + [anon_sym_SEMI] = ACTIONS(410), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(416), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(420), + [anon_sym_switch] = ACTIONS(422), + [anon_sym_while] = ACTIONS(424), + [anon_sym_do] = ACTIONS(426), + [anon_sym_for] = ACTIONS(428), + [anon_sym_return] = ACTIONS(430), + [anon_sym_break] = ACTIONS(432), + [anon_sym_continue] = ACTIONS(434), + [anon_sym_goto] = ACTIONS(436), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(438), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(440), + [sym_false] = ACTIONS(440), + [sym_null] = ACTIONS(440), + [sym_comment] = ACTIONS(3), }, [161] = { - [sym_char_literal] = STATE(265), - [sym__expression] = STATE(265), - [sym_binary_expression] = STATE(265), - [sym_update_expression] = STATE(265), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(265), - [sym_sizeof_expression] = STATE(265), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(265), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(265), - [sym_assignment_expression] = STATE(265), - [sym_cast_expression] = STATE(265), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(265), - [sym_true] = ACTIONS(954), - [sym_null] = ACTIONS(954), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(956), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(954), - [anon_sym_SEMI] = ACTIONS(958), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_compound_statement] = STATE(309), + [sym_labeled_statement] = STATE(309), + [sym_expression_statement] = STATE(309), + [sym_if_statement] = STATE(309), + [sym_switch_statement] = STATE(309), + [sym_while_statement] = STATE(309), + [sym_do_statement] = STATE(309), + [sym_for_statement] = STATE(309), + [sym_return_statement] = STATE(309), + [sym_break_statement] = STATE(309), + [sym_continue_statement] = STATE(309), + [sym_goto_statement] = STATE(309), + [sym__expression] = STATE(688), + [sym_comma_expression] = STATE(1124), + [sym_conditional_expression] = STATE(688), + [sym_assignment_expression] = STATE(688), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(688), + [sym_binary_expression] = STATE(688), + [sym_update_expression] = STATE(688), + [sym_cast_expression] = STATE(688), + [sym_sizeof_expression] = STATE(688), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(688), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(688), + [sym_concatenated_string] = STATE(688), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(937), + [anon_sym_SEMI] = ACTIONS(410), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(416), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(420), + [anon_sym_switch] = ACTIONS(422), + [anon_sym_while] = ACTIONS(424), + [anon_sym_do] = ACTIONS(426), + [anon_sym_for] = ACTIONS(428), + [anon_sym_return] = ACTIONS(430), + [anon_sym_break] = ACTIONS(432), + [anon_sym_continue] = ACTIONS(434), + [anon_sym_goto] = ACTIONS(436), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(438), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(440), + [sym_false] = ACTIONS(440), + [sym_null] = ACTIONS(440), + [sym_comment] = ACTIONS(3), }, [162] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_COMMA] = ACTIONS(293), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_SEMI] = ACTIONS(960), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [sym_compound_statement] = STATE(269), + [sym_labeled_statement] = STATE(269), + [sym_expression_statement] = STATE(269), + [sym_if_statement] = STATE(269), + [sym_switch_statement] = STATE(269), + [sym_while_statement] = STATE(269), + [sym_do_statement] = STATE(269), + [sym_for_statement] = STATE(269), + [sym_return_statement] = STATE(269), + [sym_break_statement] = STATE(269), + [sym_continue_statement] = STATE(269), + [sym_goto_statement] = STATE(269), + [sym__expression] = STATE(707), + [sym_comma_expression] = STATE(1207), + [sym_conditional_expression] = STATE(707), + [sym_assignment_expression] = STATE(707), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(707), + [sym_binary_expression] = STATE(707), + [sym_update_expression] = STATE(707), + [sym_cast_expression] = STATE(707), + [sym_sizeof_expression] = STATE(707), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(707), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(707), + [sym_concatenated_string] = STATE(707), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(917), + [anon_sym_SEMI] = ACTIONS(358), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(364), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(370), + [anon_sym_switch] = ACTIONS(372), + [anon_sym_while] = ACTIONS(374), + [anon_sym_do] = ACTIONS(376), + [anon_sym_for] = ACTIONS(378), + [anon_sym_return] = ACTIONS(380), + [anon_sym_break] = ACTIONS(382), + [anon_sym_continue] = ACTIONS(384), + [anon_sym_goto] = ACTIONS(386), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(388), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(390), + [sym_false] = ACTIONS(390), + [sym_null] = ACTIONS(390), + [sym_comment] = ACTIONS(3), }, [163] = { + [sym_compound_statement] = STATE(307), + [sym_labeled_statement] = STATE(307), + [sym_expression_statement] = STATE(307), + [sym_if_statement] = STATE(307), + [sym_switch_statement] = STATE(307), + [sym_while_statement] = STATE(307), + [sym_do_statement] = STATE(307), + [sym_for_statement] = STATE(307), + [sym_return_statement] = STATE(307), + [sym_break_statement] = STATE(307), + [sym_continue_statement] = STATE(307), + [sym_goto_statement] = STATE(307), + [sym__expression] = STATE(707), + [sym_comma_expression] = STATE(1207), + [sym_conditional_expression] = STATE(707), + [sym_assignment_expression] = STATE(707), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(707), + [sym_binary_expression] = STATE(707), + [sym_update_expression] = STATE(707), + [sym_cast_expression] = STATE(707), + [sym_sizeof_expression] = STATE(707), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(707), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(707), + [sym_concatenated_string] = STATE(707), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(917), + [anon_sym_SEMI] = ACTIONS(358), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(364), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(370), + [anon_sym_switch] = ACTIONS(372), + [anon_sym_while] = ACTIONS(374), + [anon_sym_do] = ACTIONS(376), + [anon_sym_for] = ACTIONS(378), + [anon_sym_return] = ACTIONS(380), + [anon_sym_break] = ACTIONS(382), + [anon_sym_continue] = ACTIONS(384), + [anon_sym_goto] = ACTIONS(386), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(388), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(390), + [sym_false] = ACTIONS(390), + [sym_null] = ACTIONS(390), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(960), }, [164] = { - [sym_char_literal] = STATE(268), - [sym__expression] = STATE(268), - [sym_binary_expression] = STATE(268), - [sym_update_expression] = STATE(268), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(268), - [sym_sizeof_expression] = STATE(268), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(268), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(268), - [sym_assignment_expression] = STATE(268), - [sym_cast_expression] = STATE(268), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(268), - [sym_true] = ACTIONS(962), - [sym_null] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(964), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(966), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_compound_statement] = STATE(327), + [sym_labeled_statement] = STATE(327), + [sym_expression_statement] = STATE(327), + [sym_if_statement] = STATE(327), + [sym_switch_statement] = STATE(327), + [sym_while_statement] = STATE(327), + [sym_do_statement] = STATE(327), + [sym_for_statement] = STATE(327), + [sym_return_statement] = STATE(327), + [sym_break_statement] = STATE(327), + [sym_continue_statement] = STATE(327), + [sym_goto_statement] = STATE(327), + [sym__expression] = STATE(688), + [sym_comma_expression] = STATE(1124), + [sym_conditional_expression] = STATE(688), + [sym_assignment_expression] = STATE(688), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(688), + [sym_binary_expression] = STATE(688), + [sym_update_expression] = STATE(688), + [sym_cast_expression] = STATE(688), + [sym_sizeof_expression] = STATE(688), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(688), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(688), + [sym_concatenated_string] = STATE(688), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(937), + [anon_sym_SEMI] = ACTIONS(410), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(416), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(420), + [anon_sym_switch] = ACTIONS(422), + [anon_sym_while] = ACTIONS(424), + [anon_sym_do] = ACTIONS(426), + [anon_sym_for] = ACTIONS(428), + [anon_sym_return] = ACTIONS(430), + [anon_sym_break] = ACTIONS(432), + [anon_sym_continue] = ACTIONS(434), + [anon_sym_goto] = ACTIONS(436), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(438), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(440), + [sym_false] = ACTIONS(440), + [sym_null] = ACTIONS(440), + [sym_comment] = ACTIONS(3), }, [165] = { - [sym_pointer_declarator] = STATE(269), - [sym_parenthesized_declarator] = STATE(269), - [sym_init_declarator] = STATE(120), - [sym_array_declarator] = STATE(269), - [sym__declarator] = STATE(269), - [sym_function_declarator] = STATE(269), - [anon_sym_STAR] = ACTIONS(326), - [anon_sym_LPAREN2] = ACTIONS(328), - [sym_identifier] = ACTIONS(968), + [sym_compound_statement] = STATE(314), + [sym_labeled_statement] = STATE(314), + [sym_expression_statement] = STATE(314), + [sym_if_statement] = STATE(314), + [sym_switch_statement] = STATE(314), + [sym_while_statement] = STATE(314), + [sym_do_statement] = STATE(314), + [sym_for_statement] = STATE(314), + [sym_return_statement] = STATE(314), + [sym_break_statement] = STATE(314), + [sym_continue_statement] = STATE(314), + [sym_goto_statement] = STATE(314), + [sym__expression] = STATE(688), + [sym_comma_expression] = STATE(1124), + [sym_conditional_expression] = STATE(688), + [sym_assignment_expression] = STATE(688), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(688), + [sym_binary_expression] = STATE(688), + [sym_update_expression] = STATE(688), + [sym_cast_expression] = STATE(688), + [sym_sizeof_expression] = STATE(688), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(688), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(688), + [sym_concatenated_string] = STATE(688), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(937), + [anon_sym_SEMI] = ACTIONS(410), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(416), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(420), + [anon_sym_switch] = ACTIONS(422), + [anon_sym_while] = ACTIONS(424), + [anon_sym_do] = ACTIONS(426), + [anon_sym_for] = ACTIONS(428), + [anon_sym_return] = ACTIONS(430), + [anon_sym_break] = ACTIONS(432), + [anon_sym_continue] = ACTIONS(434), + [anon_sym_goto] = ACTIONS(436), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(438), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(440), + [sym_false] = ACTIONS(440), + [sym_null] = ACTIONS(440), [sym_comment] = ACTIONS(3), }, [166] = { - [sym_true] = ACTIONS(970), - [anon_sym_restrict] = ACTIONS(970), - [sym_null] = ACTIONS(970), - [anon_sym_goto] = ACTIONS(970), - [anon_sym_const] = ACTIONS(970), - [anon_sym_typedef] = ACTIONS(970), - [anon_sym_DASH_DASH] = ACTIONS(972), - [anon_sym__Atomic] = ACTIONS(970), - [sym_identifier] = ACTIONS(970), - [aux_sym_preproc_ifdef_token1] = ACTIONS(970), - [sym_number_literal] = ACTIONS(972), - [anon_sym_volatile] = ACTIONS(970), - [anon_sym_SQUOTE] = ACTIONS(972), - [anon_sym_extern] = ACTIONS(970), - [anon_sym_PLUS_PLUS] = ACTIONS(972), - [anon_sym_struct] = ACTIONS(970), - [anon_sym_signed] = ACTIONS(970), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(970), - [anon_sym_while] = ACTIONS(970), - [aux_sym_preproc_ifdef_token2] = ACTIONS(970), - [anon_sym_L_SQUOTE] = ACTIONS(972), - [anon_sym___attribute__] = ACTIONS(970), - [anon_sym_sizeof] = ACTIONS(970), - [anon_sym_LBRACE] = ACTIONS(972), - [anon_sym_union] = ACTIONS(970), - [anon_sym_unsigned] = ACTIONS(970), - [anon_sym_short] = ACTIONS(970), - [anon_sym_do] = ACTIONS(970), - [sym_preproc_directive] = ACTIONS(970), - [anon_sym_AMP] = ACTIONS(972), - [aux_sym_preproc_if_token1] = ACTIONS(970), - [anon_sym_TILDE] = ACTIONS(972), - [anon_sym_L_DQUOTE] = ACTIONS(972), - [anon_sym_LPAREN2] = ACTIONS(972), - [sym_primitive_type] = ACTIONS(970), - [anon_sym_for] = ACTIONS(970), - [anon_sym_break] = ACTIONS(970), - [anon_sym_BANG] = ACTIONS(972), - [aux_sym_preproc_include_token1] = ACTIONS(970), - [anon_sym_DASH] = ACTIONS(970), - [anon_sym_static] = ACTIONS(970), - [anon_sym_DQUOTE] = ACTIONS(972), - [anon_sym_register] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_if] = ACTIONS(970), - [anon_sym_switch] = ACTIONS(970), - [anon_sym_enum] = ACTIONS(970), - [sym_false] = ACTIONS(970), - [ts_builtin_sym_end] = ACTIONS(972), - [anon_sym_return] = ACTIONS(970), - [anon_sym_continue] = ACTIONS(970), - [anon_sym_SEMI] = ACTIONS(972), - [aux_sym_preproc_def_token1] = ACTIONS(970), - [anon_sym_PLUS] = ACTIONS(970), - [anon_sym_auto] = ACTIONS(970), - [anon_sym_inline] = ACTIONS(970), + [sym_compound_statement] = STATE(328), + [sym_labeled_statement] = STATE(328), + [sym_expression_statement] = STATE(328), + [sym_if_statement] = STATE(328), + [sym_switch_statement] = STATE(328), + [sym_while_statement] = STATE(328), + [sym_do_statement] = STATE(328), + [sym_for_statement] = STATE(328), + [sym_return_statement] = STATE(328), + [sym_break_statement] = STATE(328), + [sym_continue_statement] = STATE(328), + [sym_goto_statement] = STATE(328), + [sym__expression] = STATE(707), + [sym_comma_expression] = STATE(1207), + [sym_conditional_expression] = STATE(707), + [sym_assignment_expression] = STATE(707), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(707), + [sym_binary_expression] = STATE(707), + [sym_update_expression] = STATE(707), + [sym_cast_expression] = STATE(707), + [sym_sizeof_expression] = STATE(707), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(707), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(707), + [sym_concatenated_string] = STATE(707), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(917), + [anon_sym_SEMI] = ACTIONS(358), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(364), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(370), + [anon_sym_switch] = ACTIONS(372), + [anon_sym_while] = ACTIONS(374), + [anon_sym_do] = ACTIONS(376), + [anon_sym_for] = ACTIONS(378), + [anon_sym_return] = ACTIONS(380), + [anon_sym_break] = ACTIONS(382), + [anon_sym_continue] = ACTIONS(384), + [anon_sym_goto] = ACTIONS(386), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(388), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(390), + [sym_false] = ACTIONS(390), + [sym_null] = ACTIONS(390), + [sym_comment] = ACTIONS(3), }, [167] = { - [aux_sym_preproc_if_token2] = ACTIONS(974), + [sym_compound_statement] = STATE(326), + [sym_labeled_statement] = STATE(326), + [sym_expression_statement] = STATE(326), + [sym_if_statement] = STATE(326), + [sym_switch_statement] = STATE(326), + [sym_while_statement] = STATE(326), + [sym_do_statement] = STATE(326), + [sym_for_statement] = STATE(326), + [sym_return_statement] = STATE(326), + [sym_break_statement] = STATE(326), + [sym_continue_statement] = STATE(326), + [sym_goto_statement] = STATE(326), + [sym__expression] = STATE(707), + [sym_comma_expression] = STATE(1207), + [sym_conditional_expression] = STATE(707), + [sym_assignment_expression] = STATE(707), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(707), + [sym_binary_expression] = STATE(707), + [sym_update_expression] = STATE(707), + [sym_cast_expression] = STATE(707), + [sym_sizeof_expression] = STATE(707), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(707), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(707), + [sym_concatenated_string] = STATE(707), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(917), + [anon_sym_SEMI] = ACTIONS(358), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(364), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(370), + [anon_sym_switch] = ACTIONS(372), + [anon_sym_while] = ACTIONS(374), + [anon_sym_do] = ACTIONS(376), + [anon_sym_for] = ACTIONS(378), + [anon_sym_return] = ACTIONS(380), + [anon_sym_break] = ACTIONS(382), + [anon_sym_continue] = ACTIONS(384), + [anon_sym_goto] = ACTIONS(386), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(388), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(390), + [sym_false] = ACTIONS(390), + [sym_null] = ACTIONS(390), [sym_comment] = ACTIONS(3), }, [168] = { - [sym_if_statement] = STATE(636), - [sym_preproc_def] = STATE(636), - [sym_preproc_function_def] = STATE(636), - [sym__expression] = STATE(951), - [sym_comma_expression] = STATE(952), - [sym_binary_expression] = STATE(951), - [sym_update_expression] = STATE(951), - [sym_call_expression] = STATE(36), - [sym_function_definition] = STATE(636), - [sym_declaration] = STATE(636), - [sym_do_statement] = STATE(636), - [sym_for_statement] = STATE(636), - [sym_preproc_else] = STATE(272), - [sym_preproc_elif] = STATE(272), - [aux_sym_translation_unit_repeat1] = STATE(636), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(953), - [sym_union_specifier] = STATE(953), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_expression_statement] = STATE(636), - [sym_switch_statement] = STATE(636), - [sym_return_statement] = STATE(636), - [sym_preproc_call] = STATE(636), - [sym_conditional_expression] = STATE(951), - [sym_assignment_expression] = STATE(951), - [sym_cast_expression] = STATE(951), - [sym__declaration_specifiers] = STATE(1172), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(951), - [sym_type_definition] = STATE(636), - [sym_char_literal] = STATE(951), - [sym_break_statement] = STATE(636), - [sym__empty_declaration] = STATE(636), - [sym_sized_type_specifier] = STATE(953), - [sym_enum_specifier] = STATE(953), - [sym_labeled_statement] = STATE(636), - [sym_preproc_include] = STATE(636), - [sym_preproc_if] = STATE(636), - [sym_preproc_ifdef] = STATE(636), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(951), - [sym_sizeof_expression] = STATE(951), - [sym_attribute_specifier] = STATE(43), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_linkage_specification] = STATE(636), - [sym_concatenated_string] = STATE(951), - [sym_string_literal] = STATE(41), - [sym_macro_type_specifier] = STATE(953), - [sym_while_statement] = STATE(636), - [sym_storage_class_specifier] = STATE(43), - [sym_compound_statement] = STATE(636), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_continue_statement] = STATE(636), - [sym_struct_specifier] = STATE(953), - [sym_goto_statement] = STATE(636), - [sym_true] = ACTIONS(378), - [anon_sym_restrict] = ACTIONS(7), - [sym_null] = ACTIONS(378), - [anon_sym_goto] = ACTIONS(380), - [aux_sym_preproc_if_token2] = ACTIONS(976), - [anon_sym_const] = ACTIONS(7), - [anon_sym_typedef] = ACTIONS(384), - [anon_sym_DASH_DASH] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(7), - [sym_identifier] = ACTIONS(386), - [aux_sym_preproc_ifdef_token1] = ACTIONS(388), - [sym_number_literal] = ACTIONS(390), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_extern] = ACTIONS(392), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_struct] = ACTIONS(25), - [anon_sym_signed] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(27), - [anon_sym_while] = ACTIONS(394), - [aux_sym_preproc_ifdef_token2] = ACTIONS(388), - [aux_sym_preproc_elif_token1] = ACTIONS(396), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_sizeof] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(398), - [anon_sym_union] = ACTIONS(37), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_short] = ACTIONS(27), - [anon_sym_do] = ACTIONS(400), - [aux_sym_preproc_else_token1] = ACTIONS(402), - [sym_preproc_directive] = ACTIONS(404), - [anon_sym_AMP] = ACTIONS(43), - [aux_sym_preproc_if_token1] = ACTIONS(406), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(408), - [anon_sym_for] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_BANG] = ACTIONS(47), - [aux_sym_preproc_include_token1] = ACTIONS(414), - [anon_sym_DASH] = ACTIONS(61), - [anon_sym_static] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_register] = ACTIONS(63), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(416), - [anon_sym_switch] = ACTIONS(418), - [anon_sym_enum] = ACTIONS(69), - [sym_false] = ACTIONS(378), - [anon_sym_return] = ACTIONS(420), - [anon_sym_continue] = ACTIONS(422), - [anon_sym_SEMI] = ACTIONS(424), - [aux_sym_preproc_def_token1] = ACTIONS(426), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_auto] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), + [sym_compound_statement] = STATE(90), + [sym_labeled_statement] = STATE(90), + [sym_expression_statement] = STATE(90), + [sym_if_statement] = STATE(90), + [sym_switch_statement] = STATE(90), + [sym_while_statement] = STATE(90), + [sym_do_statement] = STATE(90), + [sym_for_statement] = STATE(90), + [sym_return_statement] = STATE(90), + [sym_break_statement] = STATE(90), + [sym_continue_statement] = STATE(90), + [sym_goto_statement] = STATE(90), + [sym__expression] = STATE(721), + [sym_comma_expression] = STATE(1123), + [sym_conditional_expression] = STATE(721), + [sym_assignment_expression] = STATE(721), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(721), + [sym_binary_expression] = STATE(721), + [sym_update_expression] = STATE(721), + [sym_cast_expression] = STATE(721), + [sym_sizeof_expression] = STATE(721), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(721), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(721), + [sym_concatenated_string] = STATE(721), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(919), + [anon_sym_SEMI] = ACTIONS(19), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(921), + [anon_sym_switch] = ACTIONS(49), + [anon_sym_while] = ACTIONS(923), + [anon_sym_do] = ACTIONS(925), + [anon_sym_for] = ACTIONS(927), + [anon_sym_return] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(61), + [anon_sym_goto] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(73), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_null] = ACTIONS(79), + [sym_comment] = ACTIONS(3), }, [169] = { - [sym_if_statement] = STATE(274), - [sym_preproc_def] = STATE(274), - [sym_preproc_function_def] = STATE(274), - [sym__expression] = STATE(867), - [sym_comma_expression] = STATE(868), - [sym_binary_expression] = STATE(867), - [sym_update_expression] = STATE(867), - [sym_call_expression] = STATE(36), - [sym_function_definition] = STATE(274), - [sym_declaration] = STATE(274), - [sym_do_statement] = STATE(274), - [sym_for_statement] = STATE(274), - [aux_sym_translation_unit_repeat1] = STATE(274), - [sym_expression_statement] = STATE(274), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(869), - [sym_union_specifier] = STATE(869), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_switch_statement] = STATE(274), - [sym_return_statement] = STATE(274), - [sym_preproc_call] = STATE(274), - [sym_conditional_expression] = STATE(867), - [sym_assignment_expression] = STATE(867), - [sym_type_definition] = STATE(274), - [sym_cast_expression] = STATE(867), - [sym__declaration_specifiers] = STATE(1151), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(867), - [sym_char_literal] = STATE(867), - [sym_break_statement] = STATE(274), - [sym__empty_declaration] = STATE(274), - [sym_sized_type_specifier] = STATE(869), - [sym_enum_specifier] = STATE(869), - [sym_labeled_statement] = STATE(274), - [sym_preproc_include] = STATE(274), - [sym_preproc_if] = STATE(274), - [sym_preproc_ifdef] = STATE(274), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(867), - [sym_sizeof_expression] = STATE(867), - [sym_attribute_specifier] = STATE(43), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_linkage_specification] = STATE(274), - [sym_concatenated_string] = STATE(867), - [sym_string_literal] = STATE(41), - [sym_macro_type_specifier] = STATE(869), - [sym_while_statement] = STATE(274), - [sym_storage_class_specifier] = STATE(43), - [sym_compound_statement] = STATE(274), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_continue_statement] = STATE(274), - [sym_struct_specifier] = STATE(869), - [sym_goto_statement] = STATE(274), - [sym_true] = ACTIONS(81), - [anon_sym_restrict] = ACTIONS(7), - [sym_null] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_const] = ACTIONS(7), - [anon_sym_typedef] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(7), - [sym_identifier] = ACTIONS(87), - [aux_sym_preproc_ifdef_token1] = ACTIONS(89), - [sym_number_literal] = ACTIONS(91), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_extern] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_struct] = ACTIONS(25), - [anon_sym_signed] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(27), - [anon_sym_while] = ACTIONS(95), - [aux_sym_preproc_ifdef_token2] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_sizeof] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(97), - [anon_sym_union] = ACTIONS(37), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_short] = ACTIONS(27), - [anon_sym_do] = ACTIONS(99), - [sym_preproc_directive] = ACTIONS(101), - [anon_sym_AMP] = ACTIONS(43), - [aux_sym_preproc_if_token1] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(978), - [sym_primitive_type] = ACTIONS(107), - [anon_sym_for] = ACTIONS(109), - [anon_sym_break] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(47), - [aux_sym_preproc_include_token1] = ACTIONS(113), - [anon_sym_DASH] = ACTIONS(61), - [anon_sym_static] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_register] = ACTIONS(63), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(115), - [anon_sym_switch] = ACTIONS(117), - [anon_sym_enum] = ACTIONS(69), - [sym_false] = ACTIONS(81), - [anon_sym_return] = ACTIONS(119), - [anon_sym_continue] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(123), - [aux_sym_preproc_def_token1] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_auto] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), + [ts_builtin_sym_end] = ACTIONS(1015), + [sym_identifier] = ACTIONS(1017), + [aux_sym_preproc_include_token1] = ACTIONS(1017), + [aux_sym_preproc_def_token1] = ACTIONS(1017), + [aux_sym_preproc_if_token1] = ACTIONS(1017), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1017), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1017), + [sym_preproc_directive] = ACTIONS(1017), + [anon_sym_SEMI] = ACTIONS(1015), + [anon_sym_typedef] = ACTIONS(1017), + [anon_sym_extern] = ACTIONS(1017), + [anon_sym___attribute__] = ACTIONS(1017), + [anon_sym_LPAREN2] = ACTIONS(1015), + [anon_sym_LBRACE] = ACTIONS(1015), + [anon_sym_RBRACE] = ACTIONS(1015), + [anon_sym_STAR] = ACTIONS(1015), + [anon_sym_static] = ACTIONS(1017), + [anon_sym_auto] = ACTIONS(1017), + [anon_sym_register] = ACTIONS(1017), + [anon_sym_inline] = ACTIONS(1017), + [anon_sym_const] = ACTIONS(1017), + [anon_sym_volatile] = ACTIONS(1017), + [anon_sym_restrict] = ACTIONS(1017), + [anon_sym__Atomic] = ACTIONS(1017), + [anon_sym_signed] = ACTIONS(1017), + [anon_sym_unsigned] = ACTIONS(1017), + [anon_sym_long] = ACTIONS(1017), + [anon_sym_short] = ACTIONS(1017), + [sym_primitive_type] = ACTIONS(1017), + [anon_sym_enum] = ACTIONS(1017), + [anon_sym_struct] = ACTIONS(1017), + [anon_sym_union] = ACTIONS(1017), + [anon_sym_if] = ACTIONS(1017), + [anon_sym_else] = ACTIONS(1017), + [anon_sym_switch] = ACTIONS(1017), + [anon_sym_case] = ACTIONS(1017), + [anon_sym_default] = ACTIONS(1017), + [anon_sym_while] = ACTIONS(1017), + [anon_sym_do] = ACTIONS(1017), + [anon_sym_for] = ACTIONS(1017), + [anon_sym_return] = ACTIONS(1017), + [anon_sym_break] = ACTIONS(1017), + [anon_sym_continue] = ACTIONS(1017), + [anon_sym_goto] = ACTIONS(1017), + [anon_sym_AMP] = ACTIONS(1015), + [anon_sym_BANG] = ACTIONS(1015), + [anon_sym_TILDE] = ACTIONS(1015), + [anon_sym_DASH] = ACTIONS(1017), + [anon_sym_PLUS] = ACTIONS(1017), + [anon_sym_DASH_DASH] = ACTIONS(1015), + [anon_sym_PLUS_PLUS] = ACTIONS(1015), + [anon_sym_sizeof] = ACTIONS(1017), + [sym_number_literal] = ACTIONS(1015), + [anon_sym_L_SQUOTE] = ACTIONS(1015), + [anon_sym_SQUOTE] = ACTIONS(1015), + [anon_sym_L_DQUOTE] = ACTIONS(1015), + [anon_sym_DQUOTE] = ACTIONS(1015), + [sym_true] = ACTIONS(1017), + [sym_false] = ACTIONS(1017), + [sym_null] = ACTIONS(1017), + [sym_comment] = ACTIONS(3), }, [170] = { - [sym_true] = ACTIONS(980), - [anon_sym_restrict] = ACTIONS(980), - [sym_null] = ACTIONS(980), - [anon_sym_goto] = ACTIONS(980), - [anon_sym_const] = ACTIONS(980), - [anon_sym_typedef] = ACTIONS(980), - [anon_sym_DASH_DASH] = ACTIONS(982), - [anon_sym__Atomic] = ACTIONS(980), - [sym_identifier] = ACTIONS(980), - [aux_sym_preproc_ifdef_token1] = ACTIONS(980), - [sym_number_literal] = ACTIONS(982), - [anon_sym_volatile] = ACTIONS(980), - [anon_sym_SQUOTE] = ACTIONS(982), - [anon_sym_extern] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(982), - [anon_sym_struct] = ACTIONS(980), - [anon_sym_signed] = ACTIONS(980), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(980), - [anon_sym_while] = ACTIONS(980), - [aux_sym_preproc_ifdef_token2] = ACTIONS(980), - [anon_sym_L_SQUOTE] = ACTIONS(982), - [anon_sym___attribute__] = ACTIONS(980), - [anon_sym_sizeof] = ACTIONS(980), - [anon_sym_LBRACE] = ACTIONS(982), - [anon_sym_union] = ACTIONS(980), - [anon_sym_unsigned] = ACTIONS(980), - [anon_sym_short] = ACTIONS(980), - [anon_sym_do] = ACTIONS(980), - [sym_preproc_directive] = ACTIONS(980), - [anon_sym_AMP] = ACTIONS(982), - [aux_sym_preproc_if_token1] = ACTIONS(980), - [anon_sym_TILDE] = ACTIONS(982), - [anon_sym_L_DQUOTE] = ACTIONS(982), - [anon_sym_LPAREN2] = ACTIONS(982), - [sym_primitive_type] = ACTIONS(980), - [anon_sym_for] = ACTIONS(980), - [anon_sym_break] = ACTIONS(980), - [anon_sym_BANG] = ACTIONS(982), - [aux_sym_preproc_include_token1] = ACTIONS(980), - [anon_sym_DASH] = ACTIONS(980), - [anon_sym_static] = ACTIONS(980), - [anon_sym_DQUOTE] = ACTIONS(982), - [anon_sym_register] = ACTIONS(980), - [anon_sym_STAR] = ACTIONS(982), - [anon_sym_if] = ACTIONS(980), - [anon_sym_switch] = ACTIONS(980), - [anon_sym_enum] = ACTIONS(980), - [sym_false] = ACTIONS(980), - [ts_builtin_sym_end] = ACTIONS(982), - [anon_sym_return] = ACTIONS(980), - [anon_sym_continue] = ACTIONS(980), - [anon_sym_SEMI] = ACTIONS(982), - [aux_sym_preproc_def_token1] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(980), - [anon_sym_auto] = ACTIONS(980), - [anon_sym_inline] = ACTIONS(980), + [sym_compound_statement] = STATE(221), + [sym_labeled_statement] = STATE(221), + [sym_expression_statement] = STATE(221), + [sym_if_statement] = STATE(221), + [sym_switch_statement] = STATE(221), + [sym_while_statement] = STATE(221), + [sym_do_statement] = STATE(221), + [sym_for_statement] = STATE(221), + [sym_return_statement] = STATE(221), + [sym_break_statement] = STATE(221), + [sym_continue_statement] = STATE(221), + [sym_goto_statement] = STATE(221), + [sym__expression] = STATE(671), + [sym_comma_expression] = STATE(1275), + [sym_conditional_expression] = STATE(671), + [sym_assignment_expression] = STATE(671), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(671), + [sym_binary_expression] = STATE(671), + [sym_update_expression] = STATE(671), + [sym_cast_expression] = STATE(671), + [sym_sizeof_expression] = STATE(671), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(671), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(671), + [sym_concatenated_string] = STATE(671), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(929), + [anon_sym_SEMI] = ACTIONS(99), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(109), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_do] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_return] = ACTIONS(119), + [anon_sym_break] = ACTIONS(121), + [anon_sym_continue] = ACTIONS(123), + [anon_sym_goto] = ACTIONS(125), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(127), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(129), + [sym_false] = ACTIONS(129), + [sym_null] = ACTIONS(129), + [sym_comment] = ACTIONS(3), }, [171] = { - [anon_sym_case] = ACTIONS(984), - [sym_true] = ACTIONS(984), - [anon_sym_restrict] = ACTIONS(984), - [sym_null] = ACTIONS(984), - [anon_sym_goto] = ACTIONS(984), - [anon_sym_const] = ACTIONS(984), - [anon_sym_typedef] = ACTIONS(984), - [anon_sym_DASH_DASH] = ACTIONS(986), - [anon_sym_default] = ACTIONS(984), - [anon_sym__Atomic] = ACTIONS(984), - [sym_identifier] = ACTIONS(984), - [aux_sym_preproc_ifdef_token1] = ACTIONS(984), - [sym_number_literal] = ACTIONS(986), - [anon_sym_volatile] = ACTIONS(984), - [anon_sym_SQUOTE] = ACTIONS(986), - [anon_sym_extern] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(986), - [anon_sym_struct] = ACTIONS(984), - [anon_sym_signed] = ACTIONS(984), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(984), - [anon_sym_while] = ACTIONS(984), - [aux_sym_preproc_ifdef_token2] = ACTIONS(984), - [anon_sym_L_SQUOTE] = ACTIONS(986), - [anon_sym___attribute__] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(984), - [anon_sym_LBRACE] = ACTIONS(986), - [anon_sym_union] = ACTIONS(984), - [anon_sym_unsigned] = ACTIONS(984), - [anon_sym_short] = ACTIONS(984), - [anon_sym_do] = ACTIONS(984), - [sym_preproc_directive] = ACTIONS(984), - [anon_sym_AMP] = ACTIONS(986), - [aux_sym_preproc_if_token1] = ACTIONS(984), - [anon_sym_TILDE] = ACTIONS(986), - [anon_sym_L_DQUOTE] = ACTIONS(986), - [anon_sym_LPAREN2] = ACTIONS(986), - [anon_sym_RBRACE] = ACTIONS(986), - [anon_sym_else] = ACTIONS(988), - [sym_primitive_type] = ACTIONS(984), - [anon_sym_for] = ACTIONS(984), - [anon_sym_break] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(986), - [aux_sym_preproc_include_token1] = ACTIONS(984), - [anon_sym_DASH] = ACTIONS(984), - [anon_sym_static] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(986), - [anon_sym_register] = ACTIONS(984), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_if] = ACTIONS(984), - [anon_sym_switch] = ACTIONS(984), - [anon_sym_enum] = ACTIONS(984), - [sym_false] = ACTIONS(984), - [ts_builtin_sym_end] = ACTIONS(986), - [anon_sym_return] = ACTIONS(984), - [anon_sym_continue] = ACTIONS(984), - [anon_sym_SEMI] = ACTIONS(986), - [aux_sym_preproc_def_token1] = ACTIONS(984), - [anon_sym_PLUS] = ACTIONS(984), - [anon_sym_auto] = ACTIONS(984), - [anon_sym_inline] = ACTIONS(984), + [ts_builtin_sym_end] = ACTIONS(1019), + [sym_identifier] = ACTIONS(1021), + [aux_sym_preproc_include_token1] = ACTIONS(1021), + [aux_sym_preproc_def_token1] = ACTIONS(1021), + [aux_sym_preproc_if_token1] = ACTIONS(1021), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1021), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1021), + [sym_preproc_directive] = ACTIONS(1021), + [anon_sym_SEMI] = ACTIONS(1019), + [anon_sym_typedef] = ACTIONS(1021), + [anon_sym_extern] = ACTIONS(1021), + [anon_sym___attribute__] = ACTIONS(1021), + [anon_sym_LPAREN2] = ACTIONS(1019), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_RBRACE] = ACTIONS(1019), + [anon_sym_STAR] = ACTIONS(1019), + [anon_sym_static] = ACTIONS(1021), + [anon_sym_auto] = ACTIONS(1021), + [anon_sym_register] = ACTIONS(1021), + [anon_sym_inline] = ACTIONS(1021), + [anon_sym_const] = ACTIONS(1021), + [anon_sym_volatile] = ACTIONS(1021), + [anon_sym_restrict] = ACTIONS(1021), + [anon_sym__Atomic] = ACTIONS(1021), + [anon_sym_signed] = ACTIONS(1021), + [anon_sym_unsigned] = ACTIONS(1021), + [anon_sym_long] = ACTIONS(1021), + [anon_sym_short] = ACTIONS(1021), + [sym_primitive_type] = ACTIONS(1021), + [anon_sym_enum] = ACTIONS(1021), + [anon_sym_struct] = ACTIONS(1021), + [anon_sym_union] = ACTIONS(1021), + [anon_sym_if] = ACTIONS(1021), + [anon_sym_else] = ACTIONS(1023), + [anon_sym_switch] = ACTIONS(1021), + [anon_sym_case] = ACTIONS(1021), + [anon_sym_default] = ACTIONS(1021), + [anon_sym_while] = ACTIONS(1021), + [anon_sym_do] = ACTIONS(1021), + [anon_sym_for] = ACTIONS(1021), + [anon_sym_return] = ACTIONS(1021), + [anon_sym_break] = ACTIONS(1021), + [anon_sym_continue] = ACTIONS(1021), + [anon_sym_goto] = ACTIONS(1021), + [anon_sym_AMP] = ACTIONS(1019), + [anon_sym_BANG] = ACTIONS(1019), + [anon_sym_TILDE] = ACTIONS(1019), + [anon_sym_DASH] = ACTIONS(1021), + [anon_sym_PLUS] = ACTIONS(1021), + [anon_sym_DASH_DASH] = ACTIONS(1019), + [anon_sym_PLUS_PLUS] = ACTIONS(1019), + [anon_sym_sizeof] = ACTIONS(1021), + [sym_number_literal] = ACTIONS(1019), + [anon_sym_L_SQUOTE] = ACTIONS(1019), + [anon_sym_SQUOTE] = ACTIONS(1019), + [anon_sym_L_DQUOTE] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(1019), + [sym_true] = ACTIONS(1021), + [sym_false] = ACTIONS(1021), + [sym_null] = ACTIONS(1021), + [sym_comment] = ACTIONS(3), }, [172] = { - [anon_sym_restrict] = ACTIONS(990), - [anon_sym_COMMA] = ACTIONS(992), - [anon_sym_static] = ACTIONS(990), - [anon_sym_volatile] = ACTIONS(990), - [anon_sym_register] = ACTIONS(990), - [anon_sym_extern] = ACTIONS(990), - [anon_sym_STAR] = ACTIONS(992), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(990), - [anon_sym_LPAREN2] = ACTIONS(992), - [anon_sym_COLON] = ACTIONS(992), - [anon_sym_SEMI] = ACTIONS(992), - [anon_sym__Atomic] = ACTIONS(990), - [sym_identifier] = ACTIONS(990), - [anon_sym_auto] = ACTIONS(990), - [anon_sym_RPAREN] = ACTIONS(992), - [anon_sym_inline] = ACTIONS(990), - [anon_sym___attribute__] = ACTIONS(990), - [anon_sym_LBRACK] = ACTIONS(992), + [sym_compound_statement] = STATE(85), + [sym_labeled_statement] = STATE(85), + [sym_expression_statement] = STATE(85), + [sym_if_statement] = STATE(85), + [sym_switch_statement] = STATE(85), + [sym_while_statement] = STATE(85), + [sym_do_statement] = STATE(85), + [sym_for_statement] = STATE(85), + [sym_return_statement] = STATE(85), + [sym_break_statement] = STATE(85), + [sym_continue_statement] = STATE(85), + [sym_goto_statement] = STATE(85), + [sym__expression] = STATE(721), + [sym_comma_expression] = STATE(1123), + [sym_conditional_expression] = STATE(721), + [sym_assignment_expression] = STATE(721), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(721), + [sym_binary_expression] = STATE(721), + [sym_update_expression] = STATE(721), + [sym_cast_expression] = STATE(721), + [sym_sizeof_expression] = STATE(721), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(721), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(721), + [sym_concatenated_string] = STATE(721), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(919), + [anon_sym_SEMI] = ACTIONS(19), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(921), + [anon_sym_switch] = ACTIONS(49), + [anon_sym_while] = ACTIONS(923), + [anon_sym_do] = ACTIONS(925), + [anon_sym_for] = ACTIONS(927), + [anon_sym_return] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(61), + [anon_sym_goto] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(73), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_null] = ACTIONS(79), + [sym_comment] = ACTIONS(3), }, [173] = { - [sym_if_statement] = STATE(279), - [sym_do_statement] = STATE(279), - [sym_for_statement] = STATE(279), - [sym__expression] = STATE(1093), - [sym_comma_expression] = STATE(1094), - [sym_binary_expression] = STATE(1093), - [sym_update_expression] = STATE(1093), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(279), - [sym_return_statement] = STATE(279), - [sym_break_statement] = STATE(279), - [sym_conditional_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_cast_expression] = STATE(1093), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1093), - [sym_char_literal] = STATE(1093), - [sym_labeled_statement] = STATE(279), - [sym_case_statement] = STATE(279), - [sym_while_statement] = STATE(279), - [sym_continue_statement] = STATE(279), - [sym_goto_statement] = STATE(279), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1093), - [sym_sizeof_expression] = STATE(1093), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1093), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(279), - [aux_sym_switch_body_repeat1] = STATE(279), - [sym_expression_statement] = STATE(279), - [anon_sym_LBRACE] = ACTIONS(994), - [anon_sym_case] = ACTIONS(996), - [sym_true] = ACTIONS(998), - [sym_null] = ACTIONS(998), - [anon_sym_do] = ACTIONS(1000), - [anon_sym_goto] = ACTIONS(1002), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(1004), - [anon_sym_default] = ACTIONS(1006), - [sym_identifier] = ACTIONS(1008), - [anon_sym_for] = ACTIONS(1010), - [anon_sym_break] = ACTIONS(1012), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(1014), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(1016), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(1018), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(998), - [anon_sym_return] = ACTIONS(1020), - [anon_sym_while] = ACTIONS(1022), - [anon_sym_continue] = ACTIONS(1024), - [anon_sym_SEMI] = ACTIONS(1026), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [ts_builtin_sym_end] = ACTIONS(1025), + [sym_identifier] = ACTIONS(1027), + [aux_sym_preproc_include_token1] = ACTIONS(1027), + [aux_sym_preproc_def_token1] = ACTIONS(1027), + [aux_sym_preproc_if_token1] = ACTIONS(1027), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1027), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1027), + [sym_preproc_directive] = ACTIONS(1027), + [anon_sym_SEMI] = ACTIONS(1025), + [anon_sym_typedef] = ACTIONS(1027), + [anon_sym_extern] = ACTIONS(1027), + [anon_sym___attribute__] = ACTIONS(1027), + [anon_sym_LPAREN2] = ACTIONS(1025), + [anon_sym_LBRACE] = ACTIONS(1025), + [anon_sym_RBRACE] = ACTIONS(1025), + [anon_sym_STAR] = ACTIONS(1025), + [anon_sym_static] = ACTIONS(1027), + [anon_sym_auto] = ACTIONS(1027), + [anon_sym_register] = ACTIONS(1027), + [anon_sym_inline] = ACTIONS(1027), + [anon_sym_const] = ACTIONS(1027), + [anon_sym_volatile] = ACTIONS(1027), + [anon_sym_restrict] = ACTIONS(1027), + [anon_sym__Atomic] = ACTIONS(1027), + [anon_sym_signed] = ACTIONS(1027), + [anon_sym_unsigned] = ACTIONS(1027), + [anon_sym_long] = ACTIONS(1027), + [anon_sym_short] = ACTIONS(1027), + [sym_primitive_type] = ACTIONS(1027), + [anon_sym_enum] = ACTIONS(1027), + [anon_sym_struct] = ACTIONS(1027), + [anon_sym_union] = ACTIONS(1027), + [anon_sym_if] = ACTIONS(1027), + [anon_sym_else] = ACTIONS(1027), + [anon_sym_switch] = ACTIONS(1027), + [anon_sym_case] = ACTIONS(1027), + [anon_sym_default] = ACTIONS(1027), + [anon_sym_while] = ACTIONS(1027), + [anon_sym_do] = ACTIONS(1027), + [anon_sym_for] = ACTIONS(1027), + [anon_sym_return] = ACTIONS(1027), + [anon_sym_break] = ACTIONS(1027), + [anon_sym_continue] = ACTIONS(1027), + [anon_sym_goto] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1025), + [anon_sym_BANG] = ACTIONS(1025), + [anon_sym_TILDE] = ACTIONS(1025), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH_DASH] = ACTIONS(1025), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_sizeof] = ACTIONS(1027), + [sym_number_literal] = ACTIONS(1025), + [anon_sym_L_SQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1025), + [anon_sym_L_DQUOTE] = ACTIONS(1025), + [anon_sym_DQUOTE] = ACTIONS(1025), + [sym_true] = ACTIONS(1027), + [sym_false] = ACTIONS(1027), + [sym_null] = ACTIONS(1027), + [sym_comment] = ACTIONS(3), }, [174] = { - [anon_sym_case] = ACTIONS(1028), - [sym_true] = ACTIONS(1028), - [anon_sym_restrict] = ACTIONS(1028), - [sym_null] = ACTIONS(1028), - [anon_sym_goto] = ACTIONS(1028), - [anon_sym_const] = ACTIONS(1028), - [anon_sym_typedef] = ACTIONS(1028), - [anon_sym_DASH_DASH] = ACTIONS(1030), - [anon_sym_default] = ACTIONS(1028), - [anon_sym__Atomic] = ACTIONS(1028), - [sym_identifier] = ACTIONS(1028), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1028), - [sym_number_literal] = ACTIONS(1030), - [anon_sym_volatile] = ACTIONS(1028), - [anon_sym_SQUOTE] = ACTIONS(1030), - [anon_sym_extern] = ACTIONS(1028), - [anon_sym_PLUS_PLUS] = ACTIONS(1030), - [anon_sym_struct] = ACTIONS(1028), - [anon_sym_signed] = ACTIONS(1028), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1028), - [anon_sym_while] = ACTIONS(1028), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1028), - [anon_sym_L_SQUOTE] = ACTIONS(1030), - [anon_sym___attribute__] = ACTIONS(1028), - [anon_sym_sizeof] = ACTIONS(1028), - [anon_sym_LBRACE] = ACTIONS(1030), - [anon_sym_union] = ACTIONS(1028), - [anon_sym_unsigned] = ACTIONS(1028), - [anon_sym_short] = ACTIONS(1028), - [anon_sym_do] = ACTIONS(1028), - [sym_preproc_directive] = ACTIONS(1028), - [anon_sym_AMP] = ACTIONS(1030), - [aux_sym_preproc_if_token1] = ACTIONS(1028), - [anon_sym_TILDE] = ACTIONS(1030), - [anon_sym_L_DQUOTE] = ACTIONS(1030), - [anon_sym_LPAREN2] = ACTIONS(1030), - [anon_sym_RBRACE] = ACTIONS(1030), - [anon_sym_else] = ACTIONS(1028), - [sym_primitive_type] = ACTIONS(1028), - [anon_sym_for] = ACTIONS(1028), - [anon_sym_break] = ACTIONS(1028), - [anon_sym_BANG] = ACTIONS(1030), - [aux_sym_preproc_include_token1] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1028), - [anon_sym_static] = ACTIONS(1028), - [anon_sym_DQUOTE] = ACTIONS(1030), - [anon_sym_register] = ACTIONS(1028), - [anon_sym_STAR] = ACTIONS(1030), - [anon_sym_if] = ACTIONS(1028), - [anon_sym_switch] = ACTIONS(1028), - [anon_sym_enum] = ACTIONS(1028), - [sym_false] = ACTIONS(1028), - [ts_builtin_sym_end] = ACTIONS(1030), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_continue] = ACTIONS(1028), - [anon_sym_SEMI] = ACTIONS(1030), - [aux_sym_preproc_def_token1] = ACTIONS(1028), - [anon_sym_PLUS] = ACTIONS(1028), - [anon_sym_auto] = ACTIONS(1028), - [anon_sym_inline] = ACTIONS(1028), + [ts_builtin_sym_end] = ACTIONS(1029), + [sym_identifier] = ACTIONS(1031), + [aux_sym_preproc_include_token1] = ACTIONS(1031), + [aux_sym_preproc_def_token1] = ACTIONS(1031), + [aux_sym_preproc_if_token1] = ACTIONS(1031), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1031), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1031), + [sym_preproc_directive] = ACTIONS(1031), + [anon_sym_SEMI] = ACTIONS(1029), + [anon_sym_typedef] = ACTIONS(1031), + [anon_sym_extern] = ACTIONS(1031), + [anon_sym___attribute__] = ACTIONS(1031), + [anon_sym_LPAREN2] = ACTIONS(1029), + [anon_sym_LBRACE] = ACTIONS(1029), + [anon_sym_RBRACE] = ACTIONS(1029), + [anon_sym_STAR] = ACTIONS(1029), + [anon_sym_static] = ACTIONS(1031), + [anon_sym_auto] = ACTIONS(1031), + [anon_sym_register] = ACTIONS(1031), + [anon_sym_inline] = ACTIONS(1031), + [anon_sym_const] = ACTIONS(1031), + [anon_sym_volatile] = ACTIONS(1031), + [anon_sym_restrict] = ACTIONS(1031), + [anon_sym__Atomic] = ACTIONS(1031), + [anon_sym_signed] = ACTIONS(1031), + [anon_sym_unsigned] = ACTIONS(1031), + [anon_sym_long] = ACTIONS(1031), + [anon_sym_short] = ACTIONS(1031), + [sym_primitive_type] = ACTIONS(1031), + [anon_sym_enum] = ACTIONS(1031), + [anon_sym_struct] = ACTIONS(1031), + [anon_sym_union] = ACTIONS(1031), + [anon_sym_if] = ACTIONS(1031), + [anon_sym_else] = ACTIONS(1031), + [anon_sym_switch] = ACTIONS(1031), + [anon_sym_case] = ACTIONS(1031), + [anon_sym_default] = ACTIONS(1031), + [anon_sym_while] = ACTIONS(1031), + [anon_sym_do] = ACTIONS(1031), + [anon_sym_for] = ACTIONS(1031), + [anon_sym_return] = ACTIONS(1031), + [anon_sym_break] = ACTIONS(1031), + [anon_sym_continue] = ACTIONS(1031), + [anon_sym_goto] = ACTIONS(1031), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_TILDE] = ACTIONS(1029), + [anon_sym_DASH] = ACTIONS(1031), + [anon_sym_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_sizeof] = ACTIONS(1031), + [sym_number_literal] = ACTIONS(1029), + [anon_sym_L_SQUOTE] = ACTIONS(1029), + [anon_sym_SQUOTE] = ACTIONS(1029), + [anon_sym_L_DQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE] = ACTIONS(1029), + [sym_true] = ACTIONS(1031), + [sym_false] = ACTIONS(1031), + [sym_null] = ACTIONS(1031), + [sym_comment] = ACTIONS(3), }, [175] = { - [anon_sym_restrict] = ACTIONS(1032), - [anon_sym_COMMA] = ACTIONS(1034), - [anon_sym_static] = ACTIONS(1032), - [anon_sym_volatile] = ACTIONS(1032), - [anon_sym_register] = ACTIONS(1032), - [anon_sym_extern] = ACTIONS(1032), - [anon_sym_STAR] = ACTIONS(1034), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(1032), - [anon_sym_LPAREN2] = ACTIONS(1034), - [anon_sym_COLON] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1034), - [anon_sym__Atomic] = ACTIONS(1032), - [sym_identifier] = ACTIONS(1032), - [anon_sym_auto] = ACTIONS(1032), - [anon_sym_RPAREN] = ACTIONS(1034), - [anon_sym_inline] = ACTIONS(1032), - [anon_sym___attribute__] = ACTIONS(1032), - [anon_sym_LBRACK] = ACTIONS(1034), + [sym_compound_statement] = STATE(143), + [sym_labeled_statement] = STATE(143), + [sym_expression_statement] = STATE(143), + [sym_if_statement] = STATE(143), + [sym_switch_statement] = STATE(143), + [sym_while_statement] = STATE(143), + [sym_do_statement] = STATE(143), + [sym_for_statement] = STATE(143), + [sym_return_statement] = STATE(143), + [sym_break_statement] = STATE(143), + [sym_continue_statement] = STATE(143), + [sym_goto_statement] = STATE(143), + [sym__expression] = STATE(721), + [sym_comma_expression] = STATE(1123), + [sym_conditional_expression] = STATE(721), + [sym_assignment_expression] = STATE(721), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(721), + [sym_binary_expression] = STATE(721), + [sym_update_expression] = STATE(721), + [sym_cast_expression] = STATE(721), + [sym_sizeof_expression] = STATE(721), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(721), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(721), + [sym_concatenated_string] = STATE(721), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(919), + [anon_sym_SEMI] = ACTIONS(19), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(921), + [anon_sym_switch] = ACTIONS(49), + [anon_sym_while] = ACTIONS(923), + [anon_sym_do] = ACTIONS(925), + [anon_sym_for] = ACTIONS(927), + [anon_sym_return] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(61), + [anon_sym_goto] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(73), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_null] = ACTIONS(79), + [sym_comment] = ACTIONS(3), }, [176] = { - [anon_sym_EQ] = ACTIONS(1036), - [anon_sym_COMMA] = ACTIONS(1038), - [anon_sym_RBRACE] = ACTIONS(1038), + [sym_compound_statement] = STATE(321), + [sym_labeled_statement] = STATE(321), + [sym_expression_statement] = STATE(321), + [sym_if_statement] = STATE(321), + [sym_switch_statement] = STATE(321), + [sym_while_statement] = STATE(321), + [sym_do_statement] = STATE(321), + [sym_for_statement] = STATE(321), + [sym_return_statement] = STATE(321), + [sym_break_statement] = STATE(321), + [sym_continue_statement] = STATE(321), + [sym_goto_statement] = STATE(321), + [sym__expression] = STATE(707), + [sym_comma_expression] = STATE(1207), + [sym_conditional_expression] = STATE(707), + [sym_assignment_expression] = STATE(707), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(707), + [sym_binary_expression] = STATE(707), + [sym_update_expression] = STATE(707), + [sym_cast_expression] = STATE(707), + [sym_sizeof_expression] = STATE(707), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(707), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(707), + [sym_concatenated_string] = STATE(707), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(917), + [anon_sym_SEMI] = ACTIONS(358), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(364), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(370), + [anon_sym_switch] = ACTIONS(372), + [anon_sym_while] = ACTIONS(374), + [anon_sym_do] = ACTIONS(376), + [anon_sym_for] = ACTIONS(378), + [anon_sym_return] = ACTIONS(380), + [anon_sym_break] = ACTIONS(382), + [anon_sym_continue] = ACTIONS(384), + [anon_sym_goto] = ACTIONS(386), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(388), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(390), + [sym_false] = ACTIONS(390), + [sym_null] = ACTIONS(390), [sym_comment] = ACTIONS(3), }, [177] = { - [anon_sym_RBRACE] = ACTIONS(1040), + [sym_compound_statement] = STATE(214), + [sym_labeled_statement] = STATE(214), + [sym_expression_statement] = STATE(214), + [sym_if_statement] = STATE(214), + [sym_switch_statement] = STATE(214), + [sym_while_statement] = STATE(214), + [sym_do_statement] = STATE(214), + [sym_for_statement] = STATE(214), + [sym_return_statement] = STATE(214), + [sym_break_statement] = STATE(214), + [sym_continue_statement] = STATE(214), + [sym_goto_statement] = STATE(214), + [sym__expression] = STATE(671), + [sym_comma_expression] = STATE(1275), + [sym_conditional_expression] = STATE(671), + [sym_assignment_expression] = STATE(671), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(671), + [sym_binary_expression] = STATE(671), + [sym_update_expression] = STATE(671), + [sym_cast_expression] = STATE(671), + [sym_sizeof_expression] = STATE(671), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(671), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(671), + [sym_concatenated_string] = STATE(671), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(929), + [anon_sym_SEMI] = ACTIONS(99), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(109), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_do] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_return] = ACTIONS(119), + [anon_sym_break] = ACTIONS(121), + [anon_sym_continue] = ACTIONS(123), + [anon_sym_goto] = ACTIONS(125), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(127), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(129), + [sym_false] = ACTIONS(129), + [sym_null] = ACTIONS(129), [sym_comment] = ACTIONS(3), }, [178] = { - [aux_sym_enumerator_list_repeat1] = STATE(283), - [anon_sym_COMMA] = ACTIONS(1042), - [anon_sym_RBRACE] = ACTIONS(1040), + [sym_compound_statement] = STATE(232), + [sym_labeled_statement] = STATE(232), + [sym_expression_statement] = STATE(232), + [sym_if_statement] = STATE(232), + [sym_switch_statement] = STATE(232), + [sym_while_statement] = STATE(232), + [sym_do_statement] = STATE(232), + [sym_for_statement] = STATE(232), + [sym_return_statement] = STATE(232), + [sym_break_statement] = STATE(232), + [sym_continue_statement] = STATE(232), + [sym_goto_statement] = STATE(232), + [sym__expression] = STATE(671), + [sym_comma_expression] = STATE(1275), + [sym_conditional_expression] = STATE(671), + [sym_assignment_expression] = STATE(671), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(671), + [sym_binary_expression] = STATE(671), + [sym_update_expression] = STATE(671), + [sym_cast_expression] = STATE(671), + [sym_sizeof_expression] = STATE(671), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(671), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(671), + [sym_concatenated_string] = STATE(671), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(929), + [anon_sym_SEMI] = ACTIONS(99), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(109), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_do] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_return] = ACTIONS(119), + [anon_sym_break] = ACTIONS(121), + [anon_sym_continue] = ACTIONS(123), + [anon_sym_goto] = ACTIONS(125), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(127), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(129), + [sym_false] = ACTIONS(129), + [sym_null] = ACTIONS(129), [sym_comment] = ACTIONS(3), }, [179] = { - [anon_sym_restrict] = ACTIONS(1044), - [anon_sym_COMMA] = ACTIONS(1046), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_volatile] = ACTIONS(1044), - [anon_sym_register] = ACTIONS(1044), - [anon_sym_extern] = ACTIONS(1044), - [anon_sym_STAR] = ACTIONS(1046), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(1044), - [anon_sym_LPAREN2] = ACTIONS(1046), - [anon_sym_COLON] = ACTIONS(1046), - [anon_sym_SEMI] = ACTIONS(1046), - [anon_sym__Atomic] = ACTIONS(1044), - [sym_identifier] = ACTIONS(1044), - [anon_sym_auto] = ACTIONS(1044), - [anon_sym_RPAREN] = ACTIONS(1046), - [anon_sym_inline] = ACTIONS(1044), - [anon_sym___attribute__] = ACTIONS(1044), - [anon_sym_LBRACK] = ACTIONS(1046), + [sym_compound_statement] = STATE(79), + [sym_labeled_statement] = STATE(79), + [sym_expression_statement] = STATE(79), + [sym_if_statement] = STATE(79), + [sym_switch_statement] = STATE(79), + [sym_while_statement] = STATE(79), + [sym_do_statement] = STATE(79), + [sym_for_statement] = STATE(79), + [sym_return_statement] = STATE(79), + [sym_break_statement] = STATE(79), + [sym_continue_statement] = STATE(79), + [sym_goto_statement] = STATE(79), + [sym__expression] = STATE(721), + [sym_comma_expression] = STATE(1123), + [sym_conditional_expression] = STATE(721), + [sym_assignment_expression] = STATE(721), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(721), + [sym_binary_expression] = STATE(721), + [sym_update_expression] = STATE(721), + [sym_cast_expression] = STATE(721), + [sym_sizeof_expression] = STATE(721), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(721), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(721), + [sym_concatenated_string] = STATE(721), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(919), + [anon_sym_SEMI] = ACTIONS(19), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(921), + [anon_sym_switch] = ACTIONS(49), + [anon_sym_while] = ACTIONS(923), + [anon_sym_do] = ACTIONS(925), + [anon_sym_for] = ACTIONS(927), + [anon_sym_return] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(61), + [anon_sym_goto] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(73), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_null] = ACTIONS(79), + [sym_comment] = ACTIONS(3), }, [180] = { - [anon_sym_GT_GT] = ACTIONS(1048), - [anon_sym_PERCENT_EQ] = ACTIONS(1050), - [anon_sym_DASH_EQ] = ACTIONS(1050), - [anon_sym_PIPE] = ACTIONS(1048), - [anon_sym_EQ_EQ] = ACTIONS(1050), - [anon_sym_SLASH] = ACTIONS(1048), - [anon_sym_DASH_GT] = ACTIONS(1050), - [anon_sym_LT_LT] = ACTIONS(1048), - [anon_sym_DASH_DASH] = ACTIONS(1050), - [anon_sym_PLUS_EQ] = ACTIONS(1050), - [anon_sym_LT_LT_EQ] = ACTIONS(1050), - [anon_sym_QMARK] = ACTIONS(1050), - [anon_sym_BANG_EQ] = ACTIONS(1050), - [anon_sym_CARET_EQ] = ACTIONS(1050), - [anon_sym_COMMA] = ACTIONS(1050), - [anon_sym_PLUS_PLUS] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT_EQ] = ACTIONS(1050), - [anon_sym_GT] = ACTIONS(1048), - [anon_sym_PIPE_EQ] = ACTIONS(1050), - [anon_sym_RPAREN] = ACTIONS(1050), - [anon_sym_RBRACK] = ACTIONS(1050), - [anon_sym_AMP_EQ] = ACTIONS(1050), - [anon_sym_PERCENT] = ACTIONS(1048), - [anon_sym_AMP] = ACTIONS(1048), - [anon_sym_EQ] = ACTIONS(1048), - [anon_sym_LPAREN2] = ACTIONS(1050), - [anon_sym_GT_EQ] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(1050), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_STAR_EQ] = ACTIONS(1050), - [anon_sym_PIPE_PIPE] = ACTIONS(1050), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_LT_EQ] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(1048), - [anon_sym_SLASH_EQ] = ACTIONS(1050), - [anon_sym_AMP_AMP] = ACTIONS(1050), - [anon_sym_SEMI] = ACTIONS(1050), - [anon_sym_CARET] = ACTIONS(1048), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_DOT] = ACTIONS(1050), - [anon_sym_LT] = ACTIONS(1048), - [anon_sym_LBRACK] = ACTIONS(1050), + [sym_compound_statement] = STATE(1217), + [sym_labeled_statement] = STATE(1217), + [sym_expression_statement] = STATE(1217), + [sym_if_statement] = STATE(1217), + [sym_switch_statement] = STATE(1217), + [sym_while_statement] = STATE(1217), + [sym_do_statement] = STATE(1217), + [sym_for_statement] = STATE(1217), + [sym_return_statement] = STATE(1217), + [sym_break_statement] = STATE(1217), + [sym_continue_statement] = STATE(1217), + [sym_goto_statement] = STATE(1217), + [sym__expression] = STATE(721), + [sym_comma_expression] = STATE(1123), + [sym_conditional_expression] = STATE(721), + [sym_assignment_expression] = STATE(721), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(721), + [sym_binary_expression] = STATE(721), + [sym_update_expression] = STATE(721), + [sym_cast_expression] = STATE(721), + [sym_sizeof_expression] = STATE(721), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(721), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(721), + [sym_concatenated_string] = STATE(721), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(919), + [anon_sym_SEMI] = ACTIONS(19), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(921), + [anon_sym_switch] = ACTIONS(49), + [anon_sym_while] = ACTIONS(923), + [anon_sym_do] = ACTIONS(925), + [anon_sym_for] = ACTIONS(927), + [anon_sym_return] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(61), + [anon_sym_goto] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(73), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_null] = ACTIONS(79), + [sym_comment] = ACTIONS(3), }, [181] = { - [anon_sym_case] = ACTIONS(1052), - [sym_true] = ACTIONS(1052), - [anon_sym_restrict] = ACTIONS(1052), - [sym_null] = ACTIONS(1052), - [anon_sym_goto] = ACTIONS(1052), - [anon_sym_const] = ACTIONS(1052), - [anon_sym_typedef] = ACTIONS(1052), - [anon_sym_DASH_DASH] = ACTIONS(1054), - [anon_sym_default] = ACTIONS(1052), - [anon_sym__Atomic] = ACTIONS(1052), - [sym_identifier] = ACTIONS(1052), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1052), - [sym_number_literal] = ACTIONS(1054), - [anon_sym_volatile] = ACTIONS(1052), - [anon_sym_SQUOTE] = ACTIONS(1054), - [anon_sym_extern] = ACTIONS(1052), - [anon_sym_PLUS_PLUS] = ACTIONS(1054), - [anon_sym_struct] = ACTIONS(1052), - [anon_sym_signed] = ACTIONS(1052), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1052), - [anon_sym_while] = ACTIONS(1052), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1052), - [anon_sym_L_SQUOTE] = ACTIONS(1054), - [anon_sym___attribute__] = ACTIONS(1052), - [anon_sym_sizeof] = ACTIONS(1052), - [anon_sym_LBRACE] = ACTIONS(1054), - [anon_sym_union] = ACTIONS(1052), - [anon_sym_unsigned] = ACTIONS(1052), - [anon_sym_short] = ACTIONS(1052), - [anon_sym_do] = ACTIONS(1052), - [sym_preproc_directive] = ACTIONS(1052), - [anon_sym_AMP] = ACTIONS(1054), - [aux_sym_preproc_if_token1] = ACTIONS(1052), - [anon_sym_TILDE] = ACTIONS(1054), - [anon_sym_L_DQUOTE] = ACTIONS(1054), - [anon_sym_LPAREN2] = ACTIONS(1054), - [anon_sym_RBRACE] = ACTIONS(1054), - [anon_sym_else] = ACTIONS(1052), - [sym_primitive_type] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1052), - [anon_sym_break] = ACTIONS(1052), - [anon_sym_BANG] = ACTIONS(1054), - [aux_sym_preproc_include_token1] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1052), - [anon_sym_static] = ACTIONS(1052), - [anon_sym_DQUOTE] = ACTIONS(1054), - [anon_sym_register] = ACTIONS(1052), - [anon_sym_STAR] = ACTIONS(1054), - [anon_sym_if] = ACTIONS(1052), - [anon_sym_switch] = ACTIONS(1052), - [anon_sym_enum] = ACTIONS(1052), - [sym_false] = ACTIONS(1052), - [ts_builtin_sym_end] = ACTIONS(1054), - [anon_sym_return] = ACTIONS(1052), - [anon_sym_continue] = ACTIONS(1052), - [anon_sym_SEMI] = ACTIONS(1054), - [aux_sym_preproc_def_token1] = ACTIONS(1052), - [anon_sym_PLUS] = ACTIONS(1052), - [anon_sym_auto] = ACTIONS(1052), - [anon_sym_inline] = ACTIONS(1052), + [ts_builtin_sym_end] = ACTIONS(1033), + [sym_identifier] = ACTIONS(1035), + [aux_sym_preproc_include_token1] = ACTIONS(1035), + [aux_sym_preproc_def_token1] = ACTIONS(1035), + [aux_sym_preproc_if_token1] = ACTIONS(1035), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1035), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1035), + [sym_preproc_directive] = ACTIONS(1035), + [anon_sym_SEMI] = ACTIONS(1033), + [anon_sym_typedef] = ACTIONS(1035), + [anon_sym_extern] = ACTIONS(1035), + [anon_sym___attribute__] = ACTIONS(1035), + [anon_sym_LPAREN2] = ACTIONS(1033), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_RBRACE] = ACTIONS(1033), + [anon_sym_STAR] = ACTIONS(1033), + [anon_sym_static] = ACTIONS(1035), + [anon_sym_auto] = ACTIONS(1035), + [anon_sym_register] = ACTIONS(1035), + [anon_sym_inline] = ACTIONS(1035), + [anon_sym_const] = ACTIONS(1035), + [anon_sym_volatile] = ACTIONS(1035), + [anon_sym_restrict] = ACTIONS(1035), + [anon_sym__Atomic] = ACTIONS(1035), + [anon_sym_signed] = ACTIONS(1035), + [anon_sym_unsigned] = ACTIONS(1035), + [anon_sym_long] = ACTIONS(1035), + [anon_sym_short] = ACTIONS(1035), + [sym_primitive_type] = ACTIONS(1035), + [anon_sym_enum] = ACTIONS(1035), + [anon_sym_struct] = ACTIONS(1035), + [anon_sym_union] = ACTIONS(1035), + [anon_sym_if] = ACTIONS(1035), + [anon_sym_else] = ACTIONS(1035), + [anon_sym_switch] = ACTIONS(1035), + [anon_sym_case] = ACTIONS(1035), + [anon_sym_default] = ACTIONS(1035), + [anon_sym_while] = ACTIONS(1035), + [anon_sym_do] = ACTIONS(1035), + [anon_sym_for] = ACTIONS(1035), + [anon_sym_return] = ACTIONS(1035), + [anon_sym_break] = ACTIONS(1035), + [anon_sym_continue] = ACTIONS(1035), + [anon_sym_goto] = ACTIONS(1035), + [anon_sym_AMP] = ACTIONS(1033), + [anon_sym_BANG] = ACTIONS(1033), + [anon_sym_TILDE] = ACTIONS(1033), + [anon_sym_DASH] = ACTIONS(1035), + [anon_sym_PLUS] = ACTIONS(1035), + [anon_sym_DASH_DASH] = ACTIONS(1033), + [anon_sym_PLUS_PLUS] = ACTIONS(1033), + [anon_sym_sizeof] = ACTIONS(1035), + [sym_number_literal] = ACTIONS(1033), + [anon_sym_L_SQUOTE] = ACTIONS(1033), + [anon_sym_SQUOTE] = ACTIONS(1033), + [anon_sym_L_DQUOTE] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(1033), + [sym_true] = ACTIONS(1035), + [sym_false] = ACTIONS(1035), + [sym_null] = ACTIONS(1035), + [sym_comment] = ACTIONS(3), }, [182] = { - [anon_sym_case] = ACTIONS(1056), - [sym_true] = ACTIONS(1056), - [anon_sym_restrict] = ACTIONS(1056), - [sym_null] = ACTIONS(1056), - [anon_sym_goto] = ACTIONS(1056), - [anon_sym_const] = ACTIONS(1056), - [anon_sym_typedef] = ACTIONS(1056), - [anon_sym_DASH_DASH] = ACTIONS(1058), - [anon_sym_default] = ACTIONS(1056), - [anon_sym__Atomic] = ACTIONS(1056), - [sym_identifier] = ACTIONS(1056), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1056), - [sym_number_literal] = ACTIONS(1058), - [anon_sym_volatile] = ACTIONS(1056), - [anon_sym_SQUOTE] = ACTIONS(1058), - [anon_sym_extern] = ACTIONS(1056), - [anon_sym_PLUS_PLUS] = ACTIONS(1058), - [anon_sym_struct] = ACTIONS(1056), - [anon_sym_signed] = ACTIONS(1056), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1056), - [anon_sym_while] = ACTIONS(1056), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1056), - [anon_sym_L_SQUOTE] = ACTIONS(1058), - [anon_sym___attribute__] = ACTIONS(1056), - [anon_sym_sizeof] = ACTIONS(1056), - [anon_sym_LBRACE] = ACTIONS(1058), - [anon_sym_union] = ACTIONS(1056), - [anon_sym_unsigned] = ACTIONS(1056), - [anon_sym_short] = ACTIONS(1056), - [anon_sym_do] = ACTIONS(1056), - [sym_preproc_directive] = ACTIONS(1056), - [anon_sym_AMP] = ACTIONS(1058), - [aux_sym_preproc_if_token1] = ACTIONS(1056), - [anon_sym_TILDE] = ACTIONS(1058), - [anon_sym_L_DQUOTE] = ACTIONS(1058), - [anon_sym_LPAREN2] = ACTIONS(1058), - [anon_sym_RBRACE] = ACTIONS(1058), - [anon_sym_else] = ACTIONS(1056), - [sym_primitive_type] = ACTIONS(1056), - [anon_sym_for] = ACTIONS(1056), - [anon_sym_break] = ACTIONS(1056), - [anon_sym_BANG] = ACTIONS(1058), - [aux_sym_preproc_include_token1] = ACTIONS(1056), - [anon_sym_DASH] = ACTIONS(1056), - [anon_sym_static] = ACTIONS(1056), - [anon_sym_DQUOTE] = ACTIONS(1058), - [anon_sym_register] = ACTIONS(1056), - [anon_sym_STAR] = ACTIONS(1058), - [anon_sym_if] = ACTIONS(1056), - [anon_sym_switch] = ACTIONS(1056), - [anon_sym_enum] = ACTIONS(1056), - [sym_false] = ACTIONS(1056), - [ts_builtin_sym_end] = ACTIONS(1058), - [anon_sym_return] = ACTIONS(1056), - [anon_sym_continue] = ACTIONS(1056), - [anon_sym_SEMI] = ACTIONS(1058), - [aux_sym_preproc_def_token1] = ACTIONS(1056), - [anon_sym_PLUS] = ACTIONS(1056), - [anon_sym_auto] = ACTIONS(1056), - [anon_sym_inline] = ACTIONS(1056), + [ts_builtin_sym_end] = ACTIONS(1037), + [sym_identifier] = ACTIONS(1039), + [aux_sym_preproc_include_token1] = ACTIONS(1039), + [aux_sym_preproc_def_token1] = ACTIONS(1039), + [aux_sym_preproc_if_token1] = ACTIONS(1039), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1039), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1039), + [sym_preproc_directive] = ACTIONS(1039), + [anon_sym_SEMI] = ACTIONS(1037), + [anon_sym_typedef] = ACTIONS(1039), + [anon_sym_extern] = ACTIONS(1039), + [anon_sym___attribute__] = ACTIONS(1039), + [anon_sym_LPAREN2] = ACTIONS(1037), + [anon_sym_LBRACE] = ACTIONS(1037), + [anon_sym_RBRACE] = ACTIONS(1037), + [anon_sym_STAR] = ACTIONS(1037), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_auto] = ACTIONS(1039), + [anon_sym_register] = ACTIONS(1039), + [anon_sym_inline] = ACTIONS(1039), + [anon_sym_const] = ACTIONS(1039), + [anon_sym_volatile] = ACTIONS(1039), + [anon_sym_restrict] = ACTIONS(1039), + [anon_sym__Atomic] = ACTIONS(1039), + [anon_sym_signed] = ACTIONS(1039), + [anon_sym_unsigned] = ACTIONS(1039), + [anon_sym_long] = ACTIONS(1039), + [anon_sym_short] = ACTIONS(1039), + [sym_primitive_type] = ACTIONS(1039), + [anon_sym_enum] = ACTIONS(1039), + [anon_sym_struct] = ACTIONS(1039), + [anon_sym_union] = ACTIONS(1039), + [anon_sym_if] = ACTIONS(1039), + [anon_sym_else] = ACTIONS(1039), + [anon_sym_switch] = ACTIONS(1039), + [anon_sym_case] = ACTIONS(1039), + [anon_sym_default] = ACTIONS(1039), + [anon_sym_while] = ACTIONS(1039), + [anon_sym_do] = ACTIONS(1039), + [anon_sym_for] = ACTIONS(1039), + [anon_sym_return] = ACTIONS(1039), + [anon_sym_break] = ACTIONS(1039), + [anon_sym_continue] = ACTIONS(1039), + [anon_sym_goto] = ACTIONS(1039), + [anon_sym_AMP] = ACTIONS(1037), + [anon_sym_BANG] = ACTIONS(1037), + [anon_sym_TILDE] = ACTIONS(1037), + [anon_sym_DASH] = ACTIONS(1039), + [anon_sym_PLUS] = ACTIONS(1039), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_sizeof] = ACTIONS(1039), + [sym_number_literal] = ACTIONS(1037), + [anon_sym_L_SQUOTE] = ACTIONS(1037), + [anon_sym_SQUOTE] = ACTIONS(1037), + [anon_sym_L_DQUOTE] = ACTIONS(1037), + [anon_sym_DQUOTE] = ACTIONS(1037), + [sym_true] = ACTIONS(1039), + [sym_false] = ACTIONS(1039), + [sym_null] = ACTIONS(1039), + [sym_comment] = ACTIONS(3), }, [183] = { - [anon_sym_LF] = ACTIONS(1060), - [sym_comment] = ACTIONS(147), + [sym_compound_statement] = STATE(313), + [sym_labeled_statement] = STATE(313), + [sym_expression_statement] = STATE(313), + [sym_if_statement] = STATE(313), + [sym_switch_statement] = STATE(313), + [sym_while_statement] = STATE(313), + [sym_do_statement] = STATE(313), + [sym_for_statement] = STATE(313), + [sym_return_statement] = STATE(313), + [sym_break_statement] = STATE(313), + [sym_continue_statement] = STATE(313), + [sym_goto_statement] = STATE(313), + [sym__expression] = STATE(688), + [sym_comma_expression] = STATE(1124), + [sym_conditional_expression] = STATE(688), + [sym_assignment_expression] = STATE(688), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(688), + [sym_binary_expression] = STATE(688), + [sym_update_expression] = STATE(688), + [sym_cast_expression] = STATE(688), + [sym_sizeof_expression] = STATE(688), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(688), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(688), + [sym_concatenated_string] = STATE(688), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(937), + [anon_sym_SEMI] = ACTIONS(410), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(416), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(420), + [anon_sym_switch] = ACTIONS(422), + [anon_sym_while] = ACTIONS(424), + [anon_sym_do] = ACTIONS(426), + [anon_sym_for] = ACTIONS(428), + [anon_sym_return] = ACTIONS(430), + [anon_sym_break] = ACTIONS(432), + [anon_sym_continue] = ACTIONS(434), + [anon_sym_goto] = ACTIONS(436), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(438), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(440), + [sym_false] = ACTIONS(440), + [sym_null] = ACTIONS(440), + [sym_comment] = ACTIONS(3), }, [184] = { - [sym_true] = ACTIONS(1062), - [anon_sym_restrict] = ACTIONS(1062), - [sym_null] = ACTIONS(1062), - [anon_sym_goto] = ACTIONS(1062), - [anon_sym_const] = ACTIONS(1062), - [anon_sym_typedef] = ACTIONS(1062), - [anon_sym_DASH_DASH] = ACTIONS(1064), - [anon_sym__Atomic] = ACTIONS(1062), - [sym_identifier] = ACTIONS(1062), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1062), - [sym_number_literal] = ACTIONS(1064), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_SQUOTE] = ACTIONS(1064), - [anon_sym_extern] = ACTIONS(1062), - [anon_sym_PLUS_PLUS] = ACTIONS(1064), - [anon_sym_struct] = ACTIONS(1062), - [anon_sym_signed] = ACTIONS(1062), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1062), - [anon_sym_while] = ACTIONS(1062), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1062), - [anon_sym_L_SQUOTE] = ACTIONS(1064), - [anon_sym___attribute__] = ACTIONS(1062), - [anon_sym_sizeof] = ACTIONS(1062), - [anon_sym_LBRACE] = ACTIONS(1064), - [anon_sym_union] = ACTIONS(1062), - [anon_sym_unsigned] = ACTIONS(1062), - [anon_sym_short] = ACTIONS(1062), - [anon_sym_do] = ACTIONS(1062), - [sym_preproc_directive] = ACTIONS(1062), - [anon_sym_AMP] = ACTIONS(1064), - [aux_sym_preproc_if_token1] = ACTIONS(1062), - [anon_sym_TILDE] = ACTIONS(1064), - [anon_sym_L_DQUOTE] = ACTIONS(1064), - [anon_sym_LPAREN2] = ACTIONS(1064), - [sym_primitive_type] = ACTIONS(1062), - [anon_sym_for] = ACTIONS(1062), - [anon_sym_break] = ACTIONS(1062), - [anon_sym_BANG] = ACTIONS(1064), - [aux_sym_preproc_include_token1] = ACTIONS(1062), - [anon_sym_DASH] = ACTIONS(1062), - [anon_sym_static] = ACTIONS(1062), - [anon_sym_DQUOTE] = ACTIONS(1064), - [anon_sym_register] = ACTIONS(1062), - [anon_sym_STAR] = ACTIONS(1064), - [anon_sym_if] = ACTIONS(1062), - [anon_sym_switch] = ACTIONS(1062), - [anon_sym_enum] = ACTIONS(1062), - [sym_false] = ACTIONS(1062), - [ts_builtin_sym_end] = ACTIONS(1064), - [anon_sym_return] = ACTIONS(1062), - [anon_sym_continue] = ACTIONS(1062), - [anon_sym_SEMI] = ACTIONS(1064), - [aux_sym_preproc_def_token1] = ACTIONS(1062), - [anon_sym_PLUS] = ACTIONS(1062), - [anon_sym_auto] = ACTIONS(1062), - [anon_sym_inline] = ACTIONS(1062), + [sym_compound_statement] = STATE(224), + [sym_labeled_statement] = STATE(224), + [sym_expression_statement] = STATE(224), + [sym_if_statement] = STATE(224), + [sym_switch_statement] = STATE(224), + [sym_while_statement] = STATE(224), + [sym_do_statement] = STATE(224), + [sym_for_statement] = STATE(224), + [sym_return_statement] = STATE(224), + [sym_break_statement] = STATE(224), + [sym_continue_statement] = STATE(224), + [sym_goto_statement] = STATE(224), + [sym__expression] = STATE(671), + [sym_comma_expression] = STATE(1275), + [sym_conditional_expression] = STATE(671), + [sym_assignment_expression] = STATE(671), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(671), + [sym_binary_expression] = STATE(671), + [sym_update_expression] = STATE(671), + [sym_cast_expression] = STATE(671), + [sym_sizeof_expression] = STATE(671), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(671), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(671), + [sym_concatenated_string] = STATE(671), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(929), + [anon_sym_SEMI] = ACTIONS(99), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(109), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_do] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_return] = ACTIONS(119), + [anon_sym_break] = ACTIONS(121), + [anon_sym_continue] = ACTIONS(123), + [anon_sym_goto] = ACTIONS(125), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(127), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(129), + [sym_false] = ACTIONS(129), + [sym_null] = ACTIONS(129), + [sym_comment] = ACTIONS(3), }, [185] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(1066), - [anon_sym_RPAREN] = ACTIONS(1068), - [sym_identifier] = ACTIONS(1066), + [sym_compound_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_switch_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_goto_statement] = STATE(204), + [sym__expression] = STATE(671), + [sym_comma_expression] = STATE(1275), + [sym_conditional_expression] = STATE(671), + [sym_assignment_expression] = STATE(671), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(671), + [sym_binary_expression] = STATE(671), + [sym_update_expression] = STATE(671), + [sym_cast_expression] = STATE(671), + [sym_sizeof_expression] = STATE(671), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(671), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(671), + [sym_concatenated_string] = STATE(671), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(929), + [anon_sym_SEMI] = ACTIONS(99), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(109), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_do] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_return] = ACTIONS(119), + [anon_sym_break] = ACTIONS(121), + [anon_sym_continue] = ACTIONS(123), + [anon_sym_goto] = ACTIONS(125), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(127), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(129), + [sym_false] = ACTIONS(129), + [sym_null] = ACTIONS(129), [sym_comment] = ACTIONS(3), }, [186] = { - [sym_comment] = ACTIONS(147), - [anon_sym_LF] = ACTIONS(1070), - [sym_preproc_arg] = ACTIONS(1072), + [sym_compound_statement] = STATE(206), + [sym_labeled_statement] = STATE(206), + [sym_expression_statement] = STATE(206), + [sym_if_statement] = STATE(206), + [sym_switch_statement] = STATE(206), + [sym_while_statement] = STATE(206), + [sym_do_statement] = STATE(206), + [sym_for_statement] = STATE(206), + [sym_return_statement] = STATE(206), + [sym_break_statement] = STATE(206), + [sym_continue_statement] = STATE(206), + [sym_goto_statement] = STATE(206), + [sym__expression] = STATE(671), + [sym_comma_expression] = STATE(1275), + [sym_conditional_expression] = STATE(671), + [sym_assignment_expression] = STATE(671), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(671), + [sym_binary_expression] = STATE(671), + [sym_update_expression] = STATE(671), + [sym_cast_expression] = STATE(671), + [sym_sizeof_expression] = STATE(671), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(671), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(671), + [sym_concatenated_string] = STATE(671), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(929), + [anon_sym_SEMI] = ACTIONS(99), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(109), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_do] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_return] = ACTIONS(119), + [anon_sym_break] = ACTIONS(121), + [anon_sym_continue] = ACTIONS(123), + [anon_sym_goto] = ACTIONS(125), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(127), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(129), + [sym_false] = ACTIONS(129), + [sym_null] = ACTIONS(129), + [sym_comment] = ACTIONS(3), }, [187] = { - [anon_sym_RPAREN] = ACTIONS(1074), + [ts_builtin_sym_end] = ACTIONS(1041), + [sym_identifier] = ACTIONS(1043), + [aux_sym_preproc_include_token1] = ACTIONS(1043), + [aux_sym_preproc_def_token1] = ACTIONS(1043), + [aux_sym_preproc_if_token1] = ACTIONS(1043), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1043), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1043), + [sym_preproc_directive] = ACTIONS(1043), + [anon_sym_SEMI] = ACTIONS(1041), + [anon_sym_typedef] = ACTIONS(1043), + [anon_sym_extern] = ACTIONS(1043), + [anon_sym___attribute__] = ACTIONS(1043), + [anon_sym_LPAREN2] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_RBRACE] = ACTIONS(1041), + [anon_sym_STAR] = ACTIONS(1041), + [anon_sym_static] = ACTIONS(1043), + [anon_sym_auto] = ACTIONS(1043), + [anon_sym_register] = ACTIONS(1043), + [anon_sym_inline] = ACTIONS(1043), + [anon_sym_const] = ACTIONS(1043), + [anon_sym_volatile] = ACTIONS(1043), + [anon_sym_restrict] = ACTIONS(1043), + [anon_sym__Atomic] = ACTIONS(1043), + [anon_sym_signed] = ACTIONS(1043), + [anon_sym_unsigned] = ACTIONS(1043), + [anon_sym_long] = ACTIONS(1043), + [anon_sym_short] = ACTIONS(1043), + [sym_primitive_type] = ACTIONS(1043), + [anon_sym_enum] = ACTIONS(1043), + [anon_sym_struct] = ACTIONS(1043), + [anon_sym_union] = ACTIONS(1043), + [anon_sym_if] = ACTIONS(1043), + [anon_sym_else] = ACTIONS(1043), + [anon_sym_switch] = ACTIONS(1043), + [anon_sym_case] = ACTIONS(1043), + [anon_sym_default] = ACTIONS(1043), + [anon_sym_while] = ACTIONS(1043), + [anon_sym_do] = ACTIONS(1043), + [anon_sym_for] = ACTIONS(1043), + [anon_sym_return] = ACTIONS(1043), + [anon_sym_break] = ACTIONS(1043), + [anon_sym_continue] = ACTIONS(1043), + [anon_sym_goto] = ACTIONS(1043), + [anon_sym_AMP] = ACTIONS(1041), + [anon_sym_BANG] = ACTIONS(1041), + [anon_sym_TILDE] = ACTIONS(1041), + [anon_sym_DASH] = ACTIONS(1043), + [anon_sym_PLUS] = ACTIONS(1043), + [anon_sym_DASH_DASH] = ACTIONS(1041), + [anon_sym_PLUS_PLUS] = ACTIONS(1041), + [anon_sym_sizeof] = ACTIONS(1043), + [sym_number_literal] = ACTIONS(1041), + [anon_sym_L_SQUOTE] = ACTIONS(1041), + [anon_sym_SQUOTE] = ACTIONS(1041), + [anon_sym_L_DQUOTE] = ACTIONS(1041), + [anon_sym_DQUOTE] = ACTIONS(1041), + [sym_true] = ACTIONS(1043), + [sym_false] = ACTIONS(1043), + [sym_null] = ACTIONS(1043), [sym_comment] = ACTIONS(3), }, [188] = { - [anon_sym_RPAREN] = ACTIONS(1076), + [sym_compound_statement] = STATE(1225), + [sym_labeled_statement] = STATE(1225), + [sym_expression_statement] = STATE(1225), + [sym_if_statement] = STATE(1225), + [sym_switch_statement] = STATE(1225), + [sym_while_statement] = STATE(1225), + [sym_do_statement] = STATE(1225), + [sym_for_statement] = STATE(1225), + [sym_return_statement] = STATE(1225), + [sym_break_statement] = STATE(1225), + [sym_continue_statement] = STATE(1225), + [sym_goto_statement] = STATE(1225), + [sym__expression] = STATE(721), + [sym_comma_expression] = STATE(1123), + [sym_conditional_expression] = STATE(721), + [sym_assignment_expression] = STATE(721), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(721), + [sym_binary_expression] = STATE(721), + [sym_update_expression] = STATE(721), + [sym_cast_expression] = STATE(721), + [sym_sizeof_expression] = STATE(721), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(721), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(721), + [sym_concatenated_string] = STATE(721), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(919), + [anon_sym_SEMI] = ACTIONS(19), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(921), + [anon_sym_switch] = ACTIONS(49), + [anon_sym_while] = ACTIONS(923), + [anon_sym_do] = ACTIONS(925), + [anon_sym_for] = ACTIONS(927), + [anon_sym_return] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(61), + [anon_sym_goto] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(73), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_null] = ACTIONS(79), [sym_comment] = ACTIONS(3), }, [189] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(1078), - [anon_sym_PIPE] = ACTIONS(1080), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(1078), - [anon_sym_AMP] = ACTIONS(1080), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(1078), - [anon_sym_LT_LT] = ACTIONS(1078), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_COLON] = ACTIONS(1078), - [anon_sym_RBRACE] = ACTIONS(1078), - [anon_sym_QMARK] = ACTIONS(1078), - [anon_sym_PIPE_PIPE] = ACTIONS(1078), - [anon_sym_BANG_EQ] = ACTIONS(1078), - [anon_sym_COMMA] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(1078), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1078), - [anon_sym_SEMI] = ACTIONS(1078), - [anon_sym_CARET] = ACTIONS(1078), - [anon_sym_GT] = ACTIONS(1080), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_RPAREN] = ACTIONS(1078), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_RBRACK] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(1080), - [anon_sym_LBRACK] = ACTIONS(305), + [ts_builtin_sym_end] = ACTIONS(1045), + [sym_identifier] = ACTIONS(1047), + [aux_sym_preproc_include_token1] = ACTIONS(1047), + [aux_sym_preproc_def_token1] = ACTIONS(1047), + [aux_sym_preproc_if_token1] = ACTIONS(1047), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1047), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1047), + [sym_preproc_directive] = ACTIONS(1047), + [anon_sym_SEMI] = ACTIONS(1045), + [anon_sym_typedef] = ACTIONS(1047), + [anon_sym_extern] = ACTIONS(1047), + [anon_sym___attribute__] = ACTIONS(1047), + [anon_sym_LPAREN2] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(1045), + [anon_sym_RBRACE] = ACTIONS(1045), + [anon_sym_STAR] = ACTIONS(1045), + [anon_sym_static] = ACTIONS(1047), + [anon_sym_auto] = ACTIONS(1047), + [anon_sym_register] = ACTIONS(1047), + [anon_sym_inline] = ACTIONS(1047), + [anon_sym_const] = ACTIONS(1047), + [anon_sym_volatile] = ACTIONS(1047), + [anon_sym_restrict] = ACTIONS(1047), + [anon_sym__Atomic] = ACTIONS(1047), + [anon_sym_signed] = ACTIONS(1047), + [anon_sym_unsigned] = ACTIONS(1047), + [anon_sym_long] = ACTIONS(1047), + [anon_sym_short] = ACTIONS(1047), + [sym_primitive_type] = ACTIONS(1047), + [anon_sym_enum] = ACTIONS(1047), + [anon_sym_struct] = ACTIONS(1047), + [anon_sym_union] = ACTIONS(1047), + [anon_sym_if] = ACTIONS(1047), + [anon_sym_else] = ACTIONS(1047), + [anon_sym_switch] = ACTIONS(1047), + [anon_sym_case] = ACTIONS(1047), + [anon_sym_default] = ACTIONS(1047), + [anon_sym_while] = ACTIONS(1047), + [anon_sym_do] = ACTIONS(1047), + [anon_sym_for] = ACTIONS(1047), + [anon_sym_return] = ACTIONS(1047), + [anon_sym_break] = ACTIONS(1047), + [anon_sym_continue] = ACTIONS(1047), + [anon_sym_goto] = ACTIONS(1047), + [anon_sym_AMP] = ACTIONS(1045), + [anon_sym_BANG] = ACTIONS(1045), + [anon_sym_TILDE] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1047), + [anon_sym_DASH_DASH] = ACTIONS(1045), + [anon_sym_PLUS_PLUS] = ACTIONS(1045), + [anon_sym_sizeof] = ACTIONS(1047), + [sym_number_literal] = ACTIONS(1045), + [anon_sym_L_SQUOTE] = ACTIONS(1045), + [anon_sym_SQUOTE] = ACTIONS(1045), + [anon_sym_L_DQUOTE] = ACTIONS(1045), + [anon_sym_DQUOTE] = ACTIONS(1045), + [sym_true] = ACTIONS(1047), + [sym_false] = ACTIONS(1047), + [sym_null] = ACTIONS(1047), + [sym_comment] = ACTIONS(3), }, [190] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_COLON] = ACTIONS(1078), - [anon_sym_RBRACE] = ACTIONS(1078), - [anon_sym_QMARK] = ACTIONS(1078), - [anon_sym_PIPE_PIPE] = ACTIONS(1078), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_COMMA] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_SEMI] = ACTIONS(1078), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_RPAREN] = ACTIONS(1078), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_RBRACK] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [sym_compound_statement] = STATE(103), + [sym_labeled_statement] = STATE(103), + [sym_expression_statement] = STATE(103), + [sym_if_statement] = STATE(103), + [sym_switch_statement] = STATE(103), + [sym_while_statement] = STATE(103), + [sym_do_statement] = STATE(103), + [sym_for_statement] = STATE(103), + [sym_return_statement] = STATE(103), + [sym_break_statement] = STATE(103), + [sym_continue_statement] = STATE(103), + [sym_goto_statement] = STATE(103), + [sym__expression] = STATE(721), + [sym_comma_expression] = STATE(1123), + [sym_conditional_expression] = STATE(721), + [sym_assignment_expression] = STATE(721), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(721), + [sym_binary_expression] = STATE(721), + [sym_update_expression] = STATE(721), + [sym_cast_expression] = STATE(721), + [sym_sizeof_expression] = STATE(721), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(721), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(721), + [sym_concatenated_string] = STATE(721), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(919), + [anon_sym_SEMI] = ACTIONS(19), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(921), + [anon_sym_switch] = ACTIONS(49), + [anon_sym_while] = ACTIONS(923), + [anon_sym_do] = ACTIONS(925), + [anon_sym_for] = ACTIONS(927), + [anon_sym_return] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(61), + [anon_sym_goto] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(73), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_null] = ACTIONS(79), + [sym_comment] = ACTIONS(3), }, [191] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(1080), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(1078), - [anon_sym_AMP] = ACTIONS(1080), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_COLON] = ACTIONS(1078), - [anon_sym_RBRACE] = ACTIONS(1078), - [anon_sym_QMARK] = ACTIONS(1078), - [anon_sym_PIPE_PIPE] = ACTIONS(1078), - [anon_sym_BANG_EQ] = ACTIONS(1078), - [anon_sym_COMMA] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1078), - [anon_sym_SEMI] = ACTIONS(1078), - [anon_sym_CARET] = ACTIONS(1078), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_RPAREN] = ACTIONS(1078), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_RBRACK] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [sym_compound_statement] = STATE(212), + [sym_labeled_statement] = STATE(212), + [sym_expression_statement] = STATE(212), + [sym_if_statement] = STATE(212), + [sym_switch_statement] = STATE(212), + [sym_while_statement] = STATE(212), + [sym_do_statement] = STATE(212), + [sym_for_statement] = STATE(212), + [sym_return_statement] = STATE(212), + [sym_break_statement] = STATE(212), + [sym_continue_statement] = STATE(212), + [sym_goto_statement] = STATE(212), + [sym__expression] = STATE(671), + [sym_comma_expression] = STATE(1275), + [sym_conditional_expression] = STATE(671), + [sym_assignment_expression] = STATE(671), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(671), + [sym_binary_expression] = STATE(671), + [sym_update_expression] = STATE(671), + [sym_cast_expression] = STATE(671), + [sym_sizeof_expression] = STATE(671), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(671), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(671), + [sym_concatenated_string] = STATE(671), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(929), + [anon_sym_SEMI] = ACTIONS(99), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(109), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_do] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_return] = ACTIONS(119), + [anon_sym_break] = ACTIONS(121), + [anon_sym_continue] = ACTIONS(123), + [anon_sym_goto] = ACTIONS(125), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(127), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(129), + [sym_false] = ACTIONS(129), + [sym_null] = ACTIONS(129), + [sym_comment] = ACTIONS(3), }, [192] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_RBRACK] = ACTIONS(1082), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [sym_compound_statement] = STATE(69), + [sym_labeled_statement] = STATE(69), + [sym_expression_statement] = STATE(69), + [sym_if_statement] = STATE(69), + [sym_switch_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_do_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_return_statement] = STATE(69), + [sym_break_statement] = STATE(69), + [sym_continue_statement] = STATE(69), + [sym_goto_statement] = STATE(69), + [sym__expression] = STATE(721), + [sym_comma_expression] = STATE(1123), + [sym_conditional_expression] = STATE(721), + [sym_assignment_expression] = STATE(721), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(721), + [sym_binary_expression] = STATE(721), + [sym_update_expression] = STATE(721), + [sym_cast_expression] = STATE(721), + [sym_sizeof_expression] = STATE(721), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(721), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(721), + [sym_concatenated_string] = STATE(721), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(935), + [anon_sym_SEMI] = ACTIONS(19), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(47), + [anon_sym_switch] = ACTIONS(49), + [anon_sym_while] = ACTIONS(51), + [anon_sym_do] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_return] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(61), + [anon_sym_goto] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(73), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_null] = ACTIONS(79), + [sym_comment] = ACTIONS(3), }, [193] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_COMMA] = ACTIONS(293), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_SEMI] = ACTIONS(1084), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_RPAREN] = ACTIONS(1084), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [sym_compound_statement] = STATE(298), + [sym_labeled_statement] = STATE(298), + [sym_expression_statement] = STATE(298), + [sym_if_statement] = STATE(298), + [sym_switch_statement] = STATE(298), + [sym_while_statement] = STATE(298), + [sym_do_statement] = STATE(298), + [sym_for_statement] = STATE(298), + [sym_return_statement] = STATE(298), + [sym_break_statement] = STATE(298), + [sym_continue_statement] = STATE(298), + [sym_goto_statement] = STATE(298), + [sym__expression] = STATE(688), + [sym_comma_expression] = STATE(1124), + [sym_conditional_expression] = STATE(688), + [sym_assignment_expression] = STATE(688), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(688), + [sym_binary_expression] = STATE(688), + [sym_update_expression] = STATE(688), + [sym_cast_expression] = STATE(688), + [sym_sizeof_expression] = STATE(688), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(688), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(688), + [sym_concatenated_string] = STATE(688), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(937), + [anon_sym_SEMI] = ACTIONS(410), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(416), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(420), + [anon_sym_switch] = ACTIONS(422), + [anon_sym_while] = ACTIONS(424), + [anon_sym_do] = ACTIONS(426), + [anon_sym_for] = ACTIONS(428), + [anon_sym_return] = ACTIONS(430), + [anon_sym_break] = ACTIONS(432), + [anon_sym_continue] = ACTIONS(434), + [anon_sym_goto] = ACTIONS(436), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(438), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(440), + [sym_false] = ACTIONS(440), + [sym_null] = ACTIONS(440), + [sym_comment] = ACTIONS(3), }, [194] = { + [sym_compound_statement] = STATE(300), + [sym_labeled_statement] = STATE(300), + [sym_expression_statement] = STATE(300), + [sym_if_statement] = STATE(300), + [sym_switch_statement] = STATE(300), + [sym_while_statement] = STATE(300), + [sym_do_statement] = STATE(300), + [sym_for_statement] = STATE(300), + [sym_return_statement] = STATE(300), + [sym_break_statement] = STATE(300), + [sym_continue_statement] = STATE(300), + [sym_goto_statement] = STATE(300), + [sym__expression] = STATE(688), + [sym_comma_expression] = STATE(1124), + [sym_conditional_expression] = STATE(688), + [sym_assignment_expression] = STATE(688), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(688), + [sym_binary_expression] = STATE(688), + [sym_update_expression] = STATE(688), + [sym_cast_expression] = STATE(688), + [sym_sizeof_expression] = STATE(688), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(688), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(688), + [sym_concatenated_string] = STATE(688), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(937), + [anon_sym_SEMI] = ACTIONS(410), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(416), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(420), + [anon_sym_switch] = ACTIONS(422), + [anon_sym_while] = ACTIONS(424), + [anon_sym_do] = ACTIONS(426), + [anon_sym_for] = ACTIONS(428), + [anon_sym_return] = ACTIONS(430), + [anon_sym_break] = ACTIONS(432), + [anon_sym_continue] = ACTIONS(434), + [anon_sym_goto] = ACTIONS(436), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(438), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(440), + [sym_false] = ACTIONS(440), + [sym_null] = ACTIONS(440), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(1084), - [anon_sym_SEMI] = ACTIONS(1084), }, [195] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(1078), - [anon_sym_PIPE] = ACTIONS(1080), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(1078), - [anon_sym_AMP] = ACTIONS(1080), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(1078), - [anon_sym_LT_LT] = ACTIONS(1078), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_COLON] = ACTIONS(1078), - [anon_sym_RBRACE] = ACTIONS(1078), - [anon_sym_QMARK] = ACTIONS(1078), - [anon_sym_PIPE_PIPE] = ACTIONS(1078), - [anon_sym_BANG_EQ] = ACTIONS(1078), - [anon_sym_COMMA] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1080), - [anon_sym_LT_EQ] = ACTIONS(1078), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1078), - [anon_sym_SEMI] = ACTIONS(1078), - [anon_sym_CARET] = ACTIONS(1078), - [anon_sym_GT] = ACTIONS(1080), - [anon_sym_PLUS] = ACTIONS(1080), - [anon_sym_RPAREN] = ACTIONS(1078), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_RBRACK] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(1080), - [anon_sym_LBRACK] = ACTIONS(305), + [sym_compound_statement] = STATE(126), + [sym_labeled_statement] = STATE(126), + [sym_expression_statement] = STATE(126), + [sym_if_statement] = STATE(126), + [sym_switch_statement] = STATE(126), + [sym_while_statement] = STATE(126), + [sym_do_statement] = STATE(126), + [sym_for_statement] = STATE(126), + [sym_return_statement] = STATE(126), + [sym_break_statement] = STATE(126), + [sym_continue_statement] = STATE(126), + [sym_goto_statement] = STATE(126), + [sym__expression] = STATE(721), + [sym_comma_expression] = STATE(1123), + [sym_conditional_expression] = STATE(721), + [sym_assignment_expression] = STATE(721), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(721), + [sym_binary_expression] = STATE(721), + [sym_update_expression] = STATE(721), + [sym_cast_expression] = STATE(721), + [sym_sizeof_expression] = STATE(721), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(721), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(721), + [sym_concatenated_string] = STATE(721), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(919), + [anon_sym_SEMI] = ACTIONS(19), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(921), + [anon_sym_switch] = ACTIONS(49), + [anon_sym_while] = ACTIONS(923), + [anon_sym_do] = ACTIONS(925), + [anon_sym_for] = ACTIONS(927), + [anon_sym_return] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(61), + [anon_sym_goto] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(73), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_null] = ACTIONS(79), + [sym_comment] = ACTIONS(3), }, [196] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(1080), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(1078), - [anon_sym_AMP] = ACTIONS(1080), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(1078), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_COLON] = ACTIONS(1078), - [anon_sym_RBRACE] = ACTIONS(1078), - [anon_sym_QMARK] = ACTIONS(1078), - [anon_sym_PIPE_PIPE] = ACTIONS(1078), - [anon_sym_BANG_EQ] = ACTIONS(1078), - [anon_sym_COMMA] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(1078), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1078), - [anon_sym_SEMI] = ACTIONS(1078), - [anon_sym_CARET] = ACTIONS(1078), - [anon_sym_GT] = ACTIONS(1080), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_RPAREN] = ACTIONS(1078), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_RBRACK] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(1080), - [anon_sym_LBRACK] = ACTIONS(305), + [sym_compound_statement] = STATE(208), + [sym_labeled_statement] = STATE(208), + [sym_expression_statement] = STATE(208), + [sym_if_statement] = STATE(208), + [sym_switch_statement] = STATE(208), + [sym_while_statement] = STATE(208), + [sym_do_statement] = STATE(208), + [sym_for_statement] = STATE(208), + [sym_return_statement] = STATE(208), + [sym_break_statement] = STATE(208), + [sym_continue_statement] = STATE(208), + [sym_goto_statement] = STATE(208), + [sym__expression] = STATE(671), + [sym_comma_expression] = STATE(1275), + [sym_conditional_expression] = STATE(671), + [sym_assignment_expression] = STATE(671), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(671), + [sym_binary_expression] = STATE(671), + [sym_update_expression] = STATE(671), + [sym_cast_expression] = STATE(671), + [sym_sizeof_expression] = STATE(671), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(671), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(671), + [sym_concatenated_string] = STATE(671), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(929), + [anon_sym_SEMI] = ACTIONS(99), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(109), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_while] = ACTIONS(113), + [anon_sym_do] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_return] = ACTIONS(119), + [anon_sym_break] = ACTIONS(121), + [anon_sym_continue] = ACTIONS(123), + [anon_sym_goto] = ACTIONS(125), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(127), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(129), + [sym_false] = ACTIONS(129), + [sym_null] = ACTIONS(129), + [sym_comment] = ACTIONS(3), }, [197] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(1080), - [anon_sym_PERCENT_EQ] = ACTIONS(1078), - [anon_sym_DASH_EQ] = ACTIONS(1078), - [anon_sym_PIPE] = ACTIONS(1080), - [anon_sym_EQ_EQ] = ACTIONS(1078), - [anon_sym_SLASH] = ACTIONS(1080), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LT_LT] = ACTIONS(1080), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_PLUS_EQ] = ACTIONS(1078), - [anon_sym_LT_LT_EQ] = ACTIONS(1078), - [anon_sym_QMARK] = ACTIONS(1078), - [anon_sym_BANG_EQ] = ACTIONS(1078), - [anon_sym_CARET_EQ] = ACTIONS(1078), - [anon_sym_COMMA] = ACTIONS(1078), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT_EQ] = ACTIONS(1078), - [anon_sym_GT] = ACTIONS(1080), - [anon_sym_PIPE_EQ] = ACTIONS(1078), - [anon_sym_RPAREN] = ACTIONS(1078), - [anon_sym_RBRACK] = ACTIONS(1078), - [anon_sym_AMP_EQ] = ACTIONS(1078), - [anon_sym_PERCENT] = ACTIONS(1080), - [anon_sym_AMP] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1080), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(1078), - [anon_sym_RBRACE] = ACTIONS(1078), - [anon_sym_COLON] = ACTIONS(1078), - [anon_sym_STAR_EQ] = ACTIONS(1078), - [anon_sym_PIPE_PIPE] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1080), - [anon_sym_LT_EQ] = ACTIONS(1078), - [anon_sym_STAR] = ACTIONS(1080), - [anon_sym_SLASH_EQ] = ACTIONS(1078), - [anon_sym_AMP_AMP] = ACTIONS(1078), - [anon_sym_SEMI] = ACTIONS(1078), - [anon_sym_CARET] = ACTIONS(1080), - [anon_sym_PLUS] = ACTIONS(1080), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(1080), - [anon_sym_LBRACK] = ACTIONS(305), + [sym_compound_statement] = STATE(305), + [sym_labeled_statement] = STATE(305), + [sym_expression_statement] = STATE(305), + [sym_if_statement] = STATE(305), + [sym_switch_statement] = STATE(305), + [sym_while_statement] = STATE(305), + [sym_do_statement] = STATE(305), + [sym_for_statement] = STATE(305), + [sym_return_statement] = STATE(305), + [sym_break_statement] = STATE(305), + [sym_continue_statement] = STATE(305), + [sym_goto_statement] = STATE(305), + [sym__expression] = STATE(688), + [sym_comma_expression] = STATE(1124), + [sym_conditional_expression] = STATE(688), + [sym_assignment_expression] = STATE(688), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(688), + [sym_binary_expression] = STATE(688), + [sym_update_expression] = STATE(688), + [sym_cast_expression] = STATE(688), + [sym_sizeof_expression] = STATE(688), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(688), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(688), + [sym_concatenated_string] = STATE(688), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(937), + [anon_sym_SEMI] = ACTIONS(410), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(416), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(420), + [anon_sym_switch] = ACTIONS(422), + [anon_sym_while] = ACTIONS(424), + [anon_sym_do] = ACTIONS(426), + [anon_sym_for] = ACTIONS(428), + [anon_sym_return] = ACTIONS(430), + [anon_sym_break] = ACTIONS(432), + [anon_sym_continue] = ACTIONS(434), + [anon_sym_goto] = ACTIONS(436), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(438), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(440), + [sym_false] = ACTIONS(440), + [sym_null] = ACTIONS(440), + [sym_comment] = ACTIONS(3), }, [198] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(1080), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_COLON] = ACTIONS(1078), - [anon_sym_RBRACE] = ACTIONS(1078), - [anon_sym_QMARK] = ACTIONS(1078), - [anon_sym_PIPE_PIPE] = ACTIONS(1078), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_COMMA] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1078), - [anon_sym_SEMI] = ACTIONS(1078), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_RPAREN] = ACTIONS(1078), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_RBRACK] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [sym_compound_statement] = STATE(104), + [sym_labeled_statement] = STATE(104), + [sym_expression_statement] = STATE(104), + [sym_if_statement] = STATE(104), + [sym_switch_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__expression] = STATE(721), + [sym_comma_expression] = STATE(1123), + [sym_conditional_expression] = STATE(721), + [sym_assignment_expression] = STATE(721), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(721), + [sym_binary_expression] = STATE(721), + [sym_update_expression] = STATE(721), + [sym_cast_expression] = STATE(721), + [sym_sizeof_expression] = STATE(721), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(721), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(721), + [sym_concatenated_string] = STATE(721), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(919), + [anon_sym_SEMI] = ACTIONS(19), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(921), + [anon_sym_switch] = ACTIONS(49), + [anon_sym_while] = ACTIONS(923), + [anon_sym_do] = ACTIONS(925), + [anon_sym_for] = ACTIONS(927), + [anon_sym_return] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(61), + [anon_sym_goto] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(73), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_null] = ACTIONS(79), + [sym_comment] = ACTIONS(3), }, [199] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(1080), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(1080), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_COLON] = ACTIONS(1078), - [anon_sym_RBRACE] = ACTIONS(1078), - [anon_sym_QMARK] = ACTIONS(1078), - [anon_sym_PIPE_PIPE] = ACTIONS(1078), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_COMMA] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1078), - [anon_sym_SEMI] = ACTIONS(1078), - [anon_sym_CARET] = ACTIONS(1078), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_RPAREN] = ACTIONS(1078), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_RBRACK] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [sym_compound_statement] = STATE(122), + [sym_labeled_statement] = STATE(122), + [sym_expression_statement] = STATE(122), + [sym_if_statement] = STATE(122), + [sym_switch_statement] = STATE(122), + [sym_while_statement] = STATE(122), + [sym_do_statement] = STATE(122), + [sym_for_statement] = STATE(122), + [sym_return_statement] = STATE(122), + [sym_break_statement] = STATE(122), + [sym_continue_statement] = STATE(122), + [sym_goto_statement] = STATE(122), + [sym__expression] = STATE(721), + [sym_comma_expression] = STATE(1123), + [sym_conditional_expression] = STATE(721), + [sym_assignment_expression] = STATE(721), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(721), + [sym_binary_expression] = STATE(721), + [sym_update_expression] = STATE(721), + [sym_cast_expression] = STATE(721), + [sym_sizeof_expression] = STATE(721), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(721), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(721), + [sym_concatenated_string] = STATE(721), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(919), + [anon_sym_SEMI] = ACTIONS(19), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(921), + [anon_sym_switch] = ACTIONS(49), + [anon_sym_while] = ACTIONS(923), + [anon_sym_do] = ACTIONS(925), + [anon_sym_for] = ACTIONS(927), + [anon_sym_return] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(61), + [anon_sym_goto] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(73), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_null] = ACTIONS(79), + [sym_comment] = ACTIONS(3), }, [200] = { - [anon_sym_GT_GT] = ACTIONS(1086), - [anon_sym_PERCENT_EQ] = ACTIONS(1088), - [anon_sym_DASH_EQ] = ACTIONS(1088), - [anon_sym_PIPE] = ACTIONS(1086), - [anon_sym_EQ_EQ] = ACTIONS(1088), - [anon_sym_SLASH] = ACTIONS(1086), - [anon_sym_DASH_GT] = ACTIONS(1088), - [anon_sym_LT_LT] = ACTIONS(1086), - [anon_sym_DASH_DASH] = ACTIONS(1088), - [anon_sym_PLUS_EQ] = ACTIONS(1088), - [anon_sym_LT_LT_EQ] = ACTIONS(1088), - [anon_sym_QMARK] = ACTIONS(1088), - [anon_sym_BANG_EQ] = ACTIONS(1088), - [anon_sym_CARET_EQ] = ACTIONS(1088), - [anon_sym_COMMA] = ACTIONS(1088), - [anon_sym_PLUS_PLUS] = ACTIONS(1088), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT_EQ] = ACTIONS(1088), - [anon_sym_GT] = ACTIONS(1086), - [anon_sym_PIPE_EQ] = ACTIONS(1088), - [anon_sym_RPAREN] = ACTIONS(1088), - [anon_sym_RBRACK] = ACTIONS(1088), - [anon_sym_AMP_EQ] = ACTIONS(1088), - [anon_sym_PERCENT] = ACTIONS(1086), - [anon_sym_AMP] = ACTIONS(1086), - [anon_sym_EQ] = ACTIONS(1086), - [anon_sym_LPAREN2] = ACTIONS(1088), - [anon_sym_GT_EQ] = ACTIONS(1088), - [anon_sym_RBRACE] = ACTIONS(1088), - [anon_sym_COLON] = ACTIONS(1088), - [anon_sym_STAR_EQ] = ACTIONS(1088), - [anon_sym_PIPE_PIPE] = ACTIONS(1088), - [anon_sym_DASH] = ACTIONS(1086), - [anon_sym_LT_EQ] = ACTIONS(1088), - [anon_sym_STAR] = ACTIONS(1086), - [anon_sym_SLASH_EQ] = ACTIONS(1088), - [anon_sym_AMP_AMP] = ACTIONS(1088), - [anon_sym_SEMI] = ACTIONS(1088), - [anon_sym_CARET] = ACTIONS(1086), - [anon_sym_PLUS] = ACTIONS(1086), - [anon_sym_DOT] = ACTIONS(1088), - [anon_sym_LT] = ACTIONS(1086), - [anon_sym_LBRACK] = ACTIONS(1088), + [ts_builtin_sym_end] = ACTIONS(1049), + [sym_identifier] = ACTIONS(1051), + [aux_sym_preproc_include_token1] = ACTIONS(1051), + [aux_sym_preproc_def_token1] = ACTIONS(1051), + [aux_sym_preproc_if_token1] = ACTIONS(1051), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1051), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1051), + [sym_preproc_directive] = ACTIONS(1051), + [anon_sym_SEMI] = ACTIONS(1049), + [anon_sym_typedef] = ACTIONS(1051), + [anon_sym_extern] = ACTIONS(1051), + [anon_sym___attribute__] = ACTIONS(1051), + [anon_sym_LPAREN2] = ACTIONS(1049), + [anon_sym_LBRACE] = ACTIONS(1049), + [anon_sym_RBRACE] = ACTIONS(1049), + [anon_sym_STAR] = ACTIONS(1049), + [anon_sym_static] = ACTIONS(1051), + [anon_sym_auto] = ACTIONS(1051), + [anon_sym_register] = ACTIONS(1051), + [anon_sym_inline] = ACTIONS(1051), + [anon_sym_const] = ACTIONS(1051), + [anon_sym_volatile] = ACTIONS(1051), + [anon_sym_restrict] = ACTIONS(1051), + [anon_sym__Atomic] = ACTIONS(1051), + [anon_sym_signed] = ACTIONS(1051), + [anon_sym_unsigned] = ACTIONS(1051), + [anon_sym_long] = ACTIONS(1051), + [anon_sym_short] = ACTIONS(1051), + [sym_primitive_type] = ACTIONS(1051), + [anon_sym_enum] = ACTIONS(1051), + [anon_sym_struct] = ACTIONS(1051), + [anon_sym_union] = ACTIONS(1051), + [anon_sym_if] = ACTIONS(1051), + [anon_sym_else] = ACTIONS(1051), + [anon_sym_switch] = ACTIONS(1051), + [anon_sym_case] = ACTIONS(1051), + [anon_sym_default] = ACTIONS(1051), + [anon_sym_while] = ACTIONS(1051), + [anon_sym_do] = ACTIONS(1051), + [anon_sym_for] = ACTIONS(1051), + [anon_sym_return] = ACTIONS(1051), + [anon_sym_break] = ACTIONS(1051), + [anon_sym_continue] = ACTIONS(1051), + [anon_sym_goto] = ACTIONS(1051), + [anon_sym_AMP] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_TILDE] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_PLUS] = ACTIONS(1051), + [anon_sym_DASH_DASH] = ACTIONS(1049), + [anon_sym_PLUS_PLUS] = ACTIONS(1049), + [anon_sym_sizeof] = ACTIONS(1051), + [sym_number_literal] = ACTIONS(1049), + [anon_sym_L_SQUOTE] = ACTIONS(1049), + [anon_sym_SQUOTE] = ACTIONS(1049), + [anon_sym_L_DQUOTE] = ACTIONS(1049), + [anon_sym_DQUOTE] = ACTIONS(1049), + [sym_true] = ACTIONS(1051), + [sym_false] = ACTIONS(1051), + [sym_null] = ACTIONS(1051), + [sym_comment] = ACTIONS(3), }, [201] = { - [anon_sym_GT_GT] = ACTIONS(1090), - [anon_sym_PERCENT_EQ] = ACTIONS(1092), - [anon_sym_DASH_EQ] = ACTIONS(1092), - [anon_sym_PIPE] = ACTIONS(1090), - [anon_sym_EQ_EQ] = ACTIONS(1092), - [anon_sym_SLASH] = ACTIONS(1090), - [anon_sym_DASH_GT] = ACTIONS(1092), - [anon_sym_LT_LT] = ACTIONS(1090), - [anon_sym_DASH_DASH] = ACTIONS(1092), - [anon_sym_PLUS_EQ] = ACTIONS(1092), - [anon_sym_LT_LT_EQ] = ACTIONS(1092), - [anon_sym_QMARK] = ACTIONS(1092), - [anon_sym_BANG_EQ] = ACTIONS(1092), - [anon_sym_CARET_EQ] = ACTIONS(1092), - [anon_sym_COMMA] = ACTIONS(1092), - [anon_sym_PLUS_PLUS] = ACTIONS(1092), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT_EQ] = ACTIONS(1092), - [anon_sym_GT] = ACTIONS(1090), - [anon_sym_PIPE_EQ] = ACTIONS(1092), - [anon_sym_RPAREN] = ACTIONS(1092), - [anon_sym_RBRACK] = ACTIONS(1092), - [anon_sym_AMP_EQ] = ACTIONS(1092), - [anon_sym_PERCENT] = ACTIONS(1090), - [anon_sym_AMP] = ACTIONS(1090), - [anon_sym_EQ] = ACTIONS(1090), - [anon_sym_LPAREN2] = ACTIONS(1092), - [anon_sym_GT_EQ] = ACTIONS(1092), - [anon_sym_RBRACE] = ACTIONS(1092), - [anon_sym_COLON] = ACTIONS(1092), - [anon_sym_STAR_EQ] = ACTIONS(1092), - [anon_sym_PIPE_PIPE] = ACTIONS(1092), - [anon_sym_DASH] = ACTIONS(1090), - [anon_sym_LT_EQ] = ACTIONS(1092), - [anon_sym_STAR] = ACTIONS(1090), - [anon_sym_SLASH_EQ] = ACTIONS(1092), - [anon_sym_AMP_AMP] = ACTIONS(1092), - [anon_sym_SEMI] = ACTIONS(1092), - [anon_sym_CARET] = ACTIONS(1090), - [anon_sym_PLUS] = ACTIONS(1090), - [anon_sym_DOT] = ACTIONS(1092), - [anon_sym_LT] = ACTIONS(1090), - [anon_sym_LBRACK] = ACTIONS(1092), + [sym_type_qualifier] = STATE(846), + [sym__type_specifier] = STATE(878), + [sym_sized_type_specifier] = STATE(878), + [sym_enum_specifier] = STATE(878), + [sym_struct_specifier] = STATE(878), + [sym_union_specifier] = STATE(878), + [sym__expression] = STATE(673), + [sym_comma_expression] = STATE(1220), + [sym_conditional_expression] = STATE(673), + [sym_assignment_expression] = STATE(673), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(673), + [sym_binary_expression] = STATE(673), + [sym_update_expression] = STATE(673), + [sym_cast_expression] = STATE(673), + [sym_type_descriptor] = STATE(1164), + [sym_sizeof_expression] = STATE(673), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(673), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(673), + [sym_concatenated_string] = STATE(673), + [sym_string_literal] = STATE(431), + [sym_macro_type_specifier] = STATE(878), + [aux_sym_type_definition_repeat1] = STATE(846), + [aux_sym_sized_type_specifier_repeat1] = STATE(881), + [sym_identifier] = ACTIONS(1053), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(1055), + [anon_sym_unsigned] = ACTIONS(1055), + [anon_sym_long] = ACTIONS(1055), + [anon_sym_short] = ACTIONS(1055), + [sym_primitive_type] = ACTIONS(1057), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1059), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1061), + [sym_false] = ACTIONS(1061), + [sym_null] = ACTIONS(1061), + [sym_comment] = ACTIONS(3), }, [202] = { - [sym_argument_list] = STATE(111), - [aux_sym_argument_list_repeat1] = STATE(294), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_COMMA] = ACTIONS(1094), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_RPAREN] = ACTIONS(1096), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [sym_identifier] = ACTIONS(1051), + [aux_sym_preproc_include_token1] = ACTIONS(1051), + [aux_sym_preproc_def_token1] = ACTIONS(1051), + [aux_sym_preproc_if_token1] = ACTIONS(1051), + [aux_sym_preproc_if_token2] = ACTIONS(1051), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1051), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1051), + [aux_sym_preproc_else_token1] = ACTIONS(1051), + [aux_sym_preproc_elif_token1] = ACTIONS(1051), + [sym_preproc_directive] = ACTIONS(1051), + [anon_sym_SEMI] = ACTIONS(1049), + [anon_sym_typedef] = ACTIONS(1051), + [anon_sym_extern] = ACTIONS(1051), + [anon_sym___attribute__] = ACTIONS(1051), + [anon_sym_LPAREN2] = ACTIONS(1049), + [anon_sym_LBRACE] = ACTIONS(1049), + [anon_sym_STAR] = ACTIONS(1049), + [anon_sym_static] = ACTIONS(1051), + [anon_sym_auto] = ACTIONS(1051), + [anon_sym_register] = ACTIONS(1051), + [anon_sym_inline] = ACTIONS(1051), + [anon_sym_const] = ACTIONS(1051), + [anon_sym_volatile] = ACTIONS(1051), + [anon_sym_restrict] = ACTIONS(1051), + [anon_sym__Atomic] = ACTIONS(1051), + [anon_sym_signed] = ACTIONS(1051), + [anon_sym_unsigned] = ACTIONS(1051), + [anon_sym_long] = ACTIONS(1051), + [anon_sym_short] = ACTIONS(1051), + [sym_primitive_type] = ACTIONS(1051), + [anon_sym_enum] = ACTIONS(1051), + [anon_sym_struct] = ACTIONS(1051), + [anon_sym_union] = ACTIONS(1051), + [anon_sym_if] = ACTIONS(1051), + [anon_sym_else] = ACTIONS(1051), + [anon_sym_switch] = ACTIONS(1051), + [anon_sym_while] = ACTIONS(1051), + [anon_sym_do] = ACTIONS(1051), + [anon_sym_for] = ACTIONS(1051), + [anon_sym_return] = ACTIONS(1051), + [anon_sym_break] = ACTIONS(1051), + [anon_sym_continue] = ACTIONS(1051), + [anon_sym_goto] = ACTIONS(1051), + [anon_sym_AMP] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_TILDE] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_PLUS] = ACTIONS(1051), + [anon_sym_DASH_DASH] = ACTIONS(1049), + [anon_sym_PLUS_PLUS] = ACTIONS(1049), + [anon_sym_sizeof] = ACTIONS(1051), + [sym_number_literal] = ACTIONS(1049), + [anon_sym_L_SQUOTE] = ACTIONS(1049), + [anon_sym_SQUOTE] = ACTIONS(1049), + [anon_sym_L_DQUOTE] = ACTIONS(1049), + [anon_sym_DQUOTE] = ACTIONS(1049), + [sym_true] = ACTIONS(1051), + [sym_false] = ACTIONS(1051), + [sym_null] = ACTIONS(1051), + [sym_comment] = ACTIONS(3), }, [203] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_COLON] = ACTIONS(1078), - [anon_sym_RBRACE] = ACTIONS(1078), - [anon_sym_QMARK] = ACTIONS(1078), - [anon_sym_PIPE_PIPE] = ACTIONS(1078), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_COMMA] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1078), - [anon_sym_SEMI] = ACTIONS(1078), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_RPAREN] = ACTIONS(1078), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_RBRACK] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [sym_identifier] = ACTIONS(1013), + [aux_sym_preproc_include_token1] = ACTIONS(1013), + [aux_sym_preproc_def_token1] = ACTIONS(1013), + [aux_sym_preproc_if_token1] = ACTIONS(1013), + [aux_sym_preproc_if_token2] = ACTIONS(1013), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1013), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1013), + [aux_sym_preproc_else_token1] = ACTIONS(1013), + [aux_sym_preproc_elif_token1] = ACTIONS(1013), + [sym_preproc_directive] = ACTIONS(1013), + [anon_sym_SEMI] = ACTIONS(1011), + [anon_sym_typedef] = ACTIONS(1013), + [anon_sym_extern] = ACTIONS(1013), + [anon_sym___attribute__] = ACTIONS(1013), + [anon_sym_LPAREN2] = ACTIONS(1011), + [anon_sym_LBRACE] = ACTIONS(1011), + [anon_sym_STAR] = ACTIONS(1011), + [anon_sym_static] = ACTIONS(1013), + [anon_sym_auto] = ACTIONS(1013), + [anon_sym_register] = ACTIONS(1013), + [anon_sym_inline] = ACTIONS(1013), + [anon_sym_const] = ACTIONS(1013), + [anon_sym_volatile] = ACTIONS(1013), + [anon_sym_restrict] = ACTIONS(1013), + [anon_sym__Atomic] = ACTIONS(1013), + [anon_sym_signed] = ACTIONS(1013), + [anon_sym_unsigned] = ACTIONS(1013), + [anon_sym_long] = ACTIONS(1013), + [anon_sym_short] = ACTIONS(1013), + [sym_primitive_type] = ACTIONS(1013), + [anon_sym_enum] = ACTIONS(1013), + [anon_sym_struct] = ACTIONS(1013), + [anon_sym_union] = ACTIONS(1013), + [anon_sym_if] = ACTIONS(1013), + [anon_sym_else] = ACTIONS(1013), + [anon_sym_switch] = ACTIONS(1013), + [anon_sym_while] = ACTIONS(1013), + [anon_sym_do] = ACTIONS(1013), + [anon_sym_for] = ACTIONS(1013), + [anon_sym_return] = ACTIONS(1013), + [anon_sym_break] = ACTIONS(1013), + [anon_sym_continue] = ACTIONS(1013), + [anon_sym_goto] = ACTIONS(1013), + [anon_sym_AMP] = ACTIONS(1011), + [anon_sym_BANG] = ACTIONS(1011), + [anon_sym_TILDE] = ACTIONS(1011), + [anon_sym_DASH] = ACTIONS(1013), + [anon_sym_PLUS] = ACTIONS(1013), + [anon_sym_DASH_DASH] = ACTIONS(1011), + [anon_sym_PLUS_PLUS] = ACTIONS(1011), + [anon_sym_sizeof] = ACTIONS(1013), + [sym_number_literal] = ACTIONS(1011), + [anon_sym_L_SQUOTE] = ACTIONS(1011), + [anon_sym_SQUOTE] = ACTIONS(1011), + [anon_sym_L_DQUOTE] = ACTIONS(1011), + [anon_sym_DQUOTE] = ACTIONS(1011), + [sym_true] = ACTIONS(1013), + [sym_false] = ACTIONS(1013), + [sym_null] = ACTIONS(1013), + [sym_comment] = ACTIONS(3), }, [204] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(1080), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_COLON] = ACTIONS(1078), - [anon_sym_RBRACE] = ACTIONS(1078), - [anon_sym_QMARK] = ACTIONS(1078), - [anon_sym_PIPE_PIPE] = ACTIONS(1078), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_COMMA] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(1078), - [anon_sym_SEMI] = ACTIONS(1078), - [anon_sym_CARET] = ACTIONS(1078), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_RPAREN] = ACTIONS(1078), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_RBRACK] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [sym_identifier] = ACTIONS(1021), + [aux_sym_preproc_include_token1] = ACTIONS(1021), + [aux_sym_preproc_def_token1] = ACTIONS(1021), + [aux_sym_preproc_if_token1] = ACTIONS(1021), + [aux_sym_preproc_if_token2] = ACTIONS(1021), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1021), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1021), + [aux_sym_preproc_else_token1] = ACTIONS(1021), + [aux_sym_preproc_elif_token1] = ACTIONS(1021), + [sym_preproc_directive] = ACTIONS(1021), + [anon_sym_SEMI] = ACTIONS(1019), + [anon_sym_typedef] = ACTIONS(1021), + [anon_sym_extern] = ACTIONS(1021), + [anon_sym___attribute__] = ACTIONS(1021), + [anon_sym_LPAREN2] = ACTIONS(1019), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_STAR] = ACTIONS(1019), + [anon_sym_static] = ACTIONS(1021), + [anon_sym_auto] = ACTIONS(1021), + [anon_sym_register] = ACTIONS(1021), + [anon_sym_inline] = ACTIONS(1021), + [anon_sym_const] = ACTIONS(1021), + [anon_sym_volatile] = ACTIONS(1021), + [anon_sym_restrict] = ACTIONS(1021), + [anon_sym__Atomic] = ACTIONS(1021), + [anon_sym_signed] = ACTIONS(1021), + [anon_sym_unsigned] = ACTIONS(1021), + [anon_sym_long] = ACTIONS(1021), + [anon_sym_short] = ACTIONS(1021), + [sym_primitive_type] = ACTIONS(1021), + [anon_sym_enum] = ACTIONS(1021), + [anon_sym_struct] = ACTIONS(1021), + [anon_sym_union] = ACTIONS(1021), + [anon_sym_if] = ACTIONS(1021), + [anon_sym_else] = ACTIONS(1063), + [anon_sym_switch] = ACTIONS(1021), + [anon_sym_while] = ACTIONS(1021), + [anon_sym_do] = ACTIONS(1021), + [anon_sym_for] = ACTIONS(1021), + [anon_sym_return] = ACTIONS(1021), + [anon_sym_break] = ACTIONS(1021), + [anon_sym_continue] = ACTIONS(1021), + [anon_sym_goto] = ACTIONS(1021), + [anon_sym_AMP] = ACTIONS(1019), + [anon_sym_BANG] = ACTIONS(1019), + [anon_sym_TILDE] = ACTIONS(1019), + [anon_sym_DASH] = ACTIONS(1021), + [anon_sym_PLUS] = ACTIONS(1021), + [anon_sym_DASH_DASH] = ACTIONS(1019), + [anon_sym_PLUS_PLUS] = ACTIONS(1019), + [anon_sym_sizeof] = ACTIONS(1021), + [sym_number_literal] = ACTIONS(1019), + [anon_sym_L_SQUOTE] = ACTIONS(1019), + [anon_sym_SQUOTE] = ACTIONS(1019), + [anon_sym_L_DQUOTE] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(1019), + [sym_true] = ACTIONS(1021), + [sym_false] = ACTIONS(1021), + [sym_null] = ACTIONS(1021), + [sym_comment] = ACTIONS(3), }, [205] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_COLON] = ACTIONS(1098), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [sym_identifier] = ACTIONS(1027), + [aux_sym_preproc_include_token1] = ACTIONS(1027), + [aux_sym_preproc_def_token1] = ACTIONS(1027), + [aux_sym_preproc_if_token1] = ACTIONS(1027), + [aux_sym_preproc_if_token2] = ACTIONS(1027), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1027), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1027), + [aux_sym_preproc_else_token1] = ACTIONS(1027), + [aux_sym_preproc_elif_token1] = ACTIONS(1027), + [sym_preproc_directive] = ACTIONS(1027), + [anon_sym_SEMI] = ACTIONS(1025), + [anon_sym_typedef] = ACTIONS(1027), + [anon_sym_extern] = ACTIONS(1027), + [anon_sym___attribute__] = ACTIONS(1027), + [anon_sym_LPAREN2] = ACTIONS(1025), + [anon_sym_LBRACE] = ACTIONS(1025), + [anon_sym_STAR] = ACTIONS(1025), + [anon_sym_static] = ACTIONS(1027), + [anon_sym_auto] = ACTIONS(1027), + [anon_sym_register] = ACTIONS(1027), + [anon_sym_inline] = ACTIONS(1027), + [anon_sym_const] = ACTIONS(1027), + [anon_sym_volatile] = ACTIONS(1027), + [anon_sym_restrict] = ACTIONS(1027), + [anon_sym__Atomic] = ACTIONS(1027), + [anon_sym_signed] = ACTIONS(1027), + [anon_sym_unsigned] = ACTIONS(1027), + [anon_sym_long] = ACTIONS(1027), + [anon_sym_short] = ACTIONS(1027), + [sym_primitive_type] = ACTIONS(1027), + [anon_sym_enum] = ACTIONS(1027), + [anon_sym_struct] = ACTIONS(1027), + [anon_sym_union] = ACTIONS(1027), + [anon_sym_if] = ACTIONS(1027), + [anon_sym_else] = ACTIONS(1027), + [anon_sym_switch] = ACTIONS(1027), + [anon_sym_while] = ACTIONS(1027), + [anon_sym_do] = ACTIONS(1027), + [anon_sym_for] = ACTIONS(1027), + [anon_sym_return] = ACTIONS(1027), + [anon_sym_break] = ACTIONS(1027), + [anon_sym_continue] = ACTIONS(1027), + [anon_sym_goto] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1025), + [anon_sym_BANG] = ACTIONS(1025), + [anon_sym_TILDE] = ACTIONS(1025), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH_DASH] = ACTIONS(1025), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_sizeof] = ACTIONS(1027), + [sym_number_literal] = ACTIONS(1025), + [anon_sym_L_SQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1025), + [anon_sym_L_DQUOTE] = ACTIONS(1025), + [anon_sym_DQUOTE] = ACTIONS(1025), + [sym_true] = ACTIONS(1027), + [sym_false] = ACTIONS(1027), + [sym_null] = ACTIONS(1027), + [sym_comment] = ACTIONS(3), }, [206] = { - [sym_parameter_list] = STATE(214), - [anon_sym_LBRACE] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1100), + [sym_identifier] = ACTIONS(1031), + [aux_sym_preproc_include_token1] = ACTIONS(1031), + [aux_sym_preproc_def_token1] = ACTIONS(1031), + [aux_sym_preproc_if_token1] = ACTIONS(1031), + [aux_sym_preproc_if_token2] = ACTIONS(1031), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1031), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1031), + [aux_sym_preproc_else_token1] = ACTIONS(1031), + [aux_sym_preproc_elif_token1] = ACTIONS(1031), + [sym_preproc_directive] = ACTIONS(1031), + [anon_sym_SEMI] = ACTIONS(1029), + [anon_sym_typedef] = ACTIONS(1031), + [anon_sym_extern] = ACTIONS(1031), + [anon_sym___attribute__] = ACTIONS(1031), + [anon_sym_LPAREN2] = ACTIONS(1029), + [anon_sym_LBRACE] = ACTIONS(1029), + [anon_sym_STAR] = ACTIONS(1029), + [anon_sym_static] = ACTIONS(1031), + [anon_sym_auto] = ACTIONS(1031), + [anon_sym_register] = ACTIONS(1031), + [anon_sym_inline] = ACTIONS(1031), + [anon_sym_const] = ACTIONS(1031), + [anon_sym_volatile] = ACTIONS(1031), + [anon_sym_restrict] = ACTIONS(1031), + [anon_sym__Atomic] = ACTIONS(1031), + [anon_sym_signed] = ACTIONS(1031), + [anon_sym_unsigned] = ACTIONS(1031), + [anon_sym_long] = ACTIONS(1031), + [anon_sym_short] = ACTIONS(1031), + [sym_primitive_type] = ACTIONS(1031), + [anon_sym_enum] = ACTIONS(1031), + [anon_sym_struct] = ACTIONS(1031), + [anon_sym_union] = ACTIONS(1031), + [anon_sym_if] = ACTIONS(1031), + [anon_sym_else] = ACTIONS(1031), + [anon_sym_switch] = ACTIONS(1031), + [anon_sym_while] = ACTIONS(1031), + [anon_sym_do] = ACTIONS(1031), + [anon_sym_for] = ACTIONS(1031), + [anon_sym_return] = ACTIONS(1031), + [anon_sym_break] = ACTIONS(1031), + [anon_sym_continue] = ACTIONS(1031), + [anon_sym_goto] = ACTIONS(1031), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_TILDE] = ACTIONS(1029), + [anon_sym_DASH] = ACTIONS(1031), + [anon_sym_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_sizeof] = ACTIONS(1031), + [sym_number_literal] = ACTIONS(1029), + [anon_sym_L_SQUOTE] = ACTIONS(1029), + [anon_sym_SQUOTE] = ACTIONS(1029), + [anon_sym_L_DQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE] = ACTIONS(1029), + [sym_true] = ACTIONS(1031), + [sym_false] = ACTIONS(1031), + [sym_null] = ACTIONS(1031), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(652), - [anon_sym_COMMA] = ACTIONS(1100), - [anon_sym_SEMI] = ACTIONS(1100), - [anon_sym_RPAREN] = ACTIONS(1100), - [anon_sym_LBRACK] = ACTIONS(650), }, [207] = { - [sym_pointer_declarator] = STATE(296), - [sym_parenthesized_declarator] = STATE(296), - [aux_sym_type_definition_repeat1] = STATE(144), - [sym_array_declarator] = STATE(296), - [sym__declarator] = STATE(296), - [sym_function_declarator] = STATE(296), - [sym_type_qualifier] = STATE(144), - [anon_sym_const] = ACTIONS(7), - [anon_sym_LPAREN2] = ACTIONS(328), - [anon_sym_restrict] = ACTIONS(7), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym__Atomic] = ACTIONS(7), - [anon_sym_STAR] = ACTIONS(326), - [sym_identifier] = ACTIONS(1102), + [sym_identifier] = ACTIONS(1035), + [aux_sym_preproc_include_token1] = ACTIONS(1035), + [aux_sym_preproc_def_token1] = ACTIONS(1035), + [aux_sym_preproc_if_token1] = ACTIONS(1035), + [aux_sym_preproc_if_token2] = ACTIONS(1035), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1035), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1035), + [aux_sym_preproc_else_token1] = ACTIONS(1035), + [aux_sym_preproc_elif_token1] = ACTIONS(1035), + [sym_preproc_directive] = ACTIONS(1035), + [anon_sym_SEMI] = ACTIONS(1033), + [anon_sym_typedef] = ACTIONS(1035), + [anon_sym_extern] = ACTIONS(1035), + [anon_sym___attribute__] = ACTIONS(1035), + [anon_sym_LPAREN2] = ACTIONS(1033), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_STAR] = ACTIONS(1033), + [anon_sym_static] = ACTIONS(1035), + [anon_sym_auto] = ACTIONS(1035), + [anon_sym_register] = ACTIONS(1035), + [anon_sym_inline] = ACTIONS(1035), + [anon_sym_const] = ACTIONS(1035), + [anon_sym_volatile] = ACTIONS(1035), + [anon_sym_restrict] = ACTIONS(1035), + [anon_sym__Atomic] = ACTIONS(1035), + [anon_sym_signed] = ACTIONS(1035), + [anon_sym_unsigned] = ACTIONS(1035), + [anon_sym_long] = ACTIONS(1035), + [anon_sym_short] = ACTIONS(1035), + [sym_primitive_type] = ACTIONS(1035), + [anon_sym_enum] = ACTIONS(1035), + [anon_sym_struct] = ACTIONS(1035), + [anon_sym_union] = ACTIONS(1035), + [anon_sym_if] = ACTIONS(1035), + [anon_sym_else] = ACTIONS(1035), + [anon_sym_switch] = ACTIONS(1035), + [anon_sym_while] = ACTIONS(1035), + [anon_sym_do] = ACTIONS(1035), + [anon_sym_for] = ACTIONS(1035), + [anon_sym_return] = ACTIONS(1035), + [anon_sym_break] = ACTIONS(1035), + [anon_sym_continue] = ACTIONS(1035), + [anon_sym_goto] = ACTIONS(1035), + [anon_sym_AMP] = ACTIONS(1033), + [anon_sym_BANG] = ACTIONS(1033), + [anon_sym_TILDE] = ACTIONS(1033), + [anon_sym_DASH] = ACTIONS(1035), + [anon_sym_PLUS] = ACTIONS(1035), + [anon_sym_DASH_DASH] = ACTIONS(1033), + [anon_sym_PLUS_PLUS] = ACTIONS(1033), + [anon_sym_sizeof] = ACTIONS(1035), + [sym_number_literal] = ACTIONS(1033), + [anon_sym_L_SQUOTE] = ACTIONS(1033), + [anon_sym_SQUOTE] = ACTIONS(1033), + [anon_sym_L_DQUOTE] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(1033), + [sym_true] = ACTIONS(1035), + [sym_false] = ACTIONS(1035), + [sym_null] = ACTIONS(1035), [sym_comment] = ACTIONS(3), }, [208] = { - [sym_parameter_list] = STATE(214), + [sym_identifier] = ACTIONS(915), + [aux_sym_preproc_include_token1] = ACTIONS(915), + [aux_sym_preproc_def_token1] = ACTIONS(915), + [aux_sym_preproc_if_token1] = ACTIONS(915), + [aux_sym_preproc_if_token2] = ACTIONS(915), + [aux_sym_preproc_ifdef_token1] = ACTIONS(915), + [aux_sym_preproc_ifdef_token2] = ACTIONS(915), + [aux_sym_preproc_else_token1] = ACTIONS(915), + [aux_sym_preproc_elif_token1] = ACTIONS(915), + [sym_preproc_directive] = ACTIONS(915), + [anon_sym_SEMI] = ACTIONS(913), + [anon_sym_typedef] = ACTIONS(915), + [anon_sym_extern] = ACTIONS(915), + [anon_sym___attribute__] = ACTIONS(915), + [anon_sym_LPAREN2] = ACTIONS(913), + [anon_sym_LBRACE] = ACTIONS(913), + [anon_sym_STAR] = ACTIONS(913), + [anon_sym_static] = ACTIONS(915), + [anon_sym_auto] = ACTIONS(915), + [anon_sym_register] = ACTIONS(915), + [anon_sym_inline] = ACTIONS(915), + [anon_sym_const] = ACTIONS(915), + [anon_sym_volatile] = ACTIONS(915), + [anon_sym_restrict] = ACTIONS(915), + [anon_sym__Atomic] = ACTIONS(915), + [anon_sym_signed] = ACTIONS(915), + [anon_sym_unsigned] = ACTIONS(915), + [anon_sym_long] = ACTIONS(915), + [anon_sym_short] = ACTIONS(915), + [sym_primitive_type] = ACTIONS(915), + [anon_sym_enum] = ACTIONS(915), + [anon_sym_struct] = ACTIONS(915), + [anon_sym_union] = ACTIONS(915), + [anon_sym_if] = ACTIONS(915), + [anon_sym_else] = ACTIONS(915), + [anon_sym_switch] = ACTIONS(915), + [anon_sym_while] = ACTIONS(915), + [anon_sym_do] = ACTIONS(915), + [anon_sym_for] = ACTIONS(915), + [anon_sym_return] = ACTIONS(915), + [anon_sym_break] = ACTIONS(915), + [anon_sym_continue] = ACTIONS(915), + [anon_sym_goto] = ACTIONS(915), + [anon_sym_AMP] = ACTIONS(913), + [anon_sym_BANG] = ACTIONS(913), + [anon_sym_TILDE] = ACTIONS(913), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_PLUS] = ACTIONS(915), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_sizeof] = ACTIONS(915), + [sym_number_literal] = ACTIONS(913), + [anon_sym_L_SQUOTE] = ACTIONS(913), + [anon_sym_SQUOTE] = ACTIONS(913), + [anon_sym_L_DQUOTE] = ACTIONS(913), + [anon_sym_DQUOTE] = ACTIONS(913), + [sym_true] = ACTIONS(915), + [sym_false] = ACTIONS(915), + [sym_null] = ACTIONS(915), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(1104), - [anon_sym_LPAREN2] = ACTIONS(652), - [anon_sym_LBRACK] = ACTIONS(650), }, [209] = { - [sym_char_literal] = STATE(298), - [sym__expression] = STATE(298), - [sym_binary_expression] = STATE(298), - [sym_update_expression] = STATE(298), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(298), - [sym_sizeof_expression] = STATE(298), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_initializer_list] = STATE(299), - [sym_concatenated_string] = STATE(298), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(298), - [sym_assignment_expression] = STATE(298), - [sym_cast_expression] = STATE(298), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(298), - [anon_sym_LBRACE] = ACTIONS(886), - [anon_sym_BANG] = ACTIONS(47), - [sym_true] = ACTIONS(1106), - [sym_null] = ACTIONS(1106), - [sym_number_literal] = ACTIONS(1108), - [anon_sym_DASH] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_AMP] = ACTIONS(43), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(1106), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_identifier] = ACTIONS(1039), + [aux_sym_preproc_include_token1] = ACTIONS(1039), + [aux_sym_preproc_def_token1] = ACTIONS(1039), + [aux_sym_preproc_if_token1] = ACTIONS(1039), + [aux_sym_preproc_if_token2] = ACTIONS(1039), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1039), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1039), + [aux_sym_preproc_else_token1] = ACTIONS(1039), + [aux_sym_preproc_elif_token1] = ACTIONS(1039), + [sym_preproc_directive] = ACTIONS(1039), + [anon_sym_SEMI] = ACTIONS(1037), + [anon_sym_typedef] = ACTIONS(1039), + [anon_sym_extern] = ACTIONS(1039), + [anon_sym___attribute__] = ACTIONS(1039), + [anon_sym_LPAREN2] = ACTIONS(1037), + [anon_sym_LBRACE] = ACTIONS(1037), + [anon_sym_STAR] = ACTIONS(1037), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_auto] = ACTIONS(1039), + [anon_sym_register] = ACTIONS(1039), + [anon_sym_inline] = ACTIONS(1039), + [anon_sym_const] = ACTIONS(1039), + [anon_sym_volatile] = ACTIONS(1039), + [anon_sym_restrict] = ACTIONS(1039), + [anon_sym__Atomic] = ACTIONS(1039), + [anon_sym_signed] = ACTIONS(1039), + [anon_sym_unsigned] = ACTIONS(1039), + [anon_sym_long] = ACTIONS(1039), + [anon_sym_short] = ACTIONS(1039), + [sym_primitive_type] = ACTIONS(1039), + [anon_sym_enum] = ACTIONS(1039), + [anon_sym_struct] = ACTIONS(1039), + [anon_sym_union] = ACTIONS(1039), + [anon_sym_if] = ACTIONS(1039), + [anon_sym_else] = ACTIONS(1039), + [anon_sym_switch] = ACTIONS(1039), + [anon_sym_while] = ACTIONS(1039), + [anon_sym_do] = ACTIONS(1039), + [anon_sym_for] = ACTIONS(1039), + [anon_sym_return] = ACTIONS(1039), + [anon_sym_break] = ACTIONS(1039), + [anon_sym_continue] = ACTIONS(1039), + [anon_sym_goto] = ACTIONS(1039), + [anon_sym_AMP] = ACTIONS(1037), + [anon_sym_BANG] = ACTIONS(1037), + [anon_sym_TILDE] = ACTIONS(1037), + [anon_sym_DASH] = ACTIONS(1039), + [anon_sym_PLUS] = ACTIONS(1039), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_sizeof] = ACTIONS(1039), + [sym_number_literal] = ACTIONS(1037), + [anon_sym_L_SQUOTE] = ACTIONS(1037), + [anon_sym_SQUOTE] = ACTIONS(1037), + [anon_sym_L_DQUOTE] = ACTIONS(1037), + [anon_sym_DQUOTE] = ACTIONS(1037), + [sym_true] = ACTIONS(1039), + [sym_false] = ACTIONS(1039), + [sym_null] = ACTIONS(1039), + [sym_comment] = ACTIONS(3), }, [210] = { - [anon_sym_case] = ACTIONS(1110), - [sym_true] = ACTIONS(1110), - [anon_sym_restrict] = ACTIONS(1110), - [sym_null] = ACTIONS(1110), - [anon_sym_goto] = ACTIONS(1110), - [anon_sym_const] = ACTIONS(1110), - [anon_sym_typedef] = ACTIONS(1110), - [anon_sym_DASH_DASH] = ACTIONS(1112), - [anon_sym_default] = ACTIONS(1110), - [anon_sym__Atomic] = ACTIONS(1110), - [sym_identifier] = ACTIONS(1110), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1110), - [sym_number_literal] = ACTIONS(1112), - [anon_sym_volatile] = ACTIONS(1110), - [anon_sym_SQUOTE] = ACTIONS(1112), - [anon_sym_extern] = ACTIONS(1110), - [anon_sym_PLUS_PLUS] = ACTIONS(1112), - [anon_sym_struct] = ACTIONS(1110), - [anon_sym_signed] = ACTIONS(1110), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1110), - [anon_sym_while] = ACTIONS(1110), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1110), - [anon_sym_L_SQUOTE] = ACTIONS(1112), - [anon_sym___attribute__] = ACTIONS(1110), - [anon_sym_sizeof] = ACTIONS(1110), - [anon_sym_LBRACE] = ACTIONS(1112), - [anon_sym_union] = ACTIONS(1110), - [anon_sym_unsigned] = ACTIONS(1110), - [anon_sym_short] = ACTIONS(1110), - [anon_sym_do] = ACTIONS(1110), - [sym_preproc_directive] = ACTIONS(1110), - [anon_sym_AMP] = ACTIONS(1112), - [aux_sym_preproc_if_token1] = ACTIONS(1110), - [anon_sym_TILDE] = ACTIONS(1112), - [anon_sym_L_DQUOTE] = ACTIONS(1112), - [anon_sym_LPAREN2] = ACTIONS(1112), - [anon_sym_RBRACE] = ACTIONS(1112), - [sym_primitive_type] = ACTIONS(1110), - [anon_sym_for] = ACTIONS(1110), - [anon_sym_break] = ACTIONS(1110), - [anon_sym_BANG] = ACTIONS(1112), - [aux_sym_preproc_include_token1] = ACTIONS(1110), - [anon_sym_DASH] = ACTIONS(1110), - [anon_sym_static] = ACTIONS(1110), - [anon_sym_DQUOTE] = ACTIONS(1112), - [anon_sym_register] = ACTIONS(1110), - [anon_sym_STAR] = ACTIONS(1112), - [anon_sym_if] = ACTIONS(1110), - [anon_sym_switch] = ACTIONS(1110), - [anon_sym_enum] = ACTIONS(1110), - [sym_false] = ACTIONS(1110), - [ts_builtin_sym_end] = ACTIONS(1112), - [anon_sym_return] = ACTIONS(1110), - [anon_sym_continue] = ACTIONS(1110), - [anon_sym_SEMI] = ACTIONS(1112), - [aux_sym_preproc_def_token1] = ACTIONS(1110), - [anon_sym_PLUS] = ACTIONS(1110), - [anon_sym_auto] = ACTIONS(1110), - [anon_sym_inline] = ACTIONS(1110), + [sym_identifier] = ACTIONS(1005), + [aux_sym_preproc_include_token1] = ACTIONS(1005), + [aux_sym_preproc_def_token1] = ACTIONS(1005), + [aux_sym_preproc_if_token1] = ACTIONS(1005), + [aux_sym_preproc_if_token2] = ACTIONS(1005), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1005), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1005), + [aux_sym_preproc_else_token1] = ACTIONS(1005), + [aux_sym_preproc_elif_token1] = ACTIONS(1005), + [sym_preproc_directive] = ACTIONS(1005), + [anon_sym_SEMI] = ACTIONS(1003), + [anon_sym_typedef] = ACTIONS(1005), + [anon_sym_extern] = ACTIONS(1005), + [anon_sym___attribute__] = ACTIONS(1005), + [anon_sym_LPAREN2] = ACTIONS(1003), + [anon_sym_LBRACE] = ACTIONS(1003), + [anon_sym_STAR] = ACTIONS(1003), + [anon_sym_static] = ACTIONS(1005), + [anon_sym_auto] = ACTIONS(1005), + [anon_sym_register] = ACTIONS(1005), + [anon_sym_inline] = ACTIONS(1005), + [anon_sym_const] = ACTIONS(1005), + [anon_sym_volatile] = ACTIONS(1005), + [anon_sym_restrict] = ACTIONS(1005), + [anon_sym__Atomic] = ACTIONS(1005), + [anon_sym_signed] = ACTIONS(1005), + [anon_sym_unsigned] = ACTIONS(1005), + [anon_sym_long] = ACTIONS(1005), + [anon_sym_short] = ACTIONS(1005), + [sym_primitive_type] = ACTIONS(1005), + [anon_sym_enum] = ACTIONS(1005), + [anon_sym_struct] = ACTIONS(1005), + [anon_sym_union] = ACTIONS(1005), + [anon_sym_if] = ACTIONS(1005), + [anon_sym_else] = ACTIONS(1005), + [anon_sym_switch] = ACTIONS(1005), + [anon_sym_while] = ACTIONS(1005), + [anon_sym_do] = ACTIONS(1005), + [anon_sym_for] = ACTIONS(1005), + [anon_sym_return] = ACTIONS(1005), + [anon_sym_break] = ACTIONS(1005), + [anon_sym_continue] = ACTIONS(1005), + [anon_sym_goto] = ACTIONS(1005), + [anon_sym_AMP] = ACTIONS(1003), + [anon_sym_BANG] = ACTIONS(1003), + [anon_sym_TILDE] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1005), + [anon_sym_PLUS] = ACTIONS(1005), + [anon_sym_DASH_DASH] = ACTIONS(1003), + [anon_sym_PLUS_PLUS] = ACTIONS(1003), + [anon_sym_sizeof] = ACTIONS(1005), + [sym_number_literal] = ACTIONS(1003), + [anon_sym_L_SQUOTE] = ACTIONS(1003), + [anon_sym_SQUOTE] = ACTIONS(1003), + [anon_sym_L_DQUOTE] = ACTIONS(1003), + [anon_sym_DQUOTE] = ACTIONS(1003), + [sym_true] = ACTIONS(1005), + [sym_false] = ACTIONS(1005), + [sym_null] = ACTIONS(1005), + [sym_comment] = ACTIONS(3), }, [211] = { - [sym_sized_type_specifier] = STATE(130), - [sym_enum_specifier] = STATE(130), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(130), - [sym_union_specifier] = STATE(130), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_attribute_specifier] = STATE(43), - [sym_parameter_declaration] = STATE(244), - [sym_macro_type_specifier] = STATE(130), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_storage_class_specifier] = STATE(43), - [sym_struct_specifier] = STATE(130), - [sym__declaration_specifiers] = STATE(246), - [anon_sym_union] = ACTIONS(37), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(7), - [anon_sym_short] = ACTIONS(27), - [anon_sym_DOT_DOT_DOT] = ACTIONS(907), - [anon_sym_const] = ACTIONS(7), - [anon_sym__Atomic] = ACTIONS(7), - [sym_primitive_type] = ACTIONS(348), - [sym_identifier] = ACTIONS(187), - [anon_sym_static] = ACTIONS(63), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_register] = ACTIONS(63), - [anon_sym_extern] = ACTIONS(63), - [anon_sym_struct] = ACTIONS(25), - [anon_sym_signed] = ACTIONS(27), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_long] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(909), - [anon_sym_auto] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(31), + [sym_identifier] = ACTIONS(997), + [aux_sym_preproc_include_token1] = ACTIONS(997), + [aux_sym_preproc_def_token1] = ACTIONS(997), + [aux_sym_preproc_if_token1] = ACTIONS(997), + [aux_sym_preproc_if_token2] = ACTIONS(997), + [aux_sym_preproc_ifdef_token1] = ACTIONS(997), + [aux_sym_preproc_ifdef_token2] = ACTIONS(997), + [aux_sym_preproc_else_token1] = ACTIONS(997), + [aux_sym_preproc_elif_token1] = ACTIONS(997), + [sym_preproc_directive] = ACTIONS(997), + [anon_sym_SEMI] = ACTIONS(995), + [anon_sym_typedef] = ACTIONS(997), + [anon_sym_extern] = ACTIONS(997), + [anon_sym___attribute__] = ACTIONS(997), + [anon_sym_LPAREN2] = ACTIONS(995), + [anon_sym_LBRACE] = ACTIONS(995), + [anon_sym_STAR] = ACTIONS(995), + [anon_sym_static] = ACTIONS(997), + [anon_sym_auto] = ACTIONS(997), + [anon_sym_register] = ACTIONS(997), + [anon_sym_inline] = ACTIONS(997), + [anon_sym_const] = ACTIONS(997), + [anon_sym_volatile] = ACTIONS(997), + [anon_sym_restrict] = ACTIONS(997), + [anon_sym__Atomic] = ACTIONS(997), + [anon_sym_signed] = ACTIONS(997), + [anon_sym_unsigned] = ACTIONS(997), + [anon_sym_long] = ACTIONS(997), + [anon_sym_short] = ACTIONS(997), + [sym_primitive_type] = ACTIONS(997), + [anon_sym_enum] = ACTIONS(997), + [anon_sym_struct] = ACTIONS(997), + [anon_sym_union] = ACTIONS(997), + [anon_sym_if] = ACTIONS(997), + [anon_sym_else] = ACTIONS(997), + [anon_sym_switch] = ACTIONS(997), + [anon_sym_while] = ACTIONS(997), + [anon_sym_do] = ACTIONS(997), + [anon_sym_for] = ACTIONS(997), + [anon_sym_return] = ACTIONS(997), + [anon_sym_break] = ACTIONS(997), + [anon_sym_continue] = ACTIONS(997), + [anon_sym_goto] = ACTIONS(997), + [anon_sym_AMP] = ACTIONS(995), + [anon_sym_BANG] = ACTIONS(995), + [anon_sym_TILDE] = ACTIONS(995), + [anon_sym_DASH] = ACTIONS(997), + [anon_sym_PLUS] = ACTIONS(997), + [anon_sym_DASH_DASH] = ACTIONS(995), + [anon_sym_PLUS_PLUS] = ACTIONS(995), + [anon_sym_sizeof] = ACTIONS(997), + [sym_number_literal] = ACTIONS(995), + [anon_sym_L_SQUOTE] = ACTIONS(995), + [anon_sym_SQUOTE] = ACTIONS(995), + [anon_sym_L_DQUOTE] = ACTIONS(995), + [anon_sym_DQUOTE] = ACTIONS(995), + [sym_true] = ACTIONS(997), + [sym_false] = ACTIONS(997), + [sym_null] = ACTIONS(997), + [sym_comment] = ACTIONS(3), }, [212] = { - [sym_pointer_declarator] = STATE(300), - [sym_array_declarator] = STATE(300), - [sym__declarator] = STATE(300), - [sym_parenthesized_declarator] = STATE(300), - [sym_function_declarator] = STATE(300), - [sym_init_declarator] = STATE(301), - [anon_sym_STAR] = ACTIONS(326), - [anon_sym_LPAREN2] = ACTIONS(328), - [sym_identifier] = ACTIONS(1114), + [sym_identifier] = ACTIONS(1047), + [aux_sym_preproc_include_token1] = ACTIONS(1047), + [aux_sym_preproc_def_token1] = ACTIONS(1047), + [aux_sym_preproc_if_token1] = ACTIONS(1047), + [aux_sym_preproc_if_token2] = ACTIONS(1047), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1047), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1047), + [aux_sym_preproc_else_token1] = ACTIONS(1047), + [aux_sym_preproc_elif_token1] = ACTIONS(1047), + [sym_preproc_directive] = ACTIONS(1047), + [anon_sym_SEMI] = ACTIONS(1045), + [anon_sym_typedef] = ACTIONS(1047), + [anon_sym_extern] = ACTIONS(1047), + [anon_sym___attribute__] = ACTIONS(1047), + [anon_sym_LPAREN2] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(1045), + [anon_sym_STAR] = ACTIONS(1045), + [anon_sym_static] = ACTIONS(1047), + [anon_sym_auto] = ACTIONS(1047), + [anon_sym_register] = ACTIONS(1047), + [anon_sym_inline] = ACTIONS(1047), + [anon_sym_const] = ACTIONS(1047), + [anon_sym_volatile] = ACTIONS(1047), + [anon_sym_restrict] = ACTIONS(1047), + [anon_sym__Atomic] = ACTIONS(1047), + [anon_sym_signed] = ACTIONS(1047), + [anon_sym_unsigned] = ACTIONS(1047), + [anon_sym_long] = ACTIONS(1047), + [anon_sym_short] = ACTIONS(1047), + [sym_primitive_type] = ACTIONS(1047), + [anon_sym_enum] = ACTIONS(1047), + [anon_sym_struct] = ACTIONS(1047), + [anon_sym_union] = ACTIONS(1047), + [anon_sym_if] = ACTIONS(1047), + [anon_sym_else] = ACTIONS(1047), + [anon_sym_switch] = ACTIONS(1047), + [anon_sym_while] = ACTIONS(1047), + [anon_sym_do] = ACTIONS(1047), + [anon_sym_for] = ACTIONS(1047), + [anon_sym_return] = ACTIONS(1047), + [anon_sym_break] = ACTIONS(1047), + [anon_sym_continue] = ACTIONS(1047), + [anon_sym_goto] = ACTIONS(1047), + [anon_sym_AMP] = ACTIONS(1045), + [anon_sym_BANG] = ACTIONS(1045), + [anon_sym_TILDE] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1047), + [anon_sym_DASH_DASH] = ACTIONS(1045), + [anon_sym_PLUS_PLUS] = ACTIONS(1045), + [anon_sym_sizeof] = ACTIONS(1047), + [sym_number_literal] = ACTIONS(1045), + [anon_sym_L_SQUOTE] = ACTIONS(1045), + [anon_sym_SQUOTE] = ACTIONS(1045), + [anon_sym_L_DQUOTE] = ACTIONS(1045), + [anon_sym_DQUOTE] = ACTIONS(1045), + [sym_true] = ACTIONS(1047), + [sym_false] = ACTIONS(1047), + [sym_null] = ACTIONS(1047), [sym_comment] = ACTIONS(3), }, [213] = { - [sym__expression] = STATE(304), - [sym_binary_expression] = STATE(304), - [sym_update_expression] = STATE(304), - [sym_call_expression] = STATE(36), - [sym_type_qualifier] = STATE(305), - [sym_conditional_expression] = STATE(304), - [sym_assignment_expression] = STATE(304), - [sym_cast_expression] = STATE(304), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(304), - [sym_char_literal] = STATE(304), - [aux_sym_type_definition_repeat1] = STATE(305), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(304), - [sym_sizeof_expression] = STATE(304), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(304), - [sym_string_literal] = STATE(41), - [sym_true] = ACTIONS(1116), - [anon_sym_restrict] = ACTIONS(7), - [sym_null] = ACTIONS(1116), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_const] = ACTIONS(7), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_DASH_DASH] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(7), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(1118), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(1120), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_RBRACK] = ACTIONS(1122), - [anon_sym_sizeof] = ACTIONS(33), + [sym_identifier] = ACTIONS(1017), + [aux_sym_preproc_include_token1] = ACTIONS(1017), + [aux_sym_preproc_def_token1] = ACTIONS(1017), + [aux_sym_preproc_if_token1] = ACTIONS(1017), + [aux_sym_preproc_if_token2] = ACTIONS(1017), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1017), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1017), + [aux_sym_preproc_else_token1] = ACTIONS(1017), + [aux_sym_preproc_elif_token1] = ACTIONS(1017), + [sym_preproc_directive] = ACTIONS(1017), + [anon_sym_SEMI] = ACTIONS(1015), + [anon_sym_typedef] = ACTIONS(1017), + [anon_sym_extern] = ACTIONS(1017), + [anon_sym___attribute__] = ACTIONS(1017), + [anon_sym_LPAREN2] = ACTIONS(1015), + [anon_sym_LBRACE] = ACTIONS(1015), + [anon_sym_STAR] = ACTIONS(1015), + [anon_sym_static] = ACTIONS(1017), + [anon_sym_auto] = ACTIONS(1017), + [anon_sym_register] = ACTIONS(1017), + [anon_sym_inline] = ACTIONS(1017), + [anon_sym_const] = ACTIONS(1017), + [anon_sym_volatile] = ACTIONS(1017), + [anon_sym_restrict] = ACTIONS(1017), + [anon_sym__Atomic] = ACTIONS(1017), + [anon_sym_signed] = ACTIONS(1017), + [anon_sym_unsigned] = ACTIONS(1017), + [anon_sym_long] = ACTIONS(1017), + [anon_sym_short] = ACTIONS(1017), + [sym_primitive_type] = ACTIONS(1017), + [anon_sym_enum] = ACTIONS(1017), + [anon_sym_struct] = ACTIONS(1017), + [anon_sym_union] = ACTIONS(1017), + [anon_sym_if] = ACTIONS(1017), + [anon_sym_else] = ACTIONS(1017), + [anon_sym_switch] = ACTIONS(1017), + [anon_sym_while] = ACTIONS(1017), + [anon_sym_do] = ACTIONS(1017), + [anon_sym_for] = ACTIONS(1017), + [anon_sym_return] = ACTIONS(1017), + [anon_sym_break] = ACTIONS(1017), + [anon_sym_continue] = ACTIONS(1017), + [anon_sym_goto] = ACTIONS(1017), + [anon_sym_AMP] = ACTIONS(1015), + [anon_sym_BANG] = ACTIONS(1015), + [anon_sym_TILDE] = ACTIONS(1015), + [anon_sym_DASH] = ACTIONS(1017), + [anon_sym_PLUS] = ACTIONS(1017), + [anon_sym_DASH_DASH] = ACTIONS(1015), + [anon_sym_PLUS_PLUS] = ACTIONS(1015), + [anon_sym_sizeof] = ACTIONS(1017), + [sym_number_literal] = ACTIONS(1015), + [anon_sym_L_SQUOTE] = ACTIONS(1015), + [anon_sym_SQUOTE] = ACTIONS(1015), + [anon_sym_L_DQUOTE] = ACTIONS(1015), + [anon_sym_DQUOTE] = ACTIONS(1015), + [sym_true] = ACTIONS(1017), + [sym_false] = ACTIONS(1017), + [sym_null] = ACTIONS(1017), + [sym_comment] = ACTIONS(3), }, [214] = { - [sym_attribute_specifier] = STATE(306), - [aux_sym_function_declarator_repeat1] = STATE(306), - [anon_sym_LBRACE] = ACTIONS(1124), - [anon_sym_EQ] = ACTIONS(1124), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(1124), - [anon_sym_COMMA] = ACTIONS(1124), - [anon_sym_SEMI] = ACTIONS(1124), - [anon_sym_RPAREN] = ACTIONS(1124), - [anon_sym___attribute__] = ACTIONS(1126), - [anon_sym_LBRACK] = ACTIONS(1124), + [sym_identifier] = ACTIONS(981), + [aux_sym_preproc_include_token1] = ACTIONS(981), + [aux_sym_preproc_def_token1] = ACTIONS(981), + [aux_sym_preproc_if_token1] = ACTIONS(981), + [aux_sym_preproc_if_token2] = ACTIONS(981), + [aux_sym_preproc_ifdef_token1] = ACTIONS(981), + [aux_sym_preproc_ifdef_token2] = ACTIONS(981), + [aux_sym_preproc_else_token1] = ACTIONS(981), + [aux_sym_preproc_elif_token1] = ACTIONS(981), + [sym_preproc_directive] = ACTIONS(981), + [anon_sym_SEMI] = ACTIONS(979), + [anon_sym_typedef] = ACTIONS(981), + [anon_sym_extern] = ACTIONS(981), + [anon_sym___attribute__] = ACTIONS(981), + [anon_sym_LPAREN2] = ACTIONS(979), + [anon_sym_LBRACE] = ACTIONS(979), + [anon_sym_STAR] = ACTIONS(979), + [anon_sym_static] = ACTIONS(981), + [anon_sym_auto] = ACTIONS(981), + [anon_sym_register] = ACTIONS(981), + [anon_sym_inline] = ACTIONS(981), + [anon_sym_const] = ACTIONS(981), + [anon_sym_volatile] = ACTIONS(981), + [anon_sym_restrict] = ACTIONS(981), + [anon_sym__Atomic] = ACTIONS(981), + [anon_sym_signed] = ACTIONS(981), + [anon_sym_unsigned] = ACTIONS(981), + [anon_sym_long] = ACTIONS(981), + [anon_sym_short] = ACTIONS(981), + [sym_primitive_type] = ACTIONS(981), + [anon_sym_enum] = ACTIONS(981), + [anon_sym_struct] = ACTIONS(981), + [anon_sym_union] = ACTIONS(981), + [anon_sym_if] = ACTIONS(981), + [anon_sym_else] = ACTIONS(981), + [anon_sym_switch] = ACTIONS(981), + [anon_sym_while] = ACTIONS(981), + [anon_sym_do] = ACTIONS(981), + [anon_sym_for] = ACTIONS(981), + [anon_sym_return] = ACTIONS(981), + [anon_sym_break] = ACTIONS(981), + [anon_sym_continue] = ACTIONS(981), + [anon_sym_goto] = ACTIONS(981), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_BANG] = ACTIONS(979), + [anon_sym_TILDE] = ACTIONS(979), + [anon_sym_DASH] = ACTIONS(981), + [anon_sym_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(979), + [anon_sym_PLUS_PLUS] = ACTIONS(979), + [anon_sym_sizeof] = ACTIONS(981), + [sym_number_literal] = ACTIONS(979), + [anon_sym_L_SQUOTE] = ACTIONS(979), + [anon_sym_SQUOTE] = ACTIONS(979), + [anon_sym_L_DQUOTE] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(979), + [sym_true] = ACTIONS(981), + [sym_false] = ACTIONS(981), + [sym_null] = ACTIONS(981), + [sym_comment] = ACTIONS(3), }, [215] = { - [sym_true] = ACTIONS(1128), - [anon_sym_restrict] = ACTIONS(1128), - [sym_null] = ACTIONS(1128), - [anon_sym_goto] = ACTIONS(1128), - [anon_sym_const] = ACTIONS(1128), - [anon_sym_typedef] = ACTIONS(1128), - [anon_sym_DASH_DASH] = ACTIONS(1130), - [anon_sym__Atomic] = ACTIONS(1128), - [sym_identifier] = ACTIONS(1128), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1128), - [sym_number_literal] = ACTIONS(1130), - [anon_sym_volatile] = ACTIONS(1128), - [anon_sym_SQUOTE] = ACTIONS(1130), - [anon_sym_extern] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1130), - [anon_sym_struct] = ACTIONS(1128), - [anon_sym_signed] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1128), - [anon_sym_while] = ACTIONS(1128), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1128), - [anon_sym_L_SQUOTE] = ACTIONS(1130), - [anon_sym___attribute__] = ACTIONS(1128), - [anon_sym_sizeof] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(1130), - [anon_sym_union] = ACTIONS(1128), - [anon_sym_unsigned] = ACTIONS(1128), - [anon_sym_short] = ACTIONS(1128), - [anon_sym_do] = ACTIONS(1128), - [sym_preproc_directive] = ACTIONS(1128), - [anon_sym_AMP] = ACTIONS(1130), - [aux_sym_preproc_if_token1] = ACTIONS(1128), - [anon_sym_TILDE] = ACTIONS(1130), - [anon_sym_L_DQUOTE] = ACTIONS(1130), - [anon_sym_LPAREN2] = ACTIONS(1130), - [sym_primitive_type] = ACTIONS(1128), - [anon_sym_for] = ACTIONS(1128), - [anon_sym_break] = ACTIONS(1128), - [anon_sym_BANG] = ACTIONS(1130), - [aux_sym_preproc_include_token1] = ACTIONS(1128), - [anon_sym_DASH] = ACTIONS(1128), - [anon_sym_static] = ACTIONS(1128), - [anon_sym_DQUOTE] = ACTIONS(1130), - [anon_sym_register] = ACTIONS(1128), - [anon_sym_STAR] = ACTIONS(1130), - [anon_sym_if] = ACTIONS(1128), - [anon_sym_switch] = ACTIONS(1128), - [anon_sym_enum] = ACTIONS(1128), - [sym_false] = ACTIONS(1128), - [ts_builtin_sym_end] = ACTIONS(1130), - [anon_sym_return] = ACTIONS(1128), - [anon_sym_continue] = ACTIONS(1128), - [anon_sym_SEMI] = ACTIONS(1130), - [aux_sym_preproc_def_token1] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1128), - [anon_sym_auto] = ACTIONS(1128), - [anon_sym_inline] = ACTIONS(1128), + [ts_builtin_sym_end] = ACTIONS(1065), + [sym_identifier] = ACTIONS(1067), + [aux_sym_preproc_include_token1] = ACTIONS(1067), + [aux_sym_preproc_def_token1] = ACTIONS(1067), + [aux_sym_preproc_if_token1] = ACTIONS(1067), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1067), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1067), + [sym_preproc_directive] = ACTIONS(1067), + [anon_sym_SEMI] = ACTIONS(1065), + [anon_sym_typedef] = ACTIONS(1067), + [anon_sym_extern] = ACTIONS(1067), + [anon_sym___attribute__] = ACTIONS(1067), + [anon_sym_LPAREN2] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1065), + [anon_sym_RBRACE] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_static] = ACTIONS(1067), + [anon_sym_auto] = ACTIONS(1067), + [anon_sym_register] = ACTIONS(1067), + [anon_sym_inline] = ACTIONS(1067), + [anon_sym_const] = ACTIONS(1067), + [anon_sym_volatile] = ACTIONS(1067), + [anon_sym_restrict] = ACTIONS(1067), + [anon_sym__Atomic] = ACTIONS(1067), + [anon_sym_signed] = ACTIONS(1067), + [anon_sym_unsigned] = ACTIONS(1067), + [anon_sym_long] = ACTIONS(1067), + [anon_sym_short] = ACTIONS(1067), + [sym_primitive_type] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_if] = ACTIONS(1067), + [anon_sym_switch] = ACTIONS(1067), + [anon_sym_case] = ACTIONS(1067), + [anon_sym_default] = ACTIONS(1067), + [anon_sym_while] = ACTIONS(1067), + [anon_sym_do] = ACTIONS(1067), + [anon_sym_for] = ACTIONS(1067), + [anon_sym_return] = ACTIONS(1067), + [anon_sym_break] = ACTIONS(1067), + [anon_sym_continue] = ACTIONS(1067), + [anon_sym_goto] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1065), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_PLUS] = ACTIONS(1067), + [anon_sym_DASH_DASH] = ACTIONS(1065), + [anon_sym_PLUS_PLUS] = ACTIONS(1065), + [anon_sym_sizeof] = ACTIONS(1067), + [sym_number_literal] = ACTIONS(1065), + [anon_sym_L_SQUOTE] = ACTIONS(1065), + [anon_sym_SQUOTE] = ACTIONS(1065), + [anon_sym_L_DQUOTE] = ACTIONS(1065), + [anon_sym_DQUOTE] = ACTIONS(1065), + [sym_true] = ACTIONS(1067), + [sym_false] = ACTIONS(1067), + [sym_null] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), }, [216] = { - [aux_sym_declaration_repeat1] = STATE(308), - [anon_sym_SEMI] = ACTIONS(1132), - [anon_sym_COMMA] = ACTIONS(654), + [ts_builtin_sym_end] = ACTIONS(1069), + [sym_identifier] = ACTIONS(1071), + [aux_sym_preproc_include_token1] = ACTIONS(1071), + [aux_sym_preproc_def_token1] = ACTIONS(1071), + [aux_sym_preproc_if_token1] = ACTIONS(1071), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1071), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1071), + [sym_preproc_directive] = ACTIONS(1071), + [anon_sym_SEMI] = ACTIONS(1069), + [anon_sym_typedef] = ACTIONS(1071), + [anon_sym_extern] = ACTIONS(1071), + [anon_sym___attribute__] = ACTIONS(1071), + [anon_sym_LPAREN2] = ACTIONS(1069), + [anon_sym_LBRACE] = ACTIONS(1069), + [anon_sym_RBRACE] = ACTIONS(1069), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_static] = ACTIONS(1071), + [anon_sym_auto] = ACTIONS(1071), + [anon_sym_register] = ACTIONS(1071), + [anon_sym_inline] = ACTIONS(1071), + [anon_sym_const] = ACTIONS(1071), + [anon_sym_volatile] = ACTIONS(1071), + [anon_sym_restrict] = ACTIONS(1071), + [anon_sym__Atomic] = ACTIONS(1071), + [anon_sym_signed] = ACTIONS(1071), + [anon_sym_unsigned] = ACTIONS(1071), + [anon_sym_long] = ACTIONS(1071), + [anon_sym_short] = ACTIONS(1071), + [sym_primitive_type] = ACTIONS(1071), + [anon_sym_enum] = ACTIONS(1071), + [anon_sym_struct] = ACTIONS(1071), + [anon_sym_union] = ACTIONS(1071), + [anon_sym_if] = ACTIONS(1071), + [anon_sym_switch] = ACTIONS(1071), + [anon_sym_case] = ACTIONS(1071), + [anon_sym_default] = ACTIONS(1071), + [anon_sym_while] = ACTIONS(1071), + [anon_sym_do] = ACTIONS(1071), + [anon_sym_for] = ACTIONS(1071), + [anon_sym_return] = ACTIONS(1071), + [anon_sym_break] = ACTIONS(1071), + [anon_sym_continue] = ACTIONS(1071), + [anon_sym_goto] = ACTIONS(1071), + [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(1071), + [anon_sym_DASH_DASH] = ACTIONS(1069), + [anon_sym_PLUS_PLUS] = ACTIONS(1069), + [anon_sym_sizeof] = ACTIONS(1071), + [sym_number_literal] = ACTIONS(1069), + [anon_sym_L_SQUOTE] = ACTIONS(1069), + [anon_sym_SQUOTE] = ACTIONS(1069), + [anon_sym_L_DQUOTE] = ACTIONS(1069), + [anon_sym_DQUOTE] = ACTIONS(1069), + [sym_true] = ACTIONS(1071), + [sym_false] = ACTIONS(1071), + [sym_null] = ACTIONS(1071), [sym_comment] = ACTIONS(3), }, [217] = { - [aux_sym_concatenated_string_repeat1] = STATE(217), - [sym_string_literal] = STATE(217), - [anon_sym_GT_GT] = ACTIONS(1134), - [anon_sym_PERCENT_EQ] = ACTIONS(1136), - [anon_sym_DASH_EQ] = ACTIONS(1136), - [anon_sym_PIPE] = ACTIONS(1134), - [anon_sym_EQ_EQ] = ACTIONS(1136), - [anon_sym_SLASH] = ACTIONS(1134), - [anon_sym_DASH_GT] = ACTIONS(1136), - [anon_sym_LT_LT] = ACTIONS(1134), - [anon_sym_DASH_DASH] = ACTIONS(1136), - [anon_sym_PLUS_EQ] = ACTIONS(1136), - [anon_sym_LT_LT_EQ] = ACTIONS(1136), - [anon_sym_QMARK] = ACTIONS(1136), - [anon_sym_BANG_EQ] = ACTIONS(1136), - [anon_sym_CARET_EQ] = ACTIONS(1136), - [anon_sym_COMMA] = ACTIONS(1136), - [anon_sym_PLUS_PLUS] = ACTIONS(1136), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT_EQ] = ACTIONS(1136), - [anon_sym_GT] = ACTIONS(1134), - [anon_sym_PIPE_EQ] = ACTIONS(1136), - [anon_sym_RPAREN] = ACTIONS(1136), - [anon_sym_RBRACK] = ACTIONS(1136), - [anon_sym_AMP_EQ] = ACTIONS(1136), - [anon_sym_PERCENT] = ACTIONS(1134), - [anon_sym_AMP] = ACTIONS(1134), - [anon_sym_EQ] = ACTIONS(1134), - [anon_sym_L_DQUOTE] = ACTIONS(1138), - [anon_sym_LPAREN2] = ACTIONS(1136), - [anon_sym_GT_EQ] = ACTIONS(1136), - [anon_sym_RBRACE] = ACTIONS(1136), - [anon_sym_COLON] = ACTIONS(1136), - [anon_sym_STAR_EQ] = ACTIONS(1136), - [anon_sym_PIPE_PIPE] = ACTIONS(1136), - [anon_sym_DASH] = ACTIONS(1134), - [anon_sym_DQUOTE] = ACTIONS(1138), - [anon_sym_LT_EQ] = ACTIONS(1136), - [anon_sym_STAR] = ACTIONS(1134), - [anon_sym_SLASH_EQ] = ACTIONS(1136), - [anon_sym_AMP_AMP] = ACTIONS(1136), - [anon_sym_SEMI] = ACTIONS(1136), - [anon_sym_CARET] = ACTIONS(1134), - [anon_sym_PLUS] = ACTIONS(1134), - [anon_sym_DOT] = ACTIONS(1136), - [anon_sym_LT] = ACTIONS(1134), - [anon_sym_LBRACK] = ACTIONS(1136), + [sym_identifier] = ACTIONS(985), + [aux_sym_preproc_include_token1] = ACTIONS(985), + [aux_sym_preproc_def_token1] = ACTIONS(985), + [aux_sym_preproc_if_token1] = ACTIONS(985), + [aux_sym_preproc_if_token2] = ACTIONS(985), + [aux_sym_preproc_ifdef_token1] = ACTIONS(985), + [aux_sym_preproc_ifdef_token2] = ACTIONS(985), + [aux_sym_preproc_else_token1] = ACTIONS(985), + [aux_sym_preproc_elif_token1] = ACTIONS(985), + [sym_preproc_directive] = ACTIONS(985), + [anon_sym_SEMI] = ACTIONS(983), + [anon_sym_typedef] = ACTIONS(985), + [anon_sym_extern] = ACTIONS(985), + [anon_sym___attribute__] = ACTIONS(985), + [anon_sym_LPAREN2] = ACTIONS(983), + [anon_sym_LBRACE] = ACTIONS(983), + [anon_sym_STAR] = ACTIONS(983), + [anon_sym_static] = ACTIONS(985), + [anon_sym_auto] = ACTIONS(985), + [anon_sym_register] = ACTIONS(985), + [anon_sym_inline] = ACTIONS(985), + [anon_sym_const] = ACTIONS(985), + [anon_sym_volatile] = ACTIONS(985), + [anon_sym_restrict] = ACTIONS(985), + [anon_sym__Atomic] = ACTIONS(985), + [anon_sym_signed] = ACTIONS(985), + [anon_sym_unsigned] = ACTIONS(985), + [anon_sym_long] = ACTIONS(985), + [anon_sym_short] = ACTIONS(985), + [sym_primitive_type] = ACTIONS(985), + [anon_sym_enum] = ACTIONS(985), + [anon_sym_struct] = ACTIONS(985), + [anon_sym_union] = ACTIONS(985), + [anon_sym_if] = ACTIONS(985), + [anon_sym_else] = ACTIONS(985), + [anon_sym_switch] = ACTIONS(985), + [anon_sym_while] = ACTIONS(985), + [anon_sym_do] = ACTIONS(985), + [anon_sym_for] = ACTIONS(985), + [anon_sym_return] = ACTIONS(985), + [anon_sym_break] = ACTIONS(985), + [anon_sym_continue] = ACTIONS(985), + [anon_sym_goto] = ACTIONS(985), + [anon_sym_AMP] = ACTIONS(983), + [anon_sym_BANG] = ACTIONS(983), + [anon_sym_TILDE] = ACTIONS(983), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(985), + [anon_sym_DASH_DASH] = ACTIONS(983), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_sizeof] = ACTIONS(985), + [sym_number_literal] = ACTIONS(983), + [anon_sym_L_SQUOTE] = ACTIONS(983), + [anon_sym_SQUOTE] = ACTIONS(983), + [anon_sym_L_DQUOTE] = ACTIONS(983), + [anon_sym_DQUOTE] = ACTIONS(983), + [sym_true] = ACTIONS(985), + [sym_false] = ACTIONS(985), + [sym_null] = ACTIONS(985), + [sym_comment] = ACTIONS(3), }, [218] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(124), - [sym_attribute_specifier] = STATE(124), - [sym_storage_class_specifier] = STATE(124), - [sym_type_qualifier] = STATE(124), - [anon_sym_restrict] = ACTIONS(7), - [anon_sym_COMMA] = ACTIONS(1141), - [anon_sym_static] = ACTIONS(63), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_register] = ACTIONS(63), - [anon_sym_extern] = ACTIONS(63), - [anon_sym_STAR] = ACTIONS(1141), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(7), - [anon_sym_LPAREN2] = ACTIONS(1141), - [anon_sym_COLON] = ACTIONS(1141), - [anon_sym_SEMI] = ACTIONS(1141), - [anon_sym__Atomic] = ACTIONS(7), - [sym_identifier] = ACTIONS(1143), - [anon_sym_auto] = ACTIONS(63), - [anon_sym_RPAREN] = ACTIONS(1141), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(1141), + [sym_type_qualifier] = STATE(846), + [sym__type_specifier] = STATE(878), + [sym_sized_type_specifier] = STATE(878), + [sym_enum_specifier] = STATE(878), + [sym_struct_specifier] = STATE(878), + [sym_union_specifier] = STATE(878), + [sym__expression] = STATE(673), + [sym_comma_expression] = STATE(1220), + [sym_conditional_expression] = STATE(673), + [sym_assignment_expression] = STATE(673), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(673), + [sym_binary_expression] = STATE(673), + [sym_update_expression] = STATE(673), + [sym_cast_expression] = STATE(673), + [sym_type_descriptor] = STATE(1230), + [sym_sizeof_expression] = STATE(673), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(673), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(673), + [sym_concatenated_string] = STATE(673), + [sym_string_literal] = STATE(431), + [sym_macro_type_specifier] = STATE(878), + [aux_sym_type_definition_repeat1] = STATE(846), + [aux_sym_sized_type_specifier_repeat1] = STATE(881), + [sym_identifier] = ACTIONS(1053), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(1055), + [anon_sym_unsigned] = ACTIONS(1055), + [anon_sym_long] = ACTIONS(1055), + [anon_sym_short] = ACTIONS(1055), + [sym_primitive_type] = ACTIONS(1057), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1059), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1061), + [sym_false] = ACTIONS(1061), + [sym_null] = ACTIONS(1061), + [sym_comment] = ACTIONS(3), }, [219] = { - [sym_preproc_def] = STATE(312), - [sym_preproc_function_def] = STATE(312), - [sym_sized_type_specifier] = STATE(130), - [sym_enum_specifier] = STATE(130), - [sym__field_declaration_list_item] = STATE(312), - [sym_field_declaration] = STATE(312), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(312), - [sym_preproc_else_in_field_declaration_list] = STATE(313), - [sym__type_specifier] = STATE(130), - [sym_union_specifier] = STATE(130), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_attribute_specifier] = STATE(43), - [sym_preproc_elif_in_field_declaration_list] = STATE(313), - [sym_type_qualifier] = STATE(43), - [sym_macro_type_specifier] = STATE(130), - [sym_preproc_call] = STATE(312), - [sym_preproc_if_in_field_declaration_list] = STATE(312), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(312), - [sym_struct_specifier] = STATE(130), - [sym__declaration_specifiers] = STATE(888), - [sym_storage_class_specifier] = STATE(43), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1145), - [anon_sym_union] = ACTIONS(37), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(7), - [anon_sym_short] = ACTIONS(27), - [anon_sym_static] = ACTIONS(63), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_register] = ACTIONS(63), - [anon_sym_extern] = ACTIONS(63), - [aux_sym_preproc_else_token1] = ACTIONS(1147), - [anon_sym_struct] = ACTIONS(25), - [sym_preproc_directive] = ACTIONS(1149), - [anon_sym_signed] = ACTIONS(27), - [aux_sym_preproc_if_token1] = ACTIONS(1151), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_long] = ACTIONS(27), - [anon_sym_const] = ACTIONS(7), - [aux_sym_preproc_if_token2] = ACTIONS(1153), + [sym_identifier] = ACTIONS(989), + [aux_sym_preproc_include_token1] = ACTIONS(989), + [aux_sym_preproc_def_token1] = ACTIONS(989), + [aux_sym_preproc_if_token1] = ACTIONS(989), + [aux_sym_preproc_if_token2] = ACTIONS(989), + [aux_sym_preproc_ifdef_token1] = ACTIONS(989), + [aux_sym_preproc_ifdef_token2] = ACTIONS(989), + [aux_sym_preproc_else_token1] = ACTIONS(989), + [aux_sym_preproc_elif_token1] = ACTIONS(989), + [sym_preproc_directive] = ACTIONS(989), + [anon_sym_SEMI] = ACTIONS(987), + [anon_sym_typedef] = ACTIONS(989), + [anon_sym_extern] = ACTIONS(989), + [anon_sym___attribute__] = ACTIONS(989), + [anon_sym_LPAREN2] = ACTIONS(987), + [anon_sym_LBRACE] = ACTIONS(987), + [anon_sym_STAR] = ACTIONS(987), + [anon_sym_static] = ACTIONS(989), + [anon_sym_auto] = ACTIONS(989), + [anon_sym_register] = ACTIONS(989), + [anon_sym_inline] = ACTIONS(989), + [anon_sym_const] = ACTIONS(989), + [anon_sym_volatile] = ACTIONS(989), + [anon_sym_restrict] = ACTIONS(989), + [anon_sym__Atomic] = ACTIONS(989), + [anon_sym_signed] = ACTIONS(989), + [anon_sym_unsigned] = ACTIONS(989), + [anon_sym_long] = ACTIONS(989), + [anon_sym_short] = ACTIONS(989), + [sym_primitive_type] = ACTIONS(989), + [anon_sym_enum] = ACTIONS(989), + [anon_sym_struct] = ACTIONS(989), + [anon_sym_union] = ACTIONS(989), + [anon_sym_if] = ACTIONS(989), + [anon_sym_else] = ACTIONS(989), + [anon_sym_switch] = ACTIONS(989), + [anon_sym_while] = ACTIONS(989), + [anon_sym_do] = ACTIONS(989), + [anon_sym_for] = ACTIONS(989), + [anon_sym_return] = ACTIONS(989), + [anon_sym_break] = ACTIONS(989), + [anon_sym_continue] = ACTIONS(989), + [anon_sym_goto] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(987), + [anon_sym_BANG] = ACTIONS(987), + [anon_sym_TILDE] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(987), + [anon_sym_PLUS_PLUS] = ACTIONS(987), + [anon_sym_sizeof] = ACTIONS(989), + [sym_number_literal] = ACTIONS(987), + [anon_sym_L_SQUOTE] = ACTIONS(987), + [anon_sym_SQUOTE] = ACTIONS(987), + [anon_sym_L_DQUOTE] = ACTIONS(987), + [anon_sym_DQUOTE] = ACTIONS(987), + [sym_true] = ACTIONS(989), + [sym_false] = ACTIONS(989), + [sym_null] = ACTIONS(989), [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1145), - [aux_sym_preproc_elif_token1] = ACTIONS(1155), - [aux_sym_preproc_def_token1] = ACTIONS(1157), - [anon_sym__Atomic] = ACTIONS(7), - [anon_sym_auto] = ACTIONS(63), - [sym_primitive_type] = ACTIONS(348), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(31), - [sym_identifier] = ACTIONS(187), }, [220] = { - [sym_preproc_def] = STATE(315), - [sym_preproc_function_def] = STATE(315), - [sym_sized_type_specifier] = STATE(130), - [sym_enum_specifier] = STATE(130), - [sym__field_declaration_list_item] = STATE(315), - [sym_field_declaration] = STATE(315), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(315), - [sym_preproc_else_in_field_declaration_list] = STATE(316), - [sym__type_specifier] = STATE(130), - [sym_union_specifier] = STATE(130), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_attribute_specifier] = STATE(43), - [sym_preproc_elif_in_field_declaration_list] = STATE(316), - [sym_type_qualifier] = STATE(43), - [sym_macro_type_specifier] = STATE(130), - [sym_preproc_call] = STATE(315), - [sym_preproc_if_in_field_declaration_list] = STATE(315), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(315), - [sym_struct_specifier] = STATE(130), - [sym__declaration_specifiers] = STATE(888), - [sym_storage_class_specifier] = STATE(43), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1145), - [anon_sym_union] = ACTIONS(37), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(7), - [anon_sym_short] = ACTIONS(27), - [anon_sym_static] = ACTIONS(63), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_register] = ACTIONS(63), - [anon_sym_extern] = ACTIONS(63), - [aux_sym_preproc_else_token1] = ACTIONS(1147), - [anon_sym_struct] = ACTIONS(25), - [sym_preproc_directive] = ACTIONS(1149), - [anon_sym_signed] = ACTIONS(27), - [aux_sym_preproc_if_token1] = ACTIONS(1151), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_long] = ACTIONS(27), - [anon_sym_const] = ACTIONS(7), - [aux_sym_preproc_if_token2] = ACTIONS(1159), + [sym_identifier] = ACTIONS(973), + [aux_sym_preproc_include_token1] = ACTIONS(973), + [aux_sym_preproc_def_token1] = ACTIONS(973), + [aux_sym_preproc_if_token1] = ACTIONS(973), + [aux_sym_preproc_if_token2] = ACTIONS(973), + [aux_sym_preproc_ifdef_token1] = ACTIONS(973), + [aux_sym_preproc_ifdef_token2] = ACTIONS(973), + [aux_sym_preproc_else_token1] = ACTIONS(973), + [aux_sym_preproc_elif_token1] = ACTIONS(973), + [sym_preproc_directive] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(971), + [anon_sym_typedef] = ACTIONS(973), + [anon_sym_extern] = ACTIONS(973), + [anon_sym___attribute__] = ACTIONS(973), + [anon_sym_LPAREN2] = ACTIONS(971), + [anon_sym_LBRACE] = ACTIONS(971), + [anon_sym_STAR] = ACTIONS(971), + [anon_sym_static] = ACTIONS(973), + [anon_sym_auto] = ACTIONS(973), + [anon_sym_register] = ACTIONS(973), + [anon_sym_inline] = ACTIONS(973), + [anon_sym_const] = ACTIONS(973), + [anon_sym_volatile] = ACTIONS(973), + [anon_sym_restrict] = ACTIONS(973), + [anon_sym__Atomic] = ACTIONS(973), + [anon_sym_signed] = ACTIONS(973), + [anon_sym_unsigned] = ACTIONS(973), + [anon_sym_long] = ACTIONS(973), + [anon_sym_short] = ACTIONS(973), + [sym_primitive_type] = ACTIONS(973), + [anon_sym_enum] = ACTIONS(973), + [anon_sym_struct] = ACTIONS(973), + [anon_sym_union] = ACTIONS(973), + [anon_sym_if] = ACTIONS(973), + [anon_sym_else] = ACTIONS(973), + [anon_sym_switch] = ACTIONS(973), + [anon_sym_while] = ACTIONS(973), + [anon_sym_do] = ACTIONS(973), + [anon_sym_for] = ACTIONS(973), + [anon_sym_return] = ACTIONS(973), + [anon_sym_break] = ACTIONS(973), + [anon_sym_continue] = ACTIONS(973), + [anon_sym_goto] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(971), + [anon_sym_BANG] = ACTIONS(971), + [anon_sym_TILDE] = ACTIONS(971), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_PLUS] = ACTIONS(973), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_sizeof] = ACTIONS(973), + [sym_number_literal] = ACTIONS(971), + [anon_sym_L_SQUOTE] = ACTIONS(971), + [anon_sym_SQUOTE] = ACTIONS(971), + [anon_sym_L_DQUOTE] = ACTIONS(971), + [anon_sym_DQUOTE] = ACTIONS(971), + [sym_true] = ACTIONS(973), + [sym_false] = ACTIONS(973), + [sym_null] = ACTIONS(973), [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1145), - [aux_sym_preproc_elif_token1] = ACTIONS(1155), - [aux_sym_preproc_def_token1] = ACTIONS(1157), - [anon_sym__Atomic] = ACTIONS(7), - [anon_sym_auto] = ACTIONS(63), - [sym_primitive_type] = ACTIONS(348), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(31), - [sym_identifier] = ACTIONS(187), }, [221] = { - [anon_sym_restrict] = ACTIONS(1161), - [anon_sym_COMMA] = ACTIONS(1163), - [anon_sym_static] = ACTIONS(1161), - [anon_sym_volatile] = ACTIONS(1161), - [anon_sym_register] = ACTIONS(1161), - [anon_sym_extern] = ACTIONS(1161), - [anon_sym_STAR] = ACTIONS(1163), + [sym_identifier] = ACTIONS(993), + [aux_sym_preproc_include_token1] = ACTIONS(993), + [aux_sym_preproc_def_token1] = ACTIONS(993), + [aux_sym_preproc_if_token1] = ACTIONS(993), + [aux_sym_preproc_if_token2] = ACTIONS(993), + [aux_sym_preproc_ifdef_token1] = ACTIONS(993), + [aux_sym_preproc_ifdef_token2] = ACTIONS(993), + [aux_sym_preproc_else_token1] = ACTIONS(993), + [aux_sym_preproc_elif_token1] = ACTIONS(993), + [sym_preproc_directive] = ACTIONS(993), + [anon_sym_SEMI] = ACTIONS(991), + [anon_sym_typedef] = ACTIONS(993), + [anon_sym_extern] = ACTIONS(993), + [anon_sym___attribute__] = ACTIONS(993), + [anon_sym_LPAREN2] = ACTIONS(991), + [anon_sym_LBRACE] = ACTIONS(991), + [anon_sym_STAR] = ACTIONS(991), + [anon_sym_static] = ACTIONS(993), + [anon_sym_auto] = ACTIONS(993), + [anon_sym_register] = ACTIONS(993), + [anon_sym_inline] = ACTIONS(993), + [anon_sym_const] = ACTIONS(993), + [anon_sym_volatile] = ACTIONS(993), + [anon_sym_restrict] = ACTIONS(993), + [anon_sym__Atomic] = ACTIONS(993), + [anon_sym_signed] = ACTIONS(993), + [anon_sym_unsigned] = ACTIONS(993), + [anon_sym_long] = ACTIONS(993), + [anon_sym_short] = ACTIONS(993), + [sym_primitive_type] = ACTIONS(993), + [anon_sym_enum] = ACTIONS(993), + [anon_sym_struct] = ACTIONS(993), + [anon_sym_union] = ACTIONS(993), + [anon_sym_if] = ACTIONS(993), + [anon_sym_else] = ACTIONS(993), + [anon_sym_switch] = ACTIONS(993), + [anon_sym_while] = ACTIONS(993), + [anon_sym_do] = ACTIONS(993), + [anon_sym_for] = ACTIONS(993), + [anon_sym_return] = ACTIONS(993), + [anon_sym_break] = ACTIONS(993), + [anon_sym_continue] = ACTIONS(993), + [anon_sym_goto] = ACTIONS(993), + [anon_sym_AMP] = ACTIONS(991), + [anon_sym_BANG] = ACTIONS(991), + [anon_sym_TILDE] = ACTIONS(991), + [anon_sym_DASH] = ACTIONS(993), + [anon_sym_PLUS] = ACTIONS(993), + [anon_sym_DASH_DASH] = ACTIONS(991), + [anon_sym_PLUS_PLUS] = ACTIONS(991), + [anon_sym_sizeof] = ACTIONS(993), + [sym_number_literal] = ACTIONS(991), + [anon_sym_L_SQUOTE] = ACTIONS(991), + [anon_sym_SQUOTE] = ACTIONS(991), + [anon_sym_L_DQUOTE] = ACTIONS(991), + [anon_sym_DQUOTE] = ACTIONS(991), + [sym_true] = ACTIONS(993), + [sym_false] = ACTIONS(993), + [sym_null] = ACTIONS(993), [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(1161), - [anon_sym_LPAREN2] = ACTIONS(1163), - [anon_sym_COLON] = ACTIONS(1163), - [anon_sym_SEMI] = ACTIONS(1163), - [anon_sym__Atomic] = ACTIONS(1161), - [sym_identifier] = ACTIONS(1161), - [anon_sym_auto] = ACTIONS(1161), - [anon_sym_RPAREN] = ACTIONS(1163), - [anon_sym_inline] = ACTIONS(1161), - [anon_sym___attribute__] = ACTIONS(1161), - [anon_sym_LBRACK] = ACTIONS(1163), }, [222] = { - [sym_preproc_def] = STATE(222), - [sym_preproc_function_def] = STATE(222), - [sym_sized_type_specifier] = STATE(130), - [sym_enum_specifier] = STATE(130), - [sym__field_declaration_list_item] = STATE(222), - [sym_field_declaration] = STATE(222), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(222), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(130), - [sym_union_specifier] = STATE(130), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_attribute_specifier] = STATE(43), - [sym_macro_type_specifier] = STATE(130), - [sym_preproc_call] = STATE(222), - [sym_preproc_if_in_field_declaration_list] = STATE(222), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(222), - [sym_struct_specifier] = STATE(130), - [sym__declaration_specifiers] = STATE(131), - [sym_storage_class_specifier] = STATE(43), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1165), - [anon_sym_union] = ACTIONS(1168), - [anon_sym_unsigned] = ACTIONS(1171), - [anon_sym_restrict] = ACTIONS(1174), - [anon_sym_short] = ACTIONS(1171), - [anon_sym_static] = ACTIONS(1177), - [anon_sym_volatile] = ACTIONS(1174), - [anon_sym_register] = ACTIONS(1177), - [anon_sym_extern] = ACTIONS(1177), - [anon_sym_struct] = ACTIONS(1180), - [sym_preproc_directive] = ACTIONS(1183), - [anon_sym_signed] = ACTIONS(1171), - [aux_sym_preproc_if_token1] = ACTIONS(1186), - [anon_sym_long] = ACTIONS(1171), - [anon_sym_enum] = ACTIONS(1189), - [anon_sym_const] = ACTIONS(1174), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(1192), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1165), - [aux_sym_preproc_def_token1] = ACTIONS(1194), - [anon_sym__Atomic] = ACTIONS(1174), - [anon_sym_auto] = ACTIONS(1177), - [sym_primitive_type] = ACTIONS(1197), - [anon_sym_inline] = ACTIONS(1177), - [anon_sym___attribute__] = ACTIONS(1200), - [sym_identifier] = ACTIONS(1203), + [ts_builtin_sym_end] = ACTIONS(1073), + [sym_identifier] = ACTIONS(1075), + [aux_sym_preproc_include_token1] = ACTIONS(1075), + [aux_sym_preproc_def_token1] = ACTIONS(1075), + [aux_sym_preproc_if_token1] = ACTIONS(1075), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1075), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1075), + [sym_preproc_directive] = ACTIONS(1075), + [anon_sym_SEMI] = ACTIONS(1073), + [anon_sym_typedef] = ACTIONS(1075), + [anon_sym_extern] = ACTIONS(1075), + [anon_sym___attribute__] = ACTIONS(1075), + [anon_sym_LPAREN2] = ACTIONS(1073), + [anon_sym_LBRACE] = ACTIONS(1073), + [anon_sym_RBRACE] = ACTIONS(1073), + [anon_sym_STAR] = ACTIONS(1073), + [anon_sym_static] = ACTIONS(1075), + [anon_sym_auto] = ACTIONS(1075), + [anon_sym_register] = ACTIONS(1075), + [anon_sym_inline] = ACTIONS(1075), + [anon_sym_const] = ACTIONS(1075), + [anon_sym_volatile] = ACTIONS(1075), + [anon_sym_restrict] = ACTIONS(1075), + [anon_sym__Atomic] = ACTIONS(1075), + [anon_sym_signed] = ACTIONS(1075), + [anon_sym_unsigned] = ACTIONS(1075), + [anon_sym_long] = ACTIONS(1075), + [anon_sym_short] = ACTIONS(1075), + [sym_primitive_type] = ACTIONS(1075), + [anon_sym_enum] = ACTIONS(1075), + [anon_sym_struct] = ACTIONS(1075), + [anon_sym_union] = ACTIONS(1075), + [anon_sym_if] = ACTIONS(1075), + [anon_sym_switch] = ACTIONS(1075), + [anon_sym_case] = ACTIONS(1075), + [anon_sym_default] = ACTIONS(1075), + [anon_sym_while] = ACTIONS(1075), + [anon_sym_do] = ACTIONS(1075), + [anon_sym_for] = ACTIONS(1075), + [anon_sym_return] = ACTIONS(1075), + [anon_sym_break] = ACTIONS(1075), + [anon_sym_continue] = ACTIONS(1075), + [anon_sym_goto] = ACTIONS(1075), + [anon_sym_AMP] = ACTIONS(1073), + [anon_sym_BANG] = ACTIONS(1073), + [anon_sym_TILDE] = ACTIONS(1073), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_PLUS] = ACTIONS(1075), + [anon_sym_DASH_DASH] = ACTIONS(1073), + [anon_sym_PLUS_PLUS] = ACTIONS(1073), + [anon_sym_sizeof] = ACTIONS(1075), + [sym_number_literal] = ACTIONS(1073), + [anon_sym_L_SQUOTE] = ACTIONS(1073), + [anon_sym_SQUOTE] = ACTIONS(1073), + [anon_sym_L_DQUOTE] = ACTIONS(1073), + [anon_sym_DQUOTE] = ACTIONS(1073), + [sym_true] = ACTIONS(1075), + [sym_false] = ACTIONS(1075), + [sym_null] = ACTIONS(1075), + [sym_comment] = ACTIONS(3), }, [223] = { - [sym_function_field_declarator] = STATE(318), - [aux_sym_type_definition_repeat1] = STATE(317), - [sym_pointer_field_declarator] = STATE(318), - [sym_parenthesized_field_declarator] = STATE(318), - [sym__field_declarator] = STATE(318), - [sym_array_field_declarator] = STATE(318), - [sym_type_qualifier] = STATE(317), - [anon_sym_const] = ACTIONS(7), - [anon_sym_LPAREN2] = ACTIONS(808), - [anon_sym_restrict] = ACTIONS(7), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym__Atomic] = ACTIONS(7), - [anon_sym_STAR] = ACTIONS(806), - [sym_identifier] = ACTIONS(1206), + [sym_identifier] = ACTIONS(957), + [aux_sym_preproc_include_token1] = ACTIONS(957), + [aux_sym_preproc_def_token1] = ACTIONS(957), + [aux_sym_preproc_if_token1] = ACTIONS(957), + [aux_sym_preproc_if_token2] = ACTIONS(957), + [aux_sym_preproc_ifdef_token1] = ACTIONS(957), + [aux_sym_preproc_ifdef_token2] = ACTIONS(957), + [aux_sym_preproc_else_token1] = ACTIONS(957), + [aux_sym_preproc_elif_token1] = ACTIONS(957), + [sym_preproc_directive] = ACTIONS(957), + [anon_sym_SEMI] = ACTIONS(955), + [anon_sym_typedef] = ACTIONS(957), + [anon_sym_extern] = ACTIONS(957), + [anon_sym___attribute__] = ACTIONS(957), + [anon_sym_LPAREN2] = ACTIONS(955), + [anon_sym_LBRACE] = ACTIONS(955), + [anon_sym_STAR] = ACTIONS(955), + [anon_sym_static] = ACTIONS(957), + [anon_sym_auto] = ACTIONS(957), + [anon_sym_register] = ACTIONS(957), + [anon_sym_inline] = ACTIONS(957), + [anon_sym_const] = ACTIONS(957), + [anon_sym_volatile] = ACTIONS(957), + [anon_sym_restrict] = ACTIONS(957), + [anon_sym__Atomic] = ACTIONS(957), + [anon_sym_signed] = ACTIONS(957), + [anon_sym_unsigned] = ACTIONS(957), + [anon_sym_long] = ACTIONS(957), + [anon_sym_short] = ACTIONS(957), + [sym_primitive_type] = ACTIONS(957), + [anon_sym_enum] = ACTIONS(957), + [anon_sym_struct] = ACTIONS(957), + [anon_sym_union] = ACTIONS(957), + [anon_sym_if] = ACTIONS(957), + [anon_sym_else] = ACTIONS(957), + [anon_sym_switch] = ACTIONS(957), + [anon_sym_while] = ACTIONS(957), + [anon_sym_do] = ACTIONS(957), + [anon_sym_for] = ACTIONS(957), + [anon_sym_return] = ACTIONS(957), + [anon_sym_break] = ACTIONS(957), + [anon_sym_continue] = ACTIONS(957), + [anon_sym_goto] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(955), + [anon_sym_BANG] = ACTIONS(955), + [anon_sym_TILDE] = ACTIONS(955), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_DASH_DASH] = ACTIONS(955), + [anon_sym_PLUS_PLUS] = ACTIONS(955), + [anon_sym_sizeof] = ACTIONS(957), + [sym_number_literal] = ACTIONS(955), + [anon_sym_L_SQUOTE] = ACTIONS(955), + [anon_sym_SQUOTE] = ACTIONS(955), + [anon_sym_L_DQUOTE] = ACTIONS(955), + [anon_sym_DQUOTE] = ACTIONS(955), + [sym_true] = ACTIONS(957), + [sym_false] = ACTIONS(957), + [sym_null] = ACTIONS(957), [sym_comment] = ACTIONS(3), }, [224] = { + [sym_identifier] = ACTIONS(933), + [aux_sym_preproc_include_token1] = ACTIONS(933), + [aux_sym_preproc_def_token1] = ACTIONS(933), + [aux_sym_preproc_if_token1] = ACTIONS(933), + [aux_sym_preproc_if_token2] = ACTIONS(933), + [aux_sym_preproc_ifdef_token1] = ACTIONS(933), + [aux_sym_preproc_ifdef_token2] = ACTIONS(933), + [aux_sym_preproc_else_token1] = ACTIONS(933), + [aux_sym_preproc_elif_token1] = ACTIONS(933), + [sym_preproc_directive] = ACTIONS(933), + [anon_sym_SEMI] = ACTIONS(931), + [anon_sym_typedef] = ACTIONS(933), + [anon_sym_extern] = ACTIONS(933), + [anon_sym___attribute__] = ACTIONS(933), + [anon_sym_LPAREN2] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(931), + [anon_sym_STAR] = ACTIONS(931), + [anon_sym_static] = ACTIONS(933), + [anon_sym_auto] = ACTIONS(933), + [anon_sym_register] = ACTIONS(933), + [anon_sym_inline] = ACTIONS(933), + [anon_sym_const] = ACTIONS(933), + [anon_sym_volatile] = ACTIONS(933), + [anon_sym_restrict] = ACTIONS(933), + [anon_sym__Atomic] = ACTIONS(933), + [anon_sym_signed] = ACTIONS(933), + [anon_sym_unsigned] = ACTIONS(933), + [anon_sym_long] = ACTIONS(933), + [anon_sym_short] = ACTIONS(933), + [sym_primitive_type] = ACTIONS(933), + [anon_sym_enum] = ACTIONS(933), + [anon_sym_struct] = ACTIONS(933), + [anon_sym_union] = ACTIONS(933), + [anon_sym_if] = ACTIONS(933), + [anon_sym_else] = ACTIONS(933), + [anon_sym_switch] = ACTIONS(933), + [anon_sym_while] = ACTIONS(933), + [anon_sym_do] = ACTIONS(933), + [anon_sym_for] = ACTIONS(933), + [anon_sym_return] = ACTIONS(933), + [anon_sym_break] = ACTIONS(933), + [anon_sym_continue] = ACTIONS(933), + [anon_sym_goto] = ACTIONS(933), + [anon_sym_AMP] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_TILDE] = ACTIONS(931), + [anon_sym_DASH] = ACTIONS(933), + [anon_sym_PLUS] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_sizeof] = ACTIONS(933), + [sym_number_literal] = ACTIONS(931), + [anon_sym_L_SQUOTE] = ACTIONS(931), + [anon_sym_SQUOTE] = ACTIONS(931), + [anon_sym_L_DQUOTE] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(931), + [sym_true] = ACTIONS(933), + [sym_false] = ACTIONS(933), + [sym_null] = ACTIONS(933), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(1208), - [anon_sym_COMMA] = ACTIONS(1208), - [anon_sym_COLON] = ACTIONS(1208), - [anon_sym_SEMI] = ACTIONS(1208), - [anon_sym_RPAREN] = ACTIONS(1208), - [anon_sym_LBRACK] = ACTIONS(1208), }, [225] = { - [sym_function_field_declarator] = STATE(319), - [sym_pointer_field_declarator] = STATE(319), - [sym_parenthesized_field_declarator] = STATE(319), - [sym_array_field_declarator] = STATE(319), - [sym__field_declarator] = STATE(319), - [anon_sym_STAR] = ACTIONS(806), - [anon_sym_LPAREN2] = ACTIONS(808), - [sym_identifier] = ACTIONS(810), + [sym_identifier] = ACTIONS(969), + [aux_sym_preproc_include_token1] = ACTIONS(969), + [aux_sym_preproc_def_token1] = ACTIONS(969), + [aux_sym_preproc_if_token1] = ACTIONS(969), + [aux_sym_preproc_if_token2] = ACTIONS(969), + [aux_sym_preproc_ifdef_token1] = ACTIONS(969), + [aux_sym_preproc_ifdef_token2] = ACTIONS(969), + [aux_sym_preproc_else_token1] = ACTIONS(969), + [aux_sym_preproc_elif_token1] = ACTIONS(969), + [sym_preproc_directive] = ACTIONS(969), + [anon_sym_SEMI] = ACTIONS(967), + [anon_sym_typedef] = ACTIONS(969), + [anon_sym_extern] = ACTIONS(969), + [anon_sym___attribute__] = ACTIONS(969), + [anon_sym_LPAREN2] = ACTIONS(967), + [anon_sym_LBRACE] = ACTIONS(967), + [anon_sym_STAR] = ACTIONS(967), + [anon_sym_static] = ACTIONS(969), + [anon_sym_auto] = ACTIONS(969), + [anon_sym_register] = ACTIONS(969), + [anon_sym_inline] = ACTIONS(969), + [anon_sym_const] = ACTIONS(969), + [anon_sym_volatile] = ACTIONS(969), + [anon_sym_restrict] = ACTIONS(969), + [anon_sym__Atomic] = ACTIONS(969), + [anon_sym_signed] = ACTIONS(969), + [anon_sym_unsigned] = ACTIONS(969), + [anon_sym_long] = ACTIONS(969), + [anon_sym_short] = ACTIONS(969), + [sym_primitive_type] = ACTIONS(969), + [anon_sym_enum] = ACTIONS(969), + [anon_sym_struct] = ACTIONS(969), + [anon_sym_union] = ACTIONS(969), + [anon_sym_if] = ACTIONS(969), + [anon_sym_else] = ACTIONS(969), + [anon_sym_switch] = ACTIONS(969), + [anon_sym_while] = ACTIONS(969), + [anon_sym_do] = ACTIONS(969), + [anon_sym_for] = ACTIONS(969), + [anon_sym_return] = ACTIONS(969), + [anon_sym_break] = ACTIONS(969), + [anon_sym_continue] = ACTIONS(969), + [anon_sym_goto] = ACTIONS(969), + [anon_sym_AMP] = ACTIONS(967), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH_DASH] = ACTIONS(967), + [anon_sym_PLUS_PLUS] = ACTIONS(967), + [anon_sym_sizeof] = ACTIONS(969), + [sym_number_literal] = ACTIONS(967), + [anon_sym_L_SQUOTE] = ACTIONS(967), + [anon_sym_SQUOTE] = ACTIONS(967), + [anon_sym_L_DQUOTE] = ACTIONS(967), + [anon_sym_DQUOTE] = ACTIONS(967), + [sym_true] = ACTIONS(969), + [sym_false] = ACTIONS(969), + [sym_null] = ACTIONS(969), [sym_comment] = ACTIONS(3), }, [226] = { - [sym_char_literal] = STATE(320), - [sym__expression] = STATE(320), - [sym_binary_expression] = STATE(320), - [sym_update_expression] = STATE(320), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(320), - [sym_sizeof_expression] = STATE(320), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(320), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(320), - [sym_assignment_expression] = STATE(320), - [sym_cast_expression] = STATE(320), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(320), - [anon_sym_BANG] = ACTIONS(47), - [sym_true] = ACTIONS(1210), - [sym_null] = ACTIONS(1210), - [sym_number_literal] = ACTIONS(1212), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(61), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_AMP] = ACTIONS(43), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(1210), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_identifier] = ACTIONS(965), + [aux_sym_preproc_include_token1] = ACTIONS(965), + [aux_sym_preproc_def_token1] = ACTIONS(965), + [aux_sym_preproc_if_token1] = ACTIONS(965), + [aux_sym_preproc_if_token2] = ACTIONS(965), + [aux_sym_preproc_ifdef_token1] = ACTIONS(965), + [aux_sym_preproc_ifdef_token2] = ACTIONS(965), + [aux_sym_preproc_else_token1] = ACTIONS(965), + [aux_sym_preproc_elif_token1] = ACTIONS(965), + [sym_preproc_directive] = ACTIONS(965), + [anon_sym_SEMI] = ACTIONS(963), + [anon_sym_typedef] = ACTIONS(965), + [anon_sym_extern] = ACTIONS(965), + [anon_sym___attribute__] = ACTIONS(965), + [anon_sym_LPAREN2] = ACTIONS(963), + [anon_sym_LBRACE] = ACTIONS(963), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_static] = ACTIONS(965), + [anon_sym_auto] = ACTIONS(965), + [anon_sym_register] = ACTIONS(965), + [anon_sym_inline] = ACTIONS(965), + [anon_sym_const] = ACTIONS(965), + [anon_sym_volatile] = ACTIONS(965), + [anon_sym_restrict] = ACTIONS(965), + [anon_sym__Atomic] = ACTIONS(965), + [anon_sym_signed] = ACTIONS(965), + [anon_sym_unsigned] = ACTIONS(965), + [anon_sym_long] = ACTIONS(965), + [anon_sym_short] = ACTIONS(965), + [sym_primitive_type] = ACTIONS(965), + [anon_sym_enum] = ACTIONS(965), + [anon_sym_struct] = ACTIONS(965), + [anon_sym_union] = ACTIONS(965), + [anon_sym_if] = ACTIONS(965), + [anon_sym_else] = ACTIONS(965), + [anon_sym_switch] = ACTIONS(965), + [anon_sym_while] = ACTIONS(965), + [anon_sym_do] = ACTIONS(965), + [anon_sym_for] = ACTIONS(965), + [anon_sym_return] = ACTIONS(965), + [anon_sym_break] = ACTIONS(965), + [anon_sym_continue] = ACTIONS(965), + [anon_sym_goto] = ACTIONS(965), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(963), + [anon_sym_TILDE] = ACTIONS(963), + [anon_sym_DASH] = ACTIONS(965), + [anon_sym_PLUS] = ACTIONS(965), + [anon_sym_DASH_DASH] = ACTIONS(963), + [anon_sym_PLUS_PLUS] = ACTIONS(963), + [anon_sym_sizeof] = ACTIONS(965), + [sym_number_literal] = ACTIONS(963), + [anon_sym_L_SQUOTE] = ACTIONS(963), + [anon_sym_SQUOTE] = ACTIONS(963), + [anon_sym_L_DQUOTE] = ACTIONS(963), + [anon_sym_DQUOTE] = ACTIONS(963), + [sym_true] = ACTIONS(965), + [sym_false] = ACTIONS(965), + [sym_null] = ACTIONS(965), + [sym_comment] = ACTIONS(3), }, [227] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1214), - [anon_sym_union] = ACTIONS(1214), - [anon_sym_unsigned] = ACTIONS(1214), - [anon_sym_restrict] = ACTIONS(1214), - [anon_sym_short] = ACTIONS(1214), - [anon_sym_static] = ACTIONS(1214), - [anon_sym_volatile] = ACTIONS(1214), - [anon_sym_register] = ACTIONS(1214), - [anon_sym_extern] = ACTIONS(1214), - [anon_sym_struct] = ACTIONS(1214), - [sym_preproc_directive] = ACTIONS(1214), - [anon_sym_signed] = ACTIONS(1214), - [aux_sym_preproc_if_token1] = ACTIONS(1214), - [anon_sym_long] = ACTIONS(1214), - [anon_sym_enum] = ACTIONS(1214), - [anon_sym_const] = ACTIONS(1214), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(1216), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1214), - [aux_sym_preproc_def_token1] = ACTIONS(1214), - [anon_sym__Atomic] = ACTIONS(1214), - [anon_sym_auto] = ACTIONS(1214), - [sym_primitive_type] = ACTIONS(1214), - [anon_sym_inline] = ACTIONS(1214), - [anon_sym___attribute__] = ACTIONS(1214), - [sym_identifier] = ACTIONS(1214), + [sym_identifier] = ACTIONS(961), + [aux_sym_preproc_include_token1] = ACTIONS(961), + [aux_sym_preproc_def_token1] = ACTIONS(961), + [aux_sym_preproc_if_token1] = ACTIONS(961), + [aux_sym_preproc_if_token2] = ACTIONS(961), + [aux_sym_preproc_ifdef_token1] = ACTIONS(961), + [aux_sym_preproc_ifdef_token2] = ACTIONS(961), + [aux_sym_preproc_else_token1] = ACTIONS(961), + [aux_sym_preproc_elif_token1] = ACTIONS(961), + [sym_preproc_directive] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(959), + [anon_sym_typedef] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(959), + [anon_sym_LBRACE] = ACTIONS(959), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_static] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [sym_primitive_type] = ACTIONS(961), + [anon_sym_enum] = ACTIONS(961), + [anon_sym_struct] = ACTIONS(961), + [anon_sym_union] = ACTIONS(961), + [anon_sym_if] = ACTIONS(961), + [anon_sym_else] = ACTIONS(961), + [anon_sym_switch] = ACTIONS(961), + [anon_sym_while] = ACTIONS(961), + [anon_sym_do] = ACTIONS(961), + [anon_sym_for] = ACTIONS(961), + [anon_sym_return] = ACTIONS(961), + [anon_sym_break] = ACTIONS(961), + [anon_sym_continue] = ACTIONS(961), + [anon_sym_goto] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(959), + [anon_sym_BANG] = ACTIONS(959), + [anon_sym_TILDE] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(959), + [anon_sym_sizeof] = ACTIONS(961), + [sym_number_literal] = ACTIONS(959), + [anon_sym_L_SQUOTE] = ACTIONS(959), + [anon_sym_SQUOTE] = ACTIONS(959), + [anon_sym_L_DQUOTE] = ACTIONS(959), + [anon_sym_DQUOTE] = ACTIONS(959), + [sym_true] = ACTIONS(961), + [sym_false] = ACTIONS(961), + [sym_null] = ACTIONS(961), + [sym_comment] = ACTIONS(3), }, [228] = { + [sym_identifier] = ACTIONS(949), + [aux_sym_preproc_include_token1] = ACTIONS(949), + [aux_sym_preproc_def_token1] = ACTIONS(949), + [aux_sym_preproc_if_token1] = ACTIONS(949), + [aux_sym_preproc_if_token2] = ACTIONS(949), + [aux_sym_preproc_ifdef_token1] = ACTIONS(949), + [aux_sym_preproc_ifdef_token2] = ACTIONS(949), + [aux_sym_preproc_else_token1] = ACTIONS(949), + [aux_sym_preproc_elif_token1] = ACTIONS(949), + [sym_preproc_directive] = ACTIONS(949), + [anon_sym_SEMI] = ACTIONS(947), + [anon_sym_typedef] = ACTIONS(949), + [anon_sym_extern] = ACTIONS(949), + [anon_sym___attribute__] = ACTIONS(949), + [anon_sym_LPAREN2] = ACTIONS(947), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_STAR] = ACTIONS(947), + [anon_sym_static] = ACTIONS(949), + [anon_sym_auto] = ACTIONS(949), + [anon_sym_register] = ACTIONS(949), + [anon_sym_inline] = ACTIONS(949), + [anon_sym_const] = ACTIONS(949), + [anon_sym_volatile] = ACTIONS(949), + [anon_sym_restrict] = ACTIONS(949), + [anon_sym__Atomic] = ACTIONS(949), + [anon_sym_signed] = ACTIONS(949), + [anon_sym_unsigned] = ACTIONS(949), + [anon_sym_long] = ACTIONS(949), + [anon_sym_short] = ACTIONS(949), + [sym_primitive_type] = ACTIONS(949), + [anon_sym_enum] = ACTIONS(949), + [anon_sym_struct] = ACTIONS(949), + [anon_sym_union] = ACTIONS(949), + [anon_sym_if] = ACTIONS(949), + [anon_sym_else] = ACTIONS(949), + [anon_sym_switch] = ACTIONS(949), + [anon_sym_while] = ACTIONS(949), + [anon_sym_do] = ACTIONS(949), + [anon_sym_for] = ACTIONS(949), + [anon_sym_return] = ACTIONS(949), + [anon_sym_break] = ACTIONS(949), + [anon_sym_continue] = ACTIONS(949), + [anon_sym_goto] = ACTIONS(949), + [anon_sym_AMP] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_TILDE] = ACTIONS(947), + [anon_sym_DASH] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(949), + [anon_sym_DASH_DASH] = ACTIONS(947), + [anon_sym_PLUS_PLUS] = ACTIONS(947), + [anon_sym_sizeof] = ACTIONS(949), + [sym_number_literal] = ACTIONS(947), + [anon_sym_L_SQUOTE] = ACTIONS(947), + [anon_sym_SQUOTE] = ACTIONS(947), + [anon_sym_L_DQUOTE] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(947), + [sym_true] = ACTIONS(949), + [sym_false] = ACTIONS(949), + [sym_null] = ACTIONS(949), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1218), }, [229] = { - [sym_bitfield_clause] = STATE(325), - [aux_sym_field_declaration_repeat1] = STATE(326), - [sym_parameter_list] = STATE(327), - [anon_sym_LBRACK] = ACTIONS(1220), + [sym_identifier] = ACTIONS(953), + [aux_sym_preproc_include_token1] = ACTIONS(953), + [aux_sym_preproc_def_token1] = ACTIONS(953), + [aux_sym_preproc_if_token1] = ACTIONS(953), + [aux_sym_preproc_if_token2] = ACTIONS(953), + [aux_sym_preproc_ifdef_token1] = ACTIONS(953), + [aux_sym_preproc_ifdef_token2] = ACTIONS(953), + [aux_sym_preproc_else_token1] = ACTIONS(953), + [aux_sym_preproc_elif_token1] = ACTIONS(953), + [sym_preproc_directive] = ACTIONS(953), + [anon_sym_SEMI] = ACTIONS(951), + [anon_sym_typedef] = ACTIONS(953), + [anon_sym_extern] = ACTIONS(953), + [anon_sym___attribute__] = ACTIONS(953), + [anon_sym_LPAREN2] = ACTIONS(951), + [anon_sym_LBRACE] = ACTIONS(951), + [anon_sym_STAR] = ACTIONS(951), + [anon_sym_static] = ACTIONS(953), + [anon_sym_auto] = ACTIONS(953), + [anon_sym_register] = ACTIONS(953), + [anon_sym_inline] = ACTIONS(953), + [anon_sym_const] = ACTIONS(953), + [anon_sym_volatile] = ACTIONS(953), + [anon_sym_restrict] = ACTIONS(953), + [anon_sym__Atomic] = ACTIONS(953), + [anon_sym_signed] = ACTIONS(953), + [anon_sym_unsigned] = ACTIONS(953), + [anon_sym_long] = ACTIONS(953), + [anon_sym_short] = ACTIONS(953), + [sym_primitive_type] = ACTIONS(953), + [anon_sym_enum] = ACTIONS(953), + [anon_sym_struct] = ACTIONS(953), + [anon_sym_union] = ACTIONS(953), + [anon_sym_if] = ACTIONS(953), + [anon_sym_else] = ACTIONS(953), + [anon_sym_switch] = ACTIONS(953), + [anon_sym_while] = ACTIONS(953), + [anon_sym_do] = ACTIONS(953), + [anon_sym_for] = ACTIONS(953), + [anon_sym_return] = ACTIONS(953), + [anon_sym_break] = ACTIONS(953), + [anon_sym_continue] = ACTIONS(953), + [anon_sym_goto] = ACTIONS(953), + [anon_sym_AMP] = ACTIONS(951), + [anon_sym_BANG] = ACTIONS(951), + [anon_sym_TILDE] = ACTIONS(951), + [anon_sym_DASH] = ACTIONS(953), + [anon_sym_PLUS] = ACTIONS(953), + [anon_sym_DASH_DASH] = ACTIONS(951), + [anon_sym_PLUS_PLUS] = ACTIONS(951), + [anon_sym_sizeof] = ACTIONS(953), + [sym_number_literal] = ACTIONS(951), + [anon_sym_L_SQUOTE] = ACTIONS(951), + [anon_sym_SQUOTE] = ACTIONS(951), + [anon_sym_L_DQUOTE] = ACTIONS(951), + [anon_sym_DQUOTE] = ACTIONS(951), + [sym_true] = ACTIONS(953), + [sym_false] = ACTIONS(953), + [sym_null] = ACTIONS(953), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(652), - [anon_sym_COMMA] = ACTIONS(1222), - [anon_sym_COLON] = ACTIONS(812), - [anon_sym_SEMI] = ACTIONS(1224), }, [230] = { - [anon_sym_case] = ACTIONS(1226), - [sym_true] = ACTIONS(1226), - [anon_sym_restrict] = ACTIONS(1226), - [sym_null] = ACTIONS(1226), - [anon_sym_goto] = ACTIONS(1226), - [anon_sym_const] = ACTIONS(1226), - [anon_sym_typedef] = ACTIONS(1226), - [anon_sym_DASH_DASH] = ACTIONS(1228), - [anon_sym_default] = ACTIONS(1226), - [anon_sym__Atomic] = ACTIONS(1226), - [sym_identifier] = ACTIONS(1226), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1226), - [sym_number_literal] = ACTIONS(1228), - [anon_sym_volatile] = ACTIONS(1226), - [anon_sym_SQUOTE] = ACTIONS(1228), - [anon_sym_extern] = ACTIONS(1226), - [anon_sym_PLUS_PLUS] = ACTIONS(1228), - [anon_sym_struct] = ACTIONS(1226), - [anon_sym_signed] = ACTIONS(1226), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1226), - [anon_sym_while] = ACTIONS(1226), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1226), - [anon_sym_L_SQUOTE] = ACTIONS(1228), - [anon_sym___attribute__] = ACTIONS(1226), - [anon_sym_sizeof] = ACTIONS(1226), - [anon_sym_LBRACE] = ACTIONS(1228), - [anon_sym_union] = ACTIONS(1226), - [anon_sym_unsigned] = ACTIONS(1226), - [anon_sym_short] = ACTIONS(1226), - [anon_sym_do] = ACTIONS(1226), - [sym_preproc_directive] = ACTIONS(1226), - [anon_sym_AMP] = ACTIONS(1228), - [aux_sym_preproc_if_token1] = ACTIONS(1226), - [anon_sym_TILDE] = ACTIONS(1228), - [anon_sym_L_DQUOTE] = ACTIONS(1228), - [anon_sym_LPAREN2] = ACTIONS(1228), - [anon_sym_RBRACE] = ACTIONS(1228), - [anon_sym_else] = ACTIONS(1226), - [sym_primitive_type] = ACTIONS(1226), - [anon_sym_for] = ACTIONS(1226), - [anon_sym_break] = ACTIONS(1226), - [anon_sym_BANG] = ACTIONS(1228), - [aux_sym_preproc_include_token1] = ACTIONS(1226), - [anon_sym_DASH] = ACTIONS(1226), - [anon_sym_static] = ACTIONS(1226), - [anon_sym_DQUOTE] = ACTIONS(1228), - [anon_sym_register] = ACTIONS(1226), - [anon_sym_STAR] = ACTIONS(1228), - [anon_sym_if] = ACTIONS(1226), - [anon_sym_switch] = ACTIONS(1226), - [anon_sym_enum] = ACTIONS(1226), - [sym_false] = ACTIONS(1226), - [ts_builtin_sym_end] = ACTIONS(1228), - [anon_sym_return] = ACTIONS(1226), - [anon_sym_continue] = ACTIONS(1226), - [anon_sym_SEMI] = ACTIONS(1228), - [aux_sym_preproc_def_token1] = ACTIONS(1226), - [anon_sym_PLUS] = ACTIONS(1226), - [anon_sym_auto] = ACTIONS(1226), - [anon_sym_inline] = ACTIONS(1226), + [sym_identifier] = ACTIONS(945), + [aux_sym_preproc_include_token1] = ACTIONS(945), + [aux_sym_preproc_def_token1] = ACTIONS(945), + [aux_sym_preproc_if_token1] = ACTIONS(945), + [aux_sym_preproc_if_token2] = ACTIONS(945), + [aux_sym_preproc_ifdef_token1] = ACTIONS(945), + [aux_sym_preproc_ifdef_token2] = ACTIONS(945), + [aux_sym_preproc_else_token1] = ACTIONS(945), + [aux_sym_preproc_elif_token1] = ACTIONS(945), + [sym_preproc_directive] = ACTIONS(945), + [anon_sym_SEMI] = ACTIONS(943), + [anon_sym_typedef] = ACTIONS(945), + [anon_sym_extern] = ACTIONS(945), + [anon_sym___attribute__] = ACTIONS(945), + [anon_sym_LPAREN2] = ACTIONS(943), + [anon_sym_LBRACE] = ACTIONS(943), + [anon_sym_STAR] = ACTIONS(943), + [anon_sym_static] = ACTIONS(945), + [anon_sym_auto] = ACTIONS(945), + [anon_sym_register] = ACTIONS(945), + [anon_sym_inline] = ACTIONS(945), + [anon_sym_const] = ACTIONS(945), + [anon_sym_volatile] = ACTIONS(945), + [anon_sym_restrict] = ACTIONS(945), + [anon_sym__Atomic] = ACTIONS(945), + [anon_sym_signed] = ACTIONS(945), + [anon_sym_unsigned] = ACTIONS(945), + [anon_sym_long] = ACTIONS(945), + [anon_sym_short] = ACTIONS(945), + [sym_primitive_type] = ACTIONS(945), + [anon_sym_enum] = ACTIONS(945), + [anon_sym_struct] = ACTIONS(945), + [anon_sym_union] = ACTIONS(945), + [anon_sym_if] = ACTIONS(945), + [anon_sym_else] = ACTIONS(945), + [anon_sym_switch] = ACTIONS(945), + [anon_sym_while] = ACTIONS(945), + [anon_sym_do] = ACTIONS(945), + [anon_sym_for] = ACTIONS(945), + [anon_sym_return] = ACTIONS(945), + [anon_sym_break] = ACTIONS(945), + [anon_sym_continue] = ACTIONS(945), + [anon_sym_goto] = ACTIONS(945), + [anon_sym_AMP] = ACTIONS(943), + [anon_sym_BANG] = ACTIONS(943), + [anon_sym_TILDE] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(945), + [anon_sym_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(943), + [anon_sym_sizeof] = ACTIONS(945), + [sym_number_literal] = ACTIONS(943), + [anon_sym_L_SQUOTE] = ACTIONS(943), + [anon_sym_SQUOTE] = ACTIONS(943), + [anon_sym_L_DQUOTE] = ACTIONS(943), + [anon_sym_DQUOTE] = ACTIONS(943), + [sym_true] = ACTIONS(945), + [sym_false] = ACTIONS(945), + [sym_null] = ACTIONS(945), + [sym_comment] = ACTIONS(3), }, [231] = { - [sym_if_statement] = STATE(329), - [sym_preproc_def] = STATE(329), - [sym_preproc_function_def] = STATE(329), - [sym__expression] = STATE(951), - [sym_comma_expression] = STATE(952), - [sym_binary_expression] = STATE(951), - [sym_update_expression] = STATE(951), - [sym_call_expression] = STATE(36), - [sym_function_definition] = STATE(329), - [sym_declaration] = STATE(329), - [sym_do_statement] = STATE(329), - [sym_for_statement] = STATE(329), - [sym_preproc_else] = STATE(328), - [sym_preproc_elif] = STATE(328), - [aux_sym_translation_unit_repeat1] = STATE(329), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(953), - [sym_union_specifier] = STATE(953), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_expression_statement] = STATE(329), - [sym_switch_statement] = STATE(329), - [sym_return_statement] = STATE(329), - [sym_preproc_call] = STATE(329), - [sym_conditional_expression] = STATE(951), - [sym_assignment_expression] = STATE(951), - [sym_cast_expression] = STATE(951), - [sym__declaration_specifiers] = STATE(1172), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(951), - [sym_type_definition] = STATE(329), - [sym_char_literal] = STATE(951), - [sym_break_statement] = STATE(329), - [sym__empty_declaration] = STATE(329), - [sym_sized_type_specifier] = STATE(953), - [sym_enum_specifier] = STATE(953), - [sym_labeled_statement] = STATE(329), - [sym_preproc_include] = STATE(329), - [sym_preproc_if] = STATE(329), - [sym_preproc_ifdef] = STATE(329), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(951), - [sym_sizeof_expression] = STATE(951), - [sym_attribute_specifier] = STATE(43), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_linkage_specification] = STATE(329), - [sym_concatenated_string] = STATE(951), - [sym_string_literal] = STATE(41), - [sym_macro_type_specifier] = STATE(953), - [sym_while_statement] = STATE(329), - [sym_storage_class_specifier] = STATE(43), - [sym_compound_statement] = STATE(329), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_continue_statement] = STATE(329), - [sym_struct_specifier] = STATE(953), - [sym_goto_statement] = STATE(329), - [sym_true] = ACTIONS(378), - [anon_sym_restrict] = ACTIONS(7), - [sym_null] = ACTIONS(378), - [anon_sym_goto] = ACTIONS(380), - [aux_sym_preproc_if_token2] = ACTIONS(1230), - [anon_sym_const] = ACTIONS(7), - [anon_sym_typedef] = ACTIONS(384), - [anon_sym_DASH_DASH] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(7), - [sym_identifier] = ACTIONS(386), - [aux_sym_preproc_ifdef_token1] = ACTIONS(388), - [sym_number_literal] = ACTIONS(390), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_extern] = ACTIONS(392), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_struct] = ACTIONS(25), - [anon_sym_signed] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(27), - [anon_sym_while] = ACTIONS(394), - [aux_sym_preproc_ifdef_token2] = ACTIONS(388), - [aux_sym_preproc_elif_token1] = ACTIONS(396), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_sizeof] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(398), - [anon_sym_union] = ACTIONS(37), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_short] = ACTIONS(27), - [anon_sym_do] = ACTIONS(400), - [aux_sym_preproc_else_token1] = ACTIONS(402), - [sym_preproc_directive] = ACTIONS(404), - [anon_sym_AMP] = ACTIONS(43), - [aux_sym_preproc_if_token1] = ACTIONS(406), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(408), - [anon_sym_for] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_BANG] = ACTIONS(47), - [aux_sym_preproc_include_token1] = ACTIONS(414), - [anon_sym_DASH] = ACTIONS(61), - [anon_sym_static] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_register] = ACTIONS(63), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(416), - [anon_sym_switch] = ACTIONS(418), - [anon_sym_enum] = ACTIONS(69), - [sym_false] = ACTIONS(378), - [anon_sym_return] = ACTIONS(420), - [anon_sym_continue] = ACTIONS(422), - [anon_sym_SEMI] = ACTIONS(424), - [aux_sym_preproc_def_token1] = ACTIONS(426), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_auto] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), + [sym_type_qualifier] = STATE(846), + [sym__type_specifier] = STATE(878), + [sym_sized_type_specifier] = STATE(878), + [sym_enum_specifier] = STATE(878), + [sym_struct_specifier] = STATE(878), + [sym_union_specifier] = STATE(878), + [sym__expression] = STATE(673), + [sym_comma_expression] = STATE(1220), + [sym_conditional_expression] = STATE(673), + [sym_assignment_expression] = STATE(673), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(673), + [sym_binary_expression] = STATE(673), + [sym_update_expression] = STATE(673), + [sym_cast_expression] = STATE(673), + [sym_type_descriptor] = STATE(1228), + [sym_sizeof_expression] = STATE(673), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(673), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(673), + [sym_concatenated_string] = STATE(673), + [sym_string_literal] = STATE(431), + [sym_macro_type_specifier] = STATE(878), + [aux_sym_type_definition_repeat1] = STATE(846), + [aux_sym_sized_type_specifier_repeat1] = STATE(881), + [sym_identifier] = ACTIONS(1053), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(1055), + [anon_sym_unsigned] = ACTIONS(1055), + [anon_sym_long] = ACTIONS(1055), + [anon_sym_short] = ACTIONS(1055), + [sym_primitive_type] = ACTIONS(1057), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1059), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1061), + [sym_false] = ACTIONS(1061), + [sym_null] = ACTIONS(1061), + [sym_comment] = ACTIONS(3), }, [232] = { - [sym_if_statement] = STATE(725), - [sym_preproc_def] = STATE(725), - [sym_preproc_function_def] = STATE(725), - [sym__expression] = STATE(1030), - [sym_comma_expression] = STATE(1031), - [sym_binary_expression] = STATE(1030), - [sym_update_expression] = STATE(1030), - [sym_call_expression] = STATE(36), - [sym_function_definition] = STATE(725), - [sym_declaration] = STATE(725), - [sym_do_statement] = STATE(725), - [sym_for_statement] = STATE(725), - [aux_sym_translation_unit_repeat1] = STATE(725), - [sym_expression_statement] = STATE(725), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(1032), - [sym_union_specifier] = STATE(1032), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_switch_statement] = STATE(725), - [sym_return_statement] = STATE(725), - [sym_preproc_call] = STATE(725), - [sym_conditional_expression] = STATE(1030), - [sym_assignment_expression] = STATE(1030), - [sym_type_definition] = STATE(725), - [sym_cast_expression] = STATE(1030), - [sym__declaration_specifiers] = STATE(1191), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1030), - [sym_char_literal] = STATE(1030), - [sym_break_statement] = STATE(725), - [sym__empty_declaration] = STATE(725), - [sym_sized_type_specifier] = STATE(1032), - [sym_enum_specifier] = STATE(1032), - [sym_labeled_statement] = STATE(725), - [sym_preproc_include] = STATE(725), - [sym_preproc_if] = STATE(725), - [sym_preproc_ifdef] = STATE(725), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1030), - [sym_sizeof_expression] = STATE(1030), - [sym_attribute_specifier] = STATE(43), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_linkage_specification] = STATE(725), - [sym_concatenated_string] = STATE(1030), - [sym_string_literal] = STATE(41), - [sym_macro_type_specifier] = STATE(1032), - [sym_while_statement] = STATE(725), - [sym_storage_class_specifier] = STATE(43), - [sym_compound_statement] = STATE(725), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_continue_statement] = STATE(725), - [sym_struct_specifier] = STATE(1032), - [sym_goto_statement] = STATE(725), - [sym_true] = ACTIONS(836), - [anon_sym_restrict] = ACTIONS(7), - [sym_null] = ACTIONS(836), - [anon_sym_goto] = ACTIONS(838), - [aux_sym_preproc_if_token2] = ACTIONS(1232), - [anon_sym_const] = ACTIONS(7), - [anon_sym_typedef] = ACTIONS(842), - [anon_sym_DASH_DASH] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(7), - [sym_identifier] = ACTIONS(844), - [aux_sym_preproc_ifdef_token1] = ACTIONS(846), - [sym_number_literal] = ACTIONS(848), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_extern] = ACTIONS(850), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_struct] = ACTIONS(25), - [anon_sym_signed] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(27), - [anon_sym_while] = ACTIONS(852), - [aux_sym_preproc_ifdef_token2] = ACTIONS(846), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_sizeof] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_union] = ACTIONS(37), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_short] = ACTIONS(27), - [anon_sym_do] = ACTIONS(856), - [sym_preproc_directive] = ACTIONS(858), - [anon_sym_AMP] = ACTIONS(43), - [aux_sym_preproc_if_token1] = ACTIONS(860), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_break] = ACTIONS(866), - [anon_sym_BANG] = ACTIONS(47), - [aux_sym_preproc_include_token1] = ACTIONS(868), - [anon_sym_DASH] = ACTIONS(61), - [anon_sym_static] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_register] = ACTIONS(63), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(870), - [anon_sym_switch] = ACTIONS(872), - [anon_sym_enum] = ACTIONS(69), - [sym_false] = ACTIONS(836), - [anon_sym_return] = ACTIONS(874), - [anon_sym_continue] = ACTIONS(876), - [anon_sym_SEMI] = ACTIONS(878), - [aux_sym_preproc_def_token1] = ACTIONS(880), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_auto] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), + [sym_identifier] = ACTIONS(977), + [aux_sym_preproc_include_token1] = ACTIONS(977), + [aux_sym_preproc_def_token1] = ACTIONS(977), + [aux_sym_preproc_if_token1] = ACTIONS(977), + [aux_sym_preproc_if_token2] = ACTIONS(977), + [aux_sym_preproc_ifdef_token1] = ACTIONS(977), + [aux_sym_preproc_ifdef_token2] = ACTIONS(977), + [aux_sym_preproc_else_token1] = ACTIONS(977), + [aux_sym_preproc_elif_token1] = ACTIONS(977), + [sym_preproc_directive] = ACTIONS(977), + [anon_sym_SEMI] = ACTIONS(975), + [anon_sym_typedef] = ACTIONS(977), + [anon_sym_extern] = ACTIONS(977), + [anon_sym___attribute__] = ACTIONS(977), + [anon_sym_LPAREN2] = ACTIONS(975), + [anon_sym_LBRACE] = ACTIONS(975), + [anon_sym_STAR] = ACTIONS(975), + [anon_sym_static] = ACTIONS(977), + [anon_sym_auto] = ACTIONS(977), + [anon_sym_register] = ACTIONS(977), + [anon_sym_inline] = ACTIONS(977), + [anon_sym_const] = ACTIONS(977), + [anon_sym_volatile] = ACTIONS(977), + [anon_sym_restrict] = ACTIONS(977), + [anon_sym__Atomic] = ACTIONS(977), + [anon_sym_signed] = ACTIONS(977), + [anon_sym_unsigned] = ACTIONS(977), + [anon_sym_long] = ACTIONS(977), + [anon_sym_short] = ACTIONS(977), + [sym_primitive_type] = ACTIONS(977), + [anon_sym_enum] = ACTIONS(977), + [anon_sym_struct] = ACTIONS(977), + [anon_sym_union] = ACTIONS(977), + [anon_sym_if] = ACTIONS(977), + [anon_sym_else] = ACTIONS(977), + [anon_sym_switch] = ACTIONS(977), + [anon_sym_while] = ACTIONS(977), + [anon_sym_do] = ACTIONS(977), + [anon_sym_for] = ACTIONS(977), + [anon_sym_return] = ACTIONS(977), + [anon_sym_break] = ACTIONS(977), + [anon_sym_continue] = ACTIONS(977), + [anon_sym_goto] = ACTIONS(977), + [anon_sym_AMP] = ACTIONS(975), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(977), + [anon_sym_PLUS] = ACTIONS(977), + [anon_sym_DASH_DASH] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(975), + [anon_sym_sizeof] = ACTIONS(977), + [sym_number_literal] = ACTIONS(975), + [anon_sym_L_SQUOTE] = ACTIONS(975), + [anon_sym_SQUOTE] = ACTIONS(975), + [anon_sym_L_DQUOTE] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(975), + [sym_true] = ACTIONS(977), + [sym_false] = ACTIONS(977), + [sym_null] = ACTIONS(977), + [sym_comment] = ACTIONS(3), }, [233] = { - [sym_true] = ACTIONS(1234), - [anon_sym_restrict] = ACTIONS(1234), - [sym_null] = ACTIONS(1234), - [anon_sym_goto] = ACTIONS(1234), - [anon_sym_const] = ACTIONS(1234), - [anon_sym_typedef] = ACTIONS(1234), - [anon_sym_DASH_DASH] = ACTIONS(1236), - [anon_sym__Atomic] = ACTIONS(1234), - [sym_identifier] = ACTIONS(1234), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1234), - [sym_number_literal] = ACTIONS(1236), - [anon_sym_volatile] = ACTIONS(1234), - [anon_sym_SQUOTE] = ACTIONS(1236), - [anon_sym_extern] = ACTIONS(1234), - [anon_sym_PLUS_PLUS] = ACTIONS(1236), - [anon_sym_struct] = ACTIONS(1234), - [anon_sym_signed] = ACTIONS(1234), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1234), - [anon_sym_while] = ACTIONS(1234), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1234), - [anon_sym_L_SQUOTE] = ACTIONS(1236), - [anon_sym___attribute__] = ACTIONS(1234), - [anon_sym_sizeof] = ACTIONS(1234), - [anon_sym_LBRACE] = ACTIONS(1236), - [anon_sym_union] = ACTIONS(1234), - [anon_sym_unsigned] = ACTIONS(1234), - [anon_sym_short] = ACTIONS(1234), - [anon_sym_do] = ACTIONS(1234), - [sym_preproc_directive] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(1236), - [aux_sym_preproc_if_token1] = ACTIONS(1234), - [anon_sym_TILDE] = ACTIONS(1236), - [anon_sym_L_DQUOTE] = ACTIONS(1236), - [anon_sym_LPAREN2] = ACTIONS(1236), - [sym_primitive_type] = ACTIONS(1234), - [anon_sym_for] = ACTIONS(1234), - [anon_sym_break] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1236), - [aux_sym_preproc_include_token1] = ACTIONS(1234), - [anon_sym_DASH] = ACTIONS(1234), - [anon_sym_static] = ACTIONS(1234), - [anon_sym_DQUOTE] = ACTIONS(1236), - [anon_sym_register] = ACTIONS(1234), - [anon_sym_STAR] = ACTIONS(1236), - [anon_sym_if] = ACTIONS(1234), - [anon_sym_switch] = ACTIONS(1234), - [anon_sym_enum] = ACTIONS(1234), - [sym_false] = ACTIONS(1234), - [ts_builtin_sym_end] = ACTIONS(1236), - [anon_sym_return] = ACTIONS(1234), - [anon_sym_continue] = ACTIONS(1234), - [anon_sym_SEMI] = ACTIONS(1236), - [aux_sym_preproc_def_token1] = ACTIONS(1234), - [anon_sym_PLUS] = ACTIONS(1234), - [anon_sym_auto] = ACTIONS(1234), - [anon_sym_inline] = ACTIONS(1234), + [sym_identifier] = ACTIONS(1043), + [aux_sym_preproc_include_token1] = ACTIONS(1043), + [aux_sym_preproc_def_token1] = ACTIONS(1043), + [aux_sym_preproc_if_token1] = ACTIONS(1043), + [aux_sym_preproc_if_token2] = ACTIONS(1043), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1043), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1043), + [aux_sym_preproc_else_token1] = ACTIONS(1043), + [aux_sym_preproc_elif_token1] = ACTIONS(1043), + [sym_preproc_directive] = ACTIONS(1043), + [anon_sym_SEMI] = ACTIONS(1041), + [anon_sym_typedef] = ACTIONS(1043), + [anon_sym_extern] = ACTIONS(1043), + [anon_sym___attribute__] = ACTIONS(1043), + [anon_sym_LPAREN2] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_STAR] = ACTIONS(1041), + [anon_sym_static] = ACTIONS(1043), + [anon_sym_auto] = ACTIONS(1043), + [anon_sym_register] = ACTIONS(1043), + [anon_sym_inline] = ACTIONS(1043), + [anon_sym_const] = ACTIONS(1043), + [anon_sym_volatile] = ACTIONS(1043), + [anon_sym_restrict] = ACTIONS(1043), + [anon_sym__Atomic] = ACTIONS(1043), + [anon_sym_signed] = ACTIONS(1043), + [anon_sym_unsigned] = ACTIONS(1043), + [anon_sym_long] = ACTIONS(1043), + [anon_sym_short] = ACTIONS(1043), + [sym_primitive_type] = ACTIONS(1043), + [anon_sym_enum] = ACTIONS(1043), + [anon_sym_struct] = ACTIONS(1043), + [anon_sym_union] = ACTIONS(1043), + [anon_sym_if] = ACTIONS(1043), + [anon_sym_else] = ACTIONS(1043), + [anon_sym_switch] = ACTIONS(1043), + [anon_sym_while] = ACTIONS(1043), + [anon_sym_do] = ACTIONS(1043), + [anon_sym_for] = ACTIONS(1043), + [anon_sym_return] = ACTIONS(1043), + [anon_sym_break] = ACTIONS(1043), + [anon_sym_continue] = ACTIONS(1043), + [anon_sym_goto] = ACTIONS(1043), + [anon_sym_AMP] = ACTIONS(1041), + [anon_sym_BANG] = ACTIONS(1041), + [anon_sym_TILDE] = ACTIONS(1041), + [anon_sym_DASH] = ACTIONS(1043), + [anon_sym_PLUS] = ACTIONS(1043), + [anon_sym_DASH_DASH] = ACTIONS(1041), + [anon_sym_PLUS_PLUS] = ACTIONS(1041), + [anon_sym_sizeof] = ACTIONS(1043), + [sym_number_literal] = ACTIONS(1041), + [anon_sym_L_SQUOTE] = ACTIONS(1041), + [anon_sym_SQUOTE] = ACTIONS(1041), + [anon_sym_L_DQUOTE] = ACTIONS(1041), + [anon_sym_DQUOTE] = ACTIONS(1041), + [sym_true] = ACTIONS(1043), + [sym_false] = ACTIONS(1043), + [sym_null] = ACTIONS(1043), + [sym_comment] = ACTIONS(3), }, [234] = { - [sym_true] = ACTIONS(1238), - [anon_sym_restrict] = ACTIONS(1238), - [sym_null] = ACTIONS(1238), - [anon_sym_goto] = ACTIONS(1238), - [anon_sym_const] = ACTIONS(1238), - [anon_sym_typedef] = ACTIONS(1238), - [anon_sym_DASH_DASH] = ACTIONS(1240), - [anon_sym__Atomic] = ACTIONS(1238), - [sym_identifier] = ACTIONS(1238), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1238), - [sym_number_literal] = ACTIONS(1240), - [anon_sym_volatile] = ACTIONS(1238), - [anon_sym_SQUOTE] = ACTIONS(1240), - [anon_sym_extern] = ACTIONS(1238), - [anon_sym_PLUS_PLUS] = ACTIONS(1240), - [anon_sym_struct] = ACTIONS(1238), - [anon_sym_signed] = ACTIONS(1238), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1238), - [anon_sym_while] = ACTIONS(1238), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1238), - [anon_sym_L_SQUOTE] = ACTIONS(1240), - [anon_sym___attribute__] = ACTIONS(1238), - [anon_sym_sizeof] = ACTIONS(1238), - [anon_sym_LBRACE] = ACTIONS(1240), - [anon_sym_union] = ACTIONS(1238), - [anon_sym_unsigned] = ACTIONS(1238), - [anon_sym_short] = ACTIONS(1238), - [anon_sym_do] = ACTIONS(1238), - [sym_preproc_directive] = ACTIONS(1238), - [anon_sym_AMP] = ACTIONS(1240), - [aux_sym_preproc_if_token1] = ACTIONS(1238), - [anon_sym_TILDE] = ACTIONS(1240), - [anon_sym_L_DQUOTE] = ACTIONS(1240), - [anon_sym_LPAREN2] = ACTIONS(1240), - [sym_primitive_type] = ACTIONS(1238), - [anon_sym_for] = ACTIONS(1238), - [anon_sym_break] = ACTIONS(1238), - [anon_sym_BANG] = ACTIONS(1240), - [aux_sym_preproc_include_token1] = ACTIONS(1238), - [anon_sym_DASH] = ACTIONS(1238), - [anon_sym_static] = ACTIONS(1238), - [anon_sym_DQUOTE] = ACTIONS(1240), - [anon_sym_register] = ACTIONS(1238), - [anon_sym_STAR] = ACTIONS(1240), - [anon_sym_if] = ACTIONS(1238), - [anon_sym_switch] = ACTIONS(1238), - [anon_sym_enum] = ACTIONS(1238), - [sym_false] = ACTIONS(1238), - [ts_builtin_sym_end] = ACTIONS(1240), - [anon_sym_return] = ACTIONS(1238), - [anon_sym_continue] = ACTIONS(1238), - [anon_sym_SEMI] = ACTIONS(1240), - [aux_sym_preproc_def_token1] = ACTIONS(1238), - [anon_sym_PLUS] = ACTIONS(1238), - [anon_sym_auto] = ACTIONS(1238), - [anon_sym_inline] = ACTIONS(1238), + [ts_builtin_sym_end] = ACTIONS(1077), + [sym_identifier] = ACTIONS(1079), + [aux_sym_preproc_include_token1] = ACTIONS(1079), + [aux_sym_preproc_def_token1] = ACTIONS(1079), + [aux_sym_preproc_if_token1] = ACTIONS(1079), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1079), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1079), + [sym_preproc_directive] = ACTIONS(1079), + [anon_sym_SEMI] = ACTIONS(1077), + [anon_sym_typedef] = ACTIONS(1079), + [anon_sym_extern] = ACTIONS(1079), + [anon_sym___attribute__] = ACTIONS(1079), + [anon_sym_LPAREN2] = ACTIONS(1077), + [anon_sym_LBRACE] = ACTIONS(1077), + [anon_sym_RBRACE] = ACTIONS(1077), + [anon_sym_STAR] = ACTIONS(1077), + [anon_sym_static] = ACTIONS(1079), + [anon_sym_auto] = ACTIONS(1079), + [anon_sym_register] = ACTIONS(1079), + [anon_sym_inline] = ACTIONS(1079), + [anon_sym_const] = ACTIONS(1079), + [anon_sym_volatile] = ACTIONS(1079), + [anon_sym_restrict] = ACTIONS(1079), + [anon_sym__Atomic] = ACTIONS(1079), + [anon_sym_signed] = ACTIONS(1079), + [anon_sym_unsigned] = ACTIONS(1079), + [anon_sym_long] = ACTIONS(1079), + [anon_sym_short] = ACTIONS(1079), + [sym_primitive_type] = ACTIONS(1079), + [anon_sym_enum] = ACTIONS(1079), + [anon_sym_struct] = ACTIONS(1079), + [anon_sym_union] = ACTIONS(1079), + [anon_sym_if] = ACTIONS(1079), + [anon_sym_switch] = ACTIONS(1079), + [anon_sym_case] = ACTIONS(1079), + [anon_sym_default] = ACTIONS(1079), + [anon_sym_while] = ACTIONS(1079), + [anon_sym_do] = ACTIONS(1079), + [anon_sym_for] = ACTIONS(1079), + [anon_sym_return] = ACTIONS(1079), + [anon_sym_break] = ACTIONS(1079), + [anon_sym_continue] = ACTIONS(1079), + [anon_sym_goto] = ACTIONS(1079), + [anon_sym_AMP] = ACTIONS(1077), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_TILDE] = ACTIONS(1077), + [anon_sym_DASH] = ACTIONS(1079), + [anon_sym_PLUS] = ACTIONS(1079), + [anon_sym_DASH_DASH] = ACTIONS(1077), + [anon_sym_PLUS_PLUS] = ACTIONS(1077), + [anon_sym_sizeof] = ACTIONS(1079), + [sym_number_literal] = ACTIONS(1077), + [anon_sym_L_SQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1077), + [anon_sym_L_DQUOTE] = ACTIONS(1077), + [anon_sym_DQUOTE] = ACTIONS(1077), + [sym_true] = ACTIONS(1079), + [sym_false] = ACTIONS(1079), + [sym_null] = ACTIONS(1079), + [sym_comment] = ACTIONS(3), }, [235] = { - [aux_sym_preproc_if_token2] = ACTIONS(1242), + [sym_type_qualifier] = STATE(846), + [sym__type_specifier] = STATE(878), + [sym_sized_type_specifier] = STATE(878), + [sym_enum_specifier] = STATE(878), + [sym_struct_specifier] = STATE(878), + [sym_union_specifier] = STATE(878), + [sym__expression] = STATE(673), + [sym_comma_expression] = STATE(1220), + [sym_conditional_expression] = STATE(673), + [sym_assignment_expression] = STATE(673), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(673), + [sym_binary_expression] = STATE(673), + [sym_update_expression] = STATE(673), + [sym_cast_expression] = STATE(673), + [sym_type_descriptor] = STATE(1294), + [sym_sizeof_expression] = STATE(673), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(673), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(673), + [sym_concatenated_string] = STATE(673), + [sym_string_literal] = STATE(431), + [sym_macro_type_specifier] = STATE(878), + [aux_sym_type_definition_repeat1] = STATE(846), + [aux_sym_sized_type_specifier_repeat1] = STATE(881), + [sym_identifier] = ACTIONS(1053), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(1055), + [anon_sym_unsigned] = ACTIONS(1055), + [anon_sym_long] = ACTIONS(1055), + [anon_sym_short] = ACTIONS(1055), + [sym_primitive_type] = ACTIONS(1057), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1059), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1061), + [sym_false] = ACTIONS(1061), + [sym_null] = ACTIONS(1061), [sym_comment] = ACTIONS(3), }, [236] = { - [sym__expression] = STATE(335), - [sym_binary_expression] = STATE(335), - [sym_update_expression] = STATE(335), - [sym_call_expression] = STATE(36), - [sym_initializer_pair] = STATE(337), - [sym_subscript_designator] = STATE(336), - [sym_conditional_expression] = STATE(335), - [sym_assignment_expression] = STATE(335), - [sym_cast_expression] = STATE(335), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(335), - [sym_field_designator] = STATE(336), - [sym_char_literal] = STATE(335), - [aux_sym_initializer_pair_repeat1] = STATE(336), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(335), - [sym_sizeof_expression] = STATE(335), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_initializer_list] = STATE(337), - [sym_concatenated_string] = STATE(335), - [sym_string_literal] = STATE(41), - [anon_sym_LBRACE] = ACTIONS(886), - [anon_sym_LBRACK] = ACTIONS(1244), - [sym_true] = ACTIONS(1246), - [sym_null] = ACTIONS(1246), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(1248), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(1250), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_COMMA] = ACTIONS(1252), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(1246), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(1254), - [anon_sym_sizeof] = ACTIONS(33), + [sym_identifier] = ACTIONS(941), + [aux_sym_preproc_include_token1] = ACTIONS(941), + [aux_sym_preproc_def_token1] = ACTIONS(941), + [aux_sym_preproc_if_token1] = ACTIONS(941), + [aux_sym_preproc_if_token2] = ACTIONS(941), + [aux_sym_preproc_ifdef_token1] = ACTIONS(941), + [aux_sym_preproc_ifdef_token2] = ACTIONS(941), + [aux_sym_preproc_else_token1] = ACTIONS(941), + [aux_sym_preproc_elif_token1] = ACTIONS(941), + [sym_preproc_directive] = ACTIONS(941), + [anon_sym_SEMI] = ACTIONS(939), + [anon_sym_typedef] = ACTIONS(941), + [anon_sym_extern] = ACTIONS(941), + [anon_sym___attribute__] = ACTIONS(941), + [anon_sym_LPAREN2] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(939), + [anon_sym_STAR] = ACTIONS(939), + [anon_sym_static] = ACTIONS(941), + [anon_sym_auto] = ACTIONS(941), + [anon_sym_register] = ACTIONS(941), + [anon_sym_inline] = ACTIONS(941), + [anon_sym_const] = ACTIONS(941), + [anon_sym_volatile] = ACTIONS(941), + [anon_sym_restrict] = ACTIONS(941), + [anon_sym__Atomic] = ACTIONS(941), + [anon_sym_signed] = ACTIONS(941), + [anon_sym_unsigned] = ACTIONS(941), + [anon_sym_long] = ACTIONS(941), + [anon_sym_short] = ACTIONS(941), + [sym_primitive_type] = ACTIONS(941), + [anon_sym_enum] = ACTIONS(941), + [anon_sym_struct] = ACTIONS(941), + [anon_sym_union] = ACTIONS(941), + [anon_sym_if] = ACTIONS(941), + [anon_sym_else] = ACTIONS(941), + [anon_sym_switch] = ACTIONS(941), + [anon_sym_while] = ACTIONS(941), + [anon_sym_do] = ACTIONS(941), + [anon_sym_for] = ACTIONS(941), + [anon_sym_return] = ACTIONS(941), + [anon_sym_break] = ACTIONS(941), + [anon_sym_continue] = ACTIONS(941), + [anon_sym_goto] = ACTIONS(941), + [anon_sym_AMP] = ACTIONS(939), + [anon_sym_BANG] = ACTIONS(939), + [anon_sym_TILDE] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(941), + [anon_sym_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(939), + [anon_sym_sizeof] = ACTIONS(941), + [sym_number_literal] = ACTIONS(939), + [anon_sym_L_SQUOTE] = ACTIONS(939), + [anon_sym_SQUOTE] = ACTIONS(939), + [anon_sym_L_DQUOTE] = ACTIONS(939), + [anon_sym_DQUOTE] = ACTIONS(939), + [sym_true] = ACTIONS(941), + [sym_false] = ACTIONS(941), + [sym_null] = ACTIONS(941), + [sym_comment] = ACTIONS(3), }, [237] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(1256), - [anon_sym_PERCENT_EQ] = ACTIONS(1258), - [anon_sym_DASH_EQ] = ACTIONS(1258), - [anon_sym_PIPE] = ACTIONS(1256), - [anon_sym_EQ_EQ] = ACTIONS(1258), - [anon_sym_SLASH] = ACTIONS(1256), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LT_LT] = ACTIONS(1256), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_PLUS_EQ] = ACTIONS(1258), - [anon_sym_LT_LT_EQ] = ACTIONS(1258), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_BANG_EQ] = ACTIONS(1258), - [anon_sym_CARET_EQ] = ACTIONS(1258), - [anon_sym_COMMA] = ACTIONS(1258), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT_EQ] = ACTIONS(1258), - [anon_sym_GT] = ACTIONS(1256), - [anon_sym_PIPE_EQ] = ACTIONS(1258), - [anon_sym_RPAREN] = ACTIONS(1258), - [anon_sym_RBRACK] = ACTIONS(1258), - [anon_sym_AMP_EQ] = ACTIONS(1258), - [anon_sym_PERCENT] = ACTIONS(1256), - [anon_sym_AMP] = ACTIONS(1256), - [anon_sym_EQ] = ACTIONS(1256), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(1258), - [anon_sym_RBRACE] = ACTIONS(1258), - [anon_sym_COLON] = ACTIONS(1258), - [anon_sym_STAR_EQ] = ACTIONS(1258), - [anon_sym_PIPE_PIPE] = ACTIONS(1258), - [anon_sym_DASH] = ACTIONS(1256), - [anon_sym_LT_EQ] = ACTIONS(1258), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_SLASH_EQ] = ACTIONS(1258), - [anon_sym_AMP_AMP] = ACTIONS(1258), - [anon_sym_SEMI] = ACTIONS(1258), - [anon_sym_CARET] = ACTIONS(1256), - [anon_sym_PLUS] = ACTIONS(1256), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(1256), - [anon_sym_LBRACK] = ACTIONS(305), + [ts_builtin_sym_end] = ACTIONS(1081), + [sym_identifier] = ACTIONS(1083), + [aux_sym_preproc_include_token1] = ACTIONS(1083), + [aux_sym_preproc_def_token1] = ACTIONS(1083), + [aux_sym_preproc_if_token1] = ACTIONS(1083), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1083), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1083), + [sym_preproc_directive] = ACTIONS(1083), + [anon_sym_SEMI] = ACTIONS(1081), + [anon_sym_typedef] = ACTIONS(1083), + [anon_sym_extern] = ACTIONS(1083), + [anon_sym___attribute__] = ACTIONS(1083), + [anon_sym_LPAREN2] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1081), + [anon_sym_RBRACE] = ACTIONS(1081), + [anon_sym_STAR] = ACTIONS(1081), + [anon_sym_static] = ACTIONS(1083), + [anon_sym_auto] = ACTIONS(1083), + [anon_sym_register] = ACTIONS(1083), + [anon_sym_inline] = ACTIONS(1083), + [anon_sym_const] = ACTIONS(1083), + [anon_sym_volatile] = ACTIONS(1083), + [anon_sym_restrict] = ACTIONS(1083), + [anon_sym__Atomic] = ACTIONS(1083), + [anon_sym_signed] = ACTIONS(1083), + [anon_sym_unsigned] = ACTIONS(1083), + [anon_sym_long] = ACTIONS(1083), + [anon_sym_short] = ACTIONS(1083), + [sym_primitive_type] = ACTIONS(1083), + [anon_sym_enum] = ACTIONS(1083), + [anon_sym_struct] = ACTIONS(1083), + [anon_sym_union] = ACTIONS(1083), + [anon_sym_if] = ACTIONS(1083), + [anon_sym_switch] = ACTIONS(1083), + [anon_sym_case] = ACTIONS(1083), + [anon_sym_default] = ACTIONS(1083), + [anon_sym_while] = ACTIONS(1083), + [anon_sym_do] = ACTIONS(1083), + [anon_sym_for] = ACTIONS(1083), + [anon_sym_return] = ACTIONS(1083), + [anon_sym_break] = ACTIONS(1083), + [anon_sym_continue] = ACTIONS(1083), + [anon_sym_goto] = ACTIONS(1083), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_BANG] = ACTIONS(1081), + [anon_sym_TILDE] = ACTIONS(1081), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH_DASH] = ACTIONS(1081), + [anon_sym_PLUS_PLUS] = ACTIONS(1081), + [anon_sym_sizeof] = ACTIONS(1083), + [sym_number_literal] = ACTIONS(1081), + [anon_sym_L_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_L_DQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE] = ACTIONS(1081), + [sym_true] = ACTIONS(1083), + [sym_false] = ACTIONS(1083), + [sym_null] = ACTIONS(1083), + [sym_comment] = ACTIONS(3), }, [238] = { - [anon_sym_GT_GT] = ACTIONS(1260), - [anon_sym_PERCENT_EQ] = ACTIONS(1262), - [anon_sym_DASH_EQ] = ACTIONS(1262), - [anon_sym_PIPE] = ACTIONS(1260), - [anon_sym_EQ_EQ] = ACTIONS(1262), - [anon_sym_SLASH] = ACTIONS(1260), - [anon_sym_DASH_GT] = ACTIONS(1262), - [anon_sym_LT_LT] = ACTIONS(1260), - [anon_sym_DASH_DASH] = ACTIONS(1262), - [anon_sym_PLUS_EQ] = ACTIONS(1262), - [anon_sym_LT_LT_EQ] = ACTIONS(1262), - [anon_sym_QMARK] = ACTIONS(1262), - [anon_sym_BANG_EQ] = ACTIONS(1262), - [anon_sym_CARET_EQ] = ACTIONS(1262), - [anon_sym_COMMA] = ACTIONS(1262), - [anon_sym_PLUS_PLUS] = ACTIONS(1262), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT_EQ] = ACTIONS(1262), - [anon_sym_GT] = ACTIONS(1260), - [anon_sym_PIPE_EQ] = ACTIONS(1262), - [anon_sym_RPAREN] = ACTIONS(1262), - [anon_sym_RBRACK] = ACTIONS(1262), - [anon_sym_AMP_EQ] = ACTIONS(1262), - [anon_sym_PERCENT] = ACTIONS(1260), - [anon_sym_AMP] = ACTIONS(1260), - [anon_sym_EQ] = ACTIONS(1260), - [anon_sym_LPAREN2] = ACTIONS(1262), - [anon_sym_GT_EQ] = ACTIONS(1262), - [anon_sym_RBRACE] = ACTIONS(1262), - [anon_sym_COLON] = ACTIONS(1262), - [anon_sym_STAR_EQ] = ACTIONS(1262), - [anon_sym_PIPE_PIPE] = ACTIONS(1262), - [anon_sym_DASH] = ACTIONS(1260), - [anon_sym_LT_EQ] = ACTIONS(1262), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_SLASH_EQ] = ACTIONS(1262), - [anon_sym_AMP_AMP] = ACTIONS(1262), - [anon_sym_SEMI] = ACTIONS(1262), - [anon_sym_CARET] = ACTIONS(1260), - [anon_sym_PLUS] = ACTIONS(1260), - [anon_sym_DOT] = ACTIONS(1262), - [anon_sym_LT] = ACTIONS(1260), - [anon_sym_LBRACK] = ACTIONS(1262), + [sym_identifier] = ACTIONS(1001), + [aux_sym_preproc_include_token1] = ACTIONS(1001), + [aux_sym_preproc_def_token1] = ACTIONS(1001), + [aux_sym_preproc_if_token1] = ACTIONS(1001), + [aux_sym_preproc_if_token2] = ACTIONS(1001), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1001), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1001), + [aux_sym_preproc_else_token1] = ACTIONS(1001), + [aux_sym_preproc_elif_token1] = ACTIONS(1001), + [sym_preproc_directive] = ACTIONS(1001), + [anon_sym_SEMI] = ACTIONS(999), + [anon_sym_typedef] = ACTIONS(1001), + [anon_sym_extern] = ACTIONS(1001), + [anon_sym___attribute__] = ACTIONS(1001), + [anon_sym_LPAREN2] = ACTIONS(999), + [anon_sym_LBRACE] = ACTIONS(999), + [anon_sym_STAR] = ACTIONS(999), + [anon_sym_static] = ACTIONS(1001), + [anon_sym_auto] = ACTIONS(1001), + [anon_sym_register] = ACTIONS(1001), + [anon_sym_inline] = ACTIONS(1001), + [anon_sym_const] = ACTIONS(1001), + [anon_sym_volatile] = ACTIONS(1001), + [anon_sym_restrict] = ACTIONS(1001), + [anon_sym__Atomic] = ACTIONS(1001), + [anon_sym_signed] = ACTIONS(1001), + [anon_sym_unsigned] = ACTIONS(1001), + [anon_sym_long] = ACTIONS(1001), + [anon_sym_short] = ACTIONS(1001), + [sym_primitive_type] = ACTIONS(1001), + [anon_sym_enum] = ACTIONS(1001), + [anon_sym_struct] = ACTIONS(1001), + [anon_sym_union] = ACTIONS(1001), + [anon_sym_if] = ACTIONS(1001), + [anon_sym_else] = ACTIONS(1001), + [anon_sym_switch] = ACTIONS(1001), + [anon_sym_while] = ACTIONS(1001), + [anon_sym_do] = ACTIONS(1001), + [anon_sym_for] = ACTIONS(1001), + [anon_sym_return] = ACTIONS(1001), + [anon_sym_break] = ACTIONS(1001), + [anon_sym_continue] = ACTIONS(1001), + [anon_sym_goto] = ACTIONS(1001), + [anon_sym_AMP] = ACTIONS(999), + [anon_sym_BANG] = ACTIONS(999), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH_DASH] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_sizeof] = ACTIONS(1001), + [sym_number_literal] = ACTIONS(999), + [anon_sym_L_SQUOTE] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(999), + [anon_sym_L_DQUOTE] = ACTIONS(999), + [anon_sym_DQUOTE] = ACTIONS(999), + [sym_true] = ACTIONS(1001), + [sym_false] = ACTIONS(1001), + [sym_null] = ACTIONS(1001), + [sym_comment] = ACTIONS(3), }, [239] = { - [sym_parameter_list] = STATE(252), + [sym_identifier] = ACTIONS(1009), + [aux_sym_preproc_include_token1] = ACTIONS(1009), + [aux_sym_preproc_def_token1] = ACTIONS(1009), + [aux_sym_preproc_if_token1] = ACTIONS(1009), + [aux_sym_preproc_if_token2] = ACTIONS(1009), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1009), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1009), + [aux_sym_preproc_else_token1] = ACTIONS(1009), + [aux_sym_preproc_elif_token1] = ACTIONS(1009), + [sym_preproc_directive] = ACTIONS(1009), + [anon_sym_SEMI] = ACTIONS(1007), + [anon_sym_typedef] = ACTIONS(1009), + [anon_sym_extern] = ACTIONS(1009), + [anon_sym___attribute__] = ACTIONS(1009), + [anon_sym_LPAREN2] = ACTIONS(1007), + [anon_sym_LBRACE] = ACTIONS(1007), + [anon_sym_STAR] = ACTIONS(1007), + [anon_sym_static] = ACTIONS(1009), + [anon_sym_auto] = ACTIONS(1009), + [anon_sym_register] = ACTIONS(1009), + [anon_sym_inline] = ACTIONS(1009), + [anon_sym_const] = ACTIONS(1009), + [anon_sym_volatile] = ACTIONS(1009), + [anon_sym_restrict] = ACTIONS(1009), + [anon_sym__Atomic] = ACTIONS(1009), + [anon_sym_signed] = ACTIONS(1009), + [anon_sym_unsigned] = ACTIONS(1009), + [anon_sym_long] = ACTIONS(1009), + [anon_sym_short] = ACTIONS(1009), + [sym_primitive_type] = ACTIONS(1009), + [anon_sym_enum] = ACTIONS(1009), + [anon_sym_struct] = ACTIONS(1009), + [anon_sym_union] = ACTIONS(1009), + [anon_sym_if] = ACTIONS(1009), + [anon_sym_else] = ACTIONS(1009), + [anon_sym_switch] = ACTIONS(1009), + [anon_sym_while] = ACTIONS(1009), + [anon_sym_do] = ACTIONS(1009), + [anon_sym_for] = ACTIONS(1009), + [anon_sym_return] = ACTIONS(1009), + [anon_sym_break] = ACTIONS(1009), + [anon_sym_continue] = ACTIONS(1009), + [anon_sym_goto] = ACTIONS(1009), + [anon_sym_AMP] = ACTIONS(1007), + [anon_sym_BANG] = ACTIONS(1007), + [anon_sym_TILDE] = ACTIONS(1007), + [anon_sym_DASH] = ACTIONS(1009), + [anon_sym_PLUS] = ACTIONS(1009), + [anon_sym_DASH_DASH] = ACTIONS(1007), + [anon_sym_PLUS_PLUS] = ACTIONS(1007), + [anon_sym_sizeof] = ACTIONS(1009), + [sym_number_literal] = ACTIONS(1007), + [anon_sym_L_SQUOTE] = ACTIONS(1007), + [anon_sym_SQUOTE] = ACTIONS(1007), + [anon_sym_L_DQUOTE] = ACTIONS(1007), + [anon_sym_DQUOTE] = ACTIONS(1007), + [sym_true] = ACTIONS(1009), + [sym_false] = ACTIONS(1009), + [sym_null] = ACTIONS(1009), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(1264), - [anon_sym_LPAREN2] = ACTIONS(652), - [anon_sym_LBRACK] = ACTIONS(923), }, [240] = { - [sym_abstract_parenthesized_declarator] = STATE(338), - [sym_abstract_array_declarator] = STATE(338), - [sym_parameter_list] = STATE(148), - [sym__abstract_declarator] = STATE(338), - [aux_sym_type_definition_repeat1] = STATE(144), - [sym_abstract_function_declarator] = STATE(338), - [sym_abstract_pointer_declarator] = STATE(338), - [sym_type_qualifier] = STATE(144), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(440), - [anon_sym_LPAREN2] = ACTIONS(442), - [anon_sym_restrict] = ACTIONS(440), - [anon_sym_volatile] = ACTIONS(440), - [anon_sym__Atomic] = ACTIONS(440), - [anon_sym_RPAREN] = ACTIONS(1266), - [anon_sym_STAR] = ACTIONS(446), - [anon_sym_LBRACK] = ACTIONS(448), + [ts_builtin_sym_end] = ACTIONS(1085), + [sym_identifier] = ACTIONS(1087), + [aux_sym_preproc_include_token1] = ACTIONS(1087), + [aux_sym_preproc_def_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1087), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1087), + [sym_preproc_directive] = ACTIONS(1087), + [anon_sym_SEMI] = ACTIONS(1085), + [anon_sym_typedef] = ACTIONS(1087), + [anon_sym_extern] = ACTIONS(1087), + [anon_sym___attribute__] = ACTIONS(1087), + [anon_sym_LPAREN2] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_RBRACE] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(1085), + [anon_sym_static] = ACTIONS(1087), + [anon_sym_auto] = ACTIONS(1087), + [anon_sym_register] = ACTIONS(1087), + [anon_sym_inline] = ACTIONS(1087), + [anon_sym_const] = ACTIONS(1087), + [anon_sym_volatile] = ACTIONS(1087), + [anon_sym_restrict] = ACTIONS(1087), + [anon_sym__Atomic] = ACTIONS(1087), + [anon_sym_signed] = ACTIONS(1087), + [anon_sym_unsigned] = ACTIONS(1087), + [anon_sym_long] = ACTIONS(1087), + [anon_sym_short] = ACTIONS(1087), + [sym_primitive_type] = ACTIONS(1087), + [anon_sym_enum] = ACTIONS(1087), + [anon_sym_struct] = ACTIONS(1087), + [anon_sym_union] = ACTIONS(1087), + [anon_sym_if] = ACTIONS(1087), + [anon_sym_switch] = ACTIONS(1087), + [anon_sym_case] = ACTIONS(1087), + [anon_sym_default] = ACTIONS(1087), + [anon_sym_while] = ACTIONS(1087), + [anon_sym_do] = ACTIONS(1087), + [anon_sym_for] = ACTIONS(1087), + [anon_sym_return] = ACTIONS(1087), + [anon_sym_break] = ACTIONS(1087), + [anon_sym_continue] = ACTIONS(1087), + [anon_sym_goto] = ACTIONS(1087), + [anon_sym_AMP] = ACTIONS(1085), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_TILDE] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH_DASH] = ACTIONS(1085), + [anon_sym_PLUS_PLUS] = ACTIONS(1085), + [anon_sym_sizeof] = ACTIONS(1087), + [sym_number_literal] = ACTIONS(1085), + [anon_sym_L_SQUOTE] = ACTIONS(1085), + [anon_sym_SQUOTE] = ACTIONS(1085), + [anon_sym_L_DQUOTE] = ACTIONS(1085), + [anon_sym_DQUOTE] = ACTIONS(1085), + [sym_true] = ACTIONS(1087), + [sym_false] = ACTIONS(1087), + [sym_null] = ACTIONS(1087), + [sym_comment] = ACTIONS(3), }, [241] = { - [sym_parameter_list] = STATE(252), + [sym_identifier] = ACTIONS(1089), + [aux_sym_preproc_include_token1] = ACTIONS(1089), + [aux_sym_preproc_def_token1] = ACTIONS(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1089), + [aux_sym_preproc_if_token2] = ACTIONS(1089), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1089), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1089), + [aux_sym_preproc_else_token1] = ACTIONS(1089), + [aux_sym_preproc_elif_token1] = ACTIONS(1089), + [sym_preproc_directive] = ACTIONS(1089), + [anon_sym_SEMI] = ACTIONS(1091), + [anon_sym_typedef] = ACTIONS(1089), + [anon_sym_extern] = ACTIONS(1089), + [anon_sym___attribute__] = ACTIONS(1089), + [anon_sym_LPAREN2] = ACTIONS(1091), + [anon_sym_LBRACE] = ACTIONS(1091), + [anon_sym_STAR] = ACTIONS(1091), + [anon_sym_static] = ACTIONS(1089), + [anon_sym_auto] = ACTIONS(1089), + [anon_sym_register] = ACTIONS(1089), + [anon_sym_inline] = ACTIONS(1089), + [anon_sym_const] = ACTIONS(1089), + [anon_sym_volatile] = ACTIONS(1089), + [anon_sym_restrict] = ACTIONS(1089), + [anon_sym__Atomic] = ACTIONS(1089), + [anon_sym_signed] = ACTIONS(1089), + [anon_sym_unsigned] = ACTIONS(1089), + [anon_sym_long] = ACTIONS(1089), + [anon_sym_short] = ACTIONS(1089), + [sym_primitive_type] = ACTIONS(1089), + [anon_sym_enum] = ACTIONS(1089), + [anon_sym_struct] = ACTIONS(1089), + [anon_sym_union] = ACTIONS(1089), + [anon_sym_if] = ACTIONS(1089), + [anon_sym_switch] = ACTIONS(1089), + [anon_sym_while] = ACTIONS(1089), + [anon_sym_do] = ACTIONS(1089), + [anon_sym_for] = ACTIONS(1089), + [anon_sym_return] = ACTIONS(1089), + [anon_sym_break] = ACTIONS(1089), + [anon_sym_continue] = ACTIONS(1089), + [anon_sym_goto] = ACTIONS(1089), + [anon_sym_AMP] = ACTIONS(1091), + [anon_sym_BANG] = ACTIONS(1091), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_DASH] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1091), + [anon_sym_PLUS_PLUS] = ACTIONS(1091), + [anon_sym_sizeof] = ACTIONS(1089), + [sym_number_literal] = ACTIONS(1091), + [anon_sym_L_SQUOTE] = ACTIONS(1091), + [anon_sym_SQUOTE] = ACTIONS(1091), + [anon_sym_L_DQUOTE] = ACTIONS(1091), + [anon_sym_DQUOTE] = ACTIONS(1091), + [sym_true] = ACTIONS(1089), + [sym_false] = ACTIONS(1089), + [sym_null] = ACTIONS(1089), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(1268), - [anon_sym_LPAREN2] = ACTIONS(652), - [anon_sym_COMMA] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(923), }, [242] = { - [sym_abstract_parenthesized_declarator] = STATE(339), - [sym_abstract_array_declarator] = STATE(339), - [sym_parameter_list] = STATE(148), - [sym__abstract_declarator] = STATE(339), - [aux_sym_type_definition_repeat1] = STATE(144), - [sym_abstract_function_declarator] = STATE(339), - [sym_abstract_pointer_declarator] = STATE(339), - [sym_type_qualifier] = STATE(144), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(440), - [anon_sym_LPAREN2] = ACTIONS(442), - [anon_sym_restrict] = ACTIONS(440), - [anon_sym_volatile] = ACTIONS(440), - [anon_sym__Atomic] = ACTIONS(440), - [anon_sym_RPAREN] = ACTIONS(1270), - [anon_sym_STAR] = ACTIONS(446), - [anon_sym_LBRACK] = ACTIONS(448), + [sym_identifier] = ACTIONS(1083), + [aux_sym_preproc_include_token1] = ACTIONS(1083), + [aux_sym_preproc_def_token1] = ACTIONS(1083), + [aux_sym_preproc_if_token1] = ACTIONS(1083), + [aux_sym_preproc_if_token2] = ACTIONS(1083), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1083), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1083), + [aux_sym_preproc_else_token1] = ACTIONS(1083), + [aux_sym_preproc_elif_token1] = ACTIONS(1083), + [sym_preproc_directive] = ACTIONS(1083), + [anon_sym_SEMI] = ACTIONS(1081), + [anon_sym_typedef] = ACTIONS(1083), + [anon_sym_extern] = ACTIONS(1083), + [anon_sym___attribute__] = ACTIONS(1083), + [anon_sym_LPAREN2] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1081), + [anon_sym_STAR] = ACTIONS(1081), + [anon_sym_static] = ACTIONS(1083), + [anon_sym_auto] = ACTIONS(1083), + [anon_sym_register] = ACTIONS(1083), + [anon_sym_inline] = ACTIONS(1083), + [anon_sym_const] = ACTIONS(1083), + [anon_sym_volatile] = ACTIONS(1083), + [anon_sym_restrict] = ACTIONS(1083), + [anon_sym__Atomic] = ACTIONS(1083), + [anon_sym_signed] = ACTIONS(1083), + [anon_sym_unsigned] = ACTIONS(1083), + [anon_sym_long] = ACTIONS(1083), + [anon_sym_short] = ACTIONS(1083), + [sym_primitive_type] = ACTIONS(1083), + [anon_sym_enum] = ACTIONS(1083), + [anon_sym_struct] = ACTIONS(1083), + [anon_sym_union] = ACTIONS(1083), + [anon_sym_if] = ACTIONS(1083), + [anon_sym_switch] = ACTIONS(1083), + [anon_sym_while] = ACTIONS(1083), + [anon_sym_do] = ACTIONS(1083), + [anon_sym_for] = ACTIONS(1083), + [anon_sym_return] = ACTIONS(1083), + [anon_sym_break] = ACTIONS(1083), + [anon_sym_continue] = ACTIONS(1083), + [anon_sym_goto] = ACTIONS(1083), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_BANG] = ACTIONS(1081), + [anon_sym_TILDE] = ACTIONS(1081), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH_DASH] = ACTIONS(1081), + [anon_sym_PLUS_PLUS] = ACTIONS(1081), + [anon_sym_sizeof] = ACTIONS(1083), + [sym_number_literal] = ACTIONS(1081), + [anon_sym_L_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_L_DQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE] = ACTIONS(1081), + [sym_true] = ACTIONS(1083), + [sym_false] = ACTIONS(1083), + [sym_null] = ACTIONS(1083), + [sym_comment] = ACTIONS(3), }, [243] = { - [anon_sym_LBRACK] = ACTIONS(1272), - [anon_sym_LBRACE] = ACTIONS(1272), - [anon_sym_EQ] = ACTIONS(1272), - [anon_sym_LPAREN2] = ACTIONS(1272), - [anon_sym_COMMA] = ACTIONS(1272), - [anon_sym_COLON] = ACTIONS(1272), - [anon_sym_SEMI] = ACTIONS(1272), - [anon_sym_RPAREN] = ACTIONS(1272), - [anon_sym___attribute__] = ACTIONS(1272), + [sym_identifier] = ACTIONS(1093), + [aux_sym_preproc_include_token1] = ACTIONS(1093), + [aux_sym_preproc_def_token1] = ACTIONS(1093), + [aux_sym_preproc_if_token1] = ACTIONS(1093), + [aux_sym_preproc_if_token2] = ACTIONS(1093), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1093), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1093), + [aux_sym_preproc_else_token1] = ACTIONS(1093), + [aux_sym_preproc_elif_token1] = ACTIONS(1093), + [sym_preproc_directive] = ACTIONS(1093), + [anon_sym_SEMI] = ACTIONS(1095), + [anon_sym_typedef] = ACTIONS(1093), + [anon_sym_extern] = ACTIONS(1093), + [anon_sym___attribute__] = ACTIONS(1093), + [anon_sym_LPAREN2] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1095), + [anon_sym_STAR] = ACTIONS(1095), + [anon_sym_static] = ACTIONS(1093), + [anon_sym_auto] = ACTIONS(1093), + [anon_sym_register] = ACTIONS(1093), + [anon_sym_inline] = ACTIONS(1093), + [anon_sym_const] = ACTIONS(1093), + [anon_sym_volatile] = ACTIONS(1093), + [anon_sym_restrict] = ACTIONS(1093), + [anon_sym__Atomic] = ACTIONS(1093), + [anon_sym_signed] = ACTIONS(1093), + [anon_sym_unsigned] = ACTIONS(1093), + [anon_sym_long] = ACTIONS(1093), + [anon_sym_short] = ACTIONS(1093), + [sym_primitive_type] = ACTIONS(1093), + [anon_sym_enum] = ACTIONS(1093), + [anon_sym_struct] = ACTIONS(1093), + [anon_sym_union] = ACTIONS(1093), + [anon_sym_if] = ACTIONS(1093), + [anon_sym_switch] = ACTIONS(1093), + [anon_sym_while] = ACTIONS(1093), + [anon_sym_do] = ACTIONS(1093), + [anon_sym_for] = ACTIONS(1093), + [anon_sym_return] = ACTIONS(1093), + [anon_sym_break] = ACTIONS(1093), + [anon_sym_continue] = ACTIONS(1093), + [anon_sym_goto] = ACTIONS(1093), + [anon_sym_AMP] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_TILDE] = ACTIONS(1095), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_sizeof] = ACTIONS(1093), + [sym_number_literal] = ACTIONS(1095), + [anon_sym_L_SQUOTE] = ACTIONS(1095), + [anon_sym_SQUOTE] = ACTIONS(1095), + [anon_sym_L_DQUOTE] = ACTIONS(1095), + [anon_sym_DQUOTE] = ACTIONS(1095), + [sym_true] = ACTIONS(1093), + [sym_false] = ACTIONS(1093), + [sym_null] = ACTIONS(1093), [sym_comment] = ACTIONS(3), }, [244] = { - [aux_sym_parameter_list_repeat1] = STATE(342), - [anon_sym_RPAREN] = ACTIONS(1274), - [anon_sym_COMMA] = ACTIONS(1276), + [sym_identifier] = ACTIONS(1097), + [aux_sym_preproc_include_token1] = ACTIONS(1097), + [aux_sym_preproc_def_token1] = ACTIONS(1097), + [aux_sym_preproc_if_token1] = ACTIONS(1097), + [aux_sym_preproc_if_token2] = ACTIONS(1097), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1097), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1097), + [aux_sym_preproc_else_token1] = ACTIONS(1097), + [aux_sym_preproc_elif_token1] = ACTIONS(1097), + [sym_preproc_directive] = ACTIONS(1097), + [anon_sym_SEMI] = ACTIONS(1099), + [anon_sym_typedef] = ACTIONS(1097), + [anon_sym_extern] = ACTIONS(1097), + [anon_sym___attribute__] = ACTIONS(1097), + [anon_sym_LPAREN2] = ACTIONS(1099), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_STAR] = ACTIONS(1099), + [anon_sym_static] = ACTIONS(1097), + [anon_sym_auto] = ACTIONS(1097), + [anon_sym_register] = ACTIONS(1097), + [anon_sym_inline] = ACTIONS(1097), + [anon_sym_const] = ACTIONS(1097), + [anon_sym_volatile] = ACTIONS(1097), + [anon_sym_restrict] = ACTIONS(1097), + [anon_sym__Atomic] = ACTIONS(1097), + [anon_sym_signed] = ACTIONS(1097), + [anon_sym_unsigned] = ACTIONS(1097), + [anon_sym_long] = ACTIONS(1097), + [anon_sym_short] = ACTIONS(1097), + [sym_primitive_type] = ACTIONS(1097), + [anon_sym_enum] = ACTIONS(1097), + [anon_sym_struct] = ACTIONS(1097), + [anon_sym_union] = ACTIONS(1097), + [anon_sym_if] = ACTIONS(1097), + [anon_sym_switch] = ACTIONS(1097), + [anon_sym_while] = ACTIONS(1097), + [anon_sym_do] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1097), + [anon_sym_return] = ACTIONS(1097), + [anon_sym_break] = ACTIONS(1097), + [anon_sym_continue] = ACTIONS(1097), + [anon_sym_goto] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), + [anon_sym_TILDE] = ACTIONS(1099), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_sizeof] = ACTIONS(1097), + [sym_number_literal] = ACTIONS(1099), + [anon_sym_L_SQUOTE] = ACTIONS(1099), + [anon_sym_SQUOTE] = ACTIONS(1099), + [anon_sym_L_DQUOTE] = ACTIONS(1099), + [anon_sym_DQUOTE] = ACTIONS(1099), + [sym_true] = ACTIONS(1097), + [sym_false] = ACTIONS(1097), + [sym_null] = ACTIONS(1097), [sym_comment] = ACTIONS(3), }, [245] = { - [sym_parameter_list] = STATE(252), + [sym_identifier] = ACTIONS(1067), + [aux_sym_preproc_include_token1] = ACTIONS(1067), + [aux_sym_preproc_def_token1] = ACTIONS(1067), + [aux_sym_preproc_if_token1] = ACTIONS(1067), + [aux_sym_preproc_if_token2] = ACTIONS(1067), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1067), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1067), + [aux_sym_preproc_else_token1] = ACTIONS(1067), + [aux_sym_preproc_elif_token1] = ACTIONS(1067), + [sym_preproc_directive] = ACTIONS(1067), + [anon_sym_SEMI] = ACTIONS(1065), + [anon_sym_typedef] = ACTIONS(1067), + [anon_sym_extern] = ACTIONS(1067), + [anon_sym___attribute__] = ACTIONS(1067), + [anon_sym_LPAREN2] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_static] = ACTIONS(1067), + [anon_sym_auto] = ACTIONS(1067), + [anon_sym_register] = ACTIONS(1067), + [anon_sym_inline] = ACTIONS(1067), + [anon_sym_const] = ACTIONS(1067), + [anon_sym_volatile] = ACTIONS(1067), + [anon_sym_restrict] = ACTIONS(1067), + [anon_sym__Atomic] = ACTIONS(1067), + [anon_sym_signed] = ACTIONS(1067), + [anon_sym_unsigned] = ACTIONS(1067), + [anon_sym_long] = ACTIONS(1067), + [anon_sym_short] = ACTIONS(1067), + [sym_primitive_type] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_if] = ACTIONS(1067), + [anon_sym_switch] = ACTIONS(1067), + [anon_sym_while] = ACTIONS(1067), + [anon_sym_do] = ACTIONS(1067), + [anon_sym_for] = ACTIONS(1067), + [anon_sym_return] = ACTIONS(1067), + [anon_sym_break] = ACTIONS(1067), + [anon_sym_continue] = ACTIONS(1067), + [anon_sym_goto] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1065), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_PLUS] = ACTIONS(1067), + [anon_sym_DASH_DASH] = ACTIONS(1065), + [anon_sym_PLUS_PLUS] = ACTIONS(1065), + [anon_sym_sizeof] = ACTIONS(1067), + [sym_number_literal] = ACTIONS(1065), + [anon_sym_L_SQUOTE] = ACTIONS(1065), + [anon_sym_SQUOTE] = ACTIONS(1065), + [anon_sym_L_DQUOTE] = ACTIONS(1065), + [anon_sym_DQUOTE] = ACTIONS(1065), + [sym_true] = ACTIONS(1067), + [sym_false] = ACTIONS(1067), + [sym_null] = ACTIONS(1067), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(1278), - [anon_sym_LPAREN2] = ACTIONS(652), - [anon_sym_LBRACK] = ACTIONS(923), }, [246] = { - [sym_pointer_declarator] = STATE(347), - [sym_abstract_array_declarator] = STATE(346), - [sym_parenthesized_declarator] = STATE(347), - [sym_parameter_list] = STATE(148), - [sym__abstract_declarator] = STATE(346), - [sym_abstract_function_declarator] = STATE(346), - [sym_array_declarator] = STATE(347), - [sym__declarator] = STATE(347), - [sym_abstract_pointer_declarator] = STATE(346), - [sym_function_declarator] = STATE(347), - [sym_abstract_parenthesized_declarator] = STATE(346), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(1280), - [anon_sym_STAR] = ACTIONS(1282), - [sym_identifier] = ACTIONS(1284), - [anon_sym_COMMA] = ACTIONS(1280), - [anon_sym_LPAREN2] = ACTIONS(1286), - [anon_sym_LBRACK] = ACTIONS(448), + [sym_identifier] = ACTIONS(1101), + [aux_sym_preproc_include_token1] = ACTIONS(1101), + [aux_sym_preproc_def_token1] = ACTIONS(1101), + [aux_sym_preproc_if_token1] = ACTIONS(1101), + [aux_sym_preproc_if_token2] = ACTIONS(1101), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1101), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1101), + [aux_sym_preproc_else_token1] = ACTIONS(1101), + [aux_sym_preproc_elif_token1] = ACTIONS(1101), + [sym_preproc_directive] = ACTIONS(1101), + [anon_sym_SEMI] = ACTIONS(1103), + [anon_sym_typedef] = ACTIONS(1101), + [anon_sym_extern] = ACTIONS(1101), + [anon_sym___attribute__] = ACTIONS(1101), + [anon_sym_LPAREN2] = ACTIONS(1103), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1103), + [anon_sym_static] = ACTIONS(1101), + [anon_sym_auto] = ACTIONS(1101), + [anon_sym_register] = ACTIONS(1101), + [anon_sym_inline] = ACTIONS(1101), + [anon_sym_const] = ACTIONS(1101), + [anon_sym_volatile] = ACTIONS(1101), + [anon_sym_restrict] = ACTIONS(1101), + [anon_sym__Atomic] = ACTIONS(1101), + [anon_sym_signed] = ACTIONS(1101), + [anon_sym_unsigned] = ACTIONS(1101), + [anon_sym_long] = ACTIONS(1101), + [anon_sym_short] = ACTIONS(1101), + [sym_primitive_type] = ACTIONS(1101), + [anon_sym_enum] = ACTIONS(1101), + [anon_sym_struct] = ACTIONS(1101), + [anon_sym_union] = ACTIONS(1101), + [anon_sym_if] = ACTIONS(1101), + [anon_sym_switch] = ACTIONS(1101), + [anon_sym_while] = ACTIONS(1101), + [anon_sym_do] = ACTIONS(1101), + [anon_sym_for] = ACTIONS(1101), + [anon_sym_return] = ACTIONS(1101), + [anon_sym_break] = ACTIONS(1101), + [anon_sym_continue] = ACTIONS(1101), + [anon_sym_goto] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1103), + [anon_sym_BANG] = ACTIONS(1103), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1103), + [anon_sym_PLUS_PLUS] = ACTIONS(1103), + [anon_sym_sizeof] = ACTIONS(1101), + [sym_number_literal] = ACTIONS(1103), + [anon_sym_L_SQUOTE] = ACTIONS(1103), + [anon_sym_SQUOTE] = ACTIONS(1103), + [anon_sym_L_DQUOTE] = ACTIONS(1103), + [anon_sym_DQUOTE] = ACTIONS(1103), + [sym_true] = ACTIONS(1101), + [sym_false] = ACTIONS(1101), + [sym_null] = ACTIONS(1101), + [sym_comment] = ACTIONS(3), }, [247] = { - [sym_char_literal] = STATE(54), - [sym__expression] = STATE(54), - [sym_binary_expression] = STATE(54), - [sym_update_expression] = STATE(54), - [sym_call_expression] = STATE(54), - [sym_pointer_expression] = STATE(54), - [sym_unary_expression] = STATE(54), - [sym_sizeof_expression] = STATE(54), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(54), - [sym_concatenated_string] = STATE(54), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(54), - [sym_assignment_expression] = STATE(54), - [sym_cast_expression] = STATE(54), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(54), - [sym_true] = ACTIONS(153), - [sym_null] = ACTIONS(153), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(155), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(159), - [sym_identifier] = ACTIONS(153), - [anon_sym_BANG] = ACTIONS(155), - [anon_sym_DASH] = ACTIONS(161), - [sym_number_literal] = ACTIONS(163), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(159), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_RBRACK] = ACTIONS(1288), - [anon_sym_sizeof] = ACTIONS(165), + [sym_identifier] = ACTIONS(1105), + [aux_sym_preproc_include_token1] = ACTIONS(1105), + [aux_sym_preproc_def_token1] = ACTIONS(1105), + [aux_sym_preproc_if_token1] = ACTIONS(1105), + [aux_sym_preproc_if_token2] = ACTIONS(1105), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1105), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1105), + [aux_sym_preproc_else_token1] = ACTIONS(1105), + [aux_sym_preproc_elif_token1] = ACTIONS(1105), + [sym_preproc_directive] = ACTIONS(1105), + [anon_sym_SEMI] = ACTIONS(1107), + [anon_sym_typedef] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1105), + [anon_sym___attribute__] = ACTIONS(1105), + [anon_sym_LPAREN2] = ACTIONS(1107), + [anon_sym_LBRACE] = ACTIONS(1107), + [anon_sym_STAR] = ACTIONS(1107), + [anon_sym_static] = ACTIONS(1105), + [anon_sym_auto] = ACTIONS(1105), + [anon_sym_register] = ACTIONS(1105), + [anon_sym_inline] = ACTIONS(1105), + [anon_sym_const] = ACTIONS(1105), + [anon_sym_volatile] = ACTIONS(1105), + [anon_sym_restrict] = ACTIONS(1105), + [anon_sym__Atomic] = ACTIONS(1105), + [anon_sym_signed] = ACTIONS(1105), + [anon_sym_unsigned] = ACTIONS(1105), + [anon_sym_long] = ACTIONS(1105), + [anon_sym_short] = ACTIONS(1105), + [sym_primitive_type] = ACTIONS(1105), + [anon_sym_enum] = ACTIONS(1105), + [anon_sym_struct] = ACTIONS(1105), + [anon_sym_union] = ACTIONS(1105), + [anon_sym_if] = ACTIONS(1105), + [anon_sym_switch] = ACTIONS(1105), + [anon_sym_while] = ACTIONS(1105), + [anon_sym_do] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1105), + [anon_sym_return] = ACTIONS(1105), + [anon_sym_break] = ACTIONS(1105), + [anon_sym_continue] = ACTIONS(1105), + [anon_sym_goto] = ACTIONS(1105), + [anon_sym_AMP] = ACTIONS(1107), + [anon_sym_BANG] = ACTIONS(1107), + [anon_sym_TILDE] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1105), + [anon_sym_PLUS] = ACTIONS(1105), + [anon_sym_DASH_DASH] = ACTIONS(1107), + [anon_sym_PLUS_PLUS] = ACTIONS(1107), + [anon_sym_sizeof] = ACTIONS(1105), + [sym_number_literal] = ACTIONS(1107), + [anon_sym_L_SQUOTE] = ACTIONS(1107), + [anon_sym_SQUOTE] = ACTIONS(1107), + [anon_sym_L_DQUOTE] = ACTIONS(1107), + [anon_sym_DQUOTE] = ACTIONS(1107), + [sym_true] = ACTIONS(1105), + [sym_false] = ACTIONS(1105), + [sym_null] = ACTIONS(1105), + [sym_comment] = ACTIONS(3), }, [248] = { + [sym_identifier] = ACTIONS(1109), + [aux_sym_preproc_include_token1] = ACTIONS(1109), + [aux_sym_preproc_def_token1] = ACTIONS(1109), + [aux_sym_preproc_if_token1] = ACTIONS(1109), + [aux_sym_preproc_if_token2] = ACTIONS(1109), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1109), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1109), + [aux_sym_preproc_else_token1] = ACTIONS(1109), + [aux_sym_preproc_elif_token1] = ACTIONS(1109), + [sym_preproc_directive] = ACTIONS(1109), + [anon_sym_SEMI] = ACTIONS(1111), + [anon_sym_typedef] = ACTIONS(1109), + [anon_sym_extern] = ACTIONS(1109), + [anon_sym___attribute__] = ACTIONS(1109), + [anon_sym_LPAREN2] = ACTIONS(1111), + [anon_sym_LBRACE] = ACTIONS(1111), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_static] = ACTIONS(1109), + [anon_sym_auto] = ACTIONS(1109), + [anon_sym_register] = ACTIONS(1109), + [anon_sym_inline] = ACTIONS(1109), + [anon_sym_const] = ACTIONS(1109), + [anon_sym_volatile] = ACTIONS(1109), + [anon_sym_restrict] = ACTIONS(1109), + [anon_sym__Atomic] = ACTIONS(1109), + [anon_sym_signed] = ACTIONS(1109), + [anon_sym_unsigned] = ACTIONS(1109), + [anon_sym_long] = ACTIONS(1109), + [anon_sym_short] = ACTIONS(1109), + [sym_primitive_type] = ACTIONS(1109), + [anon_sym_enum] = ACTIONS(1109), + [anon_sym_struct] = ACTIONS(1109), + [anon_sym_union] = ACTIONS(1109), + [anon_sym_if] = ACTIONS(1109), + [anon_sym_switch] = ACTIONS(1109), + [anon_sym_while] = ACTIONS(1109), + [anon_sym_do] = ACTIONS(1109), + [anon_sym_for] = ACTIONS(1109), + [anon_sym_return] = ACTIONS(1109), + [anon_sym_break] = ACTIONS(1109), + [anon_sym_continue] = ACTIONS(1109), + [anon_sym_goto] = ACTIONS(1109), + [anon_sym_AMP] = ACTIONS(1111), + [anon_sym_BANG] = ACTIONS(1111), + [anon_sym_TILDE] = ACTIONS(1111), + [anon_sym_DASH] = ACTIONS(1109), + [anon_sym_PLUS] = ACTIONS(1109), + [anon_sym_DASH_DASH] = ACTIONS(1111), + [anon_sym_PLUS_PLUS] = ACTIONS(1111), + [anon_sym_sizeof] = ACTIONS(1109), + [sym_number_literal] = ACTIONS(1111), + [anon_sym_L_SQUOTE] = ACTIONS(1111), + [anon_sym_SQUOTE] = ACTIONS(1111), + [anon_sym_L_DQUOTE] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1111), + [sym_true] = ACTIONS(1109), + [sym_false] = ACTIONS(1109), + [sym_null] = ACTIONS(1109), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(1290), - [anon_sym_LPAREN2] = ACTIONS(1290), - [anon_sym_COMMA] = ACTIONS(1290), - [anon_sym_LBRACK] = ACTIONS(1290), }, [249] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_RBRACK] = ACTIONS(1288), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [sym_identifier] = ACTIONS(1071), + [aux_sym_preproc_include_token1] = ACTIONS(1071), + [aux_sym_preproc_def_token1] = ACTIONS(1071), + [aux_sym_preproc_if_token1] = ACTIONS(1071), + [aux_sym_preproc_if_token2] = ACTIONS(1071), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1071), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1071), + [aux_sym_preproc_else_token1] = ACTIONS(1071), + [aux_sym_preproc_elif_token1] = ACTIONS(1071), + [sym_preproc_directive] = ACTIONS(1071), + [anon_sym_SEMI] = ACTIONS(1069), + [anon_sym_typedef] = ACTIONS(1071), + [anon_sym_extern] = ACTIONS(1071), + [anon_sym___attribute__] = ACTIONS(1071), + [anon_sym_LPAREN2] = ACTIONS(1069), + [anon_sym_LBRACE] = ACTIONS(1069), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_static] = ACTIONS(1071), + [anon_sym_auto] = ACTIONS(1071), + [anon_sym_register] = ACTIONS(1071), + [anon_sym_inline] = ACTIONS(1071), + [anon_sym_const] = ACTIONS(1071), + [anon_sym_volatile] = ACTIONS(1071), + [anon_sym_restrict] = ACTIONS(1071), + [anon_sym__Atomic] = ACTIONS(1071), + [anon_sym_signed] = ACTIONS(1071), + [anon_sym_unsigned] = ACTIONS(1071), + [anon_sym_long] = ACTIONS(1071), + [anon_sym_short] = ACTIONS(1071), + [sym_primitive_type] = ACTIONS(1071), + [anon_sym_enum] = ACTIONS(1071), + [anon_sym_struct] = ACTIONS(1071), + [anon_sym_union] = ACTIONS(1071), + [anon_sym_if] = ACTIONS(1071), + [anon_sym_switch] = ACTIONS(1071), + [anon_sym_while] = ACTIONS(1071), + [anon_sym_do] = ACTIONS(1071), + [anon_sym_for] = ACTIONS(1071), + [anon_sym_return] = ACTIONS(1071), + [anon_sym_break] = ACTIONS(1071), + [anon_sym_continue] = ACTIONS(1071), + [anon_sym_goto] = ACTIONS(1071), + [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(1071), + [anon_sym_DASH_DASH] = ACTIONS(1069), + [anon_sym_PLUS_PLUS] = ACTIONS(1069), + [anon_sym_sizeof] = ACTIONS(1071), + [sym_number_literal] = ACTIONS(1069), + [anon_sym_L_SQUOTE] = ACTIONS(1069), + [anon_sym_SQUOTE] = ACTIONS(1069), + [anon_sym_L_DQUOTE] = ACTIONS(1069), + [anon_sym_DQUOTE] = ACTIONS(1069), + [sym_true] = ACTIONS(1071), + [sym_false] = ACTIONS(1071), + [sym_null] = ACTIONS(1071), + [sym_comment] = ACTIONS(3), }, [250] = { - [sym__expression] = STATE(351), - [sym_binary_expression] = STATE(351), - [sym_update_expression] = STATE(351), - [sym_call_expression] = STATE(36), - [sym_type_qualifier] = STATE(144), - [sym_conditional_expression] = STATE(351), - [sym_assignment_expression] = STATE(351), - [sym_cast_expression] = STATE(351), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(351), - [sym_char_literal] = STATE(351), - [aux_sym_type_definition_repeat1] = STATE(144), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(351), - [sym_sizeof_expression] = STATE(351), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(351), - [sym_string_literal] = STATE(41), - [sym_true] = ACTIONS(1292), - [anon_sym_restrict] = ACTIONS(7), - [sym_null] = ACTIONS(1292), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_const] = ACTIONS(7), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_DASH_DASH] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(7), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(1294), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(1296), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_RBRACK] = ACTIONS(1298), - [anon_sym_sizeof] = ACTIONS(33), + [sym_identifier] = ACTIONS(1113), + [aux_sym_preproc_include_token1] = ACTIONS(1113), + [aux_sym_preproc_def_token1] = ACTIONS(1113), + [aux_sym_preproc_if_token1] = ACTIONS(1113), + [aux_sym_preproc_if_token2] = ACTIONS(1113), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1113), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1113), + [aux_sym_preproc_else_token1] = ACTIONS(1113), + [aux_sym_preproc_elif_token1] = ACTIONS(1113), + [sym_preproc_directive] = ACTIONS(1113), + [anon_sym_SEMI] = ACTIONS(1115), + [anon_sym_typedef] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1113), + [anon_sym___attribute__] = ACTIONS(1113), + [anon_sym_LPAREN2] = ACTIONS(1115), + [anon_sym_LBRACE] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_static] = ACTIONS(1113), + [anon_sym_auto] = ACTIONS(1113), + [anon_sym_register] = ACTIONS(1113), + [anon_sym_inline] = ACTIONS(1113), + [anon_sym_const] = ACTIONS(1113), + [anon_sym_volatile] = ACTIONS(1113), + [anon_sym_restrict] = ACTIONS(1113), + [anon_sym__Atomic] = ACTIONS(1113), + [anon_sym_signed] = ACTIONS(1113), + [anon_sym_unsigned] = ACTIONS(1113), + [anon_sym_long] = ACTIONS(1113), + [anon_sym_short] = ACTIONS(1113), + [sym_primitive_type] = ACTIONS(1113), + [anon_sym_enum] = ACTIONS(1113), + [anon_sym_struct] = ACTIONS(1113), + [anon_sym_union] = ACTIONS(1113), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_switch] = ACTIONS(1113), + [anon_sym_while] = ACTIONS(1113), + [anon_sym_do] = ACTIONS(1113), + [anon_sym_for] = ACTIONS(1113), + [anon_sym_return] = ACTIONS(1113), + [anon_sym_break] = ACTIONS(1113), + [anon_sym_continue] = ACTIONS(1113), + [anon_sym_goto] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(1115), + [anon_sym_BANG] = ACTIONS(1115), + [anon_sym_TILDE] = ACTIONS(1115), + [anon_sym_DASH] = ACTIONS(1113), + [anon_sym_PLUS] = ACTIONS(1113), + [anon_sym_DASH_DASH] = ACTIONS(1115), + [anon_sym_PLUS_PLUS] = ACTIONS(1115), + [anon_sym_sizeof] = ACTIONS(1113), + [sym_number_literal] = ACTIONS(1115), + [anon_sym_L_SQUOTE] = ACTIONS(1115), + [anon_sym_SQUOTE] = ACTIONS(1115), + [anon_sym_L_DQUOTE] = ACTIONS(1115), + [anon_sym_DQUOTE] = ACTIONS(1115), + [sym_true] = ACTIONS(1113), + [sym_false] = ACTIONS(1113), + [sym_null] = ACTIONS(1113), + [sym_comment] = ACTIONS(3), }, [251] = { - [sym__expression] = STATE(354), - [sym_binary_expression] = STATE(354), - [sym_update_expression] = STATE(354), - [sym_call_expression] = STATE(36), - [sym_type_qualifier] = STATE(355), - [sym_conditional_expression] = STATE(354), - [sym_assignment_expression] = STATE(354), - [sym_cast_expression] = STATE(354), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(354), - [sym_char_literal] = STATE(354), - [aux_sym_type_definition_repeat1] = STATE(355), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(354), - [sym_sizeof_expression] = STATE(354), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(354), - [sym_string_literal] = STATE(41), - [sym_true] = ACTIONS(1300), - [anon_sym_restrict] = ACTIONS(7), - [sym_null] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_const] = ACTIONS(7), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_DASH_DASH] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(7), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(1302), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(1304), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(1300), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_RBRACK] = ACTIONS(1306), - [anon_sym_sizeof] = ACTIONS(33), + [sym_identifier] = ACTIONS(1117), + [aux_sym_preproc_include_token1] = ACTIONS(1117), + [aux_sym_preproc_def_token1] = ACTIONS(1117), + [aux_sym_preproc_if_token1] = ACTIONS(1117), + [aux_sym_preproc_if_token2] = ACTIONS(1117), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1117), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1117), + [aux_sym_preproc_else_token1] = ACTIONS(1117), + [aux_sym_preproc_elif_token1] = ACTIONS(1117), + [sym_preproc_directive] = ACTIONS(1117), + [anon_sym_SEMI] = ACTIONS(1119), + [anon_sym_typedef] = ACTIONS(1117), + [anon_sym_extern] = ACTIONS(1117), + [anon_sym___attribute__] = ACTIONS(1117), + [anon_sym_LPAREN2] = ACTIONS(1119), + [anon_sym_LBRACE] = ACTIONS(1119), + [anon_sym_STAR] = ACTIONS(1119), + [anon_sym_static] = ACTIONS(1117), + [anon_sym_auto] = ACTIONS(1117), + [anon_sym_register] = ACTIONS(1117), + [anon_sym_inline] = ACTIONS(1117), + [anon_sym_const] = ACTIONS(1117), + [anon_sym_volatile] = ACTIONS(1117), + [anon_sym_restrict] = ACTIONS(1117), + [anon_sym__Atomic] = ACTIONS(1117), + [anon_sym_signed] = ACTIONS(1117), + [anon_sym_unsigned] = ACTIONS(1117), + [anon_sym_long] = ACTIONS(1117), + [anon_sym_short] = ACTIONS(1117), + [sym_primitive_type] = ACTIONS(1117), + [anon_sym_enum] = ACTIONS(1117), + [anon_sym_struct] = ACTIONS(1117), + [anon_sym_union] = ACTIONS(1117), + [anon_sym_if] = ACTIONS(1117), + [anon_sym_switch] = ACTIONS(1117), + [anon_sym_while] = ACTIONS(1117), + [anon_sym_do] = ACTIONS(1117), + [anon_sym_for] = ACTIONS(1117), + [anon_sym_return] = ACTIONS(1117), + [anon_sym_break] = ACTIONS(1117), + [anon_sym_continue] = ACTIONS(1117), + [anon_sym_goto] = ACTIONS(1117), + [anon_sym_AMP] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_TILDE] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1117), + [anon_sym_DASH_DASH] = ACTIONS(1119), + [anon_sym_PLUS_PLUS] = ACTIONS(1119), + [anon_sym_sizeof] = ACTIONS(1117), + [sym_number_literal] = ACTIONS(1119), + [anon_sym_L_SQUOTE] = ACTIONS(1119), + [anon_sym_SQUOTE] = ACTIONS(1119), + [anon_sym_L_DQUOTE] = ACTIONS(1119), + [anon_sym_DQUOTE] = ACTIONS(1119), + [sym_true] = ACTIONS(1117), + [sym_false] = ACTIONS(1117), + [sym_null] = ACTIONS(1117), + [sym_comment] = ACTIONS(3), }, [252] = { + [sym_identifier] = ACTIONS(1121), + [aux_sym_preproc_include_token1] = ACTIONS(1121), + [aux_sym_preproc_def_token1] = ACTIONS(1121), + [aux_sym_preproc_if_token1] = ACTIONS(1121), + [aux_sym_preproc_if_token2] = ACTIONS(1121), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1121), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1121), + [aux_sym_preproc_else_token1] = ACTIONS(1121), + [aux_sym_preproc_elif_token1] = ACTIONS(1121), + [sym_preproc_directive] = ACTIONS(1121), + [anon_sym_SEMI] = ACTIONS(1123), + [anon_sym_typedef] = ACTIONS(1121), + [anon_sym_extern] = ACTIONS(1121), + [anon_sym___attribute__] = ACTIONS(1121), + [anon_sym_LPAREN2] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1123), + [anon_sym_static] = ACTIONS(1121), + [anon_sym_auto] = ACTIONS(1121), + [anon_sym_register] = ACTIONS(1121), + [anon_sym_inline] = ACTIONS(1121), + [anon_sym_const] = ACTIONS(1121), + [anon_sym_volatile] = ACTIONS(1121), + [anon_sym_restrict] = ACTIONS(1121), + [anon_sym__Atomic] = ACTIONS(1121), + [anon_sym_signed] = ACTIONS(1121), + [anon_sym_unsigned] = ACTIONS(1121), + [anon_sym_long] = ACTIONS(1121), + [anon_sym_short] = ACTIONS(1121), + [sym_primitive_type] = ACTIONS(1121), + [anon_sym_enum] = ACTIONS(1121), + [anon_sym_struct] = ACTIONS(1121), + [anon_sym_union] = ACTIONS(1121), + [anon_sym_if] = ACTIONS(1121), + [anon_sym_switch] = ACTIONS(1121), + [anon_sym_while] = ACTIONS(1121), + [anon_sym_do] = ACTIONS(1121), + [anon_sym_for] = ACTIONS(1121), + [anon_sym_return] = ACTIONS(1121), + [anon_sym_break] = ACTIONS(1121), + [anon_sym_continue] = ACTIONS(1121), + [anon_sym_goto] = ACTIONS(1121), + [anon_sym_AMP] = ACTIONS(1123), + [anon_sym_BANG] = ACTIONS(1123), + [anon_sym_TILDE] = ACTIONS(1123), + [anon_sym_DASH] = ACTIONS(1121), + [anon_sym_PLUS] = ACTIONS(1121), + [anon_sym_DASH_DASH] = ACTIONS(1123), + [anon_sym_PLUS_PLUS] = ACTIONS(1123), + [anon_sym_sizeof] = ACTIONS(1121), + [sym_number_literal] = ACTIONS(1123), + [anon_sym_L_SQUOTE] = ACTIONS(1123), + [anon_sym_SQUOTE] = ACTIONS(1123), + [anon_sym_L_DQUOTE] = ACTIONS(1123), + [anon_sym_DQUOTE] = ACTIONS(1123), + [sym_true] = ACTIONS(1121), + [sym_false] = ACTIONS(1121), + [sym_null] = ACTIONS(1121), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(1308), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_COMMA] = ACTIONS(1308), - [anon_sym_LBRACK] = ACTIONS(1308), }, [253] = { - [sym_parameter_list] = STATE(252), + [sym_identifier] = ACTIONS(1125), + [aux_sym_preproc_include_token1] = ACTIONS(1125), + [aux_sym_preproc_def_token1] = ACTIONS(1125), + [aux_sym_preproc_if_token1] = ACTIONS(1125), + [aux_sym_preproc_if_token2] = ACTIONS(1125), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1125), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1125), + [aux_sym_preproc_else_token1] = ACTIONS(1125), + [aux_sym_preproc_elif_token1] = ACTIONS(1125), + [sym_preproc_directive] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1127), + [anon_sym_typedef] = ACTIONS(1125), + [anon_sym_extern] = ACTIONS(1125), + [anon_sym___attribute__] = ACTIONS(1125), + [anon_sym_LPAREN2] = ACTIONS(1127), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_STAR] = ACTIONS(1127), + [anon_sym_static] = ACTIONS(1125), + [anon_sym_auto] = ACTIONS(1125), + [anon_sym_register] = ACTIONS(1125), + [anon_sym_inline] = ACTIONS(1125), + [anon_sym_const] = ACTIONS(1125), + [anon_sym_volatile] = ACTIONS(1125), + [anon_sym_restrict] = ACTIONS(1125), + [anon_sym__Atomic] = ACTIONS(1125), + [anon_sym_signed] = ACTIONS(1125), + [anon_sym_unsigned] = ACTIONS(1125), + [anon_sym_long] = ACTIONS(1125), + [anon_sym_short] = ACTIONS(1125), + [sym_primitive_type] = ACTIONS(1125), + [anon_sym_enum] = ACTIONS(1125), + [anon_sym_struct] = ACTIONS(1125), + [anon_sym_union] = ACTIONS(1125), + [anon_sym_if] = ACTIONS(1125), + [anon_sym_switch] = ACTIONS(1125), + [anon_sym_while] = ACTIONS(1125), + [anon_sym_do] = ACTIONS(1125), + [anon_sym_for] = ACTIONS(1125), + [anon_sym_return] = ACTIONS(1125), + [anon_sym_break] = ACTIONS(1125), + [anon_sym_continue] = ACTIONS(1125), + [anon_sym_goto] = ACTIONS(1125), + [anon_sym_AMP] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_TILDE] = ACTIONS(1127), + [anon_sym_DASH] = ACTIONS(1125), + [anon_sym_PLUS] = ACTIONS(1125), + [anon_sym_DASH_DASH] = ACTIONS(1127), + [anon_sym_PLUS_PLUS] = ACTIONS(1127), + [anon_sym_sizeof] = ACTIONS(1125), + [sym_number_literal] = ACTIONS(1127), + [anon_sym_L_SQUOTE] = ACTIONS(1127), + [anon_sym_SQUOTE] = ACTIONS(1127), + [anon_sym_L_DQUOTE] = ACTIONS(1127), + [anon_sym_DQUOTE] = ACTIONS(1127), + [sym_true] = ACTIONS(1125), + [sym_false] = ACTIONS(1125), + [sym_null] = ACTIONS(1125), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(652), - [anon_sym_LBRACK] = ACTIONS(923), }, [254] = { - [sym_parameter_list] = STATE(261), - [anon_sym_LBRACK] = ACTIONS(935), + [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), + [sym_preproc_directive] = ACTIONS(1129), + [anon_sym_SEMI] = ACTIONS(1131), + [anon_sym_typedef] = ACTIONS(1129), + [anon_sym_extern] = ACTIONS(1129), + [anon_sym___attribute__] = ACTIONS(1129), + [anon_sym_LPAREN2] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1131), + [anon_sym_static] = ACTIONS(1129), + [anon_sym_auto] = ACTIONS(1129), + [anon_sym_register] = ACTIONS(1129), + [anon_sym_inline] = ACTIONS(1129), + [anon_sym_const] = ACTIONS(1129), + [anon_sym_volatile] = ACTIONS(1129), + [anon_sym_restrict] = ACTIONS(1129), + [anon_sym__Atomic] = ACTIONS(1129), + [anon_sym_signed] = ACTIONS(1129), + [anon_sym_unsigned] = ACTIONS(1129), + [anon_sym_long] = ACTIONS(1129), + [anon_sym_short] = 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_switch] = 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_AMP] = ACTIONS(1131), + [anon_sym_BANG] = ACTIONS(1131), + [anon_sym_TILDE] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1131), + [anon_sym_PLUS_PLUS] = ACTIONS(1131), + [anon_sym_sizeof] = ACTIONS(1129), + [sym_number_literal] = ACTIONS(1131), + [anon_sym_L_SQUOTE] = ACTIONS(1131), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_L_DQUOTE] = ACTIONS(1131), + [anon_sym_DQUOTE] = ACTIONS(1131), + [sym_true] = ACTIONS(1129), + [sym_false] = ACTIONS(1129), + [sym_null] = ACTIONS(1129), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(1312), - [anon_sym_LPAREN2] = ACTIONS(652), - [anon_sym_COMMA] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), }, [255] = { - [sym_type_qualifier] = STATE(144), - [sym_function_type_declarator] = STATE(356), - [aux_sym_type_definition_repeat1] = STATE(144), - [sym_pointer_type_declarator] = STATE(356), - [sym_parenthesized_type_declarator] = STATE(356), - [sym_array_type_declarator] = STATE(356), - [sym__type_declarator] = STATE(356), - [anon_sym_const] = ACTIONS(7), - [anon_sym_LPAREN2] = ACTIONS(455), - [anon_sym_restrict] = ACTIONS(7), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym__Atomic] = ACTIONS(7), - [anon_sym_STAR] = ACTIONS(453), - [sym_identifier] = ACTIONS(927), + [sym_identifier] = ACTIONS(1133), + [aux_sym_preproc_include_token1] = ACTIONS(1133), + [aux_sym_preproc_def_token1] = ACTIONS(1133), + [aux_sym_preproc_if_token1] = ACTIONS(1133), + [aux_sym_preproc_if_token2] = ACTIONS(1133), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1133), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1133), + [aux_sym_preproc_else_token1] = ACTIONS(1133), + [aux_sym_preproc_elif_token1] = ACTIONS(1133), + [sym_preproc_directive] = ACTIONS(1133), + [anon_sym_SEMI] = ACTIONS(1135), + [anon_sym_typedef] = ACTIONS(1133), + [anon_sym_extern] = ACTIONS(1133), + [anon_sym___attribute__] = ACTIONS(1133), + [anon_sym_LPAREN2] = ACTIONS(1135), + [anon_sym_LBRACE] = ACTIONS(1135), + [anon_sym_STAR] = ACTIONS(1135), + [anon_sym_static] = ACTIONS(1133), + [anon_sym_auto] = ACTIONS(1133), + [anon_sym_register] = ACTIONS(1133), + [anon_sym_inline] = ACTIONS(1133), + [anon_sym_const] = ACTIONS(1133), + [anon_sym_volatile] = ACTIONS(1133), + [anon_sym_restrict] = ACTIONS(1133), + [anon_sym__Atomic] = ACTIONS(1133), + [anon_sym_signed] = ACTIONS(1133), + [anon_sym_unsigned] = ACTIONS(1133), + [anon_sym_long] = ACTIONS(1133), + [anon_sym_short] = ACTIONS(1133), + [sym_primitive_type] = ACTIONS(1133), + [anon_sym_enum] = ACTIONS(1133), + [anon_sym_struct] = ACTIONS(1133), + [anon_sym_union] = ACTIONS(1133), + [anon_sym_if] = ACTIONS(1133), + [anon_sym_switch] = ACTIONS(1133), + [anon_sym_while] = ACTIONS(1133), + [anon_sym_do] = ACTIONS(1133), + [anon_sym_for] = ACTIONS(1133), + [anon_sym_return] = ACTIONS(1133), + [anon_sym_break] = ACTIONS(1133), + [anon_sym_continue] = ACTIONS(1133), + [anon_sym_goto] = ACTIONS(1133), + [anon_sym_AMP] = ACTIONS(1135), + [anon_sym_BANG] = ACTIONS(1135), + [anon_sym_TILDE] = ACTIONS(1135), + [anon_sym_DASH] = ACTIONS(1133), + [anon_sym_PLUS] = ACTIONS(1133), + [anon_sym_DASH_DASH] = ACTIONS(1135), + [anon_sym_PLUS_PLUS] = ACTIONS(1135), + [anon_sym_sizeof] = ACTIONS(1133), + [sym_number_literal] = ACTIONS(1135), + [anon_sym_L_SQUOTE] = ACTIONS(1135), + [anon_sym_SQUOTE] = ACTIONS(1135), + [anon_sym_L_DQUOTE] = ACTIONS(1135), + [anon_sym_DQUOTE] = ACTIONS(1135), + [sym_true] = ACTIONS(1133), + [sym_false] = ACTIONS(1133), + [sym_null] = ACTIONS(1133), [sym_comment] = ACTIONS(3), }, [256] = { - [sym_parameter_list] = STATE(261), + [sym_identifier] = ACTIONS(1137), + [aux_sym_preproc_include_token1] = ACTIONS(1137), + [aux_sym_preproc_def_token1] = ACTIONS(1137), + [aux_sym_preproc_if_token1] = ACTIONS(1137), + [aux_sym_preproc_if_token2] = ACTIONS(1137), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1137), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1137), + [aux_sym_preproc_else_token1] = ACTIONS(1137), + [aux_sym_preproc_elif_token1] = ACTIONS(1137), + [sym_preproc_directive] = ACTIONS(1137), + [anon_sym_SEMI] = ACTIONS(1139), + [anon_sym_typedef] = ACTIONS(1137), + [anon_sym_extern] = ACTIONS(1137), + [anon_sym___attribute__] = ACTIONS(1137), + [anon_sym_LPAREN2] = ACTIONS(1139), + [anon_sym_LBRACE] = ACTIONS(1139), + [anon_sym_STAR] = ACTIONS(1139), + [anon_sym_static] = ACTIONS(1137), + [anon_sym_auto] = ACTIONS(1137), + [anon_sym_register] = ACTIONS(1137), + [anon_sym_inline] = ACTIONS(1137), + [anon_sym_const] = ACTIONS(1137), + [anon_sym_volatile] = ACTIONS(1137), + [anon_sym_restrict] = ACTIONS(1137), + [anon_sym__Atomic] = ACTIONS(1137), + [anon_sym_signed] = ACTIONS(1137), + [anon_sym_unsigned] = ACTIONS(1137), + [anon_sym_long] = ACTIONS(1137), + [anon_sym_short] = ACTIONS(1137), + [sym_primitive_type] = ACTIONS(1137), + [anon_sym_enum] = ACTIONS(1137), + [anon_sym_struct] = ACTIONS(1137), + [anon_sym_union] = ACTIONS(1137), + [anon_sym_if] = ACTIONS(1137), + [anon_sym_switch] = ACTIONS(1137), + [anon_sym_while] = ACTIONS(1137), + [anon_sym_do] = ACTIONS(1137), + [anon_sym_for] = ACTIONS(1137), + [anon_sym_return] = ACTIONS(1137), + [anon_sym_break] = ACTIONS(1137), + [anon_sym_continue] = ACTIONS(1137), + [anon_sym_goto] = ACTIONS(1137), + [anon_sym_AMP] = ACTIONS(1139), + [anon_sym_BANG] = ACTIONS(1139), + [anon_sym_TILDE] = ACTIONS(1139), + [anon_sym_DASH] = ACTIONS(1137), + [anon_sym_PLUS] = ACTIONS(1137), + [anon_sym_DASH_DASH] = ACTIONS(1139), + [anon_sym_PLUS_PLUS] = ACTIONS(1139), + [anon_sym_sizeof] = ACTIONS(1137), + [sym_number_literal] = ACTIONS(1139), + [anon_sym_L_SQUOTE] = ACTIONS(1139), + [anon_sym_SQUOTE] = ACTIONS(1139), + [anon_sym_L_DQUOTE] = ACTIONS(1139), + [anon_sym_DQUOTE] = ACTIONS(1139), + [sym_true] = ACTIONS(1137), + [sym_false] = ACTIONS(1137), + [sym_null] = ACTIONS(1137), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(1314), - [anon_sym_LPAREN2] = ACTIONS(652), - [anon_sym_LBRACK] = ACTIONS(935), }, [257] = { - [anon_sym_case] = ACTIONS(1316), - [sym_true] = ACTIONS(1316), - [anon_sym_restrict] = ACTIONS(1316), - [sym_null] = ACTIONS(1316), - [anon_sym_goto] = ACTIONS(1316), - [anon_sym_const] = ACTIONS(1316), - [anon_sym_typedef] = ACTIONS(1316), - [anon_sym_DASH_DASH] = ACTIONS(1318), - [anon_sym_default] = ACTIONS(1316), - [anon_sym__Atomic] = ACTIONS(1316), - [sym_identifier] = ACTIONS(1316), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1316), - [sym_number_literal] = ACTIONS(1318), - [anon_sym_volatile] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(1318), - [anon_sym_extern] = ACTIONS(1316), - [anon_sym_PLUS_PLUS] = ACTIONS(1318), - [anon_sym_struct] = ACTIONS(1316), - [anon_sym_signed] = ACTIONS(1316), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1316), - [anon_sym_while] = ACTIONS(1316), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1316), - [anon_sym_L_SQUOTE] = ACTIONS(1318), - [anon_sym___attribute__] = ACTIONS(1316), - [anon_sym_sizeof] = ACTIONS(1316), - [anon_sym_LBRACE] = ACTIONS(1318), - [anon_sym_union] = ACTIONS(1316), - [anon_sym_unsigned] = ACTIONS(1316), - [anon_sym_short] = ACTIONS(1316), - [anon_sym_do] = ACTIONS(1316), - [sym_preproc_directive] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1318), - [aux_sym_preproc_if_token1] = ACTIONS(1316), - [anon_sym_TILDE] = ACTIONS(1318), - [anon_sym_L_DQUOTE] = ACTIONS(1318), - [anon_sym_LPAREN2] = ACTIONS(1318), - [anon_sym_RBRACE] = ACTIONS(1318), - [sym_primitive_type] = ACTIONS(1316), - [anon_sym_for] = ACTIONS(1316), - [anon_sym_break] = ACTIONS(1316), - [anon_sym_BANG] = ACTIONS(1318), - [aux_sym_preproc_include_token1] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1316), - [anon_sym_static] = ACTIONS(1316), - [anon_sym_DQUOTE] = ACTIONS(1318), - [anon_sym_register] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1318), - [anon_sym_if] = ACTIONS(1316), - [anon_sym_switch] = ACTIONS(1316), - [anon_sym_enum] = ACTIONS(1316), - [sym_false] = ACTIONS(1316), - [ts_builtin_sym_end] = ACTIONS(1318), - [anon_sym_return] = ACTIONS(1316), - [anon_sym_continue] = ACTIONS(1316), - [anon_sym_SEMI] = ACTIONS(1318), - [aux_sym_preproc_def_token1] = ACTIONS(1316), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_auto] = ACTIONS(1316), - [anon_sym_inline] = ACTIONS(1316), + [sym_identifier] = ACTIONS(1141), + [aux_sym_preproc_include_token1] = ACTIONS(1141), + [aux_sym_preproc_def_token1] = ACTIONS(1141), + [aux_sym_preproc_if_token1] = ACTIONS(1141), + [aux_sym_preproc_if_token2] = ACTIONS(1141), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1141), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1141), + [aux_sym_preproc_else_token1] = ACTIONS(1141), + [aux_sym_preproc_elif_token1] = ACTIONS(1141), + [sym_preproc_directive] = ACTIONS(1141), + [anon_sym_SEMI] = ACTIONS(1143), + [anon_sym_typedef] = ACTIONS(1141), + [anon_sym_extern] = ACTIONS(1141), + [anon_sym___attribute__] = ACTIONS(1141), + [anon_sym_LPAREN2] = ACTIONS(1143), + [anon_sym_LBRACE] = ACTIONS(1143), + [anon_sym_STAR] = ACTIONS(1143), + [anon_sym_static] = ACTIONS(1141), + [anon_sym_auto] = ACTIONS(1141), + [anon_sym_register] = ACTIONS(1141), + [anon_sym_inline] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_volatile] = ACTIONS(1141), + [anon_sym_restrict] = ACTIONS(1141), + [anon_sym__Atomic] = ACTIONS(1141), + [anon_sym_signed] = ACTIONS(1141), + [anon_sym_unsigned] = ACTIONS(1141), + [anon_sym_long] = ACTIONS(1141), + [anon_sym_short] = ACTIONS(1141), + [sym_primitive_type] = ACTIONS(1141), + [anon_sym_enum] = ACTIONS(1141), + [anon_sym_struct] = ACTIONS(1141), + [anon_sym_union] = ACTIONS(1141), + [anon_sym_if] = ACTIONS(1141), + [anon_sym_switch] = ACTIONS(1141), + [anon_sym_while] = ACTIONS(1141), + [anon_sym_do] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1141), + [anon_sym_return] = ACTIONS(1141), + [anon_sym_break] = ACTIONS(1141), + [anon_sym_continue] = ACTIONS(1141), + [anon_sym_goto] = ACTIONS(1141), + [anon_sym_AMP] = ACTIONS(1143), + [anon_sym_BANG] = ACTIONS(1143), + [anon_sym_TILDE] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1141), + [anon_sym_PLUS] = ACTIONS(1141), + [anon_sym_DASH_DASH] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1143), + [anon_sym_sizeof] = ACTIONS(1141), + [sym_number_literal] = ACTIONS(1143), + [anon_sym_L_SQUOTE] = ACTIONS(1143), + [anon_sym_SQUOTE] = ACTIONS(1143), + [anon_sym_L_DQUOTE] = ACTIONS(1143), + [anon_sym_DQUOTE] = ACTIONS(1143), + [sym_true] = ACTIONS(1141), + [sym_false] = ACTIONS(1141), + [sym_null] = ACTIONS(1141), + [sym_comment] = ACTIONS(3), }, [258] = { - [sym_array_type_declarator] = STATE(358), - [sym_parenthesized_type_declarator] = STATE(358), - [sym_function_type_declarator] = STATE(358), - [sym__type_declarator] = STATE(358), - [sym_pointer_type_declarator] = STATE(358), - [anon_sym_STAR] = ACTIONS(453), - [anon_sym_LPAREN2] = ACTIONS(455), - [sym_identifier] = ACTIONS(457), + [sym_identifier] = ACTIONS(1145), + [aux_sym_preproc_include_token1] = ACTIONS(1145), + [aux_sym_preproc_def_token1] = ACTIONS(1145), + [aux_sym_preproc_if_token1] = ACTIONS(1145), + [aux_sym_preproc_if_token2] = ACTIONS(1145), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1145), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1145), + [aux_sym_preproc_else_token1] = ACTIONS(1145), + [aux_sym_preproc_elif_token1] = ACTIONS(1145), + [sym_preproc_directive] = ACTIONS(1145), + [anon_sym_SEMI] = ACTIONS(1147), + [anon_sym_typedef] = ACTIONS(1145), + [anon_sym_extern] = ACTIONS(1145), + [anon_sym___attribute__] = ACTIONS(1145), + [anon_sym_LPAREN2] = ACTIONS(1147), + [anon_sym_LBRACE] = ACTIONS(1147), + [anon_sym_STAR] = ACTIONS(1147), + [anon_sym_static] = ACTIONS(1145), + [anon_sym_auto] = ACTIONS(1145), + [anon_sym_register] = ACTIONS(1145), + [anon_sym_inline] = ACTIONS(1145), + [anon_sym_const] = ACTIONS(1145), + [anon_sym_volatile] = ACTIONS(1145), + [anon_sym_restrict] = ACTIONS(1145), + [anon_sym__Atomic] = ACTIONS(1145), + [anon_sym_signed] = ACTIONS(1145), + [anon_sym_unsigned] = ACTIONS(1145), + [anon_sym_long] = ACTIONS(1145), + [anon_sym_short] = ACTIONS(1145), + [sym_primitive_type] = ACTIONS(1145), + [anon_sym_enum] = ACTIONS(1145), + [anon_sym_struct] = ACTIONS(1145), + [anon_sym_union] = ACTIONS(1145), + [anon_sym_if] = ACTIONS(1145), + [anon_sym_switch] = ACTIONS(1145), + [anon_sym_while] = ACTIONS(1145), + [anon_sym_do] = ACTIONS(1145), + [anon_sym_for] = ACTIONS(1145), + [anon_sym_return] = ACTIONS(1145), + [anon_sym_break] = ACTIONS(1145), + [anon_sym_continue] = ACTIONS(1145), + [anon_sym_goto] = ACTIONS(1145), + [anon_sym_AMP] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(1147), + [anon_sym_TILDE] = ACTIONS(1147), + [anon_sym_DASH] = ACTIONS(1145), + [anon_sym_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1147), + [anon_sym_PLUS_PLUS] = ACTIONS(1147), + [anon_sym_sizeof] = ACTIONS(1145), + [sym_number_literal] = ACTIONS(1147), + [anon_sym_L_SQUOTE] = ACTIONS(1147), + [anon_sym_SQUOTE] = ACTIONS(1147), + [anon_sym_L_DQUOTE] = ACTIONS(1147), + [anon_sym_DQUOTE] = ACTIONS(1147), + [sym_true] = ACTIONS(1145), + [sym_false] = ACTIONS(1145), + [sym_null] = ACTIONS(1145), [sym_comment] = ACTIONS(3), }, [259] = { - [sym__expression] = STATE(361), - [sym_binary_expression] = STATE(361), - [sym_update_expression] = STATE(361), - [sym_call_expression] = STATE(36), - [sym_type_qualifier] = STATE(362), - [sym_conditional_expression] = STATE(361), - [sym_assignment_expression] = STATE(361), - [sym_cast_expression] = STATE(361), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(361), - [sym_char_literal] = STATE(361), - [aux_sym_type_definition_repeat1] = STATE(362), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(361), - [sym_sizeof_expression] = STATE(361), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(361), - [sym_string_literal] = STATE(41), - [sym_true] = ACTIONS(1320), - [anon_sym_restrict] = ACTIONS(7), - [sym_null] = ACTIONS(1320), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_const] = ACTIONS(7), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_DASH_DASH] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(7), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(1322), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(1324), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(1320), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_RBRACK] = ACTIONS(1326), - [anon_sym_sizeof] = ACTIONS(33), + [sym_identifier] = ACTIONS(1149), + [aux_sym_preproc_include_token1] = ACTIONS(1149), + [aux_sym_preproc_def_token1] = ACTIONS(1149), + [aux_sym_preproc_if_token1] = ACTIONS(1149), + [aux_sym_preproc_if_token2] = ACTIONS(1149), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1149), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1149), + [aux_sym_preproc_else_token1] = ACTIONS(1149), + [aux_sym_preproc_elif_token1] = ACTIONS(1149), + [sym_preproc_directive] = ACTIONS(1149), + [anon_sym_SEMI] = ACTIONS(1151), + [anon_sym_typedef] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1149), + [anon_sym___attribute__] = ACTIONS(1149), + [anon_sym_LPAREN2] = ACTIONS(1151), + [anon_sym_LBRACE] = ACTIONS(1151), + [anon_sym_STAR] = ACTIONS(1151), + [anon_sym_static] = ACTIONS(1149), + [anon_sym_auto] = ACTIONS(1149), + [anon_sym_register] = ACTIONS(1149), + [anon_sym_inline] = ACTIONS(1149), + [anon_sym_const] = ACTIONS(1149), + [anon_sym_volatile] = ACTIONS(1149), + [anon_sym_restrict] = ACTIONS(1149), + [anon_sym__Atomic] = ACTIONS(1149), + [anon_sym_signed] = ACTIONS(1149), + [anon_sym_unsigned] = ACTIONS(1149), + [anon_sym_long] = ACTIONS(1149), + [anon_sym_short] = ACTIONS(1149), + [sym_primitive_type] = ACTIONS(1149), + [anon_sym_enum] = ACTIONS(1149), + [anon_sym_struct] = ACTIONS(1149), + [anon_sym_union] = ACTIONS(1149), + [anon_sym_if] = ACTIONS(1149), + [anon_sym_switch] = ACTIONS(1149), + [anon_sym_while] = ACTIONS(1149), + [anon_sym_do] = ACTIONS(1149), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_return] = ACTIONS(1149), + [anon_sym_break] = ACTIONS(1149), + [anon_sym_continue] = ACTIONS(1149), + [anon_sym_goto] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(1151), + [anon_sym_BANG] = ACTIONS(1151), + [anon_sym_TILDE] = ACTIONS(1151), + [anon_sym_DASH] = ACTIONS(1149), + [anon_sym_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1151), + [anon_sym_PLUS_PLUS] = ACTIONS(1151), + [anon_sym_sizeof] = ACTIONS(1149), + [sym_number_literal] = ACTIONS(1151), + [anon_sym_L_SQUOTE] = ACTIONS(1151), + [anon_sym_SQUOTE] = ACTIONS(1151), + [anon_sym_L_DQUOTE] = ACTIONS(1151), + [anon_sym_DQUOTE] = ACTIONS(1151), + [sym_true] = ACTIONS(1149), + [sym_false] = ACTIONS(1149), + [sym_null] = ACTIONS(1149), + [sym_comment] = ACTIONS(3), }, [260] = { - [aux_sym_type_definition_repeat2] = STATE(364), - [anon_sym_SEMI] = ACTIONS(1328), - [anon_sym_COMMA] = ACTIONS(931), + [sym_identifier] = ACTIONS(1153), + [aux_sym_preproc_include_token1] = ACTIONS(1153), + [aux_sym_preproc_def_token1] = ACTIONS(1153), + [aux_sym_preproc_if_token1] = ACTIONS(1153), + [aux_sym_preproc_if_token2] = ACTIONS(1153), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1153), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1153), + [aux_sym_preproc_else_token1] = ACTIONS(1153), + [aux_sym_preproc_elif_token1] = ACTIONS(1153), + [sym_preproc_directive] = ACTIONS(1153), + [anon_sym_SEMI] = ACTIONS(1155), + [anon_sym_typedef] = ACTIONS(1153), + [anon_sym_extern] = ACTIONS(1153), + [anon_sym___attribute__] = ACTIONS(1153), + [anon_sym_LPAREN2] = ACTIONS(1155), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_STAR] = ACTIONS(1155), + [anon_sym_static] = ACTIONS(1153), + [anon_sym_auto] = ACTIONS(1153), + [anon_sym_register] = ACTIONS(1153), + [anon_sym_inline] = ACTIONS(1153), + [anon_sym_const] = ACTIONS(1153), + [anon_sym_volatile] = ACTIONS(1153), + [anon_sym_restrict] = ACTIONS(1153), + [anon_sym__Atomic] = ACTIONS(1153), + [anon_sym_signed] = ACTIONS(1153), + [anon_sym_unsigned] = ACTIONS(1153), + [anon_sym_long] = ACTIONS(1153), + [anon_sym_short] = ACTIONS(1153), + [sym_primitive_type] = ACTIONS(1153), + [anon_sym_enum] = ACTIONS(1153), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1153), + [anon_sym_if] = ACTIONS(1153), + [anon_sym_switch] = ACTIONS(1153), + [anon_sym_while] = ACTIONS(1153), + [anon_sym_do] = ACTIONS(1153), + [anon_sym_for] = ACTIONS(1153), + [anon_sym_return] = ACTIONS(1153), + [anon_sym_break] = ACTIONS(1153), + [anon_sym_continue] = ACTIONS(1153), + [anon_sym_goto] = ACTIONS(1153), + [anon_sym_AMP] = ACTIONS(1155), + [anon_sym_BANG] = ACTIONS(1155), + [anon_sym_TILDE] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1153), + [anon_sym_PLUS] = ACTIONS(1153), + [anon_sym_DASH_DASH] = ACTIONS(1155), + [anon_sym_PLUS_PLUS] = ACTIONS(1155), + [anon_sym_sizeof] = ACTIONS(1153), + [sym_number_literal] = ACTIONS(1155), + [anon_sym_L_SQUOTE] = ACTIONS(1155), + [anon_sym_SQUOTE] = ACTIONS(1155), + [anon_sym_L_DQUOTE] = ACTIONS(1155), + [anon_sym_DQUOTE] = ACTIONS(1155), + [sym_true] = ACTIONS(1153), + [sym_false] = ACTIONS(1153), + [sym_null] = ACTIONS(1153), [sym_comment] = ACTIONS(3), }, [261] = { - [anon_sym_LBRACK] = ACTIONS(1330), + [sym_identifier] = ACTIONS(1157), + [aux_sym_preproc_include_token1] = ACTIONS(1157), + [aux_sym_preproc_def_token1] = ACTIONS(1157), + [aux_sym_preproc_if_token1] = ACTIONS(1157), + [aux_sym_preproc_if_token2] = ACTIONS(1157), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1157), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1157), + [aux_sym_preproc_else_token1] = ACTIONS(1157), + [aux_sym_preproc_elif_token1] = ACTIONS(1157), + [sym_preproc_directive] = ACTIONS(1157), + [anon_sym_SEMI] = ACTIONS(1159), + [anon_sym_typedef] = ACTIONS(1157), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym___attribute__] = ACTIONS(1157), + [anon_sym_LPAREN2] = ACTIONS(1159), + [anon_sym_LBRACE] = ACTIONS(1159), + [anon_sym_STAR] = ACTIONS(1159), + [anon_sym_static] = ACTIONS(1157), + [anon_sym_auto] = ACTIONS(1157), + [anon_sym_register] = ACTIONS(1157), + [anon_sym_inline] = ACTIONS(1157), + [anon_sym_const] = ACTIONS(1157), + [anon_sym_volatile] = ACTIONS(1157), + [anon_sym_restrict] = ACTIONS(1157), + [anon_sym__Atomic] = ACTIONS(1157), + [anon_sym_signed] = ACTIONS(1157), + [anon_sym_unsigned] = ACTIONS(1157), + [anon_sym_long] = ACTIONS(1157), + [anon_sym_short] = ACTIONS(1157), + [sym_primitive_type] = ACTIONS(1157), + [anon_sym_enum] = ACTIONS(1157), + [anon_sym_struct] = ACTIONS(1157), + [anon_sym_union] = ACTIONS(1157), + [anon_sym_if] = ACTIONS(1157), + [anon_sym_switch] = ACTIONS(1157), + [anon_sym_while] = ACTIONS(1157), + [anon_sym_do] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1157), + [anon_sym_return] = ACTIONS(1157), + [anon_sym_break] = ACTIONS(1157), + [anon_sym_continue] = ACTIONS(1157), + [anon_sym_goto] = ACTIONS(1157), + [anon_sym_AMP] = ACTIONS(1159), + [anon_sym_BANG] = ACTIONS(1159), + [anon_sym_TILDE] = ACTIONS(1159), + [anon_sym_DASH] = ACTIONS(1157), + [anon_sym_PLUS] = ACTIONS(1157), + [anon_sym_DASH_DASH] = ACTIONS(1159), + [anon_sym_PLUS_PLUS] = ACTIONS(1159), + [anon_sym_sizeof] = ACTIONS(1157), + [sym_number_literal] = ACTIONS(1159), + [anon_sym_L_SQUOTE] = ACTIONS(1159), + [anon_sym_SQUOTE] = ACTIONS(1159), + [anon_sym_L_DQUOTE] = ACTIONS(1159), + [anon_sym_DQUOTE] = ACTIONS(1159), + [sym_true] = ACTIONS(1157), + [sym_false] = ACTIONS(1157), + [sym_null] = ACTIONS(1157), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(1330), - [anon_sym_LPAREN2] = ACTIONS(1330), - [anon_sym_COMMA] = ACTIONS(1330), - [anon_sym_SEMI] = ACTIONS(1330), }, [262] = { - [aux_sym_type_definition_repeat2] = STATE(366), - [sym_parameter_list] = STATE(261), + [sym_identifier] = ACTIONS(1079), + [aux_sym_preproc_include_token1] = ACTIONS(1079), + [aux_sym_preproc_def_token1] = ACTIONS(1079), + [aux_sym_preproc_if_token1] = ACTIONS(1079), + [aux_sym_preproc_if_token2] = ACTIONS(1079), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1079), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1079), + [aux_sym_preproc_else_token1] = ACTIONS(1079), + [aux_sym_preproc_elif_token1] = ACTIONS(1079), + [sym_preproc_directive] = ACTIONS(1079), + [anon_sym_SEMI] = ACTIONS(1077), + [anon_sym_typedef] = ACTIONS(1079), + [anon_sym_extern] = ACTIONS(1079), + [anon_sym___attribute__] = ACTIONS(1079), + [anon_sym_LPAREN2] = ACTIONS(1077), + [anon_sym_LBRACE] = ACTIONS(1077), + [anon_sym_STAR] = ACTIONS(1077), + [anon_sym_static] = ACTIONS(1079), + [anon_sym_auto] = ACTIONS(1079), + [anon_sym_register] = ACTIONS(1079), + [anon_sym_inline] = ACTIONS(1079), + [anon_sym_const] = ACTIONS(1079), + [anon_sym_volatile] = ACTIONS(1079), + [anon_sym_restrict] = ACTIONS(1079), + [anon_sym__Atomic] = ACTIONS(1079), + [anon_sym_signed] = ACTIONS(1079), + [anon_sym_unsigned] = ACTIONS(1079), + [anon_sym_long] = ACTIONS(1079), + [anon_sym_short] = ACTIONS(1079), + [sym_primitive_type] = ACTIONS(1079), + [anon_sym_enum] = ACTIONS(1079), + [anon_sym_struct] = ACTIONS(1079), + [anon_sym_union] = ACTIONS(1079), + [anon_sym_if] = ACTIONS(1079), + [anon_sym_switch] = ACTIONS(1079), + [anon_sym_while] = ACTIONS(1079), + [anon_sym_do] = ACTIONS(1079), + [anon_sym_for] = ACTIONS(1079), + [anon_sym_return] = ACTIONS(1079), + [anon_sym_break] = ACTIONS(1079), + [anon_sym_continue] = ACTIONS(1079), + [anon_sym_goto] = ACTIONS(1079), + [anon_sym_AMP] = ACTIONS(1077), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_TILDE] = ACTIONS(1077), + [anon_sym_DASH] = ACTIONS(1079), + [anon_sym_PLUS] = ACTIONS(1079), + [anon_sym_DASH_DASH] = ACTIONS(1077), + [anon_sym_PLUS_PLUS] = ACTIONS(1077), + [anon_sym_sizeof] = ACTIONS(1079), + [sym_number_literal] = ACTIONS(1077), + [anon_sym_L_SQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1077), + [anon_sym_L_DQUOTE] = ACTIONS(1077), + [anon_sym_DQUOTE] = ACTIONS(1077), + [sym_true] = ACTIONS(1079), + [sym_false] = ACTIONS(1079), + [sym_null] = ACTIONS(1079), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(652), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_SEMI] = ACTIONS(1332), - [anon_sym_LBRACK] = ACTIONS(935), }, [263] = { - [anon_sym_restrict] = ACTIONS(1334), - [anon_sym_COMMA] = ACTIONS(1336), - [anon_sym_static] = ACTIONS(1334), - [anon_sym_volatile] = ACTIONS(1334), - [anon_sym_register] = ACTIONS(1334), - [anon_sym_extern] = ACTIONS(1334), - [anon_sym_STAR] = ACTIONS(1336), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(1334), - [anon_sym_LPAREN2] = ACTIONS(1336), - [anon_sym_COLON] = ACTIONS(1336), - [anon_sym_SEMI] = ACTIONS(1336), - [anon_sym__Atomic] = ACTIONS(1334), - [sym_identifier] = ACTIONS(1334), - [anon_sym_auto] = ACTIONS(1334), - [anon_sym_RPAREN] = ACTIONS(1336), - [anon_sym_inline] = ACTIONS(1334), - [anon_sym___attribute__] = ACTIONS(1334), - [anon_sym_LBRACK] = ACTIONS(1336), + [sym_identifier] = ACTIONS(1087), + [aux_sym_preproc_include_token1] = ACTIONS(1087), + [aux_sym_preproc_def_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token2] = ACTIONS(1087), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1087), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1087), + [aux_sym_preproc_else_token1] = ACTIONS(1087), + [aux_sym_preproc_elif_token1] = ACTIONS(1087), + [sym_preproc_directive] = ACTIONS(1087), + [anon_sym_SEMI] = ACTIONS(1085), + [anon_sym_typedef] = ACTIONS(1087), + [anon_sym_extern] = ACTIONS(1087), + [anon_sym___attribute__] = ACTIONS(1087), + [anon_sym_LPAREN2] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(1085), + [anon_sym_static] = ACTIONS(1087), + [anon_sym_auto] = ACTIONS(1087), + [anon_sym_register] = ACTIONS(1087), + [anon_sym_inline] = ACTIONS(1087), + [anon_sym_const] = ACTIONS(1087), + [anon_sym_volatile] = ACTIONS(1087), + [anon_sym_restrict] = ACTIONS(1087), + [anon_sym__Atomic] = ACTIONS(1087), + [anon_sym_signed] = ACTIONS(1087), + [anon_sym_unsigned] = ACTIONS(1087), + [anon_sym_long] = ACTIONS(1087), + [anon_sym_short] = ACTIONS(1087), + [sym_primitive_type] = ACTIONS(1087), + [anon_sym_enum] = ACTIONS(1087), + [anon_sym_struct] = ACTIONS(1087), + [anon_sym_union] = ACTIONS(1087), + [anon_sym_if] = ACTIONS(1087), + [anon_sym_switch] = ACTIONS(1087), + [anon_sym_while] = ACTIONS(1087), + [anon_sym_do] = ACTIONS(1087), + [anon_sym_for] = ACTIONS(1087), + [anon_sym_return] = ACTIONS(1087), + [anon_sym_break] = ACTIONS(1087), + [anon_sym_continue] = ACTIONS(1087), + [anon_sym_goto] = ACTIONS(1087), + [anon_sym_AMP] = ACTIONS(1085), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_TILDE] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH_DASH] = ACTIONS(1085), + [anon_sym_PLUS_PLUS] = ACTIONS(1085), + [anon_sym_sizeof] = ACTIONS(1087), + [sym_number_literal] = ACTIONS(1085), + [anon_sym_L_SQUOTE] = ACTIONS(1085), + [anon_sym_SQUOTE] = ACTIONS(1085), + [anon_sym_L_DQUOTE] = ACTIONS(1085), + [anon_sym_DQUOTE] = ACTIONS(1085), + [sym_true] = ACTIONS(1087), + [sym_false] = ACTIONS(1087), + [sym_null] = ACTIONS(1087), + [sym_comment] = ACTIONS(3), }, [264] = { - [sym_char_literal] = STATE(368), - [sym__expression] = STATE(368), - [sym_comma_expression] = STATE(369), - [sym_binary_expression] = STATE(368), - [sym_update_expression] = STATE(368), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(368), - [sym_sizeof_expression] = STATE(368), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(368), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(368), - [sym_assignment_expression] = STATE(368), - [sym_cast_expression] = STATE(368), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(368), - [sym_true] = ACTIONS(1338), - [sym_null] = ACTIONS(1338), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(1340), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_RPAREN] = ACTIONS(1342), - [anon_sym_sizeof] = ACTIONS(33), + [sym_identifier] = ACTIONS(1161), + [aux_sym_preproc_include_token1] = ACTIONS(1161), + [aux_sym_preproc_def_token1] = ACTIONS(1161), + [aux_sym_preproc_if_token1] = ACTIONS(1161), + [aux_sym_preproc_if_token2] = ACTIONS(1161), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1161), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1161), + [aux_sym_preproc_else_token1] = ACTIONS(1161), + [aux_sym_preproc_elif_token1] = ACTIONS(1161), + [sym_preproc_directive] = ACTIONS(1161), + [anon_sym_SEMI] = ACTIONS(1163), + [anon_sym_typedef] = ACTIONS(1161), + [anon_sym_extern] = ACTIONS(1161), + [anon_sym___attribute__] = ACTIONS(1161), + [anon_sym_LPAREN2] = ACTIONS(1163), + [anon_sym_LBRACE] = ACTIONS(1163), + [anon_sym_STAR] = ACTIONS(1163), + [anon_sym_static] = ACTIONS(1161), + [anon_sym_auto] = ACTIONS(1161), + [anon_sym_register] = ACTIONS(1161), + [anon_sym_inline] = ACTIONS(1161), + [anon_sym_const] = ACTIONS(1161), + [anon_sym_volatile] = ACTIONS(1161), + [anon_sym_restrict] = ACTIONS(1161), + [anon_sym__Atomic] = ACTIONS(1161), + [anon_sym_signed] = ACTIONS(1161), + [anon_sym_unsigned] = ACTIONS(1161), + [anon_sym_long] = ACTIONS(1161), + [anon_sym_short] = ACTIONS(1161), + [sym_primitive_type] = ACTIONS(1161), + [anon_sym_enum] = ACTIONS(1161), + [anon_sym_struct] = ACTIONS(1161), + [anon_sym_union] = ACTIONS(1161), + [anon_sym_if] = ACTIONS(1161), + [anon_sym_switch] = ACTIONS(1161), + [anon_sym_while] = ACTIONS(1161), + [anon_sym_do] = ACTIONS(1161), + [anon_sym_for] = ACTIONS(1161), + [anon_sym_return] = ACTIONS(1161), + [anon_sym_break] = ACTIONS(1161), + [anon_sym_continue] = ACTIONS(1161), + [anon_sym_goto] = ACTIONS(1161), + [anon_sym_AMP] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1163), + [anon_sym_TILDE] = ACTIONS(1163), + [anon_sym_DASH] = ACTIONS(1161), + [anon_sym_PLUS] = ACTIONS(1161), + [anon_sym_DASH_DASH] = ACTIONS(1163), + [anon_sym_PLUS_PLUS] = ACTIONS(1163), + [anon_sym_sizeof] = ACTIONS(1161), + [sym_number_literal] = ACTIONS(1163), + [anon_sym_L_SQUOTE] = ACTIONS(1163), + [anon_sym_SQUOTE] = ACTIONS(1163), + [anon_sym_L_DQUOTE] = ACTIONS(1163), + [anon_sym_DQUOTE] = ACTIONS(1163), + [sym_true] = ACTIONS(1161), + [sym_false] = ACTIONS(1161), + [sym_null] = ACTIONS(1161), + [sym_comment] = ACTIONS(3), }, [265] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_SEMI] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [sym_identifier] = ACTIONS(1165), + [aux_sym_preproc_include_token1] = ACTIONS(1165), + [aux_sym_preproc_def_token1] = ACTIONS(1165), + [aux_sym_preproc_if_token1] = ACTIONS(1165), + [aux_sym_preproc_if_token2] = ACTIONS(1165), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1165), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1165), + [aux_sym_preproc_else_token1] = ACTIONS(1165), + [aux_sym_preproc_elif_token1] = ACTIONS(1165), + [sym_preproc_directive] = ACTIONS(1165), + [anon_sym_SEMI] = ACTIONS(1167), + [anon_sym_typedef] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1165), + [anon_sym___attribute__] = ACTIONS(1165), + [anon_sym_LPAREN2] = ACTIONS(1167), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_STAR] = ACTIONS(1167), + [anon_sym_static] = ACTIONS(1165), + [anon_sym_auto] = ACTIONS(1165), + [anon_sym_register] = ACTIONS(1165), + [anon_sym_inline] = ACTIONS(1165), + [anon_sym_const] = ACTIONS(1165), + [anon_sym_volatile] = ACTIONS(1165), + [anon_sym_restrict] = ACTIONS(1165), + [anon_sym__Atomic] = ACTIONS(1165), + [anon_sym_signed] = ACTIONS(1165), + [anon_sym_unsigned] = ACTIONS(1165), + [anon_sym_long] = ACTIONS(1165), + [anon_sym_short] = ACTIONS(1165), + [sym_primitive_type] = ACTIONS(1165), + [anon_sym_enum] = ACTIONS(1165), + [anon_sym_struct] = ACTIONS(1165), + [anon_sym_union] = ACTIONS(1165), + [anon_sym_if] = ACTIONS(1165), + [anon_sym_switch] = ACTIONS(1165), + [anon_sym_while] = ACTIONS(1165), + [anon_sym_do] = ACTIONS(1165), + [anon_sym_for] = ACTIONS(1165), + [anon_sym_return] = ACTIONS(1165), + [anon_sym_break] = ACTIONS(1165), + [anon_sym_continue] = ACTIONS(1165), + [anon_sym_goto] = ACTIONS(1165), + [anon_sym_AMP] = ACTIONS(1167), + [anon_sym_BANG] = ACTIONS(1167), + [anon_sym_TILDE] = ACTIONS(1167), + [anon_sym_DASH] = ACTIONS(1165), + [anon_sym_PLUS] = ACTIONS(1165), + [anon_sym_DASH_DASH] = ACTIONS(1167), + [anon_sym_PLUS_PLUS] = ACTIONS(1167), + [anon_sym_sizeof] = ACTIONS(1165), + [sym_number_literal] = ACTIONS(1167), + [anon_sym_L_SQUOTE] = ACTIONS(1167), + [anon_sym_SQUOTE] = ACTIONS(1167), + [anon_sym_L_DQUOTE] = ACTIONS(1167), + [anon_sym_DQUOTE] = ACTIONS(1167), + [sym_true] = ACTIONS(1165), + [sym_false] = ACTIONS(1165), + [sym_null] = ACTIONS(1165), + [sym_comment] = ACTIONS(3), }, [266] = { - [sym_char_literal] = STATE(372), - [sym__expression] = STATE(372), - [sym_binary_expression] = STATE(372), - [sym_update_expression] = STATE(372), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(372), - [sym_sizeof_expression] = STATE(372), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(372), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(372), - [sym_assignment_expression] = STATE(372), - [sym_cast_expression] = STATE(372), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(372), - [sym_true] = ACTIONS(1346), - [sym_null] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(1348), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(1346), - [anon_sym_SEMI] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_identifier] = ACTIONS(1075), + [aux_sym_preproc_include_token1] = ACTIONS(1075), + [aux_sym_preproc_def_token1] = ACTIONS(1075), + [aux_sym_preproc_if_token1] = ACTIONS(1075), + [aux_sym_preproc_if_token2] = ACTIONS(1075), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1075), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1075), + [aux_sym_preproc_else_token1] = ACTIONS(1075), + [aux_sym_preproc_elif_token1] = ACTIONS(1075), + [sym_preproc_directive] = ACTIONS(1075), + [anon_sym_SEMI] = ACTIONS(1073), + [anon_sym_typedef] = ACTIONS(1075), + [anon_sym_extern] = ACTIONS(1075), + [anon_sym___attribute__] = ACTIONS(1075), + [anon_sym_LPAREN2] = ACTIONS(1073), + [anon_sym_LBRACE] = ACTIONS(1073), + [anon_sym_STAR] = ACTIONS(1073), + [anon_sym_static] = ACTIONS(1075), + [anon_sym_auto] = ACTIONS(1075), + [anon_sym_register] = ACTIONS(1075), + [anon_sym_inline] = ACTIONS(1075), + [anon_sym_const] = ACTIONS(1075), + [anon_sym_volatile] = ACTIONS(1075), + [anon_sym_restrict] = ACTIONS(1075), + [anon_sym__Atomic] = ACTIONS(1075), + [anon_sym_signed] = ACTIONS(1075), + [anon_sym_unsigned] = ACTIONS(1075), + [anon_sym_long] = ACTIONS(1075), + [anon_sym_short] = ACTIONS(1075), + [sym_primitive_type] = ACTIONS(1075), + [anon_sym_enum] = ACTIONS(1075), + [anon_sym_struct] = ACTIONS(1075), + [anon_sym_union] = ACTIONS(1075), + [anon_sym_if] = ACTIONS(1075), + [anon_sym_switch] = ACTIONS(1075), + [anon_sym_while] = ACTIONS(1075), + [anon_sym_do] = ACTIONS(1075), + [anon_sym_for] = ACTIONS(1075), + [anon_sym_return] = ACTIONS(1075), + [anon_sym_break] = ACTIONS(1075), + [anon_sym_continue] = ACTIONS(1075), + [anon_sym_goto] = ACTIONS(1075), + [anon_sym_AMP] = ACTIONS(1073), + [anon_sym_BANG] = ACTIONS(1073), + [anon_sym_TILDE] = ACTIONS(1073), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_PLUS] = ACTIONS(1075), + [anon_sym_DASH_DASH] = ACTIONS(1073), + [anon_sym_PLUS_PLUS] = ACTIONS(1073), + [anon_sym_sizeof] = ACTIONS(1075), + [sym_number_literal] = ACTIONS(1073), + [anon_sym_L_SQUOTE] = ACTIONS(1073), + [anon_sym_SQUOTE] = ACTIONS(1073), + [anon_sym_L_DQUOTE] = ACTIONS(1073), + [anon_sym_DQUOTE] = ACTIONS(1073), + [sym_true] = ACTIONS(1075), + [sym_false] = ACTIONS(1075), + [sym_null] = ACTIONS(1075), + [sym_comment] = ACTIONS(3), }, [267] = { - [sym_char_literal] = STATE(374), - [sym__expression] = STATE(374), - [sym_comma_expression] = STATE(375), - [sym_binary_expression] = STATE(374), - [sym_update_expression] = STATE(374), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(374), - [sym_sizeof_expression] = STATE(374), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(374), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(374), - [sym_assignment_expression] = STATE(374), - [sym_cast_expression] = STATE(374), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(374), - [sym_true] = ACTIONS(1352), - [sym_null] = ACTIONS(1352), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(1354), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(1352), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_RPAREN] = ACTIONS(1356), - [anon_sym_sizeof] = ACTIONS(33), + [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), + [sym_preproc_directive] = ACTIONS(1169), + [anon_sym_SEMI] = ACTIONS(1171), + [anon_sym_typedef] = ACTIONS(1169), + [anon_sym_extern] = ACTIONS(1169), + [anon_sym___attribute__] = ACTIONS(1169), + [anon_sym_LPAREN2] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_static] = ACTIONS(1169), + [anon_sym_auto] = ACTIONS(1169), + [anon_sym_register] = ACTIONS(1169), + [anon_sym_inline] = ACTIONS(1169), + [anon_sym_const] = ACTIONS(1169), + [anon_sym_volatile] = ACTIONS(1169), + [anon_sym_restrict] = ACTIONS(1169), + [anon_sym__Atomic] = ACTIONS(1169), + [anon_sym_signed] = ACTIONS(1169), + [anon_sym_unsigned] = ACTIONS(1169), + [anon_sym_long] = ACTIONS(1169), + [anon_sym_short] = 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_switch] = 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_AMP] = ACTIONS(1171), + [anon_sym_BANG] = ACTIONS(1171), + [anon_sym_TILDE] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1169), + [anon_sym_DASH_DASH] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_sizeof] = ACTIONS(1169), + [sym_number_literal] = ACTIONS(1171), + [anon_sym_L_SQUOTE] = ACTIONS(1171), + [anon_sym_SQUOTE] = ACTIONS(1171), + [anon_sym_L_DQUOTE] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym_true] = ACTIONS(1169), + [sym_false] = ACTIONS(1169), + [sym_null] = ACTIONS(1169), + [sym_comment] = ACTIONS(3), }, [268] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_SEMI] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [sym_identifier] = ACTIONS(1173), + [aux_sym_preproc_include_token1] = ACTIONS(1173), + [aux_sym_preproc_def_token1] = ACTIONS(1173), + [aux_sym_preproc_if_token1] = ACTIONS(1173), + [aux_sym_preproc_if_token2] = ACTIONS(1173), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1173), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1173), + [aux_sym_preproc_else_token1] = ACTIONS(1173), + [aux_sym_preproc_elif_token1] = ACTIONS(1173), + [sym_preproc_directive] = ACTIONS(1173), + [anon_sym_SEMI] = ACTIONS(1175), + [anon_sym_typedef] = ACTIONS(1173), + [anon_sym_extern] = ACTIONS(1173), + [anon_sym___attribute__] = ACTIONS(1173), + [anon_sym_LPAREN2] = ACTIONS(1175), + [anon_sym_LBRACE] = ACTIONS(1175), + [anon_sym_STAR] = ACTIONS(1175), + [anon_sym_static] = ACTIONS(1173), + [anon_sym_auto] = ACTIONS(1173), + [anon_sym_register] = ACTIONS(1173), + [anon_sym_inline] = ACTIONS(1173), + [anon_sym_const] = ACTIONS(1173), + [anon_sym_volatile] = ACTIONS(1173), + [anon_sym_restrict] = ACTIONS(1173), + [anon_sym__Atomic] = ACTIONS(1173), + [anon_sym_signed] = ACTIONS(1173), + [anon_sym_unsigned] = ACTIONS(1173), + [anon_sym_long] = ACTIONS(1173), + [anon_sym_short] = ACTIONS(1173), + [sym_primitive_type] = ACTIONS(1173), + [anon_sym_enum] = ACTIONS(1173), + [anon_sym_struct] = ACTIONS(1173), + [anon_sym_union] = ACTIONS(1173), + [anon_sym_if] = ACTIONS(1173), + [anon_sym_switch] = ACTIONS(1173), + [anon_sym_while] = ACTIONS(1173), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_for] = ACTIONS(1173), + [anon_sym_return] = ACTIONS(1173), + [anon_sym_break] = ACTIONS(1173), + [anon_sym_continue] = ACTIONS(1173), + [anon_sym_goto] = ACTIONS(1173), + [anon_sym_AMP] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1175), + [anon_sym_TILDE] = ACTIONS(1175), + [anon_sym_DASH] = ACTIONS(1173), + [anon_sym_PLUS] = ACTIONS(1173), + [anon_sym_DASH_DASH] = ACTIONS(1175), + [anon_sym_PLUS_PLUS] = ACTIONS(1175), + [anon_sym_sizeof] = ACTIONS(1173), + [sym_number_literal] = ACTIONS(1175), + [anon_sym_L_SQUOTE] = ACTIONS(1175), + [anon_sym_SQUOTE] = ACTIONS(1175), + [anon_sym_L_DQUOTE] = ACTIONS(1175), + [anon_sym_DQUOTE] = ACTIONS(1175), + [sym_true] = ACTIONS(1173), + [sym_false] = ACTIONS(1173), + [sym_null] = ACTIONS(1173), + [sym_comment] = ACTIONS(3), }, [269] = { - [aux_sym_declaration_repeat1] = STATE(216), - [sym_parameter_list] = STATE(214), + [sym_identifier] = ACTIONS(1009), + [aux_sym_preproc_include_token1] = ACTIONS(1009), + [aux_sym_preproc_def_token1] = ACTIONS(1009), + [aux_sym_preproc_if_token1] = ACTIONS(1009), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1009), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1009), + [sym_preproc_directive] = ACTIONS(1009), + [anon_sym_SEMI] = ACTIONS(1007), + [anon_sym_typedef] = ACTIONS(1009), + [anon_sym_extern] = ACTIONS(1009), + [anon_sym___attribute__] = ACTIONS(1009), + [anon_sym_LPAREN2] = ACTIONS(1007), + [anon_sym_LBRACE] = ACTIONS(1007), + [anon_sym_RBRACE] = ACTIONS(1007), + [anon_sym_STAR] = ACTIONS(1007), + [anon_sym_static] = ACTIONS(1009), + [anon_sym_auto] = ACTIONS(1009), + [anon_sym_register] = ACTIONS(1009), + [anon_sym_inline] = ACTIONS(1009), + [anon_sym_const] = ACTIONS(1009), + [anon_sym_volatile] = ACTIONS(1009), + [anon_sym_restrict] = ACTIONS(1009), + [anon_sym__Atomic] = ACTIONS(1009), + [anon_sym_signed] = ACTIONS(1009), + [anon_sym_unsigned] = ACTIONS(1009), + [anon_sym_long] = ACTIONS(1009), + [anon_sym_short] = ACTIONS(1009), + [sym_primitive_type] = ACTIONS(1009), + [anon_sym_enum] = ACTIONS(1009), + [anon_sym_struct] = ACTIONS(1009), + [anon_sym_union] = ACTIONS(1009), + [anon_sym_if] = ACTIONS(1009), + [anon_sym_else] = ACTIONS(1009), + [anon_sym_switch] = ACTIONS(1009), + [anon_sym_while] = ACTIONS(1009), + [anon_sym_do] = ACTIONS(1009), + [anon_sym_for] = ACTIONS(1009), + [anon_sym_return] = ACTIONS(1009), + [anon_sym_break] = ACTIONS(1009), + [anon_sym_continue] = ACTIONS(1009), + [anon_sym_goto] = ACTIONS(1009), + [anon_sym_AMP] = ACTIONS(1007), + [anon_sym_BANG] = ACTIONS(1007), + [anon_sym_TILDE] = ACTIONS(1007), + [anon_sym_DASH] = ACTIONS(1009), + [anon_sym_PLUS] = ACTIONS(1009), + [anon_sym_DASH_DASH] = ACTIONS(1007), + [anon_sym_PLUS_PLUS] = ACTIONS(1007), + [anon_sym_sizeof] = ACTIONS(1009), + [sym_number_literal] = ACTIONS(1007), + [anon_sym_L_SQUOTE] = ACTIONS(1007), + [anon_sym_SQUOTE] = ACTIONS(1007), + [anon_sym_L_DQUOTE] = ACTIONS(1007), + [anon_sym_DQUOTE] = ACTIONS(1007), + [sym_true] = ACTIONS(1009), + [sym_false] = ACTIONS(1009), + [sym_null] = ACTIONS(1009), [sym_comment] = ACTIONS(3), - [anon_sym_EQ] = ACTIONS(648), - [anon_sym_LPAREN2] = ACTIONS(652), - [anon_sym_COMMA] = ACTIONS(654), - [anon_sym_SEMI] = ACTIONS(656), - [anon_sym_LBRACK] = ACTIONS(650), }, [270] = { - [sym_true] = ACTIONS(1360), - [anon_sym_restrict] = ACTIONS(1360), - [sym_null] = ACTIONS(1360), - [anon_sym_goto] = ACTIONS(1360), - [anon_sym_const] = ACTIONS(1360), - [anon_sym_typedef] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1362), - [anon_sym__Atomic] = ACTIONS(1360), - [sym_identifier] = ACTIONS(1360), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1360), - [sym_number_literal] = ACTIONS(1362), - [anon_sym_volatile] = ACTIONS(1360), - [anon_sym_SQUOTE] = ACTIONS(1362), - [anon_sym_extern] = ACTIONS(1360), - [anon_sym_PLUS_PLUS] = ACTIONS(1362), - [anon_sym_struct] = ACTIONS(1360), - [anon_sym_signed] = ACTIONS(1360), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1360), - [anon_sym_while] = ACTIONS(1360), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1360), - [anon_sym_L_SQUOTE] = ACTIONS(1362), - [anon_sym___attribute__] = ACTIONS(1360), - [anon_sym_sizeof] = ACTIONS(1360), - [anon_sym_LBRACE] = ACTIONS(1362), - [anon_sym_union] = ACTIONS(1360), - [anon_sym_unsigned] = ACTIONS(1360), - [anon_sym_short] = ACTIONS(1360), - [anon_sym_do] = ACTIONS(1360), - [sym_preproc_directive] = ACTIONS(1360), - [anon_sym_AMP] = ACTIONS(1362), - [aux_sym_preproc_if_token1] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1362), - [anon_sym_L_DQUOTE] = ACTIONS(1362), - [anon_sym_LPAREN2] = ACTIONS(1362), - [sym_primitive_type] = ACTIONS(1360), - [anon_sym_for] = ACTIONS(1360), - [anon_sym_break] = ACTIONS(1360), - [anon_sym_BANG] = ACTIONS(1362), - [aux_sym_preproc_include_token1] = ACTIONS(1360), - [anon_sym_DASH] = ACTIONS(1360), - [anon_sym_static] = ACTIONS(1360), - [anon_sym_DQUOTE] = ACTIONS(1362), - [anon_sym_register] = ACTIONS(1360), - [anon_sym_STAR] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1360), - [anon_sym_switch] = ACTIONS(1360), - [anon_sym_enum] = ACTIONS(1360), - [sym_false] = ACTIONS(1360), - [ts_builtin_sym_end] = ACTIONS(1362), - [anon_sym_return] = ACTIONS(1360), - [anon_sym_continue] = ACTIONS(1360), - [anon_sym_SEMI] = ACTIONS(1362), - [aux_sym_preproc_def_token1] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1360), - [anon_sym_auto] = ACTIONS(1360), - [anon_sym_inline] = ACTIONS(1360), + [sym_identifier] = ACTIONS(973), + [aux_sym_preproc_include_token1] = ACTIONS(973), + [aux_sym_preproc_def_token1] = ACTIONS(973), + [aux_sym_preproc_if_token1] = ACTIONS(973), + [aux_sym_preproc_ifdef_token1] = ACTIONS(973), + [aux_sym_preproc_ifdef_token2] = ACTIONS(973), + [sym_preproc_directive] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(971), + [anon_sym_typedef] = ACTIONS(973), + [anon_sym_extern] = ACTIONS(973), + [anon_sym___attribute__] = ACTIONS(973), + [anon_sym_LPAREN2] = ACTIONS(971), + [anon_sym_LBRACE] = ACTIONS(971), + [anon_sym_RBRACE] = ACTIONS(971), + [anon_sym_STAR] = ACTIONS(971), + [anon_sym_static] = ACTIONS(973), + [anon_sym_auto] = ACTIONS(973), + [anon_sym_register] = ACTIONS(973), + [anon_sym_inline] = ACTIONS(973), + [anon_sym_const] = ACTIONS(973), + [anon_sym_volatile] = ACTIONS(973), + [anon_sym_restrict] = ACTIONS(973), + [anon_sym__Atomic] = ACTIONS(973), + [anon_sym_signed] = ACTIONS(973), + [anon_sym_unsigned] = ACTIONS(973), + [anon_sym_long] = ACTIONS(973), + [anon_sym_short] = ACTIONS(973), + [sym_primitive_type] = ACTIONS(973), + [anon_sym_enum] = ACTIONS(973), + [anon_sym_struct] = ACTIONS(973), + [anon_sym_union] = ACTIONS(973), + [anon_sym_if] = ACTIONS(973), + [anon_sym_else] = ACTIONS(973), + [anon_sym_switch] = ACTIONS(973), + [anon_sym_while] = ACTIONS(973), + [anon_sym_do] = ACTIONS(973), + [anon_sym_for] = ACTIONS(973), + [anon_sym_return] = ACTIONS(973), + [anon_sym_break] = ACTIONS(973), + [anon_sym_continue] = ACTIONS(973), + [anon_sym_goto] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(971), + [anon_sym_BANG] = ACTIONS(971), + [anon_sym_TILDE] = ACTIONS(971), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_PLUS] = ACTIONS(973), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_sizeof] = ACTIONS(973), + [sym_number_literal] = ACTIONS(971), + [anon_sym_L_SQUOTE] = ACTIONS(971), + [anon_sym_SQUOTE] = ACTIONS(971), + [anon_sym_L_DQUOTE] = ACTIONS(971), + [anon_sym_DQUOTE] = ACTIONS(971), + [sym_true] = ACTIONS(973), + [sym_false] = ACTIONS(973), + [sym_null] = ACTIONS(973), + [sym_comment] = ACTIONS(3), }, [271] = { - [sym_true] = ACTIONS(1364), - [anon_sym_restrict] = ACTIONS(1364), - [sym_null] = ACTIONS(1364), - [anon_sym_goto] = ACTIONS(1364), - [anon_sym_const] = ACTIONS(1364), - [anon_sym_typedef] = ACTIONS(1364), - [anon_sym_DASH_DASH] = ACTIONS(1366), - [anon_sym__Atomic] = ACTIONS(1364), - [sym_identifier] = ACTIONS(1364), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1364), - [sym_number_literal] = ACTIONS(1366), - [anon_sym_volatile] = ACTIONS(1364), - [anon_sym_SQUOTE] = ACTIONS(1366), - [anon_sym_extern] = ACTIONS(1364), - [anon_sym_PLUS_PLUS] = ACTIONS(1366), - [anon_sym_struct] = ACTIONS(1364), - [anon_sym_signed] = ACTIONS(1364), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1364), - [anon_sym_while] = ACTIONS(1364), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1364), - [anon_sym_L_SQUOTE] = ACTIONS(1366), - [anon_sym___attribute__] = ACTIONS(1364), - [anon_sym_sizeof] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1366), - [anon_sym_union] = ACTIONS(1364), - [anon_sym_unsigned] = ACTIONS(1364), - [anon_sym_short] = ACTIONS(1364), - [anon_sym_do] = ACTIONS(1364), - [sym_preproc_directive] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1366), - [aux_sym_preproc_if_token1] = ACTIONS(1364), - [anon_sym_TILDE] = ACTIONS(1366), - [anon_sym_L_DQUOTE] = ACTIONS(1366), - [anon_sym_LPAREN2] = ACTIONS(1366), - [sym_primitive_type] = ACTIONS(1364), - [anon_sym_for] = ACTIONS(1364), - [anon_sym_break] = ACTIONS(1364), - [anon_sym_BANG] = ACTIONS(1366), - [aux_sym_preproc_include_token1] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1364), - [anon_sym_static] = ACTIONS(1364), - [anon_sym_DQUOTE] = ACTIONS(1366), - [anon_sym_register] = ACTIONS(1364), - [anon_sym_STAR] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1364), - [anon_sym_switch] = ACTIONS(1364), - [anon_sym_enum] = ACTIONS(1364), - [sym_false] = ACTIONS(1364), - [ts_builtin_sym_end] = ACTIONS(1366), - [anon_sym_return] = ACTIONS(1364), - [anon_sym_continue] = ACTIONS(1364), - [anon_sym_SEMI] = ACTIONS(1366), - [aux_sym_preproc_def_token1] = ACTIONS(1364), - [anon_sym_PLUS] = ACTIONS(1364), - [anon_sym_auto] = ACTIONS(1364), - [anon_sym_inline] = ACTIONS(1364), + [sym_identifier] = ACTIONS(965), + [aux_sym_preproc_include_token1] = ACTIONS(965), + [aux_sym_preproc_def_token1] = ACTIONS(965), + [aux_sym_preproc_if_token1] = ACTIONS(965), + [aux_sym_preproc_if_token2] = ACTIONS(965), + [aux_sym_preproc_ifdef_token1] = ACTIONS(965), + [aux_sym_preproc_ifdef_token2] = ACTIONS(965), + [sym_preproc_directive] = ACTIONS(965), + [anon_sym_SEMI] = ACTIONS(963), + [anon_sym_typedef] = ACTIONS(965), + [anon_sym_extern] = ACTIONS(965), + [anon_sym___attribute__] = ACTIONS(965), + [anon_sym_LPAREN2] = ACTIONS(963), + [anon_sym_LBRACE] = ACTIONS(963), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_static] = ACTIONS(965), + [anon_sym_auto] = ACTIONS(965), + [anon_sym_register] = ACTIONS(965), + [anon_sym_inline] = ACTIONS(965), + [anon_sym_const] = ACTIONS(965), + [anon_sym_volatile] = ACTIONS(965), + [anon_sym_restrict] = ACTIONS(965), + [anon_sym__Atomic] = ACTIONS(965), + [anon_sym_signed] = ACTIONS(965), + [anon_sym_unsigned] = ACTIONS(965), + [anon_sym_long] = ACTIONS(965), + [anon_sym_short] = ACTIONS(965), + [sym_primitive_type] = ACTIONS(965), + [anon_sym_enum] = ACTIONS(965), + [anon_sym_struct] = ACTIONS(965), + [anon_sym_union] = ACTIONS(965), + [anon_sym_if] = ACTIONS(965), + [anon_sym_else] = ACTIONS(965), + [anon_sym_switch] = ACTIONS(965), + [anon_sym_while] = ACTIONS(965), + [anon_sym_do] = ACTIONS(965), + [anon_sym_for] = ACTIONS(965), + [anon_sym_return] = ACTIONS(965), + [anon_sym_break] = ACTIONS(965), + [anon_sym_continue] = ACTIONS(965), + [anon_sym_goto] = ACTIONS(965), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(963), + [anon_sym_TILDE] = ACTIONS(963), + [anon_sym_DASH] = ACTIONS(965), + [anon_sym_PLUS] = ACTIONS(965), + [anon_sym_DASH_DASH] = ACTIONS(963), + [anon_sym_PLUS_PLUS] = ACTIONS(963), + [anon_sym_sizeof] = ACTIONS(965), + [sym_number_literal] = ACTIONS(963), + [anon_sym_L_SQUOTE] = ACTIONS(963), + [anon_sym_SQUOTE] = ACTIONS(963), + [anon_sym_L_DQUOTE] = ACTIONS(963), + [anon_sym_DQUOTE] = ACTIONS(963), + [sym_true] = ACTIONS(965), + [sym_false] = ACTIONS(965), + [sym_null] = ACTIONS(965), + [sym_comment] = ACTIONS(3), }, [272] = { - [aux_sym_preproc_if_token2] = ACTIONS(1368), + [sym_identifier] = ACTIONS(961), + [aux_sym_preproc_include_token1] = ACTIONS(961), + [aux_sym_preproc_def_token1] = ACTIONS(961), + [aux_sym_preproc_if_token1] = ACTIONS(961), + [aux_sym_preproc_if_token2] = ACTIONS(961), + [aux_sym_preproc_ifdef_token1] = ACTIONS(961), + [aux_sym_preproc_ifdef_token2] = ACTIONS(961), + [sym_preproc_directive] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(959), + [anon_sym_typedef] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(959), + [anon_sym_LBRACE] = ACTIONS(959), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_static] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [sym_primitive_type] = ACTIONS(961), + [anon_sym_enum] = ACTIONS(961), + [anon_sym_struct] = ACTIONS(961), + [anon_sym_union] = ACTIONS(961), + [anon_sym_if] = ACTIONS(961), + [anon_sym_else] = ACTIONS(961), + [anon_sym_switch] = ACTIONS(961), + [anon_sym_while] = ACTIONS(961), + [anon_sym_do] = ACTIONS(961), + [anon_sym_for] = ACTIONS(961), + [anon_sym_return] = ACTIONS(961), + [anon_sym_break] = ACTIONS(961), + [anon_sym_continue] = ACTIONS(961), + [anon_sym_goto] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(959), + [anon_sym_BANG] = ACTIONS(959), + [anon_sym_TILDE] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(959), + [anon_sym_sizeof] = ACTIONS(961), + [sym_number_literal] = ACTIONS(959), + [anon_sym_L_SQUOTE] = ACTIONS(959), + [anon_sym_SQUOTE] = ACTIONS(959), + [anon_sym_L_DQUOTE] = ACTIONS(959), + [anon_sym_DQUOTE] = ACTIONS(959), + [sym_true] = ACTIONS(961), + [sym_false] = ACTIONS(961), + [sym_null] = ACTIONS(961), [sym_comment] = ACTIONS(3), }, [273] = { - [sym_true] = ACTIONS(1370), - [anon_sym_restrict] = ACTIONS(1370), - [sym_null] = ACTIONS(1370), - [anon_sym_goto] = ACTIONS(1370), - [anon_sym_const] = ACTIONS(1370), - [anon_sym_typedef] = ACTIONS(1370), - [anon_sym_DASH_DASH] = ACTIONS(1372), - [anon_sym__Atomic] = ACTIONS(1370), - [sym_identifier] = ACTIONS(1370), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1370), - [sym_number_literal] = ACTIONS(1372), - [anon_sym_volatile] = ACTIONS(1370), - [anon_sym_SQUOTE] = ACTIONS(1372), - [anon_sym_extern] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1372), - [anon_sym_struct] = ACTIONS(1370), - [anon_sym_signed] = ACTIONS(1370), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1370), - [anon_sym_while] = ACTIONS(1370), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1370), - [anon_sym_L_SQUOTE] = ACTIONS(1372), - [anon_sym___attribute__] = ACTIONS(1370), - [anon_sym_sizeof] = ACTIONS(1370), - [anon_sym_LBRACE] = ACTIONS(1372), - [anon_sym_union] = ACTIONS(1370), - [anon_sym_unsigned] = ACTIONS(1370), - [anon_sym_short] = ACTIONS(1370), - [anon_sym_do] = ACTIONS(1370), - [sym_preproc_directive] = ACTIONS(1370), - [anon_sym_AMP] = ACTIONS(1372), - [aux_sym_preproc_if_token1] = ACTIONS(1370), - [anon_sym_TILDE] = ACTIONS(1372), - [anon_sym_L_DQUOTE] = ACTIONS(1372), - [anon_sym_LPAREN2] = ACTIONS(1372), - [sym_primitive_type] = ACTIONS(1370), - [anon_sym_for] = ACTIONS(1370), - [anon_sym_break] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1372), - [aux_sym_preproc_include_token1] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_DQUOTE] = ACTIONS(1372), - [anon_sym_register] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_if] = ACTIONS(1370), - [anon_sym_switch] = ACTIONS(1370), - [anon_sym_enum] = ACTIONS(1370), - [sym_false] = ACTIONS(1370), - [ts_builtin_sym_end] = ACTIONS(1372), - [anon_sym_return] = ACTIONS(1370), - [anon_sym_continue] = ACTIONS(1370), - [anon_sym_SEMI] = ACTIONS(1372), - [aux_sym_preproc_def_token1] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_auto] = ACTIONS(1370), - [anon_sym_inline] = ACTIONS(1370), + [sym_identifier] = ACTIONS(1001), + [aux_sym_preproc_include_token1] = ACTIONS(1001), + [aux_sym_preproc_def_token1] = ACTIONS(1001), + [aux_sym_preproc_if_token1] = ACTIONS(1001), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1001), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1001), + [sym_preproc_directive] = ACTIONS(1001), + [anon_sym_SEMI] = ACTIONS(999), + [anon_sym_typedef] = ACTIONS(1001), + [anon_sym_extern] = ACTIONS(1001), + [anon_sym___attribute__] = ACTIONS(1001), + [anon_sym_LPAREN2] = ACTIONS(999), + [anon_sym_LBRACE] = ACTIONS(999), + [anon_sym_RBRACE] = ACTIONS(999), + [anon_sym_STAR] = ACTIONS(999), + [anon_sym_static] = ACTIONS(1001), + [anon_sym_auto] = ACTIONS(1001), + [anon_sym_register] = ACTIONS(1001), + [anon_sym_inline] = ACTIONS(1001), + [anon_sym_const] = ACTIONS(1001), + [anon_sym_volatile] = ACTIONS(1001), + [anon_sym_restrict] = ACTIONS(1001), + [anon_sym__Atomic] = ACTIONS(1001), + [anon_sym_signed] = ACTIONS(1001), + [anon_sym_unsigned] = ACTIONS(1001), + [anon_sym_long] = ACTIONS(1001), + [anon_sym_short] = ACTIONS(1001), + [sym_primitive_type] = ACTIONS(1001), + [anon_sym_enum] = ACTIONS(1001), + [anon_sym_struct] = ACTIONS(1001), + [anon_sym_union] = ACTIONS(1001), + [anon_sym_if] = ACTIONS(1001), + [anon_sym_else] = ACTIONS(1001), + [anon_sym_switch] = ACTIONS(1001), + [anon_sym_while] = ACTIONS(1001), + [anon_sym_do] = ACTIONS(1001), + [anon_sym_for] = ACTIONS(1001), + [anon_sym_return] = ACTIONS(1001), + [anon_sym_break] = ACTIONS(1001), + [anon_sym_continue] = ACTIONS(1001), + [anon_sym_goto] = ACTIONS(1001), + [anon_sym_AMP] = ACTIONS(999), + [anon_sym_BANG] = ACTIONS(999), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH_DASH] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_sizeof] = ACTIONS(1001), + [sym_number_literal] = ACTIONS(999), + [anon_sym_L_SQUOTE] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(999), + [anon_sym_L_DQUOTE] = ACTIONS(999), + [anon_sym_DQUOTE] = ACTIONS(999), + [sym_true] = ACTIONS(1001), + [sym_false] = ACTIONS(1001), + [sym_null] = ACTIONS(1001), + [sym_comment] = ACTIONS(3), }, [274] = { - [sym_if_statement] = STATE(533), - [sym_preproc_def] = STATE(533), - [sym_preproc_function_def] = STATE(533), - [sym__expression] = STATE(867), - [sym_comma_expression] = STATE(868), - [sym_binary_expression] = STATE(867), - [sym_update_expression] = STATE(867), - [sym_call_expression] = STATE(36), - [sym_function_definition] = STATE(533), - [sym_declaration] = STATE(533), - [sym_do_statement] = STATE(533), - [sym_for_statement] = STATE(533), - [aux_sym_translation_unit_repeat1] = STATE(533), - [sym_expression_statement] = STATE(533), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(869), - [sym_union_specifier] = STATE(869), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_switch_statement] = STATE(533), - [sym_return_statement] = STATE(533), - [sym_preproc_call] = STATE(533), - [sym_conditional_expression] = STATE(867), - [sym_assignment_expression] = STATE(867), - [sym_type_definition] = STATE(533), - [sym_cast_expression] = STATE(867), - [sym__declaration_specifiers] = STATE(1151), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(867), - [sym_char_literal] = STATE(867), - [sym_break_statement] = STATE(533), - [sym__empty_declaration] = STATE(533), - [sym_sized_type_specifier] = STATE(869), - [sym_enum_specifier] = STATE(869), - [sym_labeled_statement] = STATE(533), - [sym_preproc_include] = STATE(533), - [sym_preproc_if] = STATE(533), - [sym_preproc_ifdef] = STATE(533), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(867), - [sym_sizeof_expression] = STATE(867), - [sym_attribute_specifier] = STATE(43), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_linkage_specification] = STATE(533), - [sym_concatenated_string] = STATE(867), - [sym_string_literal] = STATE(41), - [sym_macro_type_specifier] = STATE(869), - [sym_while_statement] = STATE(533), - [sym_storage_class_specifier] = STATE(43), - [sym_compound_statement] = STATE(533), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_continue_statement] = STATE(533), - [sym_struct_specifier] = STATE(869), - [sym_goto_statement] = STATE(533), - [sym_true] = ACTIONS(81), - [anon_sym_restrict] = ACTIONS(7), - [sym_null] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_const] = ACTIONS(7), - [anon_sym_typedef] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(7), - [sym_identifier] = ACTIONS(87), - [aux_sym_preproc_ifdef_token1] = ACTIONS(89), - [sym_number_literal] = ACTIONS(91), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_extern] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_struct] = ACTIONS(25), - [anon_sym_signed] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(27), - [anon_sym_while] = ACTIONS(95), - [aux_sym_preproc_ifdef_token2] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_sizeof] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(97), - [anon_sym_union] = ACTIONS(37), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_short] = ACTIONS(27), - [anon_sym_do] = ACTIONS(99), - [sym_preproc_directive] = ACTIONS(101), - [anon_sym_AMP] = ACTIONS(43), - [aux_sym_preproc_if_token1] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(1374), - [sym_primitive_type] = ACTIONS(107), - [anon_sym_for] = ACTIONS(109), - [anon_sym_break] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(47), - [aux_sym_preproc_include_token1] = ACTIONS(113), - [anon_sym_DASH] = ACTIONS(61), - [anon_sym_static] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_register] = ACTIONS(63), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(115), - [anon_sym_switch] = ACTIONS(117), - [anon_sym_enum] = ACTIONS(69), - [sym_false] = ACTIONS(81), - [anon_sym_return] = ACTIONS(119), - [anon_sym_continue] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(123), - [aux_sym_preproc_def_token1] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_auto] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), + [sym_identifier] = ACTIONS(953), + [aux_sym_preproc_include_token1] = ACTIONS(953), + [aux_sym_preproc_def_token1] = ACTIONS(953), + [aux_sym_preproc_if_token1] = ACTIONS(953), + [aux_sym_preproc_if_token2] = ACTIONS(953), + [aux_sym_preproc_ifdef_token1] = ACTIONS(953), + [aux_sym_preproc_ifdef_token2] = ACTIONS(953), + [sym_preproc_directive] = ACTIONS(953), + [anon_sym_SEMI] = ACTIONS(951), + [anon_sym_typedef] = ACTIONS(953), + [anon_sym_extern] = ACTIONS(953), + [anon_sym___attribute__] = ACTIONS(953), + [anon_sym_LPAREN2] = ACTIONS(951), + [anon_sym_LBRACE] = ACTIONS(951), + [anon_sym_STAR] = ACTIONS(951), + [anon_sym_static] = ACTIONS(953), + [anon_sym_auto] = ACTIONS(953), + [anon_sym_register] = ACTIONS(953), + [anon_sym_inline] = ACTIONS(953), + [anon_sym_const] = ACTIONS(953), + [anon_sym_volatile] = ACTIONS(953), + [anon_sym_restrict] = ACTIONS(953), + [anon_sym__Atomic] = ACTIONS(953), + [anon_sym_signed] = ACTIONS(953), + [anon_sym_unsigned] = ACTIONS(953), + [anon_sym_long] = ACTIONS(953), + [anon_sym_short] = ACTIONS(953), + [sym_primitive_type] = ACTIONS(953), + [anon_sym_enum] = ACTIONS(953), + [anon_sym_struct] = ACTIONS(953), + [anon_sym_union] = ACTIONS(953), + [anon_sym_if] = ACTIONS(953), + [anon_sym_else] = ACTIONS(953), + [anon_sym_switch] = ACTIONS(953), + [anon_sym_while] = ACTIONS(953), + [anon_sym_do] = ACTIONS(953), + [anon_sym_for] = ACTIONS(953), + [anon_sym_return] = ACTIONS(953), + [anon_sym_break] = ACTIONS(953), + [anon_sym_continue] = ACTIONS(953), + [anon_sym_goto] = ACTIONS(953), + [anon_sym_AMP] = ACTIONS(951), + [anon_sym_BANG] = ACTIONS(951), + [anon_sym_TILDE] = ACTIONS(951), + [anon_sym_DASH] = ACTIONS(953), + [anon_sym_PLUS] = ACTIONS(953), + [anon_sym_DASH_DASH] = ACTIONS(951), + [anon_sym_PLUS_PLUS] = ACTIONS(951), + [anon_sym_sizeof] = ACTIONS(953), + [sym_number_literal] = ACTIONS(951), + [anon_sym_L_SQUOTE] = ACTIONS(951), + [anon_sym_SQUOTE] = ACTIONS(951), + [anon_sym_L_DQUOTE] = ACTIONS(951), + [anon_sym_DQUOTE] = ACTIONS(951), + [sym_true] = ACTIONS(953), + [sym_false] = ACTIONS(953), + [sym_null] = ACTIONS(953), + [sym_comment] = ACTIONS(3), }, [275] = { - [sym_if_statement] = STATE(379), - [sym_do_statement] = STATE(379), - [sym_for_statement] = STATE(379), - [sym__expression] = STATE(34), - [sym_comma_expression] = STATE(35), - [sym_binary_expression] = STATE(34), - [sym_update_expression] = STATE(34), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(379), - [sym_return_statement] = STATE(379), - [sym_break_statement] = STATE(379), - [sym_conditional_expression] = STATE(34), - [sym_assignment_expression] = STATE(34), - [sym_cast_expression] = STATE(34), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(34), - [sym_char_literal] = STATE(34), - [sym_labeled_statement] = STATE(379), - [sym_while_statement] = STATE(379), - [sym_continue_statement] = STATE(379), - [sym_goto_statement] = STATE(379), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(34), - [sym_sizeof_expression] = STATE(34), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(34), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(379), - [sym_expression_statement] = STATE(379), - [anon_sym_LBRACE] = ACTIONS(35), - [sym_true] = ACTIONS(5), - [sym_null] = ACTIONS(5), - [anon_sym_do] = ACTIONS(39), - [anon_sym_goto] = ACTIONS(9), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(477), - [anon_sym_for] = ACTIONS(55), - [anon_sym_break] = ACTIONS(57), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(65), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(67), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(5), - [anon_sym_return] = ACTIONS(73), - [anon_sym_while] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_SEMI] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_identifier] = ACTIONS(1051), + [aux_sym_preproc_include_token1] = ACTIONS(1051), + [aux_sym_preproc_def_token1] = ACTIONS(1051), + [aux_sym_preproc_if_token1] = ACTIONS(1051), + [aux_sym_preproc_if_token2] = ACTIONS(1051), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1051), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1051), + [sym_preproc_directive] = ACTIONS(1051), + [anon_sym_SEMI] = ACTIONS(1049), + [anon_sym_typedef] = ACTIONS(1051), + [anon_sym_extern] = ACTIONS(1051), + [anon_sym___attribute__] = ACTIONS(1051), + [anon_sym_LPAREN2] = ACTIONS(1049), + [anon_sym_LBRACE] = ACTIONS(1049), + [anon_sym_STAR] = ACTIONS(1049), + [anon_sym_static] = ACTIONS(1051), + [anon_sym_auto] = ACTIONS(1051), + [anon_sym_register] = ACTIONS(1051), + [anon_sym_inline] = ACTIONS(1051), + [anon_sym_const] = ACTIONS(1051), + [anon_sym_volatile] = ACTIONS(1051), + [anon_sym_restrict] = ACTIONS(1051), + [anon_sym__Atomic] = ACTIONS(1051), + [anon_sym_signed] = ACTIONS(1051), + [anon_sym_unsigned] = ACTIONS(1051), + [anon_sym_long] = ACTIONS(1051), + [anon_sym_short] = ACTIONS(1051), + [sym_primitive_type] = ACTIONS(1051), + [anon_sym_enum] = ACTIONS(1051), + [anon_sym_struct] = ACTIONS(1051), + [anon_sym_union] = ACTIONS(1051), + [anon_sym_if] = ACTIONS(1051), + [anon_sym_else] = ACTIONS(1051), + [anon_sym_switch] = ACTIONS(1051), + [anon_sym_while] = ACTIONS(1051), + [anon_sym_do] = ACTIONS(1051), + [anon_sym_for] = ACTIONS(1051), + [anon_sym_return] = ACTIONS(1051), + [anon_sym_break] = ACTIONS(1051), + [anon_sym_continue] = ACTIONS(1051), + [anon_sym_goto] = ACTIONS(1051), + [anon_sym_AMP] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_TILDE] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_PLUS] = ACTIONS(1051), + [anon_sym_DASH_DASH] = ACTIONS(1049), + [anon_sym_PLUS_PLUS] = ACTIONS(1049), + [anon_sym_sizeof] = ACTIONS(1051), + [sym_number_literal] = ACTIONS(1049), + [anon_sym_L_SQUOTE] = ACTIONS(1049), + [anon_sym_SQUOTE] = ACTIONS(1049), + [anon_sym_L_DQUOTE] = ACTIONS(1049), + [anon_sym_DQUOTE] = ACTIONS(1049), + [sym_true] = ACTIONS(1051), + [sym_false] = ACTIONS(1051), + [sym_null] = ACTIONS(1051), + [sym_comment] = ACTIONS(3), }, [276] = { - [sym_char_literal] = STATE(380), - [sym__expression] = STATE(380), - [sym_binary_expression] = STATE(380), - [sym_update_expression] = STATE(380), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(380), - [sym_sizeof_expression] = STATE(380), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(380), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(380), - [sym_assignment_expression] = STATE(380), - [sym_cast_expression] = STATE(380), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(380), - [anon_sym_BANG] = ACTIONS(47), - [sym_true] = ACTIONS(1376), - [sym_null] = ACTIONS(1376), - [sym_number_literal] = ACTIONS(1378), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(61), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_AMP] = ACTIONS(43), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(1376), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_identifier] = ACTIONS(1001), + [aux_sym_preproc_include_token1] = ACTIONS(1001), + [aux_sym_preproc_def_token1] = ACTIONS(1001), + [aux_sym_preproc_if_token1] = ACTIONS(1001), + [aux_sym_preproc_if_token2] = ACTIONS(1001), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1001), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1001), + [sym_preproc_directive] = ACTIONS(1001), + [anon_sym_SEMI] = ACTIONS(999), + [anon_sym_typedef] = ACTIONS(1001), + [anon_sym_extern] = ACTIONS(1001), + [anon_sym___attribute__] = ACTIONS(1001), + [anon_sym_LPAREN2] = ACTIONS(999), + [anon_sym_LBRACE] = ACTIONS(999), + [anon_sym_STAR] = ACTIONS(999), + [anon_sym_static] = ACTIONS(1001), + [anon_sym_auto] = ACTIONS(1001), + [anon_sym_register] = ACTIONS(1001), + [anon_sym_inline] = ACTIONS(1001), + [anon_sym_const] = ACTIONS(1001), + [anon_sym_volatile] = ACTIONS(1001), + [anon_sym_restrict] = ACTIONS(1001), + [anon_sym__Atomic] = ACTIONS(1001), + [anon_sym_signed] = ACTIONS(1001), + [anon_sym_unsigned] = ACTIONS(1001), + [anon_sym_long] = ACTIONS(1001), + [anon_sym_short] = ACTIONS(1001), + [sym_primitive_type] = ACTIONS(1001), + [anon_sym_enum] = ACTIONS(1001), + [anon_sym_struct] = ACTIONS(1001), + [anon_sym_union] = ACTIONS(1001), + [anon_sym_if] = ACTIONS(1001), + [anon_sym_else] = ACTIONS(1001), + [anon_sym_switch] = ACTIONS(1001), + [anon_sym_while] = ACTIONS(1001), + [anon_sym_do] = ACTIONS(1001), + [anon_sym_for] = ACTIONS(1001), + [anon_sym_return] = ACTIONS(1001), + [anon_sym_break] = ACTIONS(1001), + [anon_sym_continue] = ACTIONS(1001), + [anon_sym_goto] = ACTIONS(1001), + [anon_sym_AMP] = ACTIONS(999), + [anon_sym_BANG] = ACTIONS(999), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH_DASH] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_sizeof] = ACTIONS(1001), + [sym_number_literal] = ACTIONS(999), + [anon_sym_L_SQUOTE] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(999), + [anon_sym_L_DQUOTE] = ACTIONS(999), + [anon_sym_DQUOTE] = ACTIONS(999), + [sym_true] = ACTIONS(1001), + [sym_false] = ACTIONS(1001), + [sym_null] = ACTIONS(1001), + [sym_comment] = ACTIONS(3), }, [277] = { - [anon_sym_case] = ACTIONS(1380), - [sym_true] = ACTIONS(1380), - [anon_sym_restrict] = ACTIONS(1380), - [sym_null] = ACTIONS(1380), - [anon_sym_goto] = ACTIONS(1380), - [anon_sym_const] = ACTIONS(1380), - [anon_sym_typedef] = ACTIONS(1380), - [anon_sym_DASH_DASH] = ACTIONS(1382), - [anon_sym_default] = ACTIONS(1380), - [anon_sym__Atomic] = ACTIONS(1380), - [sym_identifier] = ACTIONS(1380), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1380), - [sym_number_literal] = ACTIONS(1382), - [anon_sym_volatile] = ACTIONS(1380), - [anon_sym_SQUOTE] = ACTIONS(1382), - [anon_sym_extern] = ACTIONS(1380), - [anon_sym_PLUS_PLUS] = ACTIONS(1382), - [anon_sym_struct] = ACTIONS(1380), - [anon_sym_signed] = ACTIONS(1380), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1380), - [anon_sym_while] = ACTIONS(1380), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1380), - [anon_sym_L_SQUOTE] = ACTIONS(1382), - [anon_sym___attribute__] = ACTIONS(1380), - [anon_sym_sizeof] = ACTIONS(1380), - [anon_sym_LBRACE] = ACTIONS(1382), - [anon_sym_union] = ACTIONS(1380), - [anon_sym_unsigned] = ACTIONS(1380), - [anon_sym_short] = ACTIONS(1380), - [anon_sym_do] = ACTIONS(1380), - [sym_preproc_directive] = ACTIONS(1380), - [anon_sym_AMP] = ACTIONS(1382), - [aux_sym_preproc_if_token1] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1382), - [anon_sym_L_DQUOTE] = ACTIONS(1382), - [anon_sym_LPAREN2] = ACTIONS(1382), - [anon_sym_RBRACE] = ACTIONS(1382), - [anon_sym_else] = ACTIONS(1380), - [sym_primitive_type] = ACTIONS(1380), - [anon_sym_for] = ACTIONS(1380), - [anon_sym_break] = ACTIONS(1380), - [anon_sym_BANG] = ACTIONS(1382), - [aux_sym_preproc_include_token1] = ACTIONS(1380), - [anon_sym_DASH] = ACTIONS(1380), - [anon_sym_static] = ACTIONS(1380), - [anon_sym_DQUOTE] = ACTIONS(1382), - [anon_sym_register] = ACTIONS(1380), - [anon_sym_STAR] = ACTIONS(1382), - [anon_sym_if] = ACTIONS(1380), - [anon_sym_switch] = ACTIONS(1380), - [anon_sym_enum] = ACTIONS(1380), - [sym_false] = ACTIONS(1380), - [ts_builtin_sym_end] = ACTIONS(1382), - [anon_sym_return] = ACTIONS(1380), - [anon_sym_continue] = ACTIONS(1380), - [anon_sym_SEMI] = ACTIONS(1382), - [aux_sym_preproc_def_token1] = ACTIONS(1380), - [anon_sym_PLUS] = ACTIONS(1380), - [anon_sym_auto] = ACTIONS(1380), - [anon_sym_inline] = ACTIONS(1380), + [sym_identifier] = ACTIONS(953), + [aux_sym_preproc_include_token1] = ACTIONS(953), + [aux_sym_preproc_def_token1] = ACTIONS(953), + [aux_sym_preproc_if_token1] = ACTIONS(953), + [aux_sym_preproc_ifdef_token1] = ACTIONS(953), + [aux_sym_preproc_ifdef_token2] = ACTIONS(953), + [sym_preproc_directive] = ACTIONS(953), + [anon_sym_SEMI] = ACTIONS(951), + [anon_sym_typedef] = ACTIONS(953), + [anon_sym_extern] = ACTIONS(953), + [anon_sym___attribute__] = ACTIONS(953), + [anon_sym_LPAREN2] = ACTIONS(951), + [anon_sym_LBRACE] = ACTIONS(951), + [anon_sym_RBRACE] = ACTIONS(951), + [anon_sym_STAR] = ACTIONS(951), + [anon_sym_static] = ACTIONS(953), + [anon_sym_auto] = ACTIONS(953), + [anon_sym_register] = ACTIONS(953), + [anon_sym_inline] = ACTIONS(953), + [anon_sym_const] = ACTIONS(953), + [anon_sym_volatile] = ACTIONS(953), + [anon_sym_restrict] = ACTIONS(953), + [anon_sym__Atomic] = ACTIONS(953), + [anon_sym_signed] = ACTIONS(953), + [anon_sym_unsigned] = ACTIONS(953), + [anon_sym_long] = ACTIONS(953), + [anon_sym_short] = ACTIONS(953), + [sym_primitive_type] = ACTIONS(953), + [anon_sym_enum] = ACTIONS(953), + [anon_sym_struct] = ACTIONS(953), + [anon_sym_union] = ACTIONS(953), + [anon_sym_if] = ACTIONS(953), + [anon_sym_else] = ACTIONS(953), + [anon_sym_switch] = ACTIONS(953), + [anon_sym_while] = ACTIONS(953), + [anon_sym_do] = ACTIONS(953), + [anon_sym_for] = ACTIONS(953), + [anon_sym_return] = ACTIONS(953), + [anon_sym_break] = ACTIONS(953), + [anon_sym_continue] = ACTIONS(953), + [anon_sym_goto] = ACTIONS(953), + [anon_sym_AMP] = ACTIONS(951), + [anon_sym_BANG] = ACTIONS(951), + [anon_sym_TILDE] = ACTIONS(951), + [anon_sym_DASH] = ACTIONS(953), + [anon_sym_PLUS] = ACTIONS(953), + [anon_sym_DASH_DASH] = ACTIONS(951), + [anon_sym_PLUS_PLUS] = ACTIONS(951), + [anon_sym_sizeof] = ACTIONS(953), + [sym_number_literal] = ACTIONS(951), + [anon_sym_L_SQUOTE] = ACTIONS(951), + [anon_sym_SQUOTE] = ACTIONS(951), + [anon_sym_L_DQUOTE] = ACTIONS(951), + [anon_sym_DQUOTE] = ACTIONS(951), + [sym_true] = ACTIONS(953), + [sym_false] = ACTIONS(953), + [sym_null] = ACTIONS(953), + [sym_comment] = ACTIONS(3), }, [278] = { - [anon_sym_COLON] = ACTIONS(1384), + [sym_identifier] = ACTIONS(961), + [aux_sym_preproc_include_token1] = ACTIONS(961), + [aux_sym_preproc_def_token1] = ACTIONS(961), + [aux_sym_preproc_if_token1] = ACTIONS(961), + [aux_sym_preproc_ifdef_token1] = ACTIONS(961), + [aux_sym_preproc_ifdef_token2] = ACTIONS(961), + [sym_preproc_directive] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(959), + [anon_sym_typedef] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(961), + [anon_sym___attribute__] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(959), + [anon_sym_LBRACE] = ACTIONS(959), + [anon_sym_RBRACE] = ACTIONS(959), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_static] = ACTIONS(961), + [anon_sym_auto] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_inline] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_volatile] = ACTIONS(961), + [anon_sym_restrict] = ACTIONS(961), + [anon_sym__Atomic] = ACTIONS(961), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [sym_primitive_type] = ACTIONS(961), + [anon_sym_enum] = ACTIONS(961), + [anon_sym_struct] = ACTIONS(961), + [anon_sym_union] = ACTIONS(961), + [anon_sym_if] = ACTIONS(961), + [anon_sym_else] = ACTIONS(961), + [anon_sym_switch] = ACTIONS(961), + [anon_sym_while] = ACTIONS(961), + [anon_sym_do] = ACTIONS(961), + [anon_sym_for] = ACTIONS(961), + [anon_sym_return] = ACTIONS(961), + [anon_sym_break] = ACTIONS(961), + [anon_sym_continue] = ACTIONS(961), + [anon_sym_goto] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(959), + [anon_sym_BANG] = ACTIONS(959), + [anon_sym_TILDE] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(959), + [anon_sym_sizeof] = ACTIONS(961), + [sym_number_literal] = ACTIONS(959), + [anon_sym_L_SQUOTE] = ACTIONS(959), + [anon_sym_SQUOTE] = ACTIONS(959), + [anon_sym_L_DQUOTE] = ACTIONS(959), + [anon_sym_DQUOTE] = ACTIONS(959), + [sym_true] = ACTIONS(961), + [sym_false] = ACTIONS(961), + [sym_null] = ACTIONS(961), [sym_comment] = ACTIONS(3), }, [279] = { - [sym_if_statement] = STATE(383), - [sym_do_statement] = STATE(383), - [sym_for_statement] = STATE(383), - [sym__expression] = STATE(1093), - [sym_comma_expression] = STATE(1094), - [sym_binary_expression] = STATE(1093), - [sym_update_expression] = STATE(1093), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(383), - [sym_return_statement] = STATE(383), - [sym_break_statement] = STATE(383), - [sym_conditional_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_cast_expression] = STATE(1093), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1093), - [sym_char_literal] = STATE(1093), - [sym_labeled_statement] = STATE(383), - [sym_case_statement] = STATE(383), - [sym_while_statement] = STATE(383), - [sym_continue_statement] = STATE(383), - [sym_goto_statement] = STATE(383), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1093), - [sym_sizeof_expression] = STATE(1093), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1093), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(383), - [aux_sym_switch_body_repeat1] = STATE(383), - [sym_expression_statement] = STATE(383), - [anon_sym_LBRACE] = ACTIONS(994), - [anon_sym_case] = ACTIONS(996), - [sym_true] = ACTIONS(998), - [sym_null] = ACTIONS(998), - [anon_sym_do] = ACTIONS(1000), - [anon_sym_goto] = ACTIONS(1002), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(1386), - [anon_sym_default] = ACTIONS(1006), - [sym_identifier] = ACTIONS(1008), - [anon_sym_for] = ACTIONS(1010), - [anon_sym_break] = ACTIONS(1012), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(1014), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(1016), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(1018), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(998), - [anon_sym_return] = ACTIONS(1020), - [anon_sym_while] = ACTIONS(1022), - [anon_sym_continue] = ACTIONS(1024), - [anon_sym_SEMI] = ACTIONS(1026), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_identifier] = ACTIONS(965), + [aux_sym_preproc_include_token1] = ACTIONS(965), + [aux_sym_preproc_def_token1] = ACTIONS(965), + [aux_sym_preproc_if_token1] = ACTIONS(965), + [aux_sym_preproc_ifdef_token1] = ACTIONS(965), + [aux_sym_preproc_ifdef_token2] = ACTIONS(965), + [sym_preproc_directive] = ACTIONS(965), + [anon_sym_SEMI] = ACTIONS(963), + [anon_sym_typedef] = ACTIONS(965), + [anon_sym_extern] = ACTIONS(965), + [anon_sym___attribute__] = ACTIONS(965), + [anon_sym_LPAREN2] = ACTIONS(963), + [anon_sym_LBRACE] = ACTIONS(963), + [anon_sym_RBRACE] = ACTIONS(963), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_static] = ACTIONS(965), + [anon_sym_auto] = ACTIONS(965), + [anon_sym_register] = ACTIONS(965), + [anon_sym_inline] = ACTIONS(965), + [anon_sym_const] = ACTIONS(965), + [anon_sym_volatile] = ACTIONS(965), + [anon_sym_restrict] = ACTIONS(965), + [anon_sym__Atomic] = ACTIONS(965), + [anon_sym_signed] = ACTIONS(965), + [anon_sym_unsigned] = ACTIONS(965), + [anon_sym_long] = ACTIONS(965), + [anon_sym_short] = ACTIONS(965), + [sym_primitive_type] = ACTIONS(965), + [anon_sym_enum] = ACTIONS(965), + [anon_sym_struct] = ACTIONS(965), + [anon_sym_union] = ACTIONS(965), + [anon_sym_if] = ACTIONS(965), + [anon_sym_else] = ACTIONS(965), + [anon_sym_switch] = ACTIONS(965), + [anon_sym_while] = ACTIONS(965), + [anon_sym_do] = ACTIONS(965), + [anon_sym_for] = ACTIONS(965), + [anon_sym_return] = ACTIONS(965), + [anon_sym_break] = ACTIONS(965), + [anon_sym_continue] = ACTIONS(965), + [anon_sym_goto] = ACTIONS(965), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(963), + [anon_sym_TILDE] = ACTIONS(963), + [anon_sym_DASH] = ACTIONS(965), + [anon_sym_PLUS] = ACTIONS(965), + [anon_sym_DASH_DASH] = ACTIONS(963), + [anon_sym_PLUS_PLUS] = ACTIONS(963), + [anon_sym_sizeof] = ACTIONS(965), + [sym_number_literal] = ACTIONS(963), + [anon_sym_L_SQUOTE] = ACTIONS(963), + [anon_sym_SQUOTE] = ACTIONS(963), + [anon_sym_L_DQUOTE] = ACTIONS(963), + [anon_sym_DQUOTE] = ACTIONS(963), + [sym_true] = ACTIONS(965), + [sym_false] = ACTIONS(965), + [sym_null] = ACTIONS(965), + [sym_comment] = ACTIONS(3), }, [280] = { - [sym_char_literal] = STATE(384), - [sym__expression] = STATE(384), - [sym_binary_expression] = STATE(384), - [sym_update_expression] = STATE(384), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(384), - [sym_sizeof_expression] = STATE(384), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(384), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(384), - [sym_assignment_expression] = STATE(384), - [sym_cast_expression] = STATE(384), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(384), - [anon_sym_BANG] = ACTIONS(47), - [sym_true] = ACTIONS(1388), - [sym_null] = ACTIONS(1388), - [sym_number_literal] = ACTIONS(1390), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(61), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_AMP] = ACTIONS(43), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(1388), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_identifier] = ACTIONS(969), + [aux_sym_preproc_include_token1] = ACTIONS(969), + [aux_sym_preproc_def_token1] = ACTIONS(969), + [aux_sym_preproc_if_token1] = ACTIONS(969), + [aux_sym_preproc_ifdef_token1] = ACTIONS(969), + [aux_sym_preproc_ifdef_token2] = ACTIONS(969), + [sym_preproc_directive] = ACTIONS(969), + [anon_sym_SEMI] = ACTIONS(967), + [anon_sym_typedef] = ACTIONS(969), + [anon_sym_extern] = ACTIONS(969), + [anon_sym___attribute__] = ACTIONS(969), + [anon_sym_LPAREN2] = ACTIONS(967), + [anon_sym_LBRACE] = ACTIONS(967), + [anon_sym_RBRACE] = ACTIONS(967), + [anon_sym_STAR] = ACTIONS(967), + [anon_sym_static] = ACTIONS(969), + [anon_sym_auto] = ACTIONS(969), + [anon_sym_register] = ACTIONS(969), + [anon_sym_inline] = ACTIONS(969), + [anon_sym_const] = ACTIONS(969), + [anon_sym_volatile] = ACTIONS(969), + [anon_sym_restrict] = ACTIONS(969), + [anon_sym__Atomic] = ACTIONS(969), + [anon_sym_signed] = ACTIONS(969), + [anon_sym_unsigned] = ACTIONS(969), + [anon_sym_long] = ACTIONS(969), + [anon_sym_short] = ACTIONS(969), + [sym_primitive_type] = ACTIONS(969), + [anon_sym_enum] = ACTIONS(969), + [anon_sym_struct] = ACTIONS(969), + [anon_sym_union] = ACTIONS(969), + [anon_sym_if] = ACTIONS(969), + [anon_sym_else] = ACTIONS(969), + [anon_sym_switch] = ACTIONS(969), + [anon_sym_while] = ACTIONS(969), + [anon_sym_do] = ACTIONS(969), + [anon_sym_for] = ACTIONS(969), + [anon_sym_return] = ACTIONS(969), + [anon_sym_break] = ACTIONS(969), + [anon_sym_continue] = ACTIONS(969), + [anon_sym_goto] = ACTIONS(969), + [anon_sym_AMP] = ACTIONS(967), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH_DASH] = ACTIONS(967), + [anon_sym_PLUS_PLUS] = ACTIONS(967), + [anon_sym_sizeof] = ACTIONS(969), + [sym_number_literal] = ACTIONS(967), + [anon_sym_L_SQUOTE] = ACTIONS(967), + [anon_sym_SQUOTE] = ACTIONS(967), + [anon_sym_L_DQUOTE] = ACTIONS(967), + [anon_sym_DQUOTE] = ACTIONS(967), + [sym_true] = ACTIONS(969), + [sym_false] = ACTIONS(969), + [sym_null] = ACTIONS(969), + [sym_comment] = ACTIONS(3), }, [281] = { - [anon_sym_restrict] = ACTIONS(1392), - [anon_sym_COMMA] = ACTIONS(1394), - [anon_sym_static] = ACTIONS(1392), - [anon_sym_volatile] = ACTIONS(1392), - [anon_sym_register] = ACTIONS(1392), - [anon_sym_extern] = ACTIONS(1392), - [anon_sym_STAR] = ACTIONS(1394), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(1392), - [anon_sym_LPAREN2] = ACTIONS(1394), - [anon_sym_COLON] = ACTIONS(1394), - [anon_sym_SEMI] = ACTIONS(1394), - [anon_sym__Atomic] = ACTIONS(1392), - [sym_identifier] = ACTIONS(1392), - [anon_sym_auto] = ACTIONS(1392), - [anon_sym_RPAREN] = ACTIONS(1394), - [anon_sym_inline] = ACTIONS(1392), - [anon_sym___attribute__] = ACTIONS(1392), - [anon_sym_LBRACK] = ACTIONS(1394), + [sym_identifier] = ACTIONS(933), + [aux_sym_preproc_include_token1] = ACTIONS(933), + [aux_sym_preproc_def_token1] = ACTIONS(933), + [aux_sym_preproc_if_token1] = ACTIONS(933), + [aux_sym_preproc_if_token2] = ACTIONS(933), + [aux_sym_preproc_ifdef_token1] = ACTIONS(933), + [aux_sym_preproc_ifdef_token2] = ACTIONS(933), + [sym_preproc_directive] = ACTIONS(933), + [anon_sym_SEMI] = ACTIONS(931), + [anon_sym_typedef] = ACTIONS(933), + [anon_sym_extern] = ACTIONS(933), + [anon_sym___attribute__] = ACTIONS(933), + [anon_sym_LPAREN2] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(931), + [anon_sym_STAR] = ACTIONS(931), + [anon_sym_static] = ACTIONS(933), + [anon_sym_auto] = ACTIONS(933), + [anon_sym_register] = ACTIONS(933), + [anon_sym_inline] = ACTIONS(933), + [anon_sym_const] = ACTIONS(933), + [anon_sym_volatile] = ACTIONS(933), + [anon_sym_restrict] = ACTIONS(933), + [anon_sym__Atomic] = ACTIONS(933), + [anon_sym_signed] = ACTIONS(933), + [anon_sym_unsigned] = ACTIONS(933), + [anon_sym_long] = ACTIONS(933), + [anon_sym_short] = ACTIONS(933), + [sym_primitive_type] = ACTIONS(933), + [anon_sym_enum] = ACTIONS(933), + [anon_sym_struct] = ACTIONS(933), + [anon_sym_union] = ACTIONS(933), + [anon_sym_if] = ACTIONS(933), + [anon_sym_else] = ACTIONS(933), + [anon_sym_switch] = ACTIONS(933), + [anon_sym_while] = ACTIONS(933), + [anon_sym_do] = ACTIONS(933), + [anon_sym_for] = ACTIONS(933), + [anon_sym_return] = ACTIONS(933), + [anon_sym_break] = ACTIONS(933), + [anon_sym_continue] = ACTIONS(933), + [anon_sym_goto] = ACTIONS(933), + [anon_sym_AMP] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_TILDE] = ACTIONS(931), + [anon_sym_DASH] = ACTIONS(933), + [anon_sym_PLUS] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_sizeof] = ACTIONS(933), + [sym_number_literal] = ACTIONS(931), + [anon_sym_L_SQUOTE] = ACTIONS(931), + [anon_sym_SQUOTE] = ACTIONS(931), + [anon_sym_L_DQUOTE] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(931), + [sym_true] = ACTIONS(933), + [sym_false] = ACTIONS(933), + [sym_null] = ACTIONS(933), + [sym_comment] = ACTIONS(3), }, [282] = { - [sym_enumerator] = STATE(386), - [sym_identifier] = ACTIONS(513), - [anon_sym_RBRACE] = ACTIONS(1396), + [sym_identifier] = ACTIONS(985), + [aux_sym_preproc_include_token1] = ACTIONS(985), + [aux_sym_preproc_def_token1] = ACTIONS(985), + [aux_sym_preproc_if_token1] = ACTIONS(985), + [aux_sym_preproc_ifdef_token1] = ACTIONS(985), + [aux_sym_preproc_ifdef_token2] = ACTIONS(985), + [sym_preproc_directive] = ACTIONS(985), + [anon_sym_SEMI] = ACTIONS(983), + [anon_sym_typedef] = ACTIONS(985), + [anon_sym_extern] = ACTIONS(985), + [anon_sym___attribute__] = ACTIONS(985), + [anon_sym_LPAREN2] = ACTIONS(983), + [anon_sym_LBRACE] = ACTIONS(983), + [anon_sym_RBRACE] = ACTIONS(983), + [anon_sym_STAR] = ACTIONS(983), + [anon_sym_static] = ACTIONS(985), + [anon_sym_auto] = ACTIONS(985), + [anon_sym_register] = ACTIONS(985), + [anon_sym_inline] = ACTIONS(985), + [anon_sym_const] = ACTIONS(985), + [anon_sym_volatile] = ACTIONS(985), + [anon_sym_restrict] = ACTIONS(985), + [anon_sym__Atomic] = ACTIONS(985), + [anon_sym_signed] = ACTIONS(985), + [anon_sym_unsigned] = ACTIONS(985), + [anon_sym_long] = ACTIONS(985), + [anon_sym_short] = ACTIONS(985), + [sym_primitive_type] = ACTIONS(985), + [anon_sym_enum] = ACTIONS(985), + [anon_sym_struct] = ACTIONS(985), + [anon_sym_union] = ACTIONS(985), + [anon_sym_if] = ACTIONS(985), + [anon_sym_else] = ACTIONS(985), + [anon_sym_switch] = ACTIONS(985), + [anon_sym_while] = ACTIONS(985), + [anon_sym_do] = ACTIONS(985), + [anon_sym_for] = ACTIONS(985), + [anon_sym_return] = ACTIONS(985), + [anon_sym_break] = ACTIONS(985), + [anon_sym_continue] = ACTIONS(985), + [anon_sym_goto] = ACTIONS(985), + [anon_sym_AMP] = ACTIONS(983), + [anon_sym_BANG] = ACTIONS(983), + [anon_sym_TILDE] = ACTIONS(983), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(985), + [anon_sym_DASH_DASH] = ACTIONS(983), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_sizeof] = ACTIONS(985), + [sym_number_literal] = ACTIONS(983), + [anon_sym_L_SQUOTE] = ACTIONS(983), + [anon_sym_SQUOTE] = ACTIONS(983), + [anon_sym_L_DQUOTE] = ACTIONS(983), + [anon_sym_DQUOTE] = ACTIONS(983), + [sym_true] = ACTIONS(985), + [sym_false] = ACTIONS(985), + [sym_null] = ACTIONS(985), [sym_comment] = ACTIONS(3), }, [283] = { - [aux_sym_enumerator_list_repeat1] = STATE(388), - [anon_sym_COMMA] = ACTIONS(1398), - [anon_sym_RBRACE] = ACTIONS(1396), + [sym_identifier] = ACTIONS(1013), + [aux_sym_preproc_include_token1] = ACTIONS(1013), + [aux_sym_preproc_def_token1] = ACTIONS(1013), + [aux_sym_preproc_if_token1] = ACTIONS(1013), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1013), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1013), + [sym_preproc_directive] = ACTIONS(1013), + [anon_sym_SEMI] = ACTIONS(1011), + [anon_sym_typedef] = ACTIONS(1013), + [anon_sym_extern] = ACTIONS(1013), + [anon_sym___attribute__] = ACTIONS(1013), + [anon_sym_LPAREN2] = ACTIONS(1011), + [anon_sym_LBRACE] = ACTIONS(1011), + [anon_sym_RBRACE] = ACTIONS(1011), + [anon_sym_STAR] = ACTIONS(1011), + [anon_sym_static] = ACTIONS(1013), + [anon_sym_auto] = ACTIONS(1013), + [anon_sym_register] = ACTIONS(1013), + [anon_sym_inline] = ACTIONS(1013), + [anon_sym_const] = ACTIONS(1013), + [anon_sym_volatile] = ACTIONS(1013), + [anon_sym_restrict] = ACTIONS(1013), + [anon_sym__Atomic] = ACTIONS(1013), + [anon_sym_signed] = ACTIONS(1013), + [anon_sym_unsigned] = ACTIONS(1013), + [anon_sym_long] = ACTIONS(1013), + [anon_sym_short] = ACTIONS(1013), + [sym_primitive_type] = ACTIONS(1013), + [anon_sym_enum] = ACTIONS(1013), + [anon_sym_struct] = ACTIONS(1013), + [anon_sym_union] = ACTIONS(1013), + [anon_sym_if] = ACTIONS(1013), + [anon_sym_else] = ACTIONS(1013), + [anon_sym_switch] = ACTIONS(1013), + [anon_sym_while] = ACTIONS(1013), + [anon_sym_do] = ACTIONS(1013), + [anon_sym_for] = ACTIONS(1013), + [anon_sym_return] = ACTIONS(1013), + [anon_sym_break] = ACTIONS(1013), + [anon_sym_continue] = ACTIONS(1013), + [anon_sym_goto] = ACTIONS(1013), + [anon_sym_AMP] = ACTIONS(1011), + [anon_sym_BANG] = ACTIONS(1011), + [anon_sym_TILDE] = ACTIONS(1011), + [anon_sym_DASH] = ACTIONS(1013), + [anon_sym_PLUS] = ACTIONS(1013), + [anon_sym_DASH_DASH] = ACTIONS(1011), + [anon_sym_PLUS_PLUS] = ACTIONS(1011), + [anon_sym_sizeof] = ACTIONS(1013), + [sym_number_literal] = ACTIONS(1011), + [anon_sym_L_SQUOTE] = ACTIONS(1011), + [anon_sym_SQUOTE] = ACTIONS(1011), + [anon_sym_L_DQUOTE] = ACTIONS(1011), + [anon_sym_DQUOTE] = ACTIONS(1011), + [sym_true] = ACTIONS(1013), + [sym_false] = ACTIONS(1013), + [sym_null] = ACTIONS(1013), [sym_comment] = ACTIONS(3), }, [284] = { - [sym_true] = ACTIONS(1400), - [anon_sym_restrict] = ACTIONS(1400), - [sym_null] = ACTIONS(1400), - [anon_sym_goto] = ACTIONS(1400), - [anon_sym_const] = ACTIONS(1400), - [anon_sym_typedef] = ACTIONS(1400), - [anon_sym_DASH_DASH] = ACTIONS(1402), - [anon_sym__Atomic] = ACTIONS(1400), - [sym_identifier] = ACTIONS(1400), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1400), - [sym_number_literal] = ACTIONS(1402), - [anon_sym_volatile] = ACTIONS(1400), - [anon_sym_SQUOTE] = ACTIONS(1402), - [anon_sym_extern] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1402), - [anon_sym_struct] = ACTIONS(1400), - [anon_sym_signed] = ACTIONS(1400), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1400), - [anon_sym_while] = ACTIONS(1400), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1400), - [anon_sym_L_SQUOTE] = ACTIONS(1402), - [anon_sym___attribute__] = ACTIONS(1400), - [anon_sym_sizeof] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1402), - [anon_sym_union] = ACTIONS(1400), - [anon_sym_unsigned] = ACTIONS(1400), - [anon_sym_short] = ACTIONS(1400), - [anon_sym_do] = ACTIONS(1400), - [sym_preproc_directive] = ACTIONS(1400), - [anon_sym_AMP] = ACTIONS(1402), - [aux_sym_preproc_if_token1] = ACTIONS(1400), - [anon_sym_TILDE] = ACTIONS(1402), - [anon_sym_L_DQUOTE] = ACTIONS(1402), - [anon_sym_LPAREN2] = ACTIONS(1402), - [sym_primitive_type] = ACTIONS(1400), - [anon_sym_for] = ACTIONS(1400), - [anon_sym_break] = ACTIONS(1400), - [anon_sym_BANG] = ACTIONS(1402), - [aux_sym_preproc_include_token1] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_static] = ACTIONS(1400), - [anon_sym_DQUOTE] = ACTIONS(1402), - [anon_sym_register] = ACTIONS(1400), - [anon_sym_STAR] = ACTIONS(1402), - [anon_sym_if] = ACTIONS(1400), - [anon_sym_switch] = ACTIONS(1400), - [anon_sym_enum] = ACTIONS(1400), - [sym_false] = ACTIONS(1400), - [ts_builtin_sym_end] = ACTIONS(1402), - [anon_sym_return] = ACTIONS(1400), - [anon_sym_continue] = ACTIONS(1400), - [anon_sym_SEMI] = ACTIONS(1402), - [aux_sym_preproc_def_token1] = ACTIONS(1400), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_auto] = ACTIONS(1400), - [anon_sym_inline] = ACTIONS(1400), + [sym_identifier] = ACTIONS(1021), + [aux_sym_preproc_include_token1] = ACTIONS(1021), + [aux_sym_preproc_def_token1] = ACTIONS(1021), + [aux_sym_preproc_if_token1] = ACTIONS(1021), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1021), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1021), + [sym_preproc_directive] = ACTIONS(1021), + [anon_sym_SEMI] = ACTIONS(1019), + [anon_sym_typedef] = ACTIONS(1021), + [anon_sym_extern] = ACTIONS(1021), + [anon_sym___attribute__] = ACTIONS(1021), + [anon_sym_LPAREN2] = ACTIONS(1019), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_RBRACE] = ACTIONS(1019), + [anon_sym_STAR] = ACTIONS(1019), + [anon_sym_static] = ACTIONS(1021), + [anon_sym_auto] = ACTIONS(1021), + [anon_sym_register] = ACTIONS(1021), + [anon_sym_inline] = ACTIONS(1021), + [anon_sym_const] = ACTIONS(1021), + [anon_sym_volatile] = ACTIONS(1021), + [anon_sym_restrict] = ACTIONS(1021), + [anon_sym__Atomic] = ACTIONS(1021), + [anon_sym_signed] = ACTIONS(1021), + [anon_sym_unsigned] = ACTIONS(1021), + [anon_sym_long] = ACTIONS(1021), + [anon_sym_short] = ACTIONS(1021), + [sym_primitive_type] = ACTIONS(1021), + [anon_sym_enum] = ACTIONS(1021), + [anon_sym_struct] = ACTIONS(1021), + [anon_sym_union] = ACTIONS(1021), + [anon_sym_if] = ACTIONS(1021), + [anon_sym_else] = ACTIONS(1177), + [anon_sym_switch] = ACTIONS(1021), + [anon_sym_while] = ACTIONS(1021), + [anon_sym_do] = ACTIONS(1021), + [anon_sym_for] = ACTIONS(1021), + [anon_sym_return] = ACTIONS(1021), + [anon_sym_break] = ACTIONS(1021), + [anon_sym_continue] = ACTIONS(1021), + [anon_sym_goto] = ACTIONS(1021), + [anon_sym_AMP] = ACTIONS(1019), + [anon_sym_BANG] = ACTIONS(1019), + [anon_sym_TILDE] = ACTIONS(1019), + [anon_sym_DASH] = ACTIONS(1021), + [anon_sym_PLUS] = ACTIONS(1021), + [anon_sym_DASH_DASH] = ACTIONS(1019), + [anon_sym_PLUS_PLUS] = ACTIONS(1019), + [anon_sym_sizeof] = ACTIONS(1021), + [sym_number_literal] = ACTIONS(1019), + [anon_sym_L_SQUOTE] = ACTIONS(1019), + [anon_sym_SQUOTE] = ACTIONS(1019), + [anon_sym_L_DQUOTE] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(1019), + [sym_true] = ACTIONS(1021), + [sym_false] = ACTIONS(1021), + [sym_null] = ACTIONS(1021), + [sym_comment] = ACTIONS(3), }, [285] = { - [aux_sym_preproc_params_repeat1] = STATE(391), - [anon_sym_COMMA] = ACTIONS(1404), - [anon_sym_RPAREN] = ACTIONS(1406), + [sym_identifier] = ACTIONS(1027), + [aux_sym_preproc_include_token1] = ACTIONS(1027), + [aux_sym_preproc_def_token1] = ACTIONS(1027), + [aux_sym_preproc_if_token1] = ACTIONS(1027), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1027), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1027), + [sym_preproc_directive] = ACTIONS(1027), + [anon_sym_SEMI] = ACTIONS(1025), + [anon_sym_typedef] = ACTIONS(1027), + [anon_sym_extern] = ACTIONS(1027), + [anon_sym___attribute__] = ACTIONS(1027), + [anon_sym_LPAREN2] = ACTIONS(1025), + [anon_sym_LBRACE] = ACTIONS(1025), + [anon_sym_RBRACE] = ACTIONS(1025), + [anon_sym_STAR] = ACTIONS(1025), + [anon_sym_static] = ACTIONS(1027), + [anon_sym_auto] = ACTIONS(1027), + [anon_sym_register] = ACTIONS(1027), + [anon_sym_inline] = ACTIONS(1027), + [anon_sym_const] = ACTIONS(1027), + [anon_sym_volatile] = ACTIONS(1027), + [anon_sym_restrict] = ACTIONS(1027), + [anon_sym__Atomic] = ACTIONS(1027), + [anon_sym_signed] = ACTIONS(1027), + [anon_sym_unsigned] = ACTIONS(1027), + [anon_sym_long] = ACTIONS(1027), + [anon_sym_short] = ACTIONS(1027), + [sym_primitive_type] = ACTIONS(1027), + [anon_sym_enum] = ACTIONS(1027), + [anon_sym_struct] = ACTIONS(1027), + [anon_sym_union] = ACTIONS(1027), + [anon_sym_if] = ACTIONS(1027), + [anon_sym_else] = ACTIONS(1027), + [anon_sym_switch] = ACTIONS(1027), + [anon_sym_while] = ACTIONS(1027), + [anon_sym_do] = ACTIONS(1027), + [anon_sym_for] = ACTIONS(1027), + [anon_sym_return] = ACTIONS(1027), + [anon_sym_break] = ACTIONS(1027), + [anon_sym_continue] = ACTIONS(1027), + [anon_sym_goto] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1025), + [anon_sym_BANG] = ACTIONS(1025), + [anon_sym_TILDE] = ACTIONS(1025), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH_DASH] = ACTIONS(1025), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_sizeof] = ACTIONS(1027), + [sym_number_literal] = ACTIONS(1025), + [anon_sym_L_SQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1025), + [anon_sym_L_DQUOTE] = ACTIONS(1025), + [anon_sym_DQUOTE] = ACTIONS(1025), + [sym_true] = ACTIONS(1027), + [sym_false] = ACTIONS(1027), + [sym_null] = ACTIONS(1027), [sym_comment] = ACTIONS(3), }, [286] = { - [sym_comment] = ACTIONS(147), - [anon_sym_LF] = ACTIONS(1408), - [sym_preproc_arg] = ACTIONS(1408), + [sym_identifier] = ACTIONS(1031), + [aux_sym_preproc_include_token1] = ACTIONS(1031), + [aux_sym_preproc_def_token1] = ACTIONS(1031), + [aux_sym_preproc_if_token1] = ACTIONS(1031), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1031), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1031), + [sym_preproc_directive] = ACTIONS(1031), + [anon_sym_SEMI] = ACTIONS(1029), + [anon_sym_typedef] = ACTIONS(1031), + [anon_sym_extern] = ACTIONS(1031), + [anon_sym___attribute__] = ACTIONS(1031), + [anon_sym_LPAREN2] = ACTIONS(1029), + [anon_sym_LBRACE] = ACTIONS(1029), + [anon_sym_RBRACE] = ACTIONS(1029), + [anon_sym_STAR] = ACTIONS(1029), + [anon_sym_static] = ACTIONS(1031), + [anon_sym_auto] = ACTIONS(1031), + [anon_sym_register] = ACTIONS(1031), + [anon_sym_inline] = ACTIONS(1031), + [anon_sym_const] = ACTIONS(1031), + [anon_sym_volatile] = ACTIONS(1031), + [anon_sym_restrict] = ACTIONS(1031), + [anon_sym__Atomic] = ACTIONS(1031), + [anon_sym_signed] = ACTIONS(1031), + [anon_sym_unsigned] = ACTIONS(1031), + [anon_sym_long] = ACTIONS(1031), + [anon_sym_short] = ACTIONS(1031), + [sym_primitive_type] = ACTIONS(1031), + [anon_sym_enum] = ACTIONS(1031), + [anon_sym_struct] = ACTIONS(1031), + [anon_sym_union] = ACTIONS(1031), + [anon_sym_if] = ACTIONS(1031), + [anon_sym_else] = ACTIONS(1031), + [anon_sym_switch] = ACTIONS(1031), + [anon_sym_while] = ACTIONS(1031), + [anon_sym_do] = ACTIONS(1031), + [anon_sym_for] = ACTIONS(1031), + [anon_sym_return] = ACTIONS(1031), + [anon_sym_break] = ACTIONS(1031), + [anon_sym_continue] = ACTIONS(1031), + [anon_sym_goto] = ACTIONS(1031), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_TILDE] = ACTIONS(1029), + [anon_sym_DASH] = ACTIONS(1031), + [anon_sym_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_sizeof] = ACTIONS(1031), + [sym_number_literal] = ACTIONS(1029), + [anon_sym_L_SQUOTE] = ACTIONS(1029), + [anon_sym_SQUOTE] = ACTIONS(1029), + [anon_sym_L_DQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE] = ACTIONS(1029), + [sym_true] = ACTIONS(1031), + [sym_false] = ACTIONS(1031), + [sym_null] = ACTIONS(1031), + [sym_comment] = ACTIONS(3), }, [287] = { - [sym_true] = ACTIONS(1410), - [anon_sym_restrict] = ACTIONS(1410), - [sym_null] = ACTIONS(1410), - [anon_sym_goto] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1410), - [anon_sym_typedef] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1412), - [anon_sym__Atomic] = ACTIONS(1410), - [sym_identifier] = ACTIONS(1410), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1410), - [sym_number_literal] = ACTIONS(1412), - [anon_sym_volatile] = ACTIONS(1410), - [anon_sym_SQUOTE] = ACTIONS(1412), - [anon_sym_extern] = ACTIONS(1410), - [anon_sym_PLUS_PLUS] = ACTIONS(1412), - [anon_sym_struct] = ACTIONS(1410), - [anon_sym_signed] = ACTIONS(1410), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1410), - [anon_sym_while] = ACTIONS(1410), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1410), - [anon_sym_L_SQUOTE] = ACTIONS(1412), - [anon_sym___attribute__] = ACTIONS(1410), - [anon_sym_sizeof] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_union] = ACTIONS(1410), - [anon_sym_unsigned] = ACTIONS(1410), - [anon_sym_short] = ACTIONS(1410), - [anon_sym_do] = ACTIONS(1410), - [sym_preproc_directive] = ACTIONS(1410), - [anon_sym_AMP] = ACTIONS(1412), - [aux_sym_preproc_if_token1] = ACTIONS(1410), - [anon_sym_TILDE] = ACTIONS(1412), - [anon_sym_L_DQUOTE] = ACTIONS(1412), - [anon_sym_LPAREN2] = ACTIONS(1412), - [sym_primitive_type] = ACTIONS(1410), - [anon_sym_for] = ACTIONS(1410), - [anon_sym_break] = ACTIONS(1410), - [anon_sym_BANG] = ACTIONS(1412), - [aux_sym_preproc_include_token1] = ACTIONS(1410), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_static] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_register] = ACTIONS(1410), - [anon_sym_STAR] = ACTIONS(1412), - [anon_sym_if] = ACTIONS(1410), - [anon_sym_switch] = ACTIONS(1410), - [anon_sym_enum] = ACTIONS(1410), - [sym_false] = ACTIONS(1410), - [ts_builtin_sym_end] = ACTIONS(1412), - [anon_sym_return] = ACTIONS(1410), - [anon_sym_continue] = ACTIONS(1410), - [anon_sym_SEMI] = ACTIONS(1412), - [aux_sym_preproc_def_token1] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_auto] = ACTIONS(1410), - [anon_sym_inline] = ACTIONS(1410), + [sym_identifier] = ACTIONS(1035), + [aux_sym_preproc_include_token1] = ACTIONS(1035), + [aux_sym_preproc_def_token1] = ACTIONS(1035), + [aux_sym_preproc_if_token1] = ACTIONS(1035), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1035), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1035), + [sym_preproc_directive] = ACTIONS(1035), + [anon_sym_SEMI] = ACTIONS(1033), + [anon_sym_typedef] = ACTIONS(1035), + [anon_sym_extern] = ACTIONS(1035), + [anon_sym___attribute__] = ACTIONS(1035), + [anon_sym_LPAREN2] = ACTIONS(1033), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_RBRACE] = ACTIONS(1033), + [anon_sym_STAR] = ACTIONS(1033), + [anon_sym_static] = ACTIONS(1035), + [anon_sym_auto] = ACTIONS(1035), + [anon_sym_register] = ACTIONS(1035), + [anon_sym_inline] = ACTIONS(1035), + [anon_sym_const] = ACTIONS(1035), + [anon_sym_volatile] = ACTIONS(1035), + [anon_sym_restrict] = ACTIONS(1035), + [anon_sym__Atomic] = ACTIONS(1035), + [anon_sym_signed] = ACTIONS(1035), + [anon_sym_unsigned] = ACTIONS(1035), + [anon_sym_long] = ACTIONS(1035), + [anon_sym_short] = ACTIONS(1035), + [sym_primitive_type] = ACTIONS(1035), + [anon_sym_enum] = ACTIONS(1035), + [anon_sym_struct] = ACTIONS(1035), + [anon_sym_union] = ACTIONS(1035), + [anon_sym_if] = ACTIONS(1035), + [anon_sym_else] = ACTIONS(1035), + [anon_sym_switch] = ACTIONS(1035), + [anon_sym_while] = ACTIONS(1035), + [anon_sym_do] = ACTIONS(1035), + [anon_sym_for] = ACTIONS(1035), + [anon_sym_return] = ACTIONS(1035), + [anon_sym_break] = ACTIONS(1035), + [anon_sym_continue] = ACTIONS(1035), + [anon_sym_goto] = ACTIONS(1035), + [anon_sym_AMP] = ACTIONS(1033), + [anon_sym_BANG] = ACTIONS(1033), + [anon_sym_TILDE] = ACTIONS(1033), + [anon_sym_DASH] = ACTIONS(1035), + [anon_sym_PLUS] = ACTIONS(1035), + [anon_sym_DASH_DASH] = ACTIONS(1033), + [anon_sym_PLUS_PLUS] = ACTIONS(1033), + [anon_sym_sizeof] = ACTIONS(1035), + [sym_number_literal] = ACTIONS(1033), + [anon_sym_L_SQUOTE] = ACTIONS(1033), + [anon_sym_SQUOTE] = ACTIONS(1033), + [anon_sym_L_DQUOTE] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(1033), + [sym_true] = ACTIONS(1035), + [sym_false] = ACTIONS(1035), + [sym_null] = ACTIONS(1035), + [sym_comment] = ACTIONS(3), }, [288] = { - [anon_sym_LF] = ACTIONS(1414), - [sym_comment] = ACTIONS(147), + [sym_identifier] = ACTIONS(1039), + [aux_sym_preproc_include_token1] = ACTIONS(1039), + [aux_sym_preproc_def_token1] = ACTIONS(1039), + [aux_sym_preproc_if_token1] = ACTIONS(1039), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1039), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1039), + [sym_preproc_directive] = ACTIONS(1039), + [anon_sym_SEMI] = ACTIONS(1037), + [anon_sym_typedef] = ACTIONS(1039), + [anon_sym_extern] = ACTIONS(1039), + [anon_sym___attribute__] = ACTIONS(1039), + [anon_sym_LPAREN2] = ACTIONS(1037), + [anon_sym_LBRACE] = ACTIONS(1037), + [anon_sym_RBRACE] = ACTIONS(1037), + [anon_sym_STAR] = ACTIONS(1037), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_auto] = ACTIONS(1039), + [anon_sym_register] = ACTIONS(1039), + [anon_sym_inline] = ACTIONS(1039), + [anon_sym_const] = ACTIONS(1039), + [anon_sym_volatile] = ACTIONS(1039), + [anon_sym_restrict] = ACTIONS(1039), + [anon_sym__Atomic] = ACTIONS(1039), + [anon_sym_signed] = ACTIONS(1039), + [anon_sym_unsigned] = ACTIONS(1039), + [anon_sym_long] = ACTIONS(1039), + [anon_sym_short] = ACTIONS(1039), + [sym_primitive_type] = ACTIONS(1039), + [anon_sym_enum] = ACTIONS(1039), + [anon_sym_struct] = ACTIONS(1039), + [anon_sym_union] = ACTIONS(1039), + [anon_sym_if] = ACTIONS(1039), + [anon_sym_else] = ACTIONS(1039), + [anon_sym_switch] = ACTIONS(1039), + [anon_sym_while] = ACTIONS(1039), + [anon_sym_do] = ACTIONS(1039), + [anon_sym_for] = ACTIONS(1039), + [anon_sym_return] = ACTIONS(1039), + [anon_sym_break] = ACTIONS(1039), + [anon_sym_continue] = ACTIONS(1039), + [anon_sym_goto] = ACTIONS(1039), + [anon_sym_AMP] = ACTIONS(1037), + [anon_sym_BANG] = ACTIONS(1037), + [anon_sym_TILDE] = ACTIONS(1037), + [anon_sym_DASH] = ACTIONS(1039), + [anon_sym_PLUS] = ACTIONS(1039), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_sizeof] = ACTIONS(1039), + [sym_number_literal] = ACTIONS(1037), + [anon_sym_L_SQUOTE] = ACTIONS(1037), + [anon_sym_SQUOTE] = ACTIONS(1037), + [anon_sym_L_DQUOTE] = ACTIONS(1037), + [anon_sym_DQUOTE] = ACTIONS(1037), + [sym_true] = ACTIONS(1039), + [sym_false] = ACTIONS(1039), + [sym_null] = ACTIONS(1039), + [sym_comment] = ACTIONS(3), }, [289] = { - [anon_sym_LBRACE] = ACTIONS(1416), - [anon_sym_union] = ACTIONS(1418), - [anon_sym_unsigned] = ACTIONS(1418), - [anon_sym_restrict] = ACTIONS(1418), - [anon_sym_short] = ACTIONS(1418), - [anon_sym_EQ] = ACTIONS(1416), - [anon_sym_const] = ACTIONS(1418), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_COLON] = ACTIONS(1416), - [anon_sym__Atomic] = ACTIONS(1418), - [sym_primitive_type] = ACTIONS(1418), - [sym_identifier] = ACTIONS(1418), - [anon_sym_COMMA] = ACTIONS(1416), - [anon_sym_static] = ACTIONS(1418), - [anon_sym_volatile] = ACTIONS(1418), - [anon_sym_register] = ACTIONS(1418), - [anon_sym_extern] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1416), - [anon_sym_struct] = ACTIONS(1418), - [anon_sym_signed] = ACTIONS(1418), - [anon_sym_enum] = ACTIONS(1418), - [anon_sym_long] = ACTIONS(1418), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1416), - [anon_sym_RPAREN] = ACTIONS(1416), - [anon_sym_auto] = ACTIONS(1418), - [anon_sym_inline] = ACTIONS(1418), - [anon_sym___attribute__] = ACTIONS(1418), - [anon_sym_LBRACK] = ACTIONS(1416), + [sym_identifier] = ACTIONS(977), + [aux_sym_preproc_include_token1] = ACTIONS(977), + [aux_sym_preproc_def_token1] = ACTIONS(977), + [aux_sym_preproc_if_token1] = ACTIONS(977), + [aux_sym_preproc_if_token2] = ACTIONS(977), + [aux_sym_preproc_ifdef_token1] = ACTIONS(977), + [aux_sym_preproc_ifdef_token2] = ACTIONS(977), + [sym_preproc_directive] = ACTIONS(977), + [anon_sym_SEMI] = ACTIONS(975), + [anon_sym_typedef] = ACTIONS(977), + [anon_sym_extern] = ACTIONS(977), + [anon_sym___attribute__] = ACTIONS(977), + [anon_sym_LPAREN2] = ACTIONS(975), + [anon_sym_LBRACE] = ACTIONS(975), + [anon_sym_STAR] = ACTIONS(975), + [anon_sym_static] = ACTIONS(977), + [anon_sym_auto] = ACTIONS(977), + [anon_sym_register] = ACTIONS(977), + [anon_sym_inline] = ACTIONS(977), + [anon_sym_const] = ACTIONS(977), + [anon_sym_volatile] = ACTIONS(977), + [anon_sym_restrict] = ACTIONS(977), + [anon_sym__Atomic] = ACTIONS(977), + [anon_sym_signed] = ACTIONS(977), + [anon_sym_unsigned] = ACTIONS(977), + [anon_sym_long] = ACTIONS(977), + [anon_sym_short] = ACTIONS(977), + [sym_primitive_type] = ACTIONS(977), + [anon_sym_enum] = ACTIONS(977), + [anon_sym_struct] = ACTIONS(977), + [anon_sym_union] = ACTIONS(977), + [anon_sym_if] = ACTIONS(977), + [anon_sym_else] = ACTIONS(977), + [anon_sym_switch] = ACTIONS(977), + [anon_sym_while] = ACTIONS(977), + [anon_sym_do] = ACTIONS(977), + [anon_sym_for] = ACTIONS(977), + [anon_sym_return] = ACTIONS(977), + [anon_sym_break] = ACTIONS(977), + [anon_sym_continue] = ACTIONS(977), + [anon_sym_goto] = ACTIONS(977), + [anon_sym_AMP] = ACTIONS(975), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(977), + [anon_sym_PLUS] = ACTIONS(977), + [anon_sym_DASH_DASH] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(975), + [anon_sym_sizeof] = ACTIONS(977), + [sym_number_literal] = ACTIONS(975), + [anon_sym_L_SQUOTE] = ACTIONS(975), + [anon_sym_SQUOTE] = ACTIONS(975), + [anon_sym_L_DQUOTE] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(975), + [sym_true] = ACTIONS(977), + [sym_false] = ACTIONS(977), + [sym_null] = ACTIONS(977), + [sym_comment] = ACTIONS(3), }, [290] = { - [sym_char_literal] = STATE(237), - [sym__expression] = STATE(237), - [sym_binary_expression] = STATE(237), - [sym_update_expression] = STATE(237), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(237), - [sym_sizeof_expression] = STATE(237), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_initializer_list] = STATE(238), - [sym_concatenated_string] = STATE(237), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(237), - [sym_assignment_expression] = STATE(237), - [sym_cast_expression] = STATE(237), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(237), - [anon_sym_GT_GT] = ACTIONS(1420), - [sym_true] = ACTIONS(888), - [sym_null] = ACTIONS(888), - [anon_sym_PIPE] = ACTIONS(1422), - [anon_sym_EQ_EQ] = ACTIONS(1420), - [anon_sym_SLASH] = ACTIONS(1422), - [anon_sym_DASH_GT] = ACTIONS(1420), - [anon_sym_LT_LT] = ACTIONS(1420), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_QMARK] = ACTIONS(1420), - [anon_sym_BANG_EQ] = ACTIONS(1420), - [anon_sym_COMMA] = ACTIONS(1420), - [sym_number_literal] = ACTIONS(890), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [anon_sym_GT] = ACTIONS(1422), - [anon_sym_RPAREN] = ACTIONS(1420), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_RBRACK] = ACTIONS(1420), - [anon_sym_sizeof] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(886), - [anon_sym_PERCENT] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1424), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_GT_EQ] = ACTIONS(1420), - [anon_sym_RBRACE] = ACTIONS(1420), - [anon_sym_COLON] = ACTIONS(1420), - [anon_sym_PIPE_PIPE] = ACTIONS(1420), - [anon_sym_BANG] = ACTIONS(61), - [anon_sym_DASH] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(1420), - [anon_sym_STAR] = ACTIONS(43), - [sym_false] = ACTIONS(888), - [anon_sym_AMP_AMP] = ACTIONS(1420), - [anon_sym_SEMI] = ACTIONS(1420), - [anon_sym_CARET] = ACTIONS(1420), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_DOT] = ACTIONS(1422), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_LBRACK] = ACTIONS(1420), + [sym_identifier] = ACTIONS(981), + [aux_sym_preproc_include_token1] = ACTIONS(981), + [aux_sym_preproc_def_token1] = ACTIONS(981), + [aux_sym_preproc_if_token1] = ACTIONS(981), + [aux_sym_preproc_if_token2] = ACTIONS(981), + [aux_sym_preproc_ifdef_token1] = ACTIONS(981), + [aux_sym_preproc_ifdef_token2] = ACTIONS(981), + [sym_preproc_directive] = ACTIONS(981), + [anon_sym_SEMI] = ACTIONS(979), + [anon_sym_typedef] = ACTIONS(981), + [anon_sym_extern] = ACTIONS(981), + [anon_sym___attribute__] = ACTIONS(981), + [anon_sym_LPAREN2] = ACTIONS(979), + [anon_sym_LBRACE] = ACTIONS(979), + [anon_sym_STAR] = ACTIONS(979), + [anon_sym_static] = ACTIONS(981), + [anon_sym_auto] = ACTIONS(981), + [anon_sym_register] = ACTIONS(981), + [anon_sym_inline] = ACTIONS(981), + [anon_sym_const] = ACTIONS(981), + [anon_sym_volatile] = ACTIONS(981), + [anon_sym_restrict] = ACTIONS(981), + [anon_sym__Atomic] = ACTIONS(981), + [anon_sym_signed] = ACTIONS(981), + [anon_sym_unsigned] = ACTIONS(981), + [anon_sym_long] = ACTIONS(981), + [anon_sym_short] = ACTIONS(981), + [sym_primitive_type] = ACTIONS(981), + [anon_sym_enum] = ACTIONS(981), + [anon_sym_struct] = ACTIONS(981), + [anon_sym_union] = ACTIONS(981), + [anon_sym_if] = ACTIONS(981), + [anon_sym_else] = ACTIONS(981), + [anon_sym_switch] = ACTIONS(981), + [anon_sym_while] = ACTIONS(981), + [anon_sym_do] = ACTIONS(981), + [anon_sym_for] = ACTIONS(981), + [anon_sym_return] = ACTIONS(981), + [anon_sym_break] = ACTIONS(981), + [anon_sym_continue] = ACTIONS(981), + [anon_sym_goto] = ACTIONS(981), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_BANG] = ACTIONS(979), + [anon_sym_TILDE] = ACTIONS(979), + [anon_sym_DASH] = ACTIONS(981), + [anon_sym_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(979), + [anon_sym_PLUS_PLUS] = ACTIONS(979), + [anon_sym_sizeof] = ACTIONS(981), + [sym_number_literal] = ACTIONS(979), + [anon_sym_L_SQUOTE] = ACTIONS(979), + [anon_sym_SQUOTE] = ACTIONS(979), + [anon_sym_L_DQUOTE] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(979), + [sym_true] = ACTIONS(981), + [sym_false] = ACTIONS(981), + [sym_null] = ACTIONS(981), + [sym_comment] = ACTIONS(3), }, [291] = { - [anon_sym_GT_GT] = ACTIONS(1426), - [anon_sym_PERCENT_EQ] = ACTIONS(1428), - [anon_sym_DASH_EQ] = ACTIONS(1428), - [anon_sym_PIPE] = ACTIONS(1426), - [anon_sym_EQ_EQ] = ACTIONS(1428), - [anon_sym_SLASH] = ACTIONS(1426), - [anon_sym_DASH_GT] = ACTIONS(1428), - [anon_sym_LT_LT] = ACTIONS(1426), - [anon_sym_DASH_DASH] = ACTIONS(1428), - [anon_sym_PLUS_EQ] = ACTIONS(1428), - [anon_sym_LT_LT_EQ] = ACTIONS(1428), - [anon_sym_QMARK] = ACTIONS(1428), - [anon_sym_BANG_EQ] = ACTIONS(1428), - [anon_sym_CARET_EQ] = ACTIONS(1428), - [anon_sym_COMMA] = ACTIONS(1428), - [anon_sym_PLUS_PLUS] = ACTIONS(1428), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT_EQ] = ACTIONS(1428), - [anon_sym_GT] = ACTIONS(1426), - [anon_sym_PIPE_EQ] = ACTIONS(1428), - [anon_sym_RPAREN] = ACTIONS(1428), - [anon_sym_RBRACK] = ACTIONS(1428), - [anon_sym_AMP_EQ] = ACTIONS(1428), - [anon_sym_PERCENT] = ACTIONS(1426), - [anon_sym_AMP] = ACTIONS(1426), - [anon_sym_EQ] = ACTIONS(1426), - [anon_sym_LPAREN2] = ACTIONS(1428), - [anon_sym_GT_EQ] = ACTIONS(1428), - [anon_sym_RBRACE] = ACTIONS(1428), - [anon_sym_COLON] = ACTIONS(1428), - [anon_sym_STAR_EQ] = ACTIONS(1428), - [anon_sym_PIPE_PIPE] = ACTIONS(1428), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_LT_EQ] = ACTIONS(1428), - [anon_sym_STAR] = ACTIONS(1426), - [anon_sym_SLASH_EQ] = ACTIONS(1428), - [anon_sym_AMP_AMP] = ACTIONS(1428), - [anon_sym_SEMI] = ACTIONS(1428), - [anon_sym_CARET] = ACTIONS(1426), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LT] = ACTIONS(1426), - [anon_sym_LBRACK] = ACTIONS(1428), + [sym_identifier] = ACTIONS(993), + [aux_sym_preproc_include_token1] = ACTIONS(993), + [aux_sym_preproc_def_token1] = ACTIONS(993), + [aux_sym_preproc_if_token1] = ACTIONS(993), + [aux_sym_preproc_if_token2] = ACTIONS(993), + [aux_sym_preproc_ifdef_token1] = ACTIONS(993), + [aux_sym_preproc_ifdef_token2] = ACTIONS(993), + [sym_preproc_directive] = ACTIONS(993), + [anon_sym_SEMI] = ACTIONS(991), + [anon_sym_typedef] = ACTIONS(993), + [anon_sym_extern] = ACTIONS(993), + [anon_sym___attribute__] = ACTIONS(993), + [anon_sym_LPAREN2] = ACTIONS(991), + [anon_sym_LBRACE] = ACTIONS(991), + [anon_sym_STAR] = ACTIONS(991), + [anon_sym_static] = ACTIONS(993), + [anon_sym_auto] = ACTIONS(993), + [anon_sym_register] = ACTIONS(993), + [anon_sym_inline] = ACTIONS(993), + [anon_sym_const] = ACTIONS(993), + [anon_sym_volatile] = ACTIONS(993), + [anon_sym_restrict] = ACTIONS(993), + [anon_sym__Atomic] = ACTIONS(993), + [anon_sym_signed] = ACTIONS(993), + [anon_sym_unsigned] = ACTIONS(993), + [anon_sym_long] = ACTIONS(993), + [anon_sym_short] = ACTIONS(993), + [sym_primitive_type] = ACTIONS(993), + [anon_sym_enum] = ACTIONS(993), + [anon_sym_struct] = ACTIONS(993), + [anon_sym_union] = ACTIONS(993), + [anon_sym_if] = ACTIONS(993), + [anon_sym_else] = ACTIONS(993), + [anon_sym_switch] = ACTIONS(993), + [anon_sym_while] = ACTIONS(993), + [anon_sym_do] = ACTIONS(993), + [anon_sym_for] = ACTIONS(993), + [anon_sym_return] = ACTIONS(993), + [anon_sym_break] = ACTIONS(993), + [anon_sym_continue] = ACTIONS(993), + [anon_sym_goto] = ACTIONS(993), + [anon_sym_AMP] = ACTIONS(991), + [anon_sym_BANG] = ACTIONS(991), + [anon_sym_TILDE] = ACTIONS(991), + [anon_sym_DASH] = ACTIONS(993), + [anon_sym_PLUS] = ACTIONS(993), + [anon_sym_DASH_DASH] = ACTIONS(991), + [anon_sym_PLUS_PLUS] = ACTIONS(991), + [anon_sym_sizeof] = ACTIONS(993), + [sym_number_literal] = ACTIONS(991), + [anon_sym_L_SQUOTE] = ACTIONS(991), + [anon_sym_SQUOTE] = ACTIONS(991), + [anon_sym_L_DQUOTE] = ACTIONS(991), + [anon_sym_DQUOTE] = ACTIONS(991), + [sym_true] = ACTIONS(993), + [sym_false] = ACTIONS(993), + [sym_null] = ACTIONS(993), + [sym_comment] = ACTIONS(3), }, [292] = { - [sym_char_literal] = STATE(393), - [sym__expression] = STATE(393), - [sym_binary_expression] = STATE(393), - [sym_update_expression] = STATE(393), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(393), - [sym_sizeof_expression] = STATE(393), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(393), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(393), - [sym_assignment_expression] = STATE(393), - [sym_cast_expression] = STATE(393), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(393), - [anon_sym_BANG] = ACTIONS(47), - [sym_true] = ACTIONS(1430), - [sym_null] = ACTIONS(1430), - [sym_number_literal] = ACTIONS(1432), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(61), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_AMP] = ACTIONS(43), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(1430), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_identifier] = ACTIONS(985), + [aux_sym_preproc_include_token1] = ACTIONS(985), + [aux_sym_preproc_def_token1] = ACTIONS(985), + [aux_sym_preproc_if_token1] = ACTIONS(985), + [aux_sym_preproc_if_token2] = ACTIONS(985), + [aux_sym_preproc_ifdef_token1] = ACTIONS(985), + [aux_sym_preproc_ifdef_token2] = ACTIONS(985), + [sym_preproc_directive] = ACTIONS(985), + [anon_sym_SEMI] = ACTIONS(983), + [anon_sym_typedef] = ACTIONS(985), + [anon_sym_extern] = ACTIONS(985), + [anon_sym___attribute__] = ACTIONS(985), + [anon_sym_LPAREN2] = ACTIONS(983), + [anon_sym_LBRACE] = ACTIONS(983), + [anon_sym_STAR] = ACTIONS(983), + [anon_sym_static] = ACTIONS(985), + [anon_sym_auto] = ACTIONS(985), + [anon_sym_register] = ACTIONS(985), + [anon_sym_inline] = ACTIONS(985), + [anon_sym_const] = ACTIONS(985), + [anon_sym_volatile] = ACTIONS(985), + [anon_sym_restrict] = ACTIONS(985), + [anon_sym__Atomic] = ACTIONS(985), + [anon_sym_signed] = ACTIONS(985), + [anon_sym_unsigned] = ACTIONS(985), + [anon_sym_long] = ACTIONS(985), + [anon_sym_short] = ACTIONS(985), + [sym_primitive_type] = ACTIONS(985), + [anon_sym_enum] = ACTIONS(985), + [anon_sym_struct] = ACTIONS(985), + [anon_sym_union] = ACTIONS(985), + [anon_sym_if] = ACTIONS(985), + [anon_sym_else] = ACTIONS(985), + [anon_sym_switch] = ACTIONS(985), + [anon_sym_while] = ACTIONS(985), + [anon_sym_do] = ACTIONS(985), + [anon_sym_for] = ACTIONS(985), + [anon_sym_return] = ACTIONS(985), + [anon_sym_break] = ACTIONS(985), + [anon_sym_continue] = ACTIONS(985), + [anon_sym_goto] = ACTIONS(985), + [anon_sym_AMP] = ACTIONS(983), + [anon_sym_BANG] = ACTIONS(983), + [anon_sym_TILDE] = ACTIONS(983), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(985), + [anon_sym_DASH_DASH] = ACTIONS(983), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_sizeof] = ACTIONS(985), + [sym_number_literal] = ACTIONS(983), + [anon_sym_L_SQUOTE] = ACTIONS(983), + [anon_sym_SQUOTE] = ACTIONS(983), + [anon_sym_L_DQUOTE] = ACTIONS(983), + [anon_sym_DQUOTE] = ACTIONS(983), + [sym_true] = ACTIONS(985), + [sym_false] = ACTIONS(985), + [sym_null] = ACTIONS(985), + [sym_comment] = ACTIONS(3), }, [293] = { - [anon_sym_GT_GT] = ACTIONS(1434), - [anon_sym_PERCENT_EQ] = ACTIONS(1436), - [anon_sym_DASH_EQ] = ACTIONS(1436), - [anon_sym_PIPE] = ACTIONS(1434), - [anon_sym_EQ_EQ] = ACTIONS(1436), - [anon_sym_SLASH] = ACTIONS(1434), - [anon_sym_DASH_GT] = ACTIONS(1436), - [anon_sym_LT_LT] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1436), - [anon_sym_PLUS_EQ] = ACTIONS(1436), - [anon_sym_LT_LT_EQ] = ACTIONS(1436), - [anon_sym_QMARK] = ACTIONS(1436), - [anon_sym_BANG_EQ] = ACTIONS(1436), - [anon_sym_CARET_EQ] = ACTIONS(1436), - [anon_sym_COMMA] = ACTIONS(1436), - [anon_sym_PLUS_PLUS] = ACTIONS(1436), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT_EQ] = ACTIONS(1436), - [anon_sym_GT] = ACTIONS(1434), - [anon_sym_PIPE_EQ] = ACTIONS(1436), - [anon_sym_RPAREN] = ACTIONS(1436), - [anon_sym_RBRACK] = ACTIONS(1436), - [anon_sym_AMP_EQ] = ACTIONS(1436), - [anon_sym_PERCENT] = ACTIONS(1434), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_EQ] = ACTIONS(1434), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_GT_EQ] = ACTIONS(1436), - [anon_sym_RBRACE] = ACTIONS(1436), - [anon_sym_COLON] = ACTIONS(1436), - [anon_sym_STAR_EQ] = ACTIONS(1436), - [anon_sym_PIPE_PIPE] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1434), - [anon_sym_LT_EQ] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1434), - [anon_sym_SLASH_EQ] = ACTIONS(1436), - [anon_sym_AMP_AMP] = ACTIONS(1436), - [anon_sym_SEMI] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1434), - [anon_sym_DOT] = ACTIONS(1436), - [anon_sym_LT] = ACTIONS(1434), - [anon_sym_LBRACK] = ACTIONS(1436), + [sym_identifier] = ACTIONS(997), + [aux_sym_preproc_include_token1] = ACTIONS(997), + [aux_sym_preproc_def_token1] = ACTIONS(997), + [aux_sym_preproc_if_token1] = ACTIONS(997), + [aux_sym_preproc_if_token2] = ACTIONS(997), + [aux_sym_preproc_ifdef_token1] = ACTIONS(997), + [aux_sym_preproc_ifdef_token2] = ACTIONS(997), + [sym_preproc_directive] = ACTIONS(997), + [anon_sym_SEMI] = ACTIONS(995), + [anon_sym_typedef] = ACTIONS(997), + [anon_sym_extern] = ACTIONS(997), + [anon_sym___attribute__] = ACTIONS(997), + [anon_sym_LPAREN2] = ACTIONS(995), + [anon_sym_LBRACE] = ACTIONS(995), + [anon_sym_STAR] = ACTIONS(995), + [anon_sym_static] = ACTIONS(997), + [anon_sym_auto] = ACTIONS(997), + [anon_sym_register] = ACTIONS(997), + [anon_sym_inline] = ACTIONS(997), + [anon_sym_const] = ACTIONS(997), + [anon_sym_volatile] = ACTIONS(997), + [anon_sym_restrict] = ACTIONS(997), + [anon_sym__Atomic] = ACTIONS(997), + [anon_sym_signed] = ACTIONS(997), + [anon_sym_unsigned] = ACTIONS(997), + [anon_sym_long] = ACTIONS(997), + [anon_sym_short] = ACTIONS(997), + [sym_primitive_type] = ACTIONS(997), + [anon_sym_enum] = ACTIONS(997), + [anon_sym_struct] = ACTIONS(997), + [anon_sym_union] = ACTIONS(997), + [anon_sym_if] = ACTIONS(997), + [anon_sym_else] = ACTIONS(997), + [anon_sym_switch] = ACTIONS(997), + [anon_sym_while] = ACTIONS(997), + [anon_sym_do] = ACTIONS(997), + [anon_sym_for] = ACTIONS(997), + [anon_sym_return] = ACTIONS(997), + [anon_sym_break] = ACTIONS(997), + [anon_sym_continue] = ACTIONS(997), + [anon_sym_goto] = ACTIONS(997), + [anon_sym_AMP] = ACTIONS(995), + [anon_sym_BANG] = ACTIONS(995), + [anon_sym_TILDE] = ACTIONS(995), + [anon_sym_DASH] = ACTIONS(997), + [anon_sym_PLUS] = ACTIONS(997), + [anon_sym_DASH_DASH] = ACTIONS(995), + [anon_sym_PLUS_PLUS] = ACTIONS(995), + [anon_sym_sizeof] = ACTIONS(997), + [sym_number_literal] = ACTIONS(995), + [anon_sym_L_SQUOTE] = ACTIONS(995), + [anon_sym_SQUOTE] = ACTIONS(995), + [anon_sym_L_DQUOTE] = ACTIONS(995), + [anon_sym_DQUOTE] = ACTIONS(995), + [sym_true] = ACTIONS(997), + [sym_false] = ACTIONS(997), + [sym_null] = ACTIONS(997), + [sym_comment] = ACTIONS(3), }, [294] = { - [aux_sym_argument_list_repeat1] = STATE(395), - [anon_sym_RPAREN] = ACTIONS(1438), - [anon_sym_COMMA] = ACTIONS(1094), + [sym_identifier] = ACTIONS(1047), + [aux_sym_preproc_include_token1] = ACTIONS(1047), + [aux_sym_preproc_def_token1] = ACTIONS(1047), + [aux_sym_preproc_if_token1] = ACTIONS(1047), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1047), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1047), + [sym_preproc_directive] = ACTIONS(1047), + [anon_sym_SEMI] = ACTIONS(1045), + [anon_sym_typedef] = ACTIONS(1047), + [anon_sym_extern] = ACTIONS(1047), + [anon_sym___attribute__] = ACTIONS(1047), + [anon_sym_LPAREN2] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(1045), + [anon_sym_RBRACE] = ACTIONS(1045), + [anon_sym_STAR] = ACTIONS(1045), + [anon_sym_static] = ACTIONS(1047), + [anon_sym_auto] = ACTIONS(1047), + [anon_sym_register] = ACTIONS(1047), + [anon_sym_inline] = ACTIONS(1047), + [anon_sym_const] = ACTIONS(1047), + [anon_sym_volatile] = ACTIONS(1047), + [anon_sym_restrict] = ACTIONS(1047), + [anon_sym__Atomic] = ACTIONS(1047), + [anon_sym_signed] = ACTIONS(1047), + [anon_sym_unsigned] = ACTIONS(1047), + [anon_sym_long] = ACTIONS(1047), + [anon_sym_short] = ACTIONS(1047), + [sym_primitive_type] = ACTIONS(1047), + [anon_sym_enum] = ACTIONS(1047), + [anon_sym_struct] = ACTIONS(1047), + [anon_sym_union] = ACTIONS(1047), + [anon_sym_if] = ACTIONS(1047), + [anon_sym_else] = ACTIONS(1047), + [anon_sym_switch] = ACTIONS(1047), + [anon_sym_while] = ACTIONS(1047), + [anon_sym_do] = ACTIONS(1047), + [anon_sym_for] = ACTIONS(1047), + [anon_sym_return] = ACTIONS(1047), + [anon_sym_break] = ACTIONS(1047), + [anon_sym_continue] = ACTIONS(1047), + [anon_sym_goto] = ACTIONS(1047), + [anon_sym_AMP] = ACTIONS(1045), + [anon_sym_BANG] = ACTIONS(1045), + [anon_sym_TILDE] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1047), + [anon_sym_DASH_DASH] = ACTIONS(1045), + [anon_sym_PLUS_PLUS] = ACTIONS(1045), + [anon_sym_sizeof] = ACTIONS(1047), + [sym_number_literal] = ACTIONS(1045), + [anon_sym_L_SQUOTE] = ACTIONS(1045), + [anon_sym_SQUOTE] = ACTIONS(1045), + [anon_sym_L_DQUOTE] = ACTIONS(1045), + [anon_sym_DQUOTE] = ACTIONS(1045), + [sym_true] = ACTIONS(1047), + [sym_false] = ACTIONS(1047), + [sym_null] = ACTIONS(1047), [sym_comment] = ACTIONS(3), }, [295] = { - [sym_char_literal] = STATE(396), - [sym__expression] = STATE(396), - [sym_binary_expression] = STATE(396), - [sym_update_expression] = STATE(396), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(396), - [sym_sizeof_expression] = STATE(396), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(396), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(396), - [sym_assignment_expression] = STATE(396), - [sym_cast_expression] = STATE(396), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(396), - [sym_true] = ACTIONS(1440), - [sym_null] = ACTIONS(1440), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(1442), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(1440), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_identifier] = ACTIONS(1009), + [aux_sym_preproc_include_token1] = ACTIONS(1009), + [aux_sym_preproc_def_token1] = ACTIONS(1009), + [aux_sym_preproc_if_token1] = ACTIONS(1009), + [aux_sym_preproc_if_token2] = ACTIONS(1009), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1009), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1009), + [sym_preproc_directive] = ACTIONS(1009), + [anon_sym_SEMI] = ACTIONS(1007), + [anon_sym_typedef] = ACTIONS(1009), + [anon_sym_extern] = ACTIONS(1009), + [anon_sym___attribute__] = ACTIONS(1009), + [anon_sym_LPAREN2] = ACTIONS(1007), + [anon_sym_LBRACE] = ACTIONS(1007), + [anon_sym_STAR] = ACTIONS(1007), + [anon_sym_static] = ACTIONS(1009), + [anon_sym_auto] = ACTIONS(1009), + [anon_sym_register] = ACTIONS(1009), + [anon_sym_inline] = ACTIONS(1009), + [anon_sym_const] = ACTIONS(1009), + [anon_sym_volatile] = ACTIONS(1009), + [anon_sym_restrict] = ACTIONS(1009), + [anon_sym__Atomic] = ACTIONS(1009), + [anon_sym_signed] = ACTIONS(1009), + [anon_sym_unsigned] = ACTIONS(1009), + [anon_sym_long] = ACTIONS(1009), + [anon_sym_short] = ACTIONS(1009), + [sym_primitive_type] = ACTIONS(1009), + [anon_sym_enum] = ACTIONS(1009), + [anon_sym_struct] = ACTIONS(1009), + [anon_sym_union] = ACTIONS(1009), + [anon_sym_if] = ACTIONS(1009), + [anon_sym_else] = ACTIONS(1009), + [anon_sym_switch] = ACTIONS(1009), + [anon_sym_while] = ACTIONS(1009), + [anon_sym_do] = ACTIONS(1009), + [anon_sym_for] = ACTIONS(1009), + [anon_sym_return] = ACTIONS(1009), + [anon_sym_break] = ACTIONS(1009), + [anon_sym_continue] = ACTIONS(1009), + [anon_sym_goto] = ACTIONS(1009), + [anon_sym_AMP] = ACTIONS(1007), + [anon_sym_BANG] = ACTIONS(1007), + [anon_sym_TILDE] = ACTIONS(1007), + [anon_sym_DASH] = ACTIONS(1009), + [anon_sym_PLUS] = ACTIONS(1009), + [anon_sym_DASH_DASH] = ACTIONS(1007), + [anon_sym_PLUS_PLUS] = ACTIONS(1007), + [anon_sym_sizeof] = ACTIONS(1009), + [sym_number_literal] = ACTIONS(1007), + [anon_sym_L_SQUOTE] = ACTIONS(1007), + [anon_sym_SQUOTE] = ACTIONS(1007), + [anon_sym_L_DQUOTE] = ACTIONS(1007), + [anon_sym_DQUOTE] = ACTIONS(1007), + [sym_true] = ACTIONS(1009), + [sym_false] = ACTIONS(1009), + [sym_null] = ACTIONS(1009), + [sym_comment] = ACTIONS(3), }, [296] = { - [sym_parameter_list] = STATE(214), - [anon_sym_LBRACE] = ACTIONS(1444), - [anon_sym_EQ] = ACTIONS(1444), + [sym_identifier] = ACTIONS(1051), + [aux_sym_preproc_include_token1] = ACTIONS(1051), + [aux_sym_preproc_def_token1] = ACTIONS(1051), + [aux_sym_preproc_if_token1] = ACTIONS(1051), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1051), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1051), + [sym_preproc_directive] = ACTIONS(1051), + [anon_sym_SEMI] = ACTIONS(1049), + [anon_sym_typedef] = ACTIONS(1051), + [anon_sym_extern] = ACTIONS(1051), + [anon_sym___attribute__] = ACTIONS(1051), + [anon_sym_LPAREN2] = ACTIONS(1049), + [anon_sym_LBRACE] = ACTIONS(1049), + [anon_sym_RBRACE] = ACTIONS(1049), + [anon_sym_STAR] = ACTIONS(1049), + [anon_sym_static] = ACTIONS(1051), + [anon_sym_auto] = ACTIONS(1051), + [anon_sym_register] = ACTIONS(1051), + [anon_sym_inline] = ACTIONS(1051), + [anon_sym_const] = ACTIONS(1051), + [anon_sym_volatile] = ACTIONS(1051), + [anon_sym_restrict] = ACTIONS(1051), + [anon_sym__Atomic] = ACTIONS(1051), + [anon_sym_signed] = ACTIONS(1051), + [anon_sym_unsigned] = ACTIONS(1051), + [anon_sym_long] = ACTIONS(1051), + [anon_sym_short] = ACTIONS(1051), + [sym_primitive_type] = ACTIONS(1051), + [anon_sym_enum] = ACTIONS(1051), + [anon_sym_struct] = ACTIONS(1051), + [anon_sym_union] = ACTIONS(1051), + [anon_sym_if] = ACTIONS(1051), + [anon_sym_else] = ACTIONS(1051), + [anon_sym_switch] = ACTIONS(1051), + [anon_sym_while] = ACTIONS(1051), + [anon_sym_do] = ACTIONS(1051), + [anon_sym_for] = ACTIONS(1051), + [anon_sym_return] = ACTIONS(1051), + [anon_sym_break] = ACTIONS(1051), + [anon_sym_continue] = ACTIONS(1051), + [anon_sym_goto] = ACTIONS(1051), + [anon_sym_AMP] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_TILDE] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_PLUS] = ACTIONS(1051), + [anon_sym_DASH_DASH] = ACTIONS(1049), + [anon_sym_PLUS_PLUS] = ACTIONS(1049), + [anon_sym_sizeof] = ACTIONS(1051), + [sym_number_literal] = ACTIONS(1049), + [anon_sym_L_SQUOTE] = ACTIONS(1049), + [anon_sym_SQUOTE] = ACTIONS(1049), + [anon_sym_L_DQUOTE] = ACTIONS(1049), + [anon_sym_DQUOTE] = ACTIONS(1049), + [sym_true] = ACTIONS(1051), + [sym_false] = ACTIONS(1051), + [sym_null] = ACTIONS(1051), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(652), - [anon_sym_COMMA] = ACTIONS(1444), - [anon_sym_SEMI] = ACTIONS(1444), - [anon_sym_RPAREN] = ACTIONS(1444), - [anon_sym_LBRACK] = ACTIONS(650), }, [297] = { - [anon_sym_LBRACE] = ACTIONS(1446), - [anon_sym_EQ] = ACTIONS(1446), + [sym_identifier] = ACTIONS(1013), + [aux_sym_preproc_include_token1] = ACTIONS(1013), + [aux_sym_preproc_def_token1] = ACTIONS(1013), + [aux_sym_preproc_if_token1] = ACTIONS(1013), + [aux_sym_preproc_if_token2] = ACTIONS(1013), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1013), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1013), + [sym_preproc_directive] = ACTIONS(1013), + [anon_sym_SEMI] = ACTIONS(1011), + [anon_sym_typedef] = ACTIONS(1013), + [anon_sym_extern] = ACTIONS(1013), + [anon_sym___attribute__] = ACTIONS(1013), + [anon_sym_LPAREN2] = ACTIONS(1011), + [anon_sym_LBRACE] = ACTIONS(1011), + [anon_sym_STAR] = ACTIONS(1011), + [anon_sym_static] = ACTIONS(1013), + [anon_sym_auto] = ACTIONS(1013), + [anon_sym_register] = ACTIONS(1013), + [anon_sym_inline] = ACTIONS(1013), + [anon_sym_const] = ACTIONS(1013), + [anon_sym_volatile] = ACTIONS(1013), + [anon_sym_restrict] = ACTIONS(1013), + [anon_sym__Atomic] = ACTIONS(1013), + [anon_sym_signed] = ACTIONS(1013), + [anon_sym_unsigned] = ACTIONS(1013), + [anon_sym_long] = ACTIONS(1013), + [anon_sym_short] = ACTIONS(1013), + [sym_primitive_type] = ACTIONS(1013), + [anon_sym_enum] = ACTIONS(1013), + [anon_sym_struct] = ACTIONS(1013), + [anon_sym_union] = ACTIONS(1013), + [anon_sym_if] = ACTIONS(1013), + [anon_sym_else] = ACTIONS(1013), + [anon_sym_switch] = ACTIONS(1013), + [anon_sym_while] = ACTIONS(1013), + [anon_sym_do] = ACTIONS(1013), + [anon_sym_for] = ACTIONS(1013), + [anon_sym_return] = ACTIONS(1013), + [anon_sym_break] = ACTIONS(1013), + [anon_sym_continue] = ACTIONS(1013), + [anon_sym_goto] = ACTIONS(1013), + [anon_sym_AMP] = ACTIONS(1011), + [anon_sym_BANG] = ACTIONS(1011), + [anon_sym_TILDE] = ACTIONS(1011), + [anon_sym_DASH] = ACTIONS(1013), + [anon_sym_PLUS] = ACTIONS(1013), + [anon_sym_DASH_DASH] = ACTIONS(1011), + [anon_sym_PLUS_PLUS] = ACTIONS(1011), + [anon_sym_sizeof] = ACTIONS(1013), + [sym_number_literal] = ACTIONS(1011), + [anon_sym_L_SQUOTE] = ACTIONS(1011), + [anon_sym_SQUOTE] = ACTIONS(1011), + [anon_sym_L_DQUOTE] = ACTIONS(1011), + [anon_sym_DQUOTE] = ACTIONS(1011), + [sym_true] = ACTIONS(1013), + [sym_false] = ACTIONS(1013), + [sym_null] = ACTIONS(1013), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(1446), - [anon_sym_COMMA] = ACTIONS(1446), - [anon_sym_SEMI] = ACTIONS(1446), - [anon_sym_RPAREN] = ACTIONS(1446), - [anon_sym_LBRACK] = ACTIONS(1446), }, [298] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_COMMA] = ACTIONS(1448), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_DASH_GT] = ACTIONS(281), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_SEMI] = ACTIONS(1448), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [sym_identifier] = ACTIONS(1021), + [aux_sym_preproc_include_token1] = ACTIONS(1021), + [aux_sym_preproc_def_token1] = ACTIONS(1021), + [aux_sym_preproc_if_token1] = ACTIONS(1021), + [aux_sym_preproc_if_token2] = ACTIONS(1021), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1021), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1021), + [sym_preproc_directive] = ACTIONS(1021), + [anon_sym_SEMI] = ACTIONS(1019), + [anon_sym_typedef] = ACTIONS(1021), + [anon_sym_extern] = ACTIONS(1021), + [anon_sym___attribute__] = ACTIONS(1021), + [anon_sym_LPAREN2] = ACTIONS(1019), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_STAR] = ACTIONS(1019), + [anon_sym_static] = ACTIONS(1021), + [anon_sym_auto] = ACTIONS(1021), + [anon_sym_register] = ACTIONS(1021), + [anon_sym_inline] = ACTIONS(1021), + [anon_sym_const] = ACTIONS(1021), + [anon_sym_volatile] = ACTIONS(1021), + [anon_sym_restrict] = ACTIONS(1021), + [anon_sym__Atomic] = ACTIONS(1021), + [anon_sym_signed] = ACTIONS(1021), + [anon_sym_unsigned] = ACTIONS(1021), + [anon_sym_long] = ACTIONS(1021), + [anon_sym_short] = ACTIONS(1021), + [sym_primitive_type] = ACTIONS(1021), + [anon_sym_enum] = ACTIONS(1021), + [anon_sym_struct] = ACTIONS(1021), + [anon_sym_union] = ACTIONS(1021), + [anon_sym_if] = ACTIONS(1021), + [anon_sym_else] = ACTIONS(1179), + [anon_sym_switch] = ACTIONS(1021), + [anon_sym_while] = ACTIONS(1021), + [anon_sym_do] = ACTIONS(1021), + [anon_sym_for] = ACTIONS(1021), + [anon_sym_return] = ACTIONS(1021), + [anon_sym_break] = ACTIONS(1021), + [anon_sym_continue] = ACTIONS(1021), + [anon_sym_goto] = ACTIONS(1021), + [anon_sym_AMP] = ACTIONS(1019), + [anon_sym_BANG] = ACTIONS(1019), + [anon_sym_TILDE] = ACTIONS(1019), + [anon_sym_DASH] = ACTIONS(1021), + [anon_sym_PLUS] = ACTIONS(1021), + [anon_sym_DASH_DASH] = ACTIONS(1019), + [anon_sym_PLUS_PLUS] = ACTIONS(1019), + [anon_sym_sizeof] = ACTIONS(1021), + [sym_number_literal] = ACTIONS(1019), + [anon_sym_L_SQUOTE] = ACTIONS(1019), + [anon_sym_SQUOTE] = ACTIONS(1019), + [anon_sym_L_DQUOTE] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(1019), + [sym_true] = ACTIONS(1021), + [sym_false] = ACTIONS(1021), + [sym_null] = ACTIONS(1021), + [sym_comment] = ACTIONS(3), }, [299] = { + [sym_identifier] = ACTIONS(1027), + [aux_sym_preproc_include_token1] = ACTIONS(1027), + [aux_sym_preproc_def_token1] = ACTIONS(1027), + [aux_sym_preproc_if_token1] = ACTIONS(1027), + [aux_sym_preproc_if_token2] = ACTIONS(1027), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1027), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1027), + [sym_preproc_directive] = ACTIONS(1027), + [anon_sym_SEMI] = ACTIONS(1025), + [anon_sym_typedef] = ACTIONS(1027), + [anon_sym_extern] = ACTIONS(1027), + [anon_sym___attribute__] = ACTIONS(1027), + [anon_sym_LPAREN2] = ACTIONS(1025), + [anon_sym_LBRACE] = ACTIONS(1025), + [anon_sym_STAR] = ACTIONS(1025), + [anon_sym_static] = ACTIONS(1027), + [anon_sym_auto] = ACTIONS(1027), + [anon_sym_register] = ACTIONS(1027), + [anon_sym_inline] = ACTIONS(1027), + [anon_sym_const] = ACTIONS(1027), + [anon_sym_volatile] = ACTIONS(1027), + [anon_sym_restrict] = ACTIONS(1027), + [anon_sym__Atomic] = ACTIONS(1027), + [anon_sym_signed] = ACTIONS(1027), + [anon_sym_unsigned] = ACTIONS(1027), + [anon_sym_long] = ACTIONS(1027), + [anon_sym_short] = ACTIONS(1027), + [sym_primitive_type] = ACTIONS(1027), + [anon_sym_enum] = ACTIONS(1027), + [anon_sym_struct] = ACTIONS(1027), + [anon_sym_union] = ACTIONS(1027), + [anon_sym_if] = ACTIONS(1027), + [anon_sym_else] = ACTIONS(1027), + [anon_sym_switch] = ACTIONS(1027), + [anon_sym_while] = ACTIONS(1027), + [anon_sym_do] = ACTIONS(1027), + [anon_sym_for] = ACTIONS(1027), + [anon_sym_return] = ACTIONS(1027), + [anon_sym_break] = ACTIONS(1027), + [anon_sym_continue] = ACTIONS(1027), + [anon_sym_goto] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1025), + [anon_sym_BANG] = ACTIONS(1025), + [anon_sym_TILDE] = ACTIONS(1025), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH_DASH] = ACTIONS(1025), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_sizeof] = ACTIONS(1027), + [sym_number_literal] = ACTIONS(1025), + [anon_sym_L_SQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1025), + [anon_sym_L_DQUOTE] = ACTIONS(1025), + [anon_sym_DQUOTE] = ACTIONS(1025), + [sym_true] = ACTIONS(1027), + [sym_false] = ACTIONS(1027), + [sym_null] = ACTIONS(1027), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1448), - [anon_sym_SEMI] = ACTIONS(1448), }, [300] = { - [sym_parameter_list] = STATE(214), - [anon_sym_SEMI] = ACTIONS(1450), - [anon_sym_EQ] = ACTIONS(648), + [sym_identifier] = ACTIONS(1031), + [aux_sym_preproc_include_token1] = ACTIONS(1031), + [aux_sym_preproc_def_token1] = ACTIONS(1031), + [aux_sym_preproc_if_token1] = ACTIONS(1031), + [aux_sym_preproc_if_token2] = ACTIONS(1031), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1031), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1031), + [sym_preproc_directive] = ACTIONS(1031), + [anon_sym_SEMI] = ACTIONS(1029), + [anon_sym_typedef] = ACTIONS(1031), + [anon_sym_extern] = ACTIONS(1031), + [anon_sym___attribute__] = ACTIONS(1031), + [anon_sym_LPAREN2] = ACTIONS(1029), + [anon_sym_LBRACE] = ACTIONS(1029), + [anon_sym_STAR] = ACTIONS(1029), + [anon_sym_static] = ACTIONS(1031), + [anon_sym_auto] = ACTIONS(1031), + [anon_sym_register] = ACTIONS(1031), + [anon_sym_inline] = ACTIONS(1031), + [anon_sym_const] = ACTIONS(1031), + [anon_sym_volatile] = ACTIONS(1031), + [anon_sym_restrict] = ACTIONS(1031), + [anon_sym__Atomic] = ACTIONS(1031), + [anon_sym_signed] = ACTIONS(1031), + [anon_sym_unsigned] = ACTIONS(1031), + [anon_sym_long] = ACTIONS(1031), + [anon_sym_short] = ACTIONS(1031), + [sym_primitive_type] = ACTIONS(1031), + [anon_sym_enum] = ACTIONS(1031), + [anon_sym_struct] = ACTIONS(1031), + [anon_sym_union] = ACTIONS(1031), + [anon_sym_if] = ACTIONS(1031), + [anon_sym_else] = ACTIONS(1031), + [anon_sym_switch] = ACTIONS(1031), + [anon_sym_while] = ACTIONS(1031), + [anon_sym_do] = ACTIONS(1031), + [anon_sym_for] = ACTIONS(1031), + [anon_sym_return] = ACTIONS(1031), + [anon_sym_break] = ACTIONS(1031), + [anon_sym_continue] = ACTIONS(1031), + [anon_sym_goto] = ACTIONS(1031), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_TILDE] = ACTIONS(1029), + [anon_sym_DASH] = ACTIONS(1031), + [anon_sym_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_sizeof] = ACTIONS(1031), + [sym_number_literal] = ACTIONS(1029), + [anon_sym_L_SQUOTE] = ACTIONS(1029), + [anon_sym_SQUOTE] = ACTIONS(1029), + [anon_sym_L_DQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE] = ACTIONS(1029), + [sym_true] = ACTIONS(1031), + [sym_false] = ACTIONS(1031), + [sym_null] = ACTIONS(1031), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(652), - [anon_sym_COMMA] = ACTIONS(1450), - [anon_sym_LBRACK] = ACTIONS(650), }, [301] = { + [sym_identifier] = ACTIONS(1035), + [aux_sym_preproc_include_token1] = ACTIONS(1035), + [aux_sym_preproc_def_token1] = ACTIONS(1035), + [aux_sym_preproc_if_token1] = ACTIONS(1035), + [aux_sym_preproc_if_token2] = ACTIONS(1035), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1035), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1035), + [sym_preproc_directive] = ACTIONS(1035), + [anon_sym_SEMI] = ACTIONS(1033), + [anon_sym_typedef] = ACTIONS(1035), + [anon_sym_extern] = ACTIONS(1035), + [anon_sym___attribute__] = ACTIONS(1035), + [anon_sym_LPAREN2] = ACTIONS(1033), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_STAR] = ACTIONS(1033), + [anon_sym_static] = ACTIONS(1035), + [anon_sym_auto] = ACTIONS(1035), + [anon_sym_register] = ACTIONS(1035), + [anon_sym_inline] = ACTIONS(1035), + [anon_sym_const] = ACTIONS(1035), + [anon_sym_volatile] = ACTIONS(1035), + [anon_sym_restrict] = ACTIONS(1035), + [anon_sym__Atomic] = ACTIONS(1035), + [anon_sym_signed] = ACTIONS(1035), + [anon_sym_unsigned] = ACTIONS(1035), + [anon_sym_long] = ACTIONS(1035), + [anon_sym_short] = ACTIONS(1035), + [sym_primitive_type] = ACTIONS(1035), + [anon_sym_enum] = ACTIONS(1035), + [anon_sym_struct] = ACTIONS(1035), + [anon_sym_union] = ACTIONS(1035), + [anon_sym_if] = ACTIONS(1035), + [anon_sym_else] = ACTIONS(1035), + [anon_sym_switch] = ACTIONS(1035), + [anon_sym_while] = ACTIONS(1035), + [anon_sym_do] = ACTIONS(1035), + [anon_sym_for] = ACTIONS(1035), + [anon_sym_return] = ACTIONS(1035), + [anon_sym_break] = ACTIONS(1035), + [anon_sym_continue] = ACTIONS(1035), + [anon_sym_goto] = ACTIONS(1035), + [anon_sym_AMP] = ACTIONS(1033), + [anon_sym_BANG] = ACTIONS(1033), + [anon_sym_TILDE] = ACTIONS(1033), + [anon_sym_DASH] = ACTIONS(1035), + [anon_sym_PLUS] = ACTIONS(1035), + [anon_sym_DASH_DASH] = ACTIONS(1033), + [anon_sym_PLUS_PLUS] = ACTIONS(1033), + [anon_sym_sizeof] = ACTIONS(1035), + [sym_number_literal] = ACTIONS(1033), + [anon_sym_L_SQUOTE] = ACTIONS(1033), + [anon_sym_SQUOTE] = ACTIONS(1033), + [anon_sym_L_DQUOTE] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(1033), + [sym_true] = ACTIONS(1035), + [sym_false] = ACTIONS(1035), + [sym_null] = ACTIONS(1035), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1450), - [anon_sym_SEMI] = ACTIONS(1450), }, [302] = { - [sym_char_literal] = STATE(54), - [sym__expression] = STATE(54), - [sym_binary_expression] = STATE(54), - [sym_update_expression] = STATE(54), - [sym_call_expression] = STATE(54), - [sym_pointer_expression] = STATE(54), - [sym_unary_expression] = STATE(54), - [sym_sizeof_expression] = STATE(54), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(54), - [sym_concatenated_string] = STATE(54), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(54), - [sym_assignment_expression] = STATE(54), - [sym_cast_expression] = STATE(54), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(54), - [sym_true] = ACTIONS(153), - [sym_null] = ACTIONS(153), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(155), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(159), - [sym_identifier] = ACTIONS(153), - [anon_sym_BANG] = ACTIONS(155), - [anon_sym_DASH] = ACTIONS(161), - [sym_number_literal] = ACTIONS(163), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(159), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_RBRACK] = ACTIONS(1452), - [anon_sym_sizeof] = ACTIONS(165), + [sym_identifier] = ACTIONS(1043), + [aux_sym_preproc_include_token1] = ACTIONS(1043), + [aux_sym_preproc_def_token1] = ACTIONS(1043), + [aux_sym_preproc_if_token1] = ACTIONS(1043), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1043), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1043), + [sym_preproc_directive] = ACTIONS(1043), + [anon_sym_SEMI] = ACTIONS(1041), + [anon_sym_typedef] = ACTIONS(1043), + [anon_sym_extern] = ACTIONS(1043), + [anon_sym___attribute__] = ACTIONS(1043), + [anon_sym_LPAREN2] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_RBRACE] = ACTIONS(1041), + [anon_sym_STAR] = ACTIONS(1041), + [anon_sym_static] = ACTIONS(1043), + [anon_sym_auto] = ACTIONS(1043), + [anon_sym_register] = ACTIONS(1043), + [anon_sym_inline] = ACTIONS(1043), + [anon_sym_const] = ACTIONS(1043), + [anon_sym_volatile] = ACTIONS(1043), + [anon_sym_restrict] = ACTIONS(1043), + [anon_sym__Atomic] = ACTIONS(1043), + [anon_sym_signed] = ACTIONS(1043), + [anon_sym_unsigned] = ACTIONS(1043), + [anon_sym_long] = ACTIONS(1043), + [anon_sym_short] = ACTIONS(1043), + [sym_primitive_type] = ACTIONS(1043), + [anon_sym_enum] = ACTIONS(1043), + [anon_sym_struct] = ACTIONS(1043), + [anon_sym_union] = ACTIONS(1043), + [anon_sym_if] = ACTIONS(1043), + [anon_sym_else] = ACTIONS(1043), + [anon_sym_switch] = ACTIONS(1043), + [anon_sym_while] = ACTIONS(1043), + [anon_sym_do] = ACTIONS(1043), + [anon_sym_for] = ACTIONS(1043), + [anon_sym_return] = ACTIONS(1043), + [anon_sym_break] = ACTIONS(1043), + [anon_sym_continue] = ACTIONS(1043), + [anon_sym_goto] = ACTIONS(1043), + [anon_sym_AMP] = ACTIONS(1041), + [anon_sym_BANG] = ACTIONS(1041), + [anon_sym_TILDE] = ACTIONS(1041), + [anon_sym_DASH] = ACTIONS(1043), + [anon_sym_PLUS] = ACTIONS(1043), + [anon_sym_DASH_DASH] = ACTIONS(1041), + [anon_sym_PLUS_PLUS] = ACTIONS(1041), + [anon_sym_sizeof] = ACTIONS(1043), + [sym_number_literal] = ACTIONS(1041), + [anon_sym_L_SQUOTE] = ACTIONS(1041), + [anon_sym_SQUOTE] = ACTIONS(1041), + [anon_sym_L_DQUOTE] = ACTIONS(1041), + [anon_sym_DQUOTE] = ACTIONS(1041), + [sym_true] = ACTIONS(1043), + [sym_false] = ACTIONS(1043), + [sym_null] = ACTIONS(1043), + [sym_comment] = ACTIONS(3), }, [303] = { - [anon_sym_LBRACE] = ACTIONS(1454), - [anon_sym_EQ] = ACTIONS(1454), + [sym_identifier] = ACTIONS(1039), + [aux_sym_preproc_include_token1] = ACTIONS(1039), + [aux_sym_preproc_def_token1] = ACTIONS(1039), + [aux_sym_preproc_if_token1] = ACTIONS(1039), + [aux_sym_preproc_if_token2] = ACTIONS(1039), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1039), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1039), + [sym_preproc_directive] = ACTIONS(1039), + [anon_sym_SEMI] = ACTIONS(1037), + [anon_sym_typedef] = ACTIONS(1039), + [anon_sym_extern] = ACTIONS(1039), + [anon_sym___attribute__] = ACTIONS(1039), + [anon_sym_LPAREN2] = ACTIONS(1037), + [anon_sym_LBRACE] = ACTIONS(1037), + [anon_sym_STAR] = ACTIONS(1037), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_auto] = ACTIONS(1039), + [anon_sym_register] = ACTIONS(1039), + [anon_sym_inline] = ACTIONS(1039), + [anon_sym_const] = ACTIONS(1039), + [anon_sym_volatile] = ACTIONS(1039), + [anon_sym_restrict] = ACTIONS(1039), + [anon_sym__Atomic] = ACTIONS(1039), + [anon_sym_signed] = ACTIONS(1039), + [anon_sym_unsigned] = ACTIONS(1039), + [anon_sym_long] = ACTIONS(1039), + [anon_sym_short] = ACTIONS(1039), + [sym_primitive_type] = ACTIONS(1039), + [anon_sym_enum] = ACTIONS(1039), + [anon_sym_struct] = ACTIONS(1039), + [anon_sym_union] = ACTIONS(1039), + [anon_sym_if] = ACTIONS(1039), + [anon_sym_else] = ACTIONS(1039), + [anon_sym_switch] = ACTIONS(1039), + [anon_sym_while] = ACTIONS(1039), + [anon_sym_do] = ACTIONS(1039), + [anon_sym_for] = ACTIONS(1039), + [anon_sym_return] = ACTIONS(1039), + [anon_sym_break] = ACTIONS(1039), + [anon_sym_continue] = ACTIONS(1039), + [anon_sym_goto] = ACTIONS(1039), + [anon_sym_AMP] = ACTIONS(1037), + [anon_sym_BANG] = ACTIONS(1037), + [anon_sym_TILDE] = ACTIONS(1037), + [anon_sym_DASH] = ACTIONS(1039), + [anon_sym_PLUS] = ACTIONS(1039), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_sizeof] = ACTIONS(1039), + [sym_number_literal] = ACTIONS(1037), + [anon_sym_L_SQUOTE] = ACTIONS(1037), + [anon_sym_SQUOTE] = ACTIONS(1037), + [anon_sym_L_DQUOTE] = ACTIONS(1037), + [anon_sym_DQUOTE] = ACTIONS(1037), + [sym_true] = ACTIONS(1039), + [sym_false] = ACTIONS(1039), + [sym_null] = ACTIONS(1039), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(1454), - [anon_sym_COMMA] = ACTIONS(1454), - [anon_sym_SEMI] = ACTIONS(1454), - [anon_sym_RPAREN] = ACTIONS(1454), - [anon_sym_LBRACK] = ACTIONS(1454), }, [304] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_RBRACK] = ACTIONS(1452), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [sym_identifier] = ACTIONS(1017), + [aux_sym_preproc_include_token1] = ACTIONS(1017), + [aux_sym_preproc_def_token1] = ACTIONS(1017), + [aux_sym_preproc_if_token1] = ACTIONS(1017), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1017), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1017), + [sym_preproc_directive] = ACTIONS(1017), + [anon_sym_SEMI] = ACTIONS(1015), + [anon_sym_typedef] = ACTIONS(1017), + [anon_sym_extern] = ACTIONS(1017), + [anon_sym___attribute__] = ACTIONS(1017), + [anon_sym_LPAREN2] = ACTIONS(1015), + [anon_sym_LBRACE] = ACTIONS(1015), + [anon_sym_RBRACE] = ACTIONS(1015), + [anon_sym_STAR] = ACTIONS(1015), + [anon_sym_static] = ACTIONS(1017), + [anon_sym_auto] = ACTIONS(1017), + [anon_sym_register] = ACTIONS(1017), + [anon_sym_inline] = ACTIONS(1017), + [anon_sym_const] = ACTIONS(1017), + [anon_sym_volatile] = ACTIONS(1017), + [anon_sym_restrict] = ACTIONS(1017), + [anon_sym__Atomic] = ACTIONS(1017), + [anon_sym_signed] = ACTIONS(1017), + [anon_sym_unsigned] = ACTIONS(1017), + [anon_sym_long] = ACTIONS(1017), + [anon_sym_short] = ACTIONS(1017), + [sym_primitive_type] = ACTIONS(1017), + [anon_sym_enum] = ACTIONS(1017), + [anon_sym_struct] = ACTIONS(1017), + [anon_sym_union] = ACTIONS(1017), + [anon_sym_if] = ACTIONS(1017), + [anon_sym_else] = ACTIONS(1017), + [anon_sym_switch] = ACTIONS(1017), + [anon_sym_while] = ACTIONS(1017), + [anon_sym_do] = ACTIONS(1017), + [anon_sym_for] = ACTIONS(1017), + [anon_sym_return] = ACTIONS(1017), + [anon_sym_break] = ACTIONS(1017), + [anon_sym_continue] = ACTIONS(1017), + [anon_sym_goto] = ACTIONS(1017), + [anon_sym_AMP] = ACTIONS(1015), + [anon_sym_BANG] = ACTIONS(1015), + [anon_sym_TILDE] = ACTIONS(1015), + [anon_sym_DASH] = ACTIONS(1017), + [anon_sym_PLUS] = ACTIONS(1017), + [anon_sym_DASH_DASH] = ACTIONS(1015), + [anon_sym_PLUS_PLUS] = ACTIONS(1015), + [anon_sym_sizeof] = ACTIONS(1017), + [sym_number_literal] = ACTIONS(1015), + [anon_sym_L_SQUOTE] = ACTIONS(1015), + [anon_sym_SQUOTE] = ACTIONS(1015), + [anon_sym_L_DQUOTE] = ACTIONS(1015), + [anon_sym_DQUOTE] = ACTIONS(1015), + [sym_true] = ACTIONS(1017), + [sym_false] = ACTIONS(1017), + [sym_null] = ACTIONS(1017), + [sym_comment] = ACTIONS(3), }, [305] = { - [sym__expression] = STATE(400), - [sym_binary_expression] = STATE(400), - [sym_update_expression] = STATE(400), - [sym_call_expression] = STATE(36), - [sym_type_qualifier] = STATE(144), - [sym_conditional_expression] = STATE(400), - [sym_assignment_expression] = STATE(400), - [sym_cast_expression] = STATE(400), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(400), - [sym_char_literal] = STATE(400), - [aux_sym_type_definition_repeat1] = STATE(144), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(400), - [sym_sizeof_expression] = STATE(400), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(400), - [sym_string_literal] = STATE(41), - [sym_true] = ACTIONS(1456), - [anon_sym_restrict] = ACTIONS(7), - [sym_null] = ACTIONS(1456), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_const] = ACTIONS(7), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_DASH_DASH] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(7), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(1458), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(1460), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(1456), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_RBRACK] = ACTIONS(1462), - [anon_sym_sizeof] = ACTIONS(33), + [sym_identifier] = ACTIONS(1047), + [aux_sym_preproc_include_token1] = ACTIONS(1047), + [aux_sym_preproc_def_token1] = ACTIONS(1047), + [aux_sym_preproc_if_token1] = ACTIONS(1047), + [aux_sym_preproc_if_token2] = ACTIONS(1047), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1047), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1047), + [sym_preproc_directive] = ACTIONS(1047), + [anon_sym_SEMI] = ACTIONS(1045), + [anon_sym_typedef] = ACTIONS(1047), + [anon_sym_extern] = ACTIONS(1047), + [anon_sym___attribute__] = ACTIONS(1047), + [anon_sym_LPAREN2] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(1045), + [anon_sym_STAR] = ACTIONS(1045), + [anon_sym_static] = ACTIONS(1047), + [anon_sym_auto] = ACTIONS(1047), + [anon_sym_register] = ACTIONS(1047), + [anon_sym_inline] = ACTIONS(1047), + [anon_sym_const] = ACTIONS(1047), + [anon_sym_volatile] = ACTIONS(1047), + [anon_sym_restrict] = ACTIONS(1047), + [anon_sym__Atomic] = ACTIONS(1047), + [anon_sym_signed] = ACTIONS(1047), + [anon_sym_unsigned] = ACTIONS(1047), + [anon_sym_long] = ACTIONS(1047), + [anon_sym_short] = ACTIONS(1047), + [sym_primitive_type] = ACTIONS(1047), + [anon_sym_enum] = ACTIONS(1047), + [anon_sym_struct] = ACTIONS(1047), + [anon_sym_union] = ACTIONS(1047), + [anon_sym_if] = ACTIONS(1047), + [anon_sym_else] = ACTIONS(1047), + [anon_sym_switch] = ACTIONS(1047), + [anon_sym_while] = ACTIONS(1047), + [anon_sym_do] = ACTIONS(1047), + [anon_sym_for] = ACTIONS(1047), + [anon_sym_return] = ACTIONS(1047), + [anon_sym_break] = ACTIONS(1047), + [anon_sym_continue] = ACTIONS(1047), + [anon_sym_goto] = ACTIONS(1047), + [anon_sym_AMP] = ACTIONS(1045), + [anon_sym_BANG] = ACTIONS(1045), + [anon_sym_TILDE] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1047), + [anon_sym_DASH_DASH] = ACTIONS(1045), + [anon_sym_PLUS_PLUS] = ACTIONS(1045), + [anon_sym_sizeof] = ACTIONS(1047), + [sym_number_literal] = ACTIONS(1045), + [anon_sym_L_SQUOTE] = ACTIONS(1045), + [anon_sym_SQUOTE] = ACTIONS(1045), + [anon_sym_L_DQUOTE] = ACTIONS(1045), + [anon_sym_DQUOTE] = ACTIONS(1045), + [sym_true] = ACTIONS(1047), + [sym_false] = ACTIONS(1047), + [sym_null] = ACTIONS(1047), + [sym_comment] = ACTIONS(3), }, [306] = { - [sym_attribute_specifier] = STATE(401), - [aux_sym_function_declarator_repeat1] = STATE(401), - [anon_sym_LBRACE] = ACTIONS(1464), - [anon_sym_EQ] = ACTIONS(1464), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(1464), - [anon_sym_COMMA] = ACTIONS(1464), - [anon_sym_SEMI] = ACTIONS(1464), - [anon_sym_RPAREN] = ACTIONS(1464), - [anon_sym___attribute__] = ACTIONS(1126), - [anon_sym_LBRACK] = ACTIONS(1464), + [sym_identifier] = ACTIONS(941), + [aux_sym_preproc_include_token1] = ACTIONS(941), + [aux_sym_preproc_def_token1] = ACTIONS(941), + [aux_sym_preproc_if_token1] = ACTIONS(941), + [aux_sym_preproc_if_token2] = ACTIONS(941), + [aux_sym_preproc_ifdef_token1] = ACTIONS(941), + [aux_sym_preproc_ifdef_token2] = ACTIONS(941), + [sym_preproc_directive] = ACTIONS(941), + [anon_sym_SEMI] = ACTIONS(939), + [anon_sym_typedef] = ACTIONS(941), + [anon_sym_extern] = ACTIONS(941), + [anon_sym___attribute__] = ACTIONS(941), + [anon_sym_LPAREN2] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(939), + [anon_sym_STAR] = ACTIONS(939), + [anon_sym_static] = ACTIONS(941), + [anon_sym_auto] = ACTIONS(941), + [anon_sym_register] = ACTIONS(941), + [anon_sym_inline] = ACTIONS(941), + [anon_sym_const] = ACTIONS(941), + [anon_sym_volatile] = ACTIONS(941), + [anon_sym_restrict] = ACTIONS(941), + [anon_sym__Atomic] = ACTIONS(941), + [anon_sym_signed] = ACTIONS(941), + [anon_sym_unsigned] = ACTIONS(941), + [anon_sym_long] = ACTIONS(941), + [anon_sym_short] = ACTIONS(941), + [sym_primitive_type] = ACTIONS(941), + [anon_sym_enum] = ACTIONS(941), + [anon_sym_struct] = ACTIONS(941), + [anon_sym_union] = ACTIONS(941), + [anon_sym_if] = ACTIONS(941), + [anon_sym_else] = ACTIONS(941), + [anon_sym_switch] = ACTIONS(941), + [anon_sym_while] = ACTIONS(941), + [anon_sym_do] = ACTIONS(941), + [anon_sym_for] = ACTIONS(941), + [anon_sym_return] = ACTIONS(941), + [anon_sym_break] = ACTIONS(941), + [anon_sym_continue] = ACTIONS(941), + [anon_sym_goto] = ACTIONS(941), + [anon_sym_AMP] = ACTIONS(939), + [anon_sym_BANG] = ACTIONS(939), + [anon_sym_TILDE] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(941), + [anon_sym_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(939), + [anon_sym_sizeof] = ACTIONS(941), + [sym_number_literal] = ACTIONS(939), + [anon_sym_L_SQUOTE] = ACTIONS(939), + [anon_sym_SQUOTE] = ACTIONS(939), + [anon_sym_L_DQUOTE] = ACTIONS(939), + [anon_sym_DQUOTE] = ACTIONS(939), + [sym_true] = ACTIONS(941), + [sym_false] = ACTIONS(941), + [sym_null] = ACTIONS(941), + [sym_comment] = ACTIONS(3), }, [307] = { - [anon_sym_case] = ACTIONS(1466), - [sym_true] = ACTIONS(1466), - [anon_sym_restrict] = ACTIONS(1466), - [sym_null] = ACTIONS(1466), - [anon_sym_goto] = ACTIONS(1466), - [anon_sym_const] = ACTIONS(1466), - [anon_sym_typedef] = ACTIONS(1466), - [anon_sym_DASH_DASH] = ACTIONS(1468), - [anon_sym_default] = ACTIONS(1466), - [anon_sym__Atomic] = ACTIONS(1466), - [sym_identifier] = ACTIONS(1466), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1466), - [sym_number_literal] = ACTIONS(1468), - [anon_sym_volatile] = ACTIONS(1466), - [anon_sym_SQUOTE] = ACTIONS(1468), - [anon_sym_extern] = ACTIONS(1466), - [anon_sym_PLUS_PLUS] = ACTIONS(1468), - [anon_sym_struct] = ACTIONS(1466), - [anon_sym_signed] = ACTIONS(1466), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1466), - [anon_sym_while] = ACTIONS(1466), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1466), - [anon_sym_L_SQUOTE] = ACTIONS(1468), - [anon_sym___attribute__] = ACTIONS(1466), - [anon_sym_sizeof] = ACTIONS(1466), - [anon_sym_LBRACE] = ACTIONS(1468), - [anon_sym_union] = ACTIONS(1466), - [anon_sym_unsigned] = ACTIONS(1466), - [anon_sym_short] = ACTIONS(1466), - [anon_sym_do] = ACTIONS(1466), - [sym_preproc_directive] = ACTIONS(1466), - [anon_sym_AMP] = ACTIONS(1468), - [aux_sym_preproc_if_token1] = ACTIONS(1466), - [anon_sym_TILDE] = ACTIONS(1468), - [anon_sym_L_DQUOTE] = ACTIONS(1468), - [anon_sym_LPAREN2] = ACTIONS(1468), - [anon_sym_RBRACE] = ACTIONS(1468), - [sym_primitive_type] = ACTIONS(1466), - [anon_sym_for] = ACTIONS(1466), - [anon_sym_break] = ACTIONS(1466), - [anon_sym_BANG] = ACTIONS(1468), - [aux_sym_preproc_include_token1] = ACTIONS(1466), - [anon_sym_DASH] = ACTIONS(1466), - [anon_sym_static] = ACTIONS(1466), - [anon_sym_DQUOTE] = ACTIONS(1468), - [anon_sym_register] = ACTIONS(1466), - [anon_sym_STAR] = ACTIONS(1468), - [anon_sym_if] = ACTIONS(1466), - [anon_sym_switch] = ACTIONS(1466), - [anon_sym_enum] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [ts_builtin_sym_end] = ACTIONS(1468), - [anon_sym_return] = ACTIONS(1466), - [anon_sym_continue] = ACTIONS(1466), - [anon_sym_SEMI] = ACTIONS(1468), - [aux_sym_preproc_def_token1] = ACTIONS(1466), - [anon_sym_PLUS] = ACTIONS(1466), - [anon_sym_auto] = ACTIONS(1466), - [anon_sym_inline] = ACTIONS(1466), + [sym_identifier] = ACTIONS(997), + [aux_sym_preproc_include_token1] = ACTIONS(997), + [aux_sym_preproc_def_token1] = ACTIONS(997), + [aux_sym_preproc_if_token1] = ACTIONS(997), + [aux_sym_preproc_ifdef_token1] = ACTIONS(997), + [aux_sym_preproc_ifdef_token2] = ACTIONS(997), + [sym_preproc_directive] = ACTIONS(997), + [anon_sym_SEMI] = ACTIONS(995), + [anon_sym_typedef] = ACTIONS(997), + [anon_sym_extern] = ACTIONS(997), + [anon_sym___attribute__] = ACTIONS(997), + [anon_sym_LPAREN2] = ACTIONS(995), + [anon_sym_LBRACE] = ACTIONS(995), + [anon_sym_RBRACE] = ACTIONS(995), + [anon_sym_STAR] = ACTIONS(995), + [anon_sym_static] = ACTIONS(997), + [anon_sym_auto] = ACTIONS(997), + [anon_sym_register] = ACTIONS(997), + [anon_sym_inline] = ACTIONS(997), + [anon_sym_const] = ACTIONS(997), + [anon_sym_volatile] = ACTIONS(997), + [anon_sym_restrict] = ACTIONS(997), + [anon_sym__Atomic] = ACTIONS(997), + [anon_sym_signed] = ACTIONS(997), + [anon_sym_unsigned] = ACTIONS(997), + [anon_sym_long] = ACTIONS(997), + [anon_sym_short] = ACTIONS(997), + [sym_primitive_type] = ACTIONS(997), + [anon_sym_enum] = ACTIONS(997), + [anon_sym_struct] = ACTIONS(997), + [anon_sym_union] = ACTIONS(997), + [anon_sym_if] = ACTIONS(997), + [anon_sym_else] = ACTIONS(997), + [anon_sym_switch] = ACTIONS(997), + [anon_sym_while] = ACTIONS(997), + [anon_sym_do] = ACTIONS(997), + [anon_sym_for] = ACTIONS(997), + [anon_sym_return] = ACTIONS(997), + [anon_sym_break] = ACTIONS(997), + [anon_sym_continue] = ACTIONS(997), + [anon_sym_goto] = ACTIONS(997), + [anon_sym_AMP] = ACTIONS(995), + [anon_sym_BANG] = ACTIONS(995), + [anon_sym_TILDE] = ACTIONS(995), + [anon_sym_DASH] = ACTIONS(997), + [anon_sym_PLUS] = ACTIONS(997), + [anon_sym_DASH_DASH] = ACTIONS(995), + [anon_sym_PLUS_PLUS] = ACTIONS(995), + [anon_sym_sizeof] = ACTIONS(997), + [sym_number_literal] = ACTIONS(995), + [anon_sym_L_SQUOTE] = ACTIONS(995), + [anon_sym_SQUOTE] = ACTIONS(995), + [anon_sym_L_DQUOTE] = ACTIONS(995), + [anon_sym_DQUOTE] = ACTIONS(995), + [sym_true] = ACTIONS(997), + [sym_false] = ACTIONS(997), + [sym_null] = ACTIONS(997), + [sym_comment] = ACTIONS(3), }, [308] = { - [aux_sym_declaration_repeat1] = STATE(308), + [sym_identifier] = ACTIONS(1005), + [aux_sym_preproc_include_token1] = ACTIONS(1005), + [aux_sym_preproc_def_token1] = ACTIONS(1005), + [aux_sym_preproc_if_token1] = ACTIONS(1005), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1005), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1005), + [sym_preproc_directive] = ACTIONS(1005), + [anon_sym_SEMI] = ACTIONS(1003), + [anon_sym_typedef] = ACTIONS(1005), + [anon_sym_extern] = ACTIONS(1005), + [anon_sym___attribute__] = ACTIONS(1005), + [anon_sym_LPAREN2] = ACTIONS(1003), + [anon_sym_LBRACE] = ACTIONS(1003), + [anon_sym_RBRACE] = ACTIONS(1003), + [anon_sym_STAR] = ACTIONS(1003), + [anon_sym_static] = ACTIONS(1005), + [anon_sym_auto] = ACTIONS(1005), + [anon_sym_register] = ACTIONS(1005), + [anon_sym_inline] = ACTIONS(1005), + [anon_sym_const] = ACTIONS(1005), + [anon_sym_volatile] = ACTIONS(1005), + [anon_sym_restrict] = ACTIONS(1005), + [anon_sym__Atomic] = ACTIONS(1005), + [anon_sym_signed] = ACTIONS(1005), + [anon_sym_unsigned] = ACTIONS(1005), + [anon_sym_long] = ACTIONS(1005), + [anon_sym_short] = ACTIONS(1005), + [sym_primitive_type] = ACTIONS(1005), + [anon_sym_enum] = ACTIONS(1005), + [anon_sym_struct] = ACTIONS(1005), + [anon_sym_union] = ACTIONS(1005), + [anon_sym_if] = ACTIONS(1005), + [anon_sym_else] = ACTIONS(1005), + [anon_sym_switch] = ACTIONS(1005), + [anon_sym_while] = ACTIONS(1005), + [anon_sym_do] = ACTIONS(1005), + [anon_sym_for] = ACTIONS(1005), + [anon_sym_return] = ACTIONS(1005), + [anon_sym_break] = ACTIONS(1005), + [anon_sym_continue] = ACTIONS(1005), + [anon_sym_goto] = ACTIONS(1005), + [anon_sym_AMP] = ACTIONS(1003), + [anon_sym_BANG] = ACTIONS(1003), + [anon_sym_TILDE] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1005), + [anon_sym_PLUS] = ACTIONS(1005), + [anon_sym_DASH_DASH] = ACTIONS(1003), + [anon_sym_PLUS_PLUS] = ACTIONS(1003), + [anon_sym_sizeof] = ACTIONS(1005), + [sym_number_literal] = ACTIONS(1003), + [anon_sym_L_SQUOTE] = ACTIONS(1003), + [anon_sym_SQUOTE] = ACTIONS(1003), + [anon_sym_L_DQUOTE] = ACTIONS(1003), + [anon_sym_DQUOTE] = ACTIONS(1003), + [sym_true] = ACTIONS(1005), + [sym_false] = ACTIONS(1005), + [sym_null] = ACTIONS(1005), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1470), - [anon_sym_SEMI] = ACTIONS(1473), }, [309] = { - [sym_preproc_def] = STATE(402), - [sym_preproc_function_def] = STATE(402), - [sym_sized_type_specifier] = STATE(130), - [sym_enum_specifier] = STATE(130), - [sym__field_declaration_list_item] = STATE(402), - [sym_field_declaration] = STATE(402), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(402), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(130), - [sym_union_specifier] = STATE(130), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_attribute_specifier] = STATE(43), - [sym_macro_type_specifier] = STATE(130), - [sym_preproc_call] = STATE(402), - [sym_preproc_if_in_field_declaration_list] = STATE(402), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(402), - [sym_struct_specifier] = STATE(130), - [sym__declaration_specifiers] = STATE(969), - [sym_storage_class_specifier] = STATE(43), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1475), - [anon_sym_union] = ACTIONS(37), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(7), - [anon_sym_short] = ACTIONS(27), - [anon_sym_static] = ACTIONS(63), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_register] = ACTIONS(63), - [anon_sym_extern] = ACTIONS(63), - [aux_sym_preproc_if_token2] = ACTIONS(1477), - [anon_sym_struct] = ACTIONS(25), - [sym_preproc_directive] = ACTIONS(1479), - [aux_sym_preproc_if_token1] = ACTIONS(1481), - [anon_sym_signed] = ACTIONS(27), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_long] = ACTIONS(27), - [anon_sym_const] = ACTIONS(7), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1475), - [aux_sym_preproc_def_token1] = ACTIONS(1483), - [anon_sym__Atomic] = ACTIONS(7), - [anon_sym_auto] = ACTIONS(63), - [sym_primitive_type] = ACTIONS(348), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(31), - [sym_identifier] = ACTIONS(187), + [sym_identifier] = ACTIONS(957), + [aux_sym_preproc_include_token1] = ACTIONS(957), + [aux_sym_preproc_def_token1] = ACTIONS(957), + [aux_sym_preproc_if_token1] = ACTIONS(957), + [aux_sym_preproc_if_token2] = ACTIONS(957), + [aux_sym_preproc_ifdef_token1] = ACTIONS(957), + [aux_sym_preproc_ifdef_token2] = ACTIONS(957), + [sym_preproc_directive] = ACTIONS(957), + [anon_sym_SEMI] = ACTIONS(955), + [anon_sym_typedef] = ACTIONS(957), + [anon_sym_extern] = ACTIONS(957), + [anon_sym___attribute__] = ACTIONS(957), + [anon_sym_LPAREN2] = ACTIONS(955), + [anon_sym_LBRACE] = ACTIONS(955), + [anon_sym_STAR] = ACTIONS(955), + [anon_sym_static] = ACTIONS(957), + [anon_sym_auto] = ACTIONS(957), + [anon_sym_register] = ACTIONS(957), + [anon_sym_inline] = ACTIONS(957), + [anon_sym_const] = ACTIONS(957), + [anon_sym_volatile] = ACTIONS(957), + [anon_sym_restrict] = ACTIONS(957), + [anon_sym__Atomic] = ACTIONS(957), + [anon_sym_signed] = ACTIONS(957), + [anon_sym_unsigned] = ACTIONS(957), + [anon_sym_long] = ACTIONS(957), + [anon_sym_short] = ACTIONS(957), + [sym_primitive_type] = ACTIONS(957), + [anon_sym_enum] = ACTIONS(957), + [anon_sym_struct] = ACTIONS(957), + [anon_sym_union] = ACTIONS(957), + [anon_sym_if] = ACTIONS(957), + [anon_sym_else] = ACTIONS(957), + [anon_sym_switch] = ACTIONS(957), + [anon_sym_while] = ACTIONS(957), + [anon_sym_do] = ACTIONS(957), + [anon_sym_for] = ACTIONS(957), + [anon_sym_return] = ACTIONS(957), + [anon_sym_break] = ACTIONS(957), + [anon_sym_continue] = ACTIONS(957), + [anon_sym_goto] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(955), + [anon_sym_BANG] = ACTIONS(955), + [anon_sym_TILDE] = ACTIONS(955), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_DASH_DASH] = ACTIONS(955), + [anon_sym_PLUS_PLUS] = ACTIONS(955), + [anon_sym_sizeof] = ACTIONS(957), + [sym_number_literal] = ACTIONS(955), + [anon_sym_L_SQUOTE] = ACTIONS(955), + [anon_sym_SQUOTE] = ACTIONS(955), + [anon_sym_L_DQUOTE] = ACTIONS(955), + [anon_sym_DQUOTE] = ACTIONS(955), + [sym_true] = ACTIONS(957), + [sym_false] = ACTIONS(957), + [sym_null] = ACTIONS(957), + [sym_comment] = ACTIONS(3), }, [310] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1485), - [anon_sym_union] = ACTIONS(1485), - [anon_sym_unsigned] = ACTIONS(1485), - [anon_sym_restrict] = ACTIONS(1485), - [anon_sym_short] = ACTIONS(1485), - [anon_sym_static] = ACTIONS(1485), - [anon_sym_volatile] = ACTIONS(1485), - [anon_sym_register] = ACTIONS(1485), - [anon_sym_extern] = ACTIONS(1485), - [anon_sym_struct] = ACTIONS(1485), - [sym_preproc_directive] = ACTIONS(1485), - [anon_sym_signed] = ACTIONS(1485), - [aux_sym_preproc_if_token1] = ACTIONS(1485), - [anon_sym_long] = ACTIONS(1485), - [anon_sym_enum] = ACTIONS(1485), - [anon_sym_const] = ACTIONS(1485), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(1487), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1485), - [aux_sym_preproc_def_token1] = ACTIONS(1485), - [anon_sym__Atomic] = ACTIONS(1485), - [anon_sym_auto] = ACTIONS(1485), - [sym_primitive_type] = ACTIONS(1485), - [anon_sym_inline] = ACTIONS(1485), - [anon_sym___attribute__] = ACTIONS(1485), - [sym_identifier] = ACTIONS(1485), + [sym_identifier] = ACTIONS(989), + [aux_sym_preproc_include_token1] = ACTIONS(989), + [aux_sym_preproc_def_token1] = ACTIONS(989), + [aux_sym_preproc_if_token1] = ACTIONS(989), + [aux_sym_preproc_ifdef_token1] = ACTIONS(989), + [aux_sym_preproc_ifdef_token2] = ACTIONS(989), + [sym_preproc_directive] = ACTIONS(989), + [anon_sym_SEMI] = ACTIONS(987), + [anon_sym_typedef] = ACTIONS(989), + [anon_sym_extern] = ACTIONS(989), + [anon_sym___attribute__] = ACTIONS(989), + [anon_sym_LPAREN2] = ACTIONS(987), + [anon_sym_LBRACE] = ACTIONS(987), + [anon_sym_RBRACE] = ACTIONS(987), + [anon_sym_STAR] = ACTIONS(987), + [anon_sym_static] = ACTIONS(989), + [anon_sym_auto] = ACTIONS(989), + [anon_sym_register] = ACTIONS(989), + [anon_sym_inline] = ACTIONS(989), + [anon_sym_const] = ACTIONS(989), + [anon_sym_volatile] = ACTIONS(989), + [anon_sym_restrict] = ACTIONS(989), + [anon_sym__Atomic] = ACTIONS(989), + [anon_sym_signed] = ACTIONS(989), + [anon_sym_unsigned] = ACTIONS(989), + [anon_sym_long] = ACTIONS(989), + [anon_sym_short] = ACTIONS(989), + [sym_primitive_type] = ACTIONS(989), + [anon_sym_enum] = ACTIONS(989), + [anon_sym_struct] = ACTIONS(989), + [anon_sym_union] = ACTIONS(989), + [anon_sym_if] = ACTIONS(989), + [anon_sym_else] = ACTIONS(989), + [anon_sym_switch] = ACTIONS(989), + [anon_sym_while] = ACTIONS(989), + [anon_sym_do] = ACTIONS(989), + [anon_sym_for] = ACTIONS(989), + [anon_sym_return] = ACTIONS(989), + [anon_sym_break] = ACTIONS(989), + [anon_sym_continue] = ACTIONS(989), + [anon_sym_goto] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(987), + [anon_sym_BANG] = ACTIONS(987), + [anon_sym_TILDE] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(987), + [anon_sym_PLUS_PLUS] = ACTIONS(987), + [anon_sym_sizeof] = ACTIONS(989), + [sym_number_literal] = ACTIONS(987), + [anon_sym_L_SQUOTE] = ACTIONS(987), + [anon_sym_SQUOTE] = ACTIONS(987), + [anon_sym_L_DQUOTE] = ACTIONS(987), + [anon_sym_DQUOTE] = ACTIONS(987), + [sym_true] = ACTIONS(989), + [sym_false] = ACTIONS(989), + [sym_null] = ACTIONS(989), + [sym_comment] = ACTIONS(3), }, [311] = { - [sym_preproc_arg] = ACTIONS(1489), - [sym_comment] = ACTIONS(147), + [sym_identifier] = ACTIONS(915), + [aux_sym_preproc_include_token1] = ACTIONS(915), + [aux_sym_preproc_def_token1] = ACTIONS(915), + [aux_sym_preproc_if_token1] = ACTIONS(915), + [aux_sym_preproc_ifdef_token1] = ACTIONS(915), + [aux_sym_preproc_ifdef_token2] = ACTIONS(915), + [sym_preproc_directive] = ACTIONS(915), + [anon_sym_SEMI] = ACTIONS(913), + [anon_sym_typedef] = ACTIONS(915), + [anon_sym_extern] = ACTIONS(915), + [anon_sym___attribute__] = ACTIONS(915), + [anon_sym_LPAREN2] = ACTIONS(913), + [anon_sym_LBRACE] = ACTIONS(913), + [anon_sym_RBRACE] = ACTIONS(913), + [anon_sym_STAR] = ACTIONS(913), + [anon_sym_static] = ACTIONS(915), + [anon_sym_auto] = ACTIONS(915), + [anon_sym_register] = ACTIONS(915), + [anon_sym_inline] = ACTIONS(915), + [anon_sym_const] = ACTIONS(915), + [anon_sym_volatile] = ACTIONS(915), + [anon_sym_restrict] = ACTIONS(915), + [anon_sym__Atomic] = ACTIONS(915), + [anon_sym_signed] = ACTIONS(915), + [anon_sym_unsigned] = ACTIONS(915), + [anon_sym_long] = ACTIONS(915), + [anon_sym_short] = ACTIONS(915), + [sym_primitive_type] = ACTIONS(915), + [anon_sym_enum] = ACTIONS(915), + [anon_sym_struct] = ACTIONS(915), + [anon_sym_union] = ACTIONS(915), + [anon_sym_if] = ACTIONS(915), + [anon_sym_else] = ACTIONS(915), + [anon_sym_switch] = ACTIONS(915), + [anon_sym_while] = ACTIONS(915), + [anon_sym_do] = ACTIONS(915), + [anon_sym_for] = ACTIONS(915), + [anon_sym_return] = ACTIONS(915), + [anon_sym_break] = ACTIONS(915), + [anon_sym_continue] = ACTIONS(915), + [anon_sym_goto] = ACTIONS(915), + [anon_sym_AMP] = ACTIONS(913), + [anon_sym_BANG] = ACTIONS(913), + [anon_sym_TILDE] = ACTIONS(913), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_PLUS] = ACTIONS(915), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_sizeof] = ACTIONS(915), + [sym_number_literal] = ACTIONS(913), + [anon_sym_L_SQUOTE] = ACTIONS(913), + [anon_sym_SQUOTE] = ACTIONS(913), + [anon_sym_L_DQUOTE] = ACTIONS(913), + [anon_sym_DQUOTE] = ACTIONS(913), + [sym_true] = ACTIONS(915), + [sym_false] = ACTIONS(915), + [sym_null] = ACTIONS(915), + [sym_comment] = ACTIONS(3), }, [312] = { - [sym_preproc_def] = STATE(561), - [sym_preproc_function_def] = STATE(561), - [sym_sized_type_specifier] = STATE(130), - [sym_enum_specifier] = STATE(130), - [sym__field_declaration_list_item] = STATE(561), - [sym_field_declaration] = STATE(561), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(561), - [sym_preproc_else_in_field_declaration_list] = STATE(405), - [sym__type_specifier] = STATE(130), - [sym_union_specifier] = STATE(130), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_attribute_specifier] = STATE(43), - [sym_preproc_elif_in_field_declaration_list] = STATE(405), - [sym_type_qualifier] = STATE(43), - [sym_macro_type_specifier] = STATE(130), - [sym_preproc_call] = STATE(561), - [sym_preproc_if_in_field_declaration_list] = STATE(561), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(561), - [sym_struct_specifier] = STATE(130), - [sym__declaration_specifiers] = STATE(888), - [sym_storage_class_specifier] = STATE(43), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1145), - [anon_sym_union] = ACTIONS(37), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(7), - [anon_sym_short] = ACTIONS(27), - [anon_sym_static] = ACTIONS(63), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_register] = ACTIONS(63), - [anon_sym_extern] = ACTIONS(63), - [aux_sym_preproc_else_token1] = ACTIONS(1147), - [anon_sym_struct] = ACTIONS(25), - [sym_preproc_directive] = ACTIONS(1149), - [anon_sym_signed] = ACTIONS(27), - [aux_sym_preproc_if_token1] = ACTIONS(1151), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_long] = ACTIONS(27), - [anon_sym_const] = ACTIONS(7), - [aux_sym_preproc_if_token2] = ACTIONS(1491), + [sym_identifier] = ACTIONS(969), + [aux_sym_preproc_include_token1] = ACTIONS(969), + [aux_sym_preproc_def_token1] = ACTIONS(969), + [aux_sym_preproc_if_token1] = ACTIONS(969), + [aux_sym_preproc_if_token2] = ACTIONS(969), + [aux_sym_preproc_ifdef_token1] = ACTIONS(969), + [aux_sym_preproc_ifdef_token2] = ACTIONS(969), + [sym_preproc_directive] = ACTIONS(969), + [anon_sym_SEMI] = ACTIONS(967), + [anon_sym_typedef] = ACTIONS(969), + [anon_sym_extern] = ACTIONS(969), + [anon_sym___attribute__] = ACTIONS(969), + [anon_sym_LPAREN2] = ACTIONS(967), + [anon_sym_LBRACE] = ACTIONS(967), + [anon_sym_STAR] = ACTIONS(967), + [anon_sym_static] = ACTIONS(969), + [anon_sym_auto] = ACTIONS(969), + [anon_sym_register] = ACTIONS(969), + [anon_sym_inline] = ACTIONS(969), + [anon_sym_const] = ACTIONS(969), + [anon_sym_volatile] = ACTIONS(969), + [anon_sym_restrict] = ACTIONS(969), + [anon_sym__Atomic] = ACTIONS(969), + [anon_sym_signed] = ACTIONS(969), + [anon_sym_unsigned] = ACTIONS(969), + [anon_sym_long] = ACTIONS(969), + [anon_sym_short] = ACTIONS(969), + [sym_primitive_type] = ACTIONS(969), + [anon_sym_enum] = ACTIONS(969), + [anon_sym_struct] = ACTIONS(969), + [anon_sym_union] = ACTIONS(969), + [anon_sym_if] = ACTIONS(969), + [anon_sym_else] = ACTIONS(969), + [anon_sym_switch] = ACTIONS(969), + [anon_sym_while] = ACTIONS(969), + [anon_sym_do] = ACTIONS(969), + [anon_sym_for] = ACTIONS(969), + [anon_sym_return] = ACTIONS(969), + [anon_sym_break] = ACTIONS(969), + [anon_sym_continue] = ACTIONS(969), + [anon_sym_goto] = ACTIONS(969), + [anon_sym_AMP] = ACTIONS(967), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH_DASH] = ACTIONS(967), + [anon_sym_PLUS_PLUS] = ACTIONS(967), + [anon_sym_sizeof] = ACTIONS(969), + [sym_number_literal] = ACTIONS(967), + [anon_sym_L_SQUOTE] = ACTIONS(967), + [anon_sym_SQUOTE] = ACTIONS(967), + [anon_sym_L_DQUOTE] = ACTIONS(967), + [anon_sym_DQUOTE] = ACTIONS(967), + [sym_true] = ACTIONS(969), + [sym_false] = ACTIONS(969), + [sym_null] = ACTIONS(969), [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1145), - [aux_sym_preproc_elif_token1] = ACTIONS(1155), - [aux_sym_preproc_def_token1] = ACTIONS(1157), - [anon_sym__Atomic] = ACTIONS(7), - [anon_sym_auto] = ACTIONS(63), - [sym_primitive_type] = ACTIONS(348), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(31), - [sym_identifier] = ACTIONS(187), }, [313] = { - [aux_sym_preproc_if_token2] = ACTIONS(1493), + [sym_identifier] = ACTIONS(915), + [aux_sym_preproc_include_token1] = ACTIONS(915), + [aux_sym_preproc_def_token1] = ACTIONS(915), + [aux_sym_preproc_if_token1] = ACTIONS(915), + [aux_sym_preproc_if_token2] = ACTIONS(915), + [aux_sym_preproc_ifdef_token1] = ACTIONS(915), + [aux_sym_preproc_ifdef_token2] = ACTIONS(915), + [sym_preproc_directive] = ACTIONS(915), + [anon_sym_SEMI] = ACTIONS(913), + [anon_sym_typedef] = ACTIONS(915), + [anon_sym_extern] = ACTIONS(915), + [anon_sym___attribute__] = ACTIONS(915), + [anon_sym_LPAREN2] = ACTIONS(913), + [anon_sym_LBRACE] = ACTIONS(913), + [anon_sym_STAR] = ACTIONS(913), + [anon_sym_static] = ACTIONS(915), + [anon_sym_auto] = ACTIONS(915), + [anon_sym_register] = ACTIONS(915), + [anon_sym_inline] = ACTIONS(915), + [anon_sym_const] = ACTIONS(915), + [anon_sym_volatile] = ACTIONS(915), + [anon_sym_restrict] = ACTIONS(915), + [anon_sym__Atomic] = ACTIONS(915), + [anon_sym_signed] = ACTIONS(915), + [anon_sym_unsigned] = ACTIONS(915), + [anon_sym_long] = ACTIONS(915), + [anon_sym_short] = ACTIONS(915), + [sym_primitive_type] = ACTIONS(915), + [anon_sym_enum] = ACTIONS(915), + [anon_sym_struct] = ACTIONS(915), + [anon_sym_union] = ACTIONS(915), + [anon_sym_if] = ACTIONS(915), + [anon_sym_else] = ACTIONS(915), + [anon_sym_switch] = ACTIONS(915), + [anon_sym_while] = ACTIONS(915), + [anon_sym_do] = ACTIONS(915), + [anon_sym_for] = ACTIONS(915), + [anon_sym_return] = ACTIONS(915), + [anon_sym_break] = ACTIONS(915), + [anon_sym_continue] = ACTIONS(915), + [anon_sym_goto] = ACTIONS(915), + [anon_sym_AMP] = ACTIONS(913), + [anon_sym_BANG] = ACTIONS(913), + [anon_sym_TILDE] = ACTIONS(913), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_PLUS] = ACTIONS(915), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_sizeof] = ACTIONS(915), + [sym_number_literal] = ACTIONS(913), + [anon_sym_L_SQUOTE] = ACTIONS(913), + [anon_sym_SQUOTE] = ACTIONS(913), + [anon_sym_L_DQUOTE] = ACTIONS(913), + [anon_sym_DQUOTE] = ACTIONS(913), + [sym_true] = ACTIONS(915), + [sym_false] = ACTIONS(915), + [sym_null] = ACTIONS(915), [sym_comment] = ACTIONS(3), }, [314] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1495), - [anon_sym_union] = ACTIONS(1495), - [anon_sym_unsigned] = ACTIONS(1495), - [anon_sym_restrict] = ACTIONS(1495), - [anon_sym_short] = ACTIONS(1495), - [anon_sym_static] = ACTIONS(1495), - [anon_sym_volatile] = ACTIONS(1495), - [anon_sym_register] = ACTIONS(1495), - [anon_sym_extern] = ACTIONS(1495), - [anon_sym_struct] = ACTIONS(1495), - [sym_preproc_directive] = ACTIONS(1495), - [anon_sym_signed] = ACTIONS(1495), - [aux_sym_preproc_if_token1] = ACTIONS(1495), - [anon_sym_long] = ACTIONS(1495), - [anon_sym_enum] = ACTIONS(1495), - [anon_sym_const] = ACTIONS(1495), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(1497), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1495), - [aux_sym_preproc_def_token1] = ACTIONS(1495), - [anon_sym__Atomic] = ACTIONS(1495), - [anon_sym_auto] = ACTIONS(1495), - [sym_primitive_type] = ACTIONS(1495), - [anon_sym_inline] = ACTIONS(1495), - [anon_sym___attribute__] = ACTIONS(1495), - [sym_identifier] = ACTIONS(1495), + [sym_identifier] = ACTIONS(989), + [aux_sym_preproc_include_token1] = ACTIONS(989), + [aux_sym_preproc_def_token1] = ACTIONS(989), + [aux_sym_preproc_if_token1] = ACTIONS(989), + [aux_sym_preproc_if_token2] = ACTIONS(989), + [aux_sym_preproc_ifdef_token1] = ACTIONS(989), + [aux_sym_preproc_ifdef_token2] = ACTIONS(989), + [sym_preproc_directive] = ACTIONS(989), + [anon_sym_SEMI] = ACTIONS(987), + [anon_sym_typedef] = ACTIONS(989), + [anon_sym_extern] = ACTIONS(989), + [anon_sym___attribute__] = ACTIONS(989), + [anon_sym_LPAREN2] = ACTIONS(987), + [anon_sym_LBRACE] = ACTIONS(987), + [anon_sym_STAR] = ACTIONS(987), + [anon_sym_static] = ACTIONS(989), + [anon_sym_auto] = ACTIONS(989), + [anon_sym_register] = ACTIONS(989), + [anon_sym_inline] = ACTIONS(989), + [anon_sym_const] = ACTIONS(989), + [anon_sym_volatile] = ACTIONS(989), + [anon_sym_restrict] = ACTIONS(989), + [anon_sym__Atomic] = ACTIONS(989), + [anon_sym_signed] = ACTIONS(989), + [anon_sym_unsigned] = ACTIONS(989), + [anon_sym_long] = ACTIONS(989), + [anon_sym_short] = ACTIONS(989), + [sym_primitive_type] = ACTIONS(989), + [anon_sym_enum] = ACTIONS(989), + [anon_sym_struct] = ACTIONS(989), + [anon_sym_union] = ACTIONS(989), + [anon_sym_if] = ACTIONS(989), + [anon_sym_else] = ACTIONS(989), + [anon_sym_switch] = ACTIONS(989), + [anon_sym_while] = ACTIONS(989), + [anon_sym_do] = ACTIONS(989), + [anon_sym_for] = ACTIONS(989), + [anon_sym_return] = ACTIONS(989), + [anon_sym_break] = ACTIONS(989), + [anon_sym_continue] = ACTIONS(989), + [anon_sym_goto] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(987), + [anon_sym_BANG] = ACTIONS(987), + [anon_sym_TILDE] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(987), + [anon_sym_PLUS_PLUS] = ACTIONS(987), + [anon_sym_sizeof] = ACTIONS(989), + [sym_number_literal] = ACTIONS(987), + [anon_sym_L_SQUOTE] = ACTIONS(987), + [anon_sym_SQUOTE] = ACTIONS(987), + [anon_sym_L_DQUOTE] = ACTIONS(987), + [anon_sym_DQUOTE] = ACTIONS(987), + [sym_true] = ACTIONS(989), + [sym_false] = ACTIONS(989), + [sym_null] = ACTIONS(989), + [sym_comment] = ACTIONS(3), }, [315] = { - [sym_preproc_def] = STATE(561), - [sym_preproc_function_def] = STATE(561), - [sym_sized_type_specifier] = STATE(130), - [sym_enum_specifier] = STATE(130), - [sym__field_declaration_list_item] = STATE(561), - [sym_field_declaration] = STATE(561), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(561), - [sym_preproc_else_in_field_declaration_list] = STATE(408), - [sym__type_specifier] = STATE(130), - [sym_union_specifier] = STATE(130), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_attribute_specifier] = STATE(43), - [sym_preproc_elif_in_field_declaration_list] = STATE(408), - [sym_type_qualifier] = STATE(43), - [sym_macro_type_specifier] = STATE(130), - [sym_preproc_call] = STATE(561), - [sym_preproc_if_in_field_declaration_list] = STATE(561), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(561), - [sym_struct_specifier] = STATE(130), - [sym__declaration_specifiers] = STATE(888), - [sym_storage_class_specifier] = STATE(43), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1145), - [anon_sym_union] = ACTIONS(37), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(7), - [anon_sym_short] = ACTIONS(27), - [anon_sym_static] = ACTIONS(63), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_register] = ACTIONS(63), - [anon_sym_extern] = ACTIONS(63), - [aux_sym_preproc_else_token1] = ACTIONS(1147), - [anon_sym_struct] = ACTIONS(25), - [sym_preproc_directive] = ACTIONS(1149), - [anon_sym_signed] = ACTIONS(27), - [aux_sym_preproc_if_token1] = ACTIONS(1151), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_long] = ACTIONS(27), - [anon_sym_const] = ACTIONS(7), - [aux_sym_preproc_if_token2] = ACTIONS(1499), + [sym_identifier] = ACTIONS(941), + [aux_sym_preproc_include_token1] = ACTIONS(941), + [aux_sym_preproc_def_token1] = ACTIONS(941), + [aux_sym_preproc_if_token1] = ACTIONS(941), + [aux_sym_preproc_ifdef_token1] = ACTIONS(941), + [aux_sym_preproc_ifdef_token2] = ACTIONS(941), + [sym_preproc_directive] = ACTIONS(941), + [anon_sym_SEMI] = ACTIONS(939), + [anon_sym_typedef] = ACTIONS(941), + [anon_sym_extern] = ACTIONS(941), + [anon_sym___attribute__] = ACTIONS(941), + [anon_sym_LPAREN2] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(939), + [anon_sym_RBRACE] = ACTIONS(939), + [anon_sym_STAR] = ACTIONS(939), + [anon_sym_static] = ACTIONS(941), + [anon_sym_auto] = ACTIONS(941), + [anon_sym_register] = ACTIONS(941), + [anon_sym_inline] = ACTIONS(941), + [anon_sym_const] = ACTIONS(941), + [anon_sym_volatile] = ACTIONS(941), + [anon_sym_restrict] = ACTIONS(941), + [anon_sym__Atomic] = ACTIONS(941), + [anon_sym_signed] = ACTIONS(941), + [anon_sym_unsigned] = ACTIONS(941), + [anon_sym_long] = ACTIONS(941), + [anon_sym_short] = ACTIONS(941), + [sym_primitive_type] = ACTIONS(941), + [anon_sym_enum] = ACTIONS(941), + [anon_sym_struct] = ACTIONS(941), + [anon_sym_union] = ACTIONS(941), + [anon_sym_if] = ACTIONS(941), + [anon_sym_else] = ACTIONS(941), + [anon_sym_switch] = ACTIONS(941), + [anon_sym_while] = ACTIONS(941), + [anon_sym_do] = ACTIONS(941), + [anon_sym_for] = ACTIONS(941), + [anon_sym_return] = ACTIONS(941), + [anon_sym_break] = ACTIONS(941), + [anon_sym_continue] = ACTIONS(941), + [anon_sym_goto] = ACTIONS(941), + [anon_sym_AMP] = ACTIONS(939), + [anon_sym_BANG] = ACTIONS(939), + [anon_sym_TILDE] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(941), + [anon_sym_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(939), + [anon_sym_sizeof] = ACTIONS(941), + [sym_number_literal] = ACTIONS(939), + [anon_sym_L_SQUOTE] = ACTIONS(939), + [anon_sym_SQUOTE] = ACTIONS(939), + [anon_sym_L_DQUOTE] = ACTIONS(939), + [anon_sym_DQUOTE] = ACTIONS(939), + [sym_true] = ACTIONS(941), + [sym_false] = ACTIONS(941), + [sym_null] = ACTIONS(941), [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1145), - [aux_sym_preproc_elif_token1] = ACTIONS(1155), - [aux_sym_preproc_def_token1] = ACTIONS(1157), - [anon_sym__Atomic] = ACTIONS(7), - [anon_sym_auto] = ACTIONS(63), - [sym_primitive_type] = ACTIONS(348), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(31), - [sym_identifier] = ACTIONS(187), }, [316] = { - [aux_sym_preproc_if_token2] = ACTIONS(1501), + [sym_identifier] = ACTIONS(945), + [aux_sym_preproc_include_token1] = ACTIONS(945), + [aux_sym_preproc_def_token1] = ACTIONS(945), + [aux_sym_preproc_if_token1] = ACTIONS(945), + [aux_sym_preproc_ifdef_token1] = ACTIONS(945), + [aux_sym_preproc_ifdef_token2] = ACTIONS(945), + [sym_preproc_directive] = ACTIONS(945), + [anon_sym_SEMI] = ACTIONS(943), + [anon_sym_typedef] = ACTIONS(945), + [anon_sym_extern] = ACTIONS(945), + [anon_sym___attribute__] = ACTIONS(945), + [anon_sym_LPAREN2] = ACTIONS(943), + [anon_sym_LBRACE] = ACTIONS(943), + [anon_sym_RBRACE] = ACTIONS(943), + [anon_sym_STAR] = ACTIONS(943), + [anon_sym_static] = ACTIONS(945), + [anon_sym_auto] = ACTIONS(945), + [anon_sym_register] = ACTIONS(945), + [anon_sym_inline] = ACTIONS(945), + [anon_sym_const] = ACTIONS(945), + [anon_sym_volatile] = ACTIONS(945), + [anon_sym_restrict] = ACTIONS(945), + [anon_sym__Atomic] = ACTIONS(945), + [anon_sym_signed] = ACTIONS(945), + [anon_sym_unsigned] = ACTIONS(945), + [anon_sym_long] = ACTIONS(945), + [anon_sym_short] = ACTIONS(945), + [sym_primitive_type] = ACTIONS(945), + [anon_sym_enum] = ACTIONS(945), + [anon_sym_struct] = ACTIONS(945), + [anon_sym_union] = ACTIONS(945), + [anon_sym_if] = ACTIONS(945), + [anon_sym_else] = ACTIONS(945), + [anon_sym_switch] = ACTIONS(945), + [anon_sym_while] = ACTIONS(945), + [anon_sym_do] = ACTIONS(945), + [anon_sym_for] = ACTIONS(945), + [anon_sym_return] = ACTIONS(945), + [anon_sym_break] = ACTIONS(945), + [anon_sym_continue] = ACTIONS(945), + [anon_sym_goto] = ACTIONS(945), + [anon_sym_AMP] = ACTIONS(943), + [anon_sym_BANG] = ACTIONS(943), + [anon_sym_TILDE] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(945), + [anon_sym_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(943), + [anon_sym_sizeof] = ACTIONS(945), + [sym_number_literal] = ACTIONS(943), + [anon_sym_L_SQUOTE] = ACTIONS(943), + [anon_sym_SQUOTE] = ACTIONS(943), + [anon_sym_L_DQUOTE] = ACTIONS(943), + [anon_sym_DQUOTE] = ACTIONS(943), + [sym_true] = ACTIONS(945), + [sym_false] = ACTIONS(945), + [sym_null] = ACTIONS(945), [sym_comment] = ACTIONS(3), }, [317] = { - [sym_function_field_declarator] = STATE(410), - [aux_sym_type_definition_repeat1] = STATE(144), - [sym_pointer_field_declarator] = STATE(410), - [sym_parenthesized_field_declarator] = STATE(410), - [sym__field_declarator] = STATE(410), - [sym_array_field_declarator] = STATE(410), - [sym_type_qualifier] = STATE(144), - [anon_sym_const] = ACTIONS(7), - [anon_sym_LPAREN2] = ACTIONS(808), - [anon_sym_restrict] = ACTIONS(7), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym__Atomic] = ACTIONS(7), - [anon_sym_STAR] = ACTIONS(806), - [sym_identifier] = ACTIONS(1206), + [sym_identifier] = ACTIONS(1005), + [aux_sym_preproc_include_token1] = ACTIONS(1005), + [aux_sym_preproc_def_token1] = ACTIONS(1005), + [aux_sym_preproc_if_token1] = ACTIONS(1005), + [aux_sym_preproc_if_token2] = ACTIONS(1005), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1005), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1005), + [sym_preproc_directive] = ACTIONS(1005), + [anon_sym_SEMI] = ACTIONS(1003), + [anon_sym_typedef] = ACTIONS(1005), + [anon_sym_extern] = ACTIONS(1005), + [anon_sym___attribute__] = ACTIONS(1005), + [anon_sym_LPAREN2] = ACTIONS(1003), + [anon_sym_LBRACE] = ACTIONS(1003), + [anon_sym_STAR] = ACTIONS(1003), + [anon_sym_static] = ACTIONS(1005), + [anon_sym_auto] = ACTIONS(1005), + [anon_sym_register] = ACTIONS(1005), + [anon_sym_inline] = ACTIONS(1005), + [anon_sym_const] = ACTIONS(1005), + [anon_sym_volatile] = ACTIONS(1005), + [anon_sym_restrict] = ACTIONS(1005), + [anon_sym__Atomic] = ACTIONS(1005), + [anon_sym_signed] = ACTIONS(1005), + [anon_sym_unsigned] = ACTIONS(1005), + [anon_sym_long] = ACTIONS(1005), + [anon_sym_short] = ACTIONS(1005), + [sym_primitive_type] = ACTIONS(1005), + [anon_sym_enum] = ACTIONS(1005), + [anon_sym_struct] = ACTIONS(1005), + [anon_sym_union] = ACTIONS(1005), + [anon_sym_if] = ACTIONS(1005), + [anon_sym_else] = ACTIONS(1005), + [anon_sym_switch] = ACTIONS(1005), + [anon_sym_while] = ACTIONS(1005), + [anon_sym_do] = ACTIONS(1005), + [anon_sym_for] = ACTIONS(1005), + [anon_sym_return] = ACTIONS(1005), + [anon_sym_break] = ACTIONS(1005), + [anon_sym_continue] = ACTIONS(1005), + [anon_sym_goto] = ACTIONS(1005), + [anon_sym_AMP] = ACTIONS(1003), + [anon_sym_BANG] = ACTIONS(1003), + [anon_sym_TILDE] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1005), + [anon_sym_PLUS] = ACTIONS(1005), + [anon_sym_DASH_DASH] = ACTIONS(1003), + [anon_sym_PLUS_PLUS] = ACTIONS(1003), + [anon_sym_sizeof] = ACTIONS(1005), + [sym_number_literal] = ACTIONS(1003), + [anon_sym_L_SQUOTE] = ACTIONS(1003), + [anon_sym_SQUOTE] = ACTIONS(1003), + [anon_sym_L_DQUOTE] = ACTIONS(1003), + [anon_sym_DQUOTE] = ACTIONS(1003), + [sym_true] = ACTIONS(1005), + [sym_false] = ACTIONS(1005), + [sym_null] = ACTIONS(1005), [sym_comment] = ACTIONS(3), }, [318] = { - [sym_parameter_list] = STATE(327), + [sym_identifier] = ACTIONS(1043), + [aux_sym_preproc_include_token1] = ACTIONS(1043), + [aux_sym_preproc_def_token1] = ACTIONS(1043), + [aux_sym_preproc_if_token1] = ACTIONS(1043), + [aux_sym_preproc_if_token2] = ACTIONS(1043), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1043), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1043), + [sym_preproc_directive] = ACTIONS(1043), + [anon_sym_SEMI] = ACTIONS(1041), + [anon_sym_typedef] = ACTIONS(1043), + [anon_sym_extern] = ACTIONS(1043), + [anon_sym___attribute__] = ACTIONS(1043), + [anon_sym_LPAREN2] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_STAR] = ACTIONS(1041), + [anon_sym_static] = ACTIONS(1043), + [anon_sym_auto] = ACTIONS(1043), + [anon_sym_register] = ACTIONS(1043), + [anon_sym_inline] = ACTIONS(1043), + [anon_sym_const] = ACTIONS(1043), + [anon_sym_volatile] = ACTIONS(1043), + [anon_sym_restrict] = ACTIONS(1043), + [anon_sym__Atomic] = ACTIONS(1043), + [anon_sym_signed] = ACTIONS(1043), + [anon_sym_unsigned] = ACTIONS(1043), + [anon_sym_long] = ACTIONS(1043), + [anon_sym_short] = ACTIONS(1043), + [sym_primitive_type] = ACTIONS(1043), + [anon_sym_enum] = ACTIONS(1043), + [anon_sym_struct] = ACTIONS(1043), + [anon_sym_union] = ACTIONS(1043), + [anon_sym_if] = ACTIONS(1043), + [anon_sym_else] = ACTIONS(1043), + [anon_sym_switch] = ACTIONS(1043), + [anon_sym_while] = ACTIONS(1043), + [anon_sym_do] = ACTIONS(1043), + [anon_sym_for] = ACTIONS(1043), + [anon_sym_return] = ACTIONS(1043), + [anon_sym_break] = ACTIONS(1043), + [anon_sym_continue] = ACTIONS(1043), + [anon_sym_goto] = ACTIONS(1043), + [anon_sym_AMP] = ACTIONS(1041), + [anon_sym_BANG] = ACTIONS(1041), + [anon_sym_TILDE] = ACTIONS(1041), + [anon_sym_DASH] = ACTIONS(1043), + [anon_sym_PLUS] = ACTIONS(1043), + [anon_sym_DASH_DASH] = ACTIONS(1041), + [anon_sym_PLUS_PLUS] = ACTIONS(1041), + [anon_sym_sizeof] = ACTIONS(1043), + [sym_number_literal] = ACTIONS(1041), + [anon_sym_L_SQUOTE] = ACTIONS(1041), + [anon_sym_SQUOTE] = ACTIONS(1041), + [anon_sym_L_DQUOTE] = ACTIONS(1041), + [anon_sym_DQUOTE] = ACTIONS(1041), + [sym_true] = ACTIONS(1043), + [sym_false] = ACTIONS(1043), + [sym_null] = ACTIONS(1043), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(652), - [anon_sym_COMMA] = ACTIONS(1503), - [anon_sym_COLON] = ACTIONS(1503), - [anon_sym_SEMI] = ACTIONS(1503), - [anon_sym_RPAREN] = ACTIONS(1503), - [anon_sym_LBRACK] = ACTIONS(1220), }, [319] = { - [sym_parameter_list] = STATE(327), + [sym_identifier] = ACTIONS(1017), + [aux_sym_preproc_include_token1] = ACTIONS(1017), + [aux_sym_preproc_def_token1] = ACTIONS(1017), + [aux_sym_preproc_if_token1] = ACTIONS(1017), + [aux_sym_preproc_if_token2] = ACTIONS(1017), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1017), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1017), + [sym_preproc_directive] = ACTIONS(1017), + [anon_sym_SEMI] = ACTIONS(1015), + [anon_sym_typedef] = ACTIONS(1017), + [anon_sym_extern] = ACTIONS(1017), + [anon_sym___attribute__] = ACTIONS(1017), + [anon_sym_LPAREN2] = ACTIONS(1015), + [anon_sym_LBRACE] = ACTIONS(1015), + [anon_sym_STAR] = ACTIONS(1015), + [anon_sym_static] = ACTIONS(1017), + [anon_sym_auto] = ACTIONS(1017), + [anon_sym_register] = ACTIONS(1017), + [anon_sym_inline] = ACTIONS(1017), + [anon_sym_const] = ACTIONS(1017), + [anon_sym_volatile] = ACTIONS(1017), + [anon_sym_restrict] = ACTIONS(1017), + [anon_sym__Atomic] = ACTIONS(1017), + [anon_sym_signed] = ACTIONS(1017), + [anon_sym_unsigned] = ACTIONS(1017), + [anon_sym_long] = ACTIONS(1017), + [anon_sym_short] = ACTIONS(1017), + [sym_primitive_type] = ACTIONS(1017), + [anon_sym_enum] = ACTIONS(1017), + [anon_sym_struct] = ACTIONS(1017), + [anon_sym_union] = ACTIONS(1017), + [anon_sym_if] = ACTIONS(1017), + [anon_sym_else] = ACTIONS(1017), + [anon_sym_switch] = ACTIONS(1017), + [anon_sym_while] = ACTIONS(1017), + [anon_sym_do] = ACTIONS(1017), + [anon_sym_for] = ACTIONS(1017), + [anon_sym_return] = ACTIONS(1017), + [anon_sym_break] = ACTIONS(1017), + [anon_sym_continue] = ACTIONS(1017), + [anon_sym_goto] = ACTIONS(1017), + [anon_sym_AMP] = ACTIONS(1015), + [anon_sym_BANG] = ACTIONS(1015), + [anon_sym_TILDE] = ACTIONS(1015), + [anon_sym_DASH] = ACTIONS(1017), + [anon_sym_PLUS] = ACTIONS(1017), + [anon_sym_DASH_DASH] = ACTIONS(1015), + [anon_sym_PLUS_PLUS] = ACTIONS(1015), + [anon_sym_sizeof] = ACTIONS(1017), + [sym_number_literal] = ACTIONS(1015), + [anon_sym_L_SQUOTE] = ACTIONS(1015), + [anon_sym_SQUOTE] = ACTIONS(1015), + [anon_sym_L_DQUOTE] = ACTIONS(1015), + [anon_sym_DQUOTE] = ACTIONS(1015), + [sym_true] = ACTIONS(1017), + [sym_false] = ACTIONS(1017), + [sym_null] = ACTIONS(1017), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(1505), - [anon_sym_LPAREN2] = ACTIONS(652), - [anon_sym_LBRACK] = ACTIONS(1220), }, [320] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_DASH_GT] = ACTIONS(281), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_SEMI] = ACTIONS(1507), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [sym_identifier] = ACTIONS(949), + [aux_sym_preproc_include_token1] = ACTIONS(949), + [aux_sym_preproc_def_token1] = ACTIONS(949), + [aux_sym_preproc_if_token1] = ACTIONS(949), + [aux_sym_preproc_ifdef_token1] = ACTIONS(949), + [aux_sym_preproc_ifdef_token2] = ACTIONS(949), + [sym_preproc_directive] = ACTIONS(949), + [anon_sym_SEMI] = ACTIONS(947), + [anon_sym_typedef] = ACTIONS(949), + [anon_sym_extern] = ACTIONS(949), + [anon_sym___attribute__] = ACTIONS(949), + [anon_sym_LPAREN2] = ACTIONS(947), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(947), + [anon_sym_STAR] = ACTIONS(947), + [anon_sym_static] = ACTIONS(949), + [anon_sym_auto] = ACTIONS(949), + [anon_sym_register] = ACTIONS(949), + [anon_sym_inline] = ACTIONS(949), + [anon_sym_const] = ACTIONS(949), + [anon_sym_volatile] = ACTIONS(949), + [anon_sym_restrict] = ACTIONS(949), + [anon_sym__Atomic] = ACTIONS(949), + [anon_sym_signed] = ACTIONS(949), + [anon_sym_unsigned] = ACTIONS(949), + [anon_sym_long] = ACTIONS(949), + [anon_sym_short] = ACTIONS(949), + [sym_primitive_type] = ACTIONS(949), + [anon_sym_enum] = ACTIONS(949), + [anon_sym_struct] = ACTIONS(949), + [anon_sym_union] = ACTIONS(949), + [anon_sym_if] = ACTIONS(949), + [anon_sym_else] = ACTIONS(949), + [anon_sym_switch] = ACTIONS(949), + [anon_sym_while] = ACTIONS(949), + [anon_sym_do] = ACTIONS(949), + [anon_sym_for] = ACTIONS(949), + [anon_sym_return] = ACTIONS(949), + [anon_sym_break] = ACTIONS(949), + [anon_sym_continue] = ACTIONS(949), + [anon_sym_goto] = ACTIONS(949), + [anon_sym_AMP] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_TILDE] = ACTIONS(947), + [anon_sym_DASH] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(949), + [anon_sym_DASH_DASH] = ACTIONS(947), + [anon_sym_PLUS_PLUS] = ACTIONS(947), + [anon_sym_sizeof] = ACTIONS(949), + [sym_number_literal] = ACTIONS(947), + [anon_sym_L_SQUOTE] = ACTIONS(947), + [anon_sym_SQUOTE] = ACTIONS(947), + [anon_sym_L_DQUOTE] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(947), + [sym_true] = ACTIONS(949), + [sym_false] = ACTIONS(949), + [sym_null] = ACTIONS(949), + [sym_comment] = ACTIONS(3), }, [321] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1509), - [anon_sym_union] = ACTIONS(1509), - [anon_sym_unsigned] = ACTIONS(1509), - [anon_sym_restrict] = ACTIONS(1509), - [anon_sym_short] = ACTIONS(1509), - [anon_sym_static] = ACTIONS(1509), - [anon_sym_volatile] = ACTIONS(1509), - [anon_sym_register] = ACTIONS(1509), - [anon_sym_extern] = ACTIONS(1509), - [anon_sym_struct] = ACTIONS(1509), - [sym_preproc_directive] = ACTIONS(1509), - [anon_sym_signed] = ACTIONS(1509), - [aux_sym_preproc_if_token1] = ACTIONS(1509), - [anon_sym_long] = ACTIONS(1509), - [anon_sym_enum] = ACTIONS(1509), - [anon_sym_const] = ACTIONS(1509), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(1511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1509), - [aux_sym_preproc_def_token1] = ACTIONS(1509), - [anon_sym__Atomic] = ACTIONS(1509), - [anon_sym_auto] = ACTIONS(1509), - [sym_primitive_type] = ACTIONS(1509), - [anon_sym_inline] = ACTIONS(1509), - [anon_sym___attribute__] = ACTIONS(1509), - [sym_identifier] = ACTIONS(1509), + [sym_identifier] = ACTIONS(933), + [aux_sym_preproc_include_token1] = ACTIONS(933), + [aux_sym_preproc_def_token1] = ACTIONS(933), + [aux_sym_preproc_if_token1] = ACTIONS(933), + [aux_sym_preproc_ifdef_token1] = ACTIONS(933), + [aux_sym_preproc_ifdef_token2] = ACTIONS(933), + [sym_preproc_directive] = ACTIONS(933), + [anon_sym_SEMI] = ACTIONS(931), + [anon_sym_typedef] = ACTIONS(933), + [anon_sym_extern] = ACTIONS(933), + [anon_sym___attribute__] = ACTIONS(933), + [anon_sym_LPAREN2] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(931), + [anon_sym_RBRACE] = ACTIONS(931), + [anon_sym_STAR] = ACTIONS(931), + [anon_sym_static] = ACTIONS(933), + [anon_sym_auto] = ACTIONS(933), + [anon_sym_register] = ACTIONS(933), + [anon_sym_inline] = ACTIONS(933), + [anon_sym_const] = ACTIONS(933), + [anon_sym_volatile] = ACTIONS(933), + [anon_sym_restrict] = ACTIONS(933), + [anon_sym__Atomic] = ACTIONS(933), + [anon_sym_signed] = ACTIONS(933), + [anon_sym_unsigned] = ACTIONS(933), + [anon_sym_long] = ACTIONS(933), + [anon_sym_short] = ACTIONS(933), + [sym_primitive_type] = ACTIONS(933), + [anon_sym_enum] = ACTIONS(933), + [anon_sym_struct] = ACTIONS(933), + [anon_sym_union] = ACTIONS(933), + [anon_sym_if] = ACTIONS(933), + [anon_sym_else] = ACTIONS(933), + [anon_sym_switch] = ACTIONS(933), + [anon_sym_while] = ACTIONS(933), + [anon_sym_do] = ACTIONS(933), + [anon_sym_for] = ACTIONS(933), + [anon_sym_return] = ACTIONS(933), + [anon_sym_break] = ACTIONS(933), + [anon_sym_continue] = ACTIONS(933), + [anon_sym_goto] = ACTIONS(933), + [anon_sym_AMP] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_TILDE] = ACTIONS(931), + [anon_sym_DASH] = ACTIONS(933), + [anon_sym_PLUS] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_sizeof] = ACTIONS(933), + [sym_number_literal] = ACTIONS(931), + [anon_sym_L_SQUOTE] = ACTIONS(931), + [anon_sym_SQUOTE] = ACTIONS(931), + [anon_sym_L_DQUOTE] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(931), + [sym_true] = ACTIONS(933), + [sym_false] = ACTIONS(933), + [sym_null] = ACTIONS(933), + [sym_comment] = ACTIONS(3), }, [322] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1513), - [anon_sym_union] = ACTIONS(1513), - [anon_sym_unsigned] = ACTIONS(1513), - [anon_sym_restrict] = ACTIONS(1513), - [anon_sym_short] = ACTIONS(1513), - [anon_sym_static] = ACTIONS(1513), - [anon_sym_volatile] = ACTIONS(1513), - [anon_sym_register] = ACTIONS(1513), - [anon_sym_extern] = ACTIONS(1513), - [anon_sym_struct] = ACTIONS(1513), - [sym_preproc_directive] = ACTIONS(1513), - [anon_sym_signed] = ACTIONS(1513), - [aux_sym_preproc_if_token1] = ACTIONS(1513), - [anon_sym_long] = ACTIONS(1513), - [anon_sym_enum] = ACTIONS(1513), - [anon_sym_const] = ACTIONS(1513), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(1515), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1513), - [aux_sym_preproc_def_token1] = ACTIONS(1513), - [anon_sym__Atomic] = ACTIONS(1513), - [anon_sym_auto] = ACTIONS(1513), - [sym_primitive_type] = ACTIONS(1513), - [anon_sym_inline] = ACTIONS(1513), - [anon_sym___attribute__] = ACTIONS(1513), - [sym_identifier] = ACTIONS(1513), + [sym_identifier] = ACTIONS(957), + [aux_sym_preproc_include_token1] = ACTIONS(957), + [aux_sym_preproc_def_token1] = ACTIONS(957), + [aux_sym_preproc_if_token1] = ACTIONS(957), + [aux_sym_preproc_ifdef_token1] = ACTIONS(957), + [aux_sym_preproc_ifdef_token2] = ACTIONS(957), + [sym_preproc_directive] = ACTIONS(957), + [anon_sym_SEMI] = ACTIONS(955), + [anon_sym_typedef] = ACTIONS(957), + [anon_sym_extern] = ACTIONS(957), + [anon_sym___attribute__] = ACTIONS(957), + [anon_sym_LPAREN2] = ACTIONS(955), + [anon_sym_LBRACE] = ACTIONS(955), + [anon_sym_RBRACE] = ACTIONS(955), + [anon_sym_STAR] = ACTIONS(955), + [anon_sym_static] = ACTIONS(957), + [anon_sym_auto] = ACTIONS(957), + [anon_sym_register] = ACTIONS(957), + [anon_sym_inline] = ACTIONS(957), + [anon_sym_const] = ACTIONS(957), + [anon_sym_volatile] = ACTIONS(957), + [anon_sym_restrict] = ACTIONS(957), + [anon_sym__Atomic] = ACTIONS(957), + [anon_sym_signed] = ACTIONS(957), + [anon_sym_unsigned] = ACTIONS(957), + [anon_sym_long] = ACTIONS(957), + [anon_sym_short] = ACTIONS(957), + [sym_primitive_type] = ACTIONS(957), + [anon_sym_enum] = ACTIONS(957), + [anon_sym_struct] = ACTIONS(957), + [anon_sym_union] = ACTIONS(957), + [anon_sym_if] = ACTIONS(957), + [anon_sym_else] = ACTIONS(957), + [anon_sym_switch] = ACTIONS(957), + [anon_sym_while] = ACTIONS(957), + [anon_sym_do] = ACTIONS(957), + [anon_sym_for] = ACTIONS(957), + [anon_sym_return] = ACTIONS(957), + [anon_sym_break] = ACTIONS(957), + [anon_sym_continue] = ACTIONS(957), + [anon_sym_goto] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(955), + [anon_sym_BANG] = ACTIONS(955), + [anon_sym_TILDE] = ACTIONS(955), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_DASH_DASH] = ACTIONS(955), + [anon_sym_PLUS_PLUS] = ACTIONS(955), + [anon_sym_sizeof] = ACTIONS(957), + [sym_number_literal] = ACTIONS(955), + [anon_sym_L_SQUOTE] = ACTIONS(955), + [anon_sym_SQUOTE] = ACTIONS(955), + [anon_sym_L_DQUOTE] = ACTIONS(955), + [anon_sym_DQUOTE] = ACTIONS(955), + [sym_true] = ACTIONS(957), + [sym_false] = ACTIONS(957), + [sym_null] = ACTIONS(957), + [sym_comment] = ACTIONS(3), }, [323] = { - [sym_parenthesized_field_declarator] = STATE(412), - [sym_function_field_declarator] = STATE(412), - [sym_pointer_field_declarator] = STATE(412), - [sym_array_field_declarator] = STATE(412), - [sym__field_declarator] = STATE(412), - [anon_sym_STAR] = ACTIONS(806), - [anon_sym_LPAREN2] = ACTIONS(808), - [sym_identifier] = ACTIONS(810), + [sym_identifier] = ACTIONS(977), + [aux_sym_preproc_include_token1] = ACTIONS(977), + [aux_sym_preproc_def_token1] = ACTIONS(977), + [aux_sym_preproc_if_token1] = ACTIONS(977), + [aux_sym_preproc_ifdef_token1] = ACTIONS(977), + [aux_sym_preproc_ifdef_token2] = ACTIONS(977), + [sym_preproc_directive] = ACTIONS(977), + [anon_sym_SEMI] = ACTIONS(975), + [anon_sym_typedef] = ACTIONS(977), + [anon_sym_extern] = ACTIONS(977), + [anon_sym___attribute__] = ACTIONS(977), + [anon_sym_LPAREN2] = ACTIONS(975), + [anon_sym_LBRACE] = ACTIONS(975), + [anon_sym_RBRACE] = ACTIONS(975), + [anon_sym_STAR] = ACTIONS(975), + [anon_sym_static] = ACTIONS(977), + [anon_sym_auto] = ACTIONS(977), + [anon_sym_register] = ACTIONS(977), + [anon_sym_inline] = ACTIONS(977), + [anon_sym_const] = ACTIONS(977), + [anon_sym_volatile] = ACTIONS(977), + [anon_sym_restrict] = ACTIONS(977), + [anon_sym__Atomic] = ACTIONS(977), + [anon_sym_signed] = ACTIONS(977), + [anon_sym_unsigned] = ACTIONS(977), + [anon_sym_long] = ACTIONS(977), + [anon_sym_short] = ACTIONS(977), + [sym_primitive_type] = ACTIONS(977), + [anon_sym_enum] = ACTIONS(977), + [anon_sym_struct] = ACTIONS(977), + [anon_sym_union] = ACTIONS(977), + [anon_sym_if] = ACTIONS(977), + [anon_sym_else] = ACTIONS(977), + [anon_sym_switch] = ACTIONS(977), + [anon_sym_while] = ACTIONS(977), + [anon_sym_do] = ACTIONS(977), + [anon_sym_for] = ACTIONS(977), + [anon_sym_return] = ACTIONS(977), + [anon_sym_break] = ACTIONS(977), + [anon_sym_continue] = ACTIONS(977), + [anon_sym_goto] = ACTIONS(977), + [anon_sym_AMP] = ACTIONS(975), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(977), + [anon_sym_PLUS] = ACTIONS(977), + [anon_sym_DASH_DASH] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(975), + [anon_sym_sizeof] = ACTIONS(977), + [sym_number_literal] = ACTIONS(975), + [anon_sym_L_SQUOTE] = ACTIONS(975), + [anon_sym_SQUOTE] = ACTIONS(975), + [anon_sym_L_DQUOTE] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(975), + [sym_true] = ACTIONS(977), + [sym_false] = ACTIONS(977), + [sym_null] = ACTIONS(977), [sym_comment] = ACTIONS(3), }, [324] = { - [sym__expression] = STATE(415), - [sym_binary_expression] = STATE(415), - [sym_update_expression] = STATE(415), - [sym_call_expression] = STATE(36), - [sym_type_qualifier] = STATE(416), - [sym_conditional_expression] = STATE(415), - [sym_assignment_expression] = STATE(415), - [sym_cast_expression] = STATE(415), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(415), - [sym_char_literal] = STATE(415), - [aux_sym_type_definition_repeat1] = STATE(416), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(415), - [sym_sizeof_expression] = STATE(415), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(415), - [sym_string_literal] = STATE(41), - [sym_true] = ACTIONS(1517), - [anon_sym_restrict] = ACTIONS(7), - [sym_null] = ACTIONS(1517), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_const] = ACTIONS(7), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_DASH_DASH] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(7), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(1519), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(1521), - [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_identifier] = ACTIONS(949), + [aux_sym_preproc_include_token1] = ACTIONS(949), + [aux_sym_preproc_def_token1] = ACTIONS(949), + [aux_sym_preproc_if_token1] = ACTIONS(949), + [aux_sym_preproc_if_token2] = ACTIONS(949), + [aux_sym_preproc_ifdef_token1] = ACTIONS(949), + [aux_sym_preproc_ifdef_token2] = ACTIONS(949), + [sym_preproc_directive] = ACTIONS(949), + [anon_sym_SEMI] = ACTIONS(947), + [anon_sym_typedef] = ACTIONS(949), + [anon_sym_extern] = ACTIONS(949), + [anon_sym___attribute__] = ACTIONS(949), + [anon_sym_LPAREN2] = ACTIONS(947), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_STAR] = ACTIONS(947), + [anon_sym_static] = ACTIONS(949), + [anon_sym_auto] = ACTIONS(949), + [anon_sym_register] = ACTIONS(949), + [anon_sym_inline] = ACTIONS(949), + [anon_sym_const] = ACTIONS(949), + [anon_sym_volatile] = ACTIONS(949), + [anon_sym_restrict] = ACTIONS(949), + [anon_sym__Atomic] = ACTIONS(949), + [anon_sym_signed] = ACTIONS(949), + [anon_sym_unsigned] = ACTIONS(949), + [anon_sym_long] = ACTIONS(949), + [anon_sym_short] = ACTIONS(949), + [sym_primitive_type] = ACTIONS(949), + [anon_sym_enum] = ACTIONS(949), + [anon_sym_struct] = ACTIONS(949), + [anon_sym_union] = ACTIONS(949), + [anon_sym_if] = ACTIONS(949), + [anon_sym_else] = ACTIONS(949), + [anon_sym_switch] = ACTIONS(949), + [anon_sym_while] = ACTIONS(949), + [anon_sym_do] = ACTIONS(949), + [anon_sym_for] = ACTIONS(949), + [anon_sym_return] = ACTIONS(949), + [anon_sym_break] = ACTIONS(949), + [anon_sym_continue] = ACTIONS(949), + [anon_sym_goto] = ACTIONS(949), + [anon_sym_AMP] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_TILDE] = ACTIONS(947), + [anon_sym_DASH] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(949), + [anon_sym_DASH_DASH] = ACTIONS(947), + [anon_sym_PLUS_PLUS] = ACTIONS(947), + [anon_sym_sizeof] = ACTIONS(949), + [sym_number_literal] = ACTIONS(947), + [anon_sym_L_SQUOTE] = ACTIONS(947), + [anon_sym_SQUOTE] = ACTIONS(947), + [anon_sym_L_DQUOTE] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(947), + [sym_true] = ACTIONS(949), + [sym_false] = ACTIONS(949), + [sym_null] = ACTIONS(949), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(1517), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_RBRACK] = ACTIONS(1523), - [anon_sym_sizeof] = ACTIONS(33), }, [325] = { + [sym_identifier] = ACTIONS(945), + [aux_sym_preproc_include_token1] = ACTIONS(945), + [aux_sym_preproc_def_token1] = ACTIONS(945), + [aux_sym_preproc_if_token1] = ACTIONS(945), + [aux_sym_preproc_if_token2] = ACTIONS(945), + [aux_sym_preproc_ifdef_token1] = ACTIONS(945), + [aux_sym_preproc_ifdef_token2] = ACTIONS(945), + [sym_preproc_directive] = ACTIONS(945), + [anon_sym_SEMI] = ACTIONS(943), + [anon_sym_typedef] = ACTIONS(945), + [anon_sym_extern] = ACTIONS(945), + [anon_sym___attribute__] = ACTIONS(945), + [anon_sym_LPAREN2] = ACTIONS(943), + [anon_sym_LBRACE] = ACTIONS(943), + [anon_sym_STAR] = ACTIONS(943), + [anon_sym_static] = ACTIONS(945), + [anon_sym_auto] = ACTIONS(945), + [anon_sym_register] = ACTIONS(945), + [anon_sym_inline] = ACTIONS(945), + [anon_sym_const] = ACTIONS(945), + [anon_sym_volatile] = ACTIONS(945), + [anon_sym_restrict] = ACTIONS(945), + [anon_sym__Atomic] = ACTIONS(945), + [anon_sym_signed] = ACTIONS(945), + [anon_sym_unsigned] = ACTIONS(945), + [anon_sym_long] = ACTIONS(945), + [anon_sym_short] = ACTIONS(945), + [sym_primitive_type] = ACTIONS(945), + [anon_sym_enum] = ACTIONS(945), + [anon_sym_struct] = ACTIONS(945), + [anon_sym_union] = ACTIONS(945), + [anon_sym_if] = ACTIONS(945), + [anon_sym_else] = ACTIONS(945), + [anon_sym_switch] = ACTIONS(945), + [anon_sym_while] = ACTIONS(945), + [anon_sym_do] = ACTIONS(945), + [anon_sym_for] = ACTIONS(945), + [anon_sym_return] = ACTIONS(945), + [anon_sym_break] = ACTIONS(945), + [anon_sym_continue] = ACTIONS(945), + [anon_sym_goto] = ACTIONS(945), + [anon_sym_AMP] = ACTIONS(943), + [anon_sym_BANG] = ACTIONS(943), + [anon_sym_TILDE] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(945), + [anon_sym_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(943), + [anon_sym_sizeof] = ACTIONS(945), + [sym_number_literal] = ACTIONS(943), + [anon_sym_L_SQUOTE] = ACTIONS(943), + [anon_sym_SQUOTE] = ACTIONS(943), + [anon_sym_L_DQUOTE] = ACTIONS(943), + [anon_sym_DQUOTE] = ACTIONS(943), + [sym_true] = ACTIONS(945), + [sym_false] = ACTIONS(945), + [sym_null] = ACTIONS(945), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1525), }, [326] = { - [sym_bitfield_clause] = STATE(418), - [aux_sym_field_declaration_repeat1] = STATE(419), + [sym_identifier] = ACTIONS(981), + [aux_sym_preproc_include_token1] = ACTIONS(981), + [aux_sym_preproc_def_token1] = ACTIONS(981), + [aux_sym_preproc_if_token1] = ACTIONS(981), + [aux_sym_preproc_ifdef_token1] = ACTIONS(981), + [aux_sym_preproc_ifdef_token2] = ACTIONS(981), + [sym_preproc_directive] = ACTIONS(981), + [anon_sym_SEMI] = ACTIONS(979), + [anon_sym_typedef] = ACTIONS(981), + [anon_sym_extern] = ACTIONS(981), + [anon_sym___attribute__] = ACTIONS(981), + [anon_sym_LPAREN2] = ACTIONS(979), + [anon_sym_LBRACE] = ACTIONS(979), + [anon_sym_RBRACE] = ACTIONS(979), + [anon_sym_STAR] = ACTIONS(979), + [anon_sym_static] = ACTIONS(981), + [anon_sym_auto] = ACTIONS(981), + [anon_sym_register] = ACTIONS(981), + [anon_sym_inline] = ACTIONS(981), + [anon_sym_const] = ACTIONS(981), + [anon_sym_volatile] = ACTIONS(981), + [anon_sym_restrict] = ACTIONS(981), + [anon_sym__Atomic] = ACTIONS(981), + [anon_sym_signed] = ACTIONS(981), + [anon_sym_unsigned] = ACTIONS(981), + [anon_sym_long] = ACTIONS(981), + [anon_sym_short] = ACTIONS(981), + [sym_primitive_type] = ACTIONS(981), + [anon_sym_enum] = ACTIONS(981), + [anon_sym_struct] = ACTIONS(981), + [anon_sym_union] = ACTIONS(981), + [anon_sym_if] = ACTIONS(981), + [anon_sym_else] = ACTIONS(981), + [anon_sym_switch] = ACTIONS(981), + [anon_sym_while] = ACTIONS(981), + [anon_sym_do] = ACTIONS(981), + [anon_sym_for] = ACTIONS(981), + [anon_sym_return] = ACTIONS(981), + [anon_sym_break] = ACTIONS(981), + [anon_sym_continue] = ACTIONS(981), + [anon_sym_goto] = ACTIONS(981), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_BANG] = ACTIONS(979), + [anon_sym_TILDE] = ACTIONS(979), + [anon_sym_DASH] = ACTIONS(981), + [anon_sym_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(979), + [anon_sym_PLUS_PLUS] = ACTIONS(979), + [anon_sym_sizeof] = ACTIONS(981), + [sym_number_literal] = ACTIONS(979), + [anon_sym_L_SQUOTE] = ACTIONS(979), + [anon_sym_SQUOTE] = ACTIONS(979), + [anon_sym_L_DQUOTE] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(979), + [sym_true] = ACTIONS(981), + [sym_false] = ACTIONS(981), + [sym_null] = ACTIONS(981), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1222), - [anon_sym_COLON] = ACTIONS(812), - [anon_sym_SEMI] = ACTIONS(1525), }, [327] = { + [sym_identifier] = ACTIONS(973), + [aux_sym_preproc_include_token1] = ACTIONS(973), + [aux_sym_preproc_def_token1] = ACTIONS(973), + [aux_sym_preproc_if_token1] = ACTIONS(973), + [aux_sym_preproc_if_token2] = ACTIONS(973), + [aux_sym_preproc_ifdef_token1] = ACTIONS(973), + [aux_sym_preproc_ifdef_token2] = ACTIONS(973), + [sym_preproc_directive] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(971), + [anon_sym_typedef] = ACTIONS(973), + [anon_sym_extern] = ACTIONS(973), + [anon_sym___attribute__] = ACTIONS(973), + [anon_sym_LPAREN2] = ACTIONS(971), + [anon_sym_LBRACE] = ACTIONS(971), + [anon_sym_STAR] = ACTIONS(971), + [anon_sym_static] = ACTIONS(973), + [anon_sym_auto] = ACTIONS(973), + [anon_sym_register] = ACTIONS(973), + [anon_sym_inline] = ACTIONS(973), + [anon_sym_const] = ACTIONS(973), + [anon_sym_volatile] = ACTIONS(973), + [anon_sym_restrict] = ACTIONS(973), + [anon_sym__Atomic] = ACTIONS(973), + [anon_sym_signed] = ACTIONS(973), + [anon_sym_unsigned] = ACTIONS(973), + [anon_sym_long] = ACTIONS(973), + [anon_sym_short] = ACTIONS(973), + [sym_primitive_type] = ACTIONS(973), + [anon_sym_enum] = ACTIONS(973), + [anon_sym_struct] = ACTIONS(973), + [anon_sym_union] = ACTIONS(973), + [anon_sym_if] = ACTIONS(973), + [anon_sym_else] = ACTIONS(973), + [anon_sym_switch] = ACTIONS(973), + [anon_sym_while] = ACTIONS(973), + [anon_sym_do] = ACTIONS(973), + [anon_sym_for] = ACTIONS(973), + [anon_sym_return] = ACTIONS(973), + [anon_sym_break] = ACTIONS(973), + [anon_sym_continue] = ACTIONS(973), + [anon_sym_goto] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(971), + [anon_sym_BANG] = ACTIONS(971), + [anon_sym_TILDE] = ACTIONS(971), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_PLUS] = ACTIONS(973), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_sizeof] = ACTIONS(973), + [sym_number_literal] = ACTIONS(971), + [anon_sym_L_SQUOTE] = ACTIONS(971), + [anon_sym_SQUOTE] = ACTIONS(971), + [anon_sym_L_DQUOTE] = ACTIONS(971), + [anon_sym_DQUOTE] = ACTIONS(971), + [sym_true] = ACTIONS(973), + [sym_false] = ACTIONS(973), + [sym_null] = ACTIONS(973), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(1527), - [anon_sym_COMMA] = ACTIONS(1527), - [anon_sym_COLON] = ACTIONS(1527), - [anon_sym_SEMI] = ACTIONS(1527), - [anon_sym_RPAREN] = ACTIONS(1527), - [anon_sym_LBRACK] = ACTIONS(1527), }, - [328] = { - [aux_sym_preproc_if_token2] = ACTIONS(1529), - [sym_comment] = ACTIONS(3), - }, - [329] = { - [sym_if_statement] = STATE(636), - [sym_preproc_def] = STATE(636), - [sym_preproc_function_def] = STATE(636), - [sym__expression] = STATE(951), - [sym_comma_expression] = STATE(952), - [sym_binary_expression] = STATE(951), - [sym_update_expression] = STATE(951), - [sym_call_expression] = STATE(36), - [sym_function_definition] = STATE(636), - [sym_declaration] = STATE(636), - [sym_do_statement] = STATE(636), - [sym_for_statement] = STATE(636), - [sym_preproc_else] = STATE(420), - [sym_preproc_elif] = STATE(420), - [aux_sym_translation_unit_repeat1] = STATE(636), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(953), - [sym_union_specifier] = STATE(953), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_expression_statement] = STATE(636), - [sym_switch_statement] = STATE(636), - [sym_return_statement] = STATE(636), - [sym_preproc_call] = STATE(636), - [sym_conditional_expression] = STATE(951), - [sym_assignment_expression] = STATE(951), - [sym_cast_expression] = STATE(951), - [sym__declaration_specifiers] = STATE(1172), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(951), - [sym_type_definition] = STATE(636), - [sym_char_literal] = STATE(951), - [sym_break_statement] = STATE(636), - [sym__empty_declaration] = STATE(636), - [sym_sized_type_specifier] = STATE(953), - [sym_enum_specifier] = STATE(953), - [sym_labeled_statement] = STATE(636), - [sym_preproc_include] = STATE(636), - [sym_preproc_if] = STATE(636), - [sym_preproc_ifdef] = STATE(636), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(951), - [sym_sizeof_expression] = STATE(951), - [sym_attribute_specifier] = STATE(43), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_linkage_specification] = STATE(636), - [sym_concatenated_string] = STATE(951), - [sym_string_literal] = STATE(41), - [sym_macro_type_specifier] = STATE(953), - [sym_while_statement] = STATE(636), - [sym_storage_class_specifier] = STATE(43), - [sym_compound_statement] = STATE(636), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_continue_statement] = STATE(636), - [sym_struct_specifier] = STATE(953), - [sym_goto_statement] = STATE(636), - [sym_true] = ACTIONS(378), - [anon_sym_restrict] = ACTIONS(7), - [sym_null] = ACTIONS(378), - [anon_sym_goto] = ACTIONS(380), - [aux_sym_preproc_if_token2] = ACTIONS(1531), - [anon_sym_const] = ACTIONS(7), - [anon_sym_typedef] = ACTIONS(384), - [anon_sym_DASH_DASH] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(7), - [sym_identifier] = ACTIONS(386), - [aux_sym_preproc_ifdef_token1] = ACTIONS(388), - [sym_number_literal] = ACTIONS(390), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_extern] = ACTIONS(392), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_struct] = ACTIONS(25), - [anon_sym_signed] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(27), - [anon_sym_while] = ACTIONS(394), - [aux_sym_preproc_ifdef_token2] = ACTIONS(388), - [aux_sym_preproc_elif_token1] = ACTIONS(396), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_sizeof] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(398), - [anon_sym_union] = ACTIONS(37), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_short] = ACTIONS(27), - [anon_sym_do] = ACTIONS(400), - [aux_sym_preproc_else_token1] = ACTIONS(402), - [sym_preproc_directive] = ACTIONS(404), - [anon_sym_AMP] = ACTIONS(43), - [aux_sym_preproc_if_token1] = ACTIONS(406), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(408), - [anon_sym_for] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_BANG] = ACTIONS(47), - [aux_sym_preproc_include_token1] = ACTIONS(414), - [anon_sym_DASH] = ACTIONS(61), - [anon_sym_static] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_register] = ACTIONS(63), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(416), - [anon_sym_switch] = ACTIONS(418), - [anon_sym_enum] = ACTIONS(69), - [sym_false] = ACTIONS(378), - [anon_sym_return] = ACTIONS(420), - [anon_sym_continue] = ACTIONS(422), - [anon_sym_SEMI] = ACTIONS(424), - [aux_sym_preproc_def_token1] = ACTIONS(426), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_auto] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), + [328] = { + [sym_identifier] = ACTIONS(993), + [aux_sym_preproc_include_token1] = ACTIONS(993), + [aux_sym_preproc_def_token1] = ACTIONS(993), + [aux_sym_preproc_if_token1] = ACTIONS(993), + [aux_sym_preproc_ifdef_token1] = ACTIONS(993), + [aux_sym_preproc_ifdef_token2] = ACTIONS(993), + [sym_preproc_directive] = ACTIONS(993), + [anon_sym_SEMI] = ACTIONS(991), + [anon_sym_typedef] = ACTIONS(993), + [anon_sym_extern] = ACTIONS(993), + [anon_sym___attribute__] = ACTIONS(993), + [anon_sym_LPAREN2] = ACTIONS(991), + [anon_sym_LBRACE] = ACTIONS(991), + [anon_sym_RBRACE] = ACTIONS(991), + [anon_sym_STAR] = ACTIONS(991), + [anon_sym_static] = ACTIONS(993), + [anon_sym_auto] = ACTIONS(993), + [anon_sym_register] = ACTIONS(993), + [anon_sym_inline] = ACTIONS(993), + [anon_sym_const] = ACTIONS(993), + [anon_sym_volatile] = ACTIONS(993), + [anon_sym_restrict] = ACTIONS(993), + [anon_sym__Atomic] = ACTIONS(993), + [anon_sym_signed] = ACTIONS(993), + [anon_sym_unsigned] = ACTIONS(993), + [anon_sym_long] = ACTIONS(993), + [anon_sym_short] = ACTIONS(993), + [sym_primitive_type] = ACTIONS(993), + [anon_sym_enum] = ACTIONS(993), + [anon_sym_struct] = ACTIONS(993), + [anon_sym_union] = ACTIONS(993), + [anon_sym_if] = ACTIONS(993), + [anon_sym_else] = ACTIONS(993), + [anon_sym_switch] = ACTIONS(993), + [anon_sym_while] = ACTIONS(993), + [anon_sym_do] = ACTIONS(993), + [anon_sym_for] = ACTIONS(993), + [anon_sym_return] = ACTIONS(993), + [anon_sym_break] = ACTIONS(993), + [anon_sym_continue] = ACTIONS(993), + [anon_sym_goto] = ACTIONS(993), + [anon_sym_AMP] = ACTIONS(991), + [anon_sym_BANG] = ACTIONS(991), + [anon_sym_TILDE] = ACTIONS(991), + [anon_sym_DASH] = ACTIONS(993), + [anon_sym_PLUS] = ACTIONS(993), + [anon_sym_DASH_DASH] = ACTIONS(991), + [anon_sym_PLUS_PLUS] = ACTIONS(991), + [anon_sym_sizeof] = ACTIONS(993), + [sym_number_literal] = ACTIONS(991), + [anon_sym_L_SQUOTE] = ACTIONS(991), + [anon_sym_SQUOTE] = ACTIONS(991), + [anon_sym_L_DQUOTE] = ACTIONS(991), + [anon_sym_DQUOTE] = ACTIONS(991), + [sym_true] = ACTIONS(993), + [sym_false] = ACTIONS(993), + [sym_null] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + }, + [329] = { + [sym_identifier] = ACTIONS(1083), + [aux_sym_preproc_include_token1] = ACTIONS(1083), + [aux_sym_preproc_def_token1] = ACTIONS(1083), + [aux_sym_preproc_if_token1] = ACTIONS(1083), + [aux_sym_preproc_if_token2] = ACTIONS(1083), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1083), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1083), + [sym_preproc_directive] = ACTIONS(1083), + [anon_sym_SEMI] = ACTIONS(1081), + [anon_sym_typedef] = ACTIONS(1083), + [anon_sym_extern] = ACTIONS(1083), + [anon_sym___attribute__] = ACTIONS(1083), + [anon_sym_LPAREN2] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1081), + [anon_sym_STAR] = ACTIONS(1081), + [anon_sym_static] = ACTIONS(1083), + [anon_sym_auto] = ACTIONS(1083), + [anon_sym_register] = ACTIONS(1083), + [anon_sym_inline] = ACTIONS(1083), + [anon_sym_const] = ACTIONS(1083), + [anon_sym_volatile] = ACTIONS(1083), + [anon_sym_restrict] = ACTIONS(1083), + [anon_sym__Atomic] = ACTIONS(1083), + [anon_sym_signed] = ACTIONS(1083), + [anon_sym_unsigned] = ACTIONS(1083), + [anon_sym_long] = ACTIONS(1083), + [anon_sym_short] = ACTIONS(1083), + [sym_primitive_type] = ACTIONS(1083), + [anon_sym_enum] = ACTIONS(1083), + [anon_sym_struct] = ACTIONS(1083), + [anon_sym_union] = ACTIONS(1083), + [anon_sym_if] = ACTIONS(1083), + [anon_sym_switch] = ACTIONS(1083), + [anon_sym_while] = ACTIONS(1083), + [anon_sym_do] = ACTIONS(1083), + [anon_sym_for] = ACTIONS(1083), + [anon_sym_return] = ACTIONS(1083), + [anon_sym_break] = ACTIONS(1083), + [anon_sym_continue] = ACTIONS(1083), + [anon_sym_goto] = ACTIONS(1083), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_BANG] = ACTIONS(1081), + [anon_sym_TILDE] = ACTIONS(1081), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH_DASH] = ACTIONS(1081), + [anon_sym_PLUS_PLUS] = ACTIONS(1081), + [anon_sym_sizeof] = ACTIONS(1083), + [sym_number_literal] = ACTIONS(1081), + [anon_sym_L_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_L_DQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE] = ACTIONS(1081), + [sym_true] = ACTIONS(1083), + [sym_false] = ACTIONS(1083), + [sym_null] = ACTIONS(1083), + [sym_comment] = ACTIONS(3), }, [330] = { - [sym_true] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym__Atomic] = ACTIONS(1533), - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_sizeof] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_AMP] = ACTIONS(1535), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_LPAREN2] = ACTIONS(1535), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1535), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_DQUOTE] = ACTIONS(1535), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [ts_builtin_sym_end] = ACTIONS(1535), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_auto] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), + [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_SEMI] = ACTIONS(1171), + [anon_sym_typedef] = ACTIONS(1169), + [anon_sym_extern] = ACTIONS(1169), + [anon_sym___attribute__] = ACTIONS(1169), + [anon_sym_LPAREN2] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_static] = ACTIONS(1169), + [anon_sym_auto] = ACTIONS(1169), + [anon_sym_register] = ACTIONS(1169), + [anon_sym_inline] = ACTIONS(1169), + [anon_sym_const] = ACTIONS(1169), + [anon_sym_volatile] = ACTIONS(1169), + [anon_sym_restrict] = ACTIONS(1169), + [anon_sym__Atomic] = ACTIONS(1169), + [anon_sym_signed] = ACTIONS(1169), + [anon_sym_unsigned] = ACTIONS(1169), + [anon_sym_long] = ACTIONS(1169), + [anon_sym_short] = 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_switch] = 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_AMP] = ACTIONS(1171), + [anon_sym_BANG] = ACTIONS(1171), + [anon_sym_TILDE] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1169), + [anon_sym_DASH_DASH] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_sizeof] = ACTIONS(1169), + [sym_number_literal] = ACTIONS(1171), + [anon_sym_L_SQUOTE] = ACTIONS(1171), + [anon_sym_SQUOTE] = ACTIONS(1171), + [anon_sym_L_DQUOTE] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym_true] = ACTIONS(1169), + [sym_false] = ACTIONS(1169), + [sym_null] = ACTIONS(1169), + [sym_comment] = ACTIONS(3), }, [331] = { - [sym_char_literal] = STATE(421), - [sym__expression] = STATE(421), - [sym_binary_expression] = STATE(421), - [sym_update_expression] = STATE(421), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(421), - [sym_sizeof_expression] = STATE(421), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(421), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(421), - [sym_assignment_expression] = STATE(421), - [sym_cast_expression] = STATE(421), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(421), - [anon_sym_BANG] = ACTIONS(47), - [sym_true] = ACTIONS(1537), - [sym_null] = ACTIONS(1537), - [sym_number_literal] = ACTIONS(1539), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(61), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_AMP] = ACTIONS(43), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(1537), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_identifier] = ACTIONS(1145), + [aux_sym_preproc_include_token1] = ACTIONS(1145), + [aux_sym_preproc_def_token1] = ACTIONS(1145), + [aux_sym_preproc_if_token1] = ACTIONS(1145), + [aux_sym_preproc_if_token2] = ACTIONS(1145), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1145), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1145), + [sym_preproc_directive] = ACTIONS(1145), + [anon_sym_SEMI] = ACTIONS(1147), + [anon_sym_typedef] = ACTIONS(1145), + [anon_sym_extern] = ACTIONS(1145), + [anon_sym___attribute__] = ACTIONS(1145), + [anon_sym_LPAREN2] = ACTIONS(1147), + [anon_sym_LBRACE] = ACTIONS(1147), + [anon_sym_STAR] = ACTIONS(1147), + [anon_sym_static] = ACTIONS(1145), + [anon_sym_auto] = ACTIONS(1145), + [anon_sym_register] = ACTIONS(1145), + [anon_sym_inline] = ACTIONS(1145), + [anon_sym_const] = ACTIONS(1145), + [anon_sym_volatile] = ACTIONS(1145), + [anon_sym_restrict] = ACTIONS(1145), + [anon_sym__Atomic] = ACTIONS(1145), + [anon_sym_signed] = ACTIONS(1145), + [anon_sym_unsigned] = ACTIONS(1145), + [anon_sym_long] = ACTIONS(1145), + [anon_sym_short] = ACTIONS(1145), + [sym_primitive_type] = ACTIONS(1145), + [anon_sym_enum] = ACTIONS(1145), + [anon_sym_struct] = ACTIONS(1145), + [anon_sym_union] = ACTIONS(1145), + [anon_sym_if] = ACTIONS(1145), + [anon_sym_switch] = ACTIONS(1145), + [anon_sym_while] = ACTIONS(1145), + [anon_sym_do] = ACTIONS(1145), + [anon_sym_for] = ACTIONS(1145), + [anon_sym_return] = ACTIONS(1145), + [anon_sym_break] = ACTIONS(1145), + [anon_sym_continue] = ACTIONS(1145), + [anon_sym_goto] = ACTIONS(1145), + [anon_sym_AMP] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(1147), + [anon_sym_TILDE] = ACTIONS(1147), + [anon_sym_DASH] = ACTIONS(1145), + [anon_sym_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1147), + [anon_sym_PLUS_PLUS] = ACTIONS(1147), + [anon_sym_sizeof] = ACTIONS(1145), + [sym_number_literal] = ACTIONS(1147), + [anon_sym_L_SQUOTE] = ACTIONS(1147), + [anon_sym_SQUOTE] = ACTIONS(1147), + [anon_sym_L_DQUOTE] = ACTIONS(1147), + [anon_sym_DQUOTE] = ACTIONS(1147), + [sym_true] = ACTIONS(1145), + [sym_false] = ACTIONS(1145), + [sym_null] = ACTIONS(1145), + [sym_comment] = ACTIONS(3), }, [332] = { - [anon_sym_RBRACE] = ACTIONS(1541), + [sym_identifier] = ACTIONS(1117), + [aux_sym_preproc_include_token1] = ACTIONS(1117), + [aux_sym_preproc_def_token1] = ACTIONS(1117), + [aux_sym_preproc_if_token1] = ACTIONS(1117), + [aux_sym_preproc_if_token2] = ACTIONS(1117), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1117), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1117), + [sym_preproc_directive] = ACTIONS(1117), + [anon_sym_SEMI] = ACTIONS(1119), + [anon_sym_typedef] = ACTIONS(1117), + [anon_sym_extern] = ACTIONS(1117), + [anon_sym___attribute__] = ACTIONS(1117), + [anon_sym_LPAREN2] = ACTIONS(1119), + [anon_sym_LBRACE] = ACTIONS(1119), + [anon_sym_STAR] = ACTIONS(1119), + [anon_sym_static] = ACTIONS(1117), + [anon_sym_auto] = ACTIONS(1117), + [anon_sym_register] = ACTIONS(1117), + [anon_sym_inline] = ACTIONS(1117), + [anon_sym_const] = ACTIONS(1117), + [anon_sym_volatile] = ACTIONS(1117), + [anon_sym_restrict] = ACTIONS(1117), + [anon_sym__Atomic] = ACTIONS(1117), + [anon_sym_signed] = ACTIONS(1117), + [anon_sym_unsigned] = ACTIONS(1117), + [anon_sym_long] = ACTIONS(1117), + [anon_sym_short] = ACTIONS(1117), + [sym_primitive_type] = ACTIONS(1117), + [anon_sym_enum] = ACTIONS(1117), + [anon_sym_struct] = ACTIONS(1117), + [anon_sym_union] = ACTIONS(1117), + [anon_sym_if] = ACTIONS(1117), + [anon_sym_switch] = ACTIONS(1117), + [anon_sym_while] = ACTIONS(1117), + [anon_sym_do] = ACTIONS(1117), + [anon_sym_for] = ACTIONS(1117), + [anon_sym_return] = ACTIONS(1117), + [anon_sym_break] = ACTIONS(1117), + [anon_sym_continue] = ACTIONS(1117), + [anon_sym_goto] = ACTIONS(1117), + [anon_sym_AMP] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_TILDE] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1117), + [anon_sym_DASH_DASH] = ACTIONS(1119), + [anon_sym_PLUS_PLUS] = ACTIONS(1119), + [anon_sym_sizeof] = ACTIONS(1117), + [sym_number_literal] = ACTIONS(1119), + [anon_sym_L_SQUOTE] = ACTIONS(1119), + [anon_sym_SQUOTE] = ACTIONS(1119), + [anon_sym_L_DQUOTE] = ACTIONS(1119), + [anon_sym_DQUOTE] = ACTIONS(1119), + [sym_true] = ACTIONS(1117), + [sym_false] = ACTIONS(1117), + [sym_null] = ACTIONS(1117), [sym_comment] = ACTIONS(3), }, [333] = { - [anon_sym_GT_GT] = ACTIONS(1543), - [anon_sym_PERCENT_EQ] = ACTIONS(1545), - [anon_sym_DASH_EQ] = ACTIONS(1545), - [anon_sym_PIPE] = ACTIONS(1543), - [anon_sym_EQ_EQ] = ACTIONS(1545), - [anon_sym_SLASH] = ACTIONS(1543), - [anon_sym_DASH_GT] = ACTIONS(1545), - [anon_sym_LT_LT] = ACTIONS(1543), - [anon_sym_DASH_DASH] = ACTIONS(1545), - [anon_sym_PLUS_EQ] = ACTIONS(1545), - [anon_sym_LT_LT_EQ] = ACTIONS(1545), - [anon_sym_QMARK] = ACTIONS(1545), - [anon_sym_BANG_EQ] = ACTIONS(1545), - [anon_sym_CARET_EQ] = ACTIONS(1545), - [anon_sym_COMMA] = ACTIONS(1545), - [anon_sym_PLUS_PLUS] = ACTIONS(1545), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT_EQ] = ACTIONS(1545), - [anon_sym_GT] = ACTIONS(1543), - [anon_sym_PIPE_EQ] = ACTIONS(1545), - [anon_sym_RPAREN] = ACTIONS(1545), - [anon_sym_RBRACK] = ACTIONS(1545), - [anon_sym_AMP_EQ] = ACTIONS(1545), - [anon_sym_PERCENT] = ACTIONS(1543), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_EQ] = ACTIONS(1543), - [anon_sym_LPAREN2] = ACTIONS(1545), - [anon_sym_GT_EQ] = ACTIONS(1545), - [anon_sym_RBRACE] = ACTIONS(1545), - [anon_sym_COLON] = ACTIONS(1545), - [anon_sym_STAR_EQ] = ACTIONS(1545), - [anon_sym_PIPE_PIPE] = ACTIONS(1545), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_LT_EQ] = ACTIONS(1545), - [anon_sym_STAR] = ACTIONS(1543), - [anon_sym_SLASH_EQ] = ACTIONS(1545), - [anon_sym_AMP_AMP] = ACTIONS(1545), - [anon_sym_SEMI] = ACTIONS(1545), - [anon_sym_CARET] = ACTIONS(1543), - [anon_sym_PLUS] = ACTIONS(1543), - [anon_sym_DOT] = ACTIONS(1545), - [anon_sym_LT] = ACTIONS(1543), - [anon_sym_LBRACK] = ACTIONS(1545), + [sym_identifier] = ACTIONS(1101), + [aux_sym_preproc_include_token1] = ACTIONS(1101), + [aux_sym_preproc_def_token1] = ACTIONS(1101), + [aux_sym_preproc_if_token1] = ACTIONS(1101), + [aux_sym_preproc_if_token2] = ACTIONS(1101), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1101), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1101), + [sym_preproc_directive] = ACTIONS(1101), + [anon_sym_SEMI] = ACTIONS(1103), + [anon_sym_typedef] = ACTIONS(1101), + [anon_sym_extern] = ACTIONS(1101), + [anon_sym___attribute__] = ACTIONS(1101), + [anon_sym_LPAREN2] = ACTIONS(1103), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1103), + [anon_sym_static] = ACTIONS(1101), + [anon_sym_auto] = ACTIONS(1101), + [anon_sym_register] = ACTIONS(1101), + [anon_sym_inline] = ACTIONS(1101), + [anon_sym_const] = ACTIONS(1101), + [anon_sym_volatile] = ACTIONS(1101), + [anon_sym_restrict] = ACTIONS(1101), + [anon_sym__Atomic] = ACTIONS(1101), + [anon_sym_signed] = ACTIONS(1101), + [anon_sym_unsigned] = ACTIONS(1101), + [anon_sym_long] = ACTIONS(1101), + [anon_sym_short] = ACTIONS(1101), + [sym_primitive_type] = ACTIONS(1101), + [anon_sym_enum] = ACTIONS(1101), + [anon_sym_struct] = ACTIONS(1101), + [anon_sym_union] = ACTIONS(1101), + [anon_sym_if] = ACTIONS(1101), + [anon_sym_switch] = ACTIONS(1101), + [anon_sym_while] = ACTIONS(1101), + [anon_sym_do] = ACTIONS(1101), + [anon_sym_for] = ACTIONS(1101), + [anon_sym_return] = ACTIONS(1101), + [anon_sym_break] = ACTIONS(1101), + [anon_sym_continue] = ACTIONS(1101), + [anon_sym_goto] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1103), + [anon_sym_BANG] = ACTIONS(1103), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1103), + [anon_sym_PLUS_PLUS] = ACTIONS(1103), + [anon_sym_sizeof] = ACTIONS(1101), + [sym_number_literal] = ACTIONS(1103), + [anon_sym_L_SQUOTE] = ACTIONS(1103), + [anon_sym_SQUOTE] = ACTIONS(1103), + [anon_sym_L_DQUOTE] = ACTIONS(1103), + [anon_sym_DQUOTE] = ACTIONS(1103), + [sym_true] = ACTIONS(1101), + [sym_false] = ACTIONS(1101), + [sym_null] = ACTIONS(1101), + [sym_comment] = ACTIONS(3), }, [334] = { - [sym_identifier] = ACTIONS(1547), + [sym_identifier] = ACTIONS(1113), + [aux_sym_preproc_include_token1] = ACTIONS(1113), + [aux_sym_preproc_def_token1] = ACTIONS(1113), + [aux_sym_preproc_if_token1] = ACTIONS(1113), + [aux_sym_preproc_if_token2] = ACTIONS(1113), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1113), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1113), + [sym_preproc_directive] = ACTIONS(1113), + [anon_sym_SEMI] = ACTIONS(1115), + [anon_sym_typedef] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1113), + [anon_sym___attribute__] = ACTIONS(1113), + [anon_sym_LPAREN2] = ACTIONS(1115), + [anon_sym_LBRACE] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_static] = ACTIONS(1113), + [anon_sym_auto] = ACTIONS(1113), + [anon_sym_register] = ACTIONS(1113), + [anon_sym_inline] = ACTIONS(1113), + [anon_sym_const] = ACTIONS(1113), + [anon_sym_volatile] = ACTIONS(1113), + [anon_sym_restrict] = ACTIONS(1113), + [anon_sym__Atomic] = ACTIONS(1113), + [anon_sym_signed] = ACTIONS(1113), + [anon_sym_unsigned] = ACTIONS(1113), + [anon_sym_long] = ACTIONS(1113), + [anon_sym_short] = ACTIONS(1113), + [sym_primitive_type] = ACTIONS(1113), + [anon_sym_enum] = ACTIONS(1113), + [anon_sym_struct] = ACTIONS(1113), + [anon_sym_union] = ACTIONS(1113), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_switch] = ACTIONS(1113), + [anon_sym_while] = ACTIONS(1113), + [anon_sym_do] = ACTIONS(1113), + [anon_sym_for] = ACTIONS(1113), + [anon_sym_return] = ACTIONS(1113), + [anon_sym_break] = ACTIONS(1113), + [anon_sym_continue] = ACTIONS(1113), + [anon_sym_goto] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(1115), + [anon_sym_BANG] = ACTIONS(1115), + [anon_sym_TILDE] = ACTIONS(1115), + [anon_sym_DASH] = ACTIONS(1113), + [anon_sym_PLUS] = ACTIONS(1113), + [anon_sym_DASH_DASH] = ACTIONS(1115), + [anon_sym_PLUS_PLUS] = ACTIONS(1115), + [anon_sym_sizeof] = ACTIONS(1113), + [sym_number_literal] = ACTIONS(1115), + [anon_sym_L_SQUOTE] = ACTIONS(1115), + [anon_sym_SQUOTE] = ACTIONS(1115), + [anon_sym_L_DQUOTE] = ACTIONS(1115), + [anon_sym_DQUOTE] = ACTIONS(1115), + [sym_true] = ACTIONS(1113), + [sym_false] = ACTIONS(1113), + [sym_null] = ACTIONS(1113), [sym_comment] = ACTIONS(3), }, [335] = { - [sym_argument_list] = STATE(111), - [aux_sym_initializer_list_repeat1] = STATE(425), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_RBRACE] = ACTIONS(1541), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_COMMA] = ACTIONS(1549), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [ts_builtin_sym_end] = ACTIONS(1127), + [sym_identifier] = ACTIONS(1125), + [aux_sym_preproc_include_token1] = ACTIONS(1125), + [aux_sym_preproc_def_token1] = ACTIONS(1125), + [aux_sym_preproc_if_token1] = ACTIONS(1125), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1125), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1125), + [sym_preproc_directive] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1127), + [anon_sym_typedef] = ACTIONS(1125), + [anon_sym_extern] = ACTIONS(1125), + [anon_sym___attribute__] = ACTIONS(1125), + [anon_sym_LPAREN2] = ACTIONS(1127), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_STAR] = ACTIONS(1127), + [anon_sym_static] = ACTIONS(1125), + [anon_sym_auto] = ACTIONS(1125), + [anon_sym_register] = ACTIONS(1125), + [anon_sym_inline] = ACTIONS(1125), + [anon_sym_const] = ACTIONS(1125), + [anon_sym_volatile] = ACTIONS(1125), + [anon_sym_restrict] = ACTIONS(1125), + [anon_sym__Atomic] = ACTIONS(1125), + [anon_sym_signed] = ACTIONS(1125), + [anon_sym_unsigned] = ACTIONS(1125), + [anon_sym_long] = ACTIONS(1125), + [anon_sym_short] = ACTIONS(1125), + [sym_primitive_type] = ACTIONS(1125), + [anon_sym_enum] = ACTIONS(1125), + [anon_sym_struct] = ACTIONS(1125), + [anon_sym_union] = ACTIONS(1125), + [anon_sym_if] = ACTIONS(1125), + [anon_sym_switch] = ACTIONS(1125), + [anon_sym_while] = ACTIONS(1125), + [anon_sym_do] = ACTIONS(1125), + [anon_sym_for] = ACTIONS(1125), + [anon_sym_return] = ACTIONS(1125), + [anon_sym_break] = ACTIONS(1125), + [anon_sym_continue] = ACTIONS(1125), + [anon_sym_goto] = ACTIONS(1125), + [anon_sym_AMP] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_TILDE] = ACTIONS(1127), + [anon_sym_DASH] = ACTIONS(1125), + [anon_sym_PLUS] = ACTIONS(1125), + [anon_sym_DASH_DASH] = ACTIONS(1127), + [anon_sym_PLUS_PLUS] = ACTIONS(1127), + [anon_sym_sizeof] = ACTIONS(1125), + [sym_number_literal] = ACTIONS(1127), + [anon_sym_L_SQUOTE] = ACTIONS(1127), + [anon_sym_SQUOTE] = ACTIONS(1127), + [anon_sym_L_DQUOTE] = ACTIONS(1127), + [anon_sym_DQUOTE] = ACTIONS(1127), + [sym_true] = ACTIONS(1125), + [sym_false] = ACTIONS(1125), + [sym_null] = ACTIONS(1125), + [sym_comment] = ACTIONS(3), }, [336] = { - [aux_sym_initializer_pair_repeat1] = STATE(427), - [sym_subscript_designator] = STATE(427), - [sym_field_designator] = STATE(427), + [sym_identifier] = ACTIONS(1097), + [aux_sym_preproc_include_token1] = ACTIONS(1097), + [aux_sym_preproc_def_token1] = ACTIONS(1097), + [aux_sym_preproc_if_token1] = ACTIONS(1097), + [aux_sym_preproc_if_token2] = ACTIONS(1097), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1097), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1097), + [sym_preproc_directive] = ACTIONS(1097), + [anon_sym_SEMI] = ACTIONS(1099), + [anon_sym_typedef] = ACTIONS(1097), + [anon_sym_extern] = ACTIONS(1097), + [anon_sym___attribute__] = ACTIONS(1097), + [anon_sym_LPAREN2] = ACTIONS(1099), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_STAR] = ACTIONS(1099), + [anon_sym_static] = ACTIONS(1097), + [anon_sym_auto] = ACTIONS(1097), + [anon_sym_register] = ACTIONS(1097), + [anon_sym_inline] = ACTIONS(1097), + [anon_sym_const] = ACTIONS(1097), + [anon_sym_volatile] = ACTIONS(1097), + [anon_sym_restrict] = ACTIONS(1097), + [anon_sym__Atomic] = ACTIONS(1097), + [anon_sym_signed] = ACTIONS(1097), + [anon_sym_unsigned] = ACTIONS(1097), + [anon_sym_long] = ACTIONS(1097), + [anon_sym_short] = ACTIONS(1097), + [sym_primitive_type] = ACTIONS(1097), + [anon_sym_enum] = ACTIONS(1097), + [anon_sym_struct] = ACTIONS(1097), + [anon_sym_union] = ACTIONS(1097), + [anon_sym_if] = ACTIONS(1097), + [anon_sym_switch] = ACTIONS(1097), + [anon_sym_while] = ACTIONS(1097), + [anon_sym_do] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1097), + [anon_sym_return] = ACTIONS(1097), + [anon_sym_break] = ACTIONS(1097), + [anon_sym_continue] = ACTIONS(1097), + [anon_sym_goto] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), + [anon_sym_TILDE] = ACTIONS(1099), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_sizeof] = ACTIONS(1097), + [sym_number_literal] = ACTIONS(1099), + [anon_sym_L_SQUOTE] = ACTIONS(1099), + [anon_sym_SQUOTE] = ACTIONS(1099), + [anon_sym_L_DQUOTE] = ACTIONS(1099), + [anon_sym_DQUOTE] = ACTIONS(1099), + [sym_true] = ACTIONS(1097), + [sym_false] = ACTIONS(1097), + [sym_null] = ACTIONS(1097), [sym_comment] = ACTIONS(3), - [anon_sym_EQ] = ACTIONS(1551), - [anon_sym_DOT] = ACTIONS(1553), - [anon_sym_LBRACK] = ACTIONS(1244), }, [337] = { - [aux_sym_initializer_list_repeat1] = STATE(425), - [anon_sym_COMMA] = ACTIONS(1549), - [anon_sym_RBRACE] = ACTIONS(1541), + [ts_builtin_sym_end] = ACTIONS(1167), + [sym_identifier] = ACTIONS(1165), + [aux_sym_preproc_include_token1] = ACTIONS(1165), + [aux_sym_preproc_def_token1] = ACTIONS(1165), + [aux_sym_preproc_if_token1] = ACTIONS(1165), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1165), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1165), + [sym_preproc_directive] = ACTIONS(1165), + [anon_sym_SEMI] = ACTIONS(1167), + [anon_sym_typedef] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1165), + [anon_sym___attribute__] = ACTIONS(1165), + [anon_sym_LPAREN2] = ACTIONS(1167), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_STAR] = ACTIONS(1167), + [anon_sym_static] = ACTIONS(1165), + [anon_sym_auto] = ACTIONS(1165), + [anon_sym_register] = ACTIONS(1165), + [anon_sym_inline] = ACTIONS(1165), + [anon_sym_const] = ACTIONS(1165), + [anon_sym_volatile] = ACTIONS(1165), + [anon_sym_restrict] = ACTIONS(1165), + [anon_sym__Atomic] = ACTIONS(1165), + [anon_sym_signed] = ACTIONS(1165), + [anon_sym_unsigned] = ACTIONS(1165), + [anon_sym_long] = ACTIONS(1165), + [anon_sym_short] = ACTIONS(1165), + [sym_primitive_type] = ACTIONS(1165), + [anon_sym_enum] = ACTIONS(1165), + [anon_sym_struct] = ACTIONS(1165), + [anon_sym_union] = ACTIONS(1165), + [anon_sym_if] = ACTIONS(1165), + [anon_sym_switch] = ACTIONS(1165), + [anon_sym_while] = ACTIONS(1165), + [anon_sym_do] = ACTIONS(1165), + [anon_sym_for] = ACTIONS(1165), + [anon_sym_return] = ACTIONS(1165), + [anon_sym_break] = ACTIONS(1165), + [anon_sym_continue] = ACTIONS(1165), + [anon_sym_goto] = ACTIONS(1165), + [anon_sym_AMP] = ACTIONS(1167), + [anon_sym_BANG] = ACTIONS(1167), + [anon_sym_TILDE] = ACTIONS(1167), + [anon_sym_DASH] = ACTIONS(1165), + [anon_sym_PLUS] = ACTIONS(1165), + [anon_sym_DASH_DASH] = ACTIONS(1167), + [anon_sym_PLUS_PLUS] = ACTIONS(1167), + [anon_sym_sizeof] = ACTIONS(1165), + [sym_number_literal] = ACTIONS(1167), + [anon_sym_L_SQUOTE] = ACTIONS(1167), + [anon_sym_SQUOTE] = ACTIONS(1167), + [anon_sym_L_DQUOTE] = ACTIONS(1167), + [anon_sym_DQUOTE] = ACTIONS(1167), + [sym_true] = ACTIONS(1165), + [sym_false] = ACTIONS(1165), + [sym_null] = ACTIONS(1165), [sym_comment] = ACTIONS(3), }, [338] = { - [sym_parameter_list] = STATE(252), + [ts_builtin_sym_end] = ACTIONS(1163), + [sym_identifier] = ACTIONS(1161), + [aux_sym_preproc_include_token1] = ACTIONS(1161), + [aux_sym_preproc_def_token1] = ACTIONS(1161), + [aux_sym_preproc_if_token1] = ACTIONS(1161), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1161), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1161), + [sym_preproc_directive] = ACTIONS(1161), + [anon_sym_SEMI] = ACTIONS(1163), + [anon_sym_typedef] = ACTIONS(1161), + [anon_sym_extern] = ACTIONS(1161), + [anon_sym___attribute__] = ACTIONS(1161), + [anon_sym_LPAREN2] = ACTIONS(1163), + [anon_sym_LBRACE] = ACTIONS(1163), + [anon_sym_STAR] = ACTIONS(1163), + [anon_sym_static] = ACTIONS(1161), + [anon_sym_auto] = ACTIONS(1161), + [anon_sym_register] = ACTIONS(1161), + [anon_sym_inline] = ACTIONS(1161), + [anon_sym_const] = ACTIONS(1161), + [anon_sym_volatile] = ACTIONS(1161), + [anon_sym_restrict] = ACTIONS(1161), + [anon_sym__Atomic] = ACTIONS(1161), + [anon_sym_signed] = ACTIONS(1161), + [anon_sym_unsigned] = ACTIONS(1161), + [anon_sym_long] = ACTIONS(1161), + [anon_sym_short] = ACTIONS(1161), + [sym_primitive_type] = ACTIONS(1161), + [anon_sym_enum] = ACTIONS(1161), + [anon_sym_struct] = ACTIONS(1161), + [anon_sym_union] = ACTIONS(1161), + [anon_sym_if] = ACTIONS(1161), + [anon_sym_switch] = ACTIONS(1161), + [anon_sym_while] = ACTIONS(1161), + [anon_sym_do] = ACTIONS(1161), + [anon_sym_for] = ACTIONS(1161), + [anon_sym_return] = ACTIONS(1161), + [anon_sym_break] = ACTIONS(1161), + [anon_sym_continue] = ACTIONS(1161), + [anon_sym_goto] = ACTIONS(1161), + [anon_sym_AMP] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1163), + [anon_sym_TILDE] = ACTIONS(1163), + [anon_sym_DASH] = ACTIONS(1161), + [anon_sym_PLUS] = ACTIONS(1161), + [anon_sym_DASH_DASH] = ACTIONS(1163), + [anon_sym_PLUS_PLUS] = ACTIONS(1163), + [anon_sym_sizeof] = ACTIONS(1161), + [sym_number_literal] = ACTIONS(1163), + [anon_sym_L_SQUOTE] = ACTIONS(1163), + [anon_sym_SQUOTE] = ACTIONS(1163), + [anon_sym_L_DQUOTE] = ACTIONS(1163), + [anon_sym_DQUOTE] = ACTIONS(1163), + [sym_true] = ACTIONS(1161), + [sym_false] = ACTIONS(1161), + [sym_null] = ACTIONS(1161), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(1555), - [anon_sym_LPAREN2] = ACTIONS(652), - [anon_sym_LBRACK] = ACTIONS(923), }, [339] = { - [sym_parameter_list] = STATE(252), + [sym_identifier] = ACTIONS(1067), + [aux_sym_preproc_include_token1] = ACTIONS(1067), + [aux_sym_preproc_def_token1] = ACTIONS(1067), + [aux_sym_preproc_if_token1] = ACTIONS(1067), + [aux_sym_preproc_if_token2] = ACTIONS(1067), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1067), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1067), + [sym_preproc_directive] = ACTIONS(1067), + [anon_sym_SEMI] = ACTIONS(1065), + [anon_sym_typedef] = ACTIONS(1067), + [anon_sym_extern] = ACTIONS(1067), + [anon_sym___attribute__] = ACTIONS(1067), + [anon_sym_LPAREN2] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_static] = ACTIONS(1067), + [anon_sym_auto] = ACTIONS(1067), + [anon_sym_register] = ACTIONS(1067), + [anon_sym_inline] = ACTIONS(1067), + [anon_sym_const] = ACTIONS(1067), + [anon_sym_volatile] = ACTIONS(1067), + [anon_sym_restrict] = ACTIONS(1067), + [anon_sym__Atomic] = ACTIONS(1067), + [anon_sym_signed] = ACTIONS(1067), + [anon_sym_unsigned] = ACTIONS(1067), + [anon_sym_long] = ACTIONS(1067), + [anon_sym_short] = ACTIONS(1067), + [sym_primitive_type] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_if] = ACTIONS(1067), + [anon_sym_switch] = ACTIONS(1067), + [anon_sym_while] = ACTIONS(1067), + [anon_sym_do] = ACTIONS(1067), + [anon_sym_for] = ACTIONS(1067), + [anon_sym_return] = ACTIONS(1067), + [anon_sym_break] = ACTIONS(1067), + [anon_sym_continue] = ACTIONS(1067), + [anon_sym_goto] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1065), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_PLUS] = ACTIONS(1067), + [anon_sym_DASH_DASH] = ACTIONS(1065), + [anon_sym_PLUS_PLUS] = ACTIONS(1065), + [anon_sym_sizeof] = ACTIONS(1067), + [sym_number_literal] = ACTIONS(1065), + [anon_sym_L_SQUOTE] = ACTIONS(1065), + [anon_sym_SQUOTE] = ACTIONS(1065), + [anon_sym_L_DQUOTE] = ACTIONS(1065), + [anon_sym_DQUOTE] = ACTIONS(1065), + [sym_true] = ACTIONS(1067), + [sym_false] = ACTIONS(1067), + [sym_null] = ACTIONS(1067), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(1557), - [anon_sym_LPAREN2] = ACTIONS(652), - [anon_sym_COMMA] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(923), }, [340] = { - [sym__type_specifier] = STATE(130), - [sym_union_specifier] = STATE(130), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_attribute_specifier] = STATE(43), - [sym_parameter_declaration] = STATE(428), - [sym_sized_type_specifier] = STATE(130), - [sym_enum_specifier] = STATE(130), - [sym_macro_type_specifier] = STATE(130), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_storage_class_specifier] = STATE(43), - [sym_struct_specifier] = STATE(130), - [sym__declaration_specifiers] = STATE(246), - [sym_type_qualifier] = STATE(43), - [anon_sym_union] = ACTIONS(37), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(7), - [anon_sym_short] = ACTIONS(27), - [anon_sym_static] = ACTIONS(63), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_register] = ACTIONS(63), - [anon_sym_extern] = ACTIONS(63), - [anon_sym_struct] = ACTIONS(25), - [anon_sym_signed] = ACTIONS(27), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_long] = ACTIONS(27), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1559), - [anon_sym_const] = ACTIONS(7), - [sym_comment] = ACTIONS(3), - [anon_sym__Atomic] = ACTIONS(7), - [sym_primitive_type] = ACTIONS(348), - [anon_sym_auto] = ACTIONS(63), - [sym_identifier] = ACTIONS(187), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(31), + [sym_identifier] = ACTIONS(1165), + [aux_sym_preproc_include_token1] = ACTIONS(1165), + [aux_sym_preproc_def_token1] = ACTIONS(1165), + [aux_sym_preproc_if_token1] = ACTIONS(1165), + [aux_sym_preproc_if_token2] = ACTIONS(1165), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1165), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1165), + [sym_preproc_directive] = ACTIONS(1165), + [anon_sym_SEMI] = ACTIONS(1167), + [anon_sym_typedef] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1165), + [anon_sym___attribute__] = ACTIONS(1165), + [anon_sym_LPAREN2] = ACTIONS(1167), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_STAR] = ACTIONS(1167), + [anon_sym_static] = ACTIONS(1165), + [anon_sym_auto] = ACTIONS(1165), + [anon_sym_register] = ACTIONS(1165), + [anon_sym_inline] = ACTIONS(1165), + [anon_sym_const] = ACTIONS(1165), + [anon_sym_volatile] = ACTIONS(1165), + [anon_sym_restrict] = ACTIONS(1165), + [anon_sym__Atomic] = ACTIONS(1165), + [anon_sym_signed] = ACTIONS(1165), + [anon_sym_unsigned] = ACTIONS(1165), + [anon_sym_long] = ACTIONS(1165), + [anon_sym_short] = ACTIONS(1165), + [sym_primitive_type] = ACTIONS(1165), + [anon_sym_enum] = ACTIONS(1165), + [anon_sym_struct] = ACTIONS(1165), + [anon_sym_union] = ACTIONS(1165), + [anon_sym_if] = ACTIONS(1165), + [anon_sym_switch] = ACTIONS(1165), + [anon_sym_while] = ACTIONS(1165), + [anon_sym_do] = ACTIONS(1165), + [anon_sym_for] = ACTIONS(1165), + [anon_sym_return] = ACTIONS(1165), + [anon_sym_break] = ACTIONS(1165), + [anon_sym_continue] = ACTIONS(1165), + [anon_sym_goto] = ACTIONS(1165), + [anon_sym_AMP] = ACTIONS(1167), + [anon_sym_BANG] = ACTIONS(1167), + [anon_sym_TILDE] = ACTIONS(1167), + [anon_sym_DASH] = ACTIONS(1165), + [anon_sym_PLUS] = ACTIONS(1165), + [anon_sym_DASH_DASH] = ACTIONS(1167), + [anon_sym_PLUS_PLUS] = ACTIONS(1167), + [anon_sym_sizeof] = ACTIONS(1165), + [sym_number_literal] = ACTIONS(1167), + [anon_sym_L_SQUOTE] = ACTIONS(1167), + [anon_sym_SQUOTE] = ACTIONS(1167), + [anon_sym_L_DQUOTE] = ACTIONS(1167), + [anon_sym_DQUOTE] = ACTIONS(1167), + [sym_true] = ACTIONS(1165), + [sym_false] = ACTIONS(1165), + [sym_null] = ACTIONS(1165), + [sym_comment] = ACTIONS(3), }, [341] = { - [anon_sym_LBRACK] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_EQ] = ACTIONS(1561), - [anon_sym_LPAREN2] = ACTIONS(1561), - [anon_sym_COMMA] = ACTIONS(1561), - [anon_sym_COLON] = ACTIONS(1561), - [anon_sym_SEMI] = ACTIONS(1561), - [anon_sym_RPAREN] = ACTIONS(1561), - [anon_sym___attribute__] = ACTIONS(1561), + [sym_identifier] = ACTIONS(1161), + [aux_sym_preproc_include_token1] = ACTIONS(1161), + [aux_sym_preproc_def_token1] = ACTIONS(1161), + [aux_sym_preproc_if_token1] = ACTIONS(1161), + [aux_sym_preproc_if_token2] = ACTIONS(1161), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1161), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1161), + [sym_preproc_directive] = ACTIONS(1161), + [anon_sym_SEMI] = ACTIONS(1163), + [anon_sym_typedef] = ACTIONS(1161), + [anon_sym_extern] = ACTIONS(1161), + [anon_sym___attribute__] = ACTIONS(1161), + [anon_sym_LPAREN2] = ACTIONS(1163), + [anon_sym_LBRACE] = ACTIONS(1163), + [anon_sym_STAR] = ACTIONS(1163), + [anon_sym_static] = ACTIONS(1161), + [anon_sym_auto] = ACTIONS(1161), + [anon_sym_register] = ACTIONS(1161), + [anon_sym_inline] = ACTIONS(1161), + [anon_sym_const] = ACTIONS(1161), + [anon_sym_volatile] = ACTIONS(1161), + [anon_sym_restrict] = ACTIONS(1161), + [anon_sym__Atomic] = ACTIONS(1161), + [anon_sym_signed] = ACTIONS(1161), + [anon_sym_unsigned] = ACTIONS(1161), + [anon_sym_long] = ACTIONS(1161), + [anon_sym_short] = ACTIONS(1161), + [sym_primitive_type] = ACTIONS(1161), + [anon_sym_enum] = ACTIONS(1161), + [anon_sym_struct] = ACTIONS(1161), + [anon_sym_union] = ACTIONS(1161), + [anon_sym_if] = ACTIONS(1161), + [anon_sym_switch] = ACTIONS(1161), + [anon_sym_while] = ACTIONS(1161), + [anon_sym_do] = ACTIONS(1161), + [anon_sym_for] = ACTIONS(1161), + [anon_sym_return] = ACTIONS(1161), + [anon_sym_break] = ACTIONS(1161), + [anon_sym_continue] = ACTIONS(1161), + [anon_sym_goto] = ACTIONS(1161), + [anon_sym_AMP] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1163), + [anon_sym_TILDE] = ACTIONS(1163), + [anon_sym_DASH] = ACTIONS(1161), + [anon_sym_PLUS] = ACTIONS(1161), + [anon_sym_DASH_DASH] = ACTIONS(1163), + [anon_sym_PLUS_PLUS] = ACTIONS(1163), + [anon_sym_sizeof] = ACTIONS(1161), + [sym_number_literal] = ACTIONS(1163), + [anon_sym_L_SQUOTE] = ACTIONS(1163), + [anon_sym_SQUOTE] = ACTIONS(1163), + [anon_sym_L_DQUOTE] = ACTIONS(1163), + [anon_sym_DQUOTE] = ACTIONS(1163), + [sym_true] = ACTIONS(1161), + [sym_false] = ACTIONS(1161), + [sym_null] = ACTIONS(1161), [sym_comment] = ACTIONS(3), }, [342] = { - [aux_sym_parameter_list_repeat1] = STATE(430), - [anon_sym_RPAREN] = ACTIONS(1563), - [anon_sym_COMMA] = ACTIONS(1276), + [sym_identifier] = ACTIONS(1087), + [aux_sym_preproc_include_token1] = ACTIONS(1087), + [aux_sym_preproc_def_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token2] = ACTIONS(1087), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1087), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1087), + [sym_preproc_directive] = ACTIONS(1087), + [anon_sym_SEMI] = ACTIONS(1085), + [anon_sym_typedef] = ACTIONS(1087), + [anon_sym_extern] = ACTIONS(1087), + [anon_sym___attribute__] = ACTIONS(1087), + [anon_sym_LPAREN2] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(1085), + [anon_sym_static] = ACTIONS(1087), + [anon_sym_auto] = ACTIONS(1087), + [anon_sym_register] = ACTIONS(1087), + [anon_sym_inline] = ACTIONS(1087), + [anon_sym_const] = ACTIONS(1087), + [anon_sym_volatile] = ACTIONS(1087), + [anon_sym_restrict] = ACTIONS(1087), + [anon_sym__Atomic] = ACTIONS(1087), + [anon_sym_signed] = ACTIONS(1087), + [anon_sym_unsigned] = ACTIONS(1087), + [anon_sym_long] = ACTIONS(1087), + [anon_sym_short] = ACTIONS(1087), + [sym_primitive_type] = ACTIONS(1087), + [anon_sym_enum] = ACTIONS(1087), + [anon_sym_struct] = ACTIONS(1087), + [anon_sym_union] = ACTIONS(1087), + [anon_sym_if] = ACTIONS(1087), + [anon_sym_switch] = ACTIONS(1087), + [anon_sym_while] = ACTIONS(1087), + [anon_sym_do] = ACTIONS(1087), + [anon_sym_for] = ACTIONS(1087), + [anon_sym_return] = ACTIONS(1087), + [anon_sym_break] = ACTIONS(1087), + [anon_sym_continue] = ACTIONS(1087), + [anon_sym_goto] = ACTIONS(1087), + [anon_sym_AMP] = ACTIONS(1085), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_TILDE] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH_DASH] = ACTIONS(1085), + [anon_sym_PLUS_PLUS] = ACTIONS(1085), + [anon_sym_sizeof] = ACTIONS(1087), + [sym_number_literal] = ACTIONS(1085), + [anon_sym_L_SQUOTE] = ACTIONS(1085), + [anon_sym_SQUOTE] = ACTIONS(1085), + [anon_sym_L_DQUOTE] = ACTIONS(1085), + [anon_sym_DQUOTE] = ACTIONS(1085), + [sym_true] = ACTIONS(1087), + [sym_false] = ACTIONS(1087), + [sym_null] = ACTIONS(1087), [sym_comment] = ACTIONS(3), }, [343] = { + [sym_identifier] = ACTIONS(1079), + [aux_sym_preproc_include_token1] = ACTIONS(1079), + [aux_sym_preproc_def_token1] = ACTIONS(1079), + [aux_sym_preproc_if_token1] = ACTIONS(1079), + [aux_sym_preproc_if_token2] = ACTIONS(1079), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1079), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1079), + [sym_preproc_directive] = ACTIONS(1079), + [anon_sym_SEMI] = ACTIONS(1077), + [anon_sym_typedef] = ACTIONS(1079), + [anon_sym_extern] = ACTIONS(1079), + [anon_sym___attribute__] = ACTIONS(1079), + [anon_sym_LPAREN2] = ACTIONS(1077), + [anon_sym_LBRACE] = ACTIONS(1077), + [anon_sym_STAR] = ACTIONS(1077), + [anon_sym_static] = ACTIONS(1079), + [anon_sym_auto] = ACTIONS(1079), + [anon_sym_register] = ACTIONS(1079), + [anon_sym_inline] = ACTIONS(1079), + [anon_sym_const] = ACTIONS(1079), + [anon_sym_volatile] = ACTIONS(1079), + [anon_sym_restrict] = ACTIONS(1079), + [anon_sym__Atomic] = ACTIONS(1079), + [anon_sym_signed] = ACTIONS(1079), + [anon_sym_unsigned] = ACTIONS(1079), + [anon_sym_long] = ACTIONS(1079), + [anon_sym_short] = ACTIONS(1079), + [sym_primitive_type] = ACTIONS(1079), + [anon_sym_enum] = ACTIONS(1079), + [anon_sym_struct] = ACTIONS(1079), + [anon_sym_union] = ACTIONS(1079), + [anon_sym_if] = ACTIONS(1079), + [anon_sym_switch] = ACTIONS(1079), + [anon_sym_while] = ACTIONS(1079), + [anon_sym_do] = ACTIONS(1079), + [anon_sym_for] = ACTIONS(1079), + [anon_sym_return] = ACTIONS(1079), + [anon_sym_break] = ACTIONS(1079), + [anon_sym_continue] = ACTIONS(1079), + [anon_sym_goto] = ACTIONS(1079), + [anon_sym_AMP] = ACTIONS(1077), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_TILDE] = ACTIONS(1077), + [anon_sym_DASH] = ACTIONS(1079), + [anon_sym_PLUS] = ACTIONS(1079), + [anon_sym_DASH_DASH] = ACTIONS(1077), + [anon_sym_PLUS_PLUS] = ACTIONS(1077), + [anon_sym_sizeof] = ACTIONS(1079), + [sym_number_literal] = ACTIONS(1077), + [anon_sym_L_SQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1077), + [anon_sym_L_DQUOTE] = ACTIONS(1077), + [anon_sym_DQUOTE] = ACTIONS(1077), + [sym_true] = ACTIONS(1079), + [sym_false] = ACTIONS(1079), + [sym_null] = ACTIONS(1079), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(1565), - [anon_sym_LPAREN2] = ACTIONS(1565), - [anon_sym_COMMA] = ACTIONS(1565), - [anon_sym_LBRACK] = ACTIONS(1565), }, [344] = { - [sym_pointer_declarator] = STATE(206), - [sym_abstract_array_declarator] = STATE(241), - [aux_sym_type_definition_repeat1] = STATE(431), - [sym__declarator] = STATE(206), - [sym_abstract_pointer_declarator] = STATE(241), - [sym_function_declarator] = STATE(206), - [sym_type_qualifier] = STATE(431), - [sym_parameter_list] = STATE(148), - [sym_parenthesized_declarator] = STATE(206), - [sym__abstract_declarator] = STATE(241), - [sym_abstract_function_declarator] = STATE(241), - [sym_array_declarator] = STATE(206), - [sym_abstract_parenthesized_declarator] = STATE(241), - [anon_sym_restrict] = ACTIONS(7), - [anon_sym_COMMA] = ACTIONS(905), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_STAR] = ACTIONS(1282), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(7), - [anon_sym_LPAREN2] = ACTIONS(1286), - [anon_sym__Atomic] = ACTIONS(7), - [anon_sym_RPAREN] = ACTIONS(905), - [sym_identifier] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(448), + [ts_builtin_sym_end] = ACTIONS(1159), + [sym_identifier] = ACTIONS(1157), + [aux_sym_preproc_include_token1] = ACTIONS(1157), + [aux_sym_preproc_def_token1] = ACTIONS(1157), + [aux_sym_preproc_if_token1] = ACTIONS(1157), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1157), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1157), + [sym_preproc_directive] = ACTIONS(1157), + [anon_sym_SEMI] = ACTIONS(1159), + [anon_sym_typedef] = ACTIONS(1157), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym___attribute__] = ACTIONS(1157), + [anon_sym_LPAREN2] = ACTIONS(1159), + [anon_sym_LBRACE] = ACTIONS(1159), + [anon_sym_STAR] = ACTIONS(1159), + [anon_sym_static] = ACTIONS(1157), + [anon_sym_auto] = ACTIONS(1157), + [anon_sym_register] = ACTIONS(1157), + [anon_sym_inline] = ACTIONS(1157), + [anon_sym_const] = ACTIONS(1157), + [anon_sym_volatile] = ACTIONS(1157), + [anon_sym_restrict] = ACTIONS(1157), + [anon_sym__Atomic] = ACTIONS(1157), + [anon_sym_signed] = ACTIONS(1157), + [anon_sym_unsigned] = ACTIONS(1157), + [anon_sym_long] = ACTIONS(1157), + [anon_sym_short] = ACTIONS(1157), + [sym_primitive_type] = ACTIONS(1157), + [anon_sym_enum] = ACTIONS(1157), + [anon_sym_struct] = ACTIONS(1157), + [anon_sym_union] = ACTIONS(1157), + [anon_sym_if] = ACTIONS(1157), + [anon_sym_switch] = ACTIONS(1157), + [anon_sym_while] = ACTIONS(1157), + [anon_sym_do] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1157), + [anon_sym_return] = ACTIONS(1157), + [anon_sym_break] = ACTIONS(1157), + [anon_sym_continue] = ACTIONS(1157), + [anon_sym_goto] = ACTIONS(1157), + [anon_sym_AMP] = ACTIONS(1159), + [anon_sym_BANG] = ACTIONS(1159), + [anon_sym_TILDE] = ACTIONS(1159), + [anon_sym_DASH] = ACTIONS(1157), + [anon_sym_PLUS] = ACTIONS(1157), + [anon_sym_DASH_DASH] = ACTIONS(1159), + [anon_sym_PLUS_PLUS] = ACTIONS(1159), + [anon_sym_sizeof] = ACTIONS(1157), + [sym_number_literal] = ACTIONS(1159), + [anon_sym_L_SQUOTE] = ACTIONS(1159), + [anon_sym_SQUOTE] = ACTIONS(1159), + [anon_sym_L_DQUOTE] = ACTIONS(1159), + [anon_sym_DQUOTE] = ACTIONS(1159), + [sym_true] = ACTIONS(1157), + [sym_false] = ACTIONS(1157), + [sym_null] = ACTIONS(1157), + [sym_comment] = ACTIONS(3), }, [345] = { - [sym__declarator] = STATE(208), - [sym_abstract_pointer_declarator] = STATE(245), - [sym_function_declarator] = STATE(208), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(130), - [sym_union_specifier] = STATE(130), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_parameter_list] = STATE(148), - [sym_parameter_declaration] = STATE(244), - [sym__declaration_specifiers] = STATE(246), - [sym_abstract_parenthesized_declarator] = STATE(245), - [sym_pointer_declarator] = STATE(208), - [sym_abstract_array_declarator] = STATE(245), - [sym_sized_type_specifier] = STATE(130), - [sym_enum_specifier] = STATE(130), - [sym_attribute_specifier] = STATE(43), - [sym__abstract_declarator] = STATE(245), - [sym_parenthesized_declarator] = STATE(208), - [sym_abstract_function_declarator] = STATE(245), - [sym_array_declarator] = STATE(208), - [sym_macro_type_specifier] = STATE(130), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_storage_class_specifier] = STATE(43), - [sym_struct_specifier] = STATE(130), - [anon_sym_union] = ACTIONS(37), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(7), - [anon_sym_short] = ACTIONS(27), - [anon_sym_DOT_DOT_DOT] = ACTIONS(907), - [anon_sym_const] = ACTIONS(7), - [anon_sym_LPAREN2] = ACTIONS(1286), - [anon_sym__Atomic] = ACTIONS(7), - [sym_identifier] = ACTIONS(1567), - [sym_primitive_type] = ACTIONS(348), - [anon_sym_static] = ACTIONS(63), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_register] = ACTIONS(63), - [anon_sym_extern] = ACTIONS(63), - [anon_sym_STAR] = ACTIONS(1282), - [anon_sym_struct] = ACTIONS(25), - [anon_sym_signed] = ACTIONS(27), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_long] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(909), - [anon_sym_auto] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(448), + [sym_identifier] = ACTIONS(1157), + [aux_sym_preproc_include_token1] = ACTIONS(1157), + [aux_sym_preproc_def_token1] = ACTIONS(1157), + [aux_sym_preproc_if_token1] = ACTIONS(1157), + [aux_sym_preproc_if_token2] = ACTIONS(1157), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1157), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1157), + [sym_preproc_directive] = ACTIONS(1157), + [anon_sym_SEMI] = ACTIONS(1159), + [anon_sym_typedef] = ACTIONS(1157), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym___attribute__] = ACTIONS(1157), + [anon_sym_LPAREN2] = ACTIONS(1159), + [anon_sym_LBRACE] = ACTIONS(1159), + [anon_sym_STAR] = ACTIONS(1159), + [anon_sym_static] = ACTIONS(1157), + [anon_sym_auto] = ACTIONS(1157), + [anon_sym_register] = ACTIONS(1157), + [anon_sym_inline] = ACTIONS(1157), + [anon_sym_const] = ACTIONS(1157), + [anon_sym_volatile] = ACTIONS(1157), + [anon_sym_restrict] = ACTIONS(1157), + [anon_sym__Atomic] = ACTIONS(1157), + [anon_sym_signed] = ACTIONS(1157), + [anon_sym_unsigned] = ACTIONS(1157), + [anon_sym_long] = ACTIONS(1157), + [anon_sym_short] = ACTIONS(1157), + [sym_primitive_type] = ACTIONS(1157), + [anon_sym_enum] = ACTIONS(1157), + [anon_sym_struct] = ACTIONS(1157), + [anon_sym_union] = ACTIONS(1157), + [anon_sym_if] = ACTIONS(1157), + [anon_sym_switch] = ACTIONS(1157), + [anon_sym_while] = ACTIONS(1157), + [anon_sym_do] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1157), + [anon_sym_return] = ACTIONS(1157), + [anon_sym_break] = ACTIONS(1157), + [anon_sym_continue] = ACTIONS(1157), + [anon_sym_goto] = ACTIONS(1157), + [anon_sym_AMP] = ACTIONS(1159), + [anon_sym_BANG] = ACTIONS(1159), + [anon_sym_TILDE] = ACTIONS(1159), + [anon_sym_DASH] = ACTIONS(1157), + [anon_sym_PLUS] = ACTIONS(1157), + [anon_sym_DASH_DASH] = ACTIONS(1159), + [anon_sym_PLUS_PLUS] = ACTIONS(1159), + [anon_sym_sizeof] = ACTIONS(1157), + [sym_number_literal] = ACTIONS(1159), + [anon_sym_L_SQUOTE] = ACTIONS(1159), + [anon_sym_SQUOTE] = ACTIONS(1159), + [anon_sym_L_DQUOTE] = ACTIONS(1159), + [anon_sym_DQUOTE] = ACTIONS(1159), + [sym_true] = ACTIONS(1157), + [sym_false] = ACTIONS(1157), + [sym_null] = ACTIONS(1157), + [sym_comment] = ACTIONS(3), }, [346] = { - [sym_parameter_list] = STATE(252), + [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_SEMI] = ACTIONS(1131), + [anon_sym_typedef] = ACTIONS(1129), + [anon_sym_extern] = ACTIONS(1129), + [anon_sym___attribute__] = ACTIONS(1129), + [anon_sym_LPAREN2] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(1131), + [anon_sym_RBRACE] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1131), + [anon_sym_static] = ACTIONS(1129), + [anon_sym_auto] = ACTIONS(1129), + [anon_sym_register] = ACTIONS(1129), + [anon_sym_inline] = ACTIONS(1129), + [anon_sym_const] = ACTIONS(1129), + [anon_sym_volatile] = ACTIONS(1129), + [anon_sym_restrict] = ACTIONS(1129), + [anon_sym__Atomic] = ACTIONS(1129), + [anon_sym_signed] = ACTIONS(1129), + [anon_sym_unsigned] = ACTIONS(1129), + [anon_sym_long] = ACTIONS(1129), + [anon_sym_short] = 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_switch] = 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_AMP] = ACTIONS(1131), + [anon_sym_BANG] = ACTIONS(1131), + [anon_sym_TILDE] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1131), + [anon_sym_PLUS_PLUS] = ACTIONS(1131), + [anon_sym_sizeof] = ACTIONS(1129), + [sym_number_literal] = ACTIONS(1131), + [anon_sym_L_SQUOTE] = ACTIONS(1131), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_L_DQUOTE] = ACTIONS(1131), + [anon_sym_DQUOTE] = ACTIONS(1131), + [sym_true] = ACTIONS(1129), + [sym_false] = ACTIONS(1129), + [sym_null] = ACTIONS(1129), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(1569), - [anon_sym_LPAREN2] = ACTIONS(652), - [anon_sym_COMMA] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(923), }, [347] = { - [sym_parameter_list] = STATE(214), + [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_SEMI] = ACTIONS(1131), + [anon_sym_typedef] = ACTIONS(1129), + [anon_sym_extern] = ACTIONS(1129), + [anon_sym___attribute__] = ACTIONS(1129), + [anon_sym_LPAREN2] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1131), + [anon_sym_static] = ACTIONS(1129), + [anon_sym_auto] = ACTIONS(1129), + [anon_sym_register] = ACTIONS(1129), + [anon_sym_inline] = ACTIONS(1129), + [anon_sym_const] = ACTIONS(1129), + [anon_sym_volatile] = ACTIONS(1129), + [anon_sym_restrict] = ACTIONS(1129), + [anon_sym__Atomic] = ACTIONS(1129), + [anon_sym_signed] = ACTIONS(1129), + [anon_sym_unsigned] = ACTIONS(1129), + [anon_sym_long] = ACTIONS(1129), + [anon_sym_short] = 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_switch] = 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_AMP] = ACTIONS(1131), + [anon_sym_BANG] = ACTIONS(1131), + [anon_sym_TILDE] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1131), + [anon_sym_PLUS_PLUS] = ACTIONS(1131), + [anon_sym_sizeof] = ACTIONS(1129), + [sym_number_literal] = ACTIONS(1131), + [anon_sym_L_SQUOTE] = ACTIONS(1131), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_L_DQUOTE] = ACTIONS(1131), + [anon_sym_DQUOTE] = ACTIONS(1131), + [sym_true] = ACTIONS(1129), + [sym_false] = ACTIONS(1129), + [sym_null] = ACTIONS(1129), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(1569), - [anon_sym_LPAREN2] = ACTIONS(652), - [anon_sym_COMMA] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(650), }, [348] = { + [ts_builtin_sym_end] = ACTIONS(1131), + [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_SEMI] = ACTIONS(1131), + [anon_sym_typedef] = ACTIONS(1129), + [anon_sym_extern] = ACTIONS(1129), + [anon_sym___attribute__] = ACTIONS(1129), + [anon_sym_LPAREN2] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1131), + [anon_sym_static] = ACTIONS(1129), + [anon_sym_auto] = ACTIONS(1129), + [anon_sym_register] = ACTIONS(1129), + [anon_sym_inline] = ACTIONS(1129), + [anon_sym_const] = ACTIONS(1129), + [anon_sym_volatile] = ACTIONS(1129), + [anon_sym_restrict] = ACTIONS(1129), + [anon_sym__Atomic] = ACTIONS(1129), + [anon_sym_signed] = ACTIONS(1129), + [anon_sym_unsigned] = ACTIONS(1129), + [anon_sym_long] = ACTIONS(1129), + [anon_sym_short] = 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_switch] = 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_AMP] = ACTIONS(1131), + [anon_sym_BANG] = ACTIONS(1131), + [anon_sym_TILDE] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1131), + [anon_sym_PLUS_PLUS] = ACTIONS(1131), + [anon_sym_sizeof] = ACTIONS(1129), + [sym_number_literal] = ACTIONS(1131), + [anon_sym_L_SQUOTE] = ACTIONS(1131), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_L_DQUOTE] = ACTIONS(1131), + [anon_sym_DQUOTE] = ACTIONS(1131), + [sym_true] = ACTIONS(1129), + [sym_false] = ACTIONS(1129), + [sym_null] = ACTIONS(1129), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(1571), - [anon_sym_LPAREN2] = ACTIONS(1571), - [anon_sym_COMMA] = ACTIONS(1571), - [anon_sym_LBRACK] = ACTIONS(1571), }, [349] = { - [sym_char_literal] = STATE(54), - [sym__expression] = STATE(54), - [sym_binary_expression] = STATE(54), - [sym_update_expression] = STATE(54), - [sym_call_expression] = STATE(54), - [sym_pointer_expression] = STATE(54), - [sym_unary_expression] = STATE(54), - [sym_sizeof_expression] = STATE(54), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(54), - [sym_concatenated_string] = STATE(54), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(54), - [sym_assignment_expression] = STATE(54), - [sym_cast_expression] = STATE(54), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(54), - [sym_true] = ACTIONS(153), - [sym_null] = ACTIONS(153), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(155), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(159), - [sym_identifier] = ACTIONS(153), - [anon_sym_BANG] = ACTIONS(155), - [anon_sym_DASH] = ACTIONS(161), - [sym_number_literal] = ACTIONS(163), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(159), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_RBRACK] = ACTIONS(1573), - [anon_sym_sizeof] = ACTIONS(165), + [sym_identifier] = ACTIONS(1075), + [aux_sym_preproc_include_token1] = ACTIONS(1075), + [aux_sym_preproc_def_token1] = ACTIONS(1075), + [aux_sym_preproc_if_token1] = ACTIONS(1075), + [aux_sym_preproc_if_token2] = ACTIONS(1075), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1075), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1075), + [sym_preproc_directive] = ACTIONS(1075), + [anon_sym_SEMI] = ACTIONS(1073), + [anon_sym_typedef] = ACTIONS(1075), + [anon_sym_extern] = ACTIONS(1075), + [anon_sym___attribute__] = ACTIONS(1075), + [anon_sym_LPAREN2] = ACTIONS(1073), + [anon_sym_LBRACE] = ACTIONS(1073), + [anon_sym_STAR] = ACTIONS(1073), + [anon_sym_static] = ACTIONS(1075), + [anon_sym_auto] = ACTIONS(1075), + [anon_sym_register] = ACTIONS(1075), + [anon_sym_inline] = ACTIONS(1075), + [anon_sym_const] = ACTIONS(1075), + [anon_sym_volatile] = ACTIONS(1075), + [anon_sym_restrict] = ACTIONS(1075), + [anon_sym__Atomic] = ACTIONS(1075), + [anon_sym_signed] = ACTIONS(1075), + [anon_sym_unsigned] = ACTIONS(1075), + [anon_sym_long] = ACTIONS(1075), + [anon_sym_short] = ACTIONS(1075), + [sym_primitive_type] = ACTIONS(1075), + [anon_sym_enum] = ACTIONS(1075), + [anon_sym_struct] = ACTIONS(1075), + [anon_sym_union] = ACTIONS(1075), + [anon_sym_if] = ACTIONS(1075), + [anon_sym_switch] = ACTIONS(1075), + [anon_sym_while] = ACTIONS(1075), + [anon_sym_do] = ACTIONS(1075), + [anon_sym_for] = ACTIONS(1075), + [anon_sym_return] = ACTIONS(1075), + [anon_sym_break] = ACTIONS(1075), + [anon_sym_continue] = ACTIONS(1075), + [anon_sym_goto] = ACTIONS(1075), + [anon_sym_AMP] = ACTIONS(1073), + [anon_sym_BANG] = ACTIONS(1073), + [anon_sym_TILDE] = ACTIONS(1073), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_PLUS] = ACTIONS(1075), + [anon_sym_DASH_DASH] = ACTIONS(1073), + [anon_sym_PLUS_PLUS] = ACTIONS(1073), + [anon_sym_sizeof] = ACTIONS(1075), + [sym_number_literal] = ACTIONS(1073), + [anon_sym_L_SQUOTE] = ACTIONS(1073), + [anon_sym_SQUOTE] = ACTIONS(1073), + [anon_sym_L_DQUOTE] = ACTIONS(1073), + [anon_sym_DQUOTE] = ACTIONS(1073), + [sym_true] = ACTIONS(1075), + [sym_false] = ACTIONS(1075), + [sym_null] = ACTIONS(1075), + [sym_comment] = ACTIONS(3), }, [350] = { + [ts_builtin_sym_end] = ACTIONS(1095), + [sym_identifier] = ACTIONS(1093), + [aux_sym_preproc_include_token1] = ACTIONS(1093), + [aux_sym_preproc_def_token1] = ACTIONS(1093), + [aux_sym_preproc_if_token1] = ACTIONS(1093), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1093), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1093), + [sym_preproc_directive] = ACTIONS(1093), + [anon_sym_SEMI] = ACTIONS(1095), + [anon_sym_typedef] = ACTIONS(1093), + [anon_sym_extern] = ACTIONS(1093), + [anon_sym___attribute__] = ACTIONS(1093), + [anon_sym_LPAREN2] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1095), + [anon_sym_STAR] = ACTIONS(1095), + [anon_sym_static] = ACTIONS(1093), + [anon_sym_auto] = ACTIONS(1093), + [anon_sym_register] = ACTIONS(1093), + [anon_sym_inline] = ACTIONS(1093), + [anon_sym_const] = ACTIONS(1093), + [anon_sym_volatile] = ACTIONS(1093), + [anon_sym_restrict] = ACTIONS(1093), + [anon_sym__Atomic] = ACTIONS(1093), + [anon_sym_signed] = ACTIONS(1093), + [anon_sym_unsigned] = ACTIONS(1093), + [anon_sym_long] = ACTIONS(1093), + [anon_sym_short] = ACTIONS(1093), + [sym_primitive_type] = ACTIONS(1093), + [anon_sym_enum] = ACTIONS(1093), + [anon_sym_struct] = ACTIONS(1093), + [anon_sym_union] = ACTIONS(1093), + [anon_sym_if] = ACTIONS(1093), + [anon_sym_switch] = ACTIONS(1093), + [anon_sym_while] = ACTIONS(1093), + [anon_sym_do] = ACTIONS(1093), + [anon_sym_for] = ACTIONS(1093), + [anon_sym_return] = ACTIONS(1093), + [anon_sym_break] = ACTIONS(1093), + [anon_sym_continue] = ACTIONS(1093), + [anon_sym_goto] = ACTIONS(1093), + [anon_sym_AMP] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_TILDE] = ACTIONS(1095), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_sizeof] = ACTIONS(1093), + [sym_number_literal] = ACTIONS(1095), + [anon_sym_L_SQUOTE] = ACTIONS(1095), + [anon_sym_SQUOTE] = ACTIONS(1095), + [anon_sym_L_DQUOTE] = ACTIONS(1095), + [anon_sym_DQUOTE] = ACTIONS(1095), + [sym_true] = ACTIONS(1093), + [sym_false] = ACTIONS(1093), + [sym_null] = ACTIONS(1093), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(1575), - [anon_sym_LPAREN2] = ACTIONS(1575), - [anon_sym_COMMA] = ACTIONS(1575), - [anon_sym_LBRACK] = ACTIONS(1575), }, [351] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_RBRACK] = ACTIONS(1573), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [sym_identifier] = ACTIONS(1121), + [aux_sym_preproc_include_token1] = ACTIONS(1121), + [aux_sym_preproc_def_token1] = ACTIONS(1121), + [aux_sym_preproc_if_token1] = ACTIONS(1121), + [aux_sym_preproc_if_token2] = ACTIONS(1121), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1121), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1121), + [sym_preproc_directive] = ACTIONS(1121), + [anon_sym_SEMI] = ACTIONS(1123), + [anon_sym_typedef] = ACTIONS(1121), + [anon_sym_extern] = ACTIONS(1121), + [anon_sym___attribute__] = ACTIONS(1121), + [anon_sym_LPAREN2] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1123), + [anon_sym_static] = ACTIONS(1121), + [anon_sym_auto] = ACTIONS(1121), + [anon_sym_register] = ACTIONS(1121), + [anon_sym_inline] = ACTIONS(1121), + [anon_sym_const] = ACTIONS(1121), + [anon_sym_volatile] = ACTIONS(1121), + [anon_sym_restrict] = ACTIONS(1121), + [anon_sym__Atomic] = ACTIONS(1121), + [anon_sym_signed] = ACTIONS(1121), + [anon_sym_unsigned] = ACTIONS(1121), + [anon_sym_long] = ACTIONS(1121), + [anon_sym_short] = ACTIONS(1121), + [sym_primitive_type] = ACTIONS(1121), + [anon_sym_enum] = ACTIONS(1121), + [anon_sym_struct] = ACTIONS(1121), + [anon_sym_union] = ACTIONS(1121), + [anon_sym_if] = ACTIONS(1121), + [anon_sym_switch] = ACTIONS(1121), + [anon_sym_while] = ACTIONS(1121), + [anon_sym_do] = ACTIONS(1121), + [anon_sym_for] = ACTIONS(1121), + [anon_sym_return] = ACTIONS(1121), + [anon_sym_break] = ACTIONS(1121), + [anon_sym_continue] = ACTIONS(1121), + [anon_sym_goto] = ACTIONS(1121), + [anon_sym_AMP] = ACTIONS(1123), + [anon_sym_BANG] = ACTIONS(1123), + [anon_sym_TILDE] = ACTIONS(1123), + [anon_sym_DASH] = ACTIONS(1121), + [anon_sym_PLUS] = ACTIONS(1121), + [anon_sym_DASH_DASH] = ACTIONS(1123), + [anon_sym_PLUS_PLUS] = ACTIONS(1123), + [anon_sym_sizeof] = ACTIONS(1121), + [sym_number_literal] = ACTIONS(1123), + [anon_sym_L_SQUOTE] = ACTIONS(1123), + [anon_sym_SQUOTE] = ACTIONS(1123), + [anon_sym_L_DQUOTE] = ACTIONS(1123), + [anon_sym_DQUOTE] = ACTIONS(1123), + [sym_true] = ACTIONS(1121), + [sym_false] = ACTIONS(1121), + [sym_null] = ACTIONS(1121), + [sym_comment] = ACTIONS(3), }, [352] = { - [sym_char_literal] = STATE(54), - [sym__expression] = STATE(54), - [sym_binary_expression] = STATE(54), - [sym_update_expression] = STATE(54), - [sym_call_expression] = STATE(54), - [sym_pointer_expression] = STATE(54), - [sym_unary_expression] = STATE(54), - [sym_sizeof_expression] = STATE(54), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(54), - [sym_concatenated_string] = STATE(54), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(54), - [sym_assignment_expression] = STATE(54), - [sym_cast_expression] = STATE(54), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(54), - [sym_true] = ACTIONS(153), - [sym_null] = ACTIONS(153), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(155), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(159), - [sym_identifier] = ACTIONS(153), - [anon_sym_BANG] = ACTIONS(155), - [anon_sym_DASH] = ACTIONS(161), - [sym_number_literal] = ACTIONS(163), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(159), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_RBRACK] = ACTIONS(1577), - [anon_sym_sizeof] = ACTIONS(165), + [sym_identifier] = ACTIONS(1075), + [aux_sym_preproc_include_token1] = ACTIONS(1075), + [aux_sym_preproc_def_token1] = ACTIONS(1075), + [aux_sym_preproc_if_token1] = ACTIONS(1075), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1075), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1075), + [sym_preproc_directive] = ACTIONS(1075), + [anon_sym_SEMI] = ACTIONS(1073), + [anon_sym_typedef] = ACTIONS(1075), + [anon_sym_extern] = ACTIONS(1075), + [anon_sym___attribute__] = ACTIONS(1075), + [anon_sym_LPAREN2] = ACTIONS(1073), + [anon_sym_LBRACE] = ACTIONS(1073), + [anon_sym_RBRACE] = ACTIONS(1073), + [anon_sym_STAR] = ACTIONS(1073), + [anon_sym_static] = ACTIONS(1075), + [anon_sym_auto] = ACTIONS(1075), + [anon_sym_register] = ACTIONS(1075), + [anon_sym_inline] = ACTIONS(1075), + [anon_sym_const] = ACTIONS(1075), + [anon_sym_volatile] = ACTIONS(1075), + [anon_sym_restrict] = ACTIONS(1075), + [anon_sym__Atomic] = ACTIONS(1075), + [anon_sym_signed] = ACTIONS(1075), + [anon_sym_unsigned] = ACTIONS(1075), + [anon_sym_long] = ACTIONS(1075), + [anon_sym_short] = ACTIONS(1075), + [sym_primitive_type] = ACTIONS(1075), + [anon_sym_enum] = ACTIONS(1075), + [anon_sym_struct] = ACTIONS(1075), + [anon_sym_union] = ACTIONS(1075), + [anon_sym_if] = ACTIONS(1075), + [anon_sym_switch] = ACTIONS(1075), + [anon_sym_while] = ACTIONS(1075), + [anon_sym_do] = ACTIONS(1075), + [anon_sym_for] = ACTIONS(1075), + [anon_sym_return] = ACTIONS(1075), + [anon_sym_break] = ACTIONS(1075), + [anon_sym_continue] = ACTIONS(1075), + [anon_sym_goto] = ACTIONS(1075), + [anon_sym_AMP] = ACTIONS(1073), + [anon_sym_BANG] = ACTIONS(1073), + [anon_sym_TILDE] = ACTIONS(1073), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_PLUS] = ACTIONS(1075), + [anon_sym_DASH_DASH] = ACTIONS(1073), + [anon_sym_PLUS_PLUS] = ACTIONS(1073), + [anon_sym_sizeof] = ACTIONS(1075), + [sym_number_literal] = ACTIONS(1073), + [anon_sym_L_SQUOTE] = ACTIONS(1073), + [anon_sym_SQUOTE] = ACTIONS(1073), + [anon_sym_L_DQUOTE] = ACTIONS(1073), + [anon_sym_DQUOTE] = ACTIONS(1073), + [sym_true] = ACTIONS(1075), + [sym_false] = ACTIONS(1075), + [sym_null] = ACTIONS(1075), + [sym_comment] = ACTIONS(3), }, [353] = { + [sym_identifier] = ACTIONS(1157), + [aux_sym_preproc_include_token1] = ACTIONS(1157), + [aux_sym_preproc_def_token1] = ACTIONS(1157), + [aux_sym_preproc_if_token1] = ACTIONS(1157), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1157), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1157), + [sym_preproc_directive] = ACTIONS(1157), + [anon_sym_SEMI] = ACTIONS(1159), + [anon_sym_typedef] = ACTIONS(1157), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym___attribute__] = ACTIONS(1157), + [anon_sym_LPAREN2] = ACTIONS(1159), + [anon_sym_LBRACE] = ACTIONS(1159), + [anon_sym_RBRACE] = ACTIONS(1159), + [anon_sym_STAR] = ACTIONS(1159), + [anon_sym_static] = ACTIONS(1157), + [anon_sym_auto] = ACTIONS(1157), + [anon_sym_register] = ACTIONS(1157), + [anon_sym_inline] = ACTIONS(1157), + [anon_sym_const] = ACTIONS(1157), + [anon_sym_volatile] = ACTIONS(1157), + [anon_sym_restrict] = ACTIONS(1157), + [anon_sym__Atomic] = ACTIONS(1157), + [anon_sym_signed] = ACTIONS(1157), + [anon_sym_unsigned] = ACTIONS(1157), + [anon_sym_long] = ACTIONS(1157), + [anon_sym_short] = ACTIONS(1157), + [sym_primitive_type] = ACTIONS(1157), + [anon_sym_enum] = ACTIONS(1157), + [anon_sym_struct] = ACTIONS(1157), + [anon_sym_union] = ACTIONS(1157), + [anon_sym_if] = ACTIONS(1157), + [anon_sym_switch] = ACTIONS(1157), + [anon_sym_while] = ACTIONS(1157), + [anon_sym_do] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1157), + [anon_sym_return] = ACTIONS(1157), + [anon_sym_break] = ACTIONS(1157), + [anon_sym_continue] = ACTIONS(1157), + [anon_sym_goto] = ACTIONS(1157), + [anon_sym_AMP] = ACTIONS(1159), + [anon_sym_BANG] = ACTIONS(1159), + [anon_sym_TILDE] = ACTIONS(1159), + [anon_sym_DASH] = ACTIONS(1157), + [anon_sym_PLUS] = ACTIONS(1157), + [anon_sym_DASH_DASH] = ACTIONS(1159), + [anon_sym_PLUS_PLUS] = ACTIONS(1159), + [anon_sym_sizeof] = ACTIONS(1157), + [sym_number_literal] = ACTIONS(1159), + [anon_sym_L_SQUOTE] = ACTIONS(1159), + [anon_sym_SQUOTE] = ACTIONS(1159), + [anon_sym_L_DQUOTE] = ACTIONS(1159), + [anon_sym_DQUOTE] = ACTIONS(1159), + [sym_true] = ACTIONS(1157), + [sym_false] = ACTIONS(1157), + [sym_null] = ACTIONS(1157), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(1579), - [anon_sym_LPAREN2] = ACTIONS(1579), - [anon_sym_COMMA] = ACTIONS(1579), - [anon_sym_LBRACK] = ACTIONS(1579), }, [354] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_RBRACK] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [sym_identifier] = ACTIONS(1079), + [aux_sym_preproc_include_token1] = ACTIONS(1079), + [aux_sym_preproc_def_token1] = ACTIONS(1079), + [aux_sym_preproc_if_token1] = ACTIONS(1079), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1079), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1079), + [sym_preproc_directive] = ACTIONS(1079), + [anon_sym_SEMI] = ACTIONS(1077), + [anon_sym_typedef] = ACTIONS(1079), + [anon_sym_extern] = ACTIONS(1079), + [anon_sym___attribute__] = ACTIONS(1079), + [anon_sym_LPAREN2] = ACTIONS(1077), + [anon_sym_LBRACE] = ACTIONS(1077), + [anon_sym_RBRACE] = ACTIONS(1077), + [anon_sym_STAR] = ACTIONS(1077), + [anon_sym_static] = ACTIONS(1079), + [anon_sym_auto] = ACTIONS(1079), + [anon_sym_register] = ACTIONS(1079), + [anon_sym_inline] = ACTIONS(1079), + [anon_sym_const] = ACTIONS(1079), + [anon_sym_volatile] = ACTIONS(1079), + [anon_sym_restrict] = ACTIONS(1079), + [anon_sym__Atomic] = ACTIONS(1079), + [anon_sym_signed] = ACTIONS(1079), + [anon_sym_unsigned] = ACTIONS(1079), + [anon_sym_long] = ACTIONS(1079), + [anon_sym_short] = ACTIONS(1079), + [sym_primitive_type] = ACTIONS(1079), + [anon_sym_enum] = ACTIONS(1079), + [anon_sym_struct] = ACTIONS(1079), + [anon_sym_union] = ACTIONS(1079), + [anon_sym_if] = ACTIONS(1079), + [anon_sym_switch] = ACTIONS(1079), + [anon_sym_while] = ACTIONS(1079), + [anon_sym_do] = ACTIONS(1079), + [anon_sym_for] = ACTIONS(1079), + [anon_sym_return] = ACTIONS(1079), + [anon_sym_break] = ACTIONS(1079), + [anon_sym_continue] = ACTIONS(1079), + [anon_sym_goto] = ACTIONS(1079), + [anon_sym_AMP] = ACTIONS(1077), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_TILDE] = ACTIONS(1077), + [anon_sym_DASH] = ACTIONS(1079), + [anon_sym_PLUS] = ACTIONS(1079), + [anon_sym_DASH_DASH] = ACTIONS(1077), + [anon_sym_PLUS_PLUS] = ACTIONS(1077), + [anon_sym_sizeof] = ACTIONS(1079), + [sym_number_literal] = ACTIONS(1077), + [anon_sym_L_SQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1077), + [anon_sym_L_DQUOTE] = ACTIONS(1077), + [anon_sym_DQUOTE] = ACTIONS(1077), + [sym_true] = ACTIONS(1079), + [sym_false] = ACTIONS(1079), + [sym_null] = ACTIONS(1079), + [sym_comment] = ACTIONS(3), }, [355] = { - [sym__expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_call_expression] = STATE(36), - [sym_type_qualifier] = STATE(144), - [sym_conditional_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_cast_expression] = STATE(437), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(437), - [sym_char_literal] = STATE(437), - [aux_sym_type_definition_repeat1] = STATE(144), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(437), - [sym_sizeof_expression] = STATE(437), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(437), - [sym_string_literal] = STATE(41), - [sym_true] = ACTIONS(1581), - [anon_sym_restrict] = ACTIONS(7), - [sym_null] = ACTIONS(1581), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_const] = ACTIONS(7), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_DASH_DASH] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(7), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(1583), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(1585), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(1581), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_RBRACK] = ACTIONS(1587), - [anon_sym_sizeof] = ACTIONS(33), + [sym_identifier] = ACTIONS(1087), + [aux_sym_preproc_include_token1] = ACTIONS(1087), + [aux_sym_preproc_def_token1] = ACTIONS(1087), + [aux_sym_preproc_if_token1] = ACTIONS(1087), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1087), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1087), + [sym_preproc_directive] = ACTIONS(1087), + [anon_sym_SEMI] = ACTIONS(1085), + [anon_sym_typedef] = ACTIONS(1087), + [anon_sym_extern] = ACTIONS(1087), + [anon_sym___attribute__] = ACTIONS(1087), + [anon_sym_LPAREN2] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_RBRACE] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(1085), + [anon_sym_static] = ACTIONS(1087), + [anon_sym_auto] = ACTIONS(1087), + [anon_sym_register] = ACTIONS(1087), + [anon_sym_inline] = ACTIONS(1087), + [anon_sym_const] = ACTIONS(1087), + [anon_sym_volatile] = ACTIONS(1087), + [anon_sym_restrict] = ACTIONS(1087), + [anon_sym__Atomic] = ACTIONS(1087), + [anon_sym_signed] = ACTIONS(1087), + [anon_sym_unsigned] = ACTIONS(1087), + [anon_sym_long] = ACTIONS(1087), + [anon_sym_short] = ACTIONS(1087), + [sym_primitive_type] = ACTIONS(1087), + [anon_sym_enum] = ACTIONS(1087), + [anon_sym_struct] = ACTIONS(1087), + [anon_sym_union] = ACTIONS(1087), + [anon_sym_if] = ACTIONS(1087), + [anon_sym_switch] = ACTIONS(1087), + [anon_sym_while] = ACTIONS(1087), + [anon_sym_do] = ACTIONS(1087), + [anon_sym_for] = ACTIONS(1087), + [anon_sym_return] = ACTIONS(1087), + [anon_sym_break] = ACTIONS(1087), + [anon_sym_continue] = ACTIONS(1087), + [anon_sym_goto] = ACTIONS(1087), + [anon_sym_AMP] = ACTIONS(1085), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_TILDE] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH_DASH] = ACTIONS(1085), + [anon_sym_PLUS_PLUS] = ACTIONS(1085), + [anon_sym_sizeof] = ACTIONS(1087), + [sym_number_literal] = ACTIONS(1085), + [anon_sym_L_SQUOTE] = ACTIONS(1085), + [anon_sym_SQUOTE] = ACTIONS(1085), + [anon_sym_L_DQUOTE] = ACTIONS(1085), + [anon_sym_DQUOTE] = ACTIONS(1085), + [sym_true] = ACTIONS(1087), + [sym_false] = ACTIONS(1087), + [sym_null] = ACTIONS(1087), + [sym_comment] = ACTIONS(3), }, [356] = { - [sym_parameter_list] = STATE(261), - [anon_sym_LBRACK] = ACTIONS(935), + [sym_identifier] = ACTIONS(1161), + [aux_sym_preproc_include_token1] = ACTIONS(1161), + [aux_sym_preproc_def_token1] = ACTIONS(1161), + [aux_sym_preproc_if_token1] = ACTIONS(1161), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1161), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1161), + [sym_preproc_directive] = ACTIONS(1161), + [anon_sym_SEMI] = ACTIONS(1163), + [anon_sym_typedef] = ACTIONS(1161), + [anon_sym_extern] = ACTIONS(1161), + [anon_sym___attribute__] = ACTIONS(1161), + [anon_sym_LPAREN2] = ACTIONS(1163), + [anon_sym_LBRACE] = ACTIONS(1163), + [anon_sym_RBRACE] = ACTIONS(1163), + [anon_sym_STAR] = ACTIONS(1163), + [anon_sym_static] = ACTIONS(1161), + [anon_sym_auto] = ACTIONS(1161), + [anon_sym_register] = ACTIONS(1161), + [anon_sym_inline] = ACTIONS(1161), + [anon_sym_const] = ACTIONS(1161), + [anon_sym_volatile] = ACTIONS(1161), + [anon_sym_restrict] = ACTIONS(1161), + [anon_sym__Atomic] = ACTIONS(1161), + [anon_sym_signed] = ACTIONS(1161), + [anon_sym_unsigned] = ACTIONS(1161), + [anon_sym_long] = ACTIONS(1161), + [anon_sym_short] = ACTIONS(1161), + [sym_primitive_type] = ACTIONS(1161), + [anon_sym_enum] = ACTIONS(1161), + [anon_sym_struct] = ACTIONS(1161), + [anon_sym_union] = ACTIONS(1161), + [anon_sym_if] = ACTIONS(1161), + [anon_sym_switch] = ACTIONS(1161), + [anon_sym_while] = ACTIONS(1161), + [anon_sym_do] = ACTIONS(1161), + [anon_sym_for] = ACTIONS(1161), + [anon_sym_return] = ACTIONS(1161), + [anon_sym_break] = ACTIONS(1161), + [anon_sym_continue] = ACTIONS(1161), + [anon_sym_goto] = ACTIONS(1161), + [anon_sym_AMP] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1163), + [anon_sym_TILDE] = ACTIONS(1163), + [anon_sym_DASH] = ACTIONS(1161), + [anon_sym_PLUS] = ACTIONS(1161), + [anon_sym_DASH_DASH] = ACTIONS(1163), + [anon_sym_PLUS_PLUS] = ACTIONS(1163), + [anon_sym_sizeof] = ACTIONS(1161), + [sym_number_literal] = ACTIONS(1163), + [anon_sym_L_SQUOTE] = ACTIONS(1163), + [anon_sym_SQUOTE] = ACTIONS(1163), + [anon_sym_L_DQUOTE] = ACTIONS(1163), + [anon_sym_DQUOTE] = ACTIONS(1163), + [sym_true] = ACTIONS(1161), + [sym_false] = ACTIONS(1161), + [sym_null] = ACTIONS(1161), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(1589), - [anon_sym_LPAREN2] = ACTIONS(652), - [anon_sym_COMMA] = ACTIONS(1589), - [anon_sym_SEMI] = ACTIONS(1589), }, [357] = { - [anon_sym_LBRACK] = ACTIONS(1591), + [sym_identifier] = ACTIONS(1165), + [aux_sym_preproc_include_token1] = ACTIONS(1165), + [aux_sym_preproc_def_token1] = ACTIONS(1165), + [aux_sym_preproc_if_token1] = ACTIONS(1165), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1165), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1165), + [sym_preproc_directive] = ACTIONS(1165), + [anon_sym_SEMI] = ACTIONS(1167), + [anon_sym_typedef] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1165), + [anon_sym___attribute__] = ACTIONS(1165), + [anon_sym_LPAREN2] = ACTIONS(1167), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_RBRACE] = ACTIONS(1167), + [anon_sym_STAR] = ACTIONS(1167), + [anon_sym_static] = ACTIONS(1165), + [anon_sym_auto] = ACTIONS(1165), + [anon_sym_register] = ACTIONS(1165), + [anon_sym_inline] = ACTIONS(1165), + [anon_sym_const] = ACTIONS(1165), + [anon_sym_volatile] = ACTIONS(1165), + [anon_sym_restrict] = ACTIONS(1165), + [anon_sym__Atomic] = ACTIONS(1165), + [anon_sym_signed] = ACTIONS(1165), + [anon_sym_unsigned] = ACTIONS(1165), + [anon_sym_long] = ACTIONS(1165), + [anon_sym_short] = ACTIONS(1165), + [sym_primitive_type] = ACTIONS(1165), + [anon_sym_enum] = ACTIONS(1165), + [anon_sym_struct] = ACTIONS(1165), + [anon_sym_union] = ACTIONS(1165), + [anon_sym_if] = ACTIONS(1165), + [anon_sym_switch] = ACTIONS(1165), + [anon_sym_while] = ACTIONS(1165), + [anon_sym_do] = ACTIONS(1165), + [anon_sym_for] = ACTIONS(1165), + [anon_sym_return] = ACTIONS(1165), + [anon_sym_break] = ACTIONS(1165), + [anon_sym_continue] = ACTIONS(1165), + [anon_sym_goto] = ACTIONS(1165), + [anon_sym_AMP] = ACTIONS(1167), + [anon_sym_BANG] = ACTIONS(1167), + [anon_sym_TILDE] = ACTIONS(1167), + [anon_sym_DASH] = ACTIONS(1165), + [anon_sym_PLUS] = ACTIONS(1165), + [anon_sym_DASH_DASH] = ACTIONS(1167), + [anon_sym_PLUS_PLUS] = ACTIONS(1167), + [anon_sym_sizeof] = ACTIONS(1165), + [sym_number_literal] = ACTIONS(1167), + [anon_sym_L_SQUOTE] = ACTIONS(1167), + [anon_sym_SQUOTE] = ACTIONS(1167), + [anon_sym_L_DQUOTE] = ACTIONS(1167), + [anon_sym_DQUOTE] = ACTIONS(1167), + [sym_true] = ACTIONS(1165), + [sym_false] = ACTIONS(1165), + [sym_null] = ACTIONS(1165), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(1591), - [anon_sym_LPAREN2] = ACTIONS(1591), - [anon_sym_COMMA] = ACTIONS(1591), - [anon_sym_SEMI] = ACTIONS(1591), }, [358] = { - [sym_parameter_list] = STATE(261), - [anon_sym_SEMI] = ACTIONS(1593), + [sym_identifier] = ACTIONS(1125), + [aux_sym_preproc_include_token1] = ACTIONS(1125), + [aux_sym_preproc_def_token1] = ACTIONS(1125), + [aux_sym_preproc_if_token1] = ACTIONS(1125), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1125), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1125), + [sym_preproc_directive] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1127), + [anon_sym_typedef] = ACTIONS(1125), + [anon_sym_extern] = ACTIONS(1125), + [anon_sym___attribute__] = ACTIONS(1125), + [anon_sym_LPAREN2] = ACTIONS(1127), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_RBRACE] = ACTIONS(1127), + [anon_sym_STAR] = ACTIONS(1127), + [anon_sym_static] = ACTIONS(1125), + [anon_sym_auto] = ACTIONS(1125), + [anon_sym_register] = ACTIONS(1125), + [anon_sym_inline] = ACTIONS(1125), + [anon_sym_const] = ACTIONS(1125), + [anon_sym_volatile] = ACTIONS(1125), + [anon_sym_restrict] = ACTIONS(1125), + [anon_sym__Atomic] = ACTIONS(1125), + [anon_sym_signed] = ACTIONS(1125), + [anon_sym_unsigned] = ACTIONS(1125), + [anon_sym_long] = ACTIONS(1125), + [anon_sym_short] = ACTIONS(1125), + [sym_primitive_type] = ACTIONS(1125), + [anon_sym_enum] = ACTIONS(1125), + [anon_sym_struct] = ACTIONS(1125), + [anon_sym_union] = ACTIONS(1125), + [anon_sym_if] = ACTIONS(1125), + [anon_sym_switch] = ACTIONS(1125), + [anon_sym_while] = ACTIONS(1125), + [anon_sym_do] = ACTIONS(1125), + [anon_sym_for] = ACTIONS(1125), + [anon_sym_return] = ACTIONS(1125), + [anon_sym_break] = ACTIONS(1125), + [anon_sym_continue] = ACTIONS(1125), + [anon_sym_goto] = ACTIONS(1125), + [anon_sym_AMP] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_TILDE] = ACTIONS(1127), + [anon_sym_DASH] = ACTIONS(1125), + [anon_sym_PLUS] = ACTIONS(1125), + [anon_sym_DASH_DASH] = ACTIONS(1127), + [anon_sym_PLUS_PLUS] = ACTIONS(1127), + [anon_sym_sizeof] = ACTIONS(1125), + [sym_number_literal] = ACTIONS(1127), + [anon_sym_L_SQUOTE] = ACTIONS(1127), + [anon_sym_SQUOTE] = ACTIONS(1127), + [anon_sym_L_DQUOTE] = ACTIONS(1127), + [anon_sym_DQUOTE] = ACTIONS(1127), + [sym_true] = ACTIONS(1125), + [sym_false] = ACTIONS(1125), + [sym_null] = ACTIONS(1125), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(652), - [anon_sym_COMMA] = ACTIONS(1593), - [anon_sym_LBRACK] = ACTIONS(935), }, [359] = { - [sym_char_literal] = STATE(54), - [sym__expression] = STATE(54), - [sym_binary_expression] = STATE(54), - [sym_update_expression] = STATE(54), - [sym_call_expression] = STATE(54), - [sym_pointer_expression] = STATE(54), - [sym_unary_expression] = STATE(54), - [sym_sizeof_expression] = STATE(54), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(54), - [sym_concatenated_string] = STATE(54), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(54), - [sym_assignment_expression] = STATE(54), - [sym_cast_expression] = STATE(54), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(54), - [sym_true] = ACTIONS(153), - [sym_null] = ACTIONS(153), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(155), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(159), - [sym_identifier] = ACTIONS(153), - [anon_sym_BANG] = ACTIONS(155), - [anon_sym_DASH] = ACTIONS(161), - [sym_number_literal] = ACTIONS(163), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(159), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_RBRACK] = ACTIONS(1595), - [anon_sym_sizeof] = ACTIONS(165), + [sym_identifier] = ACTIONS(1067), + [aux_sym_preproc_include_token1] = ACTIONS(1067), + [aux_sym_preproc_def_token1] = ACTIONS(1067), + [aux_sym_preproc_if_token1] = ACTIONS(1067), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1067), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1067), + [sym_preproc_directive] = ACTIONS(1067), + [anon_sym_SEMI] = ACTIONS(1065), + [anon_sym_typedef] = ACTIONS(1067), + [anon_sym_extern] = ACTIONS(1067), + [anon_sym___attribute__] = ACTIONS(1067), + [anon_sym_LPAREN2] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1065), + [anon_sym_RBRACE] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_static] = ACTIONS(1067), + [anon_sym_auto] = ACTIONS(1067), + [anon_sym_register] = ACTIONS(1067), + [anon_sym_inline] = ACTIONS(1067), + [anon_sym_const] = ACTIONS(1067), + [anon_sym_volatile] = ACTIONS(1067), + [anon_sym_restrict] = ACTIONS(1067), + [anon_sym__Atomic] = ACTIONS(1067), + [anon_sym_signed] = ACTIONS(1067), + [anon_sym_unsigned] = ACTIONS(1067), + [anon_sym_long] = ACTIONS(1067), + [anon_sym_short] = ACTIONS(1067), + [sym_primitive_type] = ACTIONS(1067), + [anon_sym_enum] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_union] = ACTIONS(1067), + [anon_sym_if] = ACTIONS(1067), + [anon_sym_switch] = ACTIONS(1067), + [anon_sym_while] = ACTIONS(1067), + [anon_sym_do] = ACTIONS(1067), + [anon_sym_for] = ACTIONS(1067), + [anon_sym_return] = ACTIONS(1067), + [anon_sym_break] = ACTIONS(1067), + [anon_sym_continue] = ACTIONS(1067), + [anon_sym_goto] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1065), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_PLUS] = ACTIONS(1067), + [anon_sym_DASH_DASH] = ACTIONS(1065), + [anon_sym_PLUS_PLUS] = ACTIONS(1065), + [anon_sym_sizeof] = ACTIONS(1067), + [sym_number_literal] = ACTIONS(1065), + [anon_sym_L_SQUOTE] = ACTIONS(1065), + [anon_sym_SQUOTE] = ACTIONS(1065), + [anon_sym_L_DQUOTE] = ACTIONS(1065), + [anon_sym_DQUOTE] = ACTIONS(1065), + [sym_true] = ACTIONS(1067), + [sym_false] = ACTIONS(1067), + [sym_null] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), }, [360] = { - [anon_sym_LBRACK] = ACTIONS(1597), + [ts_builtin_sym_end] = ACTIONS(1107), + [sym_identifier] = ACTIONS(1105), + [aux_sym_preproc_include_token1] = ACTIONS(1105), + [aux_sym_preproc_def_token1] = ACTIONS(1105), + [aux_sym_preproc_if_token1] = ACTIONS(1105), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1105), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1105), + [sym_preproc_directive] = ACTIONS(1105), + [anon_sym_SEMI] = ACTIONS(1107), + [anon_sym_typedef] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1105), + [anon_sym___attribute__] = ACTIONS(1105), + [anon_sym_LPAREN2] = ACTIONS(1107), + [anon_sym_LBRACE] = ACTIONS(1107), + [anon_sym_STAR] = ACTIONS(1107), + [anon_sym_static] = ACTIONS(1105), + [anon_sym_auto] = ACTIONS(1105), + [anon_sym_register] = ACTIONS(1105), + [anon_sym_inline] = ACTIONS(1105), + [anon_sym_const] = ACTIONS(1105), + [anon_sym_volatile] = ACTIONS(1105), + [anon_sym_restrict] = ACTIONS(1105), + [anon_sym__Atomic] = ACTIONS(1105), + [anon_sym_signed] = ACTIONS(1105), + [anon_sym_unsigned] = ACTIONS(1105), + [anon_sym_long] = ACTIONS(1105), + [anon_sym_short] = ACTIONS(1105), + [sym_primitive_type] = ACTIONS(1105), + [anon_sym_enum] = ACTIONS(1105), + [anon_sym_struct] = ACTIONS(1105), + [anon_sym_union] = ACTIONS(1105), + [anon_sym_if] = ACTIONS(1105), + [anon_sym_switch] = ACTIONS(1105), + [anon_sym_while] = ACTIONS(1105), + [anon_sym_do] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1105), + [anon_sym_return] = ACTIONS(1105), + [anon_sym_break] = ACTIONS(1105), + [anon_sym_continue] = ACTIONS(1105), + [anon_sym_goto] = ACTIONS(1105), + [anon_sym_AMP] = ACTIONS(1107), + [anon_sym_BANG] = ACTIONS(1107), + [anon_sym_TILDE] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1105), + [anon_sym_PLUS] = ACTIONS(1105), + [anon_sym_DASH_DASH] = ACTIONS(1107), + [anon_sym_PLUS_PLUS] = ACTIONS(1107), + [anon_sym_sizeof] = ACTIONS(1105), + [sym_number_literal] = ACTIONS(1107), + [anon_sym_L_SQUOTE] = ACTIONS(1107), + [anon_sym_SQUOTE] = ACTIONS(1107), + [anon_sym_L_DQUOTE] = ACTIONS(1107), + [anon_sym_DQUOTE] = ACTIONS(1107), + [sym_true] = ACTIONS(1105), + [sym_false] = ACTIONS(1105), + [sym_null] = ACTIONS(1105), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(1597), - [anon_sym_LPAREN2] = ACTIONS(1597), - [anon_sym_COMMA] = ACTIONS(1597), - [anon_sym_SEMI] = ACTIONS(1597), }, [361] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_RBRACK] = ACTIONS(1595), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [ts_builtin_sym_end] = ACTIONS(1175), + [sym_identifier] = ACTIONS(1173), + [aux_sym_preproc_include_token1] = ACTIONS(1173), + [aux_sym_preproc_def_token1] = ACTIONS(1173), + [aux_sym_preproc_if_token1] = ACTIONS(1173), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1173), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1173), + [sym_preproc_directive] = ACTIONS(1173), + [anon_sym_SEMI] = ACTIONS(1175), + [anon_sym_typedef] = ACTIONS(1173), + [anon_sym_extern] = ACTIONS(1173), + [anon_sym___attribute__] = ACTIONS(1173), + [anon_sym_LPAREN2] = ACTIONS(1175), + [anon_sym_LBRACE] = ACTIONS(1175), + [anon_sym_STAR] = ACTIONS(1175), + [anon_sym_static] = ACTIONS(1173), + [anon_sym_auto] = ACTIONS(1173), + [anon_sym_register] = ACTIONS(1173), + [anon_sym_inline] = ACTIONS(1173), + [anon_sym_const] = ACTIONS(1173), + [anon_sym_volatile] = ACTIONS(1173), + [anon_sym_restrict] = ACTIONS(1173), + [anon_sym__Atomic] = ACTIONS(1173), + [anon_sym_signed] = ACTIONS(1173), + [anon_sym_unsigned] = ACTIONS(1173), + [anon_sym_long] = ACTIONS(1173), + [anon_sym_short] = ACTIONS(1173), + [sym_primitive_type] = ACTIONS(1173), + [anon_sym_enum] = ACTIONS(1173), + [anon_sym_struct] = ACTIONS(1173), + [anon_sym_union] = ACTIONS(1173), + [anon_sym_if] = ACTIONS(1173), + [anon_sym_switch] = ACTIONS(1173), + [anon_sym_while] = ACTIONS(1173), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_for] = ACTIONS(1173), + [anon_sym_return] = ACTIONS(1173), + [anon_sym_break] = ACTIONS(1173), + [anon_sym_continue] = ACTIONS(1173), + [anon_sym_goto] = ACTIONS(1173), + [anon_sym_AMP] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1175), + [anon_sym_TILDE] = ACTIONS(1175), + [anon_sym_DASH] = ACTIONS(1173), + [anon_sym_PLUS] = ACTIONS(1173), + [anon_sym_DASH_DASH] = ACTIONS(1175), + [anon_sym_PLUS_PLUS] = ACTIONS(1175), + [anon_sym_sizeof] = ACTIONS(1173), + [sym_number_literal] = ACTIONS(1175), + [anon_sym_L_SQUOTE] = ACTIONS(1175), + [anon_sym_SQUOTE] = ACTIONS(1175), + [anon_sym_L_DQUOTE] = ACTIONS(1175), + [anon_sym_DQUOTE] = ACTIONS(1175), + [sym_true] = ACTIONS(1173), + [sym_false] = ACTIONS(1173), + [sym_null] = ACTIONS(1173), + [sym_comment] = ACTIONS(3), }, [362] = { - [sym__expression] = STATE(441), - [sym_binary_expression] = STATE(441), - [sym_update_expression] = STATE(441), - [sym_call_expression] = STATE(36), - [sym_type_qualifier] = STATE(144), - [sym_conditional_expression] = STATE(441), - [sym_assignment_expression] = STATE(441), - [sym_cast_expression] = STATE(441), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(441), - [sym_char_literal] = STATE(441), - [aux_sym_type_definition_repeat1] = STATE(144), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(441), - [sym_sizeof_expression] = STATE(441), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(441), - [sym_string_literal] = STATE(41), - [sym_true] = ACTIONS(1599), - [anon_sym_restrict] = ACTIONS(7), - [sym_null] = ACTIONS(1599), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_const] = ACTIONS(7), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_DASH_DASH] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(7), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(1601), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(1603), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(1599), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_RBRACK] = ACTIONS(1605), - [anon_sym_sizeof] = ACTIONS(33), + [sym_identifier] = ACTIONS(1071), + [aux_sym_preproc_include_token1] = ACTIONS(1071), + [aux_sym_preproc_def_token1] = ACTIONS(1071), + [aux_sym_preproc_if_token1] = ACTIONS(1071), + [aux_sym_preproc_if_token2] = ACTIONS(1071), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1071), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1071), + [sym_preproc_directive] = ACTIONS(1071), + [anon_sym_SEMI] = ACTIONS(1069), + [anon_sym_typedef] = ACTIONS(1071), + [anon_sym_extern] = ACTIONS(1071), + [anon_sym___attribute__] = ACTIONS(1071), + [anon_sym_LPAREN2] = ACTIONS(1069), + [anon_sym_LBRACE] = ACTIONS(1069), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_static] = ACTIONS(1071), + [anon_sym_auto] = ACTIONS(1071), + [anon_sym_register] = ACTIONS(1071), + [anon_sym_inline] = ACTIONS(1071), + [anon_sym_const] = ACTIONS(1071), + [anon_sym_volatile] = ACTIONS(1071), + [anon_sym_restrict] = ACTIONS(1071), + [anon_sym__Atomic] = ACTIONS(1071), + [anon_sym_signed] = ACTIONS(1071), + [anon_sym_unsigned] = ACTIONS(1071), + [anon_sym_long] = ACTIONS(1071), + [anon_sym_short] = ACTIONS(1071), + [sym_primitive_type] = ACTIONS(1071), + [anon_sym_enum] = ACTIONS(1071), + [anon_sym_struct] = ACTIONS(1071), + [anon_sym_union] = ACTIONS(1071), + [anon_sym_if] = ACTIONS(1071), + [anon_sym_switch] = ACTIONS(1071), + [anon_sym_while] = ACTIONS(1071), + [anon_sym_do] = ACTIONS(1071), + [anon_sym_for] = ACTIONS(1071), + [anon_sym_return] = ACTIONS(1071), + [anon_sym_break] = ACTIONS(1071), + [anon_sym_continue] = ACTIONS(1071), + [anon_sym_goto] = ACTIONS(1071), + [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(1071), + [anon_sym_DASH_DASH] = ACTIONS(1069), + [anon_sym_PLUS_PLUS] = ACTIONS(1069), + [anon_sym_sizeof] = ACTIONS(1071), + [sym_number_literal] = ACTIONS(1069), + [anon_sym_L_SQUOTE] = ACTIONS(1069), + [anon_sym_SQUOTE] = ACTIONS(1069), + [anon_sym_L_DQUOTE] = ACTIONS(1069), + [anon_sym_DQUOTE] = ACTIONS(1069), + [sym_true] = ACTIONS(1071), + [sym_false] = ACTIONS(1071), + [sym_null] = ACTIONS(1071), + [sym_comment] = ACTIONS(3), }, [363] = { - [anon_sym_case] = ACTIONS(1607), - [sym_true] = ACTIONS(1607), - [anon_sym_restrict] = ACTIONS(1607), - [sym_null] = ACTIONS(1607), - [anon_sym_goto] = ACTIONS(1607), - [anon_sym_const] = ACTIONS(1607), - [anon_sym_typedef] = ACTIONS(1607), - [anon_sym_DASH_DASH] = ACTIONS(1609), - [anon_sym_default] = ACTIONS(1607), - [anon_sym__Atomic] = ACTIONS(1607), - [sym_identifier] = ACTIONS(1607), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1607), - [sym_number_literal] = ACTIONS(1609), - [anon_sym_volatile] = ACTIONS(1607), - [anon_sym_SQUOTE] = ACTIONS(1609), - [anon_sym_extern] = ACTIONS(1607), - [anon_sym_PLUS_PLUS] = ACTIONS(1609), - [anon_sym_struct] = ACTIONS(1607), - [anon_sym_signed] = ACTIONS(1607), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1607), - [anon_sym_while] = ACTIONS(1607), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1607), - [anon_sym_L_SQUOTE] = ACTIONS(1609), - [anon_sym___attribute__] = ACTIONS(1607), - [anon_sym_sizeof] = ACTIONS(1607), - [anon_sym_LBRACE] = ACTIONS(1609), - [anon_sym_union] = ACTIONS(1607), - [anon_sym_unsigned] = ACTIONS(1607), - [anon_sym_short] = ACTIONS(1607), - [anon_sym_do] = ACTIONS(1607), - [sym_preproc_directive] = ACTIONS(1607), - [anon_sym_AMP] = ACTIONS(1609), - [aux_sym_preproc_if_token1] = ACTIONS(1607), - [anon_sym_TILDE] = ACTIONS(1609), - [anon_sym_L_DQUOTE] = ACTIONS(1609), - [anon_sym_LPAREN2] = ACTIONS(1609), - [anon_sym_RBRACE] = ACTIONS(1609), - [sym_primitive_type] = ACTIONS(1607), - [anon_sym_for] = ACTIONS(1607), - [anon_sym_break] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1609), - [aux_sym_preproc_include_token1] = ACTIONS(1607), - [anon_sym_DASH] = ACTIONS(1607), - [anon_sym_static] = ACTIONS(1607), - [anon_sym_DQUOTE] = ACTIONS(1609), - [anon_sym_register] = ACTIONS(1607), - [anon_sym_STAR] = ACTIONS(1609), - [anon_sym_if] = ACTIONS(1607), - [anon_sym_switch] = ACTIONS(1607), - [anon_sym_enum] = ACTIONS(1607), - [sym_false] = ACTIONS(1607), - [ts_builtin_sym_end] = ACTIONS(1609), - [anon_sym_return] = ACTIONS(1607), - [anon_sym_continue] = ACTIONS(1607), - [anon_sym_SEMI] = ACTIONS(1609), - [aux_sym_preproc_def_token1] = ACTIONS(1607), - [anon_sym_PLUS] = ACTIONS(1607), - [anon_sym_auto] = ACTIONS(1607), - [anon_sym_inline] = ACTIONS(1607), + [sym_identifier] = ACTIONS(1121), + [aux_sym_preproc_include_token1] = ACTIONS(1121), + [aux_sym_preproc_def_token1] = ACTIONS(1121), + [aux_sym_preproc_if_token1] = ACTIONS(1121), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1121), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1121), + [sym_preproc_directive] = ACTIONS(1121), + [anon_sym_SEMI] = ACTIONS(1123), + [anon_sym_typedef] = ACTIONS(1121), + [anon_sym_extern] = ACTIONS(1121), + [anon_sym___attribute__] = ACTIONS(1121), + [anon_sym_LPAREN2] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1123), + [anon_sym_RBRACE] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1123), + [anon_sym_static] = ACTIONS(1121), + [anon_sym_auto] = ACTIONS(1121), + [anon_sym_register] = ACTIONS(1121), + [anon_sym_inline] = ACTIONS(1121), + [anon_sym_const] = ACTIONS(1121), + [anon_sym_volatile] = ACTIONS(1121), + [anon_sym_restrict] = ACTIONS(1121), + [anon_sym__Atomic] = ACTIONS(1121), + [anon_sym_signed] = ACTIONS(1121), + [anon_sym_unsigned] = ACTIONS(1121), + [anon_sym_long] = ACTIONS(1121), + [anon_sym_short] = ACTIONS(1121), + [sym_primitive_type] = ACTIONS(1121), + [anon_sym_enum] = ACTIONS(1121), + [anon_sym_struct] = ACTIONS(1121), + [anon_sym_union] = ACTIONS(1121), + [anon_sym_if] = ACTIONS(1121), + [anon_sym_switch] = ACTIONS(1121), + [anon_sym_while] = ACTIONS(1121), + [anon_sym_do] = ACTIONS(1121), + [anon_sym_for] = ACTIONS(1121), + [anon_sym_return] = ACTIONS(1121), + [anon_sym_break] = ACTIONS(1121), + [anon_sym_continue] = ACTIONS(1121), + [anon_sym_goto] = ACTIONS(1121), + [anon_sym_AMP] = ACTIONS(1123), + [anon_sym_BANG] = ACTIONS(1123), + [anon_sym_TILDE] = ACTIONS(1123), + [anon_sym_DASH] = ACTIONS(1121), + [anon_sym_PLUS] = ACTIONS(1121), + [anon_sym_DASH_DASH] = ACTIONS(1123), + [anon_sym_PLUS_PLUS] = ACTIONS(1123), + [anon_sym_sizeof] = ACTIONS(1121), + [sym_number_literal] = ACTIONS(1123), + [anon_sym_L_SQUOTE] = ACTIONS(1123), + [anon_sym_SQUOTE] = ACTIONS(1123), + [anon_sym_L_DQUOTE] = ACTIONS(1123), + [anon_sym_DQUOTE] = ACTIONS(1123), + [sym_true] = ACTIONS(1121), + [sym_false] = ACTIONS(1121), + [sym_null] = ACTIONS(1121), + [sym_comment] = ACTIONS(3), }, [364] = { - [aux_sym_type_definition_repeat2] = STATE(364), + [sym_identifier] = ACTIONS(1109), + [aux_sym_preproc_include_token1] = ACTIONS(1109), + [aux_sym_preproc_def_token1] = ACTIONS(1109), + [aux_sym_preproc_if_token1] = ACTIONS(1109), + [aux_sym_preproc_if_token2] = ACTIONS(1109), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1109), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1109), + [sym_preproc_directive] = ACTIONS(1109), + [anon_sym_SEMI] = ACTIONS(1111), + [anon_sym_typedef] = ACTIONS(1109), + [anon_sym_extern] = ACTIONS(1109), + [anon_sym___attribute__] = ACTIONS(1109), + [anon_sym_LPAREN2] = ACTIONS(1111), + [anon_sym_LBRACE] = ACTIONS(1111), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_static] = ACTIONS(1109), + [anon_sym_auto] = ACTIONS(1109), + [anon_sym_register] = ACTIONS(1109), + [anon_sym_inline] = ACTIONS(1109), + [anon_sym_const] = ACTIONS(1109), + [anon_sym_volatile] = ACTIONS(1109), + [anon_sym_restrict] = ACTIONS(1109), + [anon_sym__Atomic] = ACTIONS(1109), + [anon_sym_signed] = ACTIONS(1109), + [anon_sym_unsigned] = ACTIONS(1109), + [anon_sym_long] = ACTIONS(1109), + [anon_sym_short] = ACTIONS(1109), + [sym_primitive_type] = ACTIONS(1109), + [anon_sym_enum] = ACTIONS(1109), + [anon_sym_struct] = ACTIONS(1109), + [anon_sym_union] = ACTIONS(1109), + [anon_sym_if] = ACTIONS(1109), + [anon_sym_switch] = ACTIONS(1109), + [anon_sym_while] = ACTIONS(1109), + [anon_sym_do] = ACTIONS(1109), + [anon_sym_for] = ACTIONS(1109), + [anon_sym_return] = ACTIONS(1109), + [anon_sym_break] = ACTIONS(1109), + [anon_sym_continue] = ACTIONS(1109), + [anon_sym_goto] = ACTIONS(1109), + [anon_sym_AMP] = ACTIONS(1111), + [anon_sym_BANG] = ACTIONS(1111), + [anon_sym_TILDE] = ACTIONS(1111), + [anon_sym_DASH] = ACTIONS(1109), + [anon_sym_PLUS] = ACTIONS(1109), + [anon_sym_DASH_DASH] = ACTIONS(1111), + [anon_sym_PLUS_PLUS] = ACTIONS(1111), + [anon_sym_sizeof] = ACTIONS(1109), + [sym_number_literal] = ACTIONS(1111), + [anon_sym_L_SQUOTE] = ACTIONS(1111), + [anon_sym_SQUOTE] = ACTIONS(1111), + [anon_sym_L_DQUOTE] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1111), + [sym_true] = ACTIONS(1109), + [sym_false] = ACTIONS(1109), + [sym_null] = ACTIONS(1109), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1611), - [anon_sym_SEMI] = ACTIONS(1614), }, [365] = { - [anon_sym_case] = ACTIONS(1616), - [sym_true] = ACTIONS(1616), - [anon_sym_restrict] = ACTIONS(1616), - [sym_null] = ACTIONS(1616), - [anon_sym_goto] = ACTIONS(1616), - [anon_sym_const] = ACTIONS(1616), - [anon_sym_typedef] = ACTIONS(1616), - [anon_sym_DASH_DASH] = ACTIONS(1618), - [anon_sym_default] = ACTIONS(1616), - [anon_sym__Atomic] = ACTIONS(1616), - [sym_identifier] = ACTIONS(1616), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1616), - [sym_number_literal] = ACTIONS(1618), - [anon_sym_volatile] = ACTIONS(1616), - [anon_sym_SQUOTE] = ACTIONS(1618), - [anon_sym_extern] = ACTIONS(1616), - [anon_sym_PLUS_PLUS] = ACTIONS(1618), - [anon_sym_struct] = ACTIONS(1616), - [anon_sym_signed] = ACTIONS(1616), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1616), - [anon_sym_while] = ACTIONS(1616), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1616), - [anon_sym_L_SQUOTE] = ACTIONS(1618), - [anon_sym___attribute__] = ACTIONS(1616), - [anon_sym_sizeof] = ACTIONS(1616), - [anon_sym_LBRACE] = ACTIONS(1618), - [anon_sym_union] = ACTIONS(1616), - [anon_sym_unsigned] = ACTIONS(1616), - [anon_sym_short] = ACTIONS(1616), - [anon_sym_do] = ACTIONS(1616), - [sym_preproc_directive] = ACTIONS(1616), - [anon_sym_AMP] = ACTIONS(1618), - [aux_sym_preproc_if_token1] = ACTIONS(1616), - [anon_sym_TILDE] = ACTIONS(1618), - [anon_sym_L_DQUOTE] = ACTIONS(1618), - [anon_sym_LPAREN2] = ACTIONS(1618), - [anon_sym_RBRACE] = ACTIONS(1618), - [sym_primitive_type] = ACTIONS(1616), - [anon_sym_for] = ACTIONS(1616), - [anon_sym_break] = ACTIONS(1616), - [anon_sym_BANG] = ACTIONS(1618), - [aux_sym_preproc_include_token1] = ACTIONS(1616), - [anon_sym_DASH] = ACTIONS(1616), - [anon_sym_static] = ACTIONS(1616), - [anon_sym_DQUOTE] = ACTIONS(1618), - [anon_sym_register] = ACTIONS(1616), - [anon_sym_STAR] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(1616), - [anon_sym_switch] = ACTIONS(1616), - [anon_sym_enum] = ACTIONS(1616), - [sym_false] = ACTIONS(1616), - [ts_builtin_sym_end] = ACTIONS(1618), - [anon_sym_return] = ACTIONS(1616), - [anon_sym_continue] = ACTIONS(1616), - [anon_sym_SEMI] = ACTIONS(1618), - [aux_sym_preproc_def_token1] = ACTIONS(1616), - [anon_sym_PLUS] = ACTIONS(1616), - [anon_sym_auto] = ACTIONS(1616), - [anon_sym_inline] = ACTIONS(1616), + [ts_builtin_sym_end] = ACTIONS(1139), + [sym_identifier] = ACTIONS(1137), + [aux_sym_preproc_include_token1] = ACTIONS(1137), + [aux_sym_preproc_def_token1] = ACTIONS(1137), + [aux_sym_preproc_if_token1] = ACTIONS(1137), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1137), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1137), + [sym_preproc_directive] = ACTIONS(1137), + [anon_sym_SEMI] = ACTIONS(1139), + [anon_sym_typedef] = ACTIONS(1137), + [anon_sym_extern] = ACTIONS(1137), + [anon_sym___attribute__] = ACTIONS(1137), + [anon_sym_LPAREN2] = ACTIONS(1139), + [anon_sym_LBRACE] = ACTIONS(1139), + [anon_sym_STAR] = ACTIONS(1139), + [anon_sym_static] = ACTIONS(1137), + [anon_sym_auto] = ACTIONS(1137), + [anon_sym_register] = ACTIONS(1137), + [anon_sym_inline] = ACTIONS(1137), + [anon_sym_const] = ACTIONS(1137), + [anon_sym_volatile] = ACTIONS(1137), + [anon_sym_restrict] = ACTIONS(1137), + [anon_sym__Atomic] = ACTIONS(1137), + [anon_sym_signed] = ACTIONS(1137), + [anon_sym_unsigned] = ACTIONS(1137), + [anon_sym_long] = ACTIONS(1137), + [anon_sym_short] = ACTIONS(1137), + [sym_primitive_type] = ACTIONS(1137), + [anon_sym_enum] = ACTIONS(1137), + [anon_sym_struct] = ACTIONS(1137), + [anon_sym_union] = ACTIONS(1137), + [anon_sym_if] = ACTIONS(1137), + [anon_sym_switch] = ACTIONS(1137), + [anon_sym_while] = ACTIONS(1137), + [anon_sym_do] = ACTIONS(1137), + [anon_sym_for] = ACTIONS(1137), + [anon_sym_return] = ACTIONS(1137), + [anon_sym_break] = ACTIONS(1137), + [anon_sym_continue] = ACTIONS(1137), + [anon_sym_goto] = ACTIONS(1137), + [anon_sym_AMP] = ACTIONS(1139), + [anon_sym_BANG] = ACTIONS(1139), + [anon_sym_TILDE] = ACTIONS(1139), + [anon_sym_DASH] = ACTIONS(1137), + [anon_sym_PLUS] = ACTIONS(1137), + [anon_sym_DASH_DASH] = ACTIONS(1139), + [anon_sym_PLUS_PLUS] = ACTIONS(1139), + [anon_sym_sizeof] = ACTIONS(1137), + [sym_number_literal] = ACTIONS(1139), + [anon_sym_L_SQUOTE] = ACTIONS(1139), + [anon_sym_SQUOTE] = ACTIONS(1139), + [anon_sym_L_DQUOTE] = ACTIONS(1139), + [anon_sym_DQUOTE] = ACTIONS(1139), + [sym_true] = ACTIONS(1137), + [sym_false] = ACTIONS(1137), + [sym_null] = ACTIONS(1137), + [sym_comment] = ACTIONS(3), }, [366] = { - [aux_sym_type_definition_repeat2] = STATE(364), - [anon_sym_SEMI] = ACTIONS(1620), - [anon_sym_COMMA] = ACTIONS(931), + [sym_identifier] = ACTIONS(1125), + [aux_sym_preproc_include_token1] = ACTIONS(1125), + [aux_sym_preproc_def_token1] = ACTIONS(1125), + [aux_sym_preproc_if_token1] = ACTIONS(1125), + [aux_sym_preproc_if_token2] = ACTIONS(1125), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1125), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1125), + [sym_preproc_directive] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1127), + [anon_sym_typedef] = ACTIONS(1125), + [anon_sym_extern] = ACTIONS(1125), + [anon_sym___attribute__] = ACTIONS(1125), + [anon_sym_LPAREN2] = ACTIONS(1127), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_STAR] = ACTIONS(1127), + [anon_sym_static] = ACTIONS(1125), + [anon_sym_auto] = ACTIONS(1125), + [anon_sym_register] = ACTIONS(1125), + [anon_sym_inline] = ACTIONS(1125), + [anon_sym_const] = ACTIONS(1125), + [anon_sym_volatile] = ACTIONS(1125), + [anon_sym_restrict] = ACTIONS(1125), + [anon_sym__Atomic] = ACTIONS(1125), + [anon_sym_signed] = ACTIONS(1125), + [anon_sym_unsigned] = ACTIONS(1125), + [anon_sym_long] = ACTIONS(1125), + [anon_sym_short] = ACTIONS(1125), + [sym_primitive_type] = ACTIONS(1125), + [anon_sym_enum] = ACTIONS(1125), + [anon_sym_struct] = ACTIONS(1125), + [anon_sym_union] = ACTIONS(1125), + [anon_sym_if] = ACTIONS(1125), + [anon_sym_switch] = ACTIONS(1125), + [anon_sym_while] = ACTIONS(1125), + [anon_sym_do] = ACTIONS(1125), + [anon_sym_for] = ACTIONS(1125), + [anon_sym_return] = ACTIONS(1125), + [anon_sym_break] = ACTIONS(1125), + [anon_sym_continue] = ACTIONS(1125), + [anon_sym_goto] = ACTIONS(1125), + [anon_sym_AMP] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_TILDE] = ACTIONS(1127), + [anon_sym_DASH] = ACTIONS(1125), + [anon_sym_PLUS] = ACTIONS(1125), + [anon_sym_DASH_DASH] = ACTIONS(1127), + [anon_sym_PLUS_PLUS] = ACTIONS(1127), + [anon_sym_sizeof] = ACTIONS(1125), + [sym_number_literal] = ACTIONS(1127), + [anon_sym_L_SQUOTE] = ACTIONS(1127), + [anon_sym_SQUOTE] = ACTIONS(1127), + [anon_sym_L_DQUOTE] = ACTIONS(1127), + [anon_sym_DQUOTE] = ACTIONS(1127), + [sym_true] = ACTIONS(1125), + [sym_false] = ACTIONS(1125), + [sym_null] = ACTIONS(1125), [sym_comment] = ACTIONS(3), }, [367] = { - [sym_if_statement] = STATE(443), - [sym_do_statement] = STATE(443), - [sym_for_statement] = STATE(443), - [sym__expression] = STATE(34), - [sym_comma_expression] = STATE(35), - [sym_binary_expression] = STATE(34), - [sym_update_expression] = STATE(34), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(443), - [sym_return_statement] = STATE(443), - [sym_break_statement] = STATE(443), - [sym_conditional_expression] = STATE(34), - [sym_assignment_expression] = STATE(34), - [sym_cast_expression] = STATE(34), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(34), - [sym_char_literal] = STATE(34), - [sym_labeled_statement] = STATE(443), - [sym_while_statement] = STATE(443), - [sym_continue_statement] = STATE(443), - [sym_goto_statement] = STATE(443), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(34), - [sym_sizeof_expression] = STATE(34), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(34), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(443), - [sym_expression_statement] = STATE(443), - [anon_sym_LBRACE] = ACTIONS(35), - [sym_true] = ACTIONS(5), - [sym_null] = ACTIONS(5), - [anon_sym_do] = ACTIONS(39), - [anon_sym_goto] = ACTIONS(9), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(477), - [anon_sym_for] = ACTIONS(55), - [anon_sym_break] = ACTIONS(57), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(65), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(67), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(5), - [anon_sym_return] = ACTIONS(73), - [anon_sym_while] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_SEMI] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_identifier] = ACTIONS(1137), + [aux_sym_preproc_include_token1] = ACTIONS(1137), + [aux_sym_preproc_def_token1] = ACTIONS(1137), + [aux_sym_preproc_if_token1] = ACTIONS(1137), + [aux_sym_preproc_if_token2] = ACTIONS(1137), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1137), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1137), + [sym_preproc_directive] = ACTIONS(1137), + [anon_sym_SEMI] = ACTIONS(1139), + [anon_sym_typedef] = ACTIONS(1137), + [anon_sym_extern] = ACTIONS(1137), + [anon_sym___attribute__] = ACTIONS(1137), + [anon_sym_LPAREN2] = ACTIONS(1139), + [anon_sym_LBRACE] = ACTIONS(1139), + [anon_sym_STAR] = ACTIONS(1139), + [anon_sym_static] = ACTIONS(1137), + [anon_sym_auto] = ACTIONS(1137), + [anon_sym_register] = ACTIONS(1137), + [anon_sym_inline] = ACTIONS(1137), + [anon_sym_const] = ACTIONS(1137), + [anon_sym_volatile] = ACTIONS(1137), + [anon_sym_restrict] = ACTIONS(1137), + [anon_sym__Atomic] = ACTIONS(1137), + [anon_sym_signed] = ACTIONS(1137), + [anon_sym_unsigned] = ACTIONS(1137), + [anon_sym_long] = ACTIONS(1137), + [anon_sym_short] = ACTIONS(1137), + [sym_primitive_type] = ACTIONS(1137), + [anon_sym_enum] = ACTIONS(1137), + [anon_sym_struct] = ACTIONS(1137), + [anon_sym_union] = ACTIONS(1137), + [anon_sym_if] = ACTIONS(1137), + [anon_sym_switch] = ACTIONS(1137), + [anon_sym_while] = ACTIONS(1137), + [anon_sym_do] = ACTIONS(1137), + [anon_sym_for] = ACTIONS(1137), + [anon_sym_return] = ACTIONS(1137), + [anon_sym_break] = ACTIONS(1137), + [anon_sym_continue] = ACTIONS(1137), + [anon_sym_goto] = ACTIONS(1137), + [anon_sym_AMP] = ACTIONS(1139), + [anon_sym_BANG] = ACTIONS(1139), + [anon_sym_TILDE] = ACTIONS(1139), + [anon_sym_DASH] = ACTIONS(1137), + [anon_sym_PLUS] = ACTIONS(1137), + [anon_sym_DASH_DASH] = ACTIONS(1139), + [anon_sym_PLUS_PLUS] = ACTIONS(1139), + [anon_sym_sizeof] = ACTIONS(1137), + [sym_number_literal] = ACTIONS(1139), + [anon_sym_L_SQUOTE] = ACTIONS(1139), + [anon_sym_SQUOTE] = ACTIONS(1139), + [anon_sym_L_DQUOTE] = ACTIONS(1139), + [anon_sym_DQUOTE] = ACTIONS(1139), + [sym_true] = ACTIONS(1137), + [sym_false] = ACTIONS(1137), + [sym_null] = ACTIONS(1137), + [sym_comment] = ACTIONS(3), }, [368] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_COMMA] = ACTIONS(293), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_RPAREN] = ACTIONS(1622), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [sym_identifier] = ACTIONS(1097), + [aux_sym_preproc_include_token1] = ACTIONS(1097), + [aux_sym_preproc_def_token1] = ACTIONS(1097), + [aux_sym_preproc_if_token1] = ACTIONS(1097), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1097), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1097), + [sym_preproc_directive] = ACTIONS(1097), + [anon_sym_SEMI] = ACTIONS(1099), + [anon_sym_typedef] = ACTIONS(1097), + [anon_sym_extern] = ACTIONS(1097), + [anon_sym___attribute__] = ACTIONS(1097), + [anon_sym_LPAREN2] = ACTIONS(1099), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_RBRACE] = ACTIONS(1099), + [anon_sym_STAR] = ACTIONS(1099), + [anon_sym_static] = ACTIONS(1097), + [anon_sym_auto] = ACTIONS(1097), + [anon_sym_register] = ACTIONS(1097), + [anon_sym_inline] = ACTIONS(1097), + [anon_sym_const] = ACTIONS(1097), + [anon_sym_volatile] = ACTIONS(1097), + [anon_sym_restrict] = ACTIONS(1097), + [anon_sym__Atomic] = ACTIONS(1097), + [anon_sym_signed] = ACTIONS(1097), + [anon_sym_unsigned] = ACTIONS(1097), + [anon_sym_long] = ACTIONS(1097), + [anon_sym_short] = ACTIONS(1097), + [sym_primitive_type] = ACTIONS(1097), + [anon_sym_enum] = ACTIONS(1097), + [anon_sym_struct] = ACTIONS(1097), + [anon_sym_union] = ACTIONS(1097), + [anon_sym_if] = ACTIONS(1097), + [anon_sym_switch] = ACTIONS(1097), + [anon_sym_while] = ACTIONS(1097), + [anon_sym_do] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1097), + [anon_sym_return] = ACTIONS(1097), + [anon_sym_break] = ACTIONS(1097), + [anon_sym_continue] = ACTIONS(1097), + [anon_sym_goto] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), + [anon_sym_TILDE] = ACTIONS(1099), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_sizeof] = ACTIONS(1097), + [sym_number_literal] = ACTIONS(1099), + [anon_sym_L_SQUOTE] = ACTIONS(1099), + [anon_sym_SQUOTE] = ACTIONS(1099), + [anon_sym_L_DQUOTE] = ACTIONS(1099), + [anon_sym_DQUOTE] = ACTIONS(1099), + [sym_true] = ACTIONS(1097), + [sym_false] = ACTIONS(1097), + [sym_null] = ACTIONS(1097), + [sym_comment] = ACTIONS(3), }, [369] = { - [anon_sym_RPAREN] = ACTIONS(1622), + [sym_identifier] = ACTIONS(1083), + [aux_sym_preproc_include_token1] = ACTIONS(1083), + [aux_sym_preproc_def_token1] = ACTIONS(1083), + [aux_sym_preproc_if_token1] = ACTIONS(1083), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1083), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1083), + [sym_preproc_directive] = ACTIONS(1083), + [anon_sym_SEMI] = ACTIONS(1081), + [anon_sym_typedef] = ACTIONS(1083), + [anon_sym_extern] = ACTIONS(1083), + [anon_sym___attribute__] = ACTIONS(1083), + [anon_sym_LPAREN2] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1081), + [anon_sym_RBRACE] = ACTIONS(1081), + [anon_sym_STAR] = ACTIONS(1081), + [anon_sym_static] = ACTIONS(1083), + [anon_sym_auto] = ACTIONS(1083), + [anon_sym_register] = ACTIONS(1083), + [anon_sym_inline] = ACTIONS(1083), + [anon_sym_const] = ACTIONS(1083), + [anon_sym_volatile] = ACTIONS(1083), + [anon_sym_restrict] = ACTIONS(1083), + [anon_sym__Atomic] = ACTIONS(1083), + [anon_sym_signed] = ACTIONS(1083), + [anon_sym_unsigned] = ACTIONS(1083), + [anon_sym_long] = ACTIONS(1083), + [anon_sym_short] = ACTIONS(1083), + [sym_primitive_type] = ACTIONS(1083), + [anon_sym_enum] = ACTIONS(1083), + [anon_sym_struct] = ACTIONS(1083), + [anon_sym_union] = ACTIONS(1083), + [anon_sym_if] = ACTIONS(1083), + [anon_sym_switch] = ACTIONS(1083), + [anon_sym_while] = ACTIONS(1083), + [anon_sym_do] = ACTIONS(1083), + [anon_sym_for] = ACTIONS(1083), + [anon_sym_return] = ACTIONS(1083), + [anon_sym_break] = ACTIONS(1083), + [anon_sym_continue] = ACTIONS(1083), + [anon_sym_goto] = ACTIONS(1083), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_BANG] = ACTIONS(1081), + [anon_sym_TILDE] = ACTIONS(1081), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH_DASH] = ACTIONS(1081), + [anon_sym_PLUS_PLUS] = ACTIONS(1081), + [anon_sym_sizeof] = ACTIONS(1083), + [sym_number_literal] = ACTIONS(1081), + [anon_sym_L_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_L_DQUOTE] = ACTIONS(1081), + [anon_sym_DQUOTE] = ACTIONS(1081), + [sym_true] = ACTIONS(1083), + [sym_false] = ACTIONS(1083), + [sym_null] = ACTIONS(1083), [sym_comment] = ACTIONS(3), }, [370] = { - [sym_char_literal] = STATE(446), - [sym__expression] = STATE(446), - [sym_comma_expression] = STATE(447), - [sym_binary_expression] = STATE(446), - [sym_update_expression] = STATE(446), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(446), - [sym_sizeof_expression] = STATE(446), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(446), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(446), - [sym_assignment_expression] = STATE(446), - [sym_cast_expression] = STATE(446), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(446), - [sym_true] = ACTIONS(1624), - [sym_null] = ACTIONS(1624), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(1626), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(1624), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_RPAREN] = ACTIONS(1628), - [anon_sym_sizeof] = ACTIONS(33), + [sym_identifier] = ACTIONS(1113), + [aux_sym_preproc_include_token1] = ACTIONS(1113), + [aux_sym_preproc_def_token1] = ACTIONS(1113), + [aux_sym_preproc_if_token1] = ACTIONS(1113), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1113), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1113), + [sym_preproc_directive] = ACTIONS(1113), + [anon_sym_SEMI] = ACTIONS(1115), + [anon_sym_typedef] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1113), + [anon_sym___attribute__] = ACTIONS(1113), + [anon_sym_LPAREN2] = ACTIONS(1115), + [anon_sym_LBRACE] = ACTIONS(1115), + [anon_sym_RBRACE] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_static] = ACTIONS(1113), + [anon_sym_auto] = ACTIONS(1113), + [anon_sym_register] = ACTIONS(1113), + [anon_sym_inline] = ACTIONS(1113), + [anon_sym_const] = ACTIONS(1113), + [anon_sym_volatile] = ACTIONS(1113), + [anon_sym_restrict] = ACTIONS(1113), + [anon_sym__Atomic] = ACTIONS(1113), + [anon_sym_signed] = ACTIONS(1113), + [anon_sym_unsigned] = ACTIONS(1113), + [anon_sym_long] = ACTIONS(1113), + [anon_sym_short] = ACTIONS(1113), + [sym_primitive_type] = ACTIONS(1113), + [anon_sym_enum] = ACTIONS(1113), + [anon_sym_struct] = ACTIONS(1113), + [anon_sym_union] = ACTIONS(1113), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_switch] = ACTIONS(1113), + [anon_sym_while] = ACTIONS(1113), + [anon_sym_do] = ACTIONS(1113), + [anon_sym_for] = ACTIONS(1113), + [anon_sym_return] = ACTIONS(1113), + [anon_sym_break] = ACTIONS(1113), + [anon_sym_continue] = ACTIONS(1113), + [anon_sym_goto] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(1115), + [anon_sym_BANG] = ACTIONS(1115), + [anon_sym_TILDE] = ACTIONS(1115), + [anon_sym_DASH] = ACTIONS(1113), + [anon_sym_PLUS] = ACTIONS(1113), + [anon_sym_DASH_DASH] = ACTIONS(1115), + [anon_sym_PLUS_PLUS] = ACTIONS(1115), + [anon_sym_sizeof] = ACTIONS(1113), + [sym_number_literal] = ACTIONS(1115), + [anon_sym_L_SQUOTE] = ACTIONS(1115), + [anon_sym_SQUOTE] = ACTIONS(1115), + [anon_sym_L_DQUOTE] = ACTIONS(1115), + [anon_sym_DQUOTE] = ACTIONS(1115), + [sym_true] = ACTIONS(1113), + [sym_false] = ACTIONS(1113), + [sym_null] = ACTIONS(1113), + [sym_comment] = ACTIONS(3), }, [371] = { - [sym_char_literal] = STATE(449), - [sym__expression] = STATE(449), - [sym_comma_expression] = STATE(450), - [sym_binary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(449), - [sym_sizeof_expression] = STATE(449), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(449), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_cast_expression] = STATE(449), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(449), - [sym_true] = ACTIONS(1630), - [sym_null] = ACTIONS(1630), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(1632), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(1630), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_RPAREN] = ACTIONS(1634), - [anon_sym_sizeof] = ACTIONS(33), + [sym_identifier] = ACTIONS(1101), + [aux_sym_preproc_include_token1] = ACTIONS(1101), + [aux_sym_preproc_def_token1] = ACTIONS(1101), + [aux_sym_preproc_if_token1] = ACTIONS(1101), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1101), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1101), + [sym_preproc_directive] = ACTIONS(1101), + [anon_sym_SEMI] = ACTIONS(1103), + [anon_sym_typedef] = ACTIONS(1101), + [anon_sym_extern] = ACTIONS(1101), + [anon_sym___attribute__] = ACTIONS(1101), + [anon_sym_LPAREN2] = ACTIONS(1103), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_RBRACE] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1103), + [anon_sym_static] = ACTIONS(1101), + [anon_sym_auto] = ACTIONS(1101), + [anon_sym_register] = ACTIONS(1101), + [anon_sym_inline] = ACTIONS(1101), + [anon_sym_const] = ACTIONS(1101), + [anon_sym_volatile] = ACTIONS(1101), + [anon_sym_restrict] = ACTIONS(1101), + [anon_sym__Atomic] = ACTIONS(1101), + [anon_sym_signed] = ACTIONS(1101), + [anon_sym_unsigned] = ACTIONS(1101), + [anon_sym_long] = ACTIONS(1101), + [anon_sym_short] = ACTIONS(1101), + [sym_primitive_type] = ACTIONS(1101), + [anon_sym_enum] = ACTIONS(1101), + [anon_sym_struct] = ACTIONS(1101), + [anon_sym_union] = ACTIONS(1101), + [anon_sym_if] = ACTIONS(1101), + [anon_sym_switch] = ACTIONS(1101), + [anon_sym_while] = ACTIONS(1101), + [anon_sym_do] = ACTIONS(1101), + [anon_sym_for] = ACTIONS(1101), + [anon_sym_return] = ACTIONS(1101), + [anon_sym_break] = ACTIONS(1101), + [anon_sym_continue] = ACTIONS(1101), + [anon_sym_goto] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1103), + [anon_sym_BANG] = ACTIONS(1103), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1103), + [anon_sym_PLUS_PLUS] = ACTIONS(1103), + [anon_sym_sizeof] = ACTIONS(1101), + [sym_number_literal] = ACTIONS(1103), + [anon_sym_L_SQUOTE] = ACTIONS(1103), + [anon_sym_SQUOTE] = ACTIONS(1103), + [anon_sym_L_DQUOTE] = ACTIONS(1103), + [anon_sym_DQUOTE] = ACTIONS(1103), + [sym_true] = ACTIONS(1101), + [sym_false] = ACTIONS(1101), + [sym_null] = ACTIONS(1101), + [sym_comment] = ACTIONS(3), }, [372] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [sym_identifier] = ACTIONS(1117), + [aux_sym_preproc_include_token1] = ACTIONS(1117), + [aux_sym_preproc_def_token1] = ACTIONS(1117), + [aux_sym_preproc_if_token1] = ACTIONS(1117), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1117), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1117), + [sym_preproc_directive] = ACTIONS(1117), + [anon_sym_SEMI] = ACTIONS(1119), + [anon_sym_typedef] = ACTIONS(1117), + [anon_sym_extern] = ACTIONS(1117), + [anon_sym___attribute__] = ACTIONS(1117), + [anon_sym_LPAREN2] = ACTIONS(1119), + [anon_sym_LBRACE] = ACTIONS(1119), + [anon_sym_RBRACE] = ACTIONS(1119), + [anon_sym_STAR] = ACTIONS(1119), + [anon_sym_static] = ACTIONS(1117), + [anon_sym_auto] = ACTIONS(1117), + [anon_sym_register] = ACTIONS(1117), + [anon_sym_inline] = ACTIONS(1117), + [anon_sym_const] = ACTIONS(1117), + [anon_sym_volatile] = ACTIONS(1117), + [anon_sym_restrict] = ACTIONS(1117), + [anon_sym__Atomic] = ACTIONS(1117), + [anon_sym_signed] = ACTIONS(1117), + [anon_sym_unsigned] = ACTIONS(1117), + [anon_sym_long] = ACTIONS(1117), + [anon_sym_short] = ACTIONS(1117), + [sym_primitive_type] = ACTIONS(1117), + [anon_sym_enum] = ACTIONS(1117), + [anon_sym_struct] = ACTIONS(1117), + [anon_sym_union] = ACTIONS(1117), + [anon_sym_if] = ACTIONS(1117), + [anon_sym_switch] = ACTIONS(1117), + [anon_sym_while] = ACTIONS(1117), + [anon_sym_do] = ACTIONS(1117), + [anon_sym_for] = ACTIONS(1117), + [anon_sym_return] = ACTIONS(1117), + [anon_sym_break] = ACTIONS(1117), + [anon_sym_continue] = ACTIONS(1117), + [anon_sym_goto] = ACTIONS(1117), + [anon_sym_AMP] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_TILDE] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1117), + [anon_sym_DASH_DASH] = ACTIONS(1119), + [anon_sym_PLUS_PLUS] = ACTIONS(1119), + [anon_sym_sizeof] = ACTIONS(1117), + [sym_number_literal] = ACTIONS(1119), + [anon_sym_L_SQUOTE] = ACTIONS(1119), + [anon_sym_SQUOTE] = ACTIONS(1119), + [anon_sym_L_DQUOTE] = ACTIONS(1119), + [anon_sym_DQUOTE] = ACTIONS(1119), + [sym_true] = ACTIONS(1117), + [sym_false] = ACTIONS(1117), + [sym_null] = ACTIONS(1117), + [sym_comment] = ACTIONS(3), }, [373] = { - [sym_if_statement] = STATE(452), - [sym_do_statement] = STATE(452), - [sym_for_statement] = STATE(452), - [sym__expression] = STATE(34), - [sym_comma_expression] = STATE(35), - [sym_binary_expression] = STATE(34), - [sym_update_expression] = STATE(34), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(452), - [sym_return_statement] = STATE(452), - [sym_break_statement] = STATE(452), - [sym_conditional_expression] = STATE(34), - [sym_assignment_expression] = STATE(34), - [sym_cast_expression] = STATE(34), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(34), - [sym_char_literal] = STATE(34), - [sym_labeled_statement] = STATE(452), - [sym_while_statement] = STATE(452), - [sym_continue_statement] = STATE(452), - [sym_goto_statement] = STATE(452), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(34), - [sym_sizeof_expression] = STATE(34), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(34), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(452), - [sym_expression_statement] = STATE(452), - [anon_sym_LBRACE] = ACTIONS(35), - [sym_true] = ACTIONS(5), - [sym_null] = ACTIONS(5), - [anon_sym_do] = ACTIONS(39), - [anon_sym_goto] = ACTIONS(9), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(477), - [anon_sym_for] = ACTIONS(55), - [anon_sym_break] = ACTIONS(57), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(65), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(67), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(5), - [anon_sym_return] = ACTIONS(73), - [anon_sym_while] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_SEMI] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_identifier] = ACTIONS(1145), + [aux_sym_preproc_include_token1] = ACTIONS(1145), + [aux_sym_preproc_def_token1] = ACTIONS(1145), + [aux_sym_preproc_if_token1] = ACTIONS(1145), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1145), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1145), + [sym_preproc_directive] = ACTIONS(1145), + [anon_sym_SEMI] = ACTIONS(1147), + [anon_sym_typedef] = ACTIONS(1145), + [anon_sym_extern] = ACTIONS(1145), + [anon_sym___attribute__] = ACTIONS(1145), + [anon_sym_LPAREN2] = ACTIONS(1147), + [anon_sym_LBRACE] = ACTIONS(1147), + [anon_sym_RBRACE] = ACTIONS(1147), + [anon_sym_STAR] = ACTIONS(1147), + [anon_sym_static] = ACTIONS(1145), + [anon_sym_auto] = ACTIONS(1145), + [anon_sym_register] = ACTIONS(1145), + [anon_sym_inline] = ACTIONS(1145), + [anon_sym_const] = ACTIONS(1145), + [anon_sym_volatile] = ACTIONS(1145), + [anon_sym_restrict] = ACTIONS(1145), + [anon_sym__Atomic] = ACTIONS(1145), + [anon_sym_signed] = ACTIONS(1145), + [anon_sym_unsigned] = ACTIONS(1145), + [anon_sym_long] = ACTIONS(1145), + [anon_sym_short] = ACTIONS(1145), + [sym_primitive_type] = ACTIONS(1145), + [anon_sym_enum] = ACTIONS(1145), + [anon_sym_struct] = ACTIONS(1145), + [anon_sym_union] = ACTIONS(1145), + [anon_sym_if] = ACTIONS(1145), + [anon_sym_switch] = ACTIONS(1145), + [anon_sym_while] = ACTIONS(1145), + [anon_sym_do] = ACTIONS(1145), + [anon_sym_for] = ACTIONS(1145), + [anon_sym_return] = ACTIONS(1145), + [anon_sym_break] = ACTIONS(1145), + [anon_sym_continue] = ACTIONS(1145), + [anon_sym_goto] = ACTIONS(1145), + [anon_sym_AMP] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(1147), + [anon_sym_TILDE] = ACTIONS(1147), + [anon_sym_DASH] = ACTIONS(1145), + [anon_sym_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1147), + [anon_sym_PLUS_PLUS] = ACTIONS(1147), + [anon_sym_sizeof] = ACTIONS(1145), + [sym_number_literal] = ACTIONS(1147), + [anon_sym_L_SQUOTE] = ACTIONS(1147), + [anon_sym_SQUOTE] = ACTIONS(1147), + [anon_sym_L_DQUOTE] = ACTIONS(1147), + [anon_sym_DQUOTE] = ACTIONS(1147), + [sym_true] = ACTIONS(1145), + [sym_false] = ACTIONS(1145), + [sym_null] = ACTIONS(1145), + [sym_comment] = ACTIONS(3), }, [374] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_COMMA] = ACTIONS(293), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_RPAREN] = ACTIONS(1638), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [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_SEMI] = ACTIONS(1171), + [anon_sym_typedef] = ACTIONS(1169), + [anon_sym_extern] = ACTIONS(1169), + [anon_sym___attribute__] = ACTIONS(1169), + [anon_sym_LPAREN2] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1171), + [anon_sym_RBRACE] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_static] = ACTIONS(1169), + [anon_sym_auto] = ACTIONS(1169), + [anon_sym_register] = ACTIONS(1169), + [anon_sym_inline] = ACTIONS(1169), + [anon_sym_const] = ACTIONS(1169), + [anon_sym_volatile] = ACTIONS(1169), + [anon_sym_restrict] = ACTIONS(1169), + [anon_sym__Atomic] = ACTIONS(1169), + [anon_sym_signed] = ACTIONS(1169), + [anon_sym_unsigned] = ACTIONS(1169), + [anon_sym_long] = ACTIONS(1169), + [anon_sym_short] = 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_switch] = 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_AMP] = ACTIONS(1171), + [anon_sym_BANG] = ACTIONS(1171), + [anon_sym_TILDE] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1169), + [anon_sym_DASH_DASH] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_sizeof] = ACTIONS(1169), + [sym_number_literal] = ACTIONS(1171), + [anon_sym_L_SQUOTE] = ACTIONS(1171), + [anon_sym_SQUOTE] = ACTIONS(1171), + [anon_sym_L_DQUOTE] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym_true] = ACTIONS(1169), + [sym_false] = ACTIONS(1169), + [sym_null] = ACTIONS(1169), + [sym_comment] = ACTIONS(3), }, [375] = { - [anon_sym_RPAREN] = ACTIONS(1638), + [sym_identifier] = ACTIONS(1173), + [aux_sym_preproc_include_token1] = ACTIONS(1173), + [aux_sym_preproc_def_token1] = ACTIONS(1173), + [aux_sym_preproc_if_token1] = ACTIONS(1173), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1173), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1173), + [sym_preproc_directive] = ACTIONS(1173), + [anon_sym_SEMI] = ACTIONS(1175), + [anon_sym_typedef] = ACTIONS(1173), + [anon_sym_extern] = ACTIONS(1173), + [anon_sym___attribute__] = ACTIONS(1173), + [anon_sym_LPAREN2] = ACTIONS(1175), + [anon_sym_LBRACE] = ACTIONS(1175), + [anon_sym_RBRACE] = ACTIONS(1175), + [anon_sym_STAR] = ACTIONS(1175), + [anon_sym_static] = ACTIONS(1173), + [anon_sym_auto] = ACTIONS(1173), + [anon_sym_register] = ACTIONS(1173), + [anon_sym_inline] = ACTIONS(1173), + [anon_sym_const] = ACTIONS(1173), + [anon_sym_volatile] = ACTIONS(1173), + [anon_sym_restrict] = ACTIONS(1173), + [anon_sym__Atomic] = ACTIONS(1173), + [anon_sym_signed] = ACTIONS(1173), + [anon_sym_unsigned] = ACTIONS(1173), + [anon_sym_long] = ACTIONS(1173), + [anon_sym_short] = ACTIONS(1173), + [sym_primitive_type] = ACTIONS(1173), + [anon_sym_enum] = ACTIONS(1173), + [anon_sym_struct] = ACTIONS(1173), + [anon_sym_union] = ACTIONS(1173), + [anon_sym_if] = ACTIONS(1173), + [anon_sym_switch] = ACTIONS(1173), + [anon_sym_while] = ACTIONS(1173), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_for] = ACTIONS(1173), + [anon_sym_return] = ACTIONS(1173), + [anon_sym_break] = ACTIONS(1173), + [anon_sym_continue] = ACTIONS(1173), + [anon_sym_goto] = ACTIONS(1173), + [anon_sym_AMP] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1175), + [anon_sym_TILDE] = ACTIONS(1175), + [anon_sym_DASH] = ACTIONS(1173), + [anon_sym_PLUS] = ACTIONS(1173), + [anon_sym_DASH_DASH] = ACTIONS(1175), + [anon_sym_PLUS_PLUS] = ACTIONS(1175), + [anon_sym_sizeof] = ACTIONS(1173), + [sym_number_literal] = ACTIONS(1175), + [anon_sym_L_SQUOTE] = ACTIONS(1175), + [anon_sym_SQUOTE] = ACTIONS(1175), + [anon_sym_L_DQUOTE] = ACTIONS(1175), + [anon_sym_DQUOTE] = ACTIONS(1175), + [sym_true] = ACTIONS(1173), + [sym_false] = ACTIONS(1173), + [sym_null] = ACTIONS(1173), [sym_comment] = ACTIONS(3), }, [376] = { - [sym_char_literal] = STATE(455), - [sym__expression] = STATE(455), - [sym_comma_expression] = STATE(456), - [sym_binary_expression] = STATE(455), - [sym_update_expression] = STATE(455), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(455), - [sym_sizeof_expression] = STATE(455), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(455), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(455), - [sym_assignment_expression] = STATE(455), - [sym_cast_expression] = STATE(455), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(455), - [sym_true] = ACTIONS(1640), - [sym_null] = ACTIONS(1640), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(1642), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(1640), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_RPAREN] = ACTIONS(1644), - [anon_sym_sizeof] = ACTIONS(33), + [sym_identifier] = ACTIONS(1137), + [aux_sym_preproc_include_token1] = ACTIONS(1137), + [aux_sym_preproc_def_token1] = ACTIONS(1137), + [aux_sym_preproc_if_token1] = ACTIONS(1137), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1137), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1137), + [sym_preproc_directive] = ACTIONS(1137), + [anon_sym_SEMI] = ACTIONS(1139), + [anon_sym_typedef] = ACTIONS(1137), + [anon_sym_extern] = ACTIONS(1137), + [anon_sym___attribute__] = ACTIONS(1137), + [anon_sym_LPAREN2] = ACTIONS(1139), + [anon_sym_LBRACE] = ACTIONS(1139), + [anon_sym_RBRACE] = ACTIONS(1139), + [anon_sym_STAR] = ACTIONS(1139), + [anon_sym_static] = ACTIONS(1137), + [anon_sym_auto] = ACTIONS(1137), + [anon_sym_register] = ACTIONS(1137), + [anon_sym_inline] = ACTIONS(1137), + [anon_sym_const] = ACTIONS(1137), + [anon_sym_volatile] = ACTIONS(1137), + [anon_sym_restrict] = ACTIONS(1137), + [anon_sym__Atomic] = ACTIONS(1137), + [anon_sym_signed] = ACTIONS(1137), + [anon_sym_unsigned] = ACTIONS(1137), + [anon_sym_long] = ACTIONS(1137), + [anon_sym_short] = ACTIONS(1137), + [sym_primitive_type] = ACTIONS(1137), + [anon_sym_enum] = ACTIONS(1137), + [anon_sym_struct] = ACTIONS(1137), + [anon_sym_union] = ACTIONS(1137), + [anon_sym_if] = ACTIONS(1137), + [anon_sym_switch] = ACTIONS(1137), + [anon_sym_while] = ACTIONS(1137), + [anon_sym_do] = ACTIONS(1137), + [anon_sym_for] = ACTIONS(1137), + [anon_sym_return] = ACTIONS(1137), + [anon_sym_break] = ACTIONS(1137), + [anon_sym_continue] = ACTIONS(1137), + [anon_sym_goto] = ACTIONS(1137), + [anon_sym_AMP] = ACTIONS(1139), + [anon_sym_BANG] = ACTIONS(1139), + [anon_sym_TILDE] = ACTIONS(1139), + [anon_sym_DASH] = ACTIONS(1137), + [anon_sym_PLUS] = ACTIONS(1137), + [anon_sym_DASH_DASH] = ACTIONS(1139), + [anon_sym_PLUS_PLUS] = ACTIONS(1139), + [anon_sym_sizeof] = ACTIONS(1137), + [sym_number_literal] = ACTIONS(1139), + [anon_sym_L_SQUOTE] = ACTIONS(1139), + [anon_sym_SQUOTE] = ACTIONS(1139), + [anon_sym_L_DQUOTE] = ACTIONS(1139), + [anon_sym_DQUOTE] = ACTIONS(1139), + [sym_true] = ACTIONS(1137), + [sym_false] = ACTIONS(1137), + [sym_null] = ACTIONS(1137), + [sym_comment] = ACTIONS(3), }, [377] = { - [sym_true] = ACTIONS(1646), - [anon_sym_restrict] = ACTIONS(1646), - [sym_null] = ACTIONS(1646), - [anon_sym_goto] = ACTIONS(1646), - [anon_sym_const] = ACTIONS(1646), - [anon_sym_typedef] = ACTIONS(1646), - [anon_sym_DASH_DASH] = ACTIONS(1648), - [anon_sym__Atomic] = ACTIONS(1646), - [sym_identifier] = ACTIONS(1646), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1646), - [sym_number_literal] = ACTIONS(1648), - [anon_sym_volatile] = ACTIONS(1646), - [anon_sym_SQUOTE] = ACTIONS(1648), - [anon_sym_extern] = ACTIONS(1646), - [anon_sym_PLUS_PLUS] = ACTIONS(1648), - [anon_sym_struct] = ACTIONS(1646), - [anon_sym_signed] = ACTIONS(1646), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1646), - [anon_sym_while] = ACTIONS(1646), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1646), - [anon_sym_L_SQUOTE] = ACTIONS(1648), - [anon_sym___attribute__] = ACTIONS(1646), - [anon_sym_sizeof] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_union] = ACTIONS(1646), - [anon_sym_unsigned] = ACTIONS(1646), - [anon_sym_short] = ACTIONS(1646), - [anon_sym_do] = ACTIONS(1646), - [sym_preproc_directive] = ACTIONS(1646), - [anon_sym_AMP] = ACTIONS(1648), - [aux_sym_preproc_if_token1] = ACTIONS(1646), - [anon_sym_TILDE] = ACTIONS(1648), - [anon_sym_L_DQUOTE] = ACTIONS(1648), - [anon_sym_LPAREN2] = ACTIONS(1648), - [sym_primitive_type] = ACTIONS(1646), - [anon_sym_for] = ACTIONS(1646), - [anon_sym_break] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1648), - [aux_sym_preproc_include_token1] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1646), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_DQUOTE] = ACTIONS(1648), - [anon_sym_register] = ACTIONS(1646), - [anon_sym_STAR] = ACTIONS(1648), - [anon_sym_if] = ACTIONS(1646), - [anon_sym_switch] = ACTIONS(1646), - [anon_sym_enum] = ACTIONS(1646), - [sym_false] = ACTIONS(1646), - [ts_builtin_sym_end] = ACTIONS(1648), - [anon_sym_return] = ACTIONS(1646), - [anon_sym_continue] = ACTIONS(1646), - [anon_sym_SEMI] = ACTIONS(1648), - [aux_sym_preproc_def_token1] = ACTIONS(1646), - [anon_sym_PLUS] = ACTIONS(1646), - [anon_sym_auto] = ACTIONS(1646), - [anon_sym_inline] = ACTIONS(1646), + [sym_identifier] = ACTIONS(1071), + [aux_sym_preproc_include_token1] = ACTIONS(1071), + [aux_sym_preproc_def_token1] = ACTIONS(1071), + [aux_sym_preproc_if_token1] = ACTIONS(1071), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1071), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1071), + [sym_preproc_directive] = ACTIONS(1071), + [anon_sym_SEMI] = ACTIONS(1069), + [anon_sym_typedef] = ACTIONS(1071), + [anon_sym_extern] = ACTIONS(1071), + [anon_sym___attribute__] = ACTIONS(1071), + [anon_sym_LPAREN2] = ACTIONS(1069), + [anon_sym_LBRACE] = ACTIONS(1069), + [anon_sym_RBRACE] = ACTIONS(1069), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_static] = ACTIONS(1071), + [anon_sym_auto] = ACTIONS(1071), + [anon_sym_register] = ACTIONS(1071), + [anon_sym_inline] = ACTIONS(1071), + [anon_sym_const] = ACTIONS(1071), + [anon_sym_volatile] = ACTIONS(1071), + [anon_sym_restrict] = ACTIONS(1071), + [anon_sym__Atomic] = ACTIONS(1071), + [anon_sym_signed] = ACTIONS(1071), + [anon_sym_unsigned] = ACTIONS(1071), + [anon_sym_long] = ACTIONS(1071), + [anon_sym_short] = ACTIONS(1071), + [sym_primitive_type] = ACTIONS(1071), + [anon_sym_enum] = ACTIONS(1071), + [anon_sym_struct] = ACTIONS(1071), + [anon_sym_union] = ACTIONS(1071), + [anon_sym_if] = ACTIONS(1071), + [anon_sym_switch] = ACTIONS(1071), + [anon_sym_while] = ACTIONS(1071), + [anon_sym_do] = ACTIONS(1071), + [anon_sym_for] = ACTIONS(1071), + [anon_sym_return] = ACTIONS(1071), + [anon_sym_break] = ACTIONS(1071), + [anon_sym_continue] = ACTIONS(1071), + [anon_sym_goto] = ACTIONS(1071), + [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(1071), + [anon_sym_DASH_DASH] = ACTIONS(1069), + [anon_sym_PLUS_PLUS] = ACTIONS(1069), + [anon_sym_sizeof] = ACTIONS(1071), + [sym_number_literal] = ACTIONS(1069), + [anon_sym_L_SQUOTE] = ACTIONS(1069), + [anon_sym_SQUOTE] = ACTIONS(1069), + [anon_sym_L_DQUOTE] = ACTIONS(1069), + [anon_sym_DQUOTE] = ACTIONS(1069), + [sym_true] = ACTIONS(1071), + [sym_false] = ACTIONS(1071), + [sym_null] = ACTIONS(1071), + [sym_comment] = ACTIONS(3), }, [378] = { - [sym_true] = ACTIONS(1650), - [anon_sym_restrict] = ACTIONS(1650), - [sym_null] = ACTIONS(1650), - [anon_sym_goto] = ACTIONS(1650), - [anon_sym_const] = ACTIONS(1650), - [anon_sym_typedef] = ACTIONS(1650), - [anon_sym_DASH_DASH] = ACTIONS(1652), - [anon_sym__Atomic] = ACTIONS(1650), - [sym_identifier] = ACTIONS(1650), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1650), - [sym_number_literal] = ACTIONS(1652), - [anon_sym_volatile] = ACTIONS(1650), - [anon_sym_SQUOTE] = ACTIONS(1652), - [anon_sym_extern] = ACTIONS(1650), - [anon_sym_PLUS_PLUS] = ACTIONS(1652), - [anon_sym_struct] = ACTIONS(1650), - [anon_sym_signed] = ACTIONS(1650), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1650), - [anon_sym_while] = ACTIONS(1650), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1650), - [anon_sym_L_SQUOTE] = ACTIONS(1652), - [anon_sym___attribute__] = ACTIONS(1650), - [anon_sym_sizeof] = ACTIONS(1650), - [anon_sym_LBRACE] = ACTIONS(1652), - [anon_sym_union] = ACTIONS(1650), - [anon_sym_unsigned] = ACTIONS(1650), - [anon_sym_short] = ACTIONS(1650), - [anon_sym_do] = ACTIONS(1650), - [sym_preproc_directive] = ACTIONS(1650), - [anon_sym_AMP] = ACTIONS(1652), - [aux_sym_preproc_if_token1] = ACTIONS(1650), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_L_DQUOTE] = ACTIONS(1652), - [anon_sym_LPAREN2] = ACTIONS(1652), - [sym_primitive_type] = ACTIONS(1650), - [anon_sym_for] = ACTIONS(1650), - [anon_sym_break] = ACTIONS(1650), - [anon_sym_BANG] = ACTIONS(1652), - [aux_sym_preproc_include_token1] = ACTIONS(1650), - [anon_sym_DASH] = ACTIONS(1650), - [anon_sym_static] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_register] = ACTIONS(1650), - [anon_sym_STAR] = ACTIONS(1652), - [anon_sym_if] = ACTIONS(1650), - [anon_sym_switch] = ACTIONS(1650), - [anon_sym_enum] = ACTIONS(1650), - [sym_false] = ACTIONS(1650), - [ts_builtin_sym_end] = ACTIONS(1652), - [anon_sym_return] = ACTIONS(1650), - [anon_sym_continue] = ACTIONS(1650), - [anon_sym_SEMI] = ACTIONS(1652), - [aux_sym_preproc_def_token1] = ACTIONS(1650), - [anon_sym_PLUS] = ACTIONS(1650), - [anon_sym_auto] = ACTIONS(1650), - [anon_sym_inline] = ACTIONS(1650), + [sym_identifier] = ACTIONS(1089), + [aux_sym_preproc_include_token1] = ACTIONS(1089), + [aux_sym_preproc_def_token1] = ACTIONS(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1089), + [aux_sym_preproc_if_token2] = ACTIONS(1089), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1089), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1089), + [sym_preproc_directive] = ACTIONS(1089), + [anon_sym_SEMI] = ACTIONS(1091), + [anon_sym_typedef] = ACTIONS(1089), + [anon_sym_extern] = ACTIONS(1089), + [anon_sym___attribute__] = ACTIONS(1089), + [anon_sym_LPAREN2] = ACTIONS(1091), + [anon_sym_LBRACE] = ACTIONS(1091), + [anon_sym_STAR] = ACTIONS(1091), + [anon_sym_static] = ACTIONS(1089), + [anon_sym_auto] = ACTIONS(1089), + [anon_sym_register] = ACTIONS(1089), + [anon_sym_inline] = ACTIONS(1089), + [anon_sym_const] = ACTIONS(1089), + [anon_sym_volatile] = ACTIONS(1089), + [anon_sym_restrict] = ACTIONS(1089), + [anon_sym__Atomic] = ACTIONS(1089), + [anon_sym_signed] = ACTIONS(1089), + [anon_sym_unsigned] = ACTIONS(1089), + [anon_sym_long] = ACTIONS(1089), + [anon_sym_short] = ACTIONS(1089), + [sym_primitive_type] = ACTIONS(1089), + [anon_sym_enum] = ACTIONS(1089), + [anon_sym_struct] = ACTIONS(1089), + [anon_sym_union] = ACTIONS(1089), + [anon_sym_if] = ACTIONS(1089), + [anon_sym_switch] = ACTIONS(1089), + [anon_sym_while] = ACTIONS(1089), + [anon_sym_do] = ACTIONS(1089), + [anon_sym_for] = ACTIONS(1089), + [anon_sym_return] = ACTIONS(1089), + [anon_sym_break] = ACTIONS(1089), + [anon_sym_continue] = ACTIONS(1089), + [anon_sym_goto] = ACTIONS(1089), + [anon_sym_AMP] = ACTIONS(1091), + [anon_sym_BANG] = ACTIONS(1091), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_DASH] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1091), + [anon_sym_PLUS_PLUS] = ACTIONS(1091), + [anon_sym_sizeof] = ACTIONS(1089), + [sym_number_literal] = ACTIONS(1091), + [anon_sym_L_SQUOTE] = ACTIONS(1091), + [anon_sym_SQUOTE] = ACTIONS(1091), + [anon_sym_L_DQUOTE] = ACTIONS(1091), + [anon_sym_DQUOTE] = ACTIONS(1091), + [sym_true] = ACTIONS(1089), + [sym_false] = ACTIONS(1089), + [sym_null] = ACTIONS(1089), + [sym_comment] = ACTIONS(3), }, [379] = { - [anon_sym_case] = ACTIONS(1654), - [sym_true] = ACTIONS(1654), - [anon_sym_restrict] = ACTIONS(1654), - [sym_null] = ACTIONS(1654), - [anon_sym_goto] = ACTIONS(1654), - [anon_sym_const] = ACTIONS(1654), - [anon_sym_typedef] = ACTIONS(1654), - [anon_sym_DASH_DASH] = ACTIONS(1656), - [anon_sym_default] = ACTIONS(1654), - [anon_sym__Atomic] = ACTIONS(1654), - [sym_identifier] = ACTIONS(1654), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1654), - [sym_number_literal] = ACTIONS(1656), - [anon_sym_volatile] = ACTIONS(1654), - [anon_sym_SQUOTE] = ACTIONS(1656), - [anon_sym_extern] = ACTIONS(1654), - [anon_sym_PLUS_PLUS] = ACTIONS(1656), - [anon_sym_struct] = ACTIONS(1654), - [anon_sym_signed] = ACTIONS(1654), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1654), - [anon_sym_while] = ACTIONS(1654), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1654), - [anon_sym_L_SQUOTE] = ACTIONS(1656), - [anon_sym___attribute__] = ACTIONS(1654), - [anon_sym_sizeof] = ACTIONS(1654), - [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_union] = ACTIONS(1654), - [anon_sym_unsigned] = ACTIONS(1654), - [anon_sym_short] = ACTIONS(1654), - [anon_sym_do] = ACTIONS(1654), - [sym_preproc_directive] = ACTIONS(1654), - [anon_sym_AMP] = ACTIONS(1656), - [aux_sym_preproc_if_token1] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1656), - [anon_sym_L_DQUOTE] = ACTIONS(1656), - [anon_sym_LPAREN2] = ACTIONS(1656), - [anon_sym_RBRACE] = ACTIONS(1656), - [anon_sym_else] = ACTIONS(1654), - [sym_primitive_type] = ACTIONS(1654), - [anon_sym_for] = ACTIONS(1654), - [anon_sym_break] = ACTIONS(1654), - [anon_sym_BANG] = ACTIONS(1656), - [aux_sym_preproc_include_token1] = ACTIONS(1654), - [anon_sym_DASH] = ACTIONS(1654), - [anon_sym_static] = ACTIONS(1654), - [anon_sym_DQUOTE] = ACTIONS(1656), - [anon_sym_register] = ACTIONS(1654), - [anon_sym_STAR] = ACTIONS(1656), - [anon_sym_if] = ACTIONS(1654), - [anon_sym_switch] = ACTIONS(1654), - [anon_sym_enum] = ACTIONS(1654), - [sym_false] = ACTIONS(1654), - [ts_builtin_sym_end] = ACTIONS(1656), - [anon_sym_return] = ACTIONS(1654), - [anon_sym_continue] = ACTIONS(1654), - [anon_sym_SEMI] = ACTIONS(1656), - [aux_sym_preproc_def_token1] = ACTIONS(1654), - [anon_sym_PLUS] = ACTIONS(1654), - [anon_sym_auto] = ACTIONS(1654), - [anon_sym_inline] = ACTIONS(1654), + [ts_builtin_sym_end] = ACTIONS(1091), + [sym_identifier] = ACTIONS(1089), + [aux_sym_preproc_include_token1] = ACTIONS(1089), + [aux_sym_preproc_def_token1] = ACTIONS(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1089), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1089), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1089), + [sym_preproc_directive] = ACTIONS(1089), + [anon_sym_SEMI] = ACTIONS(1091), + [anon_sym_typedef] = ACTIONS(1089), + [anon_sym_extern] = ACTIONS(1089), + [anon_sym___attribute__] = ACTIONS(1089), + [anon_sym_LPAREN2] = ACTIONS(1091), + [anon_sym_LBRACE] = ACTIONS(1091), + [anon_sym_STAR] = ACTIONS(1091), + [anon_sym_static] = ACTIONS(1089), + [anon_sym_auto] = ACTIONS(1089), + [anon_sym_register] = ACTIONS(1089), + [anon_sym_inline] = ACTIONS(1089), + [anon_sym_const] = ACTIONS(1089), + [anon_sym_volatile] = ACTIONS(1089), + [anon_sym_restrict] = ACTIONS(1089), + [anon_sym__Atomic] = ACTIONS(1089), + [anon_sym_signed] = ACTIONS(1089), + [anon_sym_unsigned] = ACTIONS(1089), + [anon_sym_long] = ACTIONS(1089), + [anon_sym_short] = ACTIONS(1089), + [sym_primitive_type] = ACTIONS(1089), + [anon_sym_enum] = ACTIONS(1089), + [anon_sym_struct] = ACTIONS(1089), + [anon_sym_union] = ACTIONS(1089), + [anon_sym_if] = ACTIONS(1089), + [anon_sym_switch] = ACTIONS(1089), + [anon_sym_while] = ACTIONS(1089), + [anon_sym_do] = ACTIONS(1089), + [anon_sym_for] = ACTIONS(1089), + [anon_sym_return] = ACTIONS(1089), + [anon_sym_break] = ACTIONS(1089), + [anon_sym_continue] = ACTIONS(1089), + [anon_sym_goto] = ACTIONS(1089), + [anon_sym_AMP] = ACTIONS(1091), + [anon_sym_BANG] = ACTIONS(1091), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_DASH] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1091), + [anon_sym_PLUS_PLUS] = ACTIONS(1091), + [anon_sym_sizeof] = ACTIONS(1089), + [sym_number_literal] = ACTIONS(1091), + [anon_sym_L_SQUOTE] = ACTIONS(1091), + [anon_sym_SQUOTE] = ACTIONS(1091), + [anon_sym_L_DQUOTE] = ACTIONS(1091), + [anon_sym_DQUOTE] = ACTIONS(1091), + [sym_true] = ACTIONS(1089), + [sym_false] = ACTIONS(1089), + [sym_null] = ACTIONS(1089), + [sym_comment] = ACTIONS(3), }, [380] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_DASH_GT] = ACTIONS(281), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_COLON] = ACTIONS(1658), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [ts_builtin_sym_end] = ACTIONS(1123), + [sym_identifier] = ACTIONS(1121), + [aux_sym_preproc_include_token1] = ACTIONS(1121), + [aux_sym_preproc_def_token1] = ACTIONS(1121), + [aux_sym_preproc_if_token1] = ACTIONS(1121), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1121), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1121), + [sym_preproc_directive] = ACTIONS(1121), + [anon_sym_SEMI] = ACTIONS(1123), + [anon_sym_typedef] = ACTIONS(1121), + [anon_sym_extern] = ACTIONS(1121), + [anon_sym___attribute__] = ACTIONS(1121), + [anon_sym_LPAREN2] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1123), + [anon_sym_static] = ACTIONS(1121), + [anon_sym_auto] = ACTIONS(1121), + [anon_sym_register] = ACTIONS(1121), + [anon_sym_inline] = ACTIONS(1121), + [anon_sym_const] = ACTIONS(1121), + [anon_sym_volatile] = ACTIONS(1121), + [anon_sym_restrict] = ACTIONS(1121), + [anon_sym__Atomic] = ACTIONS(1121), + [anon_sym_signed] = ACTIONS(1121), + [anon_sym_unsigned] = ACTIONS(1121), + [anon_sym_long] = ACTIONS(1121), + [anon_sym_short] = ACTIONS(1121), + [sym_primitive_type] = ACTIONS(1121), + [anon_sym_enum] = ACTIONS(1121), + [anon_sym_struct] = ACTIONS(1121), + [anon_sym_union] = ACTIONS(1121), + [anon_sym_if] = ACTIONS(1121), + [anon_sym_switch] = ACTIONS(1121), + [anon_sym_while] = ACTIONS(1121), + [anon_sym_do] = ACTIONS(1121), + [anon_sym_for] = ACTIONS(1121), + [anon_sym_return] = ACTIONS(1121), + [anon_sym_break] = ACTIONS(1121), + [anon_sym_continue] = ACTIONS(1121), + [anon_sym_goto] = ACTIONS(1121), + [anon_sym_AMP] = ACTIONS(1123), + [anon_sym_BANG] = ACTIONS(1123), + [anon_sym_TILDE] = ACTIONS(1123), + [anon_sym_DASH] = ACTIONS(1121), + [anon_sym_PLUS] = ACTIONS(1121), + [anon_sym_DASH_DASH] = ACTIONS(1123), + [anon_sym_PLUS_PLUS] = ACTIONS(1123), + [anon_sym_sizeof] = ACTIONS(1121), + [sym_number_literal] = ACTIONS(1123), + [anon_sym_L_SQUOTE] = ACTIONS(1123), + [anon_sym_SQUOTE] = ACTIONS(1123), + [anon_sym_L_DQUOTE] = ACTIONS(1123), + [anon_sym_DQUOTE] = ACTIONS(1123), + [sym_true] = ACTIONS(1121), + [sym_false] = ACTIONS(1121), + [sym_null] = ACTIONS(1121), + [sym_comment] = ACTIONS(3), }, [381] = { - [sym_if_statement] = STATE(458), - [sym_do_statement] = STATE(458), - [sym_for_statement] = STATE(458), - [sym__expression] = STATE(34), - [sym_comma_expression] = STATE(35), - [sym_binary_expression] = STATE(34), - [sym_update_expression] = STATE(34), - [sym_call_expression] = STATE(36), - [sym_declaration] = STATE(458), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(130), - [sym_union_specifier] = STATE(130), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [aux_sym_case_statement_repeat1] = STATE(458), - [sym_switch_statement] = STATE(458), - [sym_return_statement] = STATE(458), - [sym_break_statement] = STATE(458), - [sym_conditional_expression] = STATE(34), - [sym_assignment_expression] = STATE(34), - [sym_cast_expression] = STATE(34), - [sym__declaration_specifiers] = STATE(165), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(34), - [sym_type_definition] = STATE(458), - [sym_char_literal] = STATE(34), - [sym_sized_type_specifier] = STATE(130), - [sym_enum_specifier] = STATE(130), - [sym_labeled_statement] = STATE(458), - [sym_while_statement] = STATE(458), - [sym_continue_statement] = STATE(458), - [sym_goto_statement] = STATE(458), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(34), - [sym_sizeof_expression] = STATE(34), - [sym_attribute_specifier] = STATE(43), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(34), - [sym_string_literal] = STATE(41), - [sym_macro_type_specifier] = STATE(130), - [sym_compound_statement] = STATE(458), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_storage_class_specifier] = STATE(43), - [sym_struct_specifier] = STATE(130), - [sym_expression_statement] = STATE(458), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_union] = ACTIONS(37), - [anon_sym_case] = ACTIONS(1660), - [sym_true] = ACTIONS(5), - [anon_sym_restrict] = ACTIONS(7), - [sym_null] = ACTIONS(5), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_short] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(39), - [anon_sym_goto] = ACTIONS(9), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_const] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(1662), - [anon_sym_DASH_DASH] = ACTIONS(13), - [anon_sym_default] = ACTIONS(1660), - [anon_sym_typedef] = ACTIONS(11), - [anon_sym__Atomic] = ACTIONS(7), - [sym_identifier] = ACTIONS(1664), - [sym_primitive_type] = ACTIONS(348), - [anon_sym_for] = ACTIONS(55), - [anon_sym_break] = ACTIONS(57), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_static] = ACTIONS(63), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(65), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_register] = ACTIONS(63), - [sym_false] = ACTIONS(5), - [anon_sym_extern] = ACTIONS(63), - [anon_sym_struct] = ACTIONS(25), - [anon_sym_return] = ACTIONS(73), - [anon_sym_while] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_SEMI] = ACTIONS(77), - [anon_sym_signed] = ACTIONS(27), - [anon_sym_long] = ACTIONS(27), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_sizeof] = ACTIONS(33), + [sym_identifier] = ACTIONS(1153), + [aux_sym_preproc_include_token1] = ACTIONS(1153), + [aux_sym_preproc_def_token1] = ACTIONS(1153), + [aux_sym_preproc_if_token1] = ACTIONS(1153), + [aux_sym_preproc_if_token2] = ACTIONS(1153), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1153), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1153), + [sym_preproc_directive] = ACTIONS(1153), + [anon_sym_SEMI] = ACTIONS(1155), + [anon_sym_typedef] = ACTIONS(1153), + [anon_sym_extern] = ACTIONS(1153), + [anon_sym___attribute__] = ACTIONS(1153), + [anon_sym_LPAREN2] = ACTIONS(1155), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_STAR] = ACTIONS(1155), + [anon_sym_static] = ACTIONS(1153), + [anon_sym_auto] = ACTIONS(1153), + [anon_sym_register] = ACTIONS(1153), + [anon_sym_inline] = ACTIONS(1153), + [anon_sym_const] = ACTIONS(1153), + [anon_sym_volatile] = ACTIONS(1153), + [anon_sym_restrict] = ACTIONS(1153), + [anon_sym__Atomic] = ACTIONS(1153), + [anon_sym_signed] = ACTIONS(1153), + [anon_sym_unsigned] = ACTIONS(1153), + [anon_sym_long] = ACTIONS(1153), + [anon_sym_short] = ACTIONS(1153), + [sym_primitive_type] = ACTIONS(1153), + [anon_sym_enum] = ACTIONS(1153), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1153), + [anon_sym_if] = ACTIONS(1153), + [anon_sym_switch] = ACTIONS(1153), + [anon_sym_while] = ACTIONS(1153), + [anon_sym_do] = ACTIONS(1153), + [anon_sym_for] = ACTIONS(1153), + [anon_sym_return] = ACTIONS(1153), + [anon_sym_break] = ACTIONS(1153), + [anon_sym_continue] = ACTIONS(1153), + [anon_sym_goto] = ACTIONS(1153), + [anon_sym_AMP] = ACTIONS(1155), + [anon_sym_BANG] = ACTIONS(1155), + [anon_sym_TILDE] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1153), + [anon_sym_PLUS] = ACTIONS(1153), + [anon_sym_DASH_DASH] = ACTIONS(1155), + [anon_sym_PLUS_PLUS] = ACTIONS(1155), + [anon_sym_sizeof] = ACTIONS(1153), + [sym_number_literal] = ACTIONS(1155), + [anon_sym_L_SQUOTE] = ACTIONS(1155), + [anon_sym_SQUOTE] = ACTIONS(1155), + [anon_sym_L_DQUOTE] = ACTIONS(1155), + [anon_sym_DQUOTE] = ACTIONS(1155), + [sym_true] = ACTIONS(1153), + [sym_false] = ACTIONS(1153), + [sym_null] = ACTIONS(1153), + [sym_comment] = ACTIONS(3), }, [382] = { - [anon_sym_case] = ACTIONS(1666), - [sym_true] = ACTIONS(1666), - [anon_sym_restrict] = ACTIONS(1666), - [sym_null] = ACTIONS(1666), - [anon_sym_goto] = ACTIONS(1666), - [anon_sym_const] = ACTIONS(1666), - [anon_sym_typedef] = ACTIONS(1666), - [anon_sym_DASH_DASH] = ACTIONS(1668), - [anon_sym_default] = ACTIONS(1666), - [anon_sym__Atomic] = ACTIONS(1666), - [sym_identifier] = ACTIONS(1666), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1666), - [sym_number_literal] = ACTIONS(1668), - [anon_sym_volatile] = ACTIONS(1666), - [anon_sym_SQUOTE] = ACTIONS(1668), - [anon_sym_extern] = ACTIONS(1666), - [anon_sym_PLUS_PLUS] = ACTIONS(1668), - [anon_sym_struct] = ACTIONS(1666), - [anon_sym_signed] = ACTIONS(1666), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1666), - [anon_sym_while] = ACTIONS(1666), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1666), - [anon_sym_L_SQUOTE] = ACTIONS(1668), - [anon_sym___attribute__] = ACTIONS(1666), - [anon_sym_sizeof] = ACTIONS(1666), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_union] = ACTIONS(1666), - [anon_sym_unsigned] = ACTIONS(1666), - [anon_sym_short] = ACTIONS(1666), - [anon_sym_do] = ACTIONS(1666), - [sym_preproc_directive] = ACTIONS(1666), - [anon_sym_AMP] = ACTIONS(1668), - [aux_sym_preproc_if_token1] = ACTIONS(1666), - [anon_sym_TILDE] = ACTIONS(1668), - [anon_sym_L_DQUOTE] = ACTIONS(1668), - [anon_sym_LPAREN2] = ACTIONS(1668), - [anon_sym_RBRACE] = ACTIONS(1668), - [anon_sym_else] = ACTIONS(1666), - [sym_primitive_type] = ACTIONS(1666), - [anon_sym_for] = ACTIONS(1666), - [anon_sym_break] = ACTIONS(1666), - [anon_sym_BANG] = ACTIONS(1668), - [aux_sym_preproc_include_token1] = ACTIONS(1666), - [anon_sym_DASH] = ACTIONS(1666), - [anon_sym_static] = ACTIONS(1666), - [anon_sym_DQUOTE] = ACTIONS(1668), - [anon_sym_register] = ACTIONS(1666), - [anon_sym_STAR] = ACTIONS(1668), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_switch] = ACTIONS(1666), - [anon_sym_enum] = ACTIONS(1666), - [sym_false] = ACTIONS(1666), - [ts_builtin_sym_end] = ACTIONS(1668), - [anon_sym_return] = ACTIONS(1666), - [anon_sym_continue] = ACTIONS(1666), - [anon_sym_SEMI] = ACTIONS(1668), - [aux_sym_preproc_def_token1] = ACTIONS(1666), - [anon_sym_PLUS] = ACTIONS(1666), - [anon_sym_auto] = ACTIONS(1666), - [anon_sym_inline] = ACTIONS(1666), + [sym_identifier] = ACTIONS(1149), + [aux_sym_preproc_include_token1] = ACTIONS(1149), + [aux_sym_preproc_def_token1] = ACTIONS(1149), + [aux_sym_preproc_if_token1] = ACTIONS(1149), + [aux_sym_preproc_if_token2] = ACTIONS(1149), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1149), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1149), + [sym_preproc_directive] = ACTIONS(1149), + [anon_sym_SEMI] = ACTIONS(1151), + [anon_sym_typedef] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1149), + [anon_sym___attribute__] = ACTIONS(1149), + [anon_sym_LPAREN2] = ACTIONS(1151), + [anon_sym_LBRACE] = ACTIONS(1151), + [anon_sym_STAR] = ACTIONS(1151), + [anon_sym_static] = ACTIONS(1149), + [anon_sym_auto] = ACTIONS(1149), + [anon_sym_register] = ACTIONS(1149), + [anon_sym_inline] = ACTIONS(1149), + [anon_sym_const] = ACTIONS(1149), + [anon_sym_volatile] = ACTIONS(1149), + [anon_sym_restrict] = ACTIONS(1149), + [anon_sym__Atomic] = ACTIONS(1149), + [anon_sym_signed] = ACTIONS(1149), + [anon_sym_unsigned] = ACTIONS(1149), + [anon_sym_long] = ACTIONS(1149), + [anon_sym_short] = ACTIONS(1149), + [sym_primitive_type] = ACTIONS(1149), + [anon_sym_enum] = ACTIONS(1149), + [anon_sym_struct] = ACTIONS(1149), + [anon_sym_union] = ACTIONS(1149), + [anon_sym_if] = ACTIONS(1149), + [anon_sym_switch] = ACTIONS(1149), + [anon_sym_while] = ACTIONS(1149), + [anon_sym_do] = ACTIONS(1149), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_return] = ACTIONS(1149), + [anon_sym_break] = ACTIONS(1149), + [anon_sym_continue] = ACTIONS(1149), + [anon_sym_goto] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(1151), + [anon_sym_BANG] = ACTIONS(1151), + [anon_sym_TILDE] = ACTIONS(1151), + [anon_sym_DASH] = ACTIONS(1149), + [anon_sym_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1151), + [anon_sym_PLUS_PLUS] = ACTIONS(1151), + [anon_sym_sizeof] = ACTIONS(1149), + [sym_number_literal] = ACTIONS(1151), + [anon_sym_L_SQUOTE] = ACTIONS(1151), + [anon_sym_SQUOTE] = ACTIONS(1151), + [anon_sym_L_DQUOTE] = ACTIONS(1151), + [anon_sym_DQUOTE] = ACTIONS(1151), + [sym_true] = ACTIONS(1149), + [sym_false] = ACTIONS(1149), + [sym_null] = ACTIONS(1149), + [sym_comment] = ACTIONS(3), }, [383] = { - [sym_if_statement] = STATE(383), - [sym_do_statement] = STATE(383), - [sym_for_statement] = STATE(383), - [sym__expression] = STATE(1093), - [sym_comma_expression] = STATE(1094), - [sym_binary_expression] = STATE(1093), - [sym_update_expression] = STATE(1093), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(383), - [sym_return_statement] = STATE(383), - [sym_break_statement] = STATE(383), - [sym_conditional_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_cast_expression] = STATE(1093), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1093), - [sym_char_literal] = STATE(1093), - [sym_labeled_statement] = STATE(383), - [sym_case_statement] = STATE(383), - [sym_while_statement] = STATE(383), - [sym_continue_statement] = STATE(383), - [sym_goto_statement] = STATE(383), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1093), - [sym_sizeof_expression] = STATE(1093), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1093), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(383), - [aux_sym_switch_body_repeat1] = STATE(383), - [sym_expression_statement] = STATE(383), - [anon_sym_LBRACE] = ACTIONS(1670), - [anon_sym_case] = ACTIONS(1673), - [sym_true] = ACTIONS(1676), - [sym_null] = ACTIONS(1676), - [anon_sym_do] = ACTIONS(1679), - [anon_sym_goto] = ACTIONS(1682), - [anon_sym_AMP] = ACTIONS(1685), - [anon_sym_TILDE] = ACTIONS(1688), - [anon_sym_L_DQUOTE] = ACTIONS(1691), - [anon_sym_LPAREN2] = ACTIONS(1694), - [anon_sym_RBRACE] = ACTIONS(1697), - [anon_sym_DASH_DASH] = ACTIONS(1699), - [anon_sym_default] = ACTIONS(1702), - [sym_identifier] = ACTIONS(1705), - [anon_sym_for] = ACTIONS(1708), - [anon_sym_break] = ACTIONS(1711), - [anon_sym_BANG] = ACTIONS(1688), - [anon_sym_DASH] = ACTIONS(1714), - [sym_number_literal] = ACTIONS(1717), - [anon_sym_DQUOTE] = ACTIONS(1691), - [anon_sym_SQUOTE] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1685), - [anon_sym_if] = ACTIONS(1723), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_switch] = ACTIONS(1726), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1729), - [anon_sym_while] = ACTIONS(1732), - [anon_sym_continue] = ACTIONS(1735), - [anon_sym_SEMI] = ACTIONS(1738), - [anon_sym_PLUS] = ACTIONS(1714), - [anon_sym_L_SQUOTE] = ACTIONS(1720), - [anon_sym_sizeof] = ACTIONS(1741), + [sym_identifier] = ACTIONS(1105), + [aux_sym_preproc_include_token1] = ACTIONS(1105), + [aux_sym_preproc_def_token1] = ACTIONS(1105), + [aux_sym_preproc_if_token1] = ACTIONS(1105), + [aux_sym_preproc_if_token2] = ACTIONS(1105), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1105), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1105), + [sym_preproc_directive] = ACTIONS(1105), + [anon_sym_SEMI] = ACTIONS(1107), + [anon_sym_typedef] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1105), + [anon_sym___attribute__] = ACTIONS(1105), + [anon_sym_LPAREN2] = ACTIONS(1107), + [anon_sym_LBRACE] = ACTIONS(1107), + [anon_sym_STAR] = ACTIONS(1107), + [anon_sym_static] = ACTIONS(1105), + [anon_sym_auto] = ACTIONS(1105), + [anon_sym_register] = ACTIONS(1105), + [anon_sym_inline] = ACTIONS(1105), + [anon_sym_const] = ACTIONS(1105), + [anon_sym_volatile] = ACTIONS(1105), + [anon_sym_restrict] = ACTIONS(1105), + [anon_sym__Atomic] = ACTIONS(1105), + [anon_sym_signed] = ACTIONS(1105), + [anon_sym_unsigned] = ACTIONS(1105), + [anon_sym_long] = ACTIONS(1105), + [anon_sym_short] = ACTIONS(1105), + [sym_primitive_type] = ACTIONS(1105), + [anon_sym_enum] = ACTIONS(1105), + [anon_sym_struct] = ACTIONS(1105), + [anon_sym_union] = ACTIONS(1105), + [anon_sym_if] = ACTIONS(1105), + [anon_sym_switch] = ACTIONS(1105), + [anon_sym_while] = ACTIONS(1105), + [anon_sym_do] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1105), + [anon_sym_return] = ACTIONS(1105), + [anon_sym_break] = ACTIONS(1105), + [anon_sym_continue] = ACTIONS(1105), + [anon_sym_goto] = ACTIONS(1105), + [anon_sym_AMP] = ACTIONS(1107), + [anon_sym_BANG] = ACTIONS(1107), + [anon_sym_TILDE] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1105), + [anon_sym_PLUS] = ACTIONS(1105), + [anon_sym_DASH_DASH] = ACTIONS(1107), + [anon_sym_PLUS_PLUS] = ACTIONS(1107), + [anon_sym_sizeof] = ACTIONS(1105), + [sym_number_literal] = ACTIONS(1107), + [anon_sym_L_SQUOTE] = ACTIONS(1107), + [anon_sym_SQUOTE] = ACTIONS(1107), + [anon_sym_L_DQUOTE] = ACTIONS(1107), + [anon_sym_DQUOTE] = ACTIONS(1107), + [sym_true] = ACTIONS(1105), + [sym_false] = ACTIONS(1105), + [sym_null] = ACTIONS(1105), + [sym_comment] = ACTIONS(3), }, [384] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_COMMA] = ACTIONS(1744), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_DASH_GT] = ACTIONS(281), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_RBRACE] = ACTIONS(1744), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [sym_identifier] = ACTIONS(1109), + [aux_sym_preproc_include_token1] = ACTIONS(1109), + [aux_sym_preproc_def_token1] = ACTIONS(1109), + [aux_sym_preproc_if_token1] = ACTIONS(1109), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1109), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1109), + [sym_preproc_directive] = ACTIONS(1109), + [anon_sym_SEMI] = ACTIONS(1111), + [anon_sym_typedef] = ACTIONS(1109), + [anon_sym_extern] = ACTIONS(1109), + [anon_sym___attribute__] = ACTIONS(1109), + [anon_sym_LPAREN2] = ACTIONS(1111), + [anon_sym_LBRACE] = ACTIONS(1111), + [anon_sym_RBRACE] = ACTIONS(1111), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_static] = ACTIONS(1109), + [anon_sym_auto] = ACTIONS(1109), + [anon_sym_register] = ACTIONS(1109), + [anon_sym_inline] = ACTIONS(1109), + [anon_sym_const] = ACTIONS(1109), + [anon_sym_volatile] = ACTIONS(1109), + [anon_sym_restrict] = ACTIONS(1109), + [anon_sym__Atomic] = ACTIONS(1109), + [anon_sym_signed] = ACTIONS(1109), + [anon_sym_unsigned] = ACTIONS(1109), + [anon_sym_long] = ACTIONS(1109), + [anon_sym_short] = ACTIONS(1109), + [sym_primitive_type] = ACTIONS(1109), + [anon_sym_enum] = ACTIONS(1109), + [anon_sym_struct] = ACTIONS(1109), + [anon_sym_union] = ACTIONS(1109), + [anon_sym_if] = ACTIONS(1109), + [anon_sym_switch] = ACTIONS(1109), + [anon_sym_while] = ACTIONS(1109), + [anon_sym_do] = ACTIONS(1109), + [anon_sym_for] = ACTIONS(1109), + [anon_sym_return] = ACTIONS(1109), + [anon_sym_break] = ACTIONS(1109), + [anon_sym_continue] = ACTIONS(1109), + [anon_sym_goto] = ACTIONS(1109), + [anon_sym_AMP] = ACTIONS(1111), + [anon_sym_BANG] = ACTIONS(1111), + [anon_sym_TILDE] = ACTIONS(1111), + [anon_sym_DASH] = ACTIONS(1109), + [anon_sym_PLUS] = ACTIONS(1109), + [anon_sym_DASH_DASH] = ACTIONS(1111), + [anon_sym_PLUS_PLUS] = ACTIONS(1111), + [anon_sym_sizeof] = ACTIONS(1109), + [sym_number_literal] = ACTIONS(1111), + [anon_sym_L_SQUOTE] = ACTIONS(1111), + [anon_sym_SQUOTE] = ACTIONS(1111), + [anon_sym_L_DQUOTE] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1111), + [sym_true] = ACTIONS(1109), + [sym_false] = ACTIONS(1109), + [sym_null] = ACTIONS(1109), + [sym_comment] = ACTIONS(3), }, [385] = { - [anon_sym_restrict] = ACTIONS(1746), - [anon_sym_COMMA] = ACTIONS(1748), - [anon_sym_static] = ACTIONS(1746), - [anon_sym_volatile] = ACTIONS(1746), - [anon_sym_register] = ACTIONS(1746), - [anon_sym_extern] = ACTIONS(1746), - [anon_sym_STAR] = ACTIONS(1748), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(1746), - [anon_sym_LPAREN2] = ACTIONS(1748), - [anon_sym_COLON] = ACTIONS(1748), - [anon_sym_SEMI] = ACTIONS(1748), - [anon_sym__Atomic] = ACTIONS(1746), - [sym_identifier] = ACTIONS(1746), - [anon_sym_auto] = ACTIONS(1746), - [anon_sym_RPAREN] = ACTIONS(1748), - [anon_sym_inline] = ACTIONS(1746), - [anon_sym___attribute__] = ACTIONS(1746), - [anon_sym_LBRACK] = ACTIONS(1748), + [sym_identifier] = ACTIONS(1173), + [aux_sym_preproc_include_token1] = ACTIONS(1173), + [aux_sym_preproc_def_token1] = ACTIONS(1173), + [aux_sym_preproc_if_token1] = ACTIONS(1173), + [aux_sym_preproc_if_token2] = ACTIONS(1173), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1173), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1173), + [sym_preproc_directive] = ACTIONS(1173), + [anon_sym_SEMI] = ACTIONS(1175), + [anon_sym_typedef] = ACTIONS(1173), + [anon_sym_extern] = ACTIONS(1173), + [anon_sym___attribute__] = ACTIONS(1173), + [anon_sym_LPAREN2] = ACTIONS(1175), + [anon_sym_LBRACE] = ACTIONS(1175), + [anon_sym_STAR] = ACTIONS(1175), + [anon_sym_static] = ACTIONS(1173), + [anon_sym_auto] = ACTIONS(1173), + [anon_sym_register] = ACTIONS(1173), + [anon_sym_inline] = ACTIONS(1173), + [anon_sym_const] = ACTIONS(1173), + [anon_sym_volatile] = ACTIONS(1173), + [anon_sym_restrict] = ACTIONS(1173), + [anon_sym__Atomic] = ACTIONS(1173), + [anon_sym_signed] = ACTIONS(1173), + [anon_sym_unsigned] = ACTIONS(1173), + [anon_sym_long] = ACTIONS(1173), + [anon_sym_short] = ACTIONS(1173), + [sym_primitive_type] = ACTIONS(1173), + [anon_sym_enum] = ACTIONS(1173), + [anon_sym_struct] = ACTIONS(1173), + [anon_sym_union] = ACTIONS(1173), + [anon_sym_if] = ACTIONS(1173), + [anon_sym_switch] = ACTIONS(1173), + [anon_sym_while] = ACTIONS(1173), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_for] = ACTIONS(1173), + [anon_sym_return] = ACTIONS(1173), + [anon_sym_break] = ACTIONS(1173), + [anon_sym_continue] = ACTIONS(1173), + [anon_sym_goto] = ACTIONS(1173), + [anon_sym_AMP] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1175), + [anon_sym_TILDE] = ACTIONS(1175), + [anon_sym_DASH] = ACTIONS(1173), + [anon_sym_PLUS] = ACTIONS(1173), + [anon_sym_DASH_DASH] = ACTIONS(1175), + [anon_sym_PLUS_PLUS] = ACTIONS(1175), + [anon_sym_sizeof] = ACTIONS(1173), + [sym_number_literal] = ACTIONS(1175), + [anon_sym_L_SQUOTE] = ACTIONS(1175), + [anon_sym_SQUOTE] = ACTIONS(1175), + [anon_sym_L_DQUOTE] = ACTIONS(1175), + [anon_sym_DQUOTE] = ACTIONS(1175), + [sym_true] = ACTIONS(1173), + [sym_false] = ACTIONS(1173), + [sym_null] = ACTIONS(1173), + [sym_comment] = ACTIONS(3), }, [386] = { - [anon_sym_COMMA] = ACTIONS(1750), - [anon_sym_RBRACE] = ACTIONS(1750), + [sym_identifier] = ACTIONS(1133), + [aux_sym_preproc_include_token1] = ACTIONS(1133), + [aux_sym_preproc_def_token1] = ACTIONS(1133), + [aux_sym_preproc_if_token1] = ACTIONS(1133), + [aux_sym_preproc_if_token2] = ACTIONS(1133), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1133), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1133), + [sym_preproc_directive] = ACTIONS(1133), + [anon_sym_SEMI] = ACTIONS(1135), + [anon_sym_typedef] = ACTIONS(1133), + [anon_sym_extern] = ACTIONS(1133), + [anon_sym___attribute__] = ACTIONS(1133), + [anon_sym_LPAREN2] = ACTIONS(1135), + [anon_sym_LBRACE] = ACTIONS(1135), + [anon_sym_STAR] = ACTIONS(1135), + [anon_sym_static] = ACTIONS(1133), + [anon_sym_auto] = ACTIONS(1133), + [anon_sym_register] = ACTIONS(1133), + [anon_sym_inline] = ACTIONS(1133), + [anon_sym_const] = ACTIONS(1133), + [anon_sym_volatile] = ACTIONS(1133), + [anon_sym_restrict] = ACTIONS(1133), + [anon_sym__Atomic] = ACTIONS(1133), + [anon_sym_signed] = ACTIONS(1133), + [anon_sym_unsigned] = ACTIONS(1133), + [anon_sym_long] = ACTIONS(1133), + [anon_sym_short] = ACTIONS(1133), + [sym_primitive_type] = ACTIONS(1133), + [anon_sym_enum] = ACTIONS(1133), + [anon_sym_struct] = ACTIONS(1133), + [anon_sym_union] = ACTIONS(1133), + [anon_sym_if] = ACTIONS(1133), + [anon_sym_switch] = ACTIONS(1133), + [anon_sym_while] = ACTIONS(1133), + [anon_sym_do] = ACTIONS(1133), + [anon_sym_for] = ACTIONS(1133), + [anon_sym_return] = ACTIONS(1133), + [anon_sym_break] = ACTIONS(1133), + [anon_sym_continue] = ACTIONS(1133), + [anon_sym_goto] = ACTIONS(1133), + [anon_sym_AMP] = ACTIONS(1135), + [anon_sym_BANG] = ACTIONS(1135), + [anon_sym_TILDE] = ACTIONS(1135), + [anon_sym_DASH] = ACTIONS(1133), + [anon_sym_PLUS] = ACTIONS(1133), + [anon_sym_DASH_DASH] = ACTIONS(1135), + [anon_sym_PLUS_PLUS] = ACTIONS(1135), + [anon_sym_sizeof] = ACTIONS(1133), + [sym_number_literal] = ACTIONS(1135), + [anon_sym_L_SQUOTE] = ACTIONS(1135), + [anon_sym_SQUOTE] = ACTIONS(1135), + [anon_sym_L_DQUOTE] = ACTIONS(1135), + [anon_sym_DQUOTE] = ACTIONS(1135), + [sym_true] = ACTIONS(1133), + [sym_false] = ACTIONS(1133), + [sym_null] = ACTIONS(1133), [sym_comment] = ACTIONS(3), }, [387] = { - [sym_enumerator] = STATE(386), - [sym_identifier] = ACTIONS(513), - [anon_sym_RBRACE] = ACTIONS(1752), + [sym_identifier] = ACTIONS(1141), + [aux_sym_preproc_include_token1] = ACTIONS(1141), + [aux_sym_preproc_def_token1] = ACTIONS(1141), + [aux_sym_preproc_if_token1] = ACTIONS(1141), + [aux_sym_preproc_if_token2] = ACTIONS(1141), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1141), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1141), + [sym_preproc_directive] = ACTIONS(1141), + [anon_sym_SEMI] = ACTIONS(1143), + [anon_sym_typedef] = ACTIONS(1141), + [anon_sym_extern] = ACTIONS(1141), + [anon_sym___attribute__] = ACTIONS(1141), + [anon_sym_LPAREN2] = ACTIONS(1143), + [anon_sym_LBRACE] = ACTIONS(1143), + [anon_sym_STAR] = ACTIONS(1143), + [anon_sym_static] = ACTIONS(1141), + [anon_sym_auto] = ACTIONS(1141), + [anon_sym_register] = ACTIONS(1141), + [anon_sym_inline] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_volatile] = ACTIONS(1141), + [anon_sym_restrict] = ACTIONS(1141), + [anon_sym__Atomic] = ACTIONS(1141), + [anon_sym_signed] = ACTIONS(1141), + [anon_sym_unsigned] = ACTIONS(1141), + [anon_sym_long] = ACTIONS(1141), + [anon_sym_short] = ACTIONS(1141), + [sym_primitive_type] = ACTIONS(1141), + [anon_sym_enum] = ACTIONS(1141), + [anon_sym_struct] = ACTIONS(1141), + [anon_sym_union] = ACTIONS(1141), + [anon_sym_if] = ACTIONS(1141), + [anon_sym_switch] = ACTIONS(1141), + [anon_sym_while] = ACTIONS(1141), + [anon_sym_do] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1141), + [anon_sym_return] = ACTIONS(1141), + [anon_sym_break] = ACTIONS(1141), + [anon_sym_continue] = ACTIONS(1141), + [anon_sym_goto] = ACTIONS(1141), + [anon_sym_AMP] = ACTIONS(1143), + [anon_sym_BANG] = ACTIONS(1143), + [anon_sym_TILDE] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1141), + [anon_sym_PLUS] = ACTIONS(1141), + [anon_sym_DASH_DASH] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1143), + [anon_sym_sizeof] = ACTIONS(1141), + [sym_number_literal] = ACTIONS(1143), + [anon_sym_L_SQUOTE] = ACTIONS(1143), + [anon_sym_SQUOTE] = ACTIONS(1143), + [anon_sym_L_DQUOTE] = ACTIONS(1143), + [anon_sym_DQUOTE] = ACTIONS(1143), + [sym_true] = ACTIONS(1141), + [sym_false] = ACTIONS(1141), + [sym_null] = ACTIONS(1141), [sym_comment] = ACTIONS(3), }, [388] = { - [aux_sym_enumerator_list_repeat1] = STATE(388), - [anon_sym_COMMA] = ACTIONS(1754), - [anon_sym_RBRACE] = ACTIONS(1750), + [ts_builtin_sym_end] = ACTIONS(1135), + [sym_identifier] = ACTIONS(1133), + [aux_sym_preproc_include_token1] = ACTIONS(1133), + [aux_sym_preproc_def_token1] = ACTIONS(1133), + [aux_sym_preproc_if_token1] = ACTIONS(1133), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1133), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1133), + [sym_preproc_directive] = ACTIONS(1133), + [anon_sym_SEMI] = ACTIONS(1135), + [anon_sym_typedef] = ACTIONS(1133), + [anon_sym_extern] = ACTIONS(1133), + [anon_sym___attribute__] = ACTIONS(1133), + [anon_sym_LPAREN2] = ACTIONS(1135), + [anon_sym_LBRACE] = ACTIONS(1135), + [anon_sym_STAR] = ACTIONS(1135), + [anon_sym_static] = ACTIONS(1133), + [anon_sym_auto] = ACTIONS(1133), + [anon_sym_register] = ACTIONS(1133), + [anon_sym_inline] = ACTIONS(1133), + [anon_sym_const] = ACTIONS(1133), + [anon_sym_volatile] = ACTIONS(1133), + [anon_sym_restrict] = ACTIONS(1133), + [anon_sym__Atomic] = ACTIONS(1133), + [anon_sym_signed] = ACTIONS(1133), + [anon_sym_unsigned] = ACTIONS(1133), + [anon_sym_long] = ACTIONS(1133), + [anon_sym_short] = ACTIONS(1133), + [sym_primitive_type] = ACTIONS(1133), + [anon_sym_enum] = ACTIONS(1133), + [anon_sym_struct] = ACTIONS(1133), + [anon_sym_union] = ACTIONS(1133), + [anon_sym_if] = ACTIONS(1133), + [anon_sym_switch] = ACTIONS(1133), + [anon_sym_while] = ACTIONS(1133), + [anon_sym_do] = ACTIONS(1133), + [anon_sym_for] = ACTIONS(1133), + [anon_sym_return] = ACTIONS(1133), + [anon_sym_break] = ACTIONS(1133), + [anon_sym_continue] = ACTIONS(1133), + [anon_sym_goto] = ACTIONS(1133), + [anon_sym_AMP] = ACTIONS(1135), + [anon_sym_BANG] = ACTIONS(1135), + [anon_sym_TILDE] = ACTIONS(1135), + [anon_sym_DASH] = ACTIONS(1133), + [anon_sym_PLUS] = ACTIONS(1133), + [anon_sym_DASH_DASH] = ACTIONS(1135), + [anon_sym_PLUS_PLUS] = ACTIONS(1135), + [anon_sym_sizeof] = ACTIONS(1133), + [sym_number_literal] = ACTIONS(1135), + [anon_sym_L_SQUOTE] = ACTIONS(1135), + [anon_sym_SQUOTE] = ACTIONS(1135), + [anon_sym_L_DQUOTE] = ACTIONS(1135), + [anon_sym_DQUOTE] = ACTIONS(1135), + [sym_true] = ACTIONS(1133), + [sym_false] = ACTIONS(1133), + [sym_null] = ACTIONS(1133), [sym_comment] = ACTIONS(3), }, [389] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(1757), - [sym_identifier] = ACTIONS(1757), + [ts_builtin_sym_end] = ACTIONS(1143), + [sym_identifier] = ACTIONS(1141), + [aux_sym_preproc_include_token1] = ACTIONS(1141), + [aux_sym_preproc_def_token1] = ACTIONS(1141), + [aux_sym_preproc_if_token1] = ACTIONS(1141), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1141), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1141), + [sym_preproc_directive] = ACTIONS(1141), + [anon_sym_SEMI] = ACTIONS(1143), + [anon_sym_typedef] = ACTIONS(1141), + [anon_sym_extern] = ACTIONS(1141), + [anon_sym___attribute__] = ACTIONS(1141), + [anon_sym_LPAREN2] = ACTIONS(1143), + [anon_sym_LBRACE] = ACTIONS(1143), + [anon_sym_STAR] = ACTIONS(1143), + [anon_sym_static] = ACTIONS(1141), + [anon_sym_auto] = ACTIONS(1141), + [anon_sym_register] = ACTIONS(1141), + [anon_sym_inline] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_volatile] = ACTIONS(1141), + [anon_sym_restrict] = ACTIONS(1141), + [anon_sym__Atomic] = ACTIONS(1141), + [anon_sym_signed] = ACTIONS(1141), + [anon_sym_unsigned] = ACTIONS(1141), + [anon_sym_long] = ACTIONS(1141), + [anon_sym_short] = ACTIONS(1141), + [sym_primitive_type] = ACTIONS(1141), + [anon_sym_enum] = ACTIONS(1141), + [anon_sym_struct] = ACTIONS(1141), + [anon_sym_union] = ACTIONS(1141), + [anon_sym_if] = ACTIONS(1141), + [anon_sym_switch] = ACTIONS(1141), + [anon_sym_while] = ACTIONS(1141), + [anon_sym_do] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1141), + [anon_sym_return] = ACTIONS(1141), + [anon_sym_break] = ACTIONS(1141), + [anon_sym_continue] = ACTIONS(1141), + [anon_sym_goto] = ACTIONS(1141), + [anon_sym_AMP] = ACTIONS(1143), + [anon_sym_BANG] = ACTIONS(1143), + [anon_sym_TILDE] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1141), + [anon_sym_PLUS] = ACTIONS(1141), + [anon_sym_DASH_DASH] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1143), + [anon_sym_sizeof] = ACTIONS(1141), + [sym_number_literal] = ACTIONS(1143), + [anon_sym_L_SQUOTE] = ACTIONS(1143), + [anon_sym_SQUOTE] = ACTIONS(1143), + [anon_sym_L_DQUOTE] = ACTIONS(1143), + [anon_sym_DQUOTE] = ACTIONS(1143), + [sym_true] = ACTIONS(1141), + [sym_false] = ACTIONS(1141), + [sym_null] = ACTIONS(1141), [sym_comment] = ACTIONS(3), }, [390] = { - [sym_comment] = ACTIONS(147), - [anon_sym_LF] = ACTIONS(1759), - [sym_preproc_arg] = ACTIONS(1759), + [sym_identifier] = ACTIONS(1093), + [aux_sym_preproc_include_token1] = ACTIONS(1093), + [aux_sym_preproc_def_token1] = ACTIONS(1093), + [aux_sym_preproc_if_token1] = ACTIONS(1093), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1093), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1093), + [sym_preproc_directive] = ACTIONS(1093), + [anon_sym_SEMI] = ACTIONS(1095), + [anon_sym_typedef] = ACTIONS(1093), + [anon_sym_extern] = ACTIONS(1093), + [anon_sym___attribute__] = ACTIONS(1093), + [anon_sym_LPAREN2] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1095), + [anon_sym_RBRACE] = ACTIONS(1095), + [anon_sym_STAR] = ACTIONS(1095), + [anon_sym_static] = ACTIONS(1093), + [anon_sym_auto] = ACTIONS(1093), + [anon_sym_register] = ACTIONS(1093), + [anon_sym_inline] = ACTIONS(1093), + [anon_sym_const] = ACTIONS(1093), + [anon_sym_volatile] = ACTIONS(1093), + [anon_sym_restrict] = ACTIONS(1093), + [anon_sym__Atomic] = ACTIONS(1093), + [anon_sym_signed] = ACTIONS(1093), + [anon_sym_unsigned] = ACTIONS(1093), + [anon_sym_long] = ACTIONS(1093), + [anon_sym_short] = ACTIONS(1093), + [sym_primitive_type] = ACTIONS(1093), + [anon_sym_enum] = ACTIONS(1093), + [anon_sym_struct] = ACTIONS(1093), + [anon_sym_union] = ACTIONS(1093), + [anon_sym_if] = ACTIONS(1093), + [anon_sym_switch] = ACTIONS(1093), + [anon_sym_while] = ACTIONS(1093), + [anon_sym_do] = ACTIONS(1093), + [anon_sym_for] = ACTIONS(1093), + [anon_sym_return] = ACTIONS(1093), + [anon_sym_break] = ACTIONS(1093), + [anon_sym_continue] = ACTIONS(1093), + [anon_sym_goto] = ACTIONS(1093), + [anon_sym_AMP] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_TILDE] = ACTIONS(1095), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_sizeof] = ACTIONS(1093), + [sym_number_literal] = ACTIONS(1095), + [anon_sym_L_SQUOTE] = ACTIONS(1095), + [anon_sym_SQUOTE] = ACTIONS(1095), + [anon_sym_L_DQUOTE] = ACTIONS(1095), + [anon_sym_DQUOTE] = ACTIONS(1095), + [sym_true] = ACTIONS(1093), + [sym_false] = ACTIONS(1093), + [sym_null] = ACTIONS(1093), + [sym_comment] = ACTIONS(3), }, [391] = { - [aux_sym_preproc_params_repeat1] = STATE(463), - [anon_sym_COMMA] = ACTIONS(1404), - [anon_sym_RPAREN] = ACTIONS(1761), + [ts_builtin_sym_end] = ACTIONS(1171), + [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_SEMI] = ACTIONS(1171), + [anon_sym_typedef] = ACTIONS(1169), + [anon_sym_extern] = ACTIONS(1169), + [anon_sym___attribute__] = ACTIONS(1169), + [anon_sym_LPAREN2] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_static] = ACTIONS(1169), + [anon_sym_auto] = ACTIONS(1169), + [anon_sym_register] = ACTIONS(1169), + [anon_sym_inline] = ACTIONS(1169), + [anon_sym_const] = ACTIONS(1169), + [anon_sym_volatile] = ACTIONS(1169), + [anon_sym_restrict] = ACTIONS(1169), + [anon_sym__Atomic] = ACTIONS(1169), + [anon_sym_signed] = ACTIONS(1169), + [anon_sym_unsigned] = ACTIONS(1169), + [anon_sym_long] = ACTIONS(1169), + [anon_sym_short] = 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_switch] = 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_AMP] = ACTIONS(1171), + [anon_sym_BANG] = ACTIONS(1171), + [anon_sym_TILDE] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1169), + [anon_sym_DASH_DASH] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_sizeof] = ACTIONS(1169), + [sym_number_literal] = ACTIONS(1171), + [anon_sym_L_SQUOTE] = ACTIONS(1171), + [anon_sym_SQUOTE] = ACTIONS(1171), + [anon_sym_L_DQUOTE] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym_true] = ACTIONS(1169), + [sym_false] = ACTIONS(1169), + [sym_null] = ACTIONS(1169), [sym_comment] = ACTIONS(3), }, [392] = { - [sym_true] = ACTIONS(1763), - [anon_sym_restrict] = ACTIONS(1763), - [sym_null] = ACTIONS(1763), - [anon_sym_goto] = ACTIONS(1763), - [anon_sym_const] = ACTIONS(1763), - [anon_sym_typedef] = ACTIONS(1763), - [anon_sym_DASH_DASH] = ACTIONS(1765), - [anon_sym__Atomic] = ACTIONS(1763), - [sym_identifier] = ACTIONS(1763), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1763), - [sym_number_literal] = ACTIONS(1765), - [anon_sym_volatile] = ACTIONS(1763), - [anon_sym_SQUOTE] = ACTIONS(1765), - [anon_sym_extern] = ACTIONS(1763), - [anon_sym_PLUS_PLUS] = ACTIONS(1765), - [anon_sym_struct] = ACTIONS(1763), - [anon_sym_signed] = ACTIONS(1763), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1763), - [anon_sym_while] = ACTIONS(1763), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1763), - [anon_sym_L_SQUOTE] = ACTIONS(1765), - [anon_sym___attribute__] = ACTIONS(1763), - [anon_sym_sizeof] = ACTIONS(1763), - [anon_sym_LBRACE] = ACTIONS(1765), - [anon_sym_union] = ACTIONS(1763), - [anon_sym_unsigned] = ACTIONS(1763), - [anon_sym_short] = ACTIONS(1763), - [anon_sym_do] = ACTIONS(1763), - [sym_preproc_directive] = ACTIONS(1763), - [anon_sym_AMP] = ACTIONS(1765), - [aux_sym_preproc_if_token1] = ACTIONS(1763), - [anon_sym_TILDE] = ACTIONS(1765), - [anon_sym_L_DQUOTE] = ACTIONS(1765), - [anon_sym_LPAREN2] = ACTIONS(1765), - [sym_primitive_type] = ACTIONS(1763), - [anon_sym_for] = ACTIONS(1763), - [anon_sym_break] = ACTIONS(1763), - [anon_sym_BANG] = ACTIONS(1765), - [aux_sym_preproc_include_token1] = ACTIONS(1763), - [anon_sym_DASH] = ACTIONS(1763), - [anon_sym_static] = ACTIONS(1763), - [anon_sym_DQUOTE] = ACTIONS(1765), - [anon_sym_register] = ACTIONS(1763), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_switch] = ACTIONS(1763), - [anon_sym_enum] = ACTIONS(1763), - [sym_false] = ACTIONS(1763), - [ts_builtin_sym_end] = ACTIONS(1765), - [anon_sym_return] = ACTIONS(1763), - [anon_sym_continue] = ACTIONS(1763), - [anon_sym_SEMI] = ACTIONS(1765), - [aux_sym_preproc_def_token1] = ACTIONS(1763), - [anon_sym_PLUS] = ACTIONS(1763), - [anon_sym_auto] = ACTIONS(1763), - [anon_sym_inline] = ACTIONS(1763), + [sym_identifier] = ACTIONS(1089), + [aux_sym_preproc_include_token1] = ACTIONS(1089), + [aux_sym_preproc_def_token1] = ACTIONS(1089), + [aux_sym_preproc_if_token1] = ACTIONS(1089), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1089), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1089), + [sym_preproc_directive] = ACTIONS(1089), + [anon_sym_SEMI] = ACTIONS(1091), + [anon_sym_typedef] = ACTIONS(1089), + [anon_sym_extern] = ACTIONS(1089), + [anon_sym___attribute__] = ACTIONS(1089), + [anon_sym_LPAREN2] = ACTIONS(1091), + [anon_sym_LBRACE] = ACTIONS(1091), + [anon_sym_RBRACE] = ACTIONS(1091), + [anon_sym_STAR] = ACTIONS(1091), + [anon_sym_static] = ACTIONS(1089), + [anon_sym_auto] = ACTIONS(1089), + [anon_sym_register] = ACTIONS(1089), + [anon_sym_inline] = ACTIONS(1089), + [anon_sym_const] = ACTIONS(1089), + [anon_sym_volatile] = ACTIONS(1089), + [anon_sym_restrict] = ACTIONS(1089), + [anon_sym__Atomic] = ACTIONS(1089), + [anon_sym_signed] = ACTIONS(1089), + [anon_sym_unsigned] = ACTIONS(1089), + [anon_sym_long] = ACTIONS(1089), + [anon_sym_short] = ACTIONS(1089), + [sym_primitive_type] = ACTIONS(1089), + [anon_sym_enum] = ACTIONS(1089), + [anon_sym_struct] = ACTIONS(1089), + [anon_sym_union] = ACTIONS(1089), + [anon_sym_if] = ACTIONS(1089), + [anon_sym_switch] = ACTIONS(1089), + [anon_sym_while] = ACTIONS(1089), + [anon_sym_do] = ACTIONS(1089), + [anon_sym_for] = ACTIONS(1089), + [anon_sym_return] = ACTIONS(1089), + [anon_sym_break] = ACTIONS(1089), + [anon_sym_continue] = ACTIONS(1089), + [anon_sym_goto] = ACTIONS(1089), + [anon_sym_AMP] = ACTIONS(1091), + [anon_sym_BANG] = ACTIONS(1091), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_DASH] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1091), + [anon_sym_PLUS_PLUS] = ACTIONS(1091), + [anon_sym_sizeof] = ACTIONS(1089), + [sym_number_literal] = ACTIONS(1091), + [anon_sym_L_SQUOTE] = ACTIONS(1091), + [anon_sym_SQUOTE] = ACTIONS(1091), + [anon_sym_L_DQUOTE] = ACTIONS(1091), + [anon_sym_DQUOTE] = ACTIONS(1091), + [sym_true] = ACTIONS(1089), + [sym_false] = ACTIONS(1089), + [sym_null] = ACTIONS(1089), + [sym_comment] = ACTIONS(3), }, [393] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_COMMA] = ACTIONS(1767), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_DASH_GT] = ACTIONS(281), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_RPAREN] = ACTIONS(1767), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [sym_identifier] = ACTIONS(1133), + [aux_sym_preproc_include_token1] = ACTIONS(1133), + [aux_sym_preproc_def_token1] = ACTIONS(1133), + [aux_sym_preproc_if_token1] = ACTIONS(1133), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1133), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1133), + [sym_preproc_directive] = ACTIONS(1133), + [anon_sym_SEMI] = ACTIONS(1135), + [anon_sym_typedef] = ACTIONS(1133), + [anon_sym_extern] = ACTIONS(1133), + [anon_sym___attribute__] = ACTIONS(1133), + [anon_sym_LPAREN2] = ACTIONS(1135), + [anon_sym_LBRACE] = ACTIONS(1135), + [anon_sym_RBRACE] = ACTIONS(1135), + [anon_sym_STAR] = ACTIONS(1135), + [anon_sym_static] = ACTIONS(1133), + [anon_sym_auto] = ACTIONS(1133), + [anon_sym_register] = ACTIONS(1133), + [anon_sym_inline] = ACTIONS(1133), + [anon_sym_const] = ACTIONS(1133), + [anon_sym_volatile] = ACTIONS(1133), + [anon_sym_restrict] = ACTIONS(1133), + [anon_sym__Atomic] = ACTIONS(1133), + [anon_sym_signed] = ACTIONS(1133), + [anon_sym_unsigned] = ACTIONS(1133), + [anon_sym_long] = ACTIONS(1133), + [anon_sym_short] = ACTIONS(1133), + [sym_primitive_type] = ACTIONS(1133), + [anon_sym_enum] = ACTIONS(1133), + [anon_sym_struct] = ACTIONS(1133), + [anon_sym_union] = ACTIONS(1133), + [anon_sym_if] = ACTIONS(1133), + [anon_sym_switch] = ACTIONS(1133), + [anon_sym_while] = ACTIONS(1133), + [anon_sym_do] = ACTIONS(1133), + [anon_sym_for] = ACTIONS(1133), + [anon_sym_return] = ACTIONS(1133), + [anon_sym_break] = ACTIONS(1133), + [anon_sym_continue] = ACTIONS(1133), + [anon_sym_goto] = ACTIONS(1133), + [anon_sym_AMP] = ACTIONS(1135), + [anon_sym_BANG] = ACTIONS(1135), + [anon_sym_TILDE] = ACTIONS(1135), + [anon_sym_DASH] = ACTIONS(1133), + [anon_sym_PLUS] = ACTIONS(1133), + [anon_sym_DASH_DASH] = ACTIONS(1135), + [anon_sym_PLUS_PLUS] = ACTIONS(1135), + [anon_sym_sizeof] = ACTIONS(1133), + [sym_number_literal] = ACTIONS(1135), + [anon_sym_L_SQUOTE] = ACTIONS(1135), + [anon_sym_SQUOTE] = ACTIONS(1135), + [anon_sym_L_DQUOTE] = ACTIONS(1135), + [anon_sym_DQUOTE] = ACTIONS(1135), + [sym_true] = ACTIONS(1133), + [sym_false] = ACTIONS(1133), + [sym_null] = ACTIONS(1133), + [sym_comment] = ACTIONS(3), }, [394] = { - [anon_sym_GT_GT] = ACTIONS(1769), - [anon_sym_PERCENT_EQ] = ACTIONS(1771), - [anon_sym_DASH_EQ] = ACTIONS(1771), - [anon_sym_PIPE] = ACTIONS(1769), - [anon_sym_EQ_EQ] = ACTIONS(1771), - [anon_sym_SLASH] = ACTIONS(1769), - [anon_sym_DASH_GT] = ACTIONS(1771), - [anon_sym_LT_LT] = ACTIONS(1769), - [anon_sym_DASH_DASH] = ACTIONS(1771), - [anon_sym_PLUS_EQ] = ACTIONS(1771), - [anon_sym_LT_LT_EQ] = ACTIONS(1771), - [anon_sym_QMARK] = ACTIONS(1771), - [anon_sym_BANG_EQ] = ACTIONS(1771), - [anon_sym_CARET_EQ] = ACTIONS(1771), - [anon_sym_COMMA] = ACTIONS(1771), - [anon_sym_PLUS_PLUS] = ACTIONS(1771), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT_EQ] = ACTIONS(1771), - [anon_sym_GT] = ACTIONS(1769), - [anon_sym_PIPE_EQ] = ACTIONS(1771), - [anon_sym_RPAREN] = ACTIONS(1771), - [anon_sym_RBRACK] = ACTIONS(1771), - [anon_sym_AMP_EQ] = ACTIONS(1771), - [anon_sym_PERCENT] = ACTIONS(1769), - [anon_sym_AMP] = ACTIONS(1769), - [anon_sym_EQ] = ACTIONS(1769), - [anon_sym_LPAREN2] = ACTIONS(1771), - [anon_sym_GT_EQ] = ACTIONS(1771), - [anon_sym_RBRACE] = ACTIONS(1771), - [anon_sym_COLON] = ACTIONS(1771), - [anon_sym_STAR_EQ] = ACTIONS(1771), - [anon_sym_PIPE_PIPE] = ACTIONS(1771), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_LT_EQ] = ACTIONS(1771), - [anon_sym_STAR] = ACTIONS(1769), - [anon_sym_SLASH_EQ] = ACTIONS(1771), - [anon_sym_AMP_AMP] = ACTIONS(1771), - [anon_sym_SEMI] = ACTIONS(1771), - [anon_sym_CARET] = ACTIONS(1769), - [anon_sym_PLUS] = ACTIONS(1769), - [anon_sym_DOT] = ACTIONS(1771), - [anon_sym_LT] = ACTIONS(1769), - [anon_sym_LBRACK] = ACTIONS(1771), + [sym_identifier] = ACTIONS(1153), + [aux_sym_preproc_include_token1] = ACTIONS(1153), + [aux_sym_preproc_def_token1] = ACTIONS(1153), + [aux_sym_preproc_if_token1] = ACTIONS(1153), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1153), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1153), + [sym_preproc_directive] = ACTIONS(1153), + [anon_sym_SEMI] = ACTIONS(1155), + [anon_sym_typedef] = ACTIONS(1153), + [anon_sym_extern] = ACTIONS(1153), + [anon_sym___attribute__] = ACTIONS(1153), + [anon_sym_LPAREN2] = ACTIONS(1155), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_RBRACE] = ACTIONS(1155), + [anon_sym_STAR] = ACTIONS(1155), + [anon_sym_static] = ACTIONS(1153), + [anon_sym_auto] = ACTIONS(1153), + [anon_sym_register] = ACTIONS(1153), + [anon_sym_inline] = ACTIONS(1153), + [anon_sym_const] = ACTIONS(1153), + [anon_sym_volatile] = ACTIONS(1153), + [anon_sym_restrict] = ACTIONS(1153), + [anon_sym__Atomic] = ACTIONS(1153), + [anon_sym_signed] = ACTIONS(1153), + [anon_sym_unsigned] = ACTIONS(1153), + [anon_sym_long] = ACTIONS(1153), + [anon_sym_short] = ACTIONS(1153), + [sym_primitive_type] = ACTIONS(1153), + [anon_sym_enum] = ACTIONS(1153), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1153), + [anon_sym_if] = ACTIONS(1153), + [anon_sym_switch] = ACTIONS(1153), + [anon_sym_while] = ACTIONS(1153), + [anon_sym_do] = ACTIONS(1153), + [anon_sym_for] = ACTIONS(1153), + [anon_sym_return] = ACTIONS(1153), + [anon_sym_break] = ACTIONS(1153), + [anon_sym_continue] = ACTIONS(1153), + [anon_sym_goto] = ACTIONS(1153), + [anon_sym_AMP] = ACTIONS(1155), + [anon_sym_BANG] = ACTIONS(1155), + [anon_sym_TILDE] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1153), + [anon_sym_PLUS] = ACTIONS(1153), + [anon_sym_DASH_DASH] = ACTIONS(1155), + [anon_sym_PLUS_PLUS] = ACTIONS(1155), + [anon_sym_sizeof] = ACTIONS(1153), + [sym_number_literal] = ACTIONS(1155), + [anon_sym_L_SQUOTE] = ACTIONS(1155), + [anon_sym_SQUOTE] = ACTIONS(1155), + [anon_sym_L_DQUOTE] = ACTIONS(1155), + [anon_sym_DQUOTE] = ACTIONS(1155), + [sym_true] = ACTIONS(1153), + [sym_false] = ACTIONS(1153), + [sym_null] = ACTIONS(1153), + [sym_comment] = ACTIONS(3), }, [395] = { - [aux_sym_argument_list_repeat1] = STATE(395), - [anon_sym_COMMA] = ACTIONS(1773), - [anon_sym_RPAREN] = ACTIONS(1767), + [sym_identifier] = ACTIONS(1149), + [aux_sym_preproc_include_token1] = ACTIONS(1149), + [aux_sym_preproc_def_token1] = ACTIONS(1149), + [aux_sym_preproc_if_token1] = ACTIONS(1149), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1149), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1149), + [sym_preproc_directive] = ACTIONS(1149), + [anon_sym_SEMI] = ACTIONS(1151), + [anon_sym_typedef] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1149), + [anon_sym___attribute__] = ACTIONS(1149), + [anon_sym_LPAREN2] = ACTIONS(1151), + [anon_sym_LBRACE] = ACTIONS(1151), + [anon_sym_RBRACE] = ACTIONS(1151), + [anon_sym_STAR] = ACTIONS(1151), + [anon_sym_static] = ACTIONS(1149), + [anon_sym_auto] = ACTIONS(1149), + [anon_sym_register] = ACTIONS(1149), + [anon_sym_inline] = ACTIONS(1149), + [anon_sym_const] = ACTIONS(1149), + [anon_sym_volatile] = ACTIONS(1149), + [anon_sym_restrict] = ACTIONS(1149), + [anon_sym__Atomic] = ACTIONS(1149), + [anon_sym_signed] = ACTIONS(1149), + [anon_sym_unsigned] = ACTIONS(1149), + [anon_sym_long] = ACTIONS(1149), + [anon_sym_short] = ACTIONS(1149), + [sym_primitive_type] = ACTIONS(1149), + [anon_sym_enum] = ACTIONS(1149), + [anon_sym_struct] = ACTIONS(1149), + [anon_sym_union] = ACTIONS(1149), + [anon_sym_if] = ACTIONS(1149), + [anon_sym_switch] = ACTIONS(1149), + [anon_sym_while] = ACTIONS(1149), + [anon_sym_do] = ACTIONS(1149), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_return] = ACTIONS(1149), + [anon_sym_break] = ACTIONS(1149), + [anon_sym_continue] = ACTIONS(1149), + [anon_sym_goto] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(1151), + [anon_sym_BANG] = ACTIONS(1151), + [anon_sym_TILDE] = ACTIONS(1151), + [anon_sym_DASH] = ACTIONS(1149), + [anon_sym_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1151), + [anon_sym_PLUS_PLUS] = ACTIONS(1151), + [anon_sym_sizeof] = ACTIONS(1149), + [sym_number_literal] = ACTIONS(1151), + [anon_sym_L_SQUOTE] = ACTIONS(1151), + [anon_sym_SQUOTE] = ACTIONS(1151), + [anon_sym_L_DQUOTE] = ACTIONS(1151), + [anon_sym_DQUOTE] = ACTIONS(1151), + [sym_true] = ACTIONS(1149), + [sym_false] = ACTIONS(1149), + [sym_null] = ACTIONS(1149), [sym_comment] = ACTIONS(3), }, [396] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_COLON] = ACTIONS(1776), - [anon_sym_RBRACE] = ACTIONS(1776), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_COMMA] = ACTIONS(1776), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_SEMI] = ACTIONS(1776), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_RPAREN] = ACTIONS(1776), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_RBRACK] = ACTIONS(1776), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [sym_identifier] = ACTIONS(1141), + [aux_sym_preproc_include_token1] = ACTIONS(1141), + [aux_sym_preproc_def_token1] = ACTIONS(1141), + [aux_sym_preproc_if_token1] = ACTIONS(1141), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1141), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1141), + [sym_preproc_directive] = ACTIONS(1141), + [anon_sym_SEMI] = ACTIONS(1143), + [anon_sym_typedef] = ACTIONS(1141), + [anon_sym_extern] = ACTIONS(1141), + [anon_sym___attribute__] = ACTIONS(1141), + [anon_sym_LPAREN2] = ACTIONS(1143), + [anon_sym_LBRACE] = ACTIONS(1143), + [anon_sym_RBRACE] = ACTIONS(1143), + [anon_sym_STAR] = ACTIONS(1143), + [anon_sym_static] = ACTIONS(1141), + [anon_sym_auto] = ACTIONS(1141), + [anon_sym_register] = ACTIONS(1141), + [anon_sym_inline] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_volatile] = ACTIONS(1141), + [anon_sym_restrict] = ACTIONS(1141), + [anon_sym__Atomic] = ACTIONS(1141), + [anon_sym_signed] = ACTIONS(1141), + [anon_sym_unsigned] = ACTIONS(1141), + [anon_sym_long] = ACTIONS(1141), + [anon_sym_short] = ACTIONS(1141), + [sym_primitive_type] = ACTIONS(1141), + [anon_sym_enum] = ACTIONS(1141), + [anon_sym_struct] = ACTIONS(1141), + [anon_sym_union] = ACTIONS(1141), + [anon_sym_if] = ACTIONS(1141), + [anon_sym_switch] = ACTIONS(1141), + [anon_sym_while] = ACTIONS(1141), + [anon_sym_do] = ACTIONS(1141), + [anon_sym_for] = ACTIONS(1141), + [anon_sym_return] = ACTIONS(1141), + [anon_sym_break] = ACTIONS(1141), + [anon_sym_continue] = ACTIONS(1141), + [anon_sym_goto] = ACTIONS(1141), + [anon_sym_AMP] = ACTIONS(1143), + [anon_sym_BANG] = ACTIONS(1143), + [anon_sym_TILDE] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1141), + [anon_sym_PLUS] = ACTIONS(1141), + [anon_sym_DASH_DASH] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1143), + [anon_sym_sizeof] = ACTIONS(1141), + [sym_number_literal] = ACTIONS(1143), + [anon_sym_L_SQUOTE] = ACTIONS(1143), + [anon_sym_SQUOTE] = ACTIONS(1143), + [anon_sym_L_DQUOTE] = ACTIONS(1143), + [anon_sym_DQUOTE] = ACTIONS(1143), + [sym_true] = ACTIONS(1141), + [sym_false] = ACTIONS(1141), + [sym_null] = ACTIONS(1141), + [sym_comment] = ACTIONS(3), }, [397] = { - [anon_sym_LBRACE] = ACTIONS(1778), - [anon_sym_EQ] = ACTIONS(1778), + [ts_builtin_sym_end] = ACTIONS(1155), + [sym_identifier] = ACTIONS(1153), + [aux_sym_preproc_include_token1] = ACTIONS(1153), + [aux_sym_preproc_def_token1] = ACTIONS(1153), + [aux_sym_preproc_if_token1] = ACTIONS(1153), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1153), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1153), + [sym_preproc_directive] = ACTIONS(1153), + [anon_sym_SEMI] = ACTIONS(1155), + [anon_sym_typedef] = ACTIONS(1153), + [anon_sym_extern] = ACTIONS(1153), + [anon_sym___attribute__] = ACTIONS(1153), + [anon_sym_LPAREN2] = ACTIONS(1155), + [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_STAR] = ACTIONS(1155), + [anon_sym_static] = ACTIONS(1153), + [anon_sym_auto] = ACTIONS(1153), + [anon_sym_register] = ACTIONS(1153), + [anon_sym_inline] = ACTIONS(1153), + [anon_sym_const] = ACTIONS(1153), + [anon_sym_volatile] = ACTIONS(1153), + [anon_sym_restrict] = ACTIONS(1153), + [anon_sym__Atomic] = ACTIONS(1153), + [anon_sym_signed] = ACTIONS(1153), + [anon_sym_unsigned] = ACTIONS(1153), + [anon_sym_long] = ACTIONS(1153), + [anon_sym_short] = ACTIONS(1153), + [sym_primitive_type] = ACTIONS(1153), + [anon_sym_enum] = ACTIONS(1153), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1153), + [anon_sym_if] = ACTIONS(1153), + [anon_sym_switch] = ACTIONS(1153), + [anon_sym_while] = ACTIONS(1153), + [anon_sym_do] = ACTIONS(1153), + [anon_sym_for] = ACTIONS(1153), + [anon_sym_return] = ACTIONS(1153), + [anon_sym_break] = ACTIONS(1153), + [anon_sym_continue] = ACTIONS(1153), + [anon_sym_goto] = ACTIONS(1153), + [anon_sym_AMP] = ACTIONS(1155), + [anon_sym_BANG] = ACTIONS(1155), + [anon_sym_TILDE] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1153), + [anon_sym_PLUS] = ACTIONS(1153), + [anon_sym_DASH_DASH] = ACTIONS(1155), + [anon_sym_PLUS_PLUS] = ACTIONS(1155), + [anon_sym_sizeof] = ACTIONS(1153), + [sym_number_literal] = ACTIONS(1155), + [anon_sym_L_SQUOTE] = ACTIONS(1155), + [anon_sym_SQUOTE] = ACTIONS(1155), + [anon_sym_L_DQUOTE] = ACTIONS(1155), + [anon_sym_DQUOTE] = ACTIONS(1155), + [sym_true] = ACTIONS(1153), + [sym_false] = ACTIONS(1153), + [sym_null] = ACTIONS(1153), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(1778), - [anon_sym_COMMA] = ACTIONS(1778), - [anon_sym_SEMI] = ACTIONS(1778), - [anon_sym_RPAREN] = ACTIONS(1778), - [anon_sym_LBRACK] = ACTIONS(1778), }, [398] = { - [sym_char_literal] = STATE(54), - [sym__expression] = STATE(54), - [sym_binary_expression] = STATE(54), - [sym_update_expression] = STATE(54), - [sym_call_expression] = STATE(54), - [sym_pointer_expression] = STATE(54), - [sym_unary_expression] = STATE(54), - [sym_sizeof_expression] = STATE(54), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(54), - [sym_concatenated_string] = STATE(54), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(54), - [sym_assignment_expression] = STATE(54), - [sym_cast_expression] = STATE(54), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(54), - [sym_true] = ACTIONS(153), - [sym_null] = ACTIONS(153), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(155), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(159), - [sym_identifier] = ACTIONS(153), - [anon_sym_BANG] = ACTIONS(155), - [anon_sym_DASH] = ACTIONS(161), - [sym_number_literal] = ACTIONS(163), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(159), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_RBRACK] = ACTIONS(1780), - [anon_sym_sizeof] = ACTIONS(165), + [ts_builtin_sym_end] = ACTIONS(1099), + [sym_identifier] = ACTIONS(1097), + [aux_sym_preproc_include_token1] = ACTIONS(1097), + [aux_sym_preproc_def_token1] = ACTIONS(1097), + [aux_sym_preproc_if_token1] = ACTIONS(1097), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1097), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1097), + [sym_preproc_directive] = ACTIONS(1097), + [anon_sym_SEMI] = ACTIONS(1099), + [anon_sym_typedef] = ACTIONS(1097), + [anon_sym_extern] = ACTIONS(1097), + [anon_sym___attribute__] = ACTIONS(1097), + [anon_sym_LPAREN2] = ACTIONS(1099), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_STAR] = ACTIONS(1099), + [anon_sym_static] = ACTIONS(1097), + [anon_sym_auto] = ACTIONS(1097), + [anon_sym_register] = ACTIONS(1097), + [anon_sym_inline] = ACTIONS(1097), + [anon_sym_const] = ACTIONS(1097), + [anon_sym_volatile] = ACTIONS(1097), + [anon_sym_restrict] = ACTIONS(1097), + [anon_sym__Atomic] = ACTIONS(1097), + [anon_sym_signed] = ACTIONS(1097), + [anon_sym_unsigned] = ACTIONS(1097), + [anon_sym_long] = ACTIONS(1097), + [anon_sym_short] = ACTIONS(1097), + [sym_primitive_type] = ACTIONS(1097), + [anon_sym_enum] = ACTIONS(1097), + [anon_sym_struct] = ACTIONS(1097), + [anon_sym_union] = ACTIONS(1097), + [anon_sym_if] = ACTIONS(1097), + [anon_sym_switch] = ACTIONS(1097), + [anon_sym_while] = ACTIONS(1097), + [anon_sym_do] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1097), + [anon_sym_return] = ACTIONS(1097), + [anon_sym_break] = ACTIONS(1097), + [anon_sym_continue] = ACTIONS(1097), + [anon_sym_goto] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), + [anon_sym_TILDE] = ACTIONS(1099), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_PLUS_PLUS] = ACTIONS(1099), + [anon_sym_sizeof] = ACTIONS(1097), + [sym_number_literal] = ACTIONS(1099), + [anon_sym_L_SQUOTE] = ACTIONS(1099), + [anon_sym_SQUOTE] = ACTIONS(1099), + [anon_sym_L_DQUOTE] = ACTIONS(1099), + [anon_sym_DQUOTE] = ACTIONS(1099), + [sym_true] = ACTIONS(1097), + [sym_false] = ACTIONS(1097), + [sym_null] = ACTIONS(1097), + [sym_comment] = ACTIONS(3), }, [399] = { - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_EQ] = ACTIONS(1782), + [sym_identifier] = ACTIONS(1105), + [aux_sym_preproc_include_token1] = ACTIONS(1105), + [aux_sym_preproc_def_token1] = ACTIONS(1105), + [aux_sym_preproc_if_token1] = ACTIONS(1105), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1105), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1105), + [sym_preproc_directive] = ACTIONS(1105), + [anon_sym_SEMI] = ACTIONS(1107), + [anon_sym_typedef] = ACTIONS(1105), + [anon_sym_extern] = ACTIONS(1105), + [anon_sym___attribute__] = ACTIONS(1105), + [anon_sym_LPAREN2] = ACTIONS(1107), + [anon_sym_LBRACE] = ACTIONS(1107), + [anon_sym_RBRACE] = ACTIONS(1107), + [anon_sym_STAR] = ACTIONS(1107), + [anon_sym_static] = ACTIONS(1105), + [anon_sym_auto] = ACTIONS(1105), + [anon_sym_register] = ACTIONS(1105), + [anon_sym_inline] = ACTIONS(1105), + [anon_sym_const] = ACTIONS(1105), + [anon_sym_volatile] = ACTIONS(1105), + [anon_sym_restrict] = ACTIONS(1105), + [anon_sym__Atomic] = ACTIONS(1105), + [anon_sym_signed] = ACTIONS(1105), + [anon_sym_unsigned] = ACTIONS(1105), + [anon_sym_long] = ACTIONS(1105), + [anon_sym_short] = ACTIONS(1105), + [sym_primitive_type] = ACTIONS(1105), + [anon_sym_enum] = ACTIONS(1105), + [anon_sym_struct] = ACTIONS(1105), + [anon_sym_union] = ACTIONS(1105), + [anon_sym_if] = ACTIONS(1105), + [anon_sym_switch] = ACTIONS(1105), + [anon_sym_while] = ACTIONS(1105), + [anon_sym_do] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1105), + [anon_sym_return] = ACTIONS(1105), + [anon_sym_break] = ACTIONS(1105), + [anon_sym_continue] = ACTIONS(1105), + [anon_sym_goto] = ACTIONS(1105), + [anon_sym_AMP] = ACTIONS(1107), + [anon_sym_BANG] = ACTIONS(1107), + [anon_sym_TILDE] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1105), + [anon_sym_PLUS] = ACTIONS(1105), + [anon_sym_DASH_DASH] = ACTIONS(1107), + [anon_sym_PLUS_PLUS] = ACTIONS(1107), + [anon_sym_sizeof] = ACTIONS(1105), + [sym_number_literal] = ACTIONS(1107), + [anon_sym_L_SQUOTE] = ACTIONS(1107), + [anon_sym_SQUOTE] = ACTIONS(1107), + [anon_sym_L_DQUOTE] = ACTIONS(1107), + [anon_sym_DQUOTE] = ACTIONS(1107), + [sym_true] = ACTIONS(1105), + [sym_false] = ACTIONS(1105), + [sym_null] = ACTIONS(1105), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(1782), - [anon_sym_COMMA] = ACTIONS(1782), - [anon_sym_SEMI] = ACTIONS(1782), - [anon_sym_RPAREN] = ACTIONS(1782), - [anon_sym_LBRACK] = ACTIONS(1782), }, [400] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_RBRACK] = ACTIONS(1780), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [ts_builtin_sym_end] = ACTIONS(1115), + [sym_identifier] = ACTIONS(1113), + [aux_sym_preproc_include_token1] = ACTIONS(1113), + [aux_sym_preproc_def_token1] = ACTIONS(1113), + [aux_sym_preproc_if_token1] = ACTIONS(1113), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1113), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1113), + [sym_preproc_directive] = ACTIONS(1113), + [anon_sym_SEMI] = ACTIONS(1115), + [anon_sym_typedef] = ACTIONS(1113), + [anon_sym_extern] = ACTIONS(1113), + [anon_sym___attribute__] = ACTIONS(1113), + [anon_sym_LPAREN2] = ACTIONS(1115), + [anon_sym_LBRACE] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_static] = ACTIONS(1113), + [anon_sym_auto] = ACTIONS(1113), + [anon_sym_register] = ACTIONS(1113), + [anon_sym_inline] = ACTIONS(1113), + [anon_sym_const] = ACTIONS(1113), + [anon_sym_volatile] = ACTIONS(1113), + [anon_sym_restrict] = ACTIONS(1113), + [anon_sym__Atomic] = ACTIONS(1113), + [anon_sym_signed] = ACTIONS(1113), + [anon_sym_unsigned] = ACTIONS(1113), + [anon_sym_long] = ACTIONS(1113), + [anon_sym_short] = ACTIONS(1113), + [sym_primitive_type] = ACTIONS(1113), + [anon_sym_enum] = ACTIONS(1113), + [anon_sym_struct] = ACTIONS(1113), + [anon_sym_union] = ACTIONS(1113), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_switch] = ACTIONS(1113), + [anon_sym_while] = ACTIONS(1113), + [anon_sym_do] = ACTIONS(1113), + [anon_sym_for] = ACTIONS(1113), + [anon_sym_return] = ACTIONS(1113), + [anon_sym_break] = ACTIONS(1113), + [anon_sym_continue] = ACTIONS(1113), + [anon_sym_goto] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(1115), + [anon_sym_BANG] = ACTIONS(1115), + [anon_sym_TILDE] = ACTIONS(1115), + [anon_sym_DASH] = ACTIONS(1113), + [anon_sym_PLUS] = ACTIONS(1113), + [anon_sym_DASH_DASH] = ACTIONS(1115), + [anon_sym_PLUS_PLUS] = ACTIONS(1115), + [anon_sym_sizeof] = ACTIONS(1113), + [sym_number_literal] = ACTIONS(1115), + [anon_sym_L_SQUOTE] = ACTIONS(1115), + [anon_sym_SQUOTE] = ACTIONS(1115), + [anon_sym_L_DQUOTE] = ACTIONS(1115), + [anon_sym_DQUOTE] = ACTIONS(1115), + [sym_true] = ACTIONS(1113), + [sym_false] = ACTIONS(1113), + [sym_null] = ACTIONS(1113), + [sym_comment] = ACTIONS(3), }, [401] = { - [sym_attribute_specifier] = STATE(401), - [aux_sym_function_declarator_repeat1] = STATE(401), - [anon_sym_LBRACE] = ACTIONS(1784), - [anon_sym_EQ] = ACTIONS(1784), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(1784), - [anon_sym_COMMA] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(1784), - [anon_sym_RPAREN] = ACTIONS(1784), - [anon_sym___attribute__] = ACTIONS(1786), - [anon_sym_LBRACK] = ACTIONS(1784), + [ts_builtin_sym_end] = ACTIONS(1111), + [sym_identifier] = ACTIONS(1109), + [aux_sym_preproc_include_token1] = ACTIONS(1109), + [aux_sym_preproc_def_token1] = ACTIONS(1109), + [aux_sym_preproc_if_token1] = ACTIONS(1109), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1109), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1109), + [sym_preproc_directive] = ACTIONS(1109), + [anon_sym_SEMI] = ACTIONS(1111), + [anon_sym_typedef] = ACTIONS(1109), + [anon_sym_extern] = ACTIONS(1109), + [anon_sym___attribute__] = ACTIONS(1109), + [anon_sym_LPAREN2] = ACTIONS(1111), + [anon_sym_LBRACE] = ACTIONS(1111), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_static] = ACTIONS(1109), + [anon_sym_auto] = ACTIONS(1109), + [anon_sym_register] = ACTIONS(1109), + [anon_sym_inline] = ACTIONS(1109), + [anon_sym_const] = ACTIONS(1109), + [anon_sym_volatile] = ACTIONS(1109), + [anon_sym_restrict] = ACTIONS(1109), + [anon_sym__Atomic] = ACTIONS(1109), + [anon_sym_signed] = ACTIONS(1109), + [anon_sym_unsigned] = ACTIONS(1109), + [anon_sym_long] = ACTIONS(1109), + [anon_sym_short] = ACTIONS(1109), + [sym_primitive_type] = ACTIONS(1109), + [anon_sym_enum] = ACTIONS(1109), + [anon_sym_struct] = ACTIONS(1109), + [anon_sym_union] = ACTIONS(1109), + [anon_sym_if] = ACTIONS(1109), + [anon_sym_switch] = ACTIONS(1109), + [anon_sym_while] = ACTIONS(1109), + [anon_sym_do] = ACTIONS(1109), + [anon_sym_for] = ACTIONS(1109), + [anon_sym_return] = ACTIONS(1109), + [anon_sym_break] = ACTIONS(1109), + [anon_sym_continue] = ACTIONS(1109), + [anon_sym_goto] = ACTIONS(1109), + [anon_sym_AMP] = ACTIONS(1111), + [anon_sym_BANG] = ACTIONS(1111), + [anon_sym_TILDE] = ACTIONS(1111), + [anon_sym_DASH] = ACTIONS(1109), + [anon_sym_PLUS] = ACTIONS(1109), + [anon_sym_DASH_DASH] = ACTIONS(1111), + [anon_sym_PLUS_PLUS] = ACTIONS(1111), + [anon_sym_sizeof] = ACTIONS(1109), + [sym_number_literal] = ACTIONS(1111), + [anon_sym_L_SQUOTE] = ACTIONS(1111), + [anon_sym_SQUOTE] = ACTIONS(1111), + [anon_sym_L_DQUOTE] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1111), + [sym_true] = ACTIONS(1109), + [sym_false] = ACTIONS(1109), + [sym_null] = ACTIONS(1109), + [sym_comment] = ACTIONS(3), }, [402] = { - [sym_preproc_def] = STATE(653), - [sym_preproc_function_def] = STATE(653), - [sym_sized_type_specifier] = STATE(130), - [sym_enum_specifier] = STATE(130), - [sym__field_declaration_list_item] = STATE(653), - [sym_field_declaration] = STATE(653), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(653), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(130), - [sym_union_specifier] = STATE(130), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_attribute_specifier] = STATE(43), - [sym_macro_type_specifier] = STATE(130), - [sym_preproc_call] = STATE(653), - [sym_preproc_if_in_field_declaration_list] = STATE(653), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(653), - [sym_struct_specifier] = STATE(130), - [sym__declaration_specifiers] = STATE(969), - [sym_storage_class_specifier] = STATE(43), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1475), - [anon_sym_union] = ACTIONS(37), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(7), - [anon_sym_short] = ACTIONS(27), - [anon_sym_static] = ACTIONS(63), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_register] = ACTIONS(63), - [anon_sym_extern] = ACTIONS(63), - [aux_sym_preproc_if_token2] = ACTIONS(1789), - [anon_sym_struct] = ACTIONS(25), - [sym_preproc_directive] = ACTIONS(1479), - [aux_sym_preproc_if_token1] = ACTIONS(1481), - [anon_sym_signed] = ACTIONS(27), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_long] = ACTIONS(27), - [anon_sym_const] = ACTIONS(7), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1475), - [aux_sym_preproc_def_token1] = ACTIONS(1483), - [anon_sym__Atomic] = ACTIONS(7), - [anon_sym_auto] = ACTIONS(63), - [sym_primitive_type] = ACTIONS(348), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(31), - [sym_identifier] = ACTIONS(187), + [ts_builtin_sym_end] = ACTIONS(1103), + [sym_identifier] = ACTIONS(1101), + [aux_sym_preproc_include_token1] = ACTIONS(1101), + [aux_sym_preproc_def_token1] = ACTIONS(1101), + [aux_sym_preproc_if_token1] = ACTIONS(1101), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1101), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1101), + [sym_preproc_directive] = ACTIONS(1101), + [anon_sym_SEMI] = ACTIONS(1103), + [anon_sym_typedef] = ACTIONS(1101), + [anon_sym_extern] = ACTIONS(1101), + [anon_sym___attribute__] = ACTIONS(1101), + [anon_sym_LPAREN2] = ACTIONS(1103), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1103), + [anon_sym_static] = ACTIONS(1101), + [anon_sym_auto] = ACTIONS(1101), + [anon_sym_register] = ACTIONS(1101), + [anon_sym_inline] = ACTIONS(1101), + [anon_sym_const] = ACTIONS(1101), + [anon_sym_volatile] = ACTIONS(1101), + [anon_sym_restrict] = ACTIONS(1101), + [anon_sym__Atomic] = ACTIONS(1101), + [anon_sym_signed] = ACTIONS(1101), + [anon_sym_unsigned] = ACTIONS(1101), + [anon_sym_long] = ACTIONS(1101), + [anon_sym_short] = ACTIONS(1101), + [sym_primitive_type] = ACTIONS(1101), + [anon_sym_enum] = ACTIONS(1101), + [anon_sym_struct] = ACTIONS(1101), + [anon_sym_union] = ACTIONS(1101), + [anon_sym_if] = ACTIONS(1101), + [anon_sym_switch] = ACTIONS(1101), + [anon_sym_while] = ACTIONS(1101), + [anon_sym_do] = ACTIONS(1101), + [anon_sym_for] = ACTIONS(1101), + [anon_sym_return] = ACTIONS(1101), + [anon_sym_break] = ACTIONS(1101), + [anon_sym_continue] = ACTIONS(1101), + [anon_sym_goto] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1103), + [anon_sym_BANG] = ACTIONS(1103), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1103), + [anon_sym_PLUS_PLUS] = ACTIONS(1103), + [anon_sym_sizeof] = ACTIONS(1101), + [sym_number_literal] = ACTIONS(1103), + [anon_sym_L_SQUOTE] = ACTIONS(1103), + [anon_sym_SQUOTE] = ACTIONS(1103), + [anon_sym_L_DQUOTE] = ACTIONS(1103), + [anon_sym_DQUOTE] = ACTIONS(1103), + [sym_true] = ACTIONS(1101), + [sym_false] = ACTIONS(1101), + [sym_null] = ACTIONS(1101), + [sym_comment] = ACTIONS(3), }, [403] = { - [sym_preproc_def] = STATE(465), - [sym_preproc_function_def] = STATE(465), - [sym_sized_type_specifier] = STATE(130), - [sym_enum_specifier] = STATE(130), - [sym__field_declaration_list_item] = STATE(465), - [sym_field_declaration] = STATE(465), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(465), - [sym_preproc_else_in_field_declaration_list] = STATE(466), - [sym__type_specifier] = STATE(130), - [sym_union_specifier] = STATE(130), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_attribute_specifier] = STATE(43), - [sym_preproc_elif_in_field_declaration_list] = STATE(466), - [sym_type_qualifier] = STATE(43), - [sym_macro_type_specifier] = STATE(130), - [sym_preproc_call] = STATE(465), - [sym_preproc_if_in_field_declaration_list] = STATE(465), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(465), - [sym_struct_specifier] = STATE(130), - [sym__declaration_specifiers] = STATE(888), - [sym_storage_class_specifier] = STATE(43), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1145), - [anon_sym_union] = ACTIONS(37), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(7), - [anon_sym_short] = ACTIONS(27), - [anon_sym_static] = ACTIONS(63), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_register] = ACTIONS(63), - [anon_sym_extern] = ACTIONS(63), - [aux_sym_preproc_else_token1] = ACTIONS(1147), - [aux_sym_preproc_if_token2] = ACTIONS(1791), - [anon_sym_struct] = ACTIONS(25), - [sym_preproc_directive] = ACTIONS(1149), - [anon_sym_signed] = ACTIONS(27), - [aux_sym_preproc_if_token1] = ACTIONS(1151), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_long] = ACTIONS(27), - [anon_sym_const] = ACTIONS(7), + [ts_builtin_sym_end] = ACTIONS(1119), + [sym_identifier] = ACTIONS(1117), + [aux_sym_preproc_include_token1] = ACTIONS(1117), + [aux_sym_preproc_def_token1] = ACTIONS(1117), + [aux_sym_preproc_if_token1] = ACTIONS(1117), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1117), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1117), + [sym_preproc_directive] = ACTIONS(1117), + [anon_sym_SEMI] = ACTIONS(1119), + [anon_sym_typedef] = ACTIONS(1117), + [anon_sym_extern] = ACTIONS(1117), + [anon_sym___attribute__] = ACTIONS(1117), + [anon_sym_LPAREN2] = ACTIONS(1119), + [anon_sym_LBRACE] = ACTIONS(1119), + [anon_sym_STAR] = ACTIONS(1119), + [anon_sym_static] = ACTIONS(1117), + [anon_sym_auto] = ACTIONS(1117), + [anon_sym_register] = ACTIONS(1117), + [anon_sym_inline] = ACTIONS(1117), + [anon_sym_const] = ACTIONS(1117), + [anon_sym_volatile] = ACTIONS(1117), + [anon_sym_restrict] = ACTIONS(1117), + [anon_sym__Atomic] = ACTIONS(1117), + [anon_sym_signed] = ACTIONS(1117), + [anon_sym_unsigned] = ACTIONS(1117), + [anon_sym_long] = ACTIONS(1117), + [anon_sym_short] = ACTIONS(1117), + [sym_primitive_type] = ACTIONS(1117), + [anon_sym_enum] = ACTIONS(1117), + [anon_sym_struct] = ACTIONS(1117), + [anon_sym_union] = ACTIONS(1117), + [anon_sym_if] = ACTIONS(1117), + [anon_sym_switch] = ACTIONS(1117), + [anon_sym_while] = ACTIONS(1117), + [anon_sym_do] = ACTIONS(1117), + [anon_sym_for] = ACTIONS(1117), + [anon_sym_return] = ACTIONS(1117), + [anon_sym_break] = ACTIONS(1117), + [anon_sym_continue] = ACTIONS(1117), + [anon_sym_goto] = ACTIONS(1117), + [anon_sym_AMP] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_TILDE] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1117), + [anon_sym_DASH_DASH] = ACTIONS(1119), + [anon_sym_PLUS_PLUS] = ACTIONS(1119), + [anon_sym_sizeof] = ACTIONS(1117), + [sym_number_literal] = ACTIONS(1119), + [anon_sym_L_SQUOTE] = ACTIONS(1119), + [anon_sym_SQUOTE] = ACTIONS(1119), + [anon_sym_L_DQUOTE] = ACTIONS(1119), + [anon_sym_DQUOTE] = ACTIONS(1119), + [sym_true] = ACTIONS(1117), + [sym_false] = ACTIONS(1117), + [sym_null] = ACTIONS(1117), [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1145), - [aux_sym_preproc_elif_token1] = ACTIONS(1155), - [aux_sym_preproc_def_token1] = ACTIONS(1157), - [anon_sym__Atomic] = ACTIONS(7), - [anon_sym_auto] = ACTIONS(63), - [sym_primitive_type] = ACTIONS(348), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(31), - [sym_identifier] = ACTIONS(187), }, [404] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1793), - [anon_sym_union] = ACTIONS(1793), - [anon_sym_unsigned] = ACTIONS(1793), - [anon_sym_restrict] = ACTIONS(1793), - [anon_sym_short] = ACTIONS(1793), - [anon_sym_static] = ACTIONS(1793), - [anon_sym_volatile] = ACTIONS(1793), - [anon_sym_register] = ACTIONS(1793), - [anon_sym_extern] = ACTIONS(1793), - [anon_sym_struct] = ACTIONS(1793), - [sym_preproc_directive] = ACTIONS(1793), - [anon_sym_signed] = ACTIONS(1793), - [aux_sym_preproc_if_token1] = ACTIONS(1793), - [anon_sym_long] = ACTIONS(1793), - [anon_sym_enum] = ACTIONS(1793), - [anon_sym_const] = ACTIONS(1793), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(1795), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1793), - [aux_sym_preproc_def_token1] = ACTIONS(1793), - [anon_sym__Atomic] = ACTIONS(1793), - [anon_sym_auto] = ACTIONS(1793), - [sym_primitive_type] = ACTIONS(1793), - [anon_sym_inline] = ACTIONS(1793), - [anon_sym___attribute__] = ACTIONS(1793), - [sym_identifier] = ACTIONS(1793), + [ts_builtin_sym_end] = ACTIONS(1147), + [sym_identifier] = ACTIONS(1145), + [aux_sym_preproc_include_token1] = ACTIONS(1145), + [aux_sym_preproc_def_token1] = ACTIONS(1145), + [aux_sym_preproc_if_token1] = ACTIONS(1145), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1145), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1145), + [sym_preproc_directive] = ACTIONS(1145), + [anon_sym_SEMI] = ACTIONS(1147), + [anon_sym_typedef] = ACTIONS(1145), + [anon_sym_extern] = ACTIONS(1145), + [anon_sym___attribute__] = ACTIONS(1145), + [anon_sym_LPAREN2] = ACTIONS(1147), + [anon_sym_LBRACE] = ACTIONS(1147), + [anon_sym_STAR] = ACTIONS(1147), + [anon_sym_static] = ACTIONS(1145), + [anon_sym_auto] = ACTIONS(1145), + [anon_sym_register] = ACTIONS(1145), + [anon_sym_inline] = ACTIONS(1145), + [anon_sym_const] = ACTIONS(1145), + [anon_sym_volatile] = ACTIONS(1145), + [anon_sym_restrict] = ACTIONS(1145), + [anon_sym__Atomic] = ACTIONS(1145), + [anon_sym_signed] = ACTIONS(1145), + [anon_sym_unsigned] = ACTIONS(1145), + [anon_sym_long] = ACTIONS(1145), + [anon_sym_short] = ACTIONS(1145), + [sym_primitive_type] = ACTIONS(1145), + [anon_sym_enum] = ACTIONS(1145), + [anon_sym_struct] = ACTIONS(1145), + [anon_sym_union] = ACTIONS(1145), + [anon_sym_if] = ACTIONS(1145), + [anon_sym_switch] = ACTIONS(1145), + [anon_sym_while] = ACTIONS(1145), + [anon_sym_do] = ACTIONS(1145), + [anon_sym_for] = ACTIONS(1145), + [anon_sym_return] = ACTIONS(1145), + [anon_sym_break] = ACTIONS(1145), + [anon_sym_continue] = ACTIONS(1145), + [anon_sym_goto] = ACTIONS(1145), + [anon_sym_AMP] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(1147), + [anon_sym_TILDE] = ACTIONS(1147), + [anon_sym_DASH] = ACTIONS(1145), + [anon_sym_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1147), + [anon_sym_PLUS_PLUS] = ACTIONS(1147), + [anon_sym_sizeof] = ACTIONS(1145), + [sym_number_literal] = ACTIONS(1147), + [anon_sym_L_SQUOTE] = ACTIONS(1147), + [anon_sym_SQUOTE] = ACTIONS(1147), + [anon_sym_L_DQUOTE] = ACTIONS(1147), + [anon_sym_DQUOTE] = ACTIONS(1147), + [sym_true] = ACTIONS(1145), + [sym_false] = ACTIONS(1145), + [sym_null] = ACTIONS(1145), + [sym_comment] = ACTIONS(3), }, [405] = { - [aux_sym_preproc_if_token2] = ACTIONS(1797), + [sym_identifier] = ACTIONS(1093), + [aux_sym_preproc_include_token1] = ACTIONS(1093), + [aux_sym_preproc_def_token1] = ACTIONS(1093), + [aux_sym_preproc_if_token1] = ACTIONS(1093), + [aux_sym_preproc_if_token2] = ACTIONS(1093), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1093), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1093), + [sym_preproc_directive] = ACTIONS(1093), + [anon_sym_SEMI] = ACTIONS(1095), + [anon_sym_typedef] = ACTIONS(1093), + [anon_sym_extern] = ACTIONS(1093), + [anon_sym___attribute__] = ACTIONS(1093), + [anon_sym_LPAREN2] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1095), + [anon_sym_STAR] = ACTIONS(1095), + [anon_sym_static] = ACTIONS(1093), + [anon_sym_auto] = ACTIONS(1093), + [anon_sym_register] = ACTIONS(1093), + [anon_sym_inline] = ACTIONS(1093), + [anon_sym_const] = ACTIONS(1093), + [anon_sym_volatile] = ACTIONS(1093), + [anon_sym_restrict] = ACTIONS(1093), + [anon_sym__Atomic] = ACTIONS(1093), + [anon_sym_signed] = ACTIONS(1093), + [anon_sym_unsigned] = ACTIONS(1093), + [anon_sym_long] = ACTIONS(1093), + [anon_sym_short] = ACTIONS(1093), + [sym_primitive_type] = ACTIONS(1093), + [anon_sym_enum] = ACTIONS(1093), + [anon_sym_struct] = ACTIONS(1093), + [anon_sym_union] = ACTIONS(1093), + [anon_sym_if] = ACTIONS(1093), + [anon_sym_switch] = ACTIONS(1093), + [anon_sym_while] = ACTIONS(1093), + [anon_sym_do] = ACTIONS(1093), + [anon_sym_for] = ACTIONS(1093), + [anon_sym_return] = ACTIONS(1093), + [anon_sym_break] = ACTIONS(1093), + [anon_sym_continue] = ACTIONS(1093), + [anon_sym_goto] = ACTIONS(1093), + [anon_sym_AMP] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_TILDE] = ACTIONS(1095), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_sizeof] = ACTIONS(1093), + [sym_number_literal] = ACTIONS(1095), + [anon_sym_L_SQUOTE] = ACTIONS(1095), + [anon_sym_SQUOTE] = ACTIONS(1095), + [anon_sym_L_DQUOTE] = ACTIONS(1095), + [anon_sym_DQUOTE] = ACTIONS(1095), + [sym_true] = ACTIONS(1093), + [sym_false] = ACTIONS(1093), + [sym_null] = ACTIONS(1093), [sym_comment] = ACTIONS(3), }, [406] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1799), - [anon_sym_union] = ACTIONS(1799), - [anon_sym_unsigned] = ACTIONS(1799), - [anon_sym_restrict] = ACTIONS(1799), - [anon_sym_short] = ACTIONS(1799), - [anon_sym_static] = ACTIONS(1799), - [anon_sym_volatile] = ACTIONS(1799), - [anon_sym_register] = ACTIONS(1799), - [anon_sym_extern] = ACTIONS(1799), - [anon_sym_struct] = ACTIONS(1799), - [sym_preproc_directive] = ACTIONS(1799), - [anon_sym_signed] = ACTIONS(1799), - [aux_sym_preproc_if_token1] = ACTIONS(1799), - [anon_sym_long] = ACTIONS(1799), - [anon_sym_enum] = ACTIONS(1799), - [anon_sym_const] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(1801), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1799), - [aux_sym_preproc_def_token1] = ACTIONS(1799), - [anon_sym__Atomic] = ACTIONS(1799), - [anon_sym_auto] = ACTIONS(1799), - [sym_primitive_type] = ACTIONS(1799), - [anon_sym_inline] = ACTIONS(1799), - [anon_sym___attribute__] = ACTIONS(1799), - [sym_identifier] = ACTIONS(1799), + [ts_builtin_sym_end] = ACTIONS(1151), + [sym_identifier] = ACTIONS(1149), + [aux_sym_preproc_include_token1] = ACTIONS(1149), + [aux_sym_preproc_def_token1] = ACTIONS(1149), + [aux_sym_preproc_if_token1] = ACTIONS(1149), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1149), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1149), + [sym_preproc_directive] = ACTIONS(1149), + [anon_sym_SEMI] = ACTIONS(1151), + [anon_sym_typedef] = ACTIONS(1149), + [anon_sym_extern] = ACTIONS(1149), + [anon_sym___attribute__] = ACTIONS(1149), + [anon_sym_LPAREN2] = ACTIONS(1151), + [anon_sym_LBRACE] = ACTIONS(1151), + [anon_sym_STAR] = ACTIONS(1151), + [anon_sym_static] = ACTIONS(1149), + [anon_sym_auto] = ACTIONS(1149), + [anon_sym_register] = ACTIONS(1149), + [anon_sym_inline] = ACTIONS(1149), + [anon_sym_const] = ACTIONS(1149), + [anon_sym_volatile] = ACTIONS(1149), + [anon_sym_restrict] = ACTIONS(1149), + [anon_sym__Atomic] = ACTIONS(1149), + [anon_sym_signed] = ACTIONS(1149), + [anon_sym_unsigned] = ACTIONS(1149), + [anon_sym_long] = ACTIONS(1149), + [anon_sym_short] = ACTIONS(1149), + [sym_primitive_type] = ACTIONS(1149), + [anon_sym_enum] = ACTIONS(1149), + [anon_sym_struct] = ACTIONS(1149), + [anon_sym_union] = ACTIONS(1149), + [anon_sym_if] = ACTIONS(1149), + [anon_sym_switch] = ACTIONS(1149), + [anon_sym_while] = ACTIONS(1149), + [anon_sym_do] = ACTIONS(1149), + [anon_sym_for] = ACTIONS(1149), + [anon_sym_return] = ACTIONS(1149), + [anon_sym_break] = ACTIONS(1149), + [anon_sym_continue] = ACTIONS(1149), + [anon_sym_goto] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(1151), + [anon_sym_BANG] = ACTIONS(1151), + [anon_sym_TILDE] = ACTIONS(1151), + [anon_sym_DASH] = ACTIONS(1149), + [anon_sym_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1151), + [anon_sym_PLUS_PLUS] = ACTIONS(1151), + [anon_sym_sizeof] = ACTIONS(1149), + [sym_number_literal] = ACTIONS(1151), + [anon_sym_L_SQUOTE] = ACTIONS(1151), + [anon_sym_SQUOTE] = ACTIONS(1151), + [anon_sym_L_DQUOTE] = ACTIONS(1151), + [anon_sym_DQUOTE] = ACTIONS(1151), + [sym_true] = ACTIONS(1149), + [sym_false] = ACTIONS(1149), + [sym_null] = ACTIONS(1149), + [sym_comment] = ACTIONS(3), }, [407] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1803), - [anon_sym_union] = ACTIONS(1803), - [anon_sym_unsigned] = ACTIONS(1803), - [anon_sym_restrict] = ACTIONS(1803), - [anon_sym_short] = ACTIONS(1803), - [anon_sym_static] = ACTIONS(1803), - [anon_sym_volatile] = ACTIONS(1803), - [anon_sym_register] = ACTIONS(1803), - [anon_sym_extern] = ACTIONS(1803), - [anon_sym_struct] = ACTIONS(1803), - [sym_preproc_directive] = ACTIONS(1803), - [anon_sym_signed] = ACTIONS(1803), - [aux_sym_preproc_if_token1] = ACTIONS(1803), - [anon_sym_long] = ACTIONS(1803), - [anon_sym_enum] = ACTIONS(1803), - [anon_sym_const] = ACTIONS(1803), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(1805), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1803), - [aux_sym_preproc_def_token1] = ACTIONS(1803), - [anon_sym__Atomic] = ACTIONS(1803), - [anon_sym_auto] = ACTIONS(1803), - [sym_primitive_type] = ACTIONS(1803), - [anon_sym_inline] = ACTIONS(1803), - [anon_sym___attribute__] = ACTIONS(1803), - [sym_identifier] = ACTIONS(1803), + [sym_identifier] = ACTIONS(1181), + [anon_sym_COMMA] = ACTIONS(1183), + [anon_sym_SEMI] = ACTIONS(1185), + [anon_sym_extern] = ACTIONS(1181), + [anon_sym___attribute__] = ACTIONS(1181), + [anon_sym_LPAREN2] = ACTIONS(1188), + [anon_sym_STAR] = ACTIONS(1192), + [anon_sym_LBRACK] = ACTIONS(1183), + [anon_sym_EQ] = ACTIONS(1195), + [anon_sym_static] = ACTIONS(1181), + [anon_sym_auto] = ACTIONS(1181), + [anon_sym_register] = ACTIONS(1181), + [anon_sym_inline] = ACTIONS(1181), + [anon_sym_const] = ACTIONS(1181), + [anon_sym_volatile] = ACTIONS(1181), + [anon_sym_restrict] = ACTIONS(1181), + [anon_sym__Atomic] = ACTIONS(1181), + [anon_sym_COLON] = ACTIONS(1197), + [anon_sym_QMARK] = ACTIONS(1183), + [anon_sym_STAR_EQ] = ACTIONS(1199), + [anon_sym_SLASH_EQ] = ACTIONS(1199), + [anon_sym_PERCENT_EQ] = ACTIONS(1199), + [anon_sym_PLUS_EQ] = ACTIONS(1199), + [anon_sym_DASH_EQ] = ACTIONS(1199), + [anon_sym_LT_LT_EQ] = ACTIONS(1199), + [anon_sym_GT_GT_EQ] = ACTIONS(1199), + [anon_sym_AMP_EQ] = ACTIONS(1199), + [anon_sym_CARET_EQ] = ACTIONS(1199), + [anon_sym_PIPE_EQ] = ACTIONS(1199), + [anon_sym_AMP] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1201), + [anon_sym_SLASH] = ACTIONS(1201), + [anon_sym_PERCENT] = ACTIONS(1201), + [anon_sym_PIPE_PIPE] = ACTIONS(1183), + [anon_sym_AMP_AMP] = ACTIONS(1183), + [anon_sym_PIPE] = ACTIONS(1201), + [anon_sym_CARET] = ACTIONS(1201), + [anon_sym_EQ_EQ] = ACTIONS(1183), + [anon_sym_BANG_EQ] = ACTIONS(1183), + [anon_sym_GT] = ACTIONS(1201), + [anon_sym_GT_EQ] = ACTIONS(1183), + [anon_sym_LT_EQ] = ACTIONS(1183), + [anon_sym_LT] = ACTIONS(1201), + [anon_sym_LT_LT] = ACTIONS(1201), + [anon_sym_GT_GT] = ACTIONS(1201), + [anon_sym_DASH_DASH] = ACTIONS(1183), + [anon_sym_PLUS_PLUS] = ACTIONS(1183), + [anon_sym_DOT] = ACTIONS(1183), + [anon_sym_DASH_GT] = ACTIONS(1183), + [sym_comment] = ACTIONS(3), }, [408] = { - [aux_sym_preproc_if_token2] = ACTIONS(1807), + [sym_identifier] = ACTIONS(1181), + [anon_sym_COMMA] = ACTIONS(1183), + [anon_sym_SEMI] = ACTIONS(1185), + [anon_sym_extern] = ACTIONS(1181), + [anon_sym___attribute__] = ACTIONS(1181), + [anon_sym_LPAREN2] = ACTIONS(1188), + [anon_sym_STAR] = ACTIONS(1192), + [anon_sym_LBRACK] = ACTIONS(1183), + [anon_sym_EQ] = ACTIONS(1195), + [anon_sym_static] = ACTIONS(1181), + [anon_sym_auto] = ACTIONS(1181), + [anon_sym_register] = ACTIONS(1181), + [anon_sym_inline] = ACTIONS(1181), + [anon_sym_const] = ACTIONS(1181), + [anon_sym_volatile] = ACTIONS(1181), + [anon_sym_restrict] = ACTIONS(1181), + [anon_sym__Atomic] = ACTIONS(1181), + [anon_sym_COLON] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1183), + [anon_sym_STAR_EQ] = ACTIONS(1199), + [anon_sym_SLASH_EQ] = ACTIONS(1199), + [anon_sym_PERCENT_EQ] = ACTIONS(1199), + [anon_sym_PLUS_EQ] = ACTIONS(1199), + [anon_sym_DASH_EQ] = ACTIONS(1199), + [anon_sym_LT_LT_EQ] = ACTIONS(1199), + [anon_sym_GT_GT_EQ] = ACTIONS(1199), + [anon_sym_AMP_EQ] = ACTIONS(1199), + [anon_sym_CARET_EQ] = ACTIONS(1199), + [anon_sym_PIPE_EQ] = ACTIONS(1199), + [anon_sym_AMP] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1201), + [anon_sym_SLASH] = ACTIONS(1201), + [anon_sym_PERCENT] = ACTIONS(1201), + [anon_sym_PIPE_PIPE] = ACTIONS(1183), + [anon_sym_AMP_AMP] = ACTIONS(1183), + [anon_sym_PIPE] = ACTIONS(1201), + [anon_sym_CARET] = ACTIONS(1201), + [anon_sym_EQ_EQ] = ACTIONS(1183), + [anon_sym_BANG_EQ] = ACTIONS(1183), + [anon_sym_GT] = ACTIONS(1201), + [anon_sym_GT_EQ] = ACTIONS(1183), + [anon_sym_LT_EQ] = ACTIONS(1183), + [anon_sym_LT] = ACTIONS(1201), + [anon_sym_LT_LT] = ACTIONS(1201), + [anon_sym_GT_GT] = ACTIONS(1201), + [anon_sym_DASH_DASH] = ACTIONS(1183), + [anon_sym_PLUS_PLUS] = ACTIONS(1183), + [anon_sym_DOT] = ACTIONS(1183), + [anon_sym_DASH_GT] = ACTIONS(1183), [sym_comment] = ACTIONS(3), }, [409] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1809), - [anon_sym_union] = ACTIONS(1809), - [anon_sym_unsigned] = ACTIONS(1809), - [anon_sym_restrict] = ACTIONS(1809), - [anon_sym_short] = ACTIONS(1809), - [anon_sym_static] = ACTIONS(1809), - [anon_sym_volatile] = ACTIONS(1809), - [anon_sym_register] = ACTIONS(1809), - [anon_sym_extern] = ACTIONS(1809), - [anon_sym_struct] = ACTIONS(1809), - [sym_preproc_directive] = ACTIONS(1809), - [anon_sym_signed] = ACTIONS(1809), - [aux_sym_preproc_if_token1] = ACTIONS(1809), - [anon_sym_long] = ACTIONS(1809), - [anon_sym_enum] = ACTIONS(1809), - [anon_sym_const] = ACTIONS(1809), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(1811), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1809), - [aux_sym_preproc_def_token1] = ACTIONS(1809), - [anon_sym__Atomic] = ACTIONS(1809), - [anon_sym_auto] = ACTIONS(1809), - [sym_primitive_type] = ACTIONS(1809), - [anon_sym_inline] = ACTIONS(1809), - [anon_sym___attribute__] = ACTIONS(1809), - [sym_identifier] = ACTIONS(1809), + [sym_identifier] = ACTIONS(1181), + [anon_sym_COMMA] = ACTIONS(1183), + [anon_sym_SEMI] = ACTIONS(1185), + [anon_sym_extern] = ACTIONS(1181), + [anon_sym___attribute__] = ACTIONS(1181), + [anon_sym_LPAREN2] = ACTIONS(1188), + [anon_sym_STAR] = ACTIONS(1192), + [anon_sym_LBRACK] = ACTIONS(1183), + [anon_sym_EQ] = ACTIONS(1195), + [anon_sym_static] = ACTIONS(1181), + [anon_sym_auto] = ACTIONS(1181), + [anon_sym_register] = ACTIONS(1181), + [anon_sym_inline] = ACTIONS(1181), + [anon_sym_const] = ACTIONS(1181), + [anon_sym_volatile] = ACTIONS(1181), + [anon_sym_restrict] = ACTIONS(1181), + [anon_sym__Atomic] = ACTIONS(1181), + [anon_sym_COLON] = ACTIONS(1205), + [anon_sym_QMARK] = ACTIONS(1183), + [anon_sym_STAR_EQ] = ACTIONS(1199), + [anon_sym_SLASH_EQ] = ACTIONS(1199), + [anon_sym_PERCENT_EQ] = ACTIONS(1199), + [anon_sym_PLUS_EQ] = ACTIONS(1199), + [anon_sym_DASH_EQ] = ACTIONS(1199), + [anon_sym_LT_LT_EQ] = ACTIONS(1199), + [anon_sym_GT_GT_EQ] = ACTIONS(1199), + [anon_sym_AMP_EQ] = ACTIONS(1199), + [anon_sym_CARET_EQ] = ACTIONS(1199), + [anon_sym_PIPE_EQ] = ACTIONS(1199), + [anon_sym_AMP] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1201), + [anon_sym_SLASH] = ACTIONS(1201), + [anon_sym_PERCENT] = ACTIONS(1201), + [anon_sym_PIPE_PIPE] = ACTIONS(1183), + [anon_sym_AMP_AMP] = ACTIONS(1183), + [anon_sym_PIPE] = ACTIONS(1201), + [anon_sym_CARET] = ACTIONS(1201), + [anon_sym_EQ_EQ] = ACTIONS(1183), + [anon_sym_BANG_EQ] = ACTIONS(1183), + [anon_sym_GT] = ACTIONS(1201), + [anon_sym_GT_EQ] = ACTIONS(1183), + [anon_sym_LT_EQ] = ACTIONS(1183), + [anon_sym_LT] = ACTIONS(1201), + [anon_sym_LT_LT] = ACTIONS(1201), + [anon_sym_GT_GT] = ACTIONS(1201), + [anon_sym_DASH_DASH] = ACTIONS(1183), + [anon_sym_PLUS_PLUS] = ACTIONS(1183), + [anon_sym_DOT] = ACTIONS(1183), + [anon_sym_DASH_GT] = ACTIONS(1183), + [sym_comment] = ACTIONS(3), }, [410] = { - [sym_parameter_list] = STATE(327), + [sym_identifier] = ACTIONS(1181), + [anon_sym_COMMA] = ACTIONS(1183), + [anon_sym_SEMI] = ACTIONS(1185), + [anon_sym_extern] = ACTIONS(1181), + [anon_sym___attribute__] = ACTIONS(1181), + [anon_sym_LPAREN2] = ACTIONS(1188), + [anon_sym_STAR] = ACTIONS(1192), + [anon_sym_LBRACK] = ACTIONS(1183), + [anon_sym_EQ] = ACTIONS(1195), + [anon_sym_static] = ACTIONS(1181), + [anon_sym_auto] = ACTIONS(1181), + [anon_sym_register] = ACTIONS(1181), + [anon_sym_inline] = ACTIONS(1181), + [anon_sym_const] = ACTIONS(1181), + [anon_sym_volatile] = ACTIONS(1181), + [anon_sym_restrict] = ACTIONS(1181), + [anon_sym__Atomic] = ACTIONS(1181), + [anon_sym_COLON] = ACTIONS(1207), + [anon_sym_QMARK] = ACTIONS(1183), + [anon_sym_STAR_EQ] = ACTIONS(1199), + [anon_sym_SLASH_EQ] = ACTIONS(1199), + [anon_sym_PERCENT_EQ] = ACTIONS(1199), + [anon_sym_PLUS_EQ] = ACTIONS(1199), + [anon_sym_DASH_EQ] = ACTIONS(1199), + [anon_sym_LT_LT_EQ] = ACTIONS(1199), + [anon_sym_GT_GT_EQ] = ACTIONS(1199), + [anon_sym_AMP_EQ] = ACTIONS(1199), + [anon_sym_CARET_EQ] = ACTIONS(1199), + [anon_sym_PIPE_EQ] = ACTIONS(1199), + [anon_sym_AMP] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1201), + [anon_sym_SLASH] = ACTIONS(1201), + [anon_sym_PERCENT] = ACTIONS(1201), + [anon_sym_PIPE_PIPE] = ACTIONS(1183), + [anon_sym_AMP_AMP] = ACTIONS(1183), + [anon_sym_PIPE] = ACTIONS(1201), + [anon_sym_CARET] = ACTIONS(1201), + [anon_sym_EQ_EQ] = ACTIONS(1183), + [anon_sym_BANG_EQ] = ACTIONS(1183), + [anon_sym_GT] = ACTIONS(1201), + [anon_sym_GT_EQ] = ACTIONS(1183), + [anon_sym_LT_EQ] = ACTIONS(1183), + [anon_sym_LT] = ACTIONS(1201), + [anon_sym_LT_LT] = ACTIONS(1201), + [anon_sym_GT_GT] = ACTIONS(1201), + [anon_sym_DASH_DASH] = ACTIONS(1183), + [anon_sym_PLUS_PLUS] = ACTIONS(1183), + [anon_sym_DOT] = ACTIONS(1183), + [anon_sym_DASH_GT] = ACTIONS(1183), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(652), - [anon_sym_COMMA] = ACTIONS(1813), - [anon_sym_COLON] = ACTIONS(1813), - [anon_sym_SEMI] = ACTIONS(1813), - [anon_sym_RPAREN] = ACTIONS(1813), - [anon_sym_LBRACK] = ACTIONS(1220), }, [411] = { + [sym_identifier] = ACTIONS(1181), + [anon_sym_COMMA] = ACTIONS(1183), + [anon_sym_SEMI] = ACTIONS(1183), + [anon_sym_extern] = ACTIONS(1181), + [anon_sym___attribute__] = ACTIONS(1181), + [anon_sym_LPAREN2] = ACTIONS(1188), + [anon_sym_STAR] = ACTIONS(1192), + [anon_sym_LBRACK] = ACTIONS(1183), + [anon_sym_EQ] = ACTIONS(1195), + [anon_sym_static] = ACTIONS(1181), + [anon_sym_auto] = ACTIONS(1181), + [anon_sym_register] = ACTIONS(1181), + [anon_sym_inline] = ACTIONS(1181), + [anon_sym_const] = ACTIONS(1181), + [anon_sym_volatile] = ACTIONS(1181), + [anon_sym_restrict] = ACTIONS(1181), + [anon_sym__Atomic] = ACTIONS(1181), + [anon_sym_COLON] = ACTIONS(1197), + [anon_sym_QMARK] = ACTIONS(1183), + [anon_sym_STAR_EQ] = ACTIONS(1199), + [anon_sym_SLASH_EQ] = ACTIONS(1199), + [anon_sym_PERCENT_EQ] = ACTIONS(1199), + [anon_sym_PLUS_EQ] = ACTIONS(1199), + [anon_sym_DASH_EQ] = ACTIONS(1199), + [anon_sym_LT_LT_EQ] = ACTIONS(1199), + [anon_sym_GT_GT_EQ] = ACTIONS(1199), + [anon_sym_AMP_EQ] = ACTIONS(1199), + [anon_sym_CARET_EQ] = ACTIONS(1199), + [anon_sym_PIPE_EQ] = ACTIONS(1199), + [anon_sym_AMP] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1201), + [anon_sym_SLASH] = ACTIONS(1201), + [anon_sym_PERCENT] = ACTIONS(1201), + [anon_sym_PIPE_PIPE] = ACTIONS(1183), + [anon_sym_AMP_AMP] = ACTIONS(1183), + [anon_sym_PIPE] = ACTIONS(1201), + [anon_sym_CARET] = ACTIONS(1201), + [anon_sym_EQ_EQ] = ACTIONS(1183), + [anon_sym_BANG_EQ] = ACTIONS(1183), + [anon_sym_GT] = ACTIONS(1201), + [anon_sym_GT_EQ] = ACTIONS(1183), + [anon_sym_LT_EQ] = ACTIONS(1183), + [anon_sym_LT] = ACTIONS(1201), + [anon_sym_LT_LT] = ACTIONS(1201), + [anon_sym_GT_GT] = ACTIONS(1201), + [anon_sym_DASH_DASH] = ACTIONS(1183), + [anon_sym_PLUS_PLUS] = ACTIONS(1183), + [anon_sym_DOT] = ACTIONS(1183), + [anon_sym_DASH_GT] = ACTIONS(1183), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(1815), - [anon_sym_COMMA] = ACTIONS(1815), - [anon_sym_COLON] = ACTIONS(1815), - [anon_sym_SEMI] = ACTIONS(1815), - [anon_sym_RPAREN] = ACTIONS(1815), - [anon_sym_LBRACK] = ACTIONS(1815), }, [412] = { - [sym_parameter_list] = STATE(327), - [anon_sym_LBRACK] = ACTIONS(1220), + [sym_preproc_def] = STATE(413), + [sym_preproc_function_def] = STATE(413), + [sym_preproc_call] = STATE(413), + [sym_preproc_if_in_field_declaration_list] = STATE(413), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(413), + [sym_preproc_else_in_field_declaration_list] = STATE(1269), + [sym_preproc_elif_in_field_declaration_list] = STATE(1269), + [sym__declaration_specifiers] = STATE(888), + [sym_attribute_specifier] = STATE(661), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(835), + [sym_sized_type_specifier] = STATE(835), + [sym_enum_specifier] = STATE(835), + [sym_struct_specifier] = STATE(835), + [sym_union_specifier] = STATE(835), + [sym__field_declaration_list_item] = STATE(413), + [sym_field_declaration] = STATE(413), + [sym_macro_type_specifier] = STATE(835), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(413), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(1209), + [aux_sym_preproc_def_token1] = ACTIONS(1211), + [aux_sym_preproc_if_token1] = ACTIONS(1213), + [aux_sym_preproc_if_token2] = ACTIONS(1215), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1217), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1217), + [aux_sym_preproc_else_token1] = ACTIONS(1219), + [aux_sym_preproc_elif_token1] = ACTIONS(1221), + [sym_preproc_directive] = ACTIONS(1223), + [anon_sym_extern] = ACTIONS(33), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(709), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(652), - [anon_sym_COMMA] = ACTIONS(1817), - [anon_sym_COLON] = ACTIONS(1817), - [anon_sym_SEMI] = ACTIONS(1817), }, [413] = { - [sym_char_literal] = STATE(54), - [sym__expression] = STATE(54), - [sym_binary_expression] = STATE(54), - [sym_update_expression] = STATE(54), - [sym_call_expression] = STATE(54), - [sym_pointer_expression] = STATE(54), - [sym_unary_expression] = STATE(54), - [sym_sizeof_expression] = STATE(54), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(54), - [sym_concatenated_string] = STATE(54), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(54), - [sym_assignment_expression] = STATE(54), - [sym_cast_expression] = STATE(54), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(54), - [sym_true] = ACTIONS(153), - [sym_null] = ACTIONS(153), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(155), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(159), - [sym_identifier] = ACTIONS(153), - [anon_sym_BANG] = ACTIONS(155), - [anon_sym_DASH] = ACTIONS(161), - [sym_number_literal] = ACTIONS(163), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(159), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_RBRACK] = ACTIONS(1819), - [anon_sym_sizeof] = ACTIONS(165), + [sym_preproc_def] = STATE(428), + [sym_preproc_function_def] = STATE(428), + [sym_preproc_call] = STATE(428), + [sym_preproc_if_in_field_declaration_list] = STATE(428), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(428), + [sym_preproc_else_in_field_declaration_list] = STATE(1259), + [sym_preproc_elif_in_field_declaration_list] = STATE(1259), + [sym__declaration_specifiers] = STATE(888), + [sym_attribute_specifier] = STATE(661), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(835), + [sym_sized_type_specifier] = STATE(835), + [sym_enum_specifier] = STATE(835), + [sym_struct_specifier] = STATE(835), + [sym_union_specifier] = STATE(835), + [sym__field_declaration_list_item] = STATE(428), + [sym_field_declaration] = STATE(428), + [sym_macro_type_specifier] = STATE(835), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(428), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(1209), + [aux_sym_preproc_def_token1] = ACTIONS(1211), + [aux_sym_preproc_if_token1] = ACTIONS(1213), + [aux_sym_preproc_if_token2] = ACTIONS(1225), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1217), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1217), + [aux_sym_preproc_else_token1] = ACTIONS(1219), + [aux_sym_preproc_elif_token1] = ACTIONS(1221), + [sym_preproc_directive] = ACTIONS(1223), + [anon_sym_extern] = ACTIONS(33), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(709), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [sym_comment] = ACTIONS(3), }, [414] = { + [sym_preproc_def] = STATE(428), + [sym_preproc_function_def] = STATE(428), + [sym_preproc_call] = STATE(428), + [sym_preproc_if_in_field_declaration_list] = STATE(428), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(428), + [sym_preproc_else_in_field_declaration_list] = STATE(1286), + [sym_preproc_elif_in_field_declaration_list] = STATE(1286), + [sym__declaration_specifiers] = STATE(888), + [sym_attribute_specifier] = STATE(661), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(835), + [sym_sized_type_specifier] = STATE(835), + [sym_enum_specifier] = STATE(835), + [sym_struct_specifier] = STATE(835), + [sym_union_specifier] = STATE(835), + [sym__field_declaration_list_item] = STATE(428), + [sym_field_declaration] = STATE(428), + [sym_macro_type_specifier] = STATE(835), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(428), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(1209), + [aux_sym_preproc_def_token1] = ACTIONS(1211), + [aux_sym_preproc_if_token1] = ACTIONS(1213), + [aux_sym_preproc_if_token2] = ACTIONS(1227), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1217), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1217), + [aux_sym_preproc_else_token1] = ACTIONS(1219), + [aux_sym_preproc_elif_token1] = ACTIONS(1221), + [sym_preproc_directive] = ACTIONS(1223), + [anon_sym_extern] = ACTIONS(33), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(709), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(1821), - [anon_sym_COMMA] = ACTIONS(1821), - [anon_sym_COLON] = ACTIONS(1821), - [anon_sym_SEMI] = ACTIONS(1821), - [anon_sym_RPAREN] = ACTIONS(1821), - [anon_sym_LBRACK] = ACTIONS(1821), }, [415] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_RBRACK] = ACTIONS(1819), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [sym_identifier] = ACTIONS(1181), + [anon_sym_COMMA] = ACTIONS(1183), + [anon_sym_SEMI] = ACTIONS(1183), + [anon_sym_extern] = ACTIONS(1181), + [anon_sym___attribute__] = ACTIONS(1181), + [anon_sym_LPAREN2] = ACTIONS(1188), + [anon_sym_STAR] = ACTIONS(1192), + [anon_sym_LBRACK] = ACTIONS(1183), + [anon_sym_EQ] = ACTIONS(1195), + [anon_sym_static] = ACTIONS(1181), + [anon_sym_auto] = ACTIONS(1181), + [anon_sym_register] = ACTIONS(1181), + [anon_sym_inline] = ACTIONS(1181), + [anon_sym_const] = ACTIONS(1181), + [anon_sym_volatile] = ACTIONS(1181), + [anon_sym_restrict] = ACTIONS(1181), + [anon_sym__Atomic] = ACTIONS(1181), + [anon_sym_QMARK] = ACTIONS(1183), + [anon_sym_STAR_EQ] = ACTIONS(1199), + [anon_sym_SLASH_EQ] = ACTIONS(1199), + [anon_sym_PERCENT_EQ] = ACTIONS(1199), + [anon_sym_PLUS_EQ] = ACTIONS(1199), + [anon_sym_DASH_EQ] = ACTIONS(1199), + [anon_sym_LT_LT_EQ] = ACTIONS(1199), + [anon_sym_GT_GT_EQ] = ACTIONS(1199), + [anon_sym_AMP_EQ] = ACTIONS(1199), + [anon_sym_CARET_EQ] = ACTIONS(1199), + [anon_sym_PIPE_EQ] = ACTIONS(1199), + [anon_sym_AMP] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1201), + [anon_sym_SLASH] = ACTIONS(1201), + [anon_sym_PERCENT] = ACTIONS(1201), + [anon_sym_PIPE_PIPE] = ACTIONS(1183), + [anon_sym_AMP_AMP] = ACTIONS(1183), + [anon_sym_PIPE] = ACTIONS(1201), + [anon_sym_CARET] = ACTIONS(1201), + [anon_sym_EQ_EQ] = ACTIONS(1183), + [anon_sym_BANG_EQ] = ACTIONS(1183), + [anon_sym_GT] = ACTIONS(1201), + [anon_sym_GT_EQ] = ACTIONS(1183), + [anon_sym_LT_EQ] = ACTIONS(1183), + [anon_sym_LT] = ACTIONS(1201), + [anon_sym_LT_LT] = ACTIONS(1201), + [anon_sym_GT_GT] = ACTIONS(1201), + [anon_sym_DASH_DASH] = ACTIONS(1183), + [anon_sym_PLUS_PLUS] = ACTIONS(1183), + [anon_sym_DOT] = ACTIONS(1183), + [anon_sym_DASH_GT] = ACTIONS(1183), + [sym_comment] = ACTIONS(3), }, [416] = { - [sym__expression] = STATE(472), - [sym_binary_expression] = STATE(472), - [sym_update_expression] = STATE(472), - [sym_call_expression] = STATE(36), - [sym_type_qualifier] = STATE(144), - [sym_conditional_expression] = STATE(472), - [sym_assignment_expression] = STATE(472), - [sym_cast_expression] = STATE(472), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(472), - [sym_char_literal] = STATE(472), - [aux_sym_type_definition_repeat1] = STATE(144), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(472), - [sym_sizeof_expression] = STATE(472), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(472), - [sym_string_literal] = STATE(41), - [sym_true] = ACTIONS(1823), - [anon_sym_restrict] = ACTIONS(7), - [sym_null] = ACTIONS(1823), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_const] = ACTIONS(7), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_DASH_DASH] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(7), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(1825), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(1827), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(1823), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_RBRACK] = ACTIONS(1829), - [anon_sym_sizeof] = ACTIONS(33), + [sym_preproc_def] = STATE(428), + [sym_preproc_function_def] = STATE(428), + [sym_preproc_call] = STATE(428), + [sym_preproc_if_in_field_declaration_list] = STATE(428), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(428), + [sym_preproc_else_in_field_declaration_list] = STATE(1287), + [sym_preproc_elif_in_field_declaration_list] = STATE(1287), + [sym__declaration_specifiers] = STATE(888), + [sym_attribute_specifier] = STATE(661), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(835), + [sym_sized_type_specifier] = STATE(835), + [sym_enum_specifier] = STATE(835), + [sym_struct_specifier] = STATE(835), + [sym_union_specifier] = STATE(835), + [sym__field_declaration_list_item] = STATE(428), + [sym_field_declaration] = STATE(428), + [sym_macro_type_specifier] = STATE(835), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(428), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(1209), + [aux_sym_preproc_def_token1] = ACTIONS(1211), + [aux_sym_preproc_if_token1] = ACTIONS(1213), + [aux_sym_preproc_if_token2] = ACTIONS(1229), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1217), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1217), + [aux_sym_preproc_else_token1] = ACTIONS(1219), + [aux_sym_preproc_elif_token1] = ACTIONS(1221), + [sym_preproc_directive] = ACTIONS(1223), + [anon_sym_extern] = ACTIONS(33), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(709), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [sym_comment] = ACTIONS(3), }, [417] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1831), - [anon_sym_union] = ACTIONS(1831), - [anon_sym_unsigned] = ACTIONS(1831), - [anon_sym_restrict] = ACTIONS(1831), - [anon_sym_short] = ACTIONS(1831), - [anon_sym_static] = ACTIONS(1831), - [anon_sym_volatile] = ACTIONS(1831), - [anon_sym_register] = ACTIONS(1831), - [anon_sym_extern] = ACTIONS(1831), - [anon_sym_struct] = ACTIONS(1831), - [sym_preproc_directive] = ACTIONS(1831), - [anon_sym_signed] = ACTIONS(1831), - [aux_sym_preproc_if_token1] = ACTIONS(1831), - [anon_sym_long] = ACTIONS(1831), - [anon_sym_enum] = ACTIONS(1831), - [anon_sym_const] = ACTIONS(1831), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(1833), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1831), - [aux_sym_preproc_def_token1] = ACTIONS(1831), - [anon_sym__Atomic] = ACTIONS(1831), - [anon_sym_auto] = ACTIONS(1831), - [sym_primitive_type] = ACTIONS(1831), - [anon_sym_inline] = ACTIONS(1831), - [anon_sym___attribute__] = ACTIONS(1831), - [sym_identifier] = ACTIONS(1831), + [sym_preproc_def] = STATE(428), + [sym_preproc_function_def] = STATE(428), + [sym_preproc_call] = STATE(428), + [sym_preproc_if_in_field_declaration_list] = STATE(428), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(428), + [sym_preproc_else_in_field_declaration_list] = STATE(1190), + [sym_preproc_elif_in_field_declaration_list] = STATE(1190), + [sym__declaration_specifiers] = STATE(888), + [sym_attribute_specifier] = STATE(661), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(835), + [sym_sized_type_specifier] = STATE(835), + [sym_enum_specifier] = STATE(835), + [sym_struct_specifier] = STATE(835), + [sym_union_specifier] = STATE(835), + [sym__field_declaration_list_item] = STATE(428), + [sym_field_declaration] = STATE(428), + [sym_macro_type_specifier] = STATE(835), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(428), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(1209), + [aux_sym_preproc_def_token1] = ACTIONS(1211), + [aux_sym_preproc_if_token1] = ACTIONS(1213), + [aux_sym_preproc_if_token2] = ACTIONS(1231), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1217), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1217), + [aux_sym_preproc_else_token1] = ACTIONS(1219), + [aux_sym_preproc_elif_token1] = ACTIONS(1221), + [sym_preproc_directive] = ACTIONS(1223), + [anon_sym_extern] = ACTIONS(33), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(709), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [sym_comment] = ACTIONS(3), }, [418] = { + [sym_preproc_def] = STATE(428), + [sym_preproc_function_def] = STATE(428), + [sym_preproc_call] = STATE(428), + [sym_preproc_if_in_field_declaration_list] = STATE(428), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(428), + [sym_preproc_else_in_field_declaration_list] = STATE(1191), + [sym_preproc_elif_in_field_declaration_list] = STATE(1191), + [sym__declaration_specifiers] = STATE(888), + [sym_attribute_specifier] = STATE(661), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(835), + [sym_sized_type_specifier] = STATE(835), + [sym_enum_specifier] = STATE(835), + [sym_struct_specifier] = STATE(835), + [sym_union_specifier] = STATE(835), + [sym__field_declaration_list_item] = STATE(428), + [sym_field_declaration] = STATE(428), + [sym_macro_type_specifier] = STATE(835), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(428), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(1209), + [aux_sym_preproc_def_token1] = ACTIONS(1211), + [aux_sym_preproc_if_token1] = ACTIONS(1213), + [aux_sym_preproc_if_token2] = ACTIONS(1233), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1217), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1217), + [aux_sym_preproc_else_token1] = ACTIONS(1219), + [aux_sym_preproc_elif_token1] = ACTIONS(1221), + [sym_preproc_directive] = ACTIONS(1223), + [anon_sym_extern] = ACTIONS(33), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(709), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1835), }, [419] = { - [aux_sym_field_declaration_repeat1] = STATE(419), + [sym_preproc_def] = STATE(417), + [sym_preproc_function_def] = STATE(417), + [sym_preproc_call] = STATE(417), + [sym_preproc_if_in_field_declaration_list] = STATE(417), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(417), + [sym_preproc_else_in_field_declaration_list] = STATE(1219), + [sym_preproc_elif_in_field_declaration_list] = STATE(1219), + [sym__declaration_specifiers] = STATE(888), + [sym_attribute_specifier] = STATE(661), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(835), + [sym_sized_type_specifier] = STATE(835), + [sym_enum_specifier] = STATE(835), + [sym_struct_specifier] = STATE(835), + [sym_union_specifier] = STATE(835), + [sym__field_declaration_list_item] = STATE(417), + [sym_field_declaration] = STATE(417), + [sym_macro_type_specifier] = STATE(835), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(417), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(1209), + [aux_sym_preproc_def_token1] = ACTIONS(1211), + [aux_sym_preproc_if_token1] = ACTIONS(1213), + [aux_sym_preproc_if_token2] = ACTIONS(1235), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1217), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1217), + [aux_sym_preproc_else_token1] = ACTIONS(1219), + [aux_sym_preproc_elif_token1] = ACTIONS(1221), + [sym_preproc_directive] = ACTIONS(1223), + [anon_sym_extern] = ACTIONS(33), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(709), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1837), - [anon_sym_COLON] = ACTIONS(1840), - [anon_sym_SEMI] = ACTIONS(1840), }, [420] = { - [aux_sym_preproc_if_token2] = ACTIONS(1842), + [sym_preproc_def] = STATE(414), + [sym_preproc_function_def] = STATE(414), + [sym_preproc_call] = STATE(414), + [sym_preproc_if_in_field_declaration_list] = STATE(414), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(414), + [sym_preproc_else_in_field_declaration_list] = STATE(1247), + [sym_preproc_elif_in_field_declaration_list] = STATE(1247), + [sym__declaration_specifiers] = STATE(888), + [sym_attribute_specifier] = STATE(661), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(835), + [sym_sized_type_specifier] = STATE(835), + [sym_enum_specifier] = STATE(835), + [sym_struct_specifier] = STATE(835), + [sym_union_specifier] = STATE(835), + [sym__field_declaration_list_item] = STATE(414), + [sym_field_declaration] = STATE(414), + [sym_macro_type_specifier] = STATE(835), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(414), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(1209), + [aux_sym_preproc_def_token1] = ACTIONS(1211), + [aux_sym_preproc_if_token1] = ACTIONS(1213), + [aux_sym_preproc_if_token2] = ACTIONS(1237), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1217), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1217), + [aux_sym_preproc_else_token1] = ACTIONS(1219), + [aux_sym_preproc_elif_token1] = ACTIONS(1221), + [sym_preproc_directive] = ACTIONS(1223), + [anon_sym_extern] = ACTIONS(33), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(709), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), [sym_comment] = ACTIONS(3), }, [421] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_DASH_GT] = ACTIONS(281), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_RBRACK] = ACTIONS(1844), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [sym_preproc_def] = STATE(416), + [sym_preproc_function_def] = STATE(416), + [sym_preproc_call] = STATE(416), + [sym_preproc_if_in_field_declaration_list] = STATE(416), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(416), + [sym_preproc_else_in_field_declaration_list] = STATE(1183), + [sym_preproc_elif_in_field_declaration_list] = STATE(1183), + [sym__declaration_specifiers] = STATE(888), + [sym_attribute_specifier] = STATE(661), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(835), + [sym_sized_type_specifier] = STATE(835), + [sym_enum_specifier] = STATE(835), + [sym_struct_specifier] = STATE(835), + [sym_union_specifier] = STATE(835), + [sym__field_declaration_list_item] = STATE(416), + [sym_field_declaration] = STATE(416), + [sym_macro_type_specifier] = STATE(835), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(416), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(1209), + [aux_sym_preproc_def_token1] = ACTIONS(1211), + [aux_sym_preproc_if_token1] = ACTIONS(1213), + [aux_sym_preproc_if_token2] = ACTIONS(1239), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1217), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1217), + [aux_sym_preproc_else_token1] = ACTIONS(1219), + [aux_sym_preproc_elif_token1] = ACTIONS(1221), + [sym_preproc_directive] = ACTIONS(1223), + [anon_sym_extern] = ACTIONS(33), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(709), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [sym_comment] = ACTIONS(3), }, [422] = { - [anon_sym_GT_GT] = ACTIONS(1846), - [anon_sym_PERCENT_EQ] = ACTIONS(1848), - [anon_sym_DASH_EQ] = ACTIONS(1848), - [anon_sym_PIPE] = ACTIONS(1846), - [anon_sym_EQ_EQ] = ACTIONS(1848), - [anon_sym_SLASH] = ACTIONS(1846), - [anon_sym_DASH_GT] = ACTIONS(1848), - [anon_sym_LT_LT] = ACTIONS(1846), - [anon_sym_DASH_DASH] = ACTIONS(1848), - [anon_sym_PLUS_EQ] = ACTIONS(1848), - [anon_sym_LT_LT_EQ] = ACTIONS(1848), - [anon_sym_QMARK] = ACTIONS(1848), - [anon_sym_BANG_EQ] = ACTIONS(1848), - [anon_sym_CARET_EQ] = ACTIONS(1848), - [anon_sym_COMMA] = ACTIONS(1848), - [anon_sym_PLUS_PLUS] = ACTIONS(1848), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT_EQ] = ACTIONS(1848), - [anon_sym_GT] = ACTIONS(1846), - [anon_sym_PIPE_EQ] = ACTIONS(1848), - [anon_sym_RPAREN] = ACTIONS(1848), - [anon_sym_RBRACK] = ACTIONS(1848), - [anon_sym_AMP_EQ] = ACTIONS(1848), - [anon_sym_PERCENT] = ACTIONS(1846), - [anon_sym_AMP] = ACTIONS(1846), - [anon_sym_EQ] = ACTIONS(1846), - [anon_sym_LPAREN2] = ACTIONS(1848), - [anon_sym_GT_EQ] = ACTIONS(1848), - [anon_sym_RBRACE] = ACTIONS(1848), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_STAR_EQ] = ACTIONS(1848), - [anon_sym_PIPE_PIPE] = ACTIONS(1848), - [anon_sym_DASH] = ACTIONS(1846), - [anon_sym_LT_EQ] = ACTIONS(1848), - [anon_sym_STAR] = ACTIONS(1846), - [anon_sym_SLASH_EQ] = ACTIONS(1848), - [anon_sym_AMP_AMP] = ACTIONS(1848), - [anon_sym_SEMI] = ACTIONS(1848), - [anon_sym_CARET] = ACTIONS(1846), - [anon_sym_PLUS] = ACTIONS(1846), - [anon_sym_DOT] = ACTIONS(1848), - [anon_sym_LT] = ACTIONS(1846), - [anon_sym_LBRACK] = ACTIONS(1848), + [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(1148), + [sym_preproc_elif_in_field_declaration_list] = STATE(1148), + [sym__declaration_specifiers] = STATE(888), + [sym_attribute_specifier] = STATE(661), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(835), + [sym_sized_type_specifier] = STATE(835), + [sym_enum_specifier] = STATE(835), + [sym_struct_specifier] = STATE(835), + [sym_union_specifier] = STATE(835), + [sym__field_declaration_list_item] = STATE(425), + [sym_field_declaration] = STATE(425), + [sym_macro_type_specifier] = STATE(835), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(425), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(1209), + [aux_sym_preproc_def_token1] = ACTIONS(1211), + [aux_sym_preproc_if_token1] = ACTIONS(1213), + [aux_sym_preproc_if_token2] = ACTIONS(1241), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1217), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1217), + [aux_sym_preproc_else_token1] = ACTIONS(1219), + [aux_sym_preproc_elif_token1] = ACTIONS(1221), + [sym_preproc_directive] = ACTIONS(1223), + [anon_sym_extern] = ACTIONS(33), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(709), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [sym_comment] = ACTIONS(3), }, [423] = { + [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(1155), + [sym_preproc_elif_in_field_declaration_list] = STATE(1155), + [sym__declaration_specifiers] = STATE(888), + [sym_attribute_specifier] = STATE(661), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(835), + [sym_sized_type_specifier] = STATE(835), + [sym_enum_specifier] = STATE(835), + [sym_struct_specifier] = STATE(835), + [sym_union_specifier] = STATE(835), + [sym__field_declaration_list_item] = STATE(426), + [sym_field_declaration] = STATE(426), + [sym_macro_type_specifier] = STATE(835), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(426), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(1209), + [aux_sym_preproc_def_token1] = ACTIONS(1211), + [aux_sym_preproc_if_token1] = ACTIONS(1213), + [aux_sym_preproc_if_token2] = ACTIONS(1243), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1217), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1217), + [aux_sym_preproc_else_token1] = ACTIONS(1219), + [aux_sym_preproc_elif_token1] = ACTIONS(1221), + [sym_preproc_directive] = ACTIONS(1223), + [anon_sym_extern] = ACTIONS(33), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(709), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), [sym_comment] = ACTIONS(3), - [anon_sym_EQ] = ACTIONS(1850), - [anon_sym_DOT] = ACTIONS(1850), - [anon_sym_LBRACK] = ACTIONS(1850), }, [424] = { - [sym__expression] = STATE(476), - [sym_binary_expression] = STATE(476), - [sym_update_expression] = STATE(476), - [sym_call_expression] = STATE(36), - [sym_initializer_pair] = STATE(477), - [sym_subscript_designator] = STATE(336), - [sym_conditional_expression] = STATE(476), - [sym_assignment_expression] = STATE(476), - [sym_cast_expression] = STATE(476), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(476), - [sym_field_designator] = STATE(336), - [sym_char_literal] = STATE(476), - [aux_sym_initializer_pair_repeat1] = STATE(336), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(476), - [sym_sizeof_expression] = STATE(476), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_initializer_list] = STATE(477), - [sym_concatenated_string] = STATE(476), - [sym_string_literal] = STATE(41), - [anon_sym_LBRACE] = ACTIONS(886), - [anon_sym_LBRACK] = ACTIONS(1244), - [sym_true] = ACTIONS(1852), - [sym_null] = ACTIONS(1852), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(1854), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(1856), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(1852), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(1254), - [anon_sym_sizeof] = ACTIONS(33), + [sym_preproc_def] = STATE(418), + [sym_preproc_function_def] = STATE(418), + [sym_preproc_call] = STATE(418), + [sym_preproc_if_in_field_declaration_list] = STATE(418), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(418), + [sym_preproc_else_in_field_declaration_list] = STATE(1221), + [sym_preproc_elif_in_field_declaration_list] = STATE(1221), + [sym__declaration_specifiers] = STATE(888), + [sym_attribute_specifier] = STATE(661), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(835), + [sym_sized_type_specifier] = STATE(835), + [sym_enum_specifier] = STATE(835), + [sym_struct_specifier] = STATE(835), + [sym_union_specifier] = STATE(835), + [sym__field_declaration_list_item] = STATE(418), + [sym_field_declaration] = STATE(418), + [sym_macro_type_specifier] = STATE(835), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(418), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(1209), + [aux_sym_preproc_def_token1] = ACTIONS(1211), + [aux_sym_preproc_if_token1] = ACTIONS(1213), + [aux_sym_preproc_if_token2] = ACTIONS(1245), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1217), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1217), + [aux_sym_preproc_else_token1] = ACTIONS(1219), + [aux_sym_preproc_elif_token1] = ACTIONS(1221), + [sym_preproc_directive] = ACTIONS(1223), + [anon_sym_extern] = ACTIONS(33), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(709), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [sym_comment] = ACTIONS(3), }, [425] = { - [aux_sym_initializer_list_repeat1] = STATE(479), - [anon_sym_COMMA] = ACTIONS(1858), - [anon_sym_RBRACE] = ACTIONS(1854), + [sym_preproc_def] = STATE(428), + [sym_preproc_function_def] = STATE(428), + [sym_preproc_call] = STATE(428), + [sym_preproc_if_in_field_declaration_list] = STATE(428), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(428), + [sym_preproc_else_in_field_declaration_list] = STATE(1192), + [sym_preproc_elif_in_field_declaration_list] = STATE(1192), + [sym__declaration_specifiers] = STATE(888), + [sym_attribute_specifier] = STATE(661), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(835), + [sym_sized_type_specifier] = STATE(835), + [sym_enum_specifier] = STATE(835), + [sym_struct_specifier] = STATE(835), + [sym_union_specifier] = STATE(835), + [sym__field_declaration_list_item] = STATE(428), + [sym_field_declaration] = STATE(428), + [sym_macro_type_specifier] = STATE(835), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(428), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(1209), + [aux_sym_preproc_def_token1] = ACTIONS(1211), + [aux_sym_preproc_if_token1] = ACTIONS(1213), + [aux_sym_preproc_if_token2] = ACTIONS(1247), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1217), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1217), + [aux_sym_preproc_else_token1] = ACTIONS(1219), + [aux_sym_preproc_elif_token1] = ACTIONS(1221), + [sym_preproc_directive] = ACTIONS(1223), + [anon_sym_extern] = ACTIONS(33), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(709), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), [sym_comment] = ACTIONS(3), }, [426] = { - [sym_char_literal] = STATE(480), - [sym__expression] = STATE(480), - [sym_binary_expression] = STATE(480), - [sym_update_expression] = STATE(480), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(480), - [sym_sizeof_expression] = STATE(480), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_initializer_list] = STATE(481), - [sym_concatenated_string] = STATE(480), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(480), - [sym_assignment_expression] = STATE(480), - [sym_cast_expression] = STATE(480), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(480), - [anon_sym_LBRACE] = ACTIONS(886), - [anon_sym_BANG] = ACTIONS(47), - [sym_true] = ACTIONS(1860), - [sym_null] = ACTIONS(1860), - [sym_number_literal] = ACTIONS(1862), - [anon_sym_DASH] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_AMP] = ACTIONS(43), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(1860), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_preproc_def] = STATE(428), + [sym_preproc_function_def] = STATE(428), + [sym_preproc_call] = STATE(428), + [sym_preproc_if_in_field_declaration_list] = STATE(428), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(428), + [sym_preproc_else_in_field_declaration_list] = STATE(1193), + [sym_preproc_elif_in_field_declaration_list] = STATE(1193), + [sym__declaration_specifiers] = STATE(888), + [sym_attribute_specifier] = STATE(661), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(835), + [sym_sized_type_specifier] = STATE(835), + [sym_enum_specifier] = STATE(835), + [sym_struct_specifier] = STATE(835), + [sym_union_specifier] = STATE(835), + [sym__field_declaration_list_item] = STATE(428), + [sym_field_declaration] = STATE(428), + [sym_macro_type_specifier] = STATE(835), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(428), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(1209), + [aux_sym_preproc_def_token1] = ACTIONS(1211), + [aux_sym_preproc_if_token1] = ACTIONS(1213), + [aux_sym_preproc_if_token2] = ACTIONS(1249), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1217), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1217), + [aux_sym_preproc_else_token1] = ACTIONS(1219), + [aux_sym_preproc_elif_token1] = ACTIONS(1221), + [sym_preproc_directive] = ACTIONS(1223), + [anon_sym_extern] = ACTIONS(33), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(709), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [sym_comment] = ACTIONS(3), }, [427] = { - [aux_sym_initializer_pair_repeat1] = STATE(427), - [sym_subscript_designator] = STATE(427), - [sym_field_designator] = STATE(427), + [sym__declaration_specifiers] = STATE(873), + [sym_attribute_specifier] = STATE(661), + [sym__declarator] = STATE(1008), + [sym__abstract_declarator] = STATE(1010), + [sym_parenthesized_declarator] = STATE(1008), + [sym_abstract_parenthesized_declarator] = STATE(1010), + [sym_pointer_declarator] = STATE(1008), + [sym_abstract_pointer_declarator] = STATE(1010), + [sym_function_declarator] = STATE(1008), + [sym_abstract_function_declarator] = STATE(1010), + [sym_array_declarator] = STATE(1008), + [sym_abstract_array_declarator] = STATE(1010), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(835), + [sym_sized_type_specifier] = STATE(835), + [sym_enum_specifier] = STATE(835), + [sym_struct_specifier] = STATE(835), + [sym_union_specifier] = STATE(835), + [sym_parameter_list] = STATE(994), + [sym_parameter_declaration] = STATE(1018), + [sym_macro_type_specifier] = STATE(835), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(1251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1253), + [anon_sym_RPAREN] = ACTIONS(1255), + [anon_sym_extern] = ACTIONS(33), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(1257), + [anon_sym_STAR] = ACTIONS(1259), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(709), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), [sym_comment] = ACTIONS(3), - [anon_sym_EQ] = ACTIONS(1864), - [anon_sym_DOT] = ACTIONS(1866), - [anon_sym_LBRACK] = ACTIONS(1869), }, [428] = { - [anon_sym_COMMA] = ACTIONS(1872), - [anon_sym_RPAREN] = ACTIONS(1872), + [sym_preproc_def] = STATE(428), + [sym_preproc_function_def] = STATE(428), + [sym_preproc_call] = STATE(428), + [sym_preproc_if_in_field_declaration_list] = STATE(428), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(428), + [sym__declaration_specifiers] = STATE(888), + [sym_attribute_specifier] = STATE(661), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(835), + [sym_sized_type_specifier] = STATE(835), + [sym_enum_specifier] = STATE(835), + [sym_struct_specifier] = STATE(835), + [sym_union_specifier] = STATE(835), + [sym__field_declaration_list_item] = STATE(428), + [sym_field_declaration] = STATE(428), + [sym_macro_type_specifier] = STATE(835), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(428), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(1263), + [aux_sym_preproc_def_token1] = ACTIONS(1266), + [aux_sym_preproc_if_token1] = ACTIONS(1269), + [aux_sym_preproc_if_token2] = ACTIONS(1272), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1274), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1274), + [aux_sym_preproc_else_token1] = ACTIONS(1272), + [aux_sym_preproc_elif_token1] = ACTIONS(1272), + [sym_preproc_directive] = ACTIONS(1277), + [anon_sym_extern] = ACTIONS(1280), + [anon_sym___attribute__] = ACTIONS(1283), + [anon_sym_static] = ACTIONS(1280), + [anon_sym_auto] = ACTIONS(1280), + [anon_sym_register] = ACTIONS(1280), + [anon_sym_inline] = ACTIONS(1280), + [anon_sym_const] = ACTIONS(1286), + [anon_sym_volatile] = ACTIONS(1286), + [anon_sym_restrict] = ACTIONS(1286), + [anon_sym__Atomic] = ACTIONS(1286), + [anon_sym_signed] = ACTIONS(1289), + [anon_sym_unsigned] = ACTIONS(1289), + [anon_sym_long] = ACTIONS(1289), + [anon_sym_short] = ACTIONS(1289), + [sym_primitive_type] = ACTIONS(1292), + [anon_sym_enum] = ACTIONS(1295), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1301), [sym_comment] = ACTIONS(3), }, [429] = { - [anon_sym_LBRACK] = ACTIONS(1874), - [anon_sym_LBRACE] = ACTIONS(1874), - [anon_sym_EQ] = ACTIONS(1874), - [anon_sym_LPAREN2] = ACTIONS(1874), - [anon_sym_COMMA] = ACTIONS(1874), - [anon_sym_COLON] = ACTIONS(1874), - [anon_sym_SEMI] = ACTIONS(1874), - [anon_sym_RPAREN] = ACTIONS(1874), - [anon_sym___attribute__] = ACTIONS(1874), + [sym_string_literal] = STATE(429), + [aux_sym_concatenated_string_repeat1] = STATE(429), + [anon_sym_COMMA] = ACTIONS(1304), + [anon_sym_RPAREN] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym_LPAREN2] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(1304), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_LBRACK] = ACTIONS(1304), + [anon_sym_RBRACK] = ACTIONS(1304), + [anon_sym_EQ] = ACTIONS(1306), + [anon_sym_COLON] = ACTIONS(1304), + [anon_sym_QMARK] = ACTIONS(1304), + [anon_sym_STAR_EQ] = ACTIONS(1304), + [anon_sym_SLASH_EQ] = ACTIONS(1304), + [anon_sym_PERCENT_EQ] = ACTIONS(1304), + [anon_sym_PLUS_EQ] = ACTIONS(1304), + [anon_sym_DASH_EQ] = ACTIONS(1304), + [anon_sym_LT_LT_EQ] = ACTIONS(1304), + [anon_sym_GT_GT_EQ] = ACTIONS(1304), + [anon_sym_AMP_EQ] = ACTIONS(1304), + [anon_sym_CARET_EQ] = ACTIONS(1304), + [anon_sym_PIPE_EQ] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1306), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_SLASH] = ACTIONS(1306), + [anon_sym_PERCENT] = ACTIONS(1306), + [anon_sym_PIPE_PIPE] = ACTIONS(1304), + [anon_sym_AMP_AMP] = ACTIONS(1304), + [anon_sym_PIPE] = ACTIONS(1306), + [anon_sym_CARET] = ACTIONS(1306), + [anon_sym_EQ_EQ] = ACTIONS(1304), + [anon_sym_BANG_EQ] = ACTIONS(1304), + [anon_sym_GT] = ACTIONS(1306), + [anon_sym_GT_EQ] = ACTIONS(1304), + [anon_sym_LT_EQ] = ACTIONS(1304), + [anon_sym_LT] = ACTIONS(1306), + [anon_sym_LT_LT] = ACTIONS(1306), + [anon_sym_GT_GT] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_DOT] = ACTIONS(1304), + [anon_sym_DASH_GT] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), [sym_comment] = ACTIONS(3), }, [430] = { - [aux_sym_parameter_list_repeat1] = STATE(430), - [anon_sym_COMMA] = ACTIONS(1876), - [anon_sym_RPAREN] = ACTIONS(1872), + [sym__expression] = STATE(663), + [sym_conditional_expression] = STATE(663), + [sym_assignment_expression] = STATE(663), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(663), + [sym_binary_expression] = STATE(663), + [sym_update_expression] = STATE(663), + [sym_cast_expression] = STATE(663), + [sym_sizeof_expression] = STATE(663), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(663), + [sym_parenthesized_expression] = STATE(484), + [sym_initializer_list] = STATE(1028), + [sym_initializer_pair] = STATE(1028), + [sym_subscript_designator] = STATE(934), + [sym_field_designator] = STATE(934), + [sym_char_literal] = STATE(663), + [sym_concatenated_string] = STATE(663), + [sym_string_literal] = STATE(431), + [aux_sym_initializer_pair_repeat1] = STATE(934), + [sym_identifier] = ACTIONS(911), + [anon_sym_COMMA] = ACTIONS(1311), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(731), + [anon_sym_RBRACE] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(1315), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(1317), + [sym_number_literal] = ACTIONS(1319), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1321), + [sym_false] = ACTIONS(1321), + [sym_null] = ACTIONS(1321), [sym_comment] = ACTIONS(3), }, [431] = { - [sym_pointer_declarator] = STATE(296), - [sym_abstract_array_declarator] = STATE(339), - [aux_sym_type_definition_repeat1] = STATE(144), - [sym__declarator] = STATE(296), - [sym_abstract_pointer_declarator] = STATE(339), - [sym_function_declarator] = STATE(296), - [sym_type_qualifier] = STATE(144), - [sym_parameter_list] = STATE(148), - [sym_parenthesized_declarator] = STATE(296), - [sym__abstract_declarator] = STATE(339), - [sym_abstract_function_declarator] = STATE(339), - [sym_array_declarator] = STATE(296), - [sym_abstract_parenthesized_declarator] = STATE(339), - [anon_sym_restrict] = ACTIONS(7), - [anon_sym_COMMA] = ACTIONS(1270), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_STAR] = ACTIONS(1282), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(7), - [anon_sym_LPAREN2] = ACTIONS(1286), - [anon_sym__Atomic] = ACTIONS(7), - [anon_sym_RPAREN] = ACTIONS(1270), - [sym_identifier] = ACTIONS(1102), - [anon_sym_LBRACK] = ACTIONS(448), + [sym_string_literal] = STATE(432), + [aux_sym_concatenated_string_repeat1] = STATE(432), + [anon_sym_COMMA] = ACTIONS(1183), + [anon_sym_RPAREN] = ACTIONS(1183), + [anon_sym_SEMI] = ACTIONS(1183), + [anon_sym_LPAREN2] = ACTIONS(1183), + [anon_sym_RBRACE] = ACTIONS(1183), + [anon_sym_STAR] = ACTIONS(1201), + [anon_sym_LBRACK] = ACTIONS(1183), + [anon_sym_RBRACK] = ACTIONS(1183), + [anon_sym_EQ] = ACTIONS(1201), + [anon_sym_COLON] = ACTIONS(1183), + [anon_sym_QMARK] = ACTIONS(1183), + [anon_sym_STAR_EQ] = ACTIONS(1183), + [anon_sym_SLASH_EQ] = ACTIONS(1183), + [anon_sym_PERCENT_EQ] = ACTIONS(1183), + [anon_sym_PLUS_EQ] = ACTIONS(1183), + [anon_sym_DASH_EQ] = ACTIONS(1183), + [anon_sym_LT_LT_EQ] = ACTIONS(1183), + [anon_sym_GT_GT_EQ] = ACTIONS(1183), + [anon_sym_AMP_EQ] = ACTIONS(1183), + [anon_sym_CARET_EQ] = ACTIONS(1183), + [anon_sym_PIPE_EQ] = ACTIONS(1183), + [anon_sym_AMP] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1201), + [anon_sym_SLASH] = ACTIONS(1201), + [anon_sym_PERCENT] = ACTIONS(1201), + [anon_sym_PIPE_PIPE] = ACTIONS(1183), + [anon_sym_AMP_AMP] = ACTIONS(1183), + [anon_sym_PIPE] = ACTIONS(1201), + [anon_sym_CARET] = ACTIONS(1201), + [anon_sym_EQ_EQ] = ACTIONS(1183), + [anon_sym_BANG_EQ] = ACTIONS(1183), + [anon_sym_GT] = ACTIONS(1201), + [anon_sym_GT_EQ] = ACTIONS(1183), + [anon_sym_LT_EQ] = ACTIONS(1183), + [anon_sym_LT] = ACTIONS(1201), + [anon_sym_LT_LT] = ACTIONS(1201), + [anon_sym_GT_GT] = ACTIONS(1201), + [anon_sym_DASH_DASH] = ACTIONS(1183), + [anon_sym_PLUS_PLUS] = ACTIONS(1183), + [anon_sym_DOT] = ACTIONS(1183), + [anon_sym_DASH_GT] = ACTIONS(1183), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_comment] = ACTIONS(3), }, [432] = { - [anon_sym_restrict] = ACTIONS(201), - [anon_sym_COMMA] = ACTIONS(432), - [anon_sym_static] = ACTIONS(201), - [anon_sym_volatile] = ACTIONS(201), - [anon_sym_register] = ACTIONS(201), - [anon_sym_extern] = ACTIONS(201), - [anon_sym_STAR] = ACTIONS(432), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(201), - [anon_sym_LPAREN2] = ACTIONS(1879), - [anon_sym__Atomic] = ACTIONS(201), - [anon_sym_RPAREN] = ACTIONS(1883), - [anon_sym_auto] = ACTIONS(201), - [sym_identifier] = ACTIONS(201), - [anon_sym_inline] = ACTIONS(201), - [anon_sym___attribute__] = ACTIONS(201), - [anon_sym_LBRACK] = ACTIONS(1883), + [sym_string_literal] = STATE(429), + [aux_sym_concatenated_string_repeat1] = STATE(429), + [anon_sym_COMMA] = ACTIONS(1323), + [anon_sym_RPAREN] = ACTIONS(1323), + [anon_sym_SEMI] = ACTIONS(1323), + [anon_sym_LPAREN2] = ACTIONS(1323), + [anon_sym_RBRACE] = ACTIONS(1323), + [anon_sym_STAR] = ACTIONS(1325), + [anon_sym_LBRACK] = ACTIONS(1323), + [anon_sym_RBRACK] = ACTIONS(1323), + [anon_sym_EQ] = ACTIONS(1325), + [anon_sym_COLON] = ACTIONS(1323), + [anon_sym_QMARK] = ACTIONS(1323), + [anon_sym_STAR_EQ] = ACTIONS(1323), + [anon_sym_SLASH_EQ] = ACTIONS(1323), + [anon_sym_PERCENT_EQ] = ACTIONS(1323), + [anon_sym_PLUS_EQ] = ACTIONS(1323), + [anon_sym_DASH_EQ] = ACTIONS(1323), + [anon_sym_LT_LT_EQ] = ACTIONS(1323), + [anon_sym_GT_GT_EQ] = ACTIONS(1323), + [anon_sym_AMP_EQ] = ACTIONS(1323), + [anon_sym_CARET_EQ] = ACTIONS(1323), + [anon_sym_PIPE_EQ] = ACTIONS(1323), + [anon_sym_AMP] = ACTIONS(1325), + [anon_sym_DASH] = ACTIONS(1325), + [anon_sym_PLUS] = ACTIONS(1325), + [anon_sym_SLASH] = ACTIONS(1325), + [anon_sym_PERCENT] = ACTIONS(1325), + [anon_sym_PIPE_PIPE] = ACTIONS(1323), + [anon_sym_AMP_AMP] = ACTIONS(1323), + [anon_sym_PIPE] = ACTIONS(1325), + [anon_sym_CARET] = ACTIONS(1325), + [anon_sym_EQ_EQ] = ACTIONS(1323), + [anon_sym_BANG_EQ] = ACTIONS(1323), + [anon_sym_GT] = ACTIONS(1325), + [anon_sym_GT_EQ] = ACTIONS(1323), + [anon_sym_LT_EQ] = ACTIONS(1323), + [anon_sym_LT] = ACTIONS(1325), + [anon_sym_LT_LT] = ACTIONS(1325), + [anon_sym_GT_GT] = ACTIONS(1325), + [anon_sym_DASH_DASH] = ACTIONS(1323), + [anon_sym_PLUS_PLUS] = ACTIONS(1323), + [anon_sym_DOT] = ACTIONS(1323), + [anon_sym_DASH_GT] = ACTIONS(1323), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_comment] = ACTIONS(3), }, [433] = { + [sym_preproc_def] = STATE(440), + [sym_preproc_function_def] = STATE(440), + [sym_preproc_call] = STATE(440), + [sym_preproc_if_in_field_declaration_list] = STATE(440), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(440), + [sym__declaration_specifiers] = STATE(890), + [sym_attribute_specifier] = STATE(661), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(835), + [sym_sized_type_specifier] = STATE(835), + [sym_enum_specifier] = STATE(835), + [sym_struct_specifier] = STATE(835), + [sym_union_specifier] = STATE(835), + [sym__field_declaration_list_item] = STATE(440), + [sym_field_declaration] = STATE(440), + [sym_macro_type_specifier] = STATE(835), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(440), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(1209), + [aux_sym_preproc_def_token1] = ACTIONS(1327), + [aux_sym_preproc_if_token1] = ACTIONS(1329), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1331), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1331), + [sym_preproc_directive] = ACTIONS(1333), + [anon_sym_extern] = ACTIONS(33), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1335), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(709), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(1886), - [anon_sym_LPAREN2] = ACTIONS(1886), - [anon_sym_COMMA] = ACTIONS(1886), - [anon_sym_LBRACK] = ACTIONS(1886), }, [434] = { + [sym_preproc_def] = STATE(434), + [sym_preproc_function_def] = STATE(434), + [sym_preproc_call] = STATE(434), + [sym_preproc_if_in_field_declaration_list] = STATE(434), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(434), + [sym__declaration_specifiers] = STATE(889), + [sym_attribute_specifier] = STATE(661), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(835), + [sym_sized_type_specifier] = STATE(835), + [sym_enum_specifier] = STATE(835), + [sym_struct_specifier] = STATE(835), + [sym_union_specifier] = STATE(835), + [sym__field_declaration_list_item] = STATE(434), + [sym_field_declaration] = STATE(434), + [sym_macro_type_specifier] = STATE(835), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(434), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(1263), + [aux_sym_preproc_def_token1] = ACTIONS(1337), + [aux_sym_preproc_if_token1] = ACTIONS(1340), + [aux_sym_preproc_if_token2] = ACTIONS(1272), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1343), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1343), + [sym_preproc_directive] = ACTIONS(1346), + [anon_sym_extern] = ACTIONS(1280), + [anon_sym___attribute__] = ACTIONS(1283), + [anon_sym_static] = ACTIONS(1280), + [anon_sym_auto] = ACTIONS(1280), + [anon_sym_register] = ACTIONS(1280), + [anon_sym_inline] = ACTIONS(1280), + [anon_sym_const] = ACTIONS(1286), + [anon_sym_volatile] = ACTIONS(1286), + [anon_sym_restrict] = ACTIONS(1286), + [anon_sym__Atomic] = ACTIONS(1286), + [anon_sym_signed] = ACTIONS(1289), + [anon_sym_unsigned] = ACTIONS(1289), + [anon_sym_long] = ACTIONS(1289), + [anon_sym_short] = ACTIONS(1289), + [sym_primitive_type] = ACTIONS(1292), + [anon_sym_enum] = ACTIONS(1295), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1301), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(1888), - [anon_sym_LPAREN2] = ACTIONS(1888), - [anon_sym_COMMA] = ACTIONS(1888), - [anon_sym_LBRACK] = ACTIONS(1888), }, [435] = { - [sym_char_literal] = STATE(54), - [sym__expression] = STATE(54), - [sym_binary_expression] = STATE(54), - [sym_update_expression] = STATE(54), - [sym_call_expression] = STATE(54), - [sym_pointer_expression] = STATE(54), - [sym_unary_expression] = STATE(54), - [sym_sizeof_expression] = STATE(54), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(54), - [sym_concatenated_string] = STATE(54), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(54), - [sym_assignment_expression] = STATE(54), - [sym_cast_expression] = STATE(54), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(54), - [sym_true] = ACTIONS(153), - [sym_null] = ACTIONS(153), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(155), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(159), - [sym_identifier] = ACTIONS(153), - [anon_sym_BANG] = ACTIONS(155), - [anon_sym_DASH] = ACTIONS(161), - [sym_number_literal] = ACTIONS(163), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(159), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_RBRACK] = ACTIONS(1890), - [anon_sym_sizeof] = ACTIONS(165), + [sym_preproc_def] = STATE(434), + [sym_preproc_function_def] = STATE(434), + [sym_preproc_call] = STATE(434), + [sym_preproc_if_in_field_declaration_list] = STATE(434), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(434), + [sym__declaration_specifiers] = STATE(889), + [sym_attribute_specifier] = STATE(661), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(835), + [sym_sized_type_specifier] = STATE(835), + [sym_enum_specifier] = STATE(835), + [sym_struct_specifier] = STATE(835), + [sym_union_specifier] = STATE(835), + [sym__field_declaration_list_item] = STATE(434), + [sym_field_declaration] = STATE(434), + [sym_macro_type_specifier] = STATE(835), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(434), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(1209), + [aux_sym_preproc_def_token1] = ACTIONS(1349), + [aux_sym_preproc_if_token1] = ACTIONS(1351), + [aux_sym_preproc_if_token2] = ACTIONS(1353), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1355), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1355), + [sym_preproc_directive] = ACTIONS(1357), + [anon_sym_extern] = ACTIONS(33), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(709), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [sym_comment] = ACTIONS(3), }, [436] = { + [sym__expression] = STATE(700), + [sym_conditional_expression] = STATE(700), + [sym_assignment_expression] = STATE(700), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(700), + [sym_binary_expression] = STATE(700), + [sym_update_expression] = STATE(700), + [sym_cast_expression] = STATE(700), + [sym_sizeof_expression] = STATE(700), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(700), + [sym_parenthesized_expression] = STATE(484), + [sym_initializer_list] = STATE(1061), + [sym_initializer_pair] = STATE(1061), + [sym_subscript_designator] = STATE(934), + [sym_field_designator] = STATE(934), + [sym_char_literal] = STATE(700), + [sym_concatenated_string] = STATE(700), + [sym_string_literal] = STATE(431), + [aux_sym_initializer_pair_repeat1] = STATE(934), + [sym_identifier] = ACTIONS(911), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(731), + [anon_sym_RBRACE] = ACTIONS(1359), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(1315), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(1317), + [sym_number_literal] = ACTIONS(1361), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1363), + [sym_false] = ACTIONS(1363), + [sym_null] = ACTIONS(1363), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(1892), - [anon_sym_LPAREN2] = ACTIONS(1892), - [anon_sym_COMMA] = ACTIONS(1892), - [anon_sym_LBRACK] = ACTIONS(1892), }, [437] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_RBRACK] = ACTIONS(1890), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [anon_sym_COMMA] = ACTIONS(1049), + [anon_sym_RPAREN] = ACTIONS(1049), + [anon_sym_SEMI] = ACTIONS(1049), + [anon_sym_LPAREN2] = ACTIONS(1049), + [anon_sym_LBRACE] = ACTIONS(1049), + [anon_sym_RBRACE] = ACTIONS(1049), + [anon_sym_STAR] = ACTIONS(1051), + [anon_sym_LBRACK] = ACTIONS(1049), + [anon_sym_RBRACK] = ACTIONS(1049), + [anon_sym_EQ] = ACTIONS(1051), + [anon_sym_COLON] = ACTIONS(1049), + [anon_sym_else] = ACTIONS(1049), + [anon_sym_while] = ACTIONS(1049), + [anon_sym_QMARK] = ACTIONS(1049), + [anon_sym_STAR_EQ] = ACTIONS(1049), + [anon_sym_SLASH_EQ] = ACTIONS(1049), + [anon_sym_PERCENT_EQ] = ACTIONS(1049), + [anon_sym_PLUS_EQ] = ACTIONS(1049), + [anon_sym_DASH_EQ] = ACTIONS(1049), + [anon_sym_LT_LT_EQ] = ACTIONS(1049), + [anon_sym_GT_GT_EQ] = ACTIONS(1049), + [anon_sym_AMP_EQ] = ACTIONS(1049), + [anon_sym_CARET_EQ] = ACTIONS(1049), + [anon_sym_PIPE_EQ] = ACTIONS(1049), + [anon_sym_AMP] = ACTIONS(1051), + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_PLUS] = ACTIONS(1051), + [anon_sym_SLASH] = ACTIONS(1051), + [anon_sym_PERCENT] = ACTIONS(1051), + [anon_sym_PIPE_PIPE] = ACTIONS(1049), + [anon_sym_AMP_AMP] = ACTIONS(1049), + [anon_sym_PIPE] = ACTIONS(1051), + [anon_sym_CARET] = ACTIONS(1051), + [anon_sym_EQ_EQ] = ACTIONS(1049), + [anon_sym_BANG_EQ] = ACTIONS(1049), + [anon_sym_GT] = ACTIONS(1051), + [anon_sym_GT_EQ] = ACTIONS(1049), + [anon_sym_LT_EQ] = ACTIONS(1049), + [anon_sym_LT] = ACTIONS(1051), + [anon_sym_LT_LT] = ACTIONS(1051), + [anon_sym_GT_GT] = ACTIONS(1051), + [anon_sym_DASH_DASH] = ACTIONS(1049), + [anon_sym_PLUS_PLUS] = ACTIONS(1049), + [anon_sym_DOT] = ACTIONS(1049), + [anon_sym_DASH_GT] = ACTIONS(1049), + [sym_comment] = ACTIONS(3), }, [438] = { - [anon_sym_LBRACK] = ACTIONS(1894), + [sym_preproc_def] = STATE(435), + [sym_preproc_function_def] = STATE(435), + [sym_preproc_call] = STATE(435), + [sym_preproc_if_in_field_declaration_list] = STATE(435), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(435), + [sym__declaration_specifiers] = STATE(889), + [sym_attribute_specifier] = STATE(661), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(835), + [sym_sized_type_specifier] = STATE(835), + [sym_enum_specifier] = STATE(835), + [sym_struct_specifier] = STATE(835), + [sym_union_specifier] = STATE(835), + [sym__field_declaration_list_item] = STATE(435), + [sym_field_declaration] = STATE(435), + [sym_macro_type_specifier] = STATE(835), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(435), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(1209), + [aux_sym_preproc_def_token1] = ACTIONS(1349), + [aux_sym_preproc_if_token1] = ACTIONS(1351), + [aux_sym_preproc_if_token2] = ACTIONS(1365), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1355), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1355), + [sym_preproc_directive] = ACTIONS(1357), + [anon_sym_extern] = ACTIONS(33), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(709), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(1894), - [anon_sym_LPAREN2] = ACTIONS(1894), - [anon_sym_COMMA] = ACTIONS(1894), - [anon_sym_SEMI] = ACTIONS(1894), }, [439] = { - [sym_char_literal] = STATE(54), - [sym__expression] = STATE(54), - [sym_binary_expression] = STATE(54), - [sym_update_expression] = STATE(54), - [sym_call_expression] = STATE(54), - [sym_pointer_expression] = STATE(54), - [sym_unary_expression] = STATE(54), - [sym_sizeof_expression] = STATE(54), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(54), - [sym_concatenated_string] = STATE(54), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(54), - [sym_assignment_expression] = STATE(54), - [sym_cast_expression] = STATE(54), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(54), - [sym_true] = ACTIONS(153), - [sym_null] = ACTIONS(153), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(155), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(159), - [sym_identifier] = ACTIONS(153), - [anon_sym_BANG] = ACTIONS(155), - [anon_sym_DASH] = ACTIONS(161), - [sym_number_literal] = ACTIONS(163), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(159), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_RBRACK] = ACTIONS(1896), - [anon_sym_sizeof] = ACTIONS(165), + [sym__expression] = STATE(700), + [sym_conditional_expression] = STATE(700), + [sym_assignment_expression] = STATE(700), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(700), + [sym_binary_expression] = STATE(700), + [sym_update_expression] = STATE(700), + [sym_cast_expression] = STATE(700), + [sym_sizeof_expression] = STATE(700), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(700), + [sym_parenthesized_expression] = STATE(484), + [sym_initializer_list] = STATE(1061), + [sym_initializer_pair] = STATE(1061), + [sym_subscript_designator] = STATE(934), + [sym_field_designator] = STATE(934), + [sym_char_literal] = STATE(700), + [sym_concatenated_string] = STATE(700), + [sym_string_literal] = STATE(431), + [aux_sym_initializer_pair_repeat1] = STATE(934), + [sym_identifier] = ACTIONS(911), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(731), + [anon_sym_RBRACE] = ACTIONS(1367), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(1315), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(1317), + [sym_number_literal] = ACTIONS(1361), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1363), + [sym_false] = ACTIONS(1363), + [sym_null] = ACTIONS(1363), + [sym_comment] = ACTIONS(3), }, [440] = { - [anon_sym_LBRACK] = ACTIONS(1898), + [sym_preproc_def] = STATE(441), + [sym_preproc_function_def] = STATE(441), + [sym_preproc_call] = STATE(441), + [sym_preproc_if_in_field_declaration_list] = STATE(441), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(441), + [sym__declaration_specifiers] = STATE(890), + [sym_attribute_specifier] = STATE(661), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(835), + [sym_sized_type_specifier] = STATE(835), + [sym_enum_specifier] = STATE(835), + [sym_struct_specifier] = STATE(835), + [sym_union_specifier] = STATE(835), + [sym__field_declaration_list_item] = STATE(441), + [sym_field_declaration] = STATE(441), + [sym_macro_type_specifier] = STATE(835), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(441), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(1209), + [aux_sym_preproc_def_token1] = ACTIONS(1327), + [aux_sym_preproc_if_token1] = ACTIONS(1329), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1331), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1331), + [sym_preproc_directive] = ACTIONS(1333), + [anon_sym_extern] = ACTIONS(33), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1369), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(709), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(1898), - [anon_sym_LPAREN2] = ACTIONS(1898), - [anon_sym_COMMA] = ACTIONS(1898), - [anon_sym_SEMI] = ACTIONS(1898), }, [441] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_RBRACK] = ACTIONS(1896), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [sym_preproc_def] = STATE(441), + [sym_preproc_function_def] = STATE(441), + [sym_preproc_call] = STATE(441), + [sym_preproc_if_in_field_declaration_list] = STATE(441), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(441), + [sym__declaration_specifiers] = STATE(890), + [sym_attribute_specifier] = STATE(661), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(835), + [sym_sized_type_specifier] = STATE(835), + [sym_enum_specifier] = STATE(835), + [sym_struct_specifier] = STATE(835), + [sym_union_specifier] = STATE(835), + [sym__field_declaration_list_item] = STATE(441), + [sym_field_declaration] = STATE(441), + [sym_macro_type_specifier] = STATE(835), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(441), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(1263), + [aux_sym_preproc_def_token1] = ACTIONS(1371), + [aux_sym_preproc_if_token1] = ACTIONS(1374), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1377), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1377), + [sym_preproc_directive] = ACTIONS(1380), + [anon_sym_extern] = ACTIONS(1280), + [anon_sym___attribute__] = ACTIONS(1283), + [anon_sym_RBRACE] = ACTIONS(1383), + [anon_sym_static] = ACTIONS(1280), + [anon_sym_auto] = ACTIONS(1280), + [anon_sym_register] = ACTIONS(1280), + [anon_sym_inline] = ACTIONS(1280), + [anon_sym_const] = ACTIONS(1286), + [anon_sym_volatile] = ACTIONS(1286), + [anon_sym_restrict] = ACTIONS(1286), + [anon_sym__Atomic] = ACTIONS(1286), + [anon_sym_signed] = ACTIONS(1289), + [anon_sym_unsigned] = ACTIONS(1289), + [anon_sym_long] = ACTIONS(1289), + [anon_sym_short] = ACTIONS(1289), + [sym_primitive_type] = ACTIONS(1292), + [anon_sym_enum] = ACTIONS(1295), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1301), + [sym_comment] = ACTIONS(3), }, [442] = { - [anon_sym_case] = ACTIONS(1900), - [sym_true] = ACTIONS(1900), - [anon_sym_restrict] = ACTIONS(1900), - [sym_null] = ACTIONS(1900), - [anon_sym_goto] = ACTIONS(1900), - [anon_sym_const] = ACTIONS(1900), - [anon_sym_typedef] = ACTIONS(1900), - [anon_sym_DASH_DASH] = ACTIONS(1902), - [anon_sym_default] = ACTIONS(1900), - [anon_sym__Atomic] = ACTIONS(1900), - [sym_identifier] = ACTIONS(1900), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1900), - [sym_number_literal] = ACTIONS(1902), - [anon_sym_volatile] = ACTIONS(1900), - [anon_sym_SQUOTE] = ACTIONS(1902), - [anon_sym_extern] = ACTIONS(1900), - [anon_sym_PLUS_PLUS] = ACTIONS(1902), - [anon_sym_struct] = ACTIONS(1900), - [anon_sym_signed] = ACTIONS(1900), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1900), - [anon_sym_while] = ACTIONS(1900), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1900), - [anon_sym_L_SQUOTE] = ACTIONS(1902), - [anon_sym___attribute__] = ACTIONS(1900), - [anon_sym_sizeof] = ACTIONS(1900), - [anon_sym_LBRACE] = ACTIONS(1902), - [anon_sym_union] = ACTIONS(1900), - [anon_sym_unsigned] = ACTIONS(1900), - [anon_sym_short] = ACTIONS(1900), - [anon_sym_do] = ACTIONS(1900), - [sym_preproc_directive] = ACTIONS(1900), - [anon_sym_AMP] = ACTIONS(1902), - [aux_sym_preproc_if_token1] = ACTIONS(1900), - [anon_sym_TILDE] = ACTIONS(1902), - [anon_sym_L_DQUOTE] = ACTIONS(1902), - [anon_sym_LPAREN2] = ACTIONS(1902), - [anon_sym_RBRACE] = ACTIONS(1902), - [sym_primitive_type] = ACTIONS(1900), - [anon_sym_for] = ACTIONS(1900), - [anon_sym_break] = ACTIONS(1900), - [anon_sym_BANG] = ACTIONS(1902), - [aux_sym_preproc_include_token1] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_static] = ACTIONS(1900), - [anon_sym_DQUOTE] = ACTIONS(1902), - [anon_sym_register] = ACTIONS(1900), - [anon_sym_STAR] = ACTIONS(1902), - [anon_sym_if] = ACTIONS(1900), - [anon_sym_switch] = ACTIONS(1900), - [anon_sym_enum] = ACTIONS(1900), - [sym_false] = ACTIONS(1900), - [ts_builtin_sym_end] = ACTIONS(1902), - [anon_sym_return] = ACTIONS(1900), - [anon_sym_continue] = ACTIONS(1900), - [anon_sym_SEMI] = ACTIONS(1902), - [aux_sym_preproc_def_token1] = ACTIONS(1900), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_auto] = ACTIONS(1900), - [anon_sym_inline] = ACTIONS(1900), + [anon_sym_COMMA] = ACTIONS(1111), + [anon_sym_RPAREN] = ACTIONS(1111), + [anon_sym_SEMI] = ACTIONS(1111), + [anon_sym_LPAREN2] = ACTIONS(1111), + [anon_sym_RBRACE] = ACTIONS(1111), + [anon_sym_STAR] = ACTIONS(1109), + [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_RBRACK] = ACTIONS(1111), + [anon_sym_EQ] = ACTIONS(1109), + [anon_sym_COLON] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1111), + [anon_sym_STAR_EQ] = ACTIONS(1111), + [anon_sym_SLASH_EQ] = ACTIONS(1111), + [anon_sym_PERCENT_EQ] = ACTIONS(1111), + [anon_sym_PLUS_EQ] = ACTIONS(1111), + [anon_sym_DASH_EQ] = ACTIONS(1111), + [anon_sym_LT_LT_EQ] = ACTIONS(1111), + [anon_sym_GT_GT_EQ] = ACTIONS(1111), + [anon_sym_AMP_EQ] = ACTIONS(1111), + [anon_sym_CARET_EQ] = ACTIONS(1111), + [anon_sym_PIPE_EQ] = ACTIONS(1111), + [anon_sym_AMP] = ACTIONS(1109), + [anon_sym_DASH] = ACTIONS(1109), + [anon_sym_PLUS] = ACTIONS(1109), + [anon_sym_SLASH] = ACTIONS(1109), + [anon_sym_PERCENT] = ACTIONS(1109), + [anon_sym_PIPE_PIPE] = ACTIONS(1111), + [anon_sym_AMP_AMP] = ACTIONS(1111), + [anon_sym_PIPE] = ACTIONS(1109), + [anon_sym_CARET] = ACTIONS(1109), + [anon_sym_EQ_EQ] = ACTIONS(1111), + [anon_sym_BANG_EQ] = ACTIONS(1111), + [anon_sym_GT] = ACTIONS(1109), + [anon_sym_GT_EQ] = ACTIONS(1111), + [anon_sym_LT_EQ] = ACTIONS(1111), + [anon_sym_LT] = ACTIONS(1109), + [anon_sym_LT_LT] = ACTIONS(1109), + [anon_sym_GT_GT] = ACTIONS(1109), + [anon_sym_DASH_DASH] = ACTIONS(1111), + [anon_sym_PLUS_PLUS] = ACTIONS(1111), + [anon_sym_DOT] = ACTIONS(1111), + [anon_sym_DASH_GT] = ACTIONS(1111), + [anon_sym_L_DQUOTE] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1111), + [sym_comment] = ACTIONS(3), }, [443] = { - [anon_sym_case] = ACTIONS(1904), - [sym_true] = ACTIONS(1904), - [anon_sym_restrict] = ACTIONS(1904), - [sym_null] = ACTIONS(1904), - [anon_sym_goto] = ACTIONS(1904), - [anon_sym_const] = ACTIONS(1904), - [anon_sym_typedef] = ACTIONS(1904), - [anon_sym_DASH_DASH] = ACTIONS(1906), - [anon_sym_default] = ACTIONS(1904), - [anon_sym__Atomic] = ACTIONS(1904), - [sym_identifier] = ACTIONS(1904), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1904), - [sym_number_literal] = ACTIONS(1906), - [anon_sym_volatile] = ACTIONS(1904), - [anon_sym_SQUOTE] = ACTIONS(1906), - [anon_sym_extern] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1906), - [anon_sym_struct] = ACTIONS(1904), - [anon_sym_signed] = ACTIONS(1904), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1904), - [anon_sym_while] = ACTIONS(1904), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1904), - [anon_sym_L_SQUOTE] = ACTIONS(1906), - [anon_sym___attribute__] = ACTIONS(1904), - [anon_sym_sizeof] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_union] = ACTIONS(1904), - [anon_sym_unsigned] = ACTIONS(1904), - [anon_sym_short] = ACTIONS(1904), - [anon_sym_do] = ACTIONS(1904), - [sym_preproc_directive] = ACTIONS(1904), - [anon_sym_AMP] = ACTIONS(1906), - [aux_sym_preproc_if_token1] = ACTIONS(1904), - [anon_sym_TILDE] = ACTIONS(1906), - [anon_sym_L_DQUOTE] = ACTIONS(1906), - [anon_sym_LPAREN2] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(1906), - [anon_sym_else] = ACTIONS(1904), - [sym_primitive_type] = ACTIONS(1904), - [anon_sym_for] = ACTIONS(1904), - [anon_sym_break] = ACTIONS(1904), - [anon_sym_BANG] = ACTIONS(1906), - [aux_sym_preproc_include_token1] = ACTIONS(1904), - [anon_sym_DASH] = ACTIONS(1904), - [anon_sym_static] = ACTIONS(1904), - [anon_sym_DQUOTE] = ACTIONS(1906), - [anon_sym_register] = ACTIONS(1904), - [anon_sym_STAR] = ACTIONS(1906), - [anon_sym_if] = ACTIONS(1904), - [anon_sym_switch] = ACTIONS(1904), - [anon_sym_enum] = ACTIONS(1904), - [sym_false] = ACTIONS(1904), - [ts_builtin_sym_end] = ACTIONS(1906), - [anon_sym_return] = ACTIONS(1904), - [anon_sym_continue] = ACTIONS(1904), - [anon_sym_SEMI] = ACTIONS(1906), - [aux_sym_preproc_def_token1] = ACTIONS(1904), - [anon_sym_PLUS] = ACTIONS(1904), - [anon_sym_auto] = ACTIONS(1904), - [anon_sym_inline] = ACTIONS(1904), + [anon_sym_COMMA] = ACTIONS(1123), + [anon_sym_RPAREN] = ACTIONS(1123), + [anon_sym_SEMI] = ACTIONS(1123), + [anon_sym_LPAREN2] = ACTIONS(1123), + [anon_sym_RBRACE] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_LBRACK] = ACTIONS(1123), + [anon_sym_RBRACK] = ACTIONS(1123), + [anon_sym_EQ] = ACTIONS(1121), + [anon_sym_COLON] = ACTIONS(1123), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_STAR_EQ] = ACTIONS(1123), + [anon_sym_SLASH_EQ] = ACTIONS(1123), + [anon_sym_PERCENT_EQ] = ACTIONS(1123), + [anon_sym_PLUS_EQ] = ACTIONS(1123), + [anon_sym_DASH_EQ] = ACTIONS(1123), + [anon_sym_LT_LT_EQ] = ACTIONS(1123), + [anon_sym_GT_GT_EQ] = ACTIONS(1123), + [anon_sym_AMP_EQ] = ACTIONS(1123), + [anon_sym_CARET_EQ] = ACTIONS(1123), + [anon_sym_PIPE_EQ] = ACTIONS(1123), + [anon_sym_AMP] = ACTIONS(1121), + [anon_sym_DASH] = ACTIONS(1121), + [anon_sym_PLUS] = ACTIONS(1121), + [anon_sym_SLASH] = ACTIONS(1121), + [anon_sym_PERCENT] = ACTIONS(1121), + [anon_sym_PIPE_PIPE] = ACTIONS(1123), + [anon_sym_AMP_AMP] = ACTIONS(1123), + [anon_sym_PIPE] = ACTIONS(1121), + [anon_sym_CARET] = ACTIONS(1121), + [anon_sym_EQ_EQ] = ACTIONS(1123), + [anon_sym_BANG_EQ] = ACTIONS(1123), + [anon_sym_GT] = ACTIONS(1121), + [anon_sym_GT_EQ] = ACTIONS(1123), + [anon_sym_LT_EQ] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(1121), + [anon_sym_LT_LT] = ACTIONS(1121), + [anon_sym_GT_GT] = ACTIONS(1121), + [anon_sym_DASH_DASH] = ACTIONS(1123), + [anon_sym_PLUS_PLUS] = ACTIONS(1123), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_DASH_GT] = ACTIONS(1123), + [anon_sym_L_DQUOTE] = ACTIONS(1123), + [anon_sym_DQUOTE] = ACTIONS(1123), + [sym_comment] = ACTIONS(3), }, [444] = { - [sym_if_statement] = STATE(484), - [sym_do_statement] = STATE(484), - [sym_for_statement] = STATE(484), - [sym__expression] = STATE(34), - [sym_comma_expression] = STATE(35), - [sym_binary_expression] = STATE(34), - [sym_update_expression] = STATE(34), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(484), - [sym_return_statement] = STATE(484), - [sym_break_statement] = STATE(484), - [sym_conditional_expression] = STATE(34), - [sym_assignment_expression] = STATE(34), - [sym_cast_expression] = STATE(34), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(34), - [sym_char_literal] = STATE(34), - [sym_labeled_statement] = STATE(484), - [sym_while_statement] = STATE(484), - [sym_continue_statement] = STATE(484), - [sym_goto_statement] = STATE(484), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(34), - [sym_sizeof_expression] = STATE(34), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(34), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(484), - [sym_expression_statement] = STATE(484), - [anon_sym_LBRACE] = ACTIONS(35), - [sym_true] = ACTIONS(5), - [sym_null] = ACTIONS(5), - [anon_sym_do] = ACTIONS(39), - [anon_sym_goto] = ACTIONS(9), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(477), - [anon_sym_for] = ACTIONS(55), - [anon_sym_break] = ACTIONS(57), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(65), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(67), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(5), - [anon_sym_return] = ACTIONS(73), - [anon_sym_while] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_SEMI] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym__expression] = STATE(700), + [sym_conditional_expression] = STATE(700), + [sym_assignment_expression] = STATE(700), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(700), + [sym_binary_expression] = STATE(700), + [sym_update_expression] = STATE(700), + [sym_cast_expression] = STATE(700), + [sym_sizeof_expression] = STATE(700), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(700), + [sym_parenthesized_expression] = STATE(484), + [sym_initializer_list] = STATE(1061), + [sym_initializer_pair] = STATE(1061), + [sym_subscript_designator] = STATE(934), + [sym_field_designator] = STATE(934), + [sym_char_literal] = STATE(700), + [sym_concatenated_string] = STATE(700), + [sym_string_literal] = STATE(431), + [aux_sym_initializer_pair_repeat1] = STATE(934), + [sym_identifier] = ACTIONS(911), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(731), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(1315), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [anon_sym_DOT] = ACTIONS(1317), + [sym_number_literal] = ACTIONS(1361), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1363), + [sym_false] = ACTIONS(1363), + [sym_null] = ACTIONS(1363), + [sym_comment] = ACTIONS(3), }, [445] = { - [sym_if_statement] = STATE(485), - [sym_do_statement] = STATE(485), - [sym_for_statement] = STATE(485), - [sym__expression] = STATE(34), - [sym_comma_expression] = STATE(35), - [sym_binary_expression] = STATE(34), - [sym_update_expression] = STATE(34), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(485), - [sym_return_statement] = STATE(485), - [sym_break_statement] = STATE(485), - [sym_conditional_expression] = STATE(34), - [sym_assignment_expression] = STATE(34), - [sym_cast_expression] = STATE(34), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(34), - [sym_char_literal] = STATE(34), - [sym_labeled_statement] = STATE(485), - [sym_while_statement] = STATE(485), - [sym_continue_statement] = STATE(485), - [sym_goto_statement] = STATE(485), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(34), - [sym_sizeof_expression] = STATE(34), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(34), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(485), - [sym_expression_statement] = STATE(485), - [anon_sym_LBRACE] = ACTIONS(35), - [sym_true] = ACTIONS(5), - [sym_null] = ACTIONS(5), - [anon_sym_do] = ACTIONS(39), - [anon_sym_goto] = ACTIONS(9), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(477), - [anon_sym_for] = ACTIONS(55), - [anon_sym_break] = ACTIONS(57), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(65), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(67), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(5), - [anon_sym_return] = ACTIONS(73), - [anon_sym_while] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_SEMI] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_type_qualifier] = STATE(785), + [sym__expression] = STATE(764), + [sym_conditional_expression] = STATE(764), + [sym_assignment_expression] = STATE(764), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(764), + [sym_binary_expression] = STATE(764), + [sym_update_expression] = STATE(764), + [sym_cast_expression] = STATE(764), + [sym_sizeof_expression] = STATE(764), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string_literal] = STATE(431), + [aux_sym_type_definition_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(911), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(1385), + [anon_sym_RBRACK] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_volatile] = ACTIONS(1389), + [anon_sym_restrict] = ACTIONS(1389), + [anon_sym__Atomic] = ACTIONS(1389), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1391), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1393), + [sym_false] = ACTIONS(1393), + [sym_null] = ACTIONS(1393), + [sym_comment] = ACTIONS(3), }, [446] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_COMMA] = ACTIONS(293), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_RPAREN] = ACTIONS(1908), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [sym_type_qualifier] = STATE(472), + [sym__expression] = STATE(732), + [sym_conditional_expression] = STATE(732), + [sym_assignment_expression] = STATE(732), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(732), + [sym_binary_expression] = STATE(732), + [sym_update_expression] = STATE(732), + [sym_cast_expression] = STATE(732), + [sym_sizeof_expression] = STATE(732), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(732), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(732), + [sym_concatenated_string] = STATE(732), + [sym_string_literal] = STATE(431), + [aux_sym_type_definition_repeat1] = STATE(472), + [sym_identifier] = ACTIONS(911), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(1395), + [anon_sym_RBRACK] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_volatile] = ACTIONS(1389), + [anon_sym_restrict] = ACTIONS(1389), + [anon_sym__Atomic] = ACTIONS(1389), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1399), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1401), + [sym_false] = ACTIONS(1401), + [sym_null] = ACTIONS(1401), + [sym_comment] = ACTIONS(3), }, [447] = { - [anon_sym_RPAREN] = ACTIONS(1908), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(1403), + [anon_sym_RPAREN] = ACTIONS(1403), + [anon_sym_SEMI] = ACTIONS(1403), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_RBRACE] = ACTIONS(1403), + [anon_sym_STAR] = ACTIONS(1407), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_RBRACK] = ACTIONS(1403), + [anon_sym_EQ] = ACTIONS(1411), + [anon_sym_COLON] = ACTIONS(1403), + [anon_sym_QMARK] = ACTIONS(1403), + [anon_sym_STAR_EQ] = ACTIONS(1403), + [anon_sym_SLASH_EQ] = ACTIONS(1403), + [anon_sym_PERCENT_EQ] = ACTIONS(1403), + [anon_sym_PLUS_EQ] = ACTIONS(1403), + [anon_sym_DASH_EQ] = ACTIONS(1403), + [anon_sym_LT_LT_EQ] = ACTIONS(1403), + [anon_sym_GT_GT_EQ] = ACTIONS(1403), + [anon_sym_AMP_EQ] = ACTIONS(1403), + [anon_sym_CARET_EQ] = ACTIONS(1403), + [anon_sym_PIPE_EQ] = ACTIONS(1403), + [anon_sym_AMP] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(1407), + [anon_sym_PERCENT] = ACTIONS(1407), + [anon_sym_PIPE_PIPE] = ACTIONS(1403), + [anon_sym_AMP_AMP] = ACTIONS(1403), + [anon_sym_PIPE] = ACTIONS(1411), + [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_EQ_EQ] = ACTIONS(1403), + [anon_sym_BANG_EQ] = ACTIONS(1403), + [anon_sym_GT] = ACTIONS(1411), + [anon_sym_GT_EQ] = ACTIONS(1403), + [anon_sym_LT_EQ] = ACTIONS(1403), + [anon_sym_LT] = ACTIONS(1411), + [anon_sym_LT_LT] = ACTIONS(1411), + [anon_sym_GT_GT] = ACTIONS(1411), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), [sym_comment] = ACTIONS(3), }, [448] = { - [sym_if_statement] = STATE(487), - [sym_do_statement] = STATE(487), - [sym_for_statement] = STATE(487), - [sym__expression] = STATE(34), - [sym_comma_expression] = STATE(35), - [sym_binary_expression] = STATE(34), - [sym_update_expression] = STATE(34), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(487), - [sym_return_statement] = STATE(487), - [sym_break_statement] = STATE(487), - [sym_conditional_expression] = STATE(34), - [sym_assignment_expression] = STATE(34), - [sym_cast_expression] = STATE(34), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(34), - [sym_char_literal] = STATE(34), - [sym_labeled_statement] = STATE(487), - [sym_while_statement] = STATE(487), - [sym_continue_statement] = STATE(487), - [sym_goto_statement] = STATE(487), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(34), - [sym_sizeof_expression] = STATE(34), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(34), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(487), - [sym_expression_statement] = STATE(487), - [anon_sym_LBRACE] = ACTIONS(35), - [sym_true] = ACTIONS(5), - [sym_null] = ACTIONS(5), - [anon_sym_do] = ACTIONS(39), - [anon_sym_goto] = ACTIONS(9), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(477), - [anon_sym_for] = ACTIONS(55), - [anon_sym_break] = ACTIONS(57), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(65), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(67), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(5), - [anon_sym_return] = ACTIONS(73), - [anon_sym_while] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_SEMI] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_type_qualifier] = STATE(785), + [sym__expression] = STATE(779), + [sym_conditional_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_update_expression] = STATE(779), + [sym_cast_expression] = STATE(779), + [sym_sizeof_expression] = STATE(779), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(779), + [sym_concatenated_string] = STATE(779), + [sym_string_literal] = STATE(431), + [aux_sym_type_definition_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(911), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(1417), + [anon_sym_RBRACK] = ACTIONS(1419), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_volatile] = ACTIONS(1389), + [anon_sym_restrict] = ACTIONS(1389), + [anon_sym__Atomic] = ACTIONS(1389), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1421), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1423), + [sym_false] = ACTIONS(1423), + [sym_null] = ACTIONS(1423), + [sym_comment] = ACTIONS(3), }, [449] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_COMMA] = ACTIONS(293), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_RPAREN] = ACTIONS(1910), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [sym_type_qualifier] = STATE(466), + [sym__expression] = STATE(782), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(782), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(431), + [aux_sym_type_definition_repeat1] = STATE(466), + [sym_identifier] = ACTIONS(911), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_RBRACK] = ACTIONS(1427), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_volatile] = ACTIONS(1389), + [anon_sym_restrict] = ACTIONS(1389), + [anon_sym__Atomic] = ACTIONS(1389), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1429), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1431), + [sym_false] = ACTIONS(1431), + [sym_null] = ACTIONS(1431), + [sym_comment] = ACTIONS(3), }, [450] = { - [anon_sym_RPAREN] = ACTIONS(1910), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(1433), + [anon_sym_RPAREN] = ACTIONS(1433), + [anon_sym_SEMI] = ACTIONS(1433), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_RBRACE] = ACTIONS(1433), + [anon_sym_STAR] = ACTIONS(1407), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_RBRACK] = ACTIONS(1433), + [anon_sym_EQ] = ACTIONS(1435), + [anon_sym_COLON] = ACTIONS(1433), + [anon_sym_QMARK] = ACTIONS(1433), + [anon_sym_STAR_EQ] = ACTIONS(1433), + [anon_sym_SLASH_EQ] = ACTIONS(1433), + [anon_sym_PERCENT_EQ] = ACTIONS(1433), + [anon_sym_PLUS_EQ] = ACTIONS(1433), + [anon_sym_DASH_EQ] = ACTIONS(1433), + [anon_sym_LT_LT_EQ] = ACTIONS(1433), + [anon_sym_GT_GT_EQ] = ACTIONS(1433), + [anon_sym_AMP_EQ] = ACTIONS(1433), + [anon_sym_CARET_EQ] = ACTIONS(1433), + [anon_sym_PIPE_EQ] = ACTIONS(1433), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1439), + [anon_sym_PLUS] = ACTIONS(1439), + [anon_sym_SLASH] = ACTIONS(1407), + [anon_sym_PERCENT] = ACTIONS(1407), + [anon_sym_PIPE_PIPE] = ACTIONS(1441), + [anon_sym_AMP_AMP] = ACTIONS(1443), + [anon_sym_PIPE] = ACTIONS(1445), + [anon_sym_CARET] = ACTIONS(1447), + [anon_sym_EQ_EQ] = ACTIONS(1449), + [anon_sym_BANG_EQ] = ACTIONS(1449), + [anon_sym_GT] = ACTIONS(1451), + [anon_sym_GT_EQ] = ACTIONS(1453), + [anon_sym_LT_EQ] = ACTIONS(1453), + [anon_sym_LT] = ACTIONS(1451), + [anon_sym_LT_LT] = ACTIONS(1455), + [anon_sym_GT_GT] = ACTIONS(1455), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), [sym_comment] = ACTIONS(3), }, [451] = { - [sym_char_literal] = STATE(490), - [sym__expression] = STATE(490), - [sym_comma_expression] = STATE(491), - [sym_binary_expression] = STATE(490), - [sym_update_expression] = STATE(490), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(490), - [sym_sizeof_expression] = STATE(490), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(490), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(490), - [sym_assignment_expression] = STATE(490), - [sym_cast_expression] = STATE(490), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(490), - [sym_true] = ACTIONS(1912), - [sym_null] = ACTIONS(1912), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(1914), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(1912), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_RPAREN] = ACTIONS(1916), - [anon_sym_sizeof] = ACTIONS(33), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(1457), + [anon_sym_RPAREN] = ACTIONS(1457), + [anon_sym_SEMI] = ACTIONS(1457), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_RBRACE] = ACTIONS(1457), + [anon_sym_STAR] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_RBRACK] = ACTIONS(1457), + [anon_sym_EQ] = ACTIONS(1459), + [anon_sym_COLON] = ACTIONS(1457), + [anon_sym_QMARK] = ACTIONS(1457), + [anon_sym_STAR_EQ] = ACTIONS(1457), + [anon_sym_SLASH_EQ] = ACTIONS(1457), + [anon_sym_PERCENT_EQ] = ACTIONS(1457), + [anon_sym_PLUS_EQ] = ACTIONS(1457), + [anon_sym_DASH_EQ] = ACTIONS(1457), + [anon_sym_LT_LT_EQ] = ACTIONS(1457), + [anon_sym_GT_GT_EQ] = ACTIONS(1457), + [anon_sym_AMP_EQ] = ACTIONS(1457), + [anon_sym_CARET_EQ] = ACTIONS(1457), + [anon_sym_PIPE_EQ] = ACTIONS(1457), + [anon_sym_AMP] = ACTIONS(1459), + [anon_sym_DASH] = ACTIONS(1459), + [anon_sym_PLUS] = ACTIONS(1459), + [anon_sym_SLASH] = ACTIONS(1459), + [anon_sym_PERCENT] = ACTIONS(1459), + [anon_sym_PIPE_PIPE] = ACTIONS(1457), + [anon_sym_AMP_AMP] = ACTIONS(1457), + [anon_sym_PIPE] = ACTIONS(1459), + [anon_sym_CARET] = ACTIONS(1459), + [anon_sym_EQ_EQ] = ACTIONS(1457), + [anon_sym_BANG_EQ] = ACTIONS(1457), + [anon_sym_GT] = ACTIONS(1459), + [anon_sym_GT_EQ] = ACTIONS(1457), + [anon_sym_LT_EQ] = ACTIONS(1457), + [anon_sym_LT] = ACTIONS(1459), + [anon_sym_LT_LT] = ACTIONS(1459), + [anon_sym_GT_GT] = ACTIONS(1459), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [452] = { - [anon_sym_case] = ACTIONS(1918), - [sym_true] = ACTIONS(1918), - [anon_sym_restrict] = ACTIONS(1918), - [sym_null] = ACTIONS(1918), - [anon_sym_goto] = ACTIONS(1918), - [anon_sym_const] = ACTIONS(1918), - [anon_sym_typedef] = ACTIONS(1918), - [anon_sym_DASH_DASH] = ACTIONS(1920), - [anon_sym_default] = ACTIONS(1918), - [anon_sym__Atomic] = ACTIONS(1918), - [sym_identifier] = ACTIONS(1918), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1918), - [sym_number_literal] = ACTIONS(1920), - [anon_sym_volatile] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1920), - [anon_sym_extern] = ACTIONS(1918), - [anon_sym_PLUS_PLUS] = ACTIONS(1920), - [anon_sym_struct] = ACTIONS(1918), - [anon_sym_signed] = ACTIONS(1918), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1918), - [anon_sym_while] = ACTIONS(1918), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1918), - [anon_sym_L_SQUOTE] = ACTIONS(1920), - [anon_sym___attribute__] = ACTIONS(1918), - [anon_sym_sizeof] = ACTIONS(1918), - [anon_sym_LBRACE] = ACTIONS(1920), - [anon_sym_union] = ACTIONS(1918), - [anon_sym_unsigned] = ACTIONS(1918), - [anon_sym_short] = ACTIONS(1918), - [anon_sym_do] = ACTIONS(1918), - [sym_preproc_directive] = ACTIONS(1918), - [anon_sym_AMP] = ACTIONS(1920), - [aux_sym_preproc_if_token1] = ACTIONS(1918), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_L_DQUOTE] = ACTIONS(1920), - [anon_sym_LPAREN2] = ACTIONS(1920), - [anon_sym_RBRACE] = ACTIONS(1920), - [anon_sym_else] = ACTIONS(1918), - [sym_primitive_type] = ACTIONS(1918), - [anon_sym_for] = ACTIONS(1918), - [anon_sym_break] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [aux_sym_preproc_include_token1] = ACTIONS(1918), - [anon_sym_DASH] = ACTIONS(1918), - [anon_sym_static] = ACTIONS(1918), - [anon_sym_DQUOTE] = ACTIONS(1920), - [anon_sym_register] = ACTIONS(1918), - [anon_sym_STAR] = ACTIONS(1920), - [anon_sym_if] = ACTIONS(1918), - [anon_sym_switch] = ACTIONS(1918), - [anon_sym_enum] = ACTIONS(1918), - [sym_false] = ACTIONS(1918), - [ts_builtin_sym_end] = ACTIONS(1920), - [anon_sym_return] = ACTIONS(1918), - [anon_sym_continue] = ACTIONS(1918), - [anon_sym_SEMI] = ACTIONS(1920), - [aux_sym_preproc_def_token1] = ACTIONS(1918), - [anon_sym_PLUS] = ACTIONS(1918), - [anon_sym_auto] = ACTIONS(1918), - [anon_sym_inline] = ACTIONS(1918), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(1461), + [anon_sym_RPAREN] = ACTIONS(1461), + [anon_sym_SEMI] = ACTIONS(1461), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_RBRACE] = ACTIONS(1461), + [anon_sym_STAR] = ACTIONS(1407), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_RBRACK] = ACTIONS(1461), + [anon_sym_EQ] = ACTIONS(1463), + [anon_sym_COLON] = ACTIONS(1461), + [anon_sym_QMARK] = ACTIONS(1461), + [anon_sym_STAR_EQ] = ACTIONS(1461), + [anon_sym_SLASH_EQ] = ACTIONS(1461), + [anon_sym_PERCENT_EQ] = ACTIONS(1461), + [anon_sym_PLUS_EQ] = ACTIONS(1461), + [anon_sym_DASH_EQ] = ACTIONS(1461), + [anon_sym_LT_LT_EQ] = ACTIONS(1461), + [anon_sym_GT_GT_EQ] = ACTIONS(1461), + [anon_sym_AMP_EQ] = ACTIONS(1461), + [anon_sym_CARET_EQ] = ACTIONS(1461), + [anon_sym_PIPE_EQ] = ACTIONS(1461), + [anon_sym_AMP] = ACTIONS(1463), + [anon_sym_DASH] = ACTIONS(1439), + [anon_sym_PLUS] = ACTIONS(1439), + [anon_sym_SLASH] = ACTIONS(1407), + [anon_sym_PERCENT] = ACTIONS(1407), + [anon_sym_PIPE_PIPE] = ACTIONS(1461), + [anon_sym_AMP_AMP] = ACTIONS(1461), + [anon_sym_PIPE] = ACTIONS(1463), + [anon_sym_CARET] = ACTIONS(1463), + [anon_sym_EQ_EQ] = ACTIONS(1461), + [anon_sym_BANG_EQ] = ACTIONS(1461), + [anon_sym_GT] = ACTIONS(1463), + [anon_sym_GT_EQ] = ACTIONS(1461), + [anon_sym_LT_EQ] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(1463), + [anon_sym_LT_LT] = ACTIONS(1455), + [anon_sym_GT_GT] = ACTIONS(1455), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [453] = { - [sym_if_statement] = STATE(492), - [sym_do_statement] = STATE(492), - [sym_for_statement] = STATE(492), - [sym__expression] = STATE(34), - [sym_comma_expression] = STATE(35), - [sym_binary_expression] = STATE(34), - [sym_update_expression] = STATE(34), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(492), - [sym_return_statement] = STATE(492), - [sym_break_statement] = STATE(492), - [sym_conditional_expression] = STATE(34), - [sym_assignment_expression] = STATE(34), - [sym_cast_expression] = STATE(34), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(34), - [sym_char_literal] = STATE(34), - [sym_labeled_statement] = STATE(492), - [sym_while_statement] = STATE(492), - [sym_continue_statement] = STATE(492), - [sym_goto_statement] = STATE(492), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(34), - [sym_sizeof_expression] = STATE(34), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(34), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(492), - [sym_expression_statement] = STATE(492), - [anon_sym_LBRACE] = ACTIONS(35), - [sym_true] = ACTIONS(5), - [sym_null] = ACTIONS(5), - [anon_sym_do] = ACTIONS(39), - [anon_sym_goto] = ACTIONS(9), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(477), - [anon_sym_for] = ACTIONS(55), - [anon_sym_break] = ACTIONS(57), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(65), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(67), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(5), - [anon_sym_return] = ACTIONS(73), - [anon_sym_while] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_SEMI] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(1465), + [anon_sym_RPAREN] = ACTIONS(1465), + [anon_sym_SEMI] = ACTIONS(1465), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_RBRACE] = ACTIONS(1465), + [anon_sym_STAR] = ACTIONS(1467), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_RBRACK] = ACTIONS(1465), + [anon_sym_EQ] = ACTIONS(1467), + [anon_sym_COLON] = ACTIONS(1465), + [anon_sym_QMARK] = ACTIONS(1465), + [anon_sym_STAR_EQ] = ACTIONS(1465), + [anon_sym_SLASH_EQ] = ACTIONS(1465), + [anon_sym_PERCENT_EQ] = ACTIONS(1465), + [anon_sym_PLUS_EQ] = ACTIONS(1465), + [anon_sym_DASH_EQ] = ACTIONS(1465), + [anon_sym_LT_LT_EQ] = ACTIONS(1465), + [anon_sym_GT_GT_EQ] = ACTIONS(1465), + [anon_sym_AMP_EQ] = ACTIONS(1465), + [anon_sym_CARET_EQ] = ACTIONS(1465), + [anon_sym_PIPE_EQ] = ACTIONS(1465), + [anon_sym_AMP] = ACTIONS(1467), + [anon_sym_DASH] = ACTIONS(1467), + [anon_sym_PLUS] = ACTIONS(1467), + [anon_sym_SLASH] = ACTIONS(1467), + [anon_sym_PERCENT] = ACTIONS(1467), + [anon_sym_PIPE_PIPE] = ACTIONS(1465), + [anon_sym_AMP_AMP] = ACTIONS(1465), + [anon_sym_PIPE] = ACTIONS(1467), + [anon_sym_CARET] = ACTIONS(1467), + [anon_sym_EQ_EQ] = ACTIONS(1465), + [anon_sym_BANG_EQ] = ACTIONS(1465), + [anon_sym_GT] = ACTIONS(1467), + [anon_sym_GT_EQ] = ACTIONS(1465), + [anon_sym_LT_EQ] = ACTIONS(1465), + [anon_sym_LT] = ACTIONS(1467), + [anon_sym_LT_LT] = ACTIONS(1467), + [anon_sym_GT_GT] = ACTIONS(1467), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [454] = { - [sym_if_statement] = STATE(493), - [sym_do_statement] = STATE(493), - [sym_for_statement] = STATE(493), - [sym__expression] = STATE(34), - [sym_comma_expression] = STATE(35), - [sym_binary_expression] = STATE(34), - [sym_update_expression] = STATE(34), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(493), - [sym_return_statement] = STATE(493), - [sym_break_statement] = STATE(493), - [sym_conditional_expression] = STATE(34), - [sym_assignment_expression] = STATE(34), - [sym_cast_expression] = STATE(34), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(34), - [sym_char_literal] = STATE(34), - [sym_labeled_statement] = STATE(493), - [sym_while_statement] = STATE(493), - [sym_continue_statement] = STATE(493), - [sym_goto_statement] = STATE(493), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(34), - [sym_sizeof_expression] = STATE(34), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(34), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(493), - [sym_expression_statement] = STATE(493), - [anon_sym_LBRACE] = ACTIONS(35), - [sym_true] = ACTIONS(5), - [sym_null] = ACTIONS(5), - [anon_sym_do] = ACTIONS(39), - [anon_sym_goto] = ACTIONS(9), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(477), - [anon_sym_for] = ACTIONS(55), - [anon_sym_break] = ACTIONS(57), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(65), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(67), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(5), - [anon_sym_return] = ACTIONS(73), - [anon_sym_while] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_SEMI] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(1403), + [anon_sym_RPAREN] = ACTIONS(1403), + [anon_sym_SEMI] = ACTIONS(1403), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_RBRACE] = ACTIONS(1403), + [anon_sym_STAR] = ACTIONS(1407), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_RBRACK] = ACTIONS(1403), + [anon_sym_EQ] = ACTIONS(1411), + [anon_sym_COLON] = ACTIONS(1403), + [anon_sym_QMARK] = ACTIONS(1403), + [anon_sym_STAR_EQ] = ACTIONS(1403), + [anon_sym_SLASH_EQ] = ACTIONS(1403), + [anon_sym_PERCENT_EQ] = ACTIONS(1403), + [anon_sym_PLUS_EQ] = ACTIONS(1403), + [anon_sym_DASH_EQ] = ACTIONS(1403), + [anon_sym_LT_LT_EQ] = ACTIONS(1403), + [anon_sym_GT_GT_EQ] = ACTIONS(1403), + [anon_sym_AMP_EQ] = ACTIONS(1403), + [anon_sym_CARET_EQ] = ACTIONS(1403), + [anon_sym_PIPE_EQ] = ACTIONS(1403), + [anon_sym_AMP] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1439), + [anon_sym_PLUS] = ACTIONS(1439), + [anon_sym_SLASH] = ACTIONS(1407), + [anon_sym_PERCENT] = ACTIONS(1407), + [anon_sym_PIPE_PIPE] = ACTIONS(1403), + [anon_sym_AMP_AMP] = ACTIONS(1403), + [anon_sym_PIPE] = ACTIONS(1411), + [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_EQ_EQ] = ACTIONS(1449), + [anon_sym_BANG_EQ] = ACTIONS(1449), + [anon_sym_GT] = ACTIONS(1451), + [anon_sym_GT_EQ] = ACTIONS(1453), + [anon_sym_LT_EQ] = ACTIONS(1453), + [anon_sym_LT] = ACTIONS(1451), + [anon_sym_LT_LT] = ACTIONS(1455), + [anon_sym_GT_GT] = ACTIONS(1455), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [455] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_COMMA] = ACTIONS(293), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_RPAREN] = ACTIONS(1922), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(1403), + [anon_sym_RPAREN] = ACTIONS(1403), + [anon_sym_SEMI] = ACTIONS(1403), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_RBRACE] = ACTIONS(1403), + [anon_sym_STAR] = ACTIONS(1407), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_RBRACK] = ACTIONS(1403), + [anon_sym_EQ] = ACTIONS(1411), + [anon_sym_COLON] = ACTIONS(1403), + [anon_sym_QMARK] = ACTIONS(1403), + [anon_sym_STAR_EQ] = ACTIONS(1403), + [anon_sym_SLASH_EQ] = ACTIONS(1403), + [anon_sym_PERCENT_EQ] = ACTIONS(1403), + [anon_sym_PLUS_EQ] = ACTIONS(1403), + [anon_sym_DASH_EQ] = ACTIONS(1403), + [anon_sym_LT_LT_EQ] = ACTIONS(1403), + [anon_sym_GT_GT_EQ] = ACTIONS(1403), + [anon_sym_AMP_EQ] = ACTIONS(1403), + [anon_sym_CARET_EQ] = ACTIONS(1403), + [anon_sym_PIPE_EQ] = ACTIONS(1403), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1439), + [anon_sym_PLUS] = ACTIONS(1439), + [anon_sym_SLASH] = ACTIONS(1407), + [anon_sym_PERCENT] = ACTIONS(1407), + [anon_sym_PIPE_PIPE] = ACTIONS(1403), + [anon_sym_AMP_AMP] = ACTIONS(1443), + [anon_sym_PIPE] = ACTIONS(1445), + [anon_sym_CARET] = ACTIONS(1447), + [anon_sym_EQ_EQ] = ACTIONS(1449), + [anon_sym_BANG_EQ] = ACTIONS(1449), + [anon_sym_GT] = ACTIONS(1451), + [anon_sym_GT_EQ] = ACTIONS(1453), + [anon_sym_LT_EQ] = ACTIONS(1453), + [anon_sym_LT] = ACTIONS(1451), + [anon_sym_LT_LT] = ACTIONS(1455), + [anon_sym_GT_GT] = ACTIONS(1455), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [456] = { - [anon_sym_RPAREN] = ACTIONS(1922), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(1403), + [anon_sym_RPAREN] = ACTIONS(1403), + [anon_sym_SEMI] = ACTIONS(1403), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_RBRACE] = ACTIONS(1403), + [anon_sym_STAR] = ACTIONS(1407), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_RBRACK] = ACTIONS(1403), + [anon_sym_EQ] = ACTIONS(1411), + [anon_sym_COLON] = ACTIONS(1403), + [anon_sym_QMARK] = ACTIONS(1403), + [anon_sym_STAR_EQ] = ACTIONS(1403), + [anon_sym_SLASH_EQ] = ACTIONS(1403), + [anon_sym_PERCENT_EQ] = ACTIONS(1403), + [anon_sym_PLUS_EQ] = ACTIONS(1403), + [anon_sym_DASH_EQ] = ACTIONS(1403), + [anon_sym_LT_LT_EQ] = ACTIONS(1403), + [anon_sym_GT_GT_EQ] = ACTIONS(1403), + [anon_sym_AMP_EQ] = ACTIONS(1403), + [anon_sym_CARET_EQ] = ACTIONS(1403), + [anon_sym_PIPE_EQ] = ACTIONS(1403), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1439), + [anon_sym_PLUS] = ACTIONS(1439), + [anon_sym_SLASH] = ACTIONS(1407), + [anon_sym_PERCENT] = ACTIONS(1407), + [anon_sym_PIPE_PIPE] = ACTIONS(1403), + [anon_sym_AMP_AMP] = ACTIONS(1403), + [anon_sym_PIPE] = ACTIONS(1445), + [anon_sym_CARET] = ACTIONS(1447), + [anon_sym_EQ_EQ] = ACTIONS(1449), + [anon_sym_BANG_EQ] = ACTIONS(1449), + [anon_sym_GT] = ACTIONS(1451), + [anon_sym_GT_EQ] = ACTIONS(1453), + [anon_sym_LT_EQ] = ACTIONS(1453), + [anon_sym_LT] = ACTIONS(1451), + [anon_sym_LT_LT] = ACTIONS(1455), + [anon_sym_GT_GT] = ACTIONS(1455), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), [sym_comment] = ACTIONS(3), }, [457] = { - [sym_if_statement] = STATE(495), - [sym_do_statement] = STATE(495), - [sym_for_statement] = STATE(495), - [sym__expression] = STATE(34), - [sym_comma_expression] = STATE(35), - [sym_binary_expression] = STATE(34), - [sym_update_expression] = STATE(34), - [sym_call_expression] = STATE(36), - [sym_declaration] = STATE(495), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(130), - [sym_union_specifier] = STATE(130), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [aux_sym_case_statement_repeat1] = STATE(495), - [sym_switch_statement] = STATE(495), - [sym_return_statement] = STATE(495), - [sym_break_statement] = STATE(495), - [sym_conditional_expression] = STATE(34), - [sym_assignment_expression] = STATE(34), - [sym_cast_expression] = STATE(34), - [sym__declaration_specifiers] = STATE(165), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(34), - [sym_type_definition] = STATE(495), - [sym_char_literal] = STATE(34), - [sym_sized_type_specifier] = STATE(130), - [sym_enum_specifier] = STATE(130), - [sym_labeled_statement] = STATE(495), - [sym_while_statement] = STATE(495), - [sym_continue_statement] = STATE(495), - [sym_goto_statement] = STATE(495), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(34), - [sym_sizeof_expression] = STATE(34), - [sym_attribute_specifier] = STATE(43), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(34), - [sym_string_literal] = STATE(41), - [sym_macro_type_specifier] = STATE(130), - [sym_compound_statement] = STATE(495), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_storage_class_specifier] = STATE(43), - [sym_struct_specifier] = STATE(130), - [sym_expression_statement] = STATE(495), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_union] = ACTIONS(37), - [anon_sym_case] = ACTIONS(1924), - [sym_true] = ACTIONS(5), - [anon_sym_restrict] = ACTIONS(7), - [sym_null] = ACTIONS(5), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_short] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(39), - [anon_sym_goto] = ACTIONS(9), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_const] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(1926), - [anon_sym_DASH_DASH] = ACTIONS(13), - [anon_sym_default] = ACTIONS(1924), - [anon_sym_typedef] = ACTIONS(11), - [anon_sym__Atomic] = ACTIONS(7), - [sym_identifier] = ACTIONS(1664), - [sym_primitive_type] = ACTIONS(348), - [anon_sym_for] = ACTIONS(55), - [anon_sym_break] = ACTIONS(57), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_static] = ACTIONS(63), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(65), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_register] = ACTIONS(63), - [sym_false] = ACTIONS(5), - [anon_sym_extern] = ACTIONS(63), - [anon_sym_struct] = ACTIONS(25), - [anon_sym_return] = ACTIONS(73), - [anon_sym_while] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_SEMI] = ACTIONS(77), - [anon_sym_signed] = ACTIONS(27), - [anon_sym_long] = ACTIONS(27), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_sizeof] = ACTIONS(33), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(1403), + [anon_sym_RPAREN] = ACTIONS(1403), + [anon_sym_SEMI] = ACTIONS(1403), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_RBRACE] = ACTIONS(1403), + [anon_sym_STAR] = ACTIONS(1407), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_RBRACK] = ACTIONS(1403), + [anon_sym_EQ] = ACTIONS(1411), + [anon_sym_COLON] = ACTIONS(1403), + [anon_sym_QMARK] = ACTIONS(1403), + [anon_sym_STAR_EQ] = ACTIONS(1403), + [anon_sym_SLASH_EQ] = ACTIONS(1403), + [anon_sym_PERCENT_EQ] = ACTIONS(1403), + [anon_sym_PLUS_EQ] = ACTIONS(1403), + [anon_sym_DASH_EQ] = ACTIONS(1403), + [anon_sym_LT_LT_EQ] = ACTIONS(1403), + [anon_sym_GT_GT_EQ] = ACTIONS(1403), + [anon_sym_AMP_EQ] = ACTIONS(1403), + [anon_sym_CARET_EQ] = ACTIONS(1403), + [anon_sym_PIPE_EQ] = ACTIONS(1403), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1439), + [anon_sym_PLUS] = ACTIONS(1439), + [anon_sym_SLASH] = ACTIONS(1407), + [anon_sym_PERCENT] = ACTIONS(1407), + [anon_sym_PIPE_PIPE] = ACTIONS(1403), + [anon_sym_AMP_AMP] = ACTIONS(1403), + [anon_sym_PIPE] = ACTIONS(1411), + [anon_sym_CARET] = ACTIONS(1447), + [anon_sym_EQ_EQ] = ACTIONS(1449), + [anon_sym_BANG_EQ] = ACTIONS(1449), + [anon_sym_GT] = ACTIONS(1451), + [anon_sym_GT_EQ] = ACTIONS(1453), + [anon_sym_LT_EQ] = ACTIONS(1453), + [anon_sym_LT] = ACTIONS(1451), + [anon_sym_LT_LT] = ACTIONS(1455), + [anon_sym_GT_GT] = ACTIONS(1455), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [458] = { - [sym_if_statement] = STATE(496), - [sym_do_statement] = STATE(496), - [sym_for_statement] = STATE(496), - [sym__expression] = STATE(34), - [sym_comma_expression] = STATE(35), - [sym_binary_expression] = STATE(34), - [sym_update_expression] = STATE(34), - [sym_call_expression] = STATE(36), - [sym_declaration] = STATE(496), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(130), - [sym_union_specifier] = STATE(130), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [aux_sym_case_statement_repeat1] = STATE(496), - [sym_switch_statement] = STATE(496), - [sym_return_statement] = STATE(496), - [sym_break_statement] = STATE(496), - [sym_conditional_expression] = STATE(34), - [sym_assignment_expression] = STATE(34), - [sym_cast_expression] = STATE(34), - [sym__declaration_specifiers] = STATE(165), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(34), - [sym_type_definition] = STATE(496), - [sym_char_literal] = STATE(34), - [sym_sized_type_specifier] = STATE(130), - [sym_enum_specifier] = STATE(130), - [sym_labeled_statement] = STATE(496), - [sym_while_statement] = STATE(496), - [sym_continue_statement] = STATE(496), - [sym_goto_statement] = STATE(496), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(34), - [sym_sizeof_expression] = STATE(34), - [sym_attribute_specifier] = STATE(43), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(34), - [sym_string_literal] = STATE(41), - [sym_macro_type_specifier] = STATE(130), - [sym_compound_statement] = STATE(496), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_storage_class_specifier] = STATE(43), - [sym_struct_specifier] = STATE(130), - [sym_expression_statement] = STATE(496), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_union] = ACTIONS(37), - [anon_sym_case] = ACTIONS(1928), - [sym_true] = ACTIONS(5), - [anon_sym_restrict] = ACTIONS(7), - [sym_null] = ACTIONS(5), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_short] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(39), - [anon_sym_goto] = ACTIONS(9), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_const] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(1930), - [anon_sym_DASH_DASH] = ACTIONS(13), - [anon_sym_default] = ACTIONS(1928), - [anon_sym_typedef] = ACTIONS(11), - [anon_sym__Atomic] = ACTIONS(7), - [sym_identifier] = ACTIONS(1664), - [sym_primitive_type] = ACTIONS(348), - [anon_sym_for] = ACTIONS(55), - [anon_sym_break] = ACTIONS(57), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_static] = ACTIONS(63), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(65), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_register] = ACTIONS(63), - [sym_false] = ACTIONS(5), - [anon_sym_extern] = ACTIONS(63), - [anon_sym_struct] = ACTIONS(25), - [anon_sym_return] = ACTIONS(73), - [anon_sym_while] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_SEMI] = ACTIONS(77), - [anon_sym_signed] = ACTIONS(27), - [anon_sym_long] = ACTIONS(27), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_sizeof] = ACTIONS(33), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(1469), + [anon_sym_RPAREN] = ACTIONS(1469), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_RBRACE] = ACTIONS(1469), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_RBRACK] = ACTIONS(1469), + [anon_sym_EQ] = ACTIONS(1471), + [anon_sym_COLON] = ACTIONS(1469), + [anon_sym_QMARK] = ACTIONS(1469), + [anon_sym_STAR_EQ] = ACTIONS(1469), + [anon_sym_SLASH_EQ] = ACTIONS(1469), + [anon_sym_PERCENT_EQ] = ACTIONS(1469), + [anon_sym_PLUS_EQ] = ACTIONS(1469), + [anon_sym_DASH_EQ] = ACTIONS(1469), + [anon_sym_LT_LT_EQ] = ACTIONS(1469), + [anon_sym_GT_GT_EQ] = ACTIONS(1469), + [anon_sym_AMP_EQ] = ACTIONS(1469), + [anon_sym_CARET_EQ] = ACTIONS(1469), + [anon_sym_PIPE_EQ] = ACTIONS(1469), + [anon_sym_AMP] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_SLASH] = ACTIONS(1471), + [anon_sym_PERCENT] = ACTIONS(1471), + [anon_sym_PIPE_PIPE] = ACTIONS(1469), + [anon_sym_AMP_AMP] = ACTIONS(1469), + [anon_sym_PIPE] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_EQ_EQ] = ACTIONS(1469), + [anon_sym_BANG_EQ] = ACTIONS(1469), + [anon_sym_GT] = ACTIONS(1471), + [anon_sym_GT_EQ] = ACTIONS(1469), + [anon_sym_LT_EQ] = ACTIONS(1469), + [anon_sym_LT] = ACTIONS(1471), + [anon_sym_LT_LT] = ACTIONS(1471), + [anon_sym_GT_GT] = ACTIONS(1471), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [459] = { - [anon_sym_restrict] = ACTIONS(1932), - [anon_sym_COMMA] = ACTIONS(1934), - [anon_sym_static] = ACTIONS(1932), - [anon_sym_volatile] = ACTIONS(1932), - [anon_sym_register] = ACTIONS(1932), - [anon_sym_extern] = ACTIONS(1932), - [anon_sym_STAR] = ACTIONS(1934), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(1932), - [anon_sym_LPAREN2] = ACTIONS(1934), - [anon_sym_COLON] = ACTIONS(1934), - [anon_sym_SEMI] = ACTIONS(1934), - [anon_sym__Atomic] = ACTIONS(1932), - [sym_identifier] = ACTIONS(1932), - [anon_sym_auto] = ACTIONS(1932), - [anon_sym_RPAREN] = ACTIONS(1934), - [anon_sym_inline] = ACTIONS(1932), - [anon_sym___attribute__] = ACTIONS(1932), - [anon_sym_LBRACK] = ACTIONS(1934), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(1403), + [anon_sym_RPAREN] = ACTIONS(1403), + [anon_sym_SEMI] = ACTIONS(1403), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_RBRACE] = ACTIONS(1403), + [anon_sym_STAR] = ACTIONS(1407), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_RBRACK] = ACTIONS(1403), + [anon_sym_EQ] = ACTIONS(1411), + [anon_sym_COLON] = ACTIONS(1403), + [anon_sym_QMARK] = ACTIONS(1403), + [anon_sym_STAR_EQ] = ACTIONS(1403), + [anon_sym_SLASH_EQ] = ACTIONS(1403), + [anon_sym_PERCENT_EQ] = ACTIONS(1403), + [anon_sym_PLUS_EQ] = ACTIONS(1403), + [anon_sym_DASH_EQ] = ACTIONS(1403), + [anon_sym_LT_LT_EQ] = ACTIONS(1403), + [anon_sym_GT_GT_EQ] = ACTIONS(1403), + [anon_sym_AMP_EQ] = ACTIONS(1403), + [anon_sym_CARET_EQ] = ACTIONS(1403), + [anon_sym_PIPE_EQ] = ACTIONS(1403), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1439), + [anon_sym_PLUS] = ACTIONS(1439), + [anon_sym_SLASH] = ACTIONS(1407), + [anon_sym_PERCENT] = ACTIONS(1407), + [anon_sym_PIPE_PIPE] = ACTIONS(1403), + [anon_sym_AMP_AMP] = ACTIONS(1403), + [anon_sym_PIPE] = ACTIONS(1411), + [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_EQ_EQ] = ACTIONS(1449), + [anon_sym_BANG_EQ] = ACTIONS(1449), + [anon_sym_GT] = ACTIONS(1451), + [anon_sym_GT_EQ] = ACTIONS(1453), + [anon_sym_LT_EQ] = ACTIONS(1453), + [anon_sym_LT] = ACTIONS(1451), + [anon_sym_LT_LT] = ACTIONS(1455), + [anon_sym_GT_GT] = ACTIONS(1455), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [460] = { - [sym_enumerator] = STATE(386), - [sym_identifier] = ACTIONS(513), + [sym_type_qualifier] = STATE(445), + [sym__expression] = STATE(749), + [sym_conditional_expression] = STATE(749), + [sym_assignment_expression] = STATE(749), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_cast_expression] = STATE(749), + [sym_sizeof_expression] = STATE(749), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(749), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(749), + [sym_concatenated_string] = STATE(749), + [sym_string_literal] = STATE(431), + [aux_sym_type_definition_repeat1] = STATE(445), + [sym_identifier] = ACTIONS(911), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(1473), + [anon_sym_RBRACK] = ACTIONS(1475), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_volatile] = ACTIONS(1389), + [anon_sym_restrict] = ACTIONS(1389), + [anon_sym__Atomic] = ACTIONS(1389), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1477), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1479), + [sym_false] = ACTIONS(1479), + [sym_null] = ACTIONS(1479), [sym_comment] = ACTIONS(3), }, [461] = { - [anon_sym_COMMA] = ACTIONS(1936), - [anon_sym_RPAREN] = ACTIONS(1936), + [sym_type_qualifier] = STATE(448), + [sym__expression] = STATE(748), + [sym_conditional_expression] = STATE(748), + [sym_assignment_expression] = STATE(748), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(748), + [sym_binary_expression] = STATE(748), + [sym_update_expression] = STATE(748), + [sym_cast_expression] = STATE(748), + [sym_sizeof_expression] = STATE(748), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(748), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(748), + [sym_concatenated_string] = STATE(748), + [sym_string_literal] = STATE(431), + [aux_sym_type_definition_repeat1] = STATE(448), + [sym_identifier] = ACTIONS(911), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(1481), + [anon_sym_RBRACK] = ACTIONS(1483), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_volatile] = ACTIONS(1389), + [anon_sym_restrict] = ACTIONS(1389), + [anon_sym__Atomic] = ACTIONS(1389), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1485), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1487), + [sym_false] = ACTIONS(1487), + [sym_null] = ACTIONS(1487), [sym_comment] = ACTIONS(3), }, [462] = { - [sym_comment] = ACTIONS(147), - [anon_sym_LF] = ACTIONS(1938), - [sym_preproc_arg] = ACTIONS(1938), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(1403), + [anon_sym_RPAREN] = ACTIONS(1403), + [anon_sym_SEMI] = ACTIONS(1403), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_RBRACE] = ACTIONS(1403), + [anon_sym_STAR] = ACTIONS(1407), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_RBRACK] = ACTIONS(1403), + [anon_sym_EQ] = ACTIONS(1411), + [anon_sym_COLON] = ACTIONS(1403), + [anon_sym_QMARK] = ACTIONS(1403), + [anon_sym_STAR_EQ] = ACTIONS(1403), + [anon_sym_SLASH_EQ] = ACTIONS(1403), + [anon_sym_PERCENT_EQ] = ACTIONS(1403), + [anon_sym_PLUS_EQ] = ACTIONS(1403), + [anon_sym_DASH_EQ] = ACTIONS(1403), + [anon_sym_LT_LT_EQ] = ACTIONS(1403), + [anon_sym_GT_GT_EQ] = ACTIONS(1403), + [anon_sym_AMP_EQ] = ACTIONS(1403), + [anon_sym_CARET_EQ] = ACTIONS(1403), + [anon_sym_PIPE_EQ] = ACTIONS(1403), + [anon_sym_AMP] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1439), + [anon_sym_PLUS] = ACTIONS(1439), + [anon_sym_SLASH] = ACTIONS(1407), + [anon_sym_PERCENT] = ACTIONS(1407), + [anon_sym_PIPE_PIPE] = ACTIONS(1403), + [anon_sym_AMP_AMP] = ACTIONS(1403), + [anon_sym_PIPE] = ACTIONS(1411), + [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_EQ_EQ] = ACTIONS(1403), + [anon_sym_BANG_EQ] = ACTIONS(1403), + [anon_sym_GT] = ACTIONS(1451), + [anon_sym_GT_EQ] = ACTIONS(1453), + [anon_sym_LT_EQ] = ACTIONS(1453), + [anon_sym_LT] = ACTIONS(1451), + [anon_sym_LT_LT] = ACTIONS(1455), + [anon_sym_GT_GT] = ACTIONS(1455), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [463] = { - [aux_sym_preproc_params_repeat1] = STATE(463), - [anon_sym_COMMA] = ACTIONS(1940), - [anon_sym_RPAREN] = ACTIONS(1936), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(1403), + [anon_sym_RPAREN] = ACTIONS(1403), + [anon_sym_SEMI] = ACTIONS(1403), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_RBRACE] = ACTIONS(1403), + [anon_sym_STAR] = ACTIONS(1407), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_RBRACK] = ACTIONS(1403), + [anon_sym_EQ] = ACTIONS(1411), + [anon_sym_COLON] = ACTIONS(1403), + [anon_sym_QMARK] = ACTIONS(1403), + [anon_sym_STAR_EQ] = ACTIONS(1403), + [anon_sym_SLASH_EQ] = ACTIONS(1403), + [anon_sym_PERCENT_EQ] = ACTIONS(1403), + [anon_sym_PLUS_EQ] = ACTIONS(1403), + [anon_sym_DASH_EQ] = ACTIONS(1403), + [anon_sym_LT_LT_EQ] = ACTIONS(1403), + [anon_sym_GT_GT_EQ] = ACTIONS(1403), + [anon_sym_AMP_EQ] = ACTIONS(1403), + [anon_sym_CARET_EQ] = ACTIONS(1403), + [anon_sym_PIPE_EQ] = ACTIONS(1403), + [anon_sym_AMP] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1439), + [anon_sym_PLUS] = ACTIONS(1439), + [anon_sym_SLASH] = ACTIONS(1407), + [anon_sym_PERCENT] = ACTIONS(1407), + [anon_sym_PIPE_PIPE] = ACTIONS(1403), + [anon_sym_AMP_AMP] = ACTIONS(1403), + [anon_sym_PIPE] = ACTIONS(1411), + [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_EQ_EQ] = ACTIONS(1403), + [anon_sym_BANG_EQ] = ACTIONS(1403), + [anon_sym_GT] = ACTIONS(1411), + [anon_sym_GT_EQ] = ACTIONS(1403), + [anon_sym_LT_EQ] = ACTIONS(1403), + [anon_sym_LT] = ACTIONS(1411), + [anon_sym_LT_LT] = ACTIONS(1455), + [anon_sym_GT_GT] = ACTIONS(1455), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), [sym_comment] = ACTIONS(3), }, [464] = { - [anon_sym_LBRACE] = ACTIONS(1943), - [anon_sym_EQ] = ACTIONS(1943), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(1403), + [anon_sym_RPAREN] = ACTIONS(1403), + [anon_sym_SEMI] = ACTIONS(1403), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_RBRACE] = ACTIONS(1403), + [anon_sym_STAR] = ACTIONS(1407), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_RBRACK] = ACTIONS(1403), + [anon_sym_EQ] = ACTIONS(1411), + [anon_sym_COLON] = ACTIONS(1403), + [anon_sym_QMARK] = ACTIONS(1403), + [anon_sym_STAR_EQ] = ACTIONS(1403), + [anon_sym_SLASH_EQ] = ACTIONS(1403), + [anon_sym_PERCENT_EQ] = ACTIONS(1403), + [anon_sym_PLUS_EQ] = ACTIONS(1403), + [anon_sym_DASH_EQ] = ACTIONS(1403), + [anon_sym_LT_LT_EQ] = ACTIONS(1403), + [anon_sym_GT_GT_EQ] = ACTIONS(1403), + [anon_sym_AMP_EQ] = ACTIONS(1403), + [anon_sym_CARET_EQ] = ACTIONS(1403), + [anon_sym_PIPE_EQ] = ACTIONS(1403), + [anon_sym_AMP] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1439), + [anon_sym_PLUS] = ACTIONS(1439), + [anon_sym_SLASH] = ACTIONS(1407), + [anon_sym_PERCENT] = ACTIONS(1407), + [anon_sym_PIPE_PIPE] = ACTIONS(1403), + [anon_sym_AMP_AMP] = ACTIONS(1403), + [anon_sym_PIPE] = ACTIONS(1411), + [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_EQ_EQ] = ACTIONS(1403), + [anon_sym_BANG_EQ] = ACTIONS(1403), + [anon_sym_GT] = ACTIONS(1411), + [anon_sym_GT_EQ] = ACTIONS(1403), + [anon_sym_LT_EQ] = ACTIONS(1403), + [anon_sym_LT] = ACTIONS(1411), + [anon_sym_LT_LT] = ACTIONS(1411), + [anon_sym_GT_GT] = ACTIONS(1411), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(1943), - [anon_sym_COMMA] = ACTIONS(1943), - [anon_sym_SEMI] = ACTIONS(1943), - [anon_sym_RPAREN] = ACTIONS(1943), - [anon_sym_LBRACK] = ACTIONS(1943), }, [465] = { - [sym_preproc_def] = STATE(561), - [sym_preproc_function_def] = STATE(561), - [sym_sized_type_specifier] = STATE(130), - [sym_enum_specifier] = STATE(130), - [sym__field_declaration_list_item] = STATE(561), - [sym_field_declaration] = STATE(561), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(561), - [sym_preproc_else_in_field_declaration_list] = STATE(497), - [sym__type_specifier] = STATE(130), - [sym_union_specifier] = STATE(130), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_attribute_specifier] = STATE(43), - [sym_preproc_elif_in_field_declaration_list] = STATE(497), - [sym_type_qualifier] = STATE(43), - [sym_macro_type_specifier] = STATE(130), - [sym_preproc_call] = STATE(561), - [sym_preproc_if_in_field_declaration_list] = STATE(561), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(561), - [sym_struct_specifier] = STATE(130), - [sym__declaration_specifiers] = STATE(888), - [sym_storage_class_specifier] = STATE(43), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1145), - [anon_sym_union] = ACTIONS(37), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(7), - [anon_sym_short] = ACTIONS(27), - [anon_sym_static] = ACTIONS(63), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_register] = ACTIONS(63), - [anon_sym_extern] = ACTIONS(63), - [aux_sym_preproc_else_token1] = ACTIONS(1147), - [aux_sym_preproc_if_token2] = ACTIONS(1945), - [anon_sym_struct] = ACTIONS(25), - [sym_preproc_directive] = ACTIONS(1149), - [anon_sym_signed] = ACTIONS(27), - [aux_sym_preproc_if_token1] = ACTIONS(1151), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_long] = ACTIONS(27), - [anon_sym_const] = ACTIONS(7), + [sym_type_qualifier] = STATE(468), + [sym__expression] = STATE(746), + [sym_conditional_expression] = STATE(746), + [sym_assignment_expression] = STATE(746), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_cast_expression] = STATE(746), + [sym_sizeof_expression] = STATE(746), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(746), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(746), + [sym_concatenated_string] = STATE(746), + [sym_string_literal] = STATE(431), + [aux_sym_type_definition_repeat1] = STATE(468), + [sym_identifier] = ACTIONS(911), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(1489), + [anon_sym_RBRACK] = ACTIONS(1491), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_volatile] = ACTIONS(1389), + [anon_sym_restrict] = ACTIONS(1389), + [anon_sym__Atomic] = ACTIONS(1389), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1493), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1495), + [sym_false] = ACTIONS(1495), + [sym_null] = ACTIONS(1495), [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1145), - [aux_sym_preproc_elif_token1] = ACTIONS(1155), - [aux_sym_preproc_def_token1] = ACTIONS(1157), - [anon_sym__Atomic] = ACTIONS(7), - [anon_sym_auto] = ACTIONS(63), - [sym_primitive_type] = ACTIONS(348), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(31), - [sym_identifier] = ACTIONS(187), }, [466] = { - [aux_sym_preproc_if_token2] = ACTIONS(1947), + [sym_type_qualifier] = STATE(785), + [sym__expression] = STATE(740), + [sym_conditional_expression] = STATE(740), + [sym_assignment_expression] = STATE(740), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(740), + [sym_binary_expression] = STATE(740), + [sym_update_expression] = STATE(740), + [sym_cast_expression] = STATE(740), + [sym_sizeof_expression] = STATE(740), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(740), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(740), + [sym_concatenated_string] = STATE(740), + [sym_string_literal] = STATE(431), + [aux_sym_type_definition_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(911), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(1497), + [anon_sym_RBRACK] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_volatile] = ACTIONS(1389), + [anon_sym_restrict] = ACTIONS(1389), + [anon_sym__Atomic] = ACTIONS(1389), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1501), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1503), + [sym_false] = ACTIONS(1503), + [sym_null] = ACTIONS(1503), [sym_comment] = ACTIONS(3), }, [467] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1949), - [anon_sym_union] = ACTIONS(1949), - [anon_sym_unsigned] = ACTIONS(1949), - [anon_sym_restrict] = ACTIONS(1949), - [anon_sym_short] = ACTIONS(1949), - [anon_sym_static] = ACTIONS(1949), - [anon_sym_volatile] = ACTIONS(1949), - [anon_sym_register] = ACTIONS(1949), - [anon_sym_extern] = ACTIONS(1949), - [anon_sym_struct] = ACTIONS(1949), - [sym_preproc_directive] = ACTIONS(1949), - [anon_sym_signed] = ACTIONS(1949), - [aux_sym_preproc_if_token1] = ACTIONS(1949), - [anon_sym_long] = ACTIONS(1949), - [anon_sym_enum] = ACTIONS(1949), - [anon_sym_const] = ACTIONS(1949), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(1951), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1949), - [aux_sym_preproc_def_token1] = ACTIONS(1949), - [anon_sym__Atomic] = ACTIONS(1949), - [anon_sym_auto] = ACTIONS(1949), - [sym_primitive_type] = ACTIONS(1949), - [anon_sym_inline] = ACTIONS(1949), - [anon_sym___attribute__] = ACTIONS(1949), - [sym_identifier] = ACTIONS(1949), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(1403), + [anon_sym_RPAREN] = ACTIONS(1403), + [anon_sym_SEMI] = ACTIONS(1403), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_RBRACE] = ACTIONS(1403), + [anon_sym_STAR] = ACTIONS(1411), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_RBRACK] = ACTIONS(1403), + [anon_sym_EQ] = ACTIONS(1411), + [anon_sym_COLON] = ACTIONS(1403), + [anon_sym_QMARK] = ACTIONS(1403), + [anon_sym_STAR_EQ] = ACTIONS(1403), + [anon_sym_SLASH_EQ] = ACTIONS(1403), + [anon_sym_PERCENT_EQ] = ACTIONS(1403), + [anon_sym_PLUS_EQ] = ACTIONS(1403), + [anon_sym_DASH_EQ] = ACTIONS(1403), + [anon_sym_LT_LT_EQ] = ACTIONS(1403), + [anon_sym_GT_GT_EQ] = ACTIONS(1403), + [anon_sym_AMP_EQ] = ACTIONS(1403), + [anon_sym_CARET_EQ] = ACTIONS(1403), + [anon_sym_PIPE_EQ] = ACTIONS(1403), + [anon_sym_AMP] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(1411), + [anon_sym_PERCENT] = ACTIONS(1411), + [anon_sym_PIPE_PIPE] = ACTIONS(1403), + [anon_sym_AMP_AMP] = ACTIONS(1403), + [anon_sym_PIPE] = ACTIONS(1411), + [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_EQ_EQ] = ACTIONS(1403), + [anon_sym_BANG_EQ] = ACTIONS(1403), + [anon_sym_GT] = ACTIONS(1411), + [anon_sym_GT_EQ] = ACTIONS(1403), + [anon_sym_LT_EQ] = ACTIONS(1403), + [anon_sym_LT] = ACTIONS(1411), + [anon_sym_LT_LT] = ACTIONS(1411), + [anon_sym_GT_GT] = ACTIONS(1411), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [468] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1953), - [anon_sym_union] = ACTIONS(1953), - [anon_sym_unsigned] = ACTIONS(1953), - [anon_sym_restrict] = ACTIONS(1953), - [anon_sym_short] = ACTIONS(1953), - [anon_sym_static] = ACTIONS(1953), - [anon_sym_volatile] = ACTIONS(1953), - [anon_sym_register] = ACTIONS(1953), - [anon_sym_extern] = ACTIONS(1953), - [anon_sym_struct] = ACTIONS(1953), - [sym_preproc_directive] = ACTIONS(1953), - [anon_sym_signed] = ACTIONS(1953), - [aux_sym_preproc_if_token1] = ACTIONS(1953), - [anon_sym_long] = ACTIONS(1953), - [anon_sym_enum] = ACTIONS(1953), - [anon_sym_const] = ACTIONS(1953), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(1955), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1953), - [aux_sym_preproc_def_token1] = ACTIONS(1953), - [anon_sym__Atomic] = ACTIONS(1953), - [anon_sym_auto] = ACTIONS(1953), - [sym_primitive_type] = ACTIONS(1953), - [anon_sym_inline] = ACTIONS(1953), - [anon_sym___attribute__] = ACTIONS(1953), - [sym_identifier] = ACTIONS(1953), + [sym_type_qualifier] = STATE(785), + [sym__expression] = STATE(750), + [sym_conditional_expression] = STATE(750), + [sym_assignment_expression] = STATE(750), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(750), + [sym_binary_expression] = STATE(750), + [sym_update_expression] = STATE(750), + [sym_cast_expression] = STATE(750), + [sym_sizeof_expression] = STATE(750), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(750), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(750), + [sym_concatenated_string] = STATE(750), + [sym_string_literal] = STATE(431), + [aux_sym_type_definition_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(911), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(1505), + [anon_sym_RBRACK] = ACTIONS(1507), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_volatile] = ACTIONS(1389), + [anon_sym_restrict] = ACTIONS(1389), + [anon_sym__Atomic] = ACTIONS(1389), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1509), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1511), + [sym_false] = ACTIONS(1511), + [sym_null] = ACTIONS(1511), + [sym_comment] = ACTIONS(3), }, [469] = { + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(1513), + [anon_sym_RPAREN] = ACTIONS(1513), + [anon_sym_SEMI] = ACTIONS(1513), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_RBRACE] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(1407), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_RBRACK] = ACTIONS(1513), + [anon_sym_EQ] = ACTIONS(1515), + [anon_sym_COLON] = ACTIONS(1513), + [anon_sym_QMARK] = ACTIONS(1517), + [anon_sym_STAR_EQ] = ACTIONS(1513), + [anon_sym_SLASH_EQ] = ACTIONS(1513), + [anon_sym_PERCENT_EQ] = ACTIONS(1513), + [anon_sym_PLUS_EQ] = ACTIONS(1513), + [anon_sym_DASH_EQ] = ACTIONS(1513), + [anon_sym_LT_LT_EQ] = ACTIONS(1513), + [anon_sym_GT_GT_EQ] = ACTIONS(1513), + [anon_sym_AMP_EQ] = ACTIONS(1513), + [anon_sym_CARET_EQ] = ACTIONS(1513), + [anon_sym_PIPE_EQ] = ACTIONS(1513), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1439), + [anon_sym_PLUS] = ACTIONS(1439), + [anon_sym_SLASH] = ACTIONS(1407), + [anon_sym_PERCENT] = ACTIONS(1407), + [anon_sym_PIPE_PIPE] = ACTIONS(1441), + [anon_sym_AMP_AMP] = ACTIONS(1443), + [anon_sym_PIPE] = ACTIONS(1445), + [anon_sym_CARET] = ACTIONS(1447), + [anon_sym_EQ_EQ] = ACTIONS(1449), + [anon_sym_BANG_EQ] = ACTIONS(1449), + [anon_sym_GT] = ACTIONS(1451), + [anon_sym_GT_EQ] = ACTIONS(1453), + [anon_sym_LT_EQ] = ACTIONS(1453), + [anon_sym_LT] = ACTIONS(1451), + [anon_sym_LT_LT] = ACTIONS(1455), + [anon_sym_GT_GT] = ACTIONS(1455), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(1957), - [anon_sym_COMMA] = ACTIONS(1957), - [anon_sym_COLON] = ACTIONS(1957), - [anon_sym_SEMI] = ACTIONS(1957), - [anon_sym_RPAREN] = ACTIONS(1957), - [anon_sym_LBRACK] = ACTIONS(1957), }, [470] = { - [sym_char_literal] = STATE(54), - [sym__expression] = STATE(54), - [sym_binary_expression] = STATE(54), - [sym_update_expression] = STATE(54), - [sym_call_expression] = STATE(54), - [sym_pointer_expression] = STATE(54), - [sym_unary_expression] = STATE(54), - [sym_sizeof_expression] = STATE(54), - [sym_subscript_expression] = STATE(54), - [sym_parenthesized_expression] = STATE(54), - [sym_concatenated_string] = STATE(54), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(54), - [sym_assignment_expression] = STATE(54), - [sym_cast_expression] = STATE(54), - [sym_field_expression] = STATE(54), - [sym_compound_literal_expression] = STATE(54), - [sym_true] = ACTIONS(153), - [sym_null] = ACTIONS(153), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(155), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(159), - [sym_identifier] = ACTIONS(153), - [anon_sym_BANG] = ACTIONS(155), - [anon_sym_DASH] = ACTIONS(161), - [sym_number_literal] = ACTIONS(163), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(159), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_RBRACK] = ACTIONS(1959), - [anon_sym_sizeof] = ACTIONS(165), + [sym__declaration_specifiers] = STATE(873), + [sym_attribute_specifier] = STATE(661), + [sym__abstract_declarator] = STATE(1010), + [sym_abstract_parenthesized_declarator] = STATE(1010), + [sym_abstract_pointer_declarator] = STATE(1010), + [sym_abstract_function_declarator] = STATE(1010), + [sym_abstract_array_declarator] = STATE(1010), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(835), + [sym_sized_type_specifier] = STATE(835), + [sym_enum_specifier] = STATE(835), + [sym_struct_specifier] = STATE(835), + [sym_union_specifier] = STATE(835), + [sym_parameter_list] = STATE(994), + [sym_parameter_declaration] = STATE(1018), + [sym_macro_type_specifier] = STATE(835), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(1209), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1253), + [anon_sym_RPAREN] = ACTIONS(1255), + [anon_sym_extern] = ACTIONS(33), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(1519), + [anon_sym_STAR] = ACTIONS(1521), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(709), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [sym_comment] = ACTIONS(3), }, [471] = { + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(1523), + [anon_sym_RPAREN] = ACTIONS(1523), + [anon_sym_SEMI] = ACTIONS(1523), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_RBRACE] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(1525), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_RBRACK] = ACTIONS(1523), + [anon_sym_EQ] = ACTIONS(1525), + [anon_sym_COLON] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(1523), + [anon_sym_STAR_EQ] = ACTIONS(1523), + [anon_sym_SLASH_EQ] = ACTIONS(1523), + [anon_sym_PERCENT_EQ] = ACTIONS(1523), + [anon_sym_PLUS_EQ] = ACTIONS(1523), + [anon_sym_DASH_EQ] = ACTIONS(1523), + [anon_sym_LT_LT_EQ] = ACTIONS(1523), + [anon_sym_GT_GT_EQ] = ACTIONS(1523), + [anon_sym_AMP_EQ] = ACTIONS(1523), + [anon_sym_CARET_EQ] = ACTIONS(1523), + [anon_sym_PIPE_EQ] = ACTIONS(1523), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_DASH] = ACTIONS(1525), + [anon_sym_PLUS] = ACTIONS(1525), + [anon_sym_SLASH] = ACTIONS(1525), + [anon_sym_PERCENT] = ACTIONS(1525), + [anon_sym_PIPE_PIPE] = ACTIONS(1523), + [anon_sym_AMP_AMP] = ACTIONS(1523), + [anon_sym_PIPE] = ACTIONS(1525), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_EQ_EQ] = ACTIONS(1523), + [anon_sym_BANG_EQ] = ACTIONS(1523), + [anon_sym_GT] = ACTIONS(1525), + [anon_sym_GT_EQ] = ACTIONS(1523), + [anon_sym_LT_EQ] = ACTIONS(1523), + [anon_sym_LT] = ACTIONS(1525), + [anon_sym_LT_LT] = ACTIONS(1525), + [anon_sym_GT_GT] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(1961), - [anon_sym_COMMA] = ACTIONS(1961), - [anon_sym_COLON] = ACTIONS(1961), - [anon_sym_SEMI] = ACTIONS(1961), - [anon_sym_RPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1961), }, [472] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_RBRACK] = ACTIONS(1959), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [sym_type_qualifier] = STATE(785), + [sym__expression] = STATE(773), + [sym_conditional_expression] = STATE(773), + [sym_assignment_expression] = STATE(773), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(773), + [sym_binary_expression] = STATE(773), + [sym_update_expression] = STATE(773), + [sym_cast_expression] = STATE(773), + [sym_sizeof_expression] = STATE(773), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(773), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(773), + [sym_concatenated_string] = STATE(773), + [sym_string_literal] = STATE(431), + [aux_sym_type_definition_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(911), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(1527), + [anon_sym_RBRACK] = ACTIONS(1529), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_volatile] = ACTIONS(1389), + [anon_sym_restrict] = ACTIONS(1389), + [anon_sym__Atomic] = ACTIONS(1389), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1531), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), }, [473] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1963), - [anon_sym_union] = ACTIONS(1963), - [anon_sym_unsigned] = ACTIONS(1963), - [anon_sym_restrict] = ACTIONS(1963), - [anon_sym_short] = ACTIONS(1963), - [anon_sym_static] = ACTIONS(1963), - [anon_sym_volatile] = ACTIONS(1963), - [anon_sym_register] = ACTIONS(1963), - [anon_sym_extern] = ACTIONS(1963), - [anon_sym_struct] = ACTIONS(1963), - [sym_preproc_directive] = ACTIONS(1963), - [anon_sym_signed] = ACTIONS(1963), - [aux_sym_preproc_if_token1] = ACTIONS(1963), - [anon_sym_long] = ACTIONS(1963), - [anon_sym_enum] = ACTIONS(1963), - [anon_sym_const] = ACTIONS(1963), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(1965), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1963), - [aux_sym_preproc_def_token1] = ACTIONS(1963), - [anon_sym__Atomic] = ACTIONS(1963), - [anon_sym_auto] = ACTIONS(1963), - [sym_primitive_type] = ACTIONS(1963), - [anon_sym_inline] = ACTIONS(1963), - [anon_sym___attribute__] = ACTIONS(1963), - [sym_identifier] = ACTIONS(1963), + [anon_sym_COMMA] = ACTIONS(1535), + [anon_sym_RPAREN] = ACTIONS(1535), + [anon_sym_SEMI] = ACTIONS(1535), + [anon_sym_LPAREN2] = ACTIONS(1535), + [anon_sym_RBRACE] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(1537), + [anon_sym_LBRACK] = ACTIONS(1535), + [anon_sym_RBRACK] = ACTIONS(1535), + [anon_sym_EQ] = ACTIONS(1537), + [anon_sym_COLON] = ACTIONS(1535), + [anon_sym_QMARK] = ACTIONS(1535), + [anon_sym_STAR_EQ] = ACTIONS(1535), + [anon_sym_SLASH_EQ] = ACTIONS(1535), + [anon_sym_PERCENT_EQ] = ACTIONS(1535), + [anon_sym_PLUS_EQ] = ACTIONS(1535), + [anon_sym_DASH_EQ] = ACTIONS(1535), + [anon_sym_LT_LT_EQ] = ACTIONS(1535), + [anon_sym_GT_GT_EQ] = ACTIONS(1535), + [anon_sym_AMP_EQ] = ACTIONS(1535), + [anon_sym_CARET_EQ] = ACTIONS(1535), + [anon_sym_PIPE_EQ] = ACTIONS(1535), + [anon_sym_AMP] = ACTIONS(1537), + [anon_sym_DASH] = ACTIONS(1537), + [anon_sym_PLUS] = ACTIONS(1537), + [anon_sym_SLASH] = ACTIONS(1537), + [anon_sym_PERCENT] = ACTIONS(1537), + [anon_sym_PIPE_PIPE] = ACTIONS(1535), + [anon_sym_AMP_AMP] = ACTIONS(1535), + [anon_sym_PIPE] = ACTIONS(1537), + [anon_sym_CARET] = ACTIONS(1537), + [anon_sym_EQ_EQ] = ACTIONS(1535), + [anon_sym_BANG_EQ] = ACTIONS(1535), + [anon_sym_GT] = ACTIONS(1537), + [anon_sym_GT_EQ] = ACTIONS(1535), + [anon_sym_LT_EQ] = ACTIONS(1535), + [anon_sym_LT] = ACTIONS(1537), + [anon_sym_LT_LT] = ACTIONS(1537), + [anon_sym_GT_GT] = ACTIONS(1537), + [anon_sym_DASH_DASH] = ACTIONS(1535), + [anon_sym_PLUS_PLUS] = ACTIONS(1535), + [anon_sym_DOT] = ACTIONS(1535), + [anon_sym_DASH_GT] = ACTIONS(1535), + [sym_comment] = ACTIONS(3), }, [474] = { + [anon_sym_COMMA] = ACTIONS(1539), + [anon_sym_RPAREN] = ACTIONS(1539), + [anon_sym_SEMI] = ACTIONS(1539), + [anon_sym_LPAREN2] = ACTIONS(1539), + [anon_sym_RBRACE] = ACTIONS(1539), + [anon_sym_STAR] = ACTIONS(1541), + [anon_sym_LBRACK] = ACTIONS(1539), + [anon_sym_RBRACK] = ACTIONS(1539), + [anon_sym_EQ] = ACTIONS(1541), + [anon_sym_COLON] = ACTIONS(1539), + [anon_sym_QMARK] = ACTIONS(1539), + [anon_sym_STAR_EQ] = ACTIONS(1539), + [anon_sym_SLASH_EQ] = ACTIONS(1539), + [anon_sym_PERCENT_EQ] = ACTIONS(1539), + [anon_sym_PLUS_EQ] = ACTIONS(1539), + [anon_sym_DASH_EQ] = ACTIONS(1539), + [anon_sym_LT_LT_EQ] = ACTIONS(1539), + [anon_sym_GT_GT_EQ] = ACTIONS(1539), + [anon_sym_AMP_EQ] = ACTIONS(1539), + [anon_sym_CARET_EQ] = ACTIONS(1539), + [anon_sym_PIPE_EQ] = ACTIONS(1539), + [anon_sym_AMP] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(1541), + [anon_sym_PLUS] = ACTIONS(1541), + [anon_sym_SLASH] = ACTIONS(1541), + [anon_sym_PERCENT] = ACTIONS(1541), + [anon_sym_PIPE_PIPE] = ACTIONS(1539), + [anon_sym_AMP_AMP] = ACTIONS(1539), + [anon_sym_PIPE] = ACTIONS(1541), + [anon_sym_CARET] = ACTIONS(1541), + [anon_sym_EQ_EQ] = ACTIONS(1539), + [anon_sym_BANG_EQ] = ACTIONS(1539), + [anon_sym_GT] = ACTIONS(1541), + [anon_sym_GT_EQ] = ACTIONS(1539), + [anon_sym_LT_EQ] = ACTIONS(1539), + [anon_sym_LT] = ACTIONS(1541), + [anon_sym_LT_LT] = ACTIONS(1541), + [anon_sym_GT_GT] = ACTIONS(1541), + [anon_sym_DASH_DASH] = ACTIONS(1539), + [anon_sym_PLUS_PLUS] = ACTIONS(1539), + [anon_sym_DOT] = ACTIONS(1539), + [anon_sym_DASH_GT] = ACTIONS(1539), [sym_comment] = ACTIONS(3), - [anon_sym_EQ] = ACTIONS(1967), - [anon_sym_DOT] = ACTIONS(1967), - [anon_sym_LBRACK] = ACTIONS(1967), }, [475] = { - [anon_sym_GT_GT] = ACTIONS(1969), - [anon_sym_PERCENT_EQ] = ACTIONS(1971), - [anon_sym_DASH_EQ] = ACTIONS(1971), - [anon_sym_PIPE] = ACTIONS(1969), - [anon_sym_EQ_EQ] = ACTIONS(1971), - [anon_sym_SLASH] = ACTIONS(1969), - [anon_sym_DASH_GT] = ACTIONS(1971), - [anon_sym_LT_LT] = ACTIONS(1969), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_PLUS_EQ] = ACTIONS(1971), - [anon_sym_LT_LT_EQ] = ACTIONS(1971), - [anon_sym_QMARK] = ACTIONS(1971), - [anon_sym_BANG_EQ] = ACTIONS(1971), - [anon_sym_CARET_EQ] = ACTIONS(1971), - [anon_sym_COMMA] = ACTIONS(1971), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT_EQ] = ACTIONS(1971), - [anon_sym_GT] = ACTIONS(1969), - [anon_sym_PIPE_EQ] = ACTIONS(1971), - [anon_sym_RPAREN] = ACTIONS(1971), - [anon_sym_RBRACK] = ACTIONS(1971), - [anon_sym_AMP_EQ] = ACTIONS(1971), - [anon_sym_PERCENT] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(1969), - [anon_sym_EQ] = ACTIONS(1969), - [anon_sym_LPAREN2] = ACTIONS(1971), - [anon_sym_GT_EQ] = ACTIONS(1971), - [anon_sym_RBRACE] = ACTIONS(1971), - [anon_sym_COLON] = ACTIONS(1971), - [anon_sym_STAR_EQ] = ACTIONS(1971), - [anon_sym_PIPE_PIPE] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1969), - [anon_sym_LT_EQ] = ACTIONS(1971), - [anon_sym_STAR] = ACTIONS(1969), - [anon_sym_SLASH_EQ] = ACTIONS(1971), - [anon_sym_AMP_AMP] = ACTIONS(1971), - [anon_sym_SEMI] = ACTIONS(1971), - [anon_sym_CARET] = ACTIONS(1969), - [anon_sym_PLUS] = ACTIONS(1969), - [anon_sym_DOT] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1969), - [anon_sym_LBRACK] = ACTIONS(1971), + [anon_sym_COMMA] = ACTIONS(1543), + [anon_sym_RPAREN] = ACTIONS(1543), + [anon_sym_SEMI] = ACTIONS(1543), + [anon_sym_LPAREN2] = ACTIONS(1543), + [anon_sym_RBRACE] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(1545), + [anon_sym_LBRACK] = ACTIONS(1543), + [anon_sym_RBRACK] = ACTIONS(1543), + [anon_sym_EQ] = ACTIONS(1545), + [anon_sym_COLON] = ACTIONS(1543), + [anon_sym_QMARK] = ACTIONS(1543), + [anon_sym_STAR_EQ] = ACTIONS(1543), + [anon_sym_SLASH_EQ] = ACTIONS(1543), + [anon_sym_PERCENT_EQ] = ACTIONS(1543), + [anon_sym_PLUS_EQ] = ACTIONS(1543), + [anon_sym_DASH_EQ] = ACTIONS(1543), + [anon_sym_LT_LT_EQ] = ACTIONS(1543), + [anon_sym_GT_GT_EQ] = ACTIONS(1543), + [anon_sym_AMP_EQ] = ACTIONS(1543), + [anon_sym_CARET_EQ] = ACTIONS(1543), + [anon_sym_PIPE_EQ] = ACTIONS(1543), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_SLASH] = ACTIONS(1545), + [anon_sym_PERCENT] = ACTIONS(1545), + [anon_sym_PIPE_PIPE] = ACTIONS(1543), + [anon_sym_AMP_AMP] = ACTIONS(1543), + [anon_sym_PIPE] = ACTIONS(1545), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_EQ_EQ] = ACTIONS(1543), + [anon_sym_BANG_EQ] = ACTIONS(1543), + [anon_sym_GT] = ACTIONS(1545), + [anon_sym_GT_EQ] = ACTIONS(1543), + [anon_sym_LT_EQ] = ACTIONS(1543), + [anon_sym_LT] = ACTIONS(1545), + [anon_sym_LT_LT] = ACTIONS(1545), + [anon_sym_GT_GT] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1543), + [anon_sym_PLUS_PLUS] = ACTIONS(1543), + [anon_sym_DOT] = ACTIONS(1543), + [anon_sym_DASH_GT] = ACTIONS(1543), + [sym_comment] = ACTIONS(3), }, [476] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_COMMA] = ACTIONS(1973), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_DASH_GT] = ACTIONS(281), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_RBRACE] = ACTIONS(1973), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [anon_sym_COMMA] = ACTIONS(1183), + [anon_sym_RPAREN] = ACTIONS(1185), + [anon_sym_LPAREN2] = ACTIONS(1188), + [anon_sym_STAR] = ACTIONS(1192), + [anon_sym_LBRACK] = ACTIONS(1185), + [anon_sym_EQ] = ACTIONS(1195), + [anon_sym_const] = ACTIONS(1547), + [anon_sym_volatile] = ACTIONS(1547), + [anon_sym_restrict] = ACTIONS(1547), + [anon_sym__Atomic] = ACTIONS(1547), + [anon_sym_QMARK] = ACTIONS(1183), + [anon_sym_STAR_EQ] = ACTIONS(1199), + [anon_sym_SLASH_EQ] = ACTIONS(1199), + [anon_sym_PERCENT_EQ] = ACTIONS(1199), + [anon_sym_PLUS_EQ] = ACTIONS(1199), + [anon_sym_DASH_EQ] = ACTIONS(1199), + [anon_sym_LT_LT_EQ] = ACTIONS(1199), + [anon_sym_GT_GT_EQ] = ACTIONS(1199), + [anon_sym_AMP_EQ] = ACTIONS(1199), + [anon_sym_CARET_EQ] = ACTIONS(1199), + [anon_sym_PIPE_EQ] = ACTIONS(1199), + [anon_sym_AMP] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1201), + [anon_sym_SLASH] = ACTIONS(1201), + [anon_sym_PERCENT] = ACTIONS(1201), + [anon_sym_PIPE_PIPE] = ACTIONS(1183), + [anon_sym_AMP_AMP] = ACTIONS(1183), + [anon_sym_PIPE] = ACTIONS(1201), + [anon_sym_CARET] = ACTIONS(1201), + [anon_sym_EQ_EQ] = ACTIONS(1183), + [anon_sym_BANG_EQ] = ACTIONS(1183), + [anon_sym_GT] = ACTIONS(1201), + [anon_sym_GT_EQ] = ACTIONS(1183), + [anon_sym_LT_EQ] = ACTIONS(1183), + [anon_sym_LT] = ACTIONS(1201), + [anon_sym_LT_LT] = ACTIONS(1201), + [anon_sym_GT_GT] = ACTIONS(1201), + [anon_sym_DASH_DASH] = ACTIONS(1183), + [anon_sym_PLUS_PLUS] = ACTIONS(1183), + [anon_sym_DOT] = ACTIONS(1183), + [anon_sym_DASH_GT] = ACTIONS(1183), + [sym_comment] = ACTIONS(3), }, [477] = { - [anon_sym_COMMA] = ACTIONS(1973), - [anon_sym_RBRACE] = ACTIONS(1973), + [anon_sym_COMMA] = ACTIONS(1549), + [anon_sym_RPAREN] = ACTIONS(1549), + [anon_sym_SEMI] = ACTIONS(1549), + [anon_sym_LPAREN2] = ACTIONS(1549), + [anon_sym_RBRACE] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1549), + [anon_sym_RBRACK] = ACTIONS(1549), + [anon_sym_EQ] = ACTIONS(1551), + [anon_sym_COLON] = ACTIONS(1549), + [anon_sym_QMARK] = ACTIONS(1549), + [anon_sym_STAR_EQ] = ACTIONS(1549), + [anon_sym_SLASH_EQ] = ACTIONS(1549), + [anon_sym_PERCENT_EQ] = ACTIONS(1549), + [anon_sym_PLUS_EQ] = ACTIONS(1549), + [anon_sym_DASH_EQ] = ACTIONS(1549), + [anon_sym_LT_LT_EQ] = ACTIONS(1549), + [anon_sym_GT_GT_EQ] = ACTIONS(1549), + [anon_sym_AMP_EQ] = ACTIONS(1549), + [anon_sym_CARET_EQ] = ACTIONS(1549), + [anon_sym_PIPE_EQ] = ACTIONS(1549), + [anon_sym_AMP] = ACTIONS(1551), + [anon_sym_DASH] = ACTIONS(1551), + [anon_sym_PLUS] = ACTIONS(1551), + [anon_sym_SLASH] = ACTIONS(1551), + [anon_sym_PERCENT] = ACTIONS(1551), + [anon_sym_PIPE_PIPE] = ACTIONS(1549), + [anon_sym_AMP_AMP] = ACTIONS(1549), + [anon_sym_PIPE] = ACTIONS(1551), + [anon_sym_CARET] = ACTIONS(1551), + [anon_sym_EQ_EQ] = ACTIONS(1549), + [anon_sym_BANG_EQ] = ACTIONS(1549), + [anon_sym_GT] = ACTIONS(1551), + [anon_sym_GT_EQ] = ACTIONS(1549), + [anon_sym_LT_EQ] = ACTIONS(1549), + [anon_sym_LT] = ACTIONS(1551), + [anon_sym_LT_LT] = ACTIONS(1551), + [anon_sym_GT_GT] = ACTIONS(1551), + [anon_sym_DASH_DASH] = ACTIONS(1549), + [anon_sym_PLUS_PLUS] = ACTIONS(1549), + [anon_sym_DOT] = ACTIONS(1549), + [anon_sym_DASH_GT] = ACTIONS(1549), [sym_comment] = ACTIONS(3), }, [478] = { - [sym__expression] = STATE(476), - [sym_binary_expression] = STATE(476), - [sym_update_expression] = STATE(476), - [sym_call_expression] = STATE(36), - [sym_initializer_pair] = STATE(477), - [sym_subscript_designator] = STATE(336), - [sym_conditional_expression] = STATE(476), - [sym_assignment_expression] = STATE(476), - [sym_cast_expression] = STATE(476), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(476), - [sym_field_designator] = STATE(336), - [sym_char_literal] = STATE(476), - [aux_sym_initializer_pair_repeat1] = STATE(336), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(476), - [sym_sizeof_expression] = STATE(476), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_initializer_list] = STATE(477), - [sym_concatenated_string] = STATE(476), - [sym_string_literal] = STATE(41), - [anon_sym_LBRACE] = ACTIONS(886), - [anon_sym_LBRACK] = ACTIONS(1244), - [sym_true] = ACTIONS(1852), - [sym_null] = ACTIONS(1852), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(1975), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(1856), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(1852), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(1254), - [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_COMMA] = ACTIONS(1553), + [anon_sym_RPAREN] = ACTIONS(1553), + [anon_sym_SEMI] = ACTIONS(1553), + [anon_sym_LPAREN2] = ACTIONS(1553), + [anon_sym_RBRACE] = ACTIONS(1553), + [anon_sym_STAR] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1553), + [anon_sym_RBRACK] = ACTIONS(1553), + [anon_sym_EQ] = ACTIONS(1555), + [anon_sym_COLON] = ACTIONS(1553), + [anon_sym_QMARK] = ACTIONS(1553), + [anon_sym_STAR_EQ] = ACTIONS(1553), + [anon_sym_SLASH_EQ] = ACTIONS(1553), + [anon_sym_PERCENT_EQ] = ACTIONS(1553), + [anon_sym_PLUS_EQ] = ACTIONS(1553), + [anon_sym_DASH_EQ] = ACTIONS(1553), + [anon_sym_LT_LT_EQ] = ACTIONS(1553), + [anon_sym_GT_GT_EQ] = ACTIONS(1553), + [anon_sym_AMP_EQ] = ACTIONS(1553), + [anon_sym_CARET_EQ] = ACTIONS(1553), + [anon_sym_PIPE_EQ] = ACTIONS(1553), + [anon_sym_AMP] = ACTIONS(1555), + [anon_sym_DASH] = ACTIONS(1555), + [anon_sym_PLUS] = ACTIONS(1555), + [anon_sym_SLASH] = ACTIONS(1555), + [anon_sym_PERCENT] = ACTIONS(1555), + [anon_sym_PIPE_PIPE] = ACTIONS(1553), + [anon_sym_AMP_AMP] = ACTIONS(1553), + [anon_sym_PIPE] = ACTIONS(1555), + [anon_sym_CARET] = ACTIONS(1555), + [anon_sym_EQ_EQ] = ACTIONS(1553), + [anon_sym_BANG_EQ] = ACTIONS(1553), + [anon_sym_GT] = ACTIONS(1555), + [anon_sym_GT_EQ] = ACTIONS(1553), + [anon_sym_LT_EQ] = ACTIONS(1553), + [anon_sym_LT] = ACTIONS(1555), + [anon_sym_LT_LT] = ACTIONS(1555), + [anon_sym_GT_GT] = ACTIONS(1555), + [anon_sym_DASH_DASH] = ACTIONS(1553), + [anon_sym_PLUS_PLUS] = ACTIONS(1553), + [anon_sym_DOT] = ACTIONS(1553), + [anon_sym_DASH_GT] = ACTIONS(1553), + [sym_comment] = ACTIONS(3), }, [479] = { - [aux_sym_initializer_list_repeat1] = STATE(479), - [anon_sym_COMMA] = ACTIONS(1977), - [anon_sym_RBRACE] = ACTIONS(1973), + [anon_sym_COMMA] = ACTIONS(1557), + [anon_sym_RPAREN] = ACTIONS(1557), + [anon_sym_SEMI] = ACTIONS(1557), + [anon_sym_LPAREN2] = ACTIONS(1557), + [anon_sym_RBRACE] = ACTIONS(1557), + [anon_sym_STAR] = ACTIONS(1559), + [anon_sym_LBRACK] = ACTIONS(1557), + [anon_sym_RBRACK] = ACTIONS(1557), + [anon_sym_EQ] = ACTIONS(1559), + [anon_sym_COLON] = ACTIONS(1557), + [anon_sym_QMARK] = ACTIONS(1557), + [anon_sym_STAR_EQ] = ACTIONS(1557), + [anon_sym_SLASH_EQ] = ACTIONS(1557), + [anon_sym_PERCENT_EQ] = ACTIONS(1557), + [anon_sym_PLUS_EQ] = ACTIONS(1557), + [anon_sym_DASH_EQ] = ACTIONS(1557), + [anon_sym_LT_LT_EQ] = ACTIONS(1557), + [anon_sym_GT_GT_EQ] = ACTIONS(1557), + [anon_sym_AMP_EQ] = ACTIONS(1557), + [anon_sym_CARET_EQ] = ACTIONS(1557), + [anon_sym_PIPE_EQ] = ACTIONS(1557), + [anon_sym_AMP] = ACTIONS(1559), + [anon_sym_DASH] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(1559), + [anon_sym_SLASH] = ACTIONS(1559), + [anon_sym_PERCENT] = ACTIONS(1559), + [anon_sym_PIPE_PIPE] = ACTIONS(1557), + [anon_sym_AMP_AMP] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(1559), + [anon_sym_CARET] = ACTIONS(1559), + [anon_sym_EQ_EQ] = ACTIONS(1557), + [anon_sym_BANG_EQ] = ACTIONS(1557), + [anon_sym_GT] = ACTIONS(1559), + [anon_sym_GT_EQ] = ACTIONS(1557), + [anon_sym_LT_EQ] = ACTIONS(1557), + [anon_sym_LT] = ACTIONS(1559), + [anon_sym_LT_LT] = ACTIONS(1559), + [anon_sym_GT_GT] = ACTIONS(1559), + [anon_sym_DASH_DASH] = ACTIONS(1557), + [anon_sym_PLUS_PLUS] = ACTIONS(1557), + [anon_sym_DOT] = ACTIONS(1557), + [anon_sym_DASH_GT] = ACTIONS(1557), + [sym_comment] = ACTIONS(3), + }, + [480] = { + [anon_sym_COMMA] = ACTIONS(1561), + [anon_sym_RPAREN] = ACTIONS(1561), + [anon_sym_SEMI] = ACTIONS(1561), + [anon_sym_LPAREN2] = ACTIONS(1561), + [anon_sym_RBRACE] = ACTIONS(1561), + [anon_sym_STAR] = ACTIONS(1563), + [anon_sym_LBRACK] = ACTIONS(1561), + [anon_sym_RBRACK] = ACTIONS(1561), + [anon_sym_EQ] = ACTIONS(1563), + [anon_sym_COLON] = ACTIONS(1561), + [anon_sym_QMARK] = ACTIONS(1561), + [anon_sym_STAR_EQ] = ACTIONS(1561), + [anon_sym_SLASH_EQ] = ACTIONS(1561), + [anon_sym_PERCENT_EQ] = ACTIONS(1561), + [anon_sym_PLUS_EQ] = ACTIONS(1561), + [anon_sym_DASH_EQ] = ACTIONS(1561), + [anon_sym_LT_LT_EQ] = ACTIONS(1561), + [anon_sym_GT_GT_EQ] = ACTIONS(1561), + [anon_sym_AMP_EQ] = ACTIONS(1561), + [anon_sym_CARET_EQ] = ACTIONS(1561), + [anon_sym_PIPE_EQ] = ACTIONS(1561), + [anon_sym_AMP] = ACTIONS(1563), + [anon_sym_DASH] = ACTIONS(1563), + [anon_sym_PLUS] = ACTIONS(1563), + [anon_sym_SLASH] = ACTIONS(1563), + [anon_sym_PERCENT] = ACTIONS(1563), + [anon_sym_PIPE_PIPE] = ACTIONS(1561), + [anon_sym_AMP_AMP] = ACTIONS(1561), + [anon_sym_PIPE] = ACTIONS(1563), + [anon_sym_CARET] = ACTIONS(1563), + [anon_sym_EQ_EQ] = ACTIONS(1561), + [anon_sym_BANG_EQ] = ACTIONS(1561), + [anon_sym_GT] = ACTIONS(1563), + [anon_sym_GT_EQ] = ACTIONS(1561), + [anon_sym_LT_EQ] = ACTIONS(1561), + [anon_sym_LT] = ACTIONS(1563), + [anon_sym_LT_LT] = ACTIONS(1563), + [anon_sym_GT_GT] = ACTIONS(1563), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_DOT] = ACTIONS(1561), + [anon_sym_DASH_GT] = ACTIONS(1561), [sym_comment] = ACTIONS(3), }, - [480] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_COMMA] = ACTIONS(1980), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_DASH_GT] = ACTIONS(281), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_RBRACE] = ACTIONS(1980), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), - }, [481] = { - [anon_sym_COMMA] = ACTIONS(1980), - [anon_sym_RBRACE] = ACTIONS(1980), + [anon_sym_COMMA] = ACTIONS(1565), + [anon_sym_RPAREN] = ACTIONS(1565), + [anon_sym_SEMI] = ACTIONS(1565), + [anon_sym_LPAREN2] = ACTIONS(1565), + [anon_sym_RBRACE] = ACTIONS(1565), + [anon_sym_STAR] = ACTIONS(1567), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_RBRACK] = ACTIONS(1565), + [anon_sym_EQ] = ACTIONS(1567), + [anon_sym_COLON] = ACTIONS(1565), + [anon_sym_QMARK] = ACTIONS(1565), + [anon_sym_STAR_EQ] = ACTIONS(1565), + [anon_sym_SLASH_EQ] = ACTIONS(1565), + [anon_sym_PERCENT_EQ] = ACTIONS(1565), + [anon_sym_PLUS_EQ] = ACTIONS(1565), + [anon_sym_DASH_EQ] = ACTIONS(1565), + [anon_sym_LT_LT_EQ] = ACTIONS(1565), + [anon_sym_GT_GT_EQ] = ACTIONS(1565), + [anon_sym_AMP_EQ] = ACTIONS(1565), + [anon_sym_CARET_EQ] = ACTIONS(1565), + [anon_sym_PIPE_EQ] = ACTIONS(1565), + [anon_sym_AMP] = ACTIONS(1567), + [anon_sym_DASH] = ACTIONS(1567), + [anon_sym_PLUS] = ACTIONS(1567), + [anon_sym_SLASH] = ACTIONS(1567), + [anon_sym_PERCENT] = ACTIONS(1567), + [anon_sym_PIPE_PIPE] = ACTIONS(1565), + [anon_sym_AMP_AMP] = ACTIONS(1565), + [anon_sym_PIPE] = ACTIONS(1567), + [anon_sym_CARET] = ACTIONS(1567), + [anon_sym_EQ_EQ] = ACTIONS(1565), + [anon_sym_BANG_EQ] = ACTIONS(1565), + [anon_sym_GT] = ACTIONS(1567), + [anon_sym_GT_EQ] = ACTIONS(1565), + [anon_sym_LT_EQ] = ACTIONS(1565), + [anon_sym_LT] = ACTIONS(1567), + [anon_sym_LT_LT] = ACTIONS(1567), + [anon_sym_GT_GT] = ACTIONS(1567), + [anon_sym_DASH_DASH] = ACTIONS(1565), + [anon_sym_PLUS_PLUS] = ACTIONS(1565), + [anon_sym_DOT] = ACTIONS(1565), + [anon_sym_DASH_GT] = ACTIONS(1565), [sym_comment] = ACTIONS(3), }, [482] = { + [anon_sym_COMMA] = ACTIONS(1569), + [anon_sym_RPAREN] = ACTIONS(1569), + [anon_sym_SEMI] = ACTIONS(1569), + [anon_sym_LPAREN2] = ACTIONS(1569), + [anon_sym_RBRACE] = ACTIONS(1569), + [anon_sym_STAR] = ACTIONS(1571), + [anon_sym_LBRACK] = ACTIONS(1569), + [anon_sym_RBRACK] = ACTIONS(1569), + [anon_sym_EQ] = ACTIONS(1571), + [anon_sym_COLON] = ACTIONS(1569), + [anon_sym_QMARK] = ACTIONS(1569), + [anon_sym_STAR_EQ] = ACTIONS(1569), + [anon_sym_SLASH_EQ] = ACTIONS(1569), + [anon_sym_PERCENT_EQ] = ACTIONS(1569), + [anon_sym_PLUS_EQ] = ACTIONS(1569), + [anon_sym_DASH_EQ] = ACTIONS(1569), + [anon_sym_LT_LT_EQ] = ACTIONS(1569), + [anon_sym_GT_GT_EQ] = ACTIONS(1569), + [anon_sym_AMP_EQ] = ACTIONS(1569), + [anon_sym_CARET_EQ] = ACTIONS(1569), + [anon_sym_PIPE_EQ] = ACTIONS(1569), + [anon_sym_AMP] = ACTIONS(1571), + [anon_sym_DASH] = ACTIONS(1571), + [anon_sym_PLUS] = ACTIONS(1571), + [anon_sym_SLASH] = ACTIONS(1571), + [anon_sym_PERCENT] = ACTIONS(1571), + [anon_sym_PIPE_PIPE] = ACTIONS(1569), + [anon_sym_AMP_AMP] = ACTIONS(1569), + [anon_sym_PIPE] = ACTIONS(1571), + [anon_sym_CARET] = ACTIONS(1571), + [anon_sym_EQ_EQ] = ACTIONS(1569), + [anon_sym_BANG_EQ] = ACTIONS(1569), + [anon_sym_GT] = ACTIONS(1571), + [anon_sym_GT_EQ] = ACTIONS(1569), + [anon_sym_LT_EQ] = ACTIONS(1569), + [anon_sym_LT] = ACTIONS(1571), + [anon_sym_LT_LT] = ACTIONS(1571), + [anon_sym_GT_GT] = ACTIONS(1571), + [anon_sym_DASH_DASH] = ACTIONS(1569), + [anon_sym_PLUS_PLUS] = ACTIONS(1569), + [anon_sym_DOT] = ACTIONS(1569), + [anon_sym_DASH_GT] = ACTIONS(1569), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(1982), - [anon_sym_LPAREN2] = ACTIONS(1982), - [anon_sym_COMMA] = ACTIONS(1982), - [anon_sym_LBRACK] = ACTIONS(1982), }, [483] = { - [anon_sym_LBRACK] = ACTIONS(1984), + [anon_sym_COMMA] = ACTIONS(1573), + [anon_sym_RPAREN] = ACTIONS(1573), + [anon_sym_SEMI] = ACTIONS(1573), + [anon_sym_LPAREN2] = ACTIONS(1573), + [anon_sym_RBRACE] = ACTIONS(1573), + [anon_sym_STAR] = ACTIONS(1575), + [anon_sym_LBRACK] = ACTIONS(1573), + [anon_sym_RBRACK] = ACTIONS(1573), + [anon_sym_EQ] = ACTIONS(1575), + [anon_sym_COLON] = ACTIONS(1573), + [anon_sym_QMARK] = ACTIONS(1573), + [anon_sym_STAR_EQ] = ACTIONS(1573), + [anon_sym_SLASH_EQ] = ACTIONS(1573), + [anon_sym_PERCENT_EQ] = ACTIONS(1573), + [anon_sym_PLUS_EQ] = ACTIONS(1573), + [anon_sym_DASH_EQ] = ACTIONS(1573), + [anon_sym_LT_LT_EQ] = ACTIONS(1573), + [anon_sym_GT_GT_EQ] = ACTIONS(1573), + [anon_sym_AMP_EQ] = ACTIONS(1573), + [anon_sym_CARET_EQ] = ACTIONS(1573), + [anon_sym_PIPE_EQ] = ACTIONS(1573), + [anon_sym_AMP] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1575), + [anon_sym_SLASH] = ACTIONS(1575), + [anon_sym_PERCENT] = ACTIONS(1575), + [anon_sym_PIPE_PIPE] = ACTIONS(1573), + [anon_sym_AMP_AMP] = ACTIONS(1573), + [anon_sym_PIPE] = ACTIONS(1575), + [anon_sym_CARET] = ACTIONS(1575), + [anon_sym_EQ_EQ] = ACTIONS(1573), + [anon_sym_BANG_EQ] = ACTIONS(1573), + [anon_sym_GT] = ACTIONS(1575), + [anon_sym_GT_EQ] = ACTIONS(1573), + [anon_sym_LT_EQ] = ACTIONS(1573), + [anon_sym_LT] = ACTIONS(1575), + [anon_sym_LT_LT] = ACTIONS(1575), + [anon_sym_GT_GT] = ACTIONS(1575), + [anon_sym_DASH_DASH] = ACTIONS(1573), + [anon_sym_PLUS_PLUS] = ACTIONS(1573), + [anon_sym_DOT] = ACTIONS(1573), + [anon_sym_DASH_GT] = ACTIONS(1573), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(1984), - [anon_sym_LPAREN2] = ACTIONS(1984), - [anon_sym_COMMA] = ACTIONS(1984), - [anon_sym_SEMI] = ACTIONS(1984), }, [484] = { - [anon_sym_case] = ACTIONS(1986), - [sym_true] = ACTIONS(1986), - [anon_sym_restrict] = ACTIONS(1986), - [sym_null] = ACTIONS(1986), - [anon_sym_goto] = ACTIONS(1986), - [anon_sym_const] = ACTIONS(1986), - [anon_sym_typedef] = ACTIONS(1986), - [anon_sym_DASH_DASH] = ACTIONS(1988), - [anon_sym_default] = ACTIONS(1986), - [anon_sym__Atomic] = ACTIONS(1986), - [sym_identifier] = ACTIONS(1986), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1986), - [sym_number_literal] = ACTIONS(1988), - [anon_sym_volatile] = ACTIONS(1986), - [anon_sym_SQUOTE] = ACTIONS(1988), - [anon_sym_extern] = ACTIONS(1986), - [anon_sym_PLUS_PLUS] = ACTIONS(1988), - [anon_sym_struct] = ACTIONS(1986), - [anon_sym_signed] = ACTIONS(1986), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1986), - [anon_sym_while] = ACTIONS(1986), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1986), - [anon_sym_L_SQUOTE] = ACTIONS(1988), - [anon_sym___attribute__] = ACTIONS(1986), - [anon_sym_sizeof] = ACTIONS(1986), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_union] = ACTIONS(1986), - [anon_sym_unsigned] = ACTIONS(1986), - [anon_sym_short] = ACTIONS(1986), - [anon_sym_do] = ACTIONS(1986), - [sym_preproc_directive] = ACTIONS(1986), - [anon_sym_AMP] = ACTIONS(1988), - [aux_sym_preproc_if_token1] = ACTIONS(1986), - [anon_sym_TILDE] = ACTIONS(1988), - [anon_sym_L_DQUOTE] = ACTIONS(1988), - [anon_sym_LPAREN2] = ACTIONS(1988), - [anon_sym_RBRACE] = ACTIONS(1988), - [anon_sym_else] = ACTIONS(1986), - [sym_primitive_type] = ACTIONS(1986), - [anon_sym_for] = ACTIONS(1986), - [anon_sym_break] = ACTIONS(1986), - [anon_sym_BANG] = ACTIONS(1988), - [aux_sym_preproc_include_token1] = ACTIONS(1986), - [anon_sym_DASH] = ACTIONS(1986), - [anon_sym_static] = ACTIONS(1986), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_register] = ACTIONS(1986), - [anon_sym_STAR] = ACTIONS(1988), - [anon_sym_if] = ACTIONS(1986), - [anon_sym_switch] = ACTIONS(1986), - [anon_sym_enum] = ACTIONS(1986), - [sym_false] = ACTIONS(1986), - [ts_builtin_sym_end] = ACTIONS(1988), - [anon_sym_return] = ACTIONS(1986), - [anon_sym_continue] = ACTIONS(1986), - [anon_sym_SEMI] = ACTIONS(1988), - [aux_sym_preproc_def_token1] = ACTIONS(1986), - [anon_sym_PLUS] = ACTIONS(1986), - [anon_sym_auto] = ACTIONS(1986), - [anon_sym_inline] = ACTIONS(1986), + [anon_sym_COMMA] = ACTIONS(1183), + [anon_sym_RPAREN] = ACTIONS(1183), + [anon_sym_SEMI] = ACTIONS(1183), + [anon_sym_LPAREN2] = ACTIONS(1183), + [anon_sym_RBRACE] = ACTIONS(1183), + [anon_sym_STAR] = ACTIONS(1201), + [anon_sym_LBRACK] = ACTIONS(1183), + [anon_sym_RBRACK] = ACTIONS(1183), + [anon_sym_EQ] = ACTIONS(1195), + [anon_sym_COLON] = ACTIONS(1183), + [anon_sym_QMARK] = ACTIONS(1183), + [anon_sym_STAR_EQ] = ACTIONS(1199), + [anon_sym_SLASH_EQ] = ACTIONS(1199), + [anon_sym_PERCENT_EQ] = ACTIONS(1199), + [anon_sym_PLUS_EQ] = ACTIONS(1199), + [anon_sym_DASH_EQ] = ACTIONS(1199), + [anon_sym_LT_LT_EQ] = ACTIONS(1199), + [anon_sym_GT_GT_EQ] = ACTIONS(1199), + [anon_sym_AMP_EQ] = ACTIONS(1199), + [anon_sym_CARET_EQ] = ACTIONS(1199), + [anon_sym_PIPE_EQ] = ACTIONS(1199), + [anon_sym_AMP] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1201), + [anon_sym_SLASH] = ACTIONS(1201), + [anon_sym_PERCENT] = ACTIONS(1201), + [anon_sym_PIPE_PIPE] = ACTIONS(1183), + [anon_sym_AMP_AMP] = ACTIONS(1183), + [anon_sym_PIPE] = ACTIONS(1201), + [anon_sym_CARET] = ACTIONS(1201), + [anon_sym_EQ_EQ] = ACTIONS(1183), + [anon_sym_BANG_EQ] = ACTIONS(1183), + [anon_sym_GT] = ACTIONS(1201), + [anon_sym_GT_EQ] = ACTIONS(1183), + [anon_sym_LT_EQ] = ACTIONS(1183), + [anon_sym_LT] = ACTIONS(1201), + [anon_sym_LT_LT] = ACTIONS(1201), + [anon_sym_GT_GT] = ACTIONS(1201), + [anon_sym_DASH_DASH] = ACTIONS(1183), + [anon_sym_PLUS_PLUS] = ACTIONS(1183), + [anon_sym_DOT] = ACTIONS(1183), + [anon_sym_DASH_GT] = ACTIONS(1183), + [sym_comment] = ACTIONS(3), }, [485] = { - [anon_sym_case] = ACTIONS(1990), - [sym_true] = ACTIONS(1990), - [anon_sym_restrict] = ACTIONS(1990), - [sym_null] = ACTIONS(1990), - [anon_sym_goto] = ACTIONS(1990), - [anon_sym_const] = ACTIONS(1990), - [anon_sym_typedef] = ACTIONS(1990), - [anon_sym_DASH_DASH] = ACTIONS(1992), - [anon_sym_default] = ACTIONS(1990), - [anon_sym__Atomic] = ACTIONS(1990), - [sym_identifier] = ACTIONS(1990), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1990), - [sym_number_literal] = ACTIONS(1992), - [anon_sym_volatile] = ACTIONS(1990), - [anon_sym_SQUOTE] = ACTIONS(1992), - [anon_sym_extern] = ACTIONS(1990), - [anon_sym_PLUS_PLUS] = ACTIONS(1992), - [anon_sym_struct] = ACTIONS(1990), - [anon_sym_signed] = ACTIONS(1990), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1990), - [anon_sym_while] = ACTIONS(1990), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1990), - [anon_sym_L_SQUOTE] = ACTIONS(1992), - [anon_sym___attribute__] = ACTIONS(1990), - [anon_sym_sizeof] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1992), - [anon_sym_union] = ACTIONS(1990), - [anon_sym_unsigned] = ACTIONS(1990), - [anon_sym_short] = ACTIONS(1990), - [anon_sym_do] = ACTIONS(1990), - [sym_preproc_directive] = ACTIONS(1990), - [anon_sym_AMP] = ACTIONS(1992), - [aux_sym_preproc_if_token1] = ACTIONS(1990), - [anon_sym_TILDE] = ACTIONS(1992), - [anon_sym_L_DQUOTE] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(1992), - [anon_sym_RBRACE] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(1990), - [sym_primitive_type] = ACTIONS(1990), - [anon_sym_for] = ACTIONS(1990), - [anon_sym_break] = ACTIONS(1990), - [anon_sym_BANG] = ACTIONS(1992), - [aux_sym_preproc_include_token1] = ACTIONS(1990), - [anon_sym_DASH] = ACTIONS(1990), - [anon_sym_static] = ACTIONS(1990), - [anon_sym_DQUOTE] = ACTIONS(1992), - [anon_sym_register] = ACTIONS(1990), - [anon_sym_STAR] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1990), - [anon_sym_switch] = ACTIONS(1990), - [anon_sym_enum] = ACTIONS(1990), - [sym_false] = ACTIONS(1990), - [ts_builtin_sym_end] = ACTIONS(1992), - [anon_sym_return] = ACTIONS(1990), - [anon_sym_continue] = ACTIONS(1990), - [anon_sym_SEMI] = ACTIONS(1992), - [aux_sym_preproc_def_token1] = ACTIONS(1990), - [anon_sym_PLUS] = ACTIONS(1990), - [anon_sym_auto] = ACTIONS(1990), - [anon_sym_inline] = ACTIONS(1990), + [anon_sym_COMMA] = ACTIONS(1577), + [anon_sym_RPAREN] = ACTIONS(1577), + [anon_sym_SEMI] = ACTIONS(1577), + [anon_sym_LPAREN2] = ACTIONS(1577), + [anon_sym_RBRACE] = ACTIONS(1577), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1577), + [anon_sym_RBRACK] = ACTIONS(1577), + [anon_sym_EQ] = ACTIONS(1579), + [anon_sym_COLON] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(1577), + [anon_sym_STAR_EQ] = ACTIONS(1577), + [anon_sym_SLASH_EQ] = ACTIONS(1577), + [anon_sym_PERCENT_EQ] = ACTIONS(1577), + [anon_sym_PLUS_EQ] = ACTIONS(1577), + [anon_sym_DASH_EQ] = ACTIONS(1577), + [anon_sym_LT_LT_EQ] = ACTIONS(1577), + [anon_sym_GT_GT_EQ] = ACTIONS(1577), + [anon_sym_AMP_EQ] = ACTIONS(1577), + [anon_sym_CARET_EQ] = ACTIONS(1577), + [anon_sym_PIPE_EQ] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_PERCENT] = ACTIONS(1579), + [anon_sym_PIPE_PIPE] = ACTIONS(1577), + [anon_sym_AMP_AMP] = ACTIONS(1577), + [anon_sym_PIPE] = ACTIONS(1579), + [anon_sym_CARET] = ACTIONS(1579), + [anon_sym_EQ_EQ] = ACTIONS(1577), + [anon_sym_BANG_EQ] = ACTIONS(1577), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1577), + [anon_sym_LT_EQ] = ACTIONS(1577), + [anon_sym_LT] = ACTIONS(1579), + [anon_sym_LT_LT] = ACTIONS(1579), + [anon_sym_GT_GT] = ACTIONS(1579), + [anon_sym_DASH_DASH] = ACTIONS(1577), + [anon_sym_PLUS_PLUS] = ACTIONS(1577), + [anon_sym_DOT] = ACTIONS(1577), + [anon_sym_DASH_GT] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), }, [486] = { - [sym_if_statement] = STATE(501), - [sym_do_statement] = STATE(501), - [sym_for_statement] = STATE(501), - [sym__expression] = STATE(34), - [sym_comma_expression] = STATE(35), - [sym_binary_expression] = STATE(34), - [sym_update_expression] = STATE(34), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(501), - [sym_return_statement] = STATE(501), - [sym_break_statement] = STATE(501), - [sym_conditional_expression] = STATE(34), - [sym_assignment_expression] = STATE(34), - [sym_cast_expression] = STATE(34), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(34), - [sym_char_literal] = STATE(34), - [sym_labeled_statement] = STATE(501), - [sym_while_statement] = STATE(501), - [sym_continue_statement] = STATE(501), - [sym_goto_statement] = STATE(501), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(34), - [sym_sizeof_expression] = STATE(34), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(34), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(501), - [sym_expression_statement] = STATE(501), - [anon_sym_LBRACE] = ACTIONS(35), - [sym_true] = ACTIONS(5), - [sym_null] = ACTIONS(5), - [anon_sym_do] = ACTIONS(39), - [anon_sym_goto] = ACTIONS(9), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(477), - [anon_sym_for] = ACTIONS(55), - [anon_sym_break] = ACTIONS(57), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(65), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(67), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(5), - [anon_sym_return] = ACTIONS(73), - [anon_sym_while] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_SEMI] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_COMMA] = ACTIONS(1581), + [anon_sym_RPAREN] = ACTIONS(1581), + [anon_sym_SEMI] = ACTIONS(1581), + [anon_sym_LPAREN2] = ACTIONS(1581), + [anon_sym_RBRACE] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(1583), + [anon_sym_LBRACK] = ACTIONS(1581), + [anon_sym_RBRACK] = ACTIONS(1581), + [anon_sym_EQ] = ACTIONS(1583), + [anon_sym_COLON] = ACTIONS(1581), + [anon_sym_QMARK] = ACTIONS(1581), + [anon_sym_STAR_EQ] = ACTIONS(1581), + [anon_sym_SLASH_EQ] = ACTIONS(1581), + [anon_sym_PERCENT_EQ] = ACTIONS(1581), + [anon_sym_PLUS_EQ] = ACTIONS(1581), + [anon_sym_DASH_EQ] = ACTIONS(1581), + [anon_sym_LT_LT_EQ] = ACTIONS(1581), + [anon_sym_GT_GT_EQ] = ACTIONS(1581), + [anon_sym_AMP_EQ] = ACTIONS(1581), + [anon_sym_CARET_EQ] = ACTIONS(1581), + [anon_sym_PIPE_EQ] = ACTIONS(1581), + [anon_sym_AMP] = ACTIONS(1583), + [anon_sym_DASH] = ACTIONS(1583), + [anon_sym_PLUS] = ACTIONS(1583), + [anon_sym_SLASH] = ACTIONS(1583), + [anon_sym_PERCENT] = ACTIONS(1583), + [anon_sym_PIPE_PIPE] = ACTIONS(1581), + [anon_sym_AMP_AMP] = ACTIONS(1581), + [anon_sym_PIPE] = ACTIONS(1583), + [anon_sym_CARET] = ACTIONS(1583), + [anon_sym_EQ_EQ] = ACTIONS(1581), + [anon_sym_BANG_EQ] = ACTIONS(1581), + [anon_sym_GT] = ACTIONS(1583), + [anon_sym_GT_EQ] = ACTIONS(1581), + [anon_sym_LT_EQ] = ACTIONS(1581), + [anon_sym_LT] = ACTIONS(1583), + [anon_sym_LT_LT] = ACTIONS(1583), + [anon_sym_GT_GT] = ACTIONS(1583), + [anon_sym_DASH_DASH] = ACTIONS(1581), + [anon_sym_PLUS_PLUS] = ACTIONS(1581), + [anon_sym_DOT] = ACTIONS(1581), + [anon_sym_DASH_GT] = ACTIONS(1581), + [sym_comment] = ACTIONS(3), }, [487] = { - [anon_sym_case] = ACTIONS(1994), - [sym_true] = ACTIONS(1994), - [anon_sym_restrict] = ACTIONS(1994), - [sym_null] = ACTIONS(1994), - [anon_sym_goto] = ACTIONS(1994), - [anon_sym_const] = ACTIONS(1994), - [anon_sym_typedef] = ACTIONS(1994), - [anon_sym_DASH_DASH] = ACTIONS(1996), - [anon_sym_default] = ACTIONS(1994), - [anon_sym__Atomic] = ACTIONS(1994), - [sym_identifier] = ACTIONS(1994), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1994), - [sym_number_literal] = ACTIONS(1996), - [anon_sym_volatile] = ACTIONS(1994), - [anon_sym_SQUOTE] = ACTIONS(1996), - [anon_sym_extern] = ACTIONS(1994), - [anon_sym_PLUS_PLUS] = ACTIONS(1996), - [anon_sym_struct] = ACTIONS(1994), - [anon_sym_signed] = ACTIONS(1994), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1994), - [anon_sym_while] = ACTIONS(1994), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1994), - [anon_sym_L_SQUOTE] = ACTIONS(1996), - [anon_sym___attribute__] = ACTIONS(1994), - [anon_sym_sizeof] = ACTIONS(1994), - [anon_sym_LBRACE] = ACTIONS(1996), - [anon_sym_union] = ACTIONS(1994), - [anon_sym_unsigned] = ACTIONS(1994), - [anon_sym_short] = ACTIONS(1994), - [anon_sym_do] = ACTIONS(1994), - [sym_preproc_directive] = ACTIONS(1994), - [anon_sym_AMP] = ACTIONS(1996), - [aux_sym_preproc_if_token1] = ACTIONS(1994), - [anon_sym_TILDE] = ACTIONS(1996), - [anon_sym_L_DQUOTE] = ACTIONS(1996), - [anon_sym_LPAREN2] = ACTIONS(1996), - [anon_sym_RBRACE] = ACTIONS(1996), - [anon_sym_else] = ACTIONS(1994), - [sym_primitive_type] = ACTIONS(1994), - [anon_sym_for] = ACTIONS(1994), - [anon_sym_break] = ACTIONS(1994), - [anon_sym_BANG] = ACTIONS(1996), - [aux_sym_preproc_include_token1] = ACTIONS(1994), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_static] = ACTIONS(1994), - [anon_sym_DQUOTE] = ACTIONS(1996), - [anon_sym_register] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(1996), - [anon_sym_if] = ACTIONS(1994), - [anon_sym_switch] = ACTIONS(1994), - [anon_sym_enum] = ACTIONS(1994), - [sym_false] = ACTIONS(1994), - [ts_builtin_sym_end] = ACTIONS(1996), - [anon_sym_return] = ACTIONS(1994), - [anon_sym_continue] = ACTIONS(1994), - [anon_sym_SEMI] = ACTIONS(1996), - [aux_sym_preproc_def_token1] = ACTIONS(1994), - [anon_sym_PLUS] = ACTIONS(1994), - [anon_sym_auto] = ACTIONS(1994), - [anon_sym_inline] = ACTIONS(1994), + [anon_sym_COMMA] = ACTIONS(1585), + [anon_sym_RPAREN] = ACTIONS(1585), + [anon_sym_SEMI] = ACTIONS(1585), + [anon_sym_LPAREN2] = ACTIONS(1585), + [anon_sym_RBRACE] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(1587), + [anon_sym_LBRACK] = ACTIONS(1585), + [anon_sym_RBRACK] = ACTIONS(1585), + [anon_sym_EQ] = ACTIONS(1587), + [anon_sym_COLON] = ACTIONS(1585), + [anon_sym_QMARK] = ACTIONS(1585), + [anon_sym_STAR_EQ] = ACTIONS(1585), + [anon_sym_SLASH_EQ] = ACTIONS(1585), + [anon_sym_PERCENT_EQ] = ACTIONS(1585), + [anon_sym_PLUS_EQ] = ACTIONS(1585), + [anon_sym_DASH_EQ] = ACTIONS(1585), + [anon_sym_LT_LT_EQ] = ACTIONS(1585), + [anon_sym_GT_GT_EQ] = ACTIONS(1585), + [anon_sym_AMP_EQ] = ACTIONS(1585), + [anon_sym_CARET_EQ] = ACTIONS(1585), + [anon_sym_PIPE_EQ] = ACTIONS(1585), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_DASH] = ACTIONS(1587), + [anon_sym_PLUS] = ACTIONS(1587), + [anon_sym_SLASH] = ACTIONS(1587), + [anon_sym_PERCENT] = ACTIONS(1587), + [anon_sym_PIPE_PIPE] = ACTIONS(1585), + [anon_sym_AMP_AMP] = ACTIONS(1585), + [anon_sym_PIPE] = ACTIONS(1587), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_EQ_EQ] = ACTIONS(1585), + [anon_sym_BANG_EQ] = ACTIONS(1585), + [anon_sym_GT] = ACTIONS(1587), + [anon_sym_GT_EQ] = ACTIONS(1585), + [anon_sym_LT_EQ] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(1587), + [anon_sym_LT_LT] = ACTIONS(1587), + [anon_sym_GT_GT] = ACTIONS(1587), + [anon_sym_DASH_DASH] = ACTIONS(1585), + [anon_sym_PLUS_PLUS] = ACTIONS(1585), + [anon_sym_DOT] = ACTIONS(1585), + [anon_sym_DASH_GT] = ACTIONS(1585), + [sym_comment] = ACTIONS(3), }, [488] = { - [sym_if_statement] = STATE(502), - [sym_do_statement] = STATE(502), - [sym_for_statement] = STATE(502), - [sym__expression] = STATE(34), - [sym_comma_expression] = STATE(35), - [sym_binary_expression] = STATE(34), - [sym_update_expression] = STATE(34), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(502), - [sym_return_statement] = STATE(502), - [sym_break_statement] = STATE(502), - [sym_conditional_expression] = STATE(34), - [sym_assignment_expression] = STATE(34), - [sym_cast_expression] = STATE(34), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(34), - [sym_char_literal] = STATE(34), - [sym_labeled_statement] = STATE(502), - [sym_while_statement] = STATE(502), - [sym_continue_statement] = STATE(502), - [sym_goto_statement] = STATE(502), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(34), - [sym_sizeof_expression] = STATE(34), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(34), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(502), - [sym_expression_statement] = STATE(502), - [anon_sym_LBRACE] = ACTIONS(35), - [sym_true] = ACTIONS(5), - [sym_null] = ACTIONS(5), - [anon_sym_do] = ACTIONS(39), - [anon_sym_goto] = ACTIONS(9), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(477), - [anon_sym_for] = ACTIONS(55), - [anon_sym_break] = ACTIONS(57), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(65), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(67), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(5), - [anon_sym_return] = ACTIONS(73), - [anon_sym_while] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_SEMI] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_COMMA] = ACTIONS(1183), + [anon_sym_SEMI] = ACTIONS(1183), + [anon_sym_LPAREN2] = ACTIONS(1183), + [anon_sym_STAR] = ACTIONS(1201), + [anon_sym_LBRACK] = ACTIONS(1183), + [anon_sym_EQ] = ACTIONS(1195), + [anon_sym_COLON] = ACTIONS(1589), + [anon_sym_QMARK] = ACTIONS(1183), + [anon_sym_STAR_EQ] = ACTIONS(1199), + [anon_sym_SLASH_EQ] = ACTIONS(1199), + [anon_sym_PERCENT_EQ] = ACTIONS(1199), + [anon_sym_PLUS_EQ] = ACTIONS(1199), + [anon_sym_DASH_EQ] = ACTIONS(1199), + [anon_sym_LT_LT_EQ] = ACTIONS(1199), + [anon_sym_GT_GT_EQ] = ACTIONS(1199), + [anon_sym_AMP_EQ] = ACTIONS(1199), + [anon_sym_CARET_EQ] = ACTIONS(1199), + [anon_sym_PIPE_EQ] = ACTIONS(1199), + [anon_sym_AMP] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1201), + [anon_sym_SLASH] = ACTIONS(1201), + [anon_sym_PERCENT] = ACTIONS(1201), + [anon_sym_PIPE_PIPE] = ACTIONS(1183), + [anon_sym_AMP_AMP] = ACTIONS(1183), + [anon_sym_PIPE] = ACTIONS(1201), + [anon_sym_CARET] = ACTIONS(1201), + [anon_sym_EQ_EQ] = ACTIONS(1183), + [anon_sym_BANG_EQ] = ACTIONS(1183), + [anon_sym_GT] = ACTIONS(1201), + [anon_sym_GT_EQ] = ACTIONS(1183), + [anon_sym_LT_EQ] = ACTIONS(1183), + [anon_sym_LT] = ACTIONS(1201), + [anon_sym_LT_LT] = ACTIONS(1201), + [anon_sym_GT_GT] = ACTIONS(1201), + [anon_sym_DASH_DASH] = ACTIONS(1183), + [anon_sym_PLUS_PLUS] = ACTIONS(1183), + [anon_sym_DOT] = ACTIONS(1183), + [anon_sym_DASH_GT] = ACTIONS(1183), + [sym_comment] = ACTIONS(3), }, [489] = { - [sym_if_statement] = STATE(503), - [sym_do_statement] = STATE(503), - [sym_for_statement] = STATE(503), - [sym__expression] = STATE(34), - [sym_comma_expression] = STATE(35), - [sym_binary_expression] = STATE(34), - [sym_update_expression] = STATE(34), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(503), - [sym_return_statement] = STATE(503), - [sym_break_statement] = STATE(503), - [sym_conditional_expression] = STATE(34), - [sym_assignment_expression] = STATE(34), - [sym_cast_expression] = STATE(34), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(34), - [sym_char_literal] = STATE(34), - [sym_labeled_statement] = STATE(503), - [sym_while_statement] = STATE(503), - [sym_continue_statement] = STATE(503), - [sym_goto_statement] = STATE(503), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(34), - [sym_sizeof_expression] = STATE(34), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(34), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(503), - [sym_expression_statement] = STATE(503), - [anon_sym_LBRACE] = ACTIONS(35), - [sym_true] = ACTIONS(5), - [sym_null] = ACTIONS(5), - [anon_sym_do] = ACTIONS(39), - [anon_sym_goto] = ACTIONS(9), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(477), - [anon_sym_for] = ACTIONS(55), - [anon_sym_break] = ACTIONS(57), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(65), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(67), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(5), - [anon_sym_return] = ACTIONS(73), - [anon_sym_while] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_SEMI] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_COMMA] = ACTIONS(1183), + [anon_sym_SEMI] = ACTIONS(1183), + [anon_sym_LPAREN2] = ACTIONS(1183), + [anon_sym_STAR] = ACTIONS(1201), + [anon_sym_LBRACK] = ACTIONS(1183), + [anon_sym_EQ] = ACTIONS(1195), + [anon_sym_COLON] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1183), + [anon_sym_STAR_EQ] = ACTIONS(1199), + [anon_sym_SLASH_EQ] = ACTIONS(1199), + [anon_sym_PERCENT_EQ] = ACTIONS(1199), + [anon_sym_PLUS_EQ] = ACTIONS(1199), + [anon_sym_DASH_EQ] = ACTIONS(1199), + [anon_sym_LT_LT_EQ] = ACTIONS(1199), + [anon_sym_GT_GT_EQ] = ACTIONS(1199), + [anon_sym_AMP_EQ] = ACTIONS(1199), + [anon_sym_CARET_EQ] = ACTIONS(1199), + [anon_sym_PIPE_EQ] = ACTIONS(1199), + [anon_sym_AMP] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1201), + [anon_sym_SLASH] = ACTIONS(1201), + [anon_sym_PERCENT] = ACTIONS(1201), + [anon_sym_PIPE_PIPE] = ACTIONS(1183), + [anon_sym_AMP_AMP] = ACTIONS(1183), + [anon_sym_PIPE] = ACTIONS(1201), + [anon_sym_CARET] = ACTIONS(1201), + [anon_sym_EQ_EQ] = ACTIONS(1183), + [anon_sym_BANG_EQ] = ACTIONS(1183), + [anon_sym_GT] = ACTIONS(1201), + [anon_sym_GT_EQ] = ACTIONS(1183), + [anon_sym_LT_EQ] = ACTIONS(1183), + [anon_sym_LT] = ACTIONS(1201), + [anon_sym_LT_LT] = ACTIONS(1201), + [anon_sym_GT_GT] = ACTIONS(1201), + [anon_sym_DASH_DASH] = ACTIONS(1183), + [anon_sym_PLUS_PLUS] = ACTIONS(1183), + [anon_sym_DOT] = ACTIONS(1183), + [anon_sym_DASH_GT] = ACTIONS(1183), + [sym_comment] = ACTIONS(3), }, [490] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_COMMA] = ACTIONS(293), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_RPAREN] = ACTIONS(1998), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [anon_sym_COMMA] = ACTIONS(1183), + [anon_sym_SEMI] = ACTIONS(1183), + [anon_sym_LPAREN2] = ACTIONS(1183), + [anon_sym_STAR] = ACTIONS(1201), + [anon_sym_LBRACK] = ACTIONS(1183), + [anon_sym_EQ] = ACTIONS(1195), + [anon_sym_COLON] = ACTIONS(1207), + [anon_sym_QMARK] = ACTIONS(1183), + [anon_sym_STAR_EQ] = ACTIONS(1199), + [anon_sym_SLASH_EQ] = ACTIONS(1199), + [anon_sym_PERCENT_EQ] = ACTIONS(1199), + [anon_sym_PLUS_EQ] = ACTIONS(1199), + [anon_sym_DASH_EQ] = ACTIONS(1199), + [anon_sym_LT_LT_EQ] = ACTIONS(1199), + [anon_sym_GT_GT_EQ] = ACTIONS(1199), + [anon_sym_AMP_EQ] = ACTIONS(1199), + [anon_sym_CARET_EQ] = ACTIONS(1199), + [anon_sym_PIPE_EQ] = ACTIONS(1199), + [anon_sym_AMP] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1201), + [anon_sym_SLASH] = ACTIONS(1201), + [anon_sym_PERCENT] = ACTIONS(1201), + [anon_sym_PIPE_PIPE] = ACTIONS(1183), + [anon_sym_AMP_AMP] = ACTIONS(1183), + [anon_sym_PIPE] = ACTIONS(1201), + [anon_sym_CARET] = ACTIONS(1201), + [anon_sym_EQ_EQ] = ACTIONS(1183), + [anon_sym_BANG_EQ] = ACTIONS(1183), + [anon_sym_GT] = ACTIONS(1201), + [anon_sym_GT_EQ] = ACTIONS(1183), + [anon_sym_LT_EQ] = ACTIONS(1183), + [anon_sym_LT] = ACTIONS(1201), + [anon_sym_LT_LT] = ACTIONS(1201), + [anon_sym_GT_GT] = ACTIONS(1201), + [anon_sym_DASH_DASH] = ACTIONS(1183), + [anon_sym_PLUS_PLUS] = ACTIONS(1183), + [anon_sym_DOT] = ACTIONS(1183), + [anon_sym_DASH_GT] = ACTIONS(1183), + [sym_comment] = ACTIONS(3), }, [491] = { - [anon_sym_RPAREN] = ACTIONS(1998), + [anon_sym_COMMA] = ACTIONS(1183), + [anon_sym_SEMI] = ACTIONS(1183), + [anon_sym_LPAREN2] = ACTIONS(1183), + [anon_sym_STAR] = ACTIONS(1201), + [anon_sym_LBRACK] = ACTIONS(1183), + [anon_sym_EQ] = ACTIONS(1195), + [anon_sym_COLON] = ACTIONS(1591), + [anon_sym_QMARK] = ACTIONS(1183), + [anon_sym_STAR_EQ] = ACTIONS(1199), + [anon_sym_SLASH_EQ] = ACTIONS(1199), + [anon_sym_PERCENT_EQ] = ACTIONS(1199), + [anon_sym_PLUS_EQ] = ACTIONS(1199), + [anon_sym_DASH_EQ] = ACTIONS(1199), + [anon_sym_LT_LT_EQ] = ACTIONS(1199), + [anon_sym_GT_GT_EQ] = ACTIONS(1199), + [anon_sym_AMP_EQ] = ACTIONS(1199), + [anon_sym_CARET_EQ] = ACTIONS(1199), + [anon_sym_PIPE_EQ] = ACTIONS(1199), + [anon_sym_AMP] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1201), + [anon_sym_SLASH] = ACTIONS(1201), + [anon_sym_PERCENT] = ACTIONS(1201), + [anon_sym_PIPE_PIPE] = ACTIONS(1183), + [anon_sym_AMP_AMP] = ACTIONS(1183), + [anon_sym_PIPE] = ACTIONS(1201), + [anon_sym_CARET] = ACTIONS(1201), + [anon_sym_EQ_EQ] = ACTIONS(1183), + [anon_sym_BANG_EQ] = ACTIONS(1183), + [anon_sym_GT] = ACTIONS(1201), + [anon_sym_GT_EQ] = ACTIONS(1183), + [anon_sym_LT_EQ] = ACTIONS(1183), + [anon_sym_LT] = ACTIONS(1201), + [anon_sym_LT_LT] = ACTIONS(1201), + [anon_sym_GT_GT] = ACTIONS(1201), + [anon_sym_DASH_DASH] = ACTIONS(1183), + [anon_sym_PLUS_PLUS] = ACTIONS(1183), + [anon_sym_DOT] = ACTIONS(1183), + [anon_sym_DASH_GT] = ACTIONS(1183), [sym_comment] = ACTIONS(3), }, [492] = { - [anon_sym_case] = ACTIONS(2000), - [sym_true] = ACTIONS(2000), - [anon_sym_restrict] = ACTIONS(2000), - [sym_null] = ACTIONS(2000), - [anon_sym_goto] = ACTIONS(2000), - [anon_sym_const] = ACTIONS(2000), - [anon_sym_typedef] = ACTIONS(2000), - [anon_sym_DASH_DASH] = ACTIONS(2002), - [anon_sym_default] = ACTIONS(2000), - [anon_sym__Atomic] = ACTIONS(2000), - [sym_identifier] = ACTIONS(2000), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2000), - [sym_number_literal] = ACTIONS(2002), - [anon_sym_volatile] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2002), - [anon_sym_extern] = ACTIONS(2000), - [anon_sym_PLUS_PLUS] = ACTIONS(2002), - [anon_sym_struct] = ACTIONS(2000), - [anon_sym_signed] = ACTIONS(2000), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(2000), - [anon_sym_while] = ACTIONS(2000), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2000), - [anon_sym_L_SQUOTE] = ACTIONS(2002), - [anon_sym___attribute__] = ACTIONS(2000), - [anon_sym_sizeof] = ACTIONS(2000), - [anon_sym_LBRACE] = ACTIONS(2002), - [anon_sym_union] = ACTIONS(2000), - [anon_sym_unsigned] = ACTIONS(2000), - [anon_sym_short] = ACTIONS(2000), - [anon_sym_do] = ACTIONS(2000), - [sym_preproc_directive] = ACTIONS(2000), - [anon_sym_AMP] = ACTIONS(2002), - [aux_sym_preproc_if_token1] = ACTIONS(2000), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_L_DQUOTE] = ACTIONS(2002), - [anon_sym_LPAREN2] = ACTIONS(2002), - [anon_sym_RBRACE] = ACTIONS(2002), - [anon_sym_else] = ACTIONS(2000), - [sym_primitive_type] = ACTIONS(2000), - [anon_sym_for] = ACTIONS(2000), - [anon_sym_break] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [aux_sym_preproc_include_token1] = ACTIONS(2000), - [anon_sym_DASH] = ACTIONS(2000), - [anon_sym_static] = ACTIONS(2000), - [anon_sym_DQUOTE] = ACTIONS(2002), - [anon_sym_register] = ACTIONS(2000), - [anon_sym_STAR] = ACTIONS(2002), - [anon_sym_if] = ACTIONS(2000), - [anon_sym_switch] = ACTIONS(2000), - [anon_sym_enum] = ACTIONS(2000), - [sym_false] = ACTIONS(2000), - [ts_builtin_sym_end] = ACTIONS(2002), - [anon_sym_return] = ACTIONS(2000), - [anon_sym_continue] = ACTIONS(2000), - [anon_sym_SEMI] = ACTIONS(2002), - [aux_sym_preproc_def_token1] = ACTIONS(2000), - [anon_sym_PLUS] = ACTIONS(2000), - [anon_sym_auto] = ACTIONS(2000), - [anon_sym_inline] = ACTIONS(2000), + [anon_sym_COMMA] = ACTIONS(1183), + [anon_sym_SEMI] = ACTIONS(1183), + [anon_sym_LPAREN2] = ACTIONS(1183), + [anon_sym_STAR] = ACTIONS(1201), + [anon_sym_LBRACK] = ACTIONS(1183), + [anon_sym_EQ] = ACTIONS(1195), + [anon_sym_COLON] = ACTIONS(1205), + [anon_sym_QMARK] = ACTIONS(1183), + [anon_sym_STAR_EQ] = ACTIONS(1199), + [anon_sym_SLASH_EQ] = ACTIONS(1199), + [anon_sym_PERCENT_EQ] = ACTIONS(1199), + [anon_sym_PLUS_EQ] = ACTIONS(1199), + [anon_sym_DASH_EQ] = ACTIONS(1199), + [anon_sym_LT_LT_EQ] = ACTIONS(1199), + [anon_sym_GT_GT_EQ] = ACTIONS(1199), + [anon_sym_AMP_EQ] = ACTIONS(1199), + [anon_sym_CARET_EQ] = ACTIONS(1199), + [anon_sym_PIPE_EQ] = ACTIONS(1199), + [anon_sym_AMP] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1201), + [anon_sym_SLASH] = ACTIONS(1201), + [anon_sym_PERCENT] = ACTIONS(1201), + [anon_sym_PIPE_PIPE] = ACTIONS(1183), + [anon_sym_AMP_AMP] = ACTIONS(1183), + [anon_sym_PIPE] = ACTIONS(1201), + [anon_sym_CARET] = ACTIONS(1201), + [anon_sym_EQ_EQ] = ACTIONS(1183), + [anon_sym_BANG_EQ] = ACTIONS(1183), + [anon_sym_GT] = ACTIONS(1201), + [anon_sym_GT_EQ] = ACTIONS(1183), + [anon_sym_LT_EQ] = ACTIONS(1183), + [anon_sym_LT] = ACTIONS(1201), + [anon_sym_LT_LT] = ACTIONS(1201), + [anon_sym_GT_GT] = ACTIONS(1201), + [anon_sym_DASH_DASH] = ACTIONS(1183), + [anon_sym_PLUS_PLUS] = ACTIONS(1183), + [anon_sym_DOT] = ACTIONS(1183), + [anon_sym_DASH_GT] = ACTIONS(1183), + [sym_comment] = ACTIONS(3), }, [493] = { - [anon_sym_case] = ACTIONS(2004), - [sym_true] = ACTIONS(2004), - [anon_sym_restrict] = ACTIONS(2004), - [sym_null] = ACTIONS(2004), - [anon_sym_goto] = ACTIONS(2004), - [anon_sym_const] = ACTIONS(2004), - [anon_sym_typedef] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2006), - [anon_sym_default] = ACTIONS(2004), - [anon_sym__Atomic] = ACTIONS(2004), - [sym_identifier] = ACTIONS(2004), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2004), - [sym_number_literal] = ACTIONS(2006), - [anon_sym_volatile] = ACTIONS(2004), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_extern] = ACTIONS(2004), - [anon_sym_PLUS_PLUS] = ACTIONS(2006), - [anon_sym_struct] = ACTIONS(2004), - [anon_sym_signed] = ACTIONS(2004), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(2004), - [anon_sym_while] = ACTIONS(2004), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym___attribute__] = ACTIONS(2004), - [anon_sym_sizeof] = ACTIONS(2004), - [anon_sym_LBRACE] = ACTIONS(2006), - [anon_sym_union] = ACTIONS(2004), - [anon_sym_unsigned] = ACTIONS(2004), - [anon_sym_short] = ACTIONS(2004), - [anon_sym_do] = ACTIONS(2004), - [sym_preproc_directive] = ACTIONS(2004), - [anon_sym_AMP] = ACTIONS(2006), - [aux_sym_preproc_if_token1] = ACTIONS(2004), - [anon_sym_TILDE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2006), - [anon_sym_LPAREN2] = ACTIONS(2006), - [anon_sym_RBRACE] = ACTIONS(2006), - [anon_sym_else] = ACTIONS(2004), - [sym_primitive_type] = ACTIONS(2004), - [anon_sym_for] = ACTIONS(2004), - [anon_sym_break] = ACTIONS(2004), - [anon_sym_BANG] = ACTIONS(2006), - [aux_sym_preproc_include_token1] = ACTIONS(2004), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_static] = ACTIONS(2004), - [anon_sym_DQUOTE] = ACTIONS(2006), - [anon_sym_register] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_if] = ACTIONS(2004), - [anon_sym_switch] = ACTIONS(2004), - [anon_sym_enum] = ACTIONS(2004), - [sym_false] = ACTIONS(2004), - [ts_builtin_sym_end] = ACTIONS(2006), - [anon_sym_return] = ACTIONS(2004), - [anon_sym_continue] = ACTIONS(2004), - [anon_sym_SEMI] = ACTIONS(2006), - [aux_sym_preproc_def_token1] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_auto] = ACTIONS(2004), - [anon_sym_inline] = ACTIONS(2004), + [anon_sym_COMMA] = ACTIONS(1183), + [anon_sym_SEMI] = ACTIONS(1183), + [anon_sym_LPAREN2] = ACTIONS(1183), + [anon_sym_STAR] = ACTIONS(1201), + [anon_sym_LBRACK] = ACTIONS(1183), + [anon_sym_EQ] = ACTIONS(1195), + [anon_sym_COLON] = ACTIONS(1197), + [anon_sym_QMARK] = ACTIONS(1183), + [anon_sym_STAR_EQ] = ACTIONS(1199), + [anon_sym_SLASH_EQ] = ACTIONS(1199), + [anon_sym_PERCENT_EQ] = ACTIONS(1199), + [anon_sym_PLUS_EQ] = ACTIONS(1199), + [anon_sym_DASH_EQ] = ACTIONS(1199), + [anon_sym_LT_LT_EQ] = ACTIONS(1199), + [anon_sym_GT_GT_EQ] = ACTIONS(1199), + [anon_sym_AMP_EQ] = ACTIONS(1199), + [anon_sym_CARET_EQ] = ACTIONS(1199), + [anon_sym_PIPE_EQ] = ACTIONS(1199), + [anon_sym_AMP] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1201), + [anon_sym_SLASH] = ACTIONS(1201), + [anon_sym_PERCENT] = ACTIONS(1201), + [anon_sym_PIPE_PIPE] = ACTIONS(1183), + [anon_sym_AMP_AMP] = ACTIONS(1183), + [anon_sym_PIPE] = ACTIONS(1201), + [anon_sym_CARET] = ACTIONS(1201), + [anon_sym_EQ_EQ] = ACTIONS(1183), + [anon_sym_BANG_EQ] = ACTIONS(1183), + [anon_sym_GT] = ACTIONS(1201), + [anon_sym_GT_EQ] = ACTIONS(1183), + [anon_sym_LT_EQ] = ACTIONS(1183), + [anon_sym_LT] = ACTIONS(1201), + [anon_sym_LT_LT] = ACTIONS(1201), + [anon_sym_GT_GT] = ACTIONS(1201), + [anon_sym_DASH_DASH] = ACTIONS(1183), + [anon_sym_PLUS_PLUS] = ACTIONS(1183), + [anon_sym_DOT] = ACTIONS(1183), + [anon_sym_DASH_GT] = ACTIONS(1183), + [sym_comment] = ACTIONS(3), }, [494] = { - [sym_if_statement] = STATE(505), - [sym_do_statement] = STATE(505), - [sym_for_statement] = STATE(505), - [sym__expression] = STATE(34), - [sym_comma_expression] = STATE(35), - [sym_binary_expression] = STATE(34), - [sym_update_expression] = STATE(34), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(505), - [sym_return_statement] = STATE(505), - [sym_break_statement] = STATE(505), - [sym_conditional_expression] = STATE(34), - [sym_assignment_expression] = STATE(34), - [sym_cast_expression] = STATE(34), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(34), - [sym_char_literal] = STATE(34), - [sym_labeled_statement] = STATE(505), - [sym_while_statement] = STATE(505), - [sym_continue_statement] = STATE(505), - [sym_goto_statement] = STATE(505), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(34), - [sym_sizeof_expression] = STATE(34), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(34), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(505), - [sym_expression_statement] = STATE(505), - [anon_sym_LBRACE] = ACTIONS(35), - [sym_true] = ACTIONS(5), - [sym_null] = ACTIONS(5), - [anon_sym_do] = ACTIONS(39), - [anon_sym_goto] = ACTIONS(9), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(477), - [anon_sym_for] = ACTIONS(55), - [anon_sym_break] = ACTIONS(57), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(65), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(67), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(5), - [anon_sym_return] = ACTIONS(73), - [anon_sym_while] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_SEMI] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym__expression] = STATE(691), + [sym_comma_expression] = STATE(1281), + [sym_conditional_expression] = STATE(691), + [sym_assignment_expression] = STATE(691), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(691), + [sym_binary_expression] = STATE(691), + [sym_update_expression] = STATE(691), + [sym_cast_expression] = STATE(691), + [sym_sizeof_expression] = STATE(691), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(691), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(691), + [sym_concatenated_string] = STATE(691), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_RPAREN] = ACTIONS(1593), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1595), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1597), + [sym_false] = ACTIONS(1597), + [sym_null] = ACTIONS(1597), + [sym_comment] = ACTIONS(3), }, [495] = { - [sym_if_statement] = STATE(496), - [sym_do_statement] = STATE(496), - [sym_for_statement] = STATE(496), - [sym__expression] = STATE(34), - [sym_comma_expression] = STATE(35), - [sym_binary_expression] = STATE(34), - [sym_update_expression] = STATE(34), - [sym_call_expression] = STATE(36), - [sym_declaration] = STATE(496), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(130), - [sym_union_specifier] = STATE(130), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [aux_sym_case_statement_repeat1] = STATE(496), - [sym_switch_statement] = STATE(496), - [sym_return_statement] = STATE(496), - [sym_break_statement] = STATE(496), - [sym_conditional_expression] = STATE(34), - [sym_assignment_expression] = STATE(34), - [sym_cast_expression] = STATE(34), - [sym__declaration_specifiers] = STATE(165), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(34), - [sym_type_definition] = STATE(496), - [sym_char_literal] = STATE(34), - [sym_sized_type_specifier] = STATE(130), - [sym_enum_specifier] = STATE(130), - [sym_labeled_statement] = STATE(496), - [sym_while_statement] = STATE(496), - [sym_continue_statement] = STATE(496), - [sym_goto_statement] = STATE(496), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(34), - [sym_sizeof_expression] = STATE(34), - [sym_attribute_specifier] = STATE(43), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(34), - [sym_string_literal] = STATE(41), - [sym_macro_type_specifier] = STATE(130), - [sym_compound_statement] = STATE(496), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_storage_class_specifier] = STATE(43), - [sym_struct_specifier] = STATE(130), - [sym_expression_statement] = STATE(496), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_union] = ACTIONS(37), - [anon_sym_case] = ACTIONS(2008), - [sym_true] = ACTIONS(5), - [anon_sym_restrict] = ACTIONS(7), - [sym_null] = ACTIONS(5), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_short] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(39), - [anon_sym_goto] = ACTIONS(9), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_const] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(2010), - [anon_sym_DASH_DASH] = ACTIONS(13), - [anon_sym_default] = ACTIONS(2008), - [anon_sym_typedef] = ACTIONS(11), - [anon_sym__Atomic] = ACTIONS(7), - [sym_identifier] = ACTIONS(1664), - [sym_primitive_type] = ACTIONS(348), - [anon_sym_for] = ACTIONS(55), - [anon_sym_break] = ACTIONS(57), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_static] = ACTIONS(63), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(65), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_register] = ACTIONS(63), - [sym_false] = ACTIONS(5), - [anon_sym_extern] = ACTIONS(63), - [anon_sym_struct] = ACTIONS(25), - [anon_sym_return] = ACTIONS(73), - [anon_sym_while] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_SEMI] = ACTIONS(77), - [anon_sym_signed] = ACTIONS(27), - [anon_sym_long] = ACTIONS(27), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_auto] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_sizeof] = ACTIONS(33), + [sym__expression] = STATE(696), + [sym_comma_expression] = STATE(1277), + [sym_conditional_expression] = STATE(696), + [sym_assignment_expression] = STATE(696), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(696), + [sym_binary_expression] = STATE(696), + [sym_update_expression] = STATE(696), + [sym_cast_expression] = STATE(696), + [sym_sizeof_expression] = STATE(696), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(696), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(696), + [sym_concatenated_string] = STATE(696), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_RPAREN] = ACTIONS(1599), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1601), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1603), + [sym_false] = ACTIONS(1603), + [sym_null] = ACTIONS(1603), + [sym_comment] = ACTIONS(3), }, [496] = { - [sym_if_statement] = STATE(496), - [sym_do_statement] = STATE(496), - [sym_for_statement] = STATE(496), - [sym__expression] = STATE(34), - [sym_comma_expression] = STATE(35), - [sym_binary_expression] = STATE(34), - [sym_update_expression] = STATE(34), - [sym_call_expression] = STATE(36), - [sym_declaration] = STATE(496), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(130), - [sym_union_specifier] = STATE(130), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [aux_sym_case_statement_repeat1] = STATE(496), - [sym_switch_statement] = STATE(496), - [sym_return_statement] = STATE(496), - [sym_break_statement] = STATE(496), - [sym_conditional_expression] = STATE(34), - [sym_assignment_expression] = STATE(34), - [sym_cast_expression] = STATE(34), - [sym__declaration_specifiers] = STATE(165), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(34), - [sym_type_definition] = STATE(496), - [sym_char_literal] = STATE(34), - [sym_sized_type_specifier] = STATE(130), - [sym_enum_specifier] = STATE(130), - [sym_labeled_statement] = STATE(496), - [sym_while_statement] = STATE(496), - [sym_continue_statement] = STATE(496), - [sym_goto_statement] = STATE(496), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(34), - [sym_sizeof_expression] = STATE(34), - [sym_attribute_specifier] = STATE(43), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(34), - [sym_string_literal] = STATE(41), - [sym_macro_type_specifier] = STATE(130), - [sym_compound_statement] = STATE(496), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_storage_class_specifier] = STATE(43), - [sym_struct_specifier] = STATE(130), - [sym_expression_statement] = STATE(496), - [anon_sym_LBRACE] = ACTIONS(2012), - [anon_sym_union] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2018), - [anon_sym_unsigned] = ACTIONS(2020), - [anon_sym_restrict] = ACTIONS(2023), - [anon_sym_short] = ACTIONS(2020), - [sym_true] = ACTIONS(2026), - [sym_null] = ACTIONS(2026), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(2029), - [anon_sym_goto] = ACTIONS(2032), - [anon_sym_AMP] = ACTIONS(2035), - [anon_sym_TILDE] = ACTIONS(2038), - [anon_sym_const] = ACTIONS(2023), - [anon_sym_LPAREN2] = ACTIONS(2041), - [anon_sym_typedef] = ACTIONS(2044), - [anon_sym_RBRACE] = ACTIONS(2047), - [anon_sym_DASH_DASH] = ACTIONS(2049), - [anon_sym_default] = ACTIONS(2018), - [anon_sym_L_DQUOTE] = ACTIONS(2052), - [anon_sym__Atomic] = ACTIONS(2023), - [sym_primitive_type] = ACTIONS(2055), - [sym_identifier] = ACTIONS(2058), - [anon_sym_for] = ACTIONS(2061), - [anon_sym_break] = ACTIONS(2064), - [anon_sym_BANG] = ACTIONS(2038), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_static] = ACTIONS(2070), - [anon_sym_volatile] = ACTIONS(2023), - [anon_sym_register] = ACTIONS(2070), - [anon_sym_extern] = ACTIONS(2070), - [anon_sym_STAR] = ACTIONS(2035), - [anon_sym_if] = ACTIONS(2073), - [anon_sym_struct] = ACTIONS(2076), - [anon_sym_switch] = ACTIONS(2079), - [anon_sym_signed] = ACTIONS(2020), - [anon_sym_enum] = ACTIONS(2082), - [anon_sym_long] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2049), - [sym_number_literal] = ACTIONS(2085), - [anon_sym_return] = ACTIONS(2088), - [anon_sym_while] = ACTIONS(2091), - [anon_sym_continue] = ACTIONS(2094), - [anon_sym_SQUOTE] = ACTIONS(2097), - [anon_sym_SEMI] = ACTIONS(2100), - [anon_sym_DQUOTE] = ACTIONS(2052), - [sym_false] = ACTIONS(2026), - [anon_sym_PLUS] = ACTIONS(2067), - [anon_sym_auto] = ACTIONS(2070), - [anon_sym_L_SQUOTE] = ACTIONS(2097), - [anon_sym_inline] = ACTIONS(2070), - [anon_sym___attribute__] = ACTIONS(2103), - [anon_sym_sizeof] = ACTIONS(2106), + [sym__expression] = STATE(699), + [sym_comma_expression] = STATE(1274), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_RPAREN] = ACTIONS(1605), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1607), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1609), + [sym_false] = ACTIONS(1609), + [sym_null] = ACTIONS(1609), + [sym_comment] = ACTIONS(3), }, [497] = { - [aux_sym_preproc_if_token2] = ACTIONS(2109), + [sym__expression] = STATE(708), + [sym_comma_expression] = STATE(1203), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_RPAREN] = ACTIONS(1611), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1613), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1615), + [sym_false] = ACTIONS(1615), + [sym_null] = ACTIONS(1615), [sym_comment] = ACTIONS(3), }, [498] = { + [sym__expression] = STATE(668), + [sym_comma_expression] = STATE(1173), + [sym_conditional_expression] = STATE(668), + [sym_assignment_expression] = STATE(668), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(668), + [sym_binary_expression] = STATE(668), + [sym_update_expression] = STATE(668), + [sym_cast_expression] = STATE(668), + [sym_sizeof_expression] = STATE(668), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(668), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(668), + [sym_concatenated_string] = STATE(668), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_SEMI] = ACTIONS(1617), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1619), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1621), + [sym_false] = ACTIONS(1621), + [sym_null] = ACTIONS(1621), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(2111), - [anon_sym_COMMA] = ACTIONS(2111), - [anon_sym_COLON] = ACTIONS(2111), - [anon_sym_SEMI] = ACTIONS(2111), - [anon_sym_RPAREN] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2111), }, [499] = { - [anon_sym_GT_GT] = ACTIONS(2113), - [anon_sym_PERCENT_EQ] = ACTIONS(2115), - [anon_sym_DASH_EQ] = ACTIONS(2115), - [anon_sym_PIPE] = ACTIONS(2113), - [anon_sym_EQ_EQ] = ACTIONS(2115), - [anon_sym_SLASH] = ACTIONS(2113), - [anon_sym_DASH_GT] = ACTIONS(2115), - [anon_sym_LT_LT] = ACTIONS(2113), - [anon_sym_DASH_DASH] = ACTIONS(2115), - [anon_sym_PLUS_EQ] = ACTIONS(2115), - [anon_sym_LT_LT_EQ] = ACTIONS(2115), - [anon_sym_QMARK] = ACTIONS(2115), - [anon_sym_BANG_EQ] = ACTIONS(2115), - [anon_sym_CARET_EQ] = ACTIONS(2115), - [anon_sym_COMMA] = ACTIONS(2115), - [anon_sym_PLUS_PLUS] = ACTIONS(2115), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT_EQ] = ACTIONS(2115), - [anon_sym_GT] = ACTIONS(2113), - [anon_sym_PIPE_EQ] = ACTIONS(2115), - [anon_sym_RPAREN] = ACTIONS(2115), - [anon_sym_RBRACK] = ACTIONS(2115), - [anon_sym_AMP_EQ] = ACTIONS(2115), - [anon_sym_PERCENT] = ACTIONS(2113), - [anon_sym_AMP] = ACTIONS(2113), - [anon_sym_EQ] = ACTIONS(2113), - [anon_sym_LPAREN2] = ACTIONS(2115), - [anon_sym_GT_EQ] = ACTIONS(2115), - [anon_sym_RBRACE] = ACTIONS(2115), - [anon_sym_COLON] = ACTIONS(2115), - [anon_sym_STAR_EQ] = ACTIONS(2115), - [anon_sym_PIPE_PIPE] = ACTIONS(2115), - [anon_sym_DASH] = ACTIONS(2113), - [anon_sym_LT_EQ] = ACTIONS(2115), - [anon_sym_STAR] = ACTIONS(2113), - [anon_sym_SLASH_EQ] = ACTIONS(2115), - [anon_sym_AMP_AMP] = ACTIONS(2115), - [anon_sym_SEMI] = ACTIONS(2115), - [anon_sym_CARET] = ACTIONS(2113), - [anon_sym_PLUS] = ACTIONS(2113), - [anon_sym_DOT] = ACTIONS(2115), - [anon_sym_LT] = ACTIONS(2113), - [anon_sym_LBRACK] = ACTIONS(2115), + [sym__expression] = STATE(724), + [sym_conditional_expression] = STATE(724), + [sym_assignment_expression] = STATE(724), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(724), + [sym_binary_expression] = STATE(724), + [sym_update_expression] = STATE(724), + [sym_cast_expression] = STATE(724), + [sym_sizeof_expression] = STATE(724), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(724), + [sym_parenthesized_expression] = STATE(484), + [sym_initializer_list] = STATE(1087), + [sym_char_literal] = STATE(724), + [sym_concatenated_string] = STATE(724), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(731), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1623), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1625), + [sym_false] = ACTIONS(1625), + [sym_null] = ACTIONS(1625), + [sym_comment] = ACTIONS(3), }, [500] = { - [sym_char_literal] = STATE(476), - [sym__expression] = STATE(476), - [sym_binary_expression] = STATE(476), - [sym_update_expression] = STATE(476), - [sym_call_expression] = STATE(36), - [aux_sym_initializer_pair_repeat1] = STATE(336), - [sym_initializer_pair] = STATE(477), - [sym_subscript_designator] = STATE(336), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(476), - [sym_sizeof_expression] = STATE(476), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_initializer_list] = STATE(477), - [sym_concatenated_string] = STATE(476), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(476), - [sym_assignment_expression] = STATE(476), - [sym_cast_expression] = STATE(476), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(476), - [sym_field_designator] = STATE(336), - [anon_sym_LBRACE] = ACTIONS(886), - [anon_sym_sizeof] = ACTIONS(33), - [sym_true] = ACTIONS(1852), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_null] = ACTIONS(1852), - [sym_number_literal] = ACTIONS(1856), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_AMP] = ACTIONS(43), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(1852), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_DOT] = ACTIONS(1254), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(1244), + [sym__expression] = STATE(709), + [sym_comma_expression] = STATE(1202), + [sym_conditional_expression] = STATE(709), + [sym_assignment_expression] = STATE(709), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(709), + [sym_binary_expression] = STATE(709), + [sym_update_expression] = STATE(709), + [sym_cast_expression] = STATE(709), + [sym_sizeof_expression] = STATE(709), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(709), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(709), + [sym_concatenated_string] = STATE(709), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_RPAREN] = ACTIONS(1627), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1629), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1631), + [sym_false] = ACTIONS(1631), + [sym_null] = ACTIONS(1631), + [sym_comment] = ACTIONS(3), }, [501] = { - [anon_sym_case] = ACTIONS(2117), - [sym_true] = ACTIONS(2117), - [anon_sym_restrict] = ACTIONS(2117), - [sym_null] = ACTIONS(2117), - [anon_sym_goto] = ACTIONS(2117), - [anon_sym_const] = ACTIONS(2117), - [anon_sym_typedef] = ACTIONS(2117), - [anon_sym_DASH_DASH] = ACTIONS(2119), - [anon_sym_default] = ACTIONS(2117), - [anon_sym__Atomic] = ACTIONS(2117), - [sym_identifier] = ACTIONS(2117), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2117), - [sym_number_literal] = ACTIONS(2119), - [anon_sym_volatile] = ACTIONS(2117), - [anon_sym_SQUOTE] = ACTIONS(2119), - [anon_sym_extern] = ACTIONS(2117), - [anon_sym_PLUS_PLUS] = ACTIONS(2119), - [anon_sym_struct] = ACTIONS(2117), - [anon_sym_signed] = ACTIONS(2117), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(2117), - [anon_sym_while] = ACTIONS(2117), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2117), - [anon_sym_L_SQUOTE] = ACTIONS(2119), - [anon_sym___attribute__] = ACTIONS(2117), - [anon_sym_sizeof] = ACTIONS(2117), - [anon_sym_LBRACE] = ACTIONS(2119), - [anon_sym_union] = ACTIONS(2117), - [anon_sym_unsigned] = ACTIONS(2117), - [anon_sym_short] = ACTIONS(2117), - [anon_sym_do] = ACTIONS(2117), - [sym_preproc_directive] = ACTIONS(2117), - [anon_sym_AMP] = ACTIONS(2119), - [aux_sym_preproc_if_token1] = ACTIONS(2117), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_L_DQUOTE] = ACTIONS(2119), - [anon_sym_LPAREN2] = ACTIONS(2119), - [anon_sym_RBRACE] = ACTIONS(2119), - [anon_sym_else] = ACTIONS(2117), - [sym_primitive_type] = ACTIONS(2117), - [anon_sym_for] = ACTIONS(2117), - [anon_sym_break] = ACTIONS(2117), - [anon_sym_BANG] = ACTIONS(2119), - [aux_sym_preproc_include_token1] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), - [anon_sym_static] = ACTIONS(2117), - [anon_sym_DQUOTE] = ACTIONS(2119), - [anon_sym_register] = ACTIONS(2117), - [anon_sym_STAR] = ACTIONS(2119), - [anon_sym_if] = ACTIONS(2117), - [anon_sym_switch] = ACTIONS(2117), - [anon_sym_enum] = ACTIONS(2117), - [sym_false] = ACTIONS(2117), - [ts_builtin_sym_end] = ACTIONS(2119), - [anon_sym_return] = ACTIONS(2117), - [anon_sym_continue] = ACTIONS(2117), - [anon_sym_SEMI] = ACTIONS(2119), - [aux_sym_preproc_def_token1] = ACTIONS(2117), - [anon_sym_PLUS] = ACTIONS(2117), - [anon_sym_auto] = ACTIONS(2117), - [anon_sym_inline] = ACTIONS(2117), + [sym__expression] = STATE(706), + [sym_comma_expression] = STATE(1114), + [sym_conditional_expression] = STATE(706), + [sym_assignment_expression] = STATE(706), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(706), + [sym_binary_expression] = STATE(706), + [sym_update_expression] = STATE(706), + [sym_cast_expression] = STATE(706), + [sym_sizeof_expression] = STATE(706), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(706), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(706), + [sym_concatenated_string] = STATE(706), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_RPAREN] = ACTIONS(1633), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1635), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1637), + [sym_false] = ACTIONS(1637), + [sym_null] = ACTIONS(1637), + [sym_comment] = ACTIONS(3), }, [502] = { - [anon_sym_case] = ACTIONS(2121), - [sym_true] = ACTIONS(2121), - [anon_sym_restrict] = ACTIONS(2121), - [sym_null] = ACTIONS(2121), - [anon_sym_goto] = ACTIONS(2121), - [anon_sym_const] = ACTIONS(2121), - [anon_sym_typedef] = ACTIONS(2121), - [anon_sym_DASH_DASH] = ACTIONS(2123), - [anon_sym_default] = ACTIONS(2121), - [anon_sym__Atomic] = ACTIONS(2121), - [sym_identifier] = ACTIONS(2121), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2121), - [sym_number_literal] = ACTIONS(2123), - [anon_sym_volatile] = ACTIONS(2121), - [anon_sym_SQUOTE] = ACTIONS(2123), - [anon_sym_extern] = ACTIONS(2121), - [anon_sym_PLUS_PLUS] = ACTIONS(2123), - [anon_sym_struct] = ACTIONS(2121), - [anon_sym_signed] = ACTIONS(2121), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(2121), - [anon_sym_while] = ACTIONS(2121), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2121), - [anon_sym_L_SQUOTE] = ACTIONS(2123), - [anon_sym___attribute__] = ACTIONS(2121), - [anon_sym_sizeof] = ACTIONS(2121), - [anon_sym_LBRACE] = ACTIONS(2123), - [anon_sym_union] = ACTIONS(2121), - [anon_sym_unsigned] = ACTIONS(2121), - [anon_sym_short] = ACTIONS(2121), - [anon_sym_do] = ACTIONS(2121), - [sym_preproc_directive] = ACTIONS(2121), - [anon_sym_AMP] = ACTIONS(2123), - [aux_sym_preproc_if_token1] = ACTIONS(2121), - [anon_sym_TILDE] = ACTIONS(2123), - [anon_sym_L_DQUOTE] = ACTIONS(2123), - [anon_sym_LPAREN2] = ACTIONS(2123), - [anon_sym_RBRACE] = ACTIONS(2123), - [anon_sym_else] = ACTIONS(2121), - [sym_primitive_type] = ACTIONS(2121), - [anon_sym_for] = ACTIONS(2121), - [anon_sym_break] = ACTIONS(2121), - [anon_sym_BANG] = ACTIONS(2123), - [aux_sym_preproc_include_token1] = ACTIONS(2121), - [anon_sym_DASH] = ACTIONS(2121), - [anon_sym_static] = ACTIONS(2121), - [anon_sym_DQUOTE] = ACTIONS(2123), - [anon_sym_register] = ACTIONS(2121), - [anon_sym_STAR] = ACTIONS(2123), - [anon_sym_if] = ACTIONS(2121), - [anon_sym_switch] = ACTIONS(2121), - [anon_sym_enum] = ACTIONS(2121), - [sym_false] = ACTIONS(2121), - [ts_builtin_sym_end] = ACTIONS(2123), - [anon_sym_return] = ACTIONS(2121), - [anon_sym_continue] = ACTIONS(2121), - [anon_sym_SEMI] = ACTIONS(2123), - [aux_sym_preproc_def_token1] = ACTIONS(2121), - [anon_sym_PLUS] = ACTIONS(2121), - [anon_sym_auto] = ACTIONS(2121), - [anon_sym_inline] = ACTIONS(2121), + [sym__expression] = STATE(727), + [sym_comma_expression] = STATE(1147), + [sym_conditional_expression] = STATE(727), + [sym_assignment_expression] = STATE(727), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(727), + [sym_binary_expression] = STATE(727), + [sym_update_expression] = STATE(727), + [sym_cast_expression] = STATE(727), + [sym_sizeof_expression] = STATE(727), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(727), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(727), + [sym_concatenated_string] = STATE(727), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_RPAREN] = ACTIONS(1639), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1641), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1643), + [sym_false] = ACTIONS(1643), + [sym_null] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), }, [503] = { - [anon_sym_case] = ACTIONS(2125), - [sym_true] = ACTIONS(2125), - [anon_sym_restrict] = ACTIONS(2125), - [sym_null] = ACTIONS(2125), - [anon_sym_goto] = ACTIONS(2125), - [anon_sym_const] = ACTIONS(2125), - [anon_sym_typedef] = ACTIONS(2125), - [anon_sym_DASH_DASH] = ACTIONS(2127), - [anon_sym_default] = ACTIONS(2125), - [anon_sym__Atomic] = ACTIONS(2125), - [sym_identifier] = ACTIONS(2125), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2125), - [sym_number_literal] = ACTIONS(2127), - [anon_sym_volatile] = ACTIONS(2125), - [anon_sym_SQUOTE] = ACTIONS(2127), - [anon_sym_extern] = ACTIONS(2125), - [anon_sym_PLUS_PLUS] = ACTIONS(2127), - [anon_sym_struct] = ACTIONS(2125), - [anon_sym_signed] = ACTIONS(2125), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(2125), - [anon_sym_while] = ACTIONS(2125), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2125), - [anon_sym_L_SQUOTE] = ACTIONS(2127), - [anon_sym___attribute__] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2125), - [anon_sym_LBRACE] = ACTIONS(2127), - [anon_sym_union] = ACTIONS(2125), - [anon_sym_unsigned] = ACTIONS(2125), - [anon_sym_short] = ACTIONS(2125), - [anon_sym_do] = ACTIONS(2125), - [sym_preproc_directive] = ACTIONS(2125), - [anon_sym_AMP] = ACTIONS(2127), - [aux_sym_preproc_if_token1] = ACTIONS(2125), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_L_DQUOTE] = ACTIONS(2127), - [anon_sym_LPAREN2] = ACTIONS(2127), - [anon_sym_RBRACE] = ACTIONS(2127), - [anon_sym_else] = ACTIONS(2125), - [sym_primitive_type] = ACTIONS(2125), - [anon_sym_for] = ACTIONS(2125), - [anon_sym_break] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2127), - [aux_sym_preproc_include_token1] = ACTIONS(2125), - [anon_sym_DASH] = ACTIONS(2125), - [anon_sym_static] = ACTIONS(2125), - [anon_sym_DQUOTE] = ACTIONS(2127), - [anon_sym_register] = ACTIONS(2125), - [anon_sym_STAR] = ACTIONS(2127), - [anon_sym_if] = ACTIONS(2125), - [anon_sym_switch] = ACTIONS(2125), - [anon_sym_enum] = ACTIONS(2125), - [sym_false] = ACTIONS(2125), - [ts_builtin_sym_end] = ACTIONS(2127), - [anon_sym_return] = ACTIONS(2125), - [anon_sym_continue] = ACTIONS(2125), - [anon_sym_SEMI] = ACTIONS(2127), - [aux_sym_preproc_def_token1] = ACTIONS(2125), - [anon_sym_PLUS] = ACTIONS(2125), - [anon_sym_auto] = ACTIONS(2125), - [anon_sym_inline] = ACTIONS(2125), + [sym__expression] = STATE(453), + [sym_conditional_expression] = STATE(453), + [sym_assignment_expression] = STATE(453), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(453), + [sym_binary_expression] = STATE(453), + [sym_update_expression] = STATE(453), + [sym_cast_expression] = STATE(453), + [sym_sizeof_expression] = STATE(453), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(453), + [sym_parenthesized_expression] = STATE(484), + [sym_initializer_list] = STATE(486), + [sym_char_literal] = STATE(453), + [sym_concatenated_string] = STATE(453), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(731), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(745), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(725), + [sym_false] = ACTIONS(725), + [sym_null] = ACTIONS(725), + [sym_comment] = ACTIONS(3), }, [504] = { - [sym_if_statement] = STATE(506), - [sym_do_statement] = STATE(506), - [sym_for_statement] = STATE(506), - [sym__expression] = STATE(34), - [sym_comma_expression] = STATE(35), - [sym_binary_expression] = STATE(34), - [sym_update_expression] = STATE(34), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(506), - [sym_return_statement] = STATE(506), - [sym_break_statement] = STATE(506), - [sym_conditional_expression] = STATE(34), - [sym_assignment_expression] = STATE(34), - [sym_cast_expression] = STATE(34), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(34), - [sym_char_literal] = STATE(34), - [sym_labeled_statement] = STATE(506), - [sym_while_statement] = STATE(506), - [sym_continue_statement] = STATE(506), - [sym_goto_statement] = STATE(506), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(34), - [sym_sizeof_expression] = STATE(34), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(34), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(506), - [sym_expression_statement] = STATE(506), - [anon_sym_LBRACE] = ACTIONS(35), - [sym_true] = ACTIONS(5), - [sym_null] = ACTIONS(5), - [anon_sym_do] = ACTIONS(39), - [anon_sym_goto] = ACTIONS(9), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(477), - [anon_sym_for] = ACTIONS(55), - [anon_sym_break] = ACTIONS(57), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(65), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(67), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(5), - [anon_sym_return] = ACTIONS(73), - [anon_sym_while] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_SEMI] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym__expression] = STATE(722), + [sym_comma_expression] = STATE(1145), + [sym_conditional_expression] = STATE(722), + [sym_assignment_expression] = STATE(722), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(722), + [sym_binary_expression] = STATE(722), + [sym_update_expression] = STATE(722), + [sym_cast_expression] = STATE(722), + [sym_sizeof_expression] = STATE(722), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(722), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(722), + [sym_concatenated_string] = STATE(722), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_RPAREN] = ACTIONS(1645), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1647), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1649), + [sym_false] = ACTIONS(1649), + [sym_null] = ACTIONS(1649), + [sym_comment] = ACTIONS(3), }, [505] = { - [anon_sym_case] = ACTIONS(2129), - [sym_true] = ACTIONS(2129), - [anon_sym_restrict] = ACTIONS(2129), - [sym_null] = ACTIONS(2129), - [anon_sym_goto] = ACTIONS(2129), - [anon_sym_const] = ACTIONS(2129), - [anon_sym_typedef] = ACTIONS(2129), - [anon_sym_DASH_DASH] = ACTIONS(2131), - [anon_sym_default] = ACTIONS(2129), - [anon_sym__Atomic] = ACTIONS(2129), - [sym_identifier] = ACTIONS(2129), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2129), - [sym_number_literal] = ACTIONS(2131), - [anon_sym_volatile] = ACTIONS(2129), - [anon_sym_SQUOTE] = ACTIONS(2131), - [anon_sym_extern] = ACTIONS(2129), - [anon_sym_PLUS_PLUS] = ACTIONS(2131), - [anon_sym_struct] = ACTIONS(2129), - [anon_sym_signed] = ACTIONS(2129), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(2129), - [anon_sym_while] = ACTIONS(2129), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2129), - [anon_sym_L_SQUOTE] = ACTIONS(2131), - [anon_sym___attribute__] = ACTIONS(2129), - [anon_sym_sizeof] = ACTIONS(2129), - [anon_sym_LBRACE] = ACTIONS(2131), - [anon_sym_union] = ACTIONS(2129), - [anon_sym_unsigned] = ACTIONS(2129), - [anon_sym_short] = ACTIONS(2129), - [anon_sym_do] = ACTIONS(2129), - [sym_preproc_directive] = ACTIONS(2129), - [anon_sym_AMP] = ACTIONS(2131), - [aux_sym_preproc_if_token1] = ACTIONS(2129), - [anon_sym_TILDE] = ACTIONS(2131), - [anon_sym_L_DQUOTE] = ACTIONS(2131), - [anon_sym_LPAREN2] = ACTIONS(2131), - [anon_sym_RBRACE] = ACTIONS(2131), - [anon_sym_else] = ACTIONS(2129), - [sym_primitive_type] = ACTIONS(2129), - [anon_sym_for] = ACTIONS(2129), - [anon_sym_break] = ACTIONS(2129), - [anon_sym_BANG] = ACTIONS(2131), - [aux_sym_preproc_include_token1] = ACTIONS(2129), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_static] = ACTIONS(2129), - [anon_sym_DQUOTE] = ACTIONS(2131), - [anon_sym_register] = ACTIONS(2129), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_if] = ACTIONS(2129), - [anon_sym_switch] = ACTIONS(2129), - [anon_sym_enum] = ACTIONS(2129), - [sym_false] = ACTIONS(2129), - [ts_builtin_sym_end] = ACTIONS(2131), - [anon_sym_return] = ACTIONS(2129), - [anon_sym_continue] = ACTIONS(2129), - [anon_sym_SEMI] = ACTIONS(2131), - [aux_sym_preproc_def_token1] = ACTIONS(2129), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_auto] = ACTIONS(2129), - [anon_sym_inline] = ACTIONS(2129), + [sym__expression] = STATE(711), + [sym_comma_expression] = STATE(1115), + [sym_conditional_expression] = STATE(711), + [sym_assignment_expression] = STATE(711), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_cast_expression] = STATE(711), + [sym_sizeof_expression] = STATE(711), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(711), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(711), + [sym_concatenated_string] = STATE(711), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_RPAREN] = ACTIONS(1651), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1653), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1655), + [sym_false] = ACTIONS(1655), + [sym_null] = ACTIONS(1655), + [sym_comment] = ACTIONS(3), }, [506] = { - [anon_sym_case] = ACTIONS(2133), - [sym_true] = ACTIONS(2133), - [anon_sym_restrict] = ACTIONS(2133), - [sym_null] = ACTIONS(2133), - [anon_sym_goto] = ACTIONS(2133), - [anon_sym_const] = ACTIONS(2133), - [anon_sym_typedef] = ACTIONS(2133), - [anon_sym_DASH_DASH] = ACTIONS(2135), - [anon_sym_default] = ACTIONS(2133), - [anon_sym__Atomic] = ACTIONS(2133), - [sym_identifier] = ACTIONS(2133), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2133), - [sym_number_literal] = ACTIONS(2135), - [anon_sym_volatile] = ACTIONS(2133), - [anon_sym_SQUOTE] = ACTIONS(2135), - [anon_sym_extern] = ACTIONS(2133), - [anon_sym_PLUS_PLUS] = ACTIONS(2135), - [anon_sym_struct] = ACTIONS(2133), - [anon_sym_signed] = ACTIONS(2133), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(2133), - [anon_sym_while] = ACTIONS(2133), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2133), - [anon_sym_L_SQUOTE] = ACTIONS(2135), - [anon_sym___attribute__] = ACTIONS(2133), - [anon_sym_sizeof] = ACTIONS(2133), - [anon_sym_LBRACE] = ACTIONS(2135), - [anon_sym_union] = ACTIONS(2133), - [anon_sym_unsigned] = ACTIONS(2133), - [anon_sym_short] = ACTIONS(2133), - [anon_sym_do] = ACTIONS(2133), - [sym_preproc_directive] = ACTIONS(2133), - [anon_sym_AMP] = ACTIONS(2135), - [aux_sym_preproc_if_token1] = ACTIONS(2133), - [anon_sym_TILDE] = ACTIONS(2135), - [anon_sym_L_DQUOTE] = ACTIONS(2135), - [anon_sym_LPAREN2] = ACTIONS(2135), - [anon_sym_RBRACE] = ACTIONS(2135), - [anon_sym_else] = ACTIONS(2133), - [sym_primitive_type] = ACTIONS(2133), - [anon_sym_for] = ACTIONS(2133), - [anon_sym_break] = ACTIONS(2133), - [anon_sym_BANG] = ACTIONS(2135), - [aux_sym_preproc_include_token1] = ACTIONS(2133), - [anon_sym_DASH] = ACTIONS(2133), - [anon_sym_static] = ACTIONS(2133), - [anon_sym_DQUOTE] = ACTIONS(2135), - [anon_sym_register] = ACTIONS(2133), - [anon_sym_STAR] = ACTIONS(2135), - [anon_sym_if] = ACTIONS(2133), - [anon_sym_switch] = ACTIONS(2133), - [anon_sym_enum] = ACTIONS(2133), - [sym_false] = ACTIONS(2133), - [ts_builtin_sym_end] = ACTIONS(2135), - [anon_sym_return] = ACTIONS(2133), - [anon_sym_continue] = ACTIONS(2133), - [anon_sym_SEMI] = ACTIONS(2135), - [aux_sym_preproc_def_token1] = ACTIONS(2133), - [anon_sym_PLUS] = ACTIONS(2133), - [anon_sym_auto] = ACTIONS(2133), - [anon_sym_inline] = ACTIONS(2133), + [sym__expression] = STATE(698), + [sym_comma_expression] = STATE(1232), + [sym_conditional_expression] = STATE(698), + [sym_assignment_expression] = STATE(698), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(698), + [sym_binary_expression] = STATE(698), + [sym_update_expression] = STATE(698), + [sym_cast_expression] = STATE(698), + [sym_sizeof_expression] = STATE(698), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(698), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(698), + [sym_concatenated_string] = STATE(698), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_SEMI] = ACTIONS(1657), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1659), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1661), + [sym_false] = ACTIONS(1661), + [sym_null] = ACTIONS(1661), + [sym_comment] = ACTIONS(3), }, [507] = { - [anon_sym_LT] = ACTIONS(197), - [anon_sym_GT_GT] = ACTIONS(197), - [anon_sym_PIPE_EQ] = ACTIONS(199), - [anon_sym_restrict] = ACTIONS(201), - [anon_sym_PERCENT_EQ] = ACTIONS(199), - [anon_sym_AMP_EQ] = ACTIONS(199), - [anon_sym_DASH_EQ] = ACTIONS(199), - [anon_sym_PIPE] = ACTIONS(197), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_EQ_EQ] = ACTIONS(203), - [anon_sym_AMP] = ACTIONS(197), - [anon_sym_SLASH] = ACTIONS(197), - [anon_sym_DASH_GT] = ACTIONS(203), - [anon_sym_const] = ACTIONS(201), - [anon_sym_LPAREN2] = ACTIONS(205), - [anon_sym_GT_EQ] = ACTIONS(203), - [anon_sym_LT_LT] = ACTIONS(197), - [anon_sym_DASH_DASH] = ACTIONS(203), - [anon_sym_EQ] = ACTIONS(209), - [anon_sym_COLON] = ACTIONS(211), - [anon_sym__Atomic] = ACTIONS(201), - [sym_identifier] = ACTIONS(201), - [anon_sym_PLUS_EQ] = ACTIONS(199), - [anon_sym_STAR_EQ] = ACTIONS(199), - [anon_sym_LT_LT_EQ] = ACTIONS(199), - [anon_sym_QMARK] = ACTIONS(203), - [anon_sym_PIPE_PIPE] = ACTIONS(203), - [anon_sym_BANG_EQ] = ACTIONS(203), - [anon_sym_CARET_EQ] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(203), - [anon_sym_static] = ACTIONS(201), - [anon_sym_volatile] = ACTIONS(201), - [anon_sym_register] = ACTIONS(201), - [anon_sym_extern] = ACTIONS(201), - [anon_sym_STAR] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_LT_EQ] = ACTIONS(203), - [anon_sym_PLUS_PLUS] = ACTIONS(203), - [sym_comment] = ACTIONS(3), - [anon_sym_SLASH_EQ] = ACTIONS(199), - [anon_sym_GT_GT_EQ] = ACTIONS(199), - [anon_sym_AMP_AMP] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(203), - [anon_sym_CARET] = ACTIONS(197), - [anon_sym_GT] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_auto] = ACTIONS(201), - [anon_sym_DOT] = ACTIONS(203), - [anon_sym_inline] = ACTIONS(201), - [anon_sym___attribute__] = ACTIONS(201), - [anon_sym_LBRACK] = ACTIONS(203), + [sym__expression] = STATE(710), + [sym_comma_expression] = STATE(1263), + [sym_conditional_expression] = STATE(710), + [sym_assignment_expression] = STATE(710), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(710), + [sym_binary_expression] = STATE(710), + [sym_update_expression] = STATE(710), + [sym_cast_expression] = STATE(710), + [sym_sizeof_expression] = STATE(710), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(710), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(710), + [sym_concatenated_string] = STATE(710), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_RPAREN] = ACTIONS(1663), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1665), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1667), + [sym_false] = ACTIONS(1667), + [sym_null] = ACTIONS(1667), + [sym_comment] = ACTIONS(3), }, [508] = { - [sym_true] = ACTIONS(255), - [anon_sym_restrict] = ACTIONS(255), - [sym_null] = ACTIONS(255), - [anon_sym_goto] = ACTIONS(255), - [anon_sym_const] = ACTIONS(255), - [anon_sym_typedef] = ACTIONS(255), - [anon_sym_DASH_DASH] = ACTIONS(257), - [anon_sym__Atomic] = ACTIONS(255), - [sym_identifier] = ACTIONS(255), - [aux_sym_preproc_ifdef_token1] = ACTIONS(255), - [sym_number_literal] = ACTIONS(257), - [anon_sym_volatile] = ACTIONS(255), - [anon_sym_SQUOTE] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(255), - [anon_sym_PLUS_PLUS] = ACTIONS(257), - [anon_sym_struct] = ACTIONS(255), - [anon_sym_signed] = ACTIONS(255), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(255), - [anon_sym_while] = ACTIONS(255), - [aux_sym_preproc_ifdef_token2] = ACTIONS(255), - [anon_sym_L_SQUOTE] = ACTIONS(257), - [anon_sym___attribute__] = ACTIONS(255), - [anon_sym_sizeof] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(257), - [anon_sym_union] = ACTIONS(255), - [anon_sym_unsigned] = ACTIONS(255), - [anon_sym_short] = ACTIONS(255), - [anon_sym_do] = ACTIONS(255), - [sym_preproc_directive] = ACTIONS(255), - [anon_sym_AMP] = ACTIONS(257), - [aux_sym_preproc_if_token1] = ACTIONS(255), - [anon_sym_TILDE] = ACTIONS(257), - [anon_sym_L_DQUOTE] = ACTIONS(257), - [anon_sym_LPAREN2] = ACTIONS(257), - [anon_sym_RBRACE] = ACTIONS(257), - [anon_sym_else] = ACTIONS(255), - [sym_primitive_type] = ACTIONS(255), - [anon_sym_for] = ACTIONS(255), - [anon_sym_break] = ACTIONS(255), - [anon_sym_BANG] = ACTIONS(257), - [aux_sym_preproc_include_token1] = ACTIONS(255), - [anon_sym_DASH] = ACTIONS(255), - [anon_sym_static] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(257), - [anon_sym_register] = ACTIONS(255), - [anon_sym_STAR] = ACTIONS(257), - [anon_sym_if] = ACTIONS(255), - [anon_sym_switch] = ACTIONS(255), - [anon_sym_enum] = ACTIONS(255), - [sym_false] = ACTIONS(255), - [anon_sym_return] = ACTIONS(255), - [anon_sym_continue] = ACTIONS(255), - [anon_sym_SEMI] = ACTIONS(257), - [aux_sym_preproc_def_token1] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(255), - [anon_sym_auto] = ACTIONS(255), - [anon_sym_inline] = ACTIONS(255), + [sym__expression] = STATE(720), + [sym_comma_expression] = STATE(1126), + [sym_conditional_expression] = STATE(720), + [sym_assignment_expression] = STATE(720), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(720), + [sym_binary_expression] = STATE(720), + [sym_update_expression] = STATE(720), + [sym_cast_expression] = STATE(720), + [sym_sizeof_expression] = STATE(720), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(720), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(720), + [sym_concatenated_string] = STATE(720), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_SEMI] = ACTIONS(1669), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1671), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1673), + [sym_false] = ACTIONS(1673), + [sym_null] = ACTIONS(1673), + [sym_comment] = ACTIONS(3), }, [509] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(116), - [anon_sym_unsigned] = ACTIONS(313), - [anon_sym_restrict] = ACTIONS(315), - [anon_sym_short] = ACTIONS(313), - [anon_sym_volatile] = ACTIONS(315), - [anon_sym_STAR] = ACTIONS(317), - [anon_sym_signed] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(313), - [anon_sym_const] = ACTIONS(315), - [anon_sym_LPAREN2] = ACTIONS(317), - [anon_sym__Atomic] = ACTIONS(315), - [anon_sym_RPAREN] = ACTIONS(317), - [sym_identifier] = ACTIONS(2137), - [sym_primitive_type] = ACTIONS(322), - [anon_sym_LBRACK] = ACTIONS(317), + [sym__expression] = STATE(702), + [sym_comma_expression] = STATE(1231), + [sym_conditional_expression] = STATE(702), + [sym_assignment_expression] = STATE(702), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(702), + [sym_binary_expression] = STATE(702), + [sym_update_expression] = STATE(702), + [sym_cast_expression] = STATE(702), + [sym_sizeof_expression] = STATE(702), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(702), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(702), + [sym_concatenated_string] = STATE(702), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_RPAREN] = ACTIONS(1675), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1677), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1679), + [sym_false] = ACTIONS(1679), + [sym_null] = ACTIONS(1679), + [sym_comment] = ACTIONS(3), }, [510] = { - [sym_true] = ACTIONS(336), - [anon_sym_restrict] = ACTIONS(336), - [sym_null] = ACTIONS(336), - [anon_sym_goto] = ACTIONS(336), - [anon_sym_const] = ACTIONS(336), - [anon_sym_typedef] = ACTIONS(336), - [anon_sym_DASH_DASH] = ACTIONS(338), - [anon_sym__Atomic] = ACTIONS(336), - [sym_identifier] = ACTIONS(336), - [aux_sym_preproc_ifdef_token1] = ACTIONS(336), - [sym_number_literal] = ACTIONS(338), - [anon_sym_volatile] = ACTIONS(336), - [anon_sym_SQUOTE] = ACTIONS(338), - [anon_sym_extern] = ACTIONS(336), - [anon_sym_PLUS_PLUS] = ACTIONS(338), - [anon_sym_struct] = ACTIONS(336), - [anon_sym_signed] = ACTIONS(336), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(336), - [anon_sym_while] = ACTIONS(336), - [aux_sym_preproc_ifdef_token2] = ACTIONS(336), - [anon_sym_L_SQUOTE] = ACTIONS(338), - [anon_sym___attribute__] = ACTIONS(336), - [anon_sym_sizeof] = ACTIONS(336), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_union] = ACTIONS(336), - [anon_sym_unsigned] = ACTIONS(336), - [anon_sym_short] = ACTIONS(336), - [anon_sym_do] = ACTIONS(336), - [sym_preproc_directive] = ACTIONS(336), - [anon_sym_AMP] = ACTIONS(338), - [aux_sym_preproc_if_token1] = ACTIONS(336), - [anon_sym_TILDE] = ACTIONS(338), - [anon_sym_L_DQUOTE] = ACTIONS(338), - [anon_sym_LPAREN2] = ACTIONS(338), - [anon_sym_RBRACE] = ACTIONS(338), - [anon_sym_else] = ACTIONS(336), - [sym_primitive_type] = ACTIONS(336), - [anon_sym_for] = ACTIONS(336), - [anon_sym_break] = ACTIONS(336), - [anon_sym_BANG] = ACTIONS(338), - [aux_sym_preproc_include_token1] = ACTIONS(336), - [anon_sym_DASH] = ACTIONS(336), - [anon_sym_static] = ACTIONS(336), - [anon_sym_DQUOTE] = ACTIONS(338), - [anon_sym_register] = ACTIONS(336), - [anon_sym_STAR] = ACTIONS(338), - [anon_sym_if] = ACTIONS(336), - [anon_sym_switch] = ACTIONS(336), - [anon_sym_enum] = ACTIONS(336), - [sym_false] = ACTIONS(336), - [anon_sym_return] = ACTIONS(336), - [anon_sym_continue] = ACTIONS(336), - [anon_sym_SEMI] = ACTIONS(338), - [aux_sym_preproc_def_token1] = ACTIONS(336), - [anon_sym_PLUS] = ACTIONS(336), - [anon_sym_auto] = ACTIONS(336), - [anon_sym_inline] = ACTIONS(336), + [sym__expression] = STATE(725), + [sym_comma_expression] = STATE(1144), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(484), + [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_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_RPAREN] = ACTIONS(1681), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1683), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1685), + [sym_false] = ACTIONS(1685), + [sym_null] = ACTIONS(1685), + [sym_comment] = ACTIONS(3), }, [511] = { - [sym_true] = ACTIONS(368), - [anon_sym_restrict] = ACTIONS(368), - [sym_null] = ACTIONS(368), - [anon_sym_goto] = ACTIONS(368), - [anon_sym_const] = ACTIONS(368), - [anon_sym_typedef] = ACTIONS(368), - [anon_sym_DASH_DASH] = ACTIONS(370), - [anon_sym__Atomic] = ACTIONS(368), - [sym_identifier] = ACTIONS(368), - [aux_sym_preproc_ifdef_token1] = ACTIONS(368), - [sym_number_literal] = ACTIONS(370), - [anon_sym_volatile] = ACTIONS(368), - [anon_sym_SQUOTE] = ACTIONS(370), - [anon_sym_extern] = ACTIONS(368), - [anon_sym_PLUS_PLUS] = ACTIONS(370), - [anon_sym_struct] = ACTIONS(368), - [anon_sym_signed] = ACTIONS(368), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(368), - [anon_sym_while] = ACTIONS(368), - [aux_sym_preproc_ifdef_token2] = ACTIONS(368), - [anon_sym_L_SQUOTE] = ACTIONS(370), - [anon_sym___attribute__] = ACTIONS(368), - [anon_sym_sizeof] = ACTIONS(368), - [anon_sym_LBRACE] = ACTIONS(370), - [anon_sym_union] = ACTIONS(368), - [anon_sym_unsigned] = ACTIONS(368), - [anon_sym_short] = ACTIONS(368), - [anon_sym_do] = ACTIONS(368), - [sym_preproc_directive] = ACTIONS(368), - [anon_sym_AMP] = ACTIONS(370), - [aux_sym_preproc_if_token1] = ACTIONS(368), - [anon_sym_TILDE] = ACTIONS(370), - [anon_sym_L_DQUOTE] = ACTIONS(370), - [anon_sym_LPAREN2] = ACTIONS(370), - [anon_sym_RBRACE] = ACTIONS(370), - [sym_primitive_type] = ACTIONS(368), - [anon_sym_for] = ACTIONS(368), - [anon_sym_break] = ACTIONS(368), - [anon_sym_BANG] = ACTIONS(370), - [aux_sym_preproc_include_token1] = ACTIONS(368), - [anon_sym_DASH] = ACTIONS(368), - [anon_sym_static] = ACTIONS(368), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_register] = ACTIONS(368), - [anon_sym_STAR] = ACTIONS(370), - [anon_sym_if] = ACTIONS(368), - [anon_sym_switch] = ACTIONS(368), - [anon_sym_enum] = ACTIONS(368), - [sym_false] = ACTIONS(368), - [anon_sym_return] = ACTIONS(368), - [anon_sym_continue] = ACTIONS(368), - [anon_sym_SEMI] = ACTIONS(370), - [aux_sym_preproc_def_token1] = ACTIONS(368), - [anon_sym_PLUS] = ACTIONS(368), - [anon_sym_auto] = ACTIONS(368), - [anon_sym_inline] = ACTIONS(368), + [sym__expression] = STATE(689), + [sym_comma_expression] = STATE(1283), + [sym_conditional_expression] = STATE(689), + [sym_assignment_expression] = STATE(689), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(689), + [sym_binary_expression] = STATE(689), + [sym_update_expression] = STATE(689), + [sym_cast_expression] = STATE(689), + [sym_sizeof_expression] = STATE(689), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(689), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(689), + [sym_concatenated_string] = STATE(689), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_RPAREN] = ACTIONS(1687), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1689), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1691), + [sym_false] = ACTIONS(1691), + [sym_null] = ACTIONS(1691), + [sym_comment] = ACTIONS(3), }, [512] = { - [anon_sym_LT] = ACTIONS(197), - [anon_sym_GT_GT] = ACTIONS(197), - [anon_sym_PIPE_EQ] = ACTIONS(199), - [anon_sym_restrict] = ACTIONS(201), - [anon_sym_PERCENT_EQ] = ACTIONS(199), - [anon_sym_AMP_EQ] = ACTIONS(199), - [anon_sym_DASH_EQ] = ACTIONS(199), - [anon_sym_PIPE] = ACTIONS(197), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_EQ_EQ] = ACTIONS(203), - [anon_sym_AMP] = ACTIONS(197), - [anon_sym_SLASH] = ACTIONS(197), - [anon_sym_DASH_GT] = ACTIONS(203), - [anon_sym_const] = ACTIONS(201), - [anon_sym_LPAREN2] = ACTIONS(205), - [anon_sym_GT_EQ] = ACTIONS(203), - [anon_sym_LT_LT] = ACTIONS(197), - [anon_sym_DASH_DASH] = ACTIONS(203), - [anon_sym_EQ] = ACTIONS(209), - [anon_sym__Atomic] = ACTIONS(201), - [sym_identifier] = ACTIONS(201), - [anon_sym_PLUS_EQ] = ACTIONS(199), - [anon_sym_STAR_EQ] = ACTIONS(199), - [anon_sym_LT_LT_EQ] = ACTIONS(199), - [anon_sym_QMARK] = ACTIONS(203), - [anon_sym_PIPE_PIPE] = ACTIONS(203), - [anon_sym_BANG_EQ] = ACTIONS(203), - [anon_sym_CARET_EQ] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(203), - [anon_sym_static] = ACTIONS(201), - [anon_sym_volatile] = ACTIONS(201), - [anon_sym_register] = ACTIONS(201), - [anon_sym_extern] = ACTIONS(201), - [anon_sym_STAR] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_LT_EQ] = ACTIONS(203), - [anon_sym_PLUS_PLUS] = ACTIONS(203), - [sym_comment] = ACTIONS(3), - [anon_sym_SLASH_EQ] = ACTIONS(199), - [anon_sym_GT_GT_EQ] = ACTIONS(199), - [anon_sym_AMP_AMP] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(203), - [anon_sym_CARET] = ACTIONS(197), - [anon_sym_GT] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_auto] = ACTIONS(201), - [anon_sym_DOT] = ACTIONS(203), - [anon_sym_inline] = ACTIONS(201), - [anon_sym___attribute__] = ACTIONS(201), - [anon_sym_LBRACK] = ACTIONS(203), + [sym__expression] = STATE(697), + [sym_comma_expression] = STATE(1233), + [sym_conditional_expression] = STATE(697), + [sym_assignment_expression] = STATE(697), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(697), + [sym_binary_expression] = STATE(697), + [sym_update_expression] = STATE(697), + [sym_cast_expression] = STATE(697), + [sym_sizeof_expression] = STATE(697), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(697), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(697), + [sym_concatenated_string] = STATE(697), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_RPAREN] = ACTIONS(1693), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1695), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1697), + [sym_false] = ACTIONS(1697), + [sym_null] = ACTIONS(1697), + [sym_comment] = ACTIONS(3), }, [513] = { - [sym_true] = ACTIONS(465), - [anon_sym_restrict] = ACTIONS(465), - [sym_null] = ACTIONS(465), - [anon_sym_goto] = ACTIONS(465), - [anon_sym_const] = ACTIONS(465), - [anon_sym_typedef] = ACTIONS(465), - [anon_sym_DASH_DASH] = ACTIONS(467), - [anon_sym__Atomic] = ACTIONS(465), - [sym_identifier] = ACTIONS(465), - [aux_sym_preproc_ifdef_token1] = ACTIONS(465), - [sym_number_literal] = ACTIONS(467), - [anon_sym_volatile] = ACTIONS(465), - [anon_sym_SQUOTE] = ACTIONS(467), - [anon_sym_extern] = ACTIONS(465), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_struct] = ACTIONS(465), - [anon_sym_signed] = ACTIONS(465), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(465), - [anon_sym_while] = ACTIONS(465), - [aux_sym_preproc_ifdef_token2] = ACTIONS(465), - [anon_sym_L_SQUOTE] = ACTIONS(467), - [anon_sym___attribute__] = ACTIONS(465), - [anon_sym_sizeof] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(467), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsigned] = ACTIONS(465), - [anon_sym_short] = ACTIONS(465), - [anon_sym_do] = ACTIONS(465), - [sym_preproc_directive] = ACTIONS(465), - [anon_sym_AMP] = ACTIONS(467), - [aux_sym_preproc_if_token1] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(467), - [anon_sym_L_DQUOTE] = ACTIONS(467), - [anon_sym_LPAREN2] = ACTIONS(467), - [sym_primitive_type] = ACTIONS(465), - [anon_sym_for] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_BANG] = ACTIONS(467), - [aux_sym_preproc_include_token1] = ACTIONS(465), - [anon_sym_DASH] = ACTIONS(465), - [anon_sym_static] = ACTIONS(465), - [anon_sym_DQUOTE] = ACTIONS(467), - [anon_sym_register] = ACTIONS(465), - [anon_sym_STAR] = ACTIONS(467), - [anon_sym_if] = ACTIONS(465), - [anon_sym_switch] = ACTIONS(465), - [anon_sym_enum] = ACTIONS(465), - [sym_false] = ACTIONS(465), - [ts_builtin_sym_end] = ACTIONS(467), - [anon_sym_return] = ACTIONS(465), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_SEMI] = ACTIONS(467), - [aux_sym_preproc_def_token1] = ACTIONS(465), - [anon_sym_PLUS] = ACTIONS(465), - [anon_sym_auto] = ACTIONS(465), - [anon_sym_inline] = ACTIONS(465), + [sym__expression] = STATE(687), + [sym_comma_expression] = STATE(1285), + [sym_conditional_expression] = STATE(687), + [sym_assignment_expression] = STATE(687), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(687), + [sym_binary_expression] = STATE(687), + [sym_update_expression] = STATE(687), + [sym_cast_expression] = STATE(687), + [sym_sizeof_expression] = STATE(687), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(687), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(687), + [sym_concatenated_string] = STATE(687), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_RPAREN] = ACTIONS(1699), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1701), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1703), + [sym_false] = ACTIONS(1703), + [sym_null] = ACTIONS(1703), + [sym_comment] = ACTIONS(3), }, [514] = { - [sym_if_statement] = STATE(542), - [sym_do_statement] = STATE(542), - [sym_for_statement] = STATE(542), - [sym__expression] = STATE(867), - [sym_comma_expression] = STATE(868), - [sym_binary_expression] = STATE(867), - [sym_update_expression] = STATE(867), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(542), - [sym_return_statement] = STATE(542), - [sym_break_statement] = STATE(542), - [sym_conditional_expression] = STATE(867), - [sym_assignment_expression] = STATE(867), - [sym_cast_expression] = STATE(867), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(867), - [sym_char_literal] = STATE(867), - [sym_labeled_statement] = STATE(542), - [sym_while_statement] = STATE(542), - [sym_continue_statement] = STATE(542), - [sym_goto_statement] = STATE(542), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(867), - [sym_sizeof_expression] = STATE(867), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(867), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(542), - [sym_expression_statement] = STATE(542), - [anon_sym_LBRACE] = ACTIONS(97), - [sym_true] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [anon_sym_do] = ACTIONS(99), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(2139), - [anon_sym_for] = ACTIONS(109), - [anon_sym_break] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(115), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(117), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(81), - [anon_sym_return] = ACTIONS(119), - [anon_sym_while] = ACTIONS(95), - [anon_sym_continue] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym__expression] = STATE(692), + [sym_comma_expression] = STATE(1292), + [sym_conditional_expression] = STATE(692), + [sym_assignment_expression] = STATE(692), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(692), + [sym_binary_expression] = STATE(692), + [sym_update_expression] = STATE(692), + [sym_cast_expression] = STATE(692), + [sym_sizeof_expression] = STATE(692), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(692), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(692), + [sym_concatenated_string] = STATE(692), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_SEMI] = ACTIONS(1705), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1707), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1709), + [sym_false] = ACTIONS(1709), + [sym_null] = ACTIONS(1709), + [sym_comment] = ACTIONS(3), }, [515] = { - [sym_true] = ACTIONS(487), - [anon_sym_restrict] = ACTIONS(487), - [sym_null] = ACTIONS(487), - [anon_sym_goto] = ACTIONS(487), - [anon_sym_const] = ACTIONS(487), - [anon_sym_typedef] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(489), - [anon_sym__Atomic] = ACTIONS(487), - [sym_identifier] = ACTIONS(487), - [aux_sym_preproc_ifdef_token1] = ACTIONS(487), - [sym_number_literal] = ACTIONS(489), - [anon_sym_volatile] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [anon_sym_extern] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(489), - [anon_sym_struct] = ACTIONS(487), - [anon_sym_signed] = ACTIONS(487), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(487), - [anon_sym_while] = ACTIONS(487), - [aux_sym_preproc_ifdef_token2] = ACTIONS(487), - [anon_sym_L_SQUOTE] = ACTIONS(489), - [anon_sym___attribute__] = ACTIONS(487), - [anon_sym_sizeof] = ACTIONS(487), - [anon_sym_LBRACE] = ACTIONS(489), - [anon_sym_union] = ACTIONS(487), - [anon_sym_unsigned] = ACTIONS(487), - [anon_sym_short] = ACTIONS(487), - [anon_sym_do] = ACTIONS(487), - [sym_preproc_directive] = ACTIONS(487), - [anon_sym_AMP] = ACTIONS(489), - [aux_sym_preproc_if_token1] = ACTIONS(487), - [anon_sym_TILDE] = ACTIONS(489), - [anon_sym_L_DQUOTE] = ACTIONS(489), - [anon_sym_LPAREN2] = ACTIONS(489), - [anon_sym_RBRACE] = ACTIONS(489), - [anon_sym_else] = ACTIONS(487), - [sym_primitive_type] = ACTIONS(487), - [anon_sym_for] = ACTIONS(487), - [anon_sym_break] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(489), - [aux_sym_preproc_include_token1] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_static] = ACTIONS(487), - [anon_sym_DQUOTE] = ACTIONS(489), - [anon_sym_register] = ACTIONS(487), - [anon_sym_STAR] = ACTIONS(489), - [anon_sym_if] = ACTIONS(487), - [anon_sym_switch] = ACTIONS(487), - [anon_sym_enum] = ACTIONS(487), - [sym_false] = ACTIONS(487), - [anon_sym_return] = ACTIONS(487), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(489), - [aux_sym_preproc_def_token1] = ACTIONS(487), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_auto] = ACTIONS(487), - [anon_sym_inline] = ACTIONS(487), + [sym__expression] = STATE(728), + [sym_comma_expression] = STATE(1142), + [sym_conditional_expression] = STATE(728), + [sym_assignment_expression] = STATE(728), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(728), + [sym_binary_expression] = STATE(728), + [sym_update_expression] = STATE(728), + [sym_cast_expression] = STATE(728), + [sym_sizeof_expression] = STATE(728), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(728), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(728), + [sym_concatenated_string] = STATE(728), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_RPAREN] = ACTIONS(1711), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1713), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1715), + [sym_false] = ACTIONS(1715), + [sym_null] = ACTIONS(1715), + [sym_comment] = ACTIONS(3), }, [516] = { - [sym_true] = ACTIONS(493), - [anon_sym_restrict] = ACTIONS(493), - [sym_null] = ACTIONS(493), - [anon_sym_goto] = ACTIONS(493), - [anon_sym_const] = ACTIONS(493), - [anon_sym_typedef] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(495), - [anon_sym__Atomic] = ACTIONS(493), - [sym_identifier] = ACTIONS(493), - [aux_sym_preproc_ifdef_token1] = ACTIONS(493), - [sym_number_literal] = ACTIONS(495), - [anon_sym_volatile] = ACTIONS(493), - [anon_sym_SQUOTE] = ACTIONS(495), - [anon_sym_extern] = ACTIONS(493), - [anon_sym_PLUS_PLUS] = ACTIONS(495), - [anon_sym_struct] = ACTIONS(493), - [anon_sym_signed] = ACTIONS(493), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(493), - [anon_sym_while] = ACTIONS(493), - [aux_sym_preproc_ifdef_token2] = ACTIONS(493), - [anon_sym_L_SQUOTE] = ACTIONS(495), - [anon_sym___attribute__] = ACTIONS(493), - [anon_sym_sizeof] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_union] = ACTIONS(493), - [anon_sym_unsigned] = ACTIONS(493), - [anon_sym_short] = ACTIONS(493), - [anon_sym_do] = ACTIONS(493), - [sym_preproc_directive] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(495), - [aux_sym_preproc_if_token1] = ACTIONS(493), - [anon_sym_TILDE] = ACTIONS(495), - [anon_sym_L_DQUOTE] = ACTIONS(495), - [anon_sym_LPAREN2] = ACTIONS(495), - [anon_sym_RBRACE] = ACTIONS(495), - [sym_primitive_type] = ACTIONS(493), - [anon_sym_for] = ACTIONS(493), - [anon_sym_break] = ACTIONS(493), - [anon_sym_BANG] = ACTIONS(495), - [aux_sym_preproc_include_token1] = ACTIONS(493), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_static] = ACTIONS(493), - [anon_sym_DQUOTE] = ACTIONS(495), - [anon_sym_register] = ACTIONS(493), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_if] = ACTIONS(493), - [anon_sym_switch] = ACTIONS(493), - [anon_sym_enum] = ACTIONS(493), - [sym_false] = ACTIONS(493), - [anon_sym_return] = ACTIONS(493), - [anon_sym_continue] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(495), - [aux_sym_preproc_def_token1] = ACTIONS(493), - [anon_sym_PLUS] = ACTIONS(493), - [anon_sym_auto] = ACTIONS(493), - [anon_sym_inline] = ACTIONS(493), + [sym__expression] = STATE(667), + [sym_comma_expression] = STATE(1138), + [sym_conditional_expression] = STATE(667), + [sym_assignment_expression] = STATE(667), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(667), + [sym_binary_expression] = STATE(667), + [sym_update_expression] = STATE(667), + [sym_cast_expression] = STATE(667), + [sym_sizeof_expression] = STATE(667), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(667), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(667), + [sym_concatenated_string] = STATE(667), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_RPAREN] = ACTIONS(1717), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1719), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1721), + [sym_false] = ACTIONS(1721), + [sym_null] = ACTIONS(1721), + [sym_comment] = ACTIONS(3), }, [517] = { - [sym_if_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym__expression] = STATE(867), - [sym_comma_expression] = STATE(868), - [sym_binary_expression] = STATE(867), - [sym_update_expression] = STATE(867), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_conditional_expression] = STATE(867), - [sym_assignment_expression] = STATE(867), - [sym_cast_expression] = STATE(867), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(867), - [sym_char_literal] = STATE(867), - [sym_labeled_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(867), - [sym_sizeof_expression] = STATE(867), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(867), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [anon_sym_LBRACE] = ACTIONS(97), - [sym_true] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [anon_sym_do] = ACTIONS(99), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(2139), - [anon_sym_for] = ACTIONS(109), - [anon_sym_break] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(115), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(117), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(81), - [anon_sym_return] = ACTIONS(119), - [anon_sym_while] = ACTIONS(95), - [anon_sym_continue] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym__expression] = STATE(726), + [sym_comma_expression] = STATE(1135), + [sym_conditional_expression] = STATE(726), + [sym_assignment_expression] = STATE(726), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(726), + [sym_binary_expression] = STATE(726), + [sym_update_expression] = STATE(726), + [sym_cast_expression] = STATE(726), + [sym_sizeof_expression] = STATE(726), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(726), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(726), + [sym_concatenated_string] = STATE(726), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_RPAREN] = ACTIONS(1723), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1725), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1727), + [sym_false] = ACTIONS(1727), + [sym_null] = ACTIONS(1727), + [sym_comment] = ACTIONS(3), }, [518] = { - [sym_true] = ACTIONS(529), - [anon_sym_restrict] = ACTIONS(529), - [sym_null] = ACTIONS(529), - [anon_sym_goto] = ACTIONS(529), - [anon_sym_const] = ACTIONS(529), - [anon_sym_typedef] = ACTIONS(529), - [anon_sym_DASH_DASH] = ACTIONS(531), - [anon_sym__Atomic] = ACTIONS(529), - [sym_identifier] = ACTIONS(529), - [aux_sym_preproc_ifdef_token1] = ACTIONS(529), - [sym_number_literal] = ACTIONS(531), - [anon_sym_volatile] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [anon_sym_extern] = ACTIONS(529), - [anon_sym_PLUS_PLUS] = ACTIONS(531), - [anon_sym_struct] = ACTIONS(529), - [anon_sym_signed] = ACTIONS(529), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(529), - [anon_sym_while] = ACTIONS(529), - [aux_sym_preproc_ifdef_token2] = ACTIONS(529), - [anon_sym_L_SQUOTE] = ACTIONS(531), - [anon_sym___attribute__] = ACTIONS(529), - [anon_sym_sizeof] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_union] = ACTIONS(529), - [anon_sym_unsigned] = ACTIONS(529), - [anon_sym_short] = ACTIONS(529), - [anon_sym_do] = ACTIONS(529), - [sym_preproc_directive] = ACTIONS(529), - [anon_sym_AMP] = ACTIONS(531), - [aux_sym_preproc_if_token1] = ACTIONS(529), - [anon_sym_TILDE] = ACTIONS(531), - [anon_sym_L_DQUOTE] = ACTIONS(531), - [anon_sym_LPAREN2] = ACTIONS(531), - [anon_sym_RBRACE] = ACTIONS(531), - [anon_sym_else] = ACTIONS(529), - [sym_primitive_type] = ACTIONS(529), - [anon_sym_for] = ACTIONS(529), - [anon_sym_break] = ACTIONS(529), - [anon_sym_BANG] = ACTIONS(531), - [aux_sym_preproc_include_token1] = ACTIONS(529), - [anon_sym_DASH] = ACTIONS(529), - [anon_sym_static] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [anon_sym_register] = ACTIONS(529), - [anon_sym_STAR] = ACTIONS(531), - [anon_sym_if] = ACTIONS(529), - [anon_sym_switch] = ACTIONS(529), - [anon_sym_enum] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [anon_sym_return] = ACTIONS(529), - [anon_sym_continue] = ACTIONS(529), - [anon_sym_SEMI] = ACTIONS(531), - [aux_sym_preproc_def_token1] = ACTIONS(529), - [anon_sym_PLUS] = ACTIONS(529), - [anon_sym_auto] = ACTIONS(529), - [anon_sym_inline] = ACTIONS(529), + [sym__expression] = STATE(682), + [sym_comma_expression] = STATE(1180), + [sym_conditional_expression] = STATE(682), + [sym_assignment_expression] = STATE(682), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(682), + [sym_binary_expression] = STATE(682), + [sym_update_expression] = STATE(682), + [sym_cast_expression] = STATE(682), + [sym_sizeof_expression] = STATE(682), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(682), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(682), + [sym_concatenated_string] = STATE(682), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_RPAREN] = ACTIONS(1729), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1731), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1733), + [sym_false] = ACTIONS(1733), + [sym_null] = ACTIONS(1733), + [sym_comment] = ACTIONS(3), }, [519] = { - [sym_if_statement] = STATE(548), - [sym_do_statement] = STATE(548), - [sym_for_statement] = STATE(548), - [sym__expression] = STATE(867), - [sym_comma_expression] = STATE(868), - [sym_binary_expression] = STATE(867), - [sym_update_expression] = STATE(867), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(548), - [sym_return_statement] = STATE(548), - [sym_break_statement] = STATE(548), - [sym_conditional_expression] = STATE(867), - [sym_assignment_expression] = STATE(867), - [sym_cast_expression] = STATE(867), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(867), - [sym_char_literal] = STATE(867), - [sym_labeled_statement] = STATE(548), - [sym_while_statement] = STATE(548), - [sym_continue_statement] = STATE(548), - [sym_goto_statement] = STATE(548), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(867), - [sym_sizeof_expression] = STATE(867), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(867), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(548), - [sym_expression_statement] = STATE(548), - [anon_sym_LBRACE] = ACTIONS(97), - [sym_true] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [anon_sym_do] = ACTIONS(99), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(2139), - [anon_sym_for] = ACTIONS(109), - [anon_sym_break] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(115), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(117), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(81), - [anon_sym_return] = ACTIONS(119), - [anon_sym_while] = ACTIONS(95), - [anon_sym_continue] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym__expression] = STATE(680), + [sym_comma_expression] = STATE(1185), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_RPAREN] = ACTIONS(1735), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1737), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1739), + [sym_false] = ACTIONS(1739), + [sym_null] = ACTIONS(1739), + [sym_comment] = ACTIONS(3), }, [520] = { - [sym_true] = ACTIONS(535), - [anon_sym_restrict] = ACTIONS(535), - [sym_null] = ACTIONS(535), - [anon_sym_goto] = ACTIONS(535), - [anon_sym_const] = ACTIONS(535), - [anon_sym_typedef] = ACTIONS(535), - [anon_sym_DASH_DASH] = ACTIONS(537), - [anon_sym__Atomic] = ACTIONS(535), - [sym_identifier] = ACTIONS(535), - [aux_sym_preproc_ifdef_token1] = ACTIONS(535), - [sym_number_literal] = ACTIONS(537), - [anon_sym_volatile] = ACTIONS(535), - [anon_sym_SQUOTE] = ACTIONS(537), - [anon_sym_extern] = ACTIONS(535), - [anon_sym_PLUS_PLUS] = ACTIONS(537), - [anon_sym_struct] = ACTIONS(535), - [anon_sym_signed] = ACTIONS(535), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(535), - [anon_sym_while] = ACTIONS(535), - [aux_sym_preproc_ifdef_token2] = ACTIONS(535), - [anon_sym_L_SQUOTE] = ACTIONS(537), - [anon_sym___attribute__] = ACTIONS(535), - [anon_sym_sizeof] = ACTIONS(535), - [anon_sym_LBRACE] = ACTIONS(537), - [anon_sym_union] = ACTIONS(535), - [anon_sym_unsigned] = ACTIONS(535), - [anon_sym_short] = ACTIONS(535), - [anon_sym_do] = ACTIONS(535), - [sym_preproc_directive] = ACTIONS(535), - [anon_sym_AMP] = ACTIONS(537), - [aux_sym_preproc_if_token1] = ACTIONS(535), - [anon_sym_TILDE] = ACTIONS(537), - [anon_sym_L_DQUOTE] = ACTIONS(537), - [anon_sym_LPAREN2] = ACTIONS(537), - [anon_sym_RBRACE] = ACTIONS(537), - [anon_sym_else] = ACTIONS(535), - [sym_primitive_type] = ACTIONS(535), - [anon_sym_for] = ACTIONS(535), - [anon_sym_break] = ACTIONS(535), - [anon_sym_BANG] = ACTIONS(537), - [aux_sym_preproc_include_token1] = ACTIONS(535), - [anon_sym_DASH] = ACTIONS(535), - [anon_sym_static] = ACTIONS(535), - [anon_sym_DQUOTE] = ACTIONS(537), - [anon_sym_register] = ACTIONS(535), - [anon_sym_STAR] = ACTIONS(537), - [anon_sym_if] = ACTIONS(535), - [anon_sym_switch] = ACTIONS(535), - [anon_sym_enum] = ACTIONS(535), - [sym_false] = ACTIONS(535), - [anon_sym_return] = ACTIONS(535), - [anon_sym_continue] = ACTIONS(535), - [anon_sym_SEMI] = ACTIONS(537), - [aux_sym_preproc_def_token1] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(535), - [anon_sym_auto] = ACTIONS(535), - [anon_sym_inline] = ACTIONS(535), + [sym__expression] = STATE(685), + [sym_comma_expression] = STATE(1130), + [sym_conditional_expression] = STATE(685), + [sym_assignment_expression] = STATE(685), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(685), + [sym_binary_expression] = STATE(685), + [sym_update_expression] = STATE(685), + [sym_cast_expression] = STATE(685), + [sym_sizeof_expression] = STATE(685), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(685), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(685), + [sym_concatenated_string] = STATE(685), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_SEMI] = ACTIONS(1741), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1743), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1745), + [sym_false] = ACTIONS(1745), + [sym_null] = ACTIONS(1745), + [sym_comment] = ACTIONS(3), }, [521] = { - [sym_char_literal] = STATE(550), - [sym__expression] = STATE(550), - [sym_binary_expression] = STATE(550), - [sym_update_expression] = STATE(550), - [sym_call_expression] = STATE(550), - [sym_pointer_expression] = STATE(550), - [sym_unary_expression] = STATE(550), - [sym_sizeof_expression] = STATE(550), - [sym_subscript_expression] = STATE(550), - [sym_parenthesized_expression] = STATE(550), - [sym_concatenated_string] = STATE(550), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(550), - [sym_assignment_expression] = STATE(550), - [sym_cast_expression] = STATE(550), - [sym_field_expression] = STATE(550), - [sym_compound_literal_expression] = STATE(550), - [sym_true] = ACTIONS(2141), - [sym_null] = ACTIONS(2141), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(155), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(159), - [sym_identifier] = ACTIONS(2141), - [anon_sym_BANG] = ACTIONS(155), - [anon_sym_DASH] = ACTIONS(161), - [sym_number_literal] = ACTIONS(2143), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(159), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2141), - [anon_sym_PLUS] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(165), + [sym__expression] = STATE(686), + [sym_comma_expression] = STATE(1152), + [sym_conditional_expression] = STATE(686), + [sym_assignment_expression] = STATE(686), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(686), + [sym_binary_expression] = STATE(686), + [sym_update_expression] = STATE(686), + [sym_cast_expression] = STATE(686), + [sym_sizeof_expression] = STATE(686), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(686), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(686), + [sym_concatenated_string] = STATE(686), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_RPAREN] = ACTIONS(1747), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1749), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1751), + [sym_false] = ACTIONS(1751), + [sym_null] = ACTIONS(1751), + [sym_comment] = ACTIONS(3), }, [522] = { - [sym_char_literal] = STATE(551), - [sym__expression] = STATE(551), - [sym_binary_expression] = STATE(551), - [sym_update_expression] = STATE(551), - [sym_call_expression] = STATE(551), - [sym_pointer_expression] = STATE(551), - [sym_unary_expression] = STATE(551), - [sym_sizeof_expression] = STATE(551), - [sym_subscript_expression] = STATE(551), - [sym_parenthesized_expression] = STATE(551), - [sym_concatenated_string] = STATE(551), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(551), - [sym_assignment_expression] = STATE(551), - [sym_cast_expression] = STATE(551), - [sym_field_expression] = STATE(551), - [sym_compound_literal_expression] = STATE(551), - [sym_true] = ACTIONS(2145), - [sym_null] = ACTIONS(2145), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(155), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(159), - [sym_identifier] = ACTIONS(2145), - [anon_sym_BANG] = ACTIONS(155), - [anon_sym_DASH] = ACTIONS(161), - [sym_number_literal] = ACTIONS(2147), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(159), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2145), - [anon_sym_PLUS] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(165), + [sym__expression] = STATE(679), + [sym_comma_expression] = STATE(1288), + [sym_conditional_expression] = STATE(679), + [sym_assignment_expression] = STATE(679), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(679), + [sym_binary_expression] = STATE(679), + [sym_update_expression] = STATE(679), + [sym_cast_expression] = STATE(679), + [sym_sizeof_expression] = STATE(679), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(679), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(679), + [sym_concatenated_string] = STATE(679), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_RPAREN] = ACTIONS(1753), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1755), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1757), + [sym_false] = ACTIONS(1757), + [sym_null] = ACTIONS(1757), + [sym_comment] = ACTIONS(3), }, [523] = { - [sym_char_literal] = STATE(552), - [sym__expression] = STATE(552), - [sym_binary_expression] = STATE(552), - [sym_update_expression] = STATE(552), - [sym_call_expression] = STATE(552), - [sym_pointer_expression] = STATE(552), - [sym_unary_expression] = STATE(552), - [sym_sizeof_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_parenthesized_expression] = STATE(552), - [sym_concatenated_string] = STATE(552), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(552), - [sym_assignment_expression] = STATE(552), - [sym_cast_expression] = STATE(552), - [sym_field_expression] = STATE(552), - [sym_compound_literal_expression] = STATE(552), - [sym_true] = ACTIONS(2149), - [sym_null] = ACTIONS(2149), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(155), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(159), - [sym_identifier] = ACTIONS(2149), - [anon_sym_BANG] = ACTIONS(155), - [anon_sym_DASH] = ACTIONS(161), - [sym_number_literal] = ACTIONS(2151), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(159), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2149), - [anon_sym_PLUS] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(165), + [sym__expression] = STATE(677), + [sym_comma_expression] = STATE(1206), + [sym_conditional_expression] = STATE(677), + [sym_assignment_expression] = STATE(677), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(677), + [sym_binary_expression] = STATE(677), + [sym_update_expression] = STATE(677), + [sym_cast_expression] = STATE(677), + [sym_sizeof_expression] = STATE(677), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(677), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(677), + [sym_concatenated_string] = STATE(677), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_RPAREN] = ACTIONS(1759), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1761), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1763), + [sym_false] = ACTIONS(1763), + [sym_null] = ACTIONS(1763), + [sym_comment] = ACTIONS(3), }, [524] = { - [sym_char_literal] = STATE(553), - [sym__expression] = STATE(553), - [sym_binary_expression] = STATE(553), - [sym_update_expression] = STATE(553), - [sym_call_expression] = STATE(553), - [sym_pointer_expression] = STATE(553), - [sym_unary_expression] = STATE(553), - [sym_sizeof_expression] = STATE(553), - [sym_subscript_expression] = STATE(553), - [sym_parenthesized_expression] = STATE(553), - [sym_concatenated_string] = STATE(553), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(553), - [sym_assignment_expression] = STATE(553), - [sym_cast_expression] = STATE(553), - [sym_field_expression] = STATE(553), - [sym_compound_literal_expression] = STATE(553), - [sym_true] = ACTIONS(2153), - [sym_null] = ACTIONS(2153), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(155), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(159), - [sym_identifier] = ACTIONS(2153), - [anon_sym_BANG] = ACTIONS(155), - [anon_sym_DASH] = ACTIONS(161), - [sym_number_literal] = ACTIONS(2155), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(159), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2153), - [anon_sym_PLUS] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(165), + [sym__expression] = STATE(684), + [sym_comma_expression] = STATE(1169), + [sym_conditional_expression] = STATE(684), + [sym_assignment_expression] = STATE(684), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(684), + [sym_binary_expression] = STATE(684), + [sym_update_expression] = STATE(684), + [sym_cast_expression] = STATE(684), + [sym_sizeof_expression] = STATE(684), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(684), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(684), + [sym_concatenated_string] = STATE(684), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_RPAREN] = ACTIONS(1765), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1767), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1769), + [sym_false] = ACTIONS(1769), + [sym_null] = ACTIONS(1769), + [sym_comment] = ACTIONS(3), }, [525] = { - [sym_char_literal] = STATE(554), - [sym__expression] = STATE(554), - [sym_binary_expression] = STATE(554), - [sym_update_expression] = STATE(554), - [sym_call_expression] = STATE(554), - [sym_pointer_expression] = STATE(554), - [sym_unary_expression] = STATE(554), - [sym_sizeof_expression] = STATE(554), - [sym_subscript_expression] = STATE(554), - [sym_parenthesized_expression] = STATE(554), - [sym_concatenated_string] = STATE(554), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(554), - [sym_assignment_expression] = STATE(554), - [sym_cast_expression] = STATE(554), - [sym_field_expression] = STATE(554), - [sym_compound_literal_expression] = STATE(554), - [sym_true] = ACTIONS(2157), - [sym_null] = ACTIONS(2157), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(155), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(159), - [sym_identifier] = ACTIONS(2157), - [anon_sym_BANG] = ACTIONS(155), - [anon_sym_DASH] = ACTIONS(161), - [sym_number_literal] = ACTIONS(2159), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(159), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2157), - [anon_sym_PLUS] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(165), + [sym__expression] = STATE(675), + [sym_comma_expression] = STATE(1211), + [sym_conditional_expression] = STATE(675), + [sym_assignment_expression] = STATE(675), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(675), + [sym_binary_expression] = STATE(675), + [sym_update_expression] = STATE(675), + [sym_cast_expression] = STATE(675), + [sym_sizeof_expression] = STATE(675), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(675), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(675), + [sym_concatenated_string] = STATE(675), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_RPAREN] = ACTIONS(1771), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1773), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1775), + [sym_false] = ACTIONS(1775), + [sym_null] = ACTIONS(1775), + [sym_comment] = ACTIONS(3), }, [526] = { - [sym_char_literal] = STATE(197), - [sym__expression] = STATE(197), - [sym_binary_expression] = STATE(197), - [sym_update_expression] = STATE(197), - [sym_call_expression] = STATE(197), - [sym_pointer_expression] = STATE(197), - [sym_unary_expression] = STATE(197), - [sym_sizeof_expression] = STATE(197), - [sym_subscript_expression] = STATE(197), - [sym_parenthesized_expression] = STATE(197), - [sym_concatenated_string] = STATE(197), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(197), - [sym_assignment_expression] = STATE(197), - [sym_cast_expression] = STATE(197), - [sym_field_expression] = STATE(197), - [sym_compound_literal_expression] = STATE(197), - [sym_true] = ACTIONS(577), - [sym_null] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(155), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(159), - [sym_identifier] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(155), - [anon_sym_DASH] = ACTIONS(161), - [sym_number_literal] = ACTIONS(579), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(159), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(577), - [anon_sym_PLUS] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(165), + [sym__expression] = STATE(674), + [sym_comma_expression] = STATE(1212), + [sym_conditional_expression] = STATE(674), + [sym_assignment_expression] = STATE(674), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(674), + [sym_binary_expression] = STATE(674), + [sym_update_expression] = STATE(674), + [sym_cast_expression] = STATE(674), + [sym_sizeof_expression] = STATE(674), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(674), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(674), + [sym_concatenated_string] = STATE(674), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_RPAREN] = ACTIONS(1777), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1779), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1781), + [sym_false] = ACTIONS(1781), + [sym_null] = ACTIONS(1781), + [sym_comment] = ACTIONS(3), }, [527] = { - [sym_char_literal] = STATE(555), - [sym__expression] = STATE(555), - [sym_binary_expression] = STATE(555), - [sym_update_expression] = STATE(555), - [sym_call_expression] = STATE(555), - [sym_pointer_expression] = STATE(555), - [sym_unary_expression] = STATE(555), - [sym_sizeof_expression] = STATE(555), - [sym_subscript_expression] = STATE(555), - [sym_parenthesized_expression] = STATE(555), - [sym_concatenated_string] = STATE(555), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(555), - [sym_assignment_expression] = STATE(555), - [sym_cast_expression] = STATE(555), - [sym_field_expression] = STATE(555), - [sym_compound_literal_expression] = STATE(555), - [sym_true] = ACTIONS(2161), - [sym_null] = ACTIONS(2161), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(155), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(159), - [sym_identifier] = ACTIONS(2161), - [anon_sym_BANG] = ACTIONS(155), - [anon_sym_DASH] = ACTIONS(161), - [sym_number_literal] = ACTIONS(2163), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(159), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2161), - [anon_sym_PLUS] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(165), + [sym__expression] = STATE(683), + [sym_comma_expression] = STATE(1118), + [sym_conditional_expression] = STATE(683), + [sym_assignment_expression] = STATE(683), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(683), + [sym_binary_expression] = STATE(683), + [sym_update_expression] = STATE(683), + [sym_cast_expression] = STATE(683), + [sym_sizeof_expression] = STATE(683), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(683), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(683), + [sym_concatenated_string] = STATE(683), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_RPAREN] = ACTIONS(1783), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1785), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1787), + [sym_false] = ACTIONS(1787), + [sym_null] = ACTIONS(1787), + [sym_comment] = ACTIONS(3), }, [528] = { - [sym_char_literal] = STATE(556), - [sym__expression] = STATE(556), - [sym_binary_expression] = STATE(556), - [sym_update_expression] = STATE(556), - [sym_call_expression] = STATE(556), - [sym_pointer_expression] = STATE(556), - [sym_unary_expression] = STATE(556), - [sym_sizeof_expression] = STATE(556), - [sym_subscript_expression] = STATE(556), - [sym_parenthesized_expression] = STATE(556), - [sym_concatenated_string] = STATE(556), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(556), - [sym_assignment_expression] = STATE(556), - [sym_cast_expression] = STATE(556), - [sym_field_expression] = STATE(556), - [sym_compound_literal_expression] = STATE(556), - [sym_true] = ACTIONS(2165), - [sym_null] = ACTIONS(2165), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(155), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(159), - [sym_identifier] = ACTIONS(2165), - [anon_sym_BANG] = ACTIONS(155), - [anon_sym_DASH] = ACTIONS(161), - [sym_number_literal] = ACTIONS(2167), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(159), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2165), - [anon_sym_PLUS] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(165), + [sym__expression] = STATE(701), + [sym_conditional_expression] = STATE(701), + [sym_assignment_expression] = STATE(701), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(701), + [sym_binary_expression] = STATE(701), + [sym_update_expression] = STATE(701), + [sym_cast_expression] = STATE(701), + [sym_sizeof_expression] = STATE(701), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(701), + [sym_parenthesized_expression] = STATE(484), + [sym_initializer_list] = STATE(1063), + [sym_char_literal] = STATE(701), + [sym_concatenated_string] = STATE(701), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(731), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1789), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1791), + [sym_false] = ACTIONS(1791), + [sym_null] = ACTIONS(1791), + [sym_comment] = ACTIONS(3), }, [529] = { - [sym_char_literal] = STATE(557), - [sym__expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_update_expression] = STATE(557), - [sym_call_expression] = STATE(557), - [sym_pointer_expression] = STATE(557), - [sym_unary_expression] = STATE(557), - [sym_sizeof_expression] = STATE(557), - [sym_subscript_expression] = STATE(557), - [sym_parenthesized_expression] = STATE(557), - [sym_concatenated_string] = STATE(557), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(557), - [sym_assignment_expression] = STATE(557), - [sym_cast_expression] = STATE(557), - [sym_field_expression] = STATE(557), - [sym_compound_literal_expression] = STATE(557), - [sym_true] = ACTIONS(2169), - [sym_null] = ACTIONS(2169), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(155), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(159), - [sym_identifier] = ACTIONS(2169), - [anon_sym_BANG] = ACTIONS(155), - [anon_sym_DASH] = ACTIONS(161), - [sym_number_literal] = ACTIONS(2171), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(159), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2169), - [anon_sym_PLUS] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(165), + [sym__expression] = STATE(681), + [sym_comma_expression] = STATE(1184), + [sym_conditional_expression] = STATE(681), + [sym_assignment_expression] = STATE(681), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_cast_expression] = STATE(681), + [sym_sizeof_expression] = STATE(681), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(681), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(681), + [sym_concatenated_string] = STATE(681), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_RPAREN] = ACTIONS(1793), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1795), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1797), + [sym_false] = ACTIONS(1797), + [sym_null] = ACTIONS(1797), + [sym_comment] = ACTIONS(3), }, [530] = { - [sym_true] = ACTIONS(605), - [anon_sym_restrict] = ACTIONS(605), - [sym_null] = ACTIONS(605), - [anon_sym_goto] = ACTIONS(605), - [anon_sym_const] = ACTIONS(605), - [anon_sym_typedef] = ACTIONS(605), - [anon_sym_DASH_DASH] = ACTIONS(607), - [anon_sym__Atomic] = ACTIONS(605), - [sym_identifier] = ACTIONS(605), - [aux_sym_preproc_ifdef_token1] = ACTIONS(605), - [sym_number_literal] = ACTIONS(607), - [anon_sym_volatile] = ACTIONS(605), - [anon_sym_SQUOTE] = ACTIONS(607), - [anon_sym_extern] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(607), - [anon_sym_struct] = ACTIONS(605), - [anon_sym_signed] = ACTIONS(605), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(605), - [anon_sym_while] = ACTIONS(605), - [aux_sym_preproc_ifdef_token2] = ACTIONS(605), - [anon_sym_L_SQUOTE] = ACTIONS(607), - [anon_sym___attribute__] = ACTIONS(605), - [anon_sym_sizeof] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(607), - [anon_sym_union] = ACTIONS(605), - [anon_sym_unsigned] = ACTIONS(605), - [anon_sym_short] = ACTIONS(605), - [anon_sym_do] = ACTIONS(605), - [sym_preproc_directive] = ACTIONS(605), - [anon_sym_AMP] = ACTIONS(607), - [aux_sym_preproc_if_token1] = ACTIONS(605), - [anon_sym_TILDE] = ACTIONS(607), - [anon_sym_L_DQUOTE] = ACTIONS(607), - [anon_sym_LPAREN2] = ACTIONS(607), - [anon_sym_RBRACE] = ACTIONS(607), - [anon_sym_else] = ACTIONS(605), - [sym_primitive_type] = ACTIONS(605), - [anon_sym_for] = ACTIONS(605), - [anon_sym_break] = ACTIONS(605), - [anon_sym_BANG] = ACTIONS(607), - [aux_sym_preproc_include_token1] = ACTIONS(605), - [anon_sym_DASH] = ACTIONS(605), - [anon_sym_static] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(607), - [anon_sym_register] = ACTIONS(605), - [anon_sym_STAR] = ACTIONS(607), - [anon_sym_if] = ACTIONS(605), - [anon_sym_switch] = ACTIONS(605), - [anon_sym_enum] = ACTIONS(605), - [sym_false] = ACTIONS(605), - [anon_sym_return] = ACTIONS(605), - [anon_sym_continue] = ACTIONS(605), - [anon_sym_SEMI] = ACTIONS(607), - [aux_sym_preproc_def_token1] = ACTIONS(605), - [anon_sym_PLUS] = ACTIONS(605), - [anon_sym_auto] = ACTIONS(605), - [anon_sym_inline] = ACTIONS(605), + [sym__expression] = STATE(672), + [sym_comma_expression] = STATE(1218), + [sym_conditional_expression] = STATE(672), + [sym_assignment_expression] = STATE(672), + [sym_pointer_expression] = STATE(484), + [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_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(672), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(672), + [sym_concatenated_string] = STATE(672), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_RPAREN] = ACTIONS(1799), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1801), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1803), + [sym_false] = ACTIONS(1803), + [sym_null] = ACTIONS(1803), + [sym_comment] = ACTIONS(3), }, [531] = { - [sym_char_literal] = STATE(558), - [sym__expression] = STATE(558), - [sym_binary_expression] = STATE(558), - [sym_update_expression] = STATE(558), - [sym_call_expression] = STATE(558), - [sym_pointer_expression] = STATE(558), - [sym_unary_expression] = STATE(558), - [sym_sizeof_expression] = STATE(558), - [sym_subscript_expression] = STATE(558), - [sym_parenthesized_expression] = STATE(558), - [sym_concatenated_string] = STATE(558), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(558), - [sym_assignment_expression] = STATE(558), - [sym_cast_expression] = STATE(558), - [sym_field_expression] = STATE(558), - [sym_compound_literal_expression] = STATE(558), - [sym_true] = ACTIONS(2173), - [sym_null] = ACTIONS(2173), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(155), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(159), - [sym_identifier] = ACTIONS(2173), - [anon_sym_BANG] = ACTIONS(155), - [anon_sym_DASH] = ACTIONS(161), - [sym_number_literal] = ACTIONS(2175), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(159), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2173), - [anon_sym_PLUS] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(165), + [sym__expression] = STATE(678), + [sym_comma_expression] = STATE(1194), + [sym_conditional_expression] = STATE(678), + [sym_assignment_expression] = STATE(678), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(678), + [sym_binary_expression] = STATE(678), + [sym_update_expression] = STATE(678), + [sym_cast_expression] = STATE(678), + [sym_sizeof_expression] = STATE(678), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(678), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(678), + [sym_concatenated_string] = STATE(678), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_RPAREN] = ACTIONS(1805), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1807), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1809), + [sym_false] = ACTIONS(1809), + [sym_null] = ACTIONS(1809), + [sym_comment] = ACTIONS(3), }, [532] = { - [sym_true] = ACTIONS(621), - [anon_sym_restrict] = ACTIONS(621), - [sym_null] = ACTIONS(621), - [anon_sym_goto] = ACTIONS(621), - [anon_sym_const] = ACTIONS(621), - [anon_sym_typedef] = ACTIONS(621), - [anon_sym_DASH_DASH] = ACTIONS(623), - [anon_sym__Atomic] = ACTIONS(621), - [sym_identifier] = ACTIONS(621), - [aux_sym_preproc_ifdef_token1] = ACTIONS(621), - [sym_number_literal] = ACTIONS(623), - [anon_sym_volatile] = ACTIONS(621), - [anon_sym_SQUOTE] = ACTIONS(623), - [anon_sym_extern] = ACTIONS(621), - [anon_sym_PLUS_PLUS] = ACTIONS(623), - [anon_sym_struct] = ACTIONS(621), - [anon_sym_signed] = ACTIONS(621), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(621), - [anon_sym_while] = ACTIONS(621), - [aux_sym_preproc_ifdef_token2] = ACTIONS(621), - [anon_sym_L_SQUOTE] = ACTIONS(623), - [anon_sym___attribute__] = ACTIONS(621), - [anon_sym_sizeof] = ACTIONS(621), - [anon_sym_LBRACE] = ACTIONS(623), - [anon_sym_union] = ACTIONS(621), - [anon_sym_unsigned] = ACTIONS(621), - [anon_sym_short] = ACTIONS(621), - [anon_sym_do] = ACTIONS(621), - [sym_preproc_directive] = ACTIONS(621), - [anon_sym_AMP] = ACTIONS(623), - [aux_sym_preproc_if_token1] = ACTIONS(621), - [anon_sym_TILDE] = ACTIONS(623), - [anon_sym_L_DQUOTE] = ACTIONS(623), - [anon_sym_LPAREN2] = ACTIONS(623), - [anon_sym_RBRACE] = ACTIONS(623), - [sym_primitive_type] = ACTIONS(621), - [anon_sym_for] = ACTIONS(621), - [anon_sym_break] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(623), - [aux_sym_preproc_include_token1] = ACTIONS(621), - [anon_sym_DASH] = ACTIONS(621), - [anon_sym_static] = ACTIONS(621), - [anon_sym_DQUOTE] = ACTIONS(623), - [anon_sym_register] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(623), - [anon_sym_if] = ACTIONS(621), - [anon_sym_switch] = ACTIONS(621), - [anon_sym_enum] = ACTIONS(621), - [sym_false] = ACTIONS(621), - [anon_sym_return] = ACTIONS(621), - [anon_sym_continue] = ACTIONS(621), - [anon_sym_SEMI] = ACTIONS(623), - [aux_sym_preproc_def_token1] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(621), - [anon_sym_auto] = ACTIONS(621), - [anon_sym_inline] = ACTIONS(621), + [sym__expression] = STATE(693), + [sym_comma_expression] = STATE(1280), + [sym_conditional_expression] = STATE(693), + [sym_assignment_expression] = STATE(693), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(693), + [sym_binary_expression] = STATE(693), + [sym_update_expression] = STATE(693), + [sym_cast_expression] = STATE(693), + [sym_sizeof_expression] = STATE(693), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(693), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(693), + [sym_concatenated_string] = STATE(693), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_RPAREN] = ACTIONS(1811), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1813), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1815), + [sym_false] = ACTIONS(1815), + [sym_null] = ACTIONS(1815), + [sym_comment] = ACTIONS(3), }, [533] = { - [sym_if_statement] = STATE(533), - [sym_preproc_def] = STATE(533), - [sym_preproc_function_def] = STATE(533), - [sym__expression] = STATE(867), - [sym_comma_expression] = STATE(868), - [sym_binary_expression] = STATE(867), - [sym_update_expression] = STATE(867), - [sym_call_expression] = STATE(36), - [sym_function_definition] = STATE(533), - [sym_declaration] = STATE(533), - [sym_do_statement] = STATE(533), - [sym_for_statement] = STATE(533), - [aux_sym_translation_unit_repeat1] = STATE(533), - [sym_expression_statement] = STATE(533), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(869), - [sym_union_specifier] = STATE(869), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_switch_statement] = STATE(533), - [sym_return_statement] = STATE(533), - [sym_preproc_call] = STATE(533), - [sym_conditional_expression] = STATE(867), - [sym_assignment_expression] = STATE(867), - [sym_type_definition] = STATE(533), - [sym_cast_expression] = STATE(867), - [sym__declaration_specifiers] = STATE(1151), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(867), - [sym_char_literal] = STATE(867), - [sym_break_statement] = STATE(533), - [sym__empty_declaration] = STATE(533), - [sym_sized_type_specifier] = STATE(869), - [sym_enum_specifier] = STATE(869), - [sym_labeled_statement] = STATE(533), - [sym_preproc_include] = STATE(533), - [sym_preproc_if] = STATE(533), - [sym_preproc_ifdef] = STATE(533), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(867), - [sym_sizeof_expression] = STATE(867), - [sym_attribute_specifier] = STATE(43), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_linkage_specification] = STATE(533), - [sym_concatenated_string] = STATE(867), - [sym_string_literal] = STATE(41), - [sym_macro_type_specifier] = STATE(869), - [sym_while_statement] = STATE(533), - [sym_storage_class_specifier] = STATE(43), - [sym_compound_statement] = STATE(533), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_continue_statement] = STATE(533), - [sym_struct_specifier] = STATE(869), - [sym_goto_statement] = STATE(533), - [sym_true] = ACTIONS(2177), - [anon_sym_restrict] = ACTIONS(665), - [sym_null] = ACTIONS(2177), - [anon_sym_goto] = ACTIONS(2180), - [anon_sym_const] = ACTIONS(665), - [anon_sym_typedef] = ACTIONS(2183), - [anon_sym_DASH_DASH] = ACTIONS(674), - [anon_sym__Atomic] = ACTIONS(665), - [sym_identifier] = ACTIONS(2186), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2189), - [sym_number_literal] = ACTIONS(2192), - [anon_sym_volatile] = ACTIONS(665), - [anon_sym_SQUOTE] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(2195), - [anon_sym_PLUS_PLUS] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(692), - [anon_sym_signed] = ACTIONS(695), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(695), - [anon_sym_while] = ACTIONS(2198), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2189), - [anon_sym_L_SQUOTE] = ACTIONS(686), - [anon_sym___attribute__] = ACTIONS(701), - [anon_sym_sizeof] = ACTIONS(704), - [anon_sym_LBRACE] = ACTIONS(2201), - [anon_sym_union] = ACTIONS(710), - [anon_sym_unsigned] = ACTIONS(695), - [anon_sym_short] = ACTIONS(695), - [anon_sym_do] = ACTIONS(2204), - [sym_preproc_directive] = ACTIONS(2207), - [anon_sym_AMP] = ACTIONS(719), - [aux_sym_preproc_if_token1] = ACTIONS(2210), - [anon_sym_TILDE] = ACTIONS(725), - [anon_sym_L_DQUOTE] = ACTIONS(728), - [anon_sym_LPAREN2] = ACTIONS(731), - [anon_sym_RBRACE] = ACTIONS(761), - [sym_primitive_type] = ACTIONS(2213), - [anon_sym_for] = ACTIONS(2216), - [anon_sym_break] = ACTIONS(2219), - [anon_sym_BANG] = ACTIONS(725), - [aux_sym_preproc_include_token1] = ACTIONS(2222), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_static] = ACTIONS(749), - [anon_sym_DQUOTE] = ACTIONS(728), - [anon_sym_register] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(719), - [anon_sym_if] = ACTIONS(2225), - [anon_sym_switch] = ACTIONS(2228), - [anon_sym_enum] = ACTIONS(758), - [sym_false] = ACTIONS(2177), - [anon_sym_return] = ACTIONS(2231), - [anon_sym_continue] = ACTIONS(2234), - [anon_sym_SEMI] = ACTIONS(2237), - [aux_sym_preproc_def_token1] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(746), - [anon_sym_auto] = ACTIONS(749), - [anon_sym_inline] = ACTIONS(749), + [sym__expression] = STATE(718), + [sym_comma_expression] = STATE(1251), + [sym_conditional_expression] = STATE(718), + [sym_assignment_expression] = STATE(718), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(718), + [sym_binary_expression] = STATE(718), + [sym_update_expression] = STATE(718), + [sym_cast_expression] = STATE(718), + [sym_sizeof_expression] = STATE(718), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(718), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(718), + [sym_concatenated_string] = STATE(718), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_RPAREN] = ACTIONS(1817), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1819), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1821), + [sym_false] = ACTIONS(1821), + [sym_null] = ACTIONS(1821), + [sym_comment] = ACTIONS(3), }, [534] = { - [sym_true] = ACTIONS(792), - [anon_sym_restrict] = ACTIONS(792), - [sym_null] = ACTIONS(792), - [anon_sym_goto] = ACTIONS(792), - [anon_sym_const] = ACTIONS(792), - [anon_sym_typedef] = ACTIONS(792), - [anon_sym_DASH_DASH] = ACTIONS(794), - [anon_sym__Atomic] = ACTIONS(792), - [sym_identifier] = ACTIONS(792), - [aux_sym_preproc_ifdef_token1] = ACTIONS(792), - [sym_number_literal] = ACTIONS(794), - [anon_sym_volatile] = ACTIONS(792), - [anon_sym_SQUOTE] = ACTIONS(794), - [anon_sym_extern] = ACTIONS(792), - [anon_sym_PLUS_PLUS] = ACTIONS(794), - [anon_sym_struct] = ACTIONS(792), - [anon_sym_signed] = ACTIONS(792), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(792), - [anon_sym_while] = ACTIONS(792), - [aux_sym_preproc_ifdef_token2] = ACTIONS(792), - [anon_sym_L_SQUOTE] = ACTIONS(794), - [anon_sym___attribute__] = ACTIONS(792), - [anon_sym_sizeof] = ACTIONS(792), - [anon_sym_LBRACE] = ACTIONS(794), - [anon_sym_union] = ACTIONS(792), - [anon_sym_unsigned] = ACTIONS(792), - [anon_sym_short] = ACTIONS(792), - [anon_sym_do] = ACTIONS(792), - [sym_preproc_directive] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(794), - [aux_sym_preproc_if_token1] = ACTIONS(792), - [anon_sym_TILDE] = ACTIONS(794), - [anon_sym_L_DQUOTE] = ACTIONS(794), - [anon_sym_LPAREN2] = ACTIONS(794), - [anon_sym_RBRACE] = ACTIONS(794), - [anon_sym_else] = ACTIONS(792), - [sym_primitive_type] = ACTIONS(792), - [anon_sym_for] = ACTIONS(792), - [anon_sym_break] = ACTIONS(792), - [anon_sym_BANG] = ACTIONS(794), - [aux_sym_preproc_include_token1] = ACTIONS(792), - [anon_sym_DASH] = ACTIONS(792), - [anon_sym_static] = ACTIONS(792), - [anon_sym_DQUOTE] = ACTIONS(794), - [anon_sym_register] = ACTIONS(792), - [anon_sym_STAR] = ACTIONS(794), - [anon_sym_if] = ACTIONS(792), - [anon_sym_switch] = ACTIONS(792), - [anon_sym_enum] = ACTIONS(792), - [sym_false] = ACTIONS(792), - [anon_sym_return] = ACTIONS(792), - [anon_sym_continue] = ACTIONS(792), - [anon_sym_SEMI] = ACTIONS(794), - [aux_sym_preproc_def_token1] = ACTIONS(792), - [anon_sym_PLUS] = ACTIONS(792), - [anon_sym_auto] = ACTIONS(792), - [anon_sym_inline] = ACTIONS(792), + [sym__expression] = STATE(717), + [sym_comma_expression] = STATE(1250), + [sym_conditional_expression] = STATE(717), + [sym_assignment_expression] = STATE(717), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(717), + [sym_binary_expression] = STATE(717), + [sym_update_expression] = STATE(717), + [sym_cast_expression] = STATE(717), + [sym_sizeof_expression] = STATE(717), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(717), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(717), + [sym_concatenated_string] = STATE(717), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_RPAREN] = ACTIONS(1823), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1825), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1827), + [sym_false] = ACTIONS(1827), + [sym_null] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), }, [535] = { - [sym_true] = ACTIONS(822), - [anon_sym_restrict] = ACTIONS(822), - [sym_null] = ACTIONS(822), - [anon_sym_goto] = ACTIONS(822), - [anon_sym_const] = ACTIONS(822), - [anon_sym_typedef] = ACTIONS(822), - [anon_sym_DASH_DASH] = ACTIONS(824), - [anon_sym__Atomic] = ACTIONS(822), - [sym_identifier] = ACTIONS(822), - [aux_sym_preproc_ifdef_token1] = ACTIONS(822), - [sym_number_literal] = ACTIONS(824), - [anon_sym_volatile] = ACTIONS(822), - [anon_sym_SQUOTE] = ACTIONS(824), - [anon_sym_extern] = ACTIONS(822), - [anon_sym_PLUS_PLUS] = ACTIONS(824), - [anon_sym_struct] = ACTIONS(822), - [anon_sym_signed] = ACTIONS(822), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(822), - [anon_sym_while] = ACTIONS(822), - [aux_sym_preproc_ifdef_token2] = ACTIONS(822), - [anon_sym_L_SQUOTE] = ACTIONS(824), - [anon_sym___attribute__] = ACTIONS(822), - [anon_sym_sizeof] = ACTIONS(822), - [anon_sym_LBRACE] = ACTIONS(824), - [anon_sym_union] = ACTIONS(822), - [anon_sym_unsigned] = ACTIONS(822), - [anon_sym_short] = ACTIONS(822), - [anon_sym_do] = ACTIONS(822), - [sym_preproc_directive] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(824), - [aux_sym_preproc_if_token1] = ACTIONS(822), - [anon_sym_TILDE] = ACTIONS(824), - [anon_sym_L_DQUOTE] = ACTIONS(824), - [anon_sym_LPAREN2] = ACTIONS(824), - [anon_sym_RBRACE] = ACTIONS(824), - [anon_sym_else] = ACTIONS(822), - [sym_primitive_type] = ACTIONS(822), - [anon_sym_for] = ACTIONS(822), - [anon_sym_break] = ACTIONS(822), - [anon_sym_BANG] = ACTIONS(824), - [aux_sym_preproc_include_token1] = ACTIONS(822), - [anon_sym_DASH] = ACTIONS(822), - [anon_sym_static] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(824), - [anon_sym_register] = ACTIONS(822), - [anon_sym_STAR] = ACTIONS(824), - [anon_sym_if] = ACTIONS(822), - [anon_sym_switch] = ACTIONS(822), - [anon_sym_enum] = ACTIONS(822), - [sym_false] = ACTIONS(822), - [anon_sym_return] = ACTIONS(822), - [anon_sym_continue] = ACTIONS(822), - [anon_sym_SEMI] = ACTIONS(824), - [aux_sym_preproc_def_token1] = ACTIONS(822), - [anon_sym_PLUS] = ACTIONS(822), - [anon_sym_auto] = ACTIONS(822), - [anon_sym_inline] = ACTIONS(822), + [sym__expression] = STATE(453), + [sym_conditional_expression] = STATE(453), + [sym_assignment_expression] = STATE(453), + [sym_pointer_expression] = STATE(453), + [sym_unary_expression] = STATE(453), + [sym_binary_expression] = STATE(453), + [sym_update_expression] = STATE(453), + [sym_cast_expression] = STATE(453), + [sym_sizeof_expression] = STATE(453), + [sym_subscript_expression] = STATE(453), + [sym_call_expression] = STATE(453), + [sym_field_expression] = STATE(453), + [sym_compound_literal_expression] = STATE(453), + [sym_parenthesized_expression] = STATE(453), + [sym_initializer_list] = STATE(486), + [sym_char_literal] = STATE(453), + [sym_concatenated_string] = STATE(453), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(725), + [anon_sym_LPAREN2] = ACTIONS(729), + [anon_sym_LBRACE] = ACTIONS(731), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_TILDE] = ACTIONS(739), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH_DASH] = ACTIONS(741), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_sizeof] = ACTIONS(743), + [sym_number_literal] = ACTIONS(745), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(725), + [sym_false] = ACTIONS(725), + [sym_null] = ACTIONS(725), + [sym_comment] = ACTIONS(3), }, [536] = { - [sym_true] = ACTIONS(826), - [anon_sym_restrict] = ACTIONS(826), - [sym_null] = ACTIONS(826), - [anon_sym_goto] = ACTIONS(826), - [anon_sym_const] = ACTIONS(826), - [anon_sym_typedef] = ACTIONS(826), - [anon_sym_DASH_DASH] = ACTIONS(828), - [anon_sym__Atomic] = ACTIONS(826), - [sym_identifier] = ACTIONS(826), - [aux_sym_preproc_ifdef_token1] = ACTIONS(826), - [sym_number_literal] = ACTIONS(828), - [anon_sym_volatile] = ACTIONS(826), - [anon_sym_SQUOTE] = ACTIONS(828), - [anon_sym_extern] = ACTIONS(826), - [anon_sym_PLUS_PLUS] = ACTIONS(828), - [anon_sym_struct] = ACTIONS(826), - [anon_sym_signed] = ACTIONS(826), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(826), - [anon_sym_while] = ACTIONS(826), - [aux_sym_preproc_ifdef_token2] = ACTIONS(826), - [anon_sym_L_SQUOTE] = ACTIONS(828), - [anon_sym___attribute__] = ACTIONS(826), - [anon_sym_sizeof] = ACTIONS(826), - [anon_sym_LBRACE] = ACTIONS(828), - [anon_sym_union] = ACTIONS(826), - [anon_sym_unsigned] = ACTIONS(826), - [anon_sym_short] = ACTIONS(826), - [anon_sym_do] = ACTIONS(826), - [sym_preproc_directive] = ACTIONS(826), - [anon_sym_AMP] = ACTIONS(828), - [aux_sym_preproc_if_token1] = ACTIONS(826), - [anon_sym_TILDE] = ACTIONS(828), - [anon_sym_L_DQUOTE] = ACTIONS(828), - [anon_sym_LPAREN2] = ACTIONS(828), - [anon_sym_RBRACE] = ACTIONS(828), - [sym_primitive_type] = ACTIONS(826), - [anon_sym_for] = ACTIONS(826), - [anon_sym_break] = ACTIONS(826), - [anon_sym_BANG] = ACTIONS(828), - [aux_sym_preproc_include_token1] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_static] = ACTIONS(826), - [anon_sym_DQUOTE] = ACTIONS(828), - [anon_sym_register] = ACTIONS(826), - [anon_sym_STAR] = ACTIONS(828), - [anon_sym_if] = ACTIONS(826), - [anon_sym_switch] = ACTIONS(826), - [anon_sym_enum] = ACTIONS(826), - [sym_false] = ACTIONS(826), - [anon_sym_return] = ACTIONS(826), - [anon_sym_continue] = ACTIONS(826), - [anon_sym_SEMI] = ACTIONS(828), - [aux_sym_preproc_def_token1] = ACTIONS(826), - [anon_sym_PLUS] = ACTIONS(826), - [anon_sym_auto] = ACTIONS(826), - [anon_sym_inline] = ACTIONS(826), + [sym__expression] = STATE(695), + [sym_comma_expression] = STATE(1278), + [sym_conditional_expression] = STATE(695), + [sym_assignment_expression] = STATE(695), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(695), + [sym_binary_expression] = STATE(695), + [sym_update_expression] = STATE(695), + [sym_cast_expression] = STATE(695), + [sym_sizeof_expression] = STATE(695), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(695), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(695), + [sym_concatenated_string] = STATE(695), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_RPAREN] = ACTIONS(1829), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1831), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1833), + [sym_false] = ACTIONS(1833), + [sym_null] = ACTIONS(1833), + [sym_comment] = ACTIONS(3), }, [537] = { - [sym_true] = ACTIONS(830), - [anon_sym_restrict] = ACTIONS(830), - [sym_null] = ACTIONS(830), - [anon_sym_goto] = ACTIONS(830), - [anon_sym_const] = ACTIONS(830), - [anon_sym_typedef] = ACTIONS(830), - [anon_sym_DASH_DASH] = ACTIONS(832), - [anon_sym__Atomic] = ACTIONS(830), - [sym_identifier] = ACTIONS(830), - [aux_sym_preproc_ifdef_token1] = ACTIONS(830), - [sym_number_literal] = ACTIONS(832), - [anon_sym_volatile] = ACTIONS(830), - [anon_sym_SQUOTE] = ACTIONS(832), - [anon_sym_extern] = ACTIONS(830), - [anon_sym_PLUS_PLUS] = ACTIONS(832), - [anon_sym_struct] = ACTIONS(830), - [anon_sym_signed] = ACTIONS(830), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(830), - [anon_sym_while] = ACTIONS(830), - [aux_sym_preproc_ifdef_token2] = ACTIONS(830), - [anon_sym_L_SQUOTE] = ACTIONS(832), - [anon_sym___attribute__] = ACTIONS(830), - [anon_sym_sizeof] = ACTIONS(830), - [anon_sym_LBRACE] = ACTIONS(832), - [anon_sym_union] = ACTIONS(830), - [anon_sym_unsigned] = ACTIONS(830), - [anon_sym_short] = ACTIONS(830), - [anon_sym_do] = ACTIONS(830), - [sym_preproc_directive] = ACTIONS(830), - [anon_sym_AMP] = ACTIONS(832), - [aux_sym_preproc_if_token1] = ACTIONS(830), - [anon_sym_TILDE] = ACTIONS(832), - [anon_sym_L_DQUOTE] = ACTIONS(832), - [anon_sym_LPAREN2] = ACTIONS(832), - [anon_sym_RBRACE] = ACTIONS(832), - [sym_primitive_type] = ACTIONS(830), - [anon_sym_for] = ACTIONS(830), - [anon_sym_break] = ACTIONS(830), - [anon_sym_BANG] = ACTIONS(832), - [aux_sym_preproc_include_token1] = ACTIONS(830), - [anon_sym_DASH] = ACTIONS(830), - [anon_sym_static] = ACTIONS(830), - [anon_sym_DQUOTE] = ACTIONS(832), - [anon_sym_register] = ACTIONS(830), - [anon_sym_STAR] = ACTIONS(832), - [anon_sym_if] = ACTIONS(830), - [anon_sym_switch] = ACTIONS(830), - [anon_sym_enum] = ACTIONS(830), - [sym_false] = ACTIONS(830), - [anon_sym_return] = ACTIONS(830), - [anon_sym_continue] = ACTIONS(830), - [anon_sym_SEMI] = ACTIONS(832), - [aux_sym_preproc_def_token1] = ACTIONS(830), - [anon_sym_PLUS] = ACTIONS(830), - [anon_sym_auto] = ACTIONS(830), - [anon_sym_inline] = ACTIONS(830), + [sym__expression] = STATE(694), + [sym_comma_expression] = STATE(1279), + [sym_conditional_expression] = STATE(694), + [sym_assignment_expression] = STATE(694), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(694), + [sym_binary_expression] = STATE(694), + [sym_update_expression] = STATE(694), + [sym_cast_expression] = STATE(694), + [sym_sizeof_expression] = STATE(694), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(694), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(694), + [sym_concatenated_string] = STATE(694), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_RPAREN] = ACTIONS(1835), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1837), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1839), + [sym_false] = ACTIONS(1839), + [sym_null] = ACTIONS(1839), + [sym_comment] = ACTIONS(3), }, [538] = { - [sym_char_literal] = STATE(237), - [sym__expression] = STATE(237), - [sym_binary_expression] = STATE(237), - [sym_update_expression] = STATE(237), - [sym_call_expression] = STATE(237), - [sym_pointer_expression] = STATE(237), - [sym_unary_expression] = STATE(237), - [sym_sizeof_expression] = STATE(237), - [sym_subscript_expression] = STATE(237), - [sym_parenthesized_expression] = STATE(237), - [sym_initializer_list] = STATE(238), - [sym_concatenated_string] = STATE(237), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(237), - [sym_assignment_expression] = STATE(237), - [sym_cast_expression] = STATE(237), - [sym_field_expression] = STATE(237), - [sym_compound_literal_expression] = STATE(237), - [anon_sym_LBRACE] = ACTIONS(886), - [sym_true] = ACTIONS(888), - [sym_null] = ACTIONS(888), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(155), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(159), - [sym_identifier] = ACTIONS(888), - [anon_sym_BANG] = ACTIONS(155), - [anon_sym_DASH] = ACTIONS(161), - [sym_number_literal] = ACTIONS(890), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(159), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(888), - [anon_sym_PLUS] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(165), + [sym__expression] = STATE(676), + [sym_comma_expression] = STATE(1209), + [sym_conditional_expression] = STATE(676), + [sym_assignment_expression] = STATE(676), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(676), + [sym_binary_expression] = STATE(676), + [sym_update_expression] = STATE(676), + [sym_cast_expression] = STATE(676), + [sym_sizeof_expression] = STATE(676), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(676), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(676), + [sym_concatenated_string] = STATE(676), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_RPAREN] = ACTIONS(1841), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1843), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1845), + [sym_false] = ACTIONS(1845), + [sym_null] = ACTIONS(1845), + [sym_comment] = ACTIONS(3), }, [539] = { - [anon_sym_LBRACE] = ACTIONS(894), - [anon_sym_case] = ACTIONS(892), - [sym_true] = ACTIONS(892), - [sym_null] = ACTIONS(892), - [anon_sym_do] = ACTIONS(892), - [anon_sym_goto] = ACTIONS(892), - [anon_sym_AMP] = ACTIONS(894), - [anon_sym_TILDE] = ACTIONS(894), - [anon_sym_L_DQUOTE] = ACTIONS(894), - [anon_sym_LPAREN2] = ACTIONS(894), - [anon_sym_DASH_DASH] = ACTIONS(894), - [anon_sym_RBRACE] = ACTIONS(894), - [anon_sym_default] = ACTIONS(892), - [anon_sym_else] = ACTIONS(892), - [sym_identifier] = ACTIONS(892), - [anon_sym_for] = ACTIONS(892), - [anon_sym_break] = ACTIONS(892), - [anon_sym_BANG] = ACTIONS(894), - [anon_sym_DASH] = ACTIONS(892), - [sym_number_literal] = ACTIONS(894), - [anon_sym_DQUOTE] = ACTIONS(894), - [anon_sym_SQUOTE] = ACTIONS(894), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_if] = ACTIONS(892), - [anon_sym_PLUS_PLUS] = ACTIONS(894), - [anon_sym_switch] = ACTIONS(892), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(892), - [anon_sym_return] = ACTIONS(892), - [anon_sym_while] = ACTIONS(892), - [anon_sym_continue] = ACTIONS(892), - [anon_sym_SEMI] = ACTIONS(894), - [anon_sym_PLUS] = ACTIONS(892), - [anon_sym_L_SQUOTE] = ACTIONS(894), - [anon_sym_sizeof] = ACTIONS(892), + [sym__expression] = STATE(731), + [sym_conditional_expression] = STATE(731), + [sym_assignment_expression] = STATE(731), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(731), + [sym_binary_expression] = STATE(731), + [sym_update_expression] = STATE(731), + [sym_cast_expression] = STATE(731), + [sym_sizeof_expression] = STATE(731), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(731), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(731), + [sym_concatenated_string] = STATE(731), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_SEMI] = ACTIONS(1847), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1849), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1851), + [sym_false] = ACTIONS(1851), + [sym_null] = ACTIONS(1851), + [sym_comment] = ACTIONS(3), }, [540] = { - [sym_true] = ACTIONS(937), - [anon_sym_restrict] = ACTIONS(937), - [sym_null] = ACTIONS(937), - [anon_sym_goto] = ACTIONS(937), - [anon_sym_const] = ACTIONS(937), - [anon_sym_typedef] = ACTIONS(937), - [anon_sym_DASH_DASH] = ACTIONS(939), - [anon_sym__Atomic] = ACTIONS(937), - [sym_identifier] = ACTIONS(937), - [aux_sym_preproc_ifdef_token1] = ACTIONS(937), - [sym_number_literal] = ACTIONS(939), - [anon_sym_volatile] = ACTIONS(937), - [anon_sym_SQUOTE] = ACTIONS(939), - [anon_sym_extern] = ACTIONS(937), - [anon_sym_PLUS_PLUS] = ACTIONS(939), - [anon_sym_struct] = ACTIONS(937), - [anon_sym_signed] = ACTIONS(937), + [sym__expression] = STATE(766), + [sym_conditional_expression] = STATE(766), + [sym_assignment_expression] = STATE(766), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(766), + [sym_binary_expression] = STATE(766), + [sym_update_expression] = STATE(766), + [sym_cast_expression] = STATE(766), + [sym_sizeof_expression] = STATE(766), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(766), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(766), + [sym_concatenated_string] = STATE(766), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_SEMI] = ACTIONS(1853), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1855), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1857), + [sym_false] = ACTIONS(1857), + [sym_null] = ACTIONS(1857), [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(937), - [anon_sym_while] = ACTIONS(937), - [aux_sym_preproc_ifdef_token2] = ACTIONS(937), - [anon_sym_L_SQUOTE] = ACTIONS(939), - [anon_sym___attribute__] = ACTIONS(937), - [anon_sym_sizeof] = ACTIONS(937), - [anon_sym_LBRACE] = ACTIONS(939), - [anon_sym_union] = ACTIONS(937), - [anon_sym_unsigned] = ACTIONS(937), - [anon_sym_short] = ACTIONS(937), - [anon_sym_do] = ACTIONS(937), - [sym_preproc_directive] = ACTIONS(937), - [anon_sym_AMP] = ACTIONS(939), - [aux_sym_preproc_if_token1] = ACTIONS(937), - [anon_sym_TILDE] = ACTIONS(939), - [anon_sym_L_DQUOTE] = ACTIONS(939), - [anon_sym_LPAREN2] = ACTIONS(939), - [sym_primitive_type] = ACTIONS(937), - [anon_sym_for] = ACTIONS(937), - [anon_sym_break] = ACTIONS(937), - [anon_sym_BANG] = ACTIONS(939), - [aux_sym_preproc_include_token1] = ACTIONS(937), - [anon_sym_DASH] = ACTIONS(937), - [anon_sym_static] = ACTIONS(937), - [anon_sym_DQUOTE] = ACTIONS(939), - [anon_sym_register] = ACTIONS(937), - [anon_sym_STAR] = ACTIONS(939), - [anon_sym_if] = ACTIONS(937), - [anon_sym_switch] = ACTIONS(937), - [anon_sym_enum] = ACTIONS(937), - [sym_false] = ACTIONS(937), - [ts_builtin_sym_end] = ACTIONS(939), - [anon_sym_return] = ACTIONS(937), - [anon_sym_continue] = ACTIONS(937), - [anon_sym_SEMI] = ACTIONS(939), - [aux_sym_preproc_def_token1] = ACTIONS(937), - [anon_sym_PLUS] = ACTIONS(937), - [anon_sym_auto] = ACTIONS(937), - [anon_sym_inline] = ACTIONS(937), }, [541] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(2243), - [anon_sym_PERCENT_EQ] = ACTIONS(946), - [anon_sym_DASH_EQ] = ACTIONS(946), - [anon_sym_PIPE] = ACTIONS(2245), - [anon_sym_EQ_EQ] = ACTIONS(2247), - [anon_sym_SLASH] = ACTIONS(2249), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LT_LT] = ACTIONS(2243), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_PLUS_EQ] = ACTIONS(946), - [anon_sym_LT_LT_EQ] = ACTIONS(946), - [anon_sym_QMARK] = ACTIONS(946), - [anon_sym_BANG_EQ] = ACTIONS(2247), - [anon_sym_CARET_EQ] = ACTIONS(946), - [anon_sym_COMMA] = ACTIONS(946), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT_EQ] = ACTIONS(946), - [anon_sym_GT] = ACTIONS(2251), - [anon_sym_PIPE_EQ] = ACTIONS(946), - [anon_sym_RPAREN] = ACTIONS(946), - [anon_sym_RBRACK] = ACTIONS(946), - [anon_sym_AMP_EQ] = ACTIONS(946), - [anon_sym_PERCENT] = ACTIONS(2249), - [anon_sym_AMP] = ACTIONS(2253), - [anon_sym_EQ] = ACTIONS(2255), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(2257), - [anon_sym_RBRACE] = ACTIONS(946), - [anon_sym_COLON] = ACTIONS(946), - [anon_sym_STAR_EQ] = ACTIONS(946), - [anon_sym_PIPE_PIPE] = ACTIONS(2259), - [anon_sym_DASH] = ACTIONS(2261), - [anon_sym_LT_EQ] = ACTIONS(2257), - [anon_sym_STAR] = ACTIONS(2249), - [anon_sym_SLASH_EQ] = ACTIONS(946), - [anon_sym_AMP_AMP] = ACTIONS(2263), - [anon_sym_SEMI] = ACTIONS(946), - [anon_sym_CARET] = ACTIONS(2265), - [anon_sym_PLUS] = ACTIONS(2261), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(2251), - [anon_sym_LBRACK] = ACTIONS(305), + [sym__expression] = STATE(705), + [sym_comma_expression] = STATE(1227), + [sym_conditional_expression] = STATE(705), + [sym_assignment_expression] = STATE(705), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(705), + [sym_binary_expression] = STATE(705), + [sym_update_expression] = STATE(705), + [sym_cast_expression] = STATE(705), + [sym_sizeof_expression] = STATE(705), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(705), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(705), + [sym_concatenated_string] = STATE(705), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1859), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1861), + [sym_false] = ACTIONS(1861), + [sym_null] = ACTIONS(1861), + [sym_comment] = ACTIONS(3), }, [542] = { - [sym_true] = ACTIONS(950), - [anon_sym_restrict] = ACTIONS(950), - [sym_null] = ACTIONS(950), - [anon_sym_goto] = ACTIONS(950), - [anon_sym_const] = ACTIONS(950), - [anon_sym_typedef] = ACTIONS(950), - [anon_sym_DASH_DASH] = ACTIONS(952), - [anon_sym__Atomic] = ACTIONS(950), - [sym_identifier] = ACTIONS(950), - [aux_sym_preproc_ifdef_token1] = ACTIONS(950), - [sym_number_literal] = ACTIONS(952), - [anon_sym_volatile] = ACTIONS(950), - [anon_sym_SQUOTE] = ACTIONS(952), - [anon_sym_extern] = ACTIONS(950), - [anon_sym_PLUS_PLUS] = ACTIONS(952), - [anon_sym_struct] = ACTIONS(950), - [anon_sym_signed] = ACTIONS(950), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(950), - [anon_sym_while] = ACTIONS(950), - [aux_sym_preproc_ifdef_token2] = ACTIONS(950), - [anon_sym_L_SQUOTE] = ACTIONS(952), - [anon_sym___attribute__] = ACTIONS(950), - [anon_sym_sizeof] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(952), - [anon_sym_union] = ACTIONS(950), - [anon_sym_unsigned] = ACTIONS(950), - [anon_sym_short] = ACTIONS(950), - [anon_sym_do] = ACTIONS(950), - [sym_preproc_directive] = ACTIONS(950), - [anon_sym_AMP] = ACTIONS(952), - [aux_sym_preproc_if_token1] = ACTIONS(950), - [anon_sym_TILDE] = ACTIONS(952), - [anon_sym_L_DQUOTE] = ACTIONS(952), - [anon_sym_LPAREN2] = ACTIONS(952), - [anon_sym_RBRACE] = ACTIONS(952), - [anon_sym_else] = ACTIONS(950), - [sym_primitive_type] = ACTIONS(950), - [anon_sym_for] = ACTIONS(950), - [anon_sym_break] = ACTIONS(950), - [anon_sym_BANG] = ACTIONS(952), - [aux_sym_preproc_include_token1] = ACTIONS(950), - [anon_sym_DASH] = ACTIONS(950), - [anon_sym_static] = ACTIONS(950), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_register] = ACTIONS(950), - [anon_sym_STAR] = ACTIONS(952), - [anon_sym_if] = ACTIONS(950), - [anon_sym_switch] = ACTIONS(950), - [anon_sym_enum] = ACTIONS(950), - [sym_false] = ACTIONS(950), - [anon_sym_return] = ACTIONS(950), - [anon_sym_continue] = ACTIONS(950), - [anon_sym_SEMI] = ACTIONS(952), - [aux_sym_preproc_def_token1] = ACTIONS(950), - [anon_sym_PLUS] = ACTIONS(950), - [anon_sym_auto] = ACTIONS(950), - [anon_sym_inline] = ACTIONS(950), + [sym__expression] = STATE(735), + [sym_conditional_expression] = STATE(735), + [sym_assignment_expression] = STATE(735), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(735), + [sym_binary_expression] = STATE(735), + [sym_update_expression] = STATE(735), + [sym_cast_expression] = STATE(735), + [sym_sizeof_expression] = STATE(735), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(735), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(735), + [sym_concatenated_string] = STATE(735), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_SEMI] = ACTIONS(1863), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1865), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1867), + [sym_false] = ACTIONS(1867), + [sym_null] = ACTIONS(1867), + [sym_comment] = ACTIONS(3), }, [543] = { - [sym_true] = ACTIONS(970), - [anon_sym_restrict] = ACTIONS(970), - [sym_null] = ACTIONS(970), - [anon_sym_goto] = ACTIONS(970), - [anon_sym_const] = ACTIONS(970), - [anon_sym_typedef] = ACTIONS(970), - [anon_sym_DASH_DASH] = ACTIONS(972), - [anon_sym__Atomic] = ACTIONS(970), - [sym_identifier] = ACTIONS(970), - [aux_sym_preproc_ifdef_token1] = ACTIONS(970), - [sym_number_literal] = ACTIONS(972), - [anon_sym_volatile] = ACTIONS(970), - [anon_sym_SQUOTE] = ACTIONS(972), - [anon_sym_extern] = ACTIONS(970), - [anon_sym_PLUS_PLUS] = ACTIONS(972), - [anon_sym_struct] = ACTIONS(970), - [anon_sym_signed] = ACTIONS(970), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(970), - [anon_sym_while] = ACTIONS(970), - [aux_sym_preproc_ifdef_token2] = ACTIONS(970), - [anon_sym_L_SQUOTE] = ACTIONS(972), - [anon_sym___attribute__] = ACTIONS(970), - [anon_sym_sizeof] = ACTIONS(970), - [anon_sym_LBRACE] = ACTIONS(972), - [anon_sym_union] = ACTIONS(970), - [anon_sym_unsigned] = ACTIONS(970), - [anon_sym_short] = ACTIONS(970), - [anon_sym_do] = ACTIONS(970), - [sym_preproc_directive] = ACTIONS(970), - [anon_sym_AMP] = ACTIONS(972), - [aux_sym_preproc_if_token1] = ACTIONS(970), - [anon_sym_TILDE] = ACTIONS(972), - [anon_sym_L_DQUOTE] = ACTIONS(972), - [anon_sym_LPAREN2] = ACTIONS(972), - [anon_sym_RBRACE] = ACTIONS(972), - [sym_primitive_type] = ACTIONS(970), - [anon_sym_for] = ACTIONS(970), - [anon_sym_break] = ACTIONS(970), - [anon_sym_BANG] = ACTIONS(972), - [aux_sym_preproc_include_token1] = ACTIONS(970), - [anon_sym_DASH] = ACTIONS(970), - [anon_sym_static] = ACTIONS(970), - [anon_sym_DQUOTE] = ACTIONS(972), - [anon_sym_register] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_if] = ACTIONS(970), - [anon_sym_switch] = ACTIONS(970), - [anon_sym_enum] = ACTIONS(970), - [sym_false] = ACTIONS(970), - [anon_sym_return] = ACTIONS(970), - [anon_sym_continue] = ACTIONS(970), - [anon_sym_SEMI] = ACTIONS(972), - [aux_sym_preproc_def_token1] = ACTIONS(970), - [anon_sym_PLUS] = ACTIONS(970), - [anon_sym_auto] = ACTIONS(970), - [anon_sym_inline] = ACTIONS(970), + [sym__expression] = STATE(744), + [sym_conditional_expression] = STATE(744), + [sym_assignment_expression] = STATE(744), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(744), + [sym_binary_expression] = STATE(744), + [sym_update_expression] = STATE(744), + [sym_cast_expression] = STATE(744), + [sym_sizeof_expression] = STATE(744), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(744), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(744), + [sym_concatenated_string] = STATE(744), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_SEMI] = ACTIONS(1869), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1873), + [sym_false] = ACTIONS(1873), + [sym_null] = ACTIONS(1873), + [sym_comment] = ACTIONS(3), }, [544] = { - [sym_true] = ACTIONS(980), - [anon_sym_restrict] = ACTIONS(980), - [sym_null] = ACTIONS(980), - [anon_sym_goto] = ACTIONS(980), - [anon_sym_const] = ACTIONS(980), - [anon_sym_typedef] = ACTIONS(980), - [anon_sym_DASH_DASH] = ACTIONS(982), - [anon_sym__Atomic] = ACTIONS(980), - [sym_identifier] = ACTIONS(980), - [aux_sym_preproc_ifdef_token1] = ACTIONS(980), - [sym_number_literal] = ACTIONS(982), - [anon_sym_volatile] = ACTIONS(980), - [anon_sym_SQUOTE] = ACTIONS(982), - [anon_sym_extern] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(982), - [anon_sym_struct] = ACTIONS(980), - [anon_sym_signed] = ACTIONS(980), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(980), - [anon_sym_while] = ACTIONS(980), - [aux_sym_preproc_ifdef_token2] = ACTIONS(980), - [anon_sym_L_SQUOTE] = ACTIONS(982), - [anon_sym___attribute__] = ACTIONS(980), - [anon_sym_sizeof] = ACTIONS(980), - [anon_sym_LBRACE] = ACTIONS(982), - [anon_sym_union] = ACTIONS(980), - [anon_sym_unsigned] = ACTIONS(980), - [anon_sym_short] = ACTIONS(980), - [anon_sym_do] = ACTIONS(980), - [sym_preproc_directive] = ACTIONS(980), - [anon_sym_AMP] = ACTIONS(982), - [aux_sym_preproc_if_token1] = ACTIONS(980), - [anon_sym_TILDE] = ACTIONS(982), - [anon_sym_L_DQUOTE] = ACTIONS(982), - [anon_sym_LPAREN2] = ACTIONS(982), - [anon_sym_RBRACE] = ACTIONS(982), - [sym_primitive_type] = ACTIONS(980), - [anon_sym_for] = ACTIONS(980), - [anon_sym_break] = ACTIONS(980), - [anon_sym_BANG] = ACTIONS(982), - [aux_sym_preproc_include_token1] = ACTIONS(980), - [anon_sym_DASH] = ACTIONS(980), - [anon_sym_static] = ACTIONS(980), - [anon_sym_DQUOTE] = ACTIONS(982), - [anon_sym_register] = ACTIONS(980), - [anon_sym_STAR] = ACTIONS(982), - [anon_sym_if] = ACTIONS(980), - [anon_sym_switch] = ACTIONS(980), - [anon_sym_enum] = ACTIONS(980), - [sym_false] = ACTIONS(980), - [anon_sym_return] = ACTIONS(980), - [anon_sym_continue] = ACTIONS(980), - [anon_sym_SEMI] = ACTIONS(982), - [aux_sym_preproc_def_token1] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(980), - [anon_sym_auto] = ACTIONS(980), - [anon_sym_inline] = ACTIONS(980), + [sym__expression] = STATE(736), + [sym_conditional_expression] = STATE(736), + [sym_assignment_expression] = STATE(736), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(736), + [sym_binary_expression] = STATE(736), + [sym_update_expression] = STATE(736), + [sym_cast_expression] = STATE(736), + [sym_sizeof_expression] = STATE(736), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(736), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(736), + [sym_concatenated_string] = STATE(736), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_SEMI] = ACTIONS(1875), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1877), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1879), + [sym_false] = ACTIONS(1879), + [sym_null] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), }, [545] = { - [sym_true] = ACTIONS(984), - [anon_sym_restrict] = ACTIONS(984), - [sym_null] = ACTIONS(984), - [anon_sym_goto] = ACTIONS(984), - [anon_sym_const] = ACTIONS(984), - [anon_sym_typedef] = ACTIONS(984), - [anon_sym_DASH_DASH] = ACTIONS(986), - [anon_sym__Atomic] = ACTIONS(984), - [sym_identifier] = ACTIONS(984), - [aux_sym_preproc_ifdef_token1] = ACTIONS(984), - [sym_number_literal] = ACTIONS(986), - [anon_sym_volatile] = ACTIONS(984), - [anon_sym_SQUOTE] = ACTIONS(986), - [anon_sym_extern] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(986), - [anon_sym_struct] = ACTIONS(984), - [anon_sym_signed] = ACTIONS(984), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(984), - [anon_sym_while] = ACTIONS(984), - [aux_sym_preproc_ifdef_token2] = ACTIONS(984), - [anon_sym_L_SQUOTE] = ACTIONS(986), - [anon_sym___attribute__] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(984), - [anon_sym_LBRACE] = ACTIONS(986), - [anon_sym_union] = ACTIONS(984), - [anon_sym_unsigned] = ACTIONS(984), - [anon_sym_short] = ACTIONS(984), - [anon_sym_do] = ACTIONS(984), - [sym_preproc_directive] = ACTIONS(984), - [anon_sym_AMP] = ACTIONS(986), - [aux_sym_preproc_if_token1] = ACTIONS(984), - [anon_sym_TILDE] = ACTIONS(986), - [anon_sym_L_DQUOTE] = ACTIONS(986), - [anon_sym_LPAREN2] = ACTIONS(986), - [anon_sym_RBRACE] = ACTIONS(986), - [anon_sym_else] = ACTIONS(2267), - [sym_primitive_type] = ACTIONS(984), - [anon_sym_for] = ACTIONS(984), - [anon_sym_break] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(986), - [aux_sym_preproc_include_token1] = ACTIONS(984), - [anon_sym_DASH] = ACTIONS(984), - [anon_sym_static] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(986), - [anon_sym_register] = ACTIONS(984), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_if] = ACTIONS(984), - [anon_sym_switch] = ACTIONS(984), - [anon_sym_enum] = ACTIONS(984), - [sym_false] = ACTIONS(984), - [anon_sym_return] = ACTIONS(984), - [anon_sym_continue] = ACTIONS(984), - [anon_sym_SEMI] = ACTIONS(986), - [aux_sym_preproc_def_token1] = ACTIONS(984), - [anon_sym_PLUS] = ACTIONS(984), - [anon_sym_auto] = ACTIONS(984), - [anon_sym_inline] = ACTIONS(984), + [sym__expression] = STATE(451), + [sym_conditional_expression] = STATE(451), + [sym_assignment_expression] = STATE(451), + [sym_pointer_expression] = STATE(451), + [sym_unary_expression] = STATE(451), + [sym_binary_expression] = STATE(451), + [sym_update_expression] = STATE(451), + [sym_cast_expression] = STATE(451), + [sym_sizeof_expression] = STATE(451), + [sym_subscript_expression] = STATE(451), + [sym_call_expression] = STATE(451), + [sym_field_expression] = STATE(451), + [sym_compound_literal_expression] = STATE(451), + [sym_parenthesized_expression] = STATE(451), + [sym_char_literal] = STATE(451), + [sym_concatenated_string] = STATE(451), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(1881), + [anon_sym_LPAREN2] = ACTIONS(729), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_RBRACK] = ACTIONS(1883), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_TILDE] = ACTIONS(739), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH_DASH] = ACTIONS(741), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_sizeof] = ACTIONS(743), + [sym_number_literal] = ACTIONS(1885), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_null] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), }, [546] = { - [sym_true] = ACTIONS(1028), - [anon_sym_restrict] = ACTIONS(1028), - [sym_null] = ACTIONS(1028), - [anon_sym_goto] = ACTIONS(1028), - [anon_sym_const] = ACTIONS(1028), - [anon_sym_typedef] = ACTIONS(1028), - [anon_sym_DASH_DASH] = ACTIONS(1030), - [anon_sym__Atomic] = ACTIONS(1028), - [sym_identifier] = ACTIONS(1028), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1028), - [sym_number_literal] = ACTIONS(1030), - [anon_sym_volatile] = ACTIONS(1028), - [anon_sym_SQUOTE] = ACTIONS(1030), - [anon_sym_extern] = ACTIONS(1028), - [anon_sym_PLUS_PLUS] = ACTIONS(1030), - [anon_sym_struct] = ACTIONS(1028), - [anon_sym_signed] = ACTIONS(1028), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1028), - [anon_sym_while] = ACTIONS(1028), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1028), - [anon_sym_L_SQUOTE] = ACTIONS(1030), - [anon_sym___attribute__] = ACTIONS(1028), - [anon_sym_sizeof] = ACTIONS(1028), - [anon_sym_LBRACE] = ACTIONS(1030), - [anon_sym_union] = ACTIONS(1028), - [anon_sym_unsigned] = ACTIONS(1028), - [anon_sym_short] = ACTIONS(1028), - [anon_sym_do] = ACTIONS(1028), - [sym_preproc_directive] = ACTIONS(1028), - [anon_sym_AMP] = ACTIONS(1030), - [aux_sym_preproc_if_token1] = ACTIONS(1028), - [anon_sym_TILDE] = ACTIONS(1030), - [anon_sym_L_DQUOTE] = ACTIONS(1030), - [anon_sym_LPAREN2] = ACTIONS(1030), - [anon_sym_RBRACE] = ACTIONS(1030), - [anon_sym_else] = ACTIONS(1028), - [sym_primitive_type] = ACTIONS(1028), - [anon_sym_for] = ACTIONS(1028), - [anon_sym_break] = ACTIONS(1028), - [anon_sym_BANG] = ACTIONS(1030), - [aux_sym_preproc_include_token1] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1028), - [anon_sym_static] = ACTIONS(1028), - [anon_sym_DQUOTE] = ACTIONS(1030), - [anon_sym_register] = ACTIONS(1028), - [anon_sym_STAR] = ACTIONS(1030), - [anon_sym_if] = ACTIONS(1028), - [anon_sym_switch] = ACTIONS(1028), - [anon_sym_enum] = ACTIONS(1028), - [sym_false] = ACTIONS(1028), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_continue] = ACTIONS(1028), - [anon_sym_SEMI] = ACTIONS(1030), - [aux_sym_preproc_def_token1] = ACTIONS(1028), - [anon_sym_PLUS] = ACTIONS(1028), - [anon_sym_auto] = ACTIONS(1028), - [anon_sym_inline] = ACTIONS(1028), + [sym__expression] = STATE(451), + [sym_conditional_expression] = STATE(451), + [sym_assignment_expression] = STATE(451), + [sym_pointer_expression] = STATE(451), + [sym_unary_expression] = STATE(451), + [sym_binary_expression] = STATE(451), + [sym_update_expression] = STATE(451), + [sym_cast_expression] = STATE(451), + [sym_sizeof_expression] = STATE(451), + [sym_subscript_expression] = STATE(451), + [sym_call_expression] = STATE(451), + [sym_field_expression] = STATE(451), + [sym_compound_literal_expression] = STATE(451), + [sym_parenthesized_expression] = STATE(451), + [sym_char_literal] = STATE(451), + [sym_concatenated_string] = STATE(451), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(1881), + [anon_sym_LPAREN2] = ACTIONS(729), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_RBRACK] = ACTIONS(1887), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_TILDE] = ACTIONS(739), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH_DASH] = ACTIONS(741), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_sizeof] = ACTIONS(743), + [sym_number_literal] = ACTIONS(1885), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_null] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), }, [547] = { - [sym_true] = ACTIONS(1052), - [anon_sym_restrict] = ACTIONS(1052), - [sym_null] = ACTIONS(1052), - [anon_sym_goto] = ACTIONS(1052), - [anon_sym_const] = ACTIONS(1052), - [anon_sym_typedef] = ACTIONS(1052), - [anon_sym_DASH_DASH] = ACTIONS(1054), - [anon_sym__Atomic] = ACTIONS(1052), - [sym_identifier] = ACTIONS(1052), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1052), - [sym_number_literal] = ACTIONS(1054), - [anon_sym_volatile] = ACTIONS(1052), - [anon_sym_SQUOTE] = ACTIONS(1054), - [anon_sym_extern] = ACTIONS(1052), - [anon_sym_PLUS_PLUS] = ACTIONS(1054), - [anon_sym_struct] = ACTIONS(1052), - [anon_sym_signed] = ACTIONS(1052), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1052), - [anon_sym_while] = ACTIONS(1052), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1052), - [anon_sym_L_SQUOTE] = ACTIONS(1054), - [anon_sym___attribute__] = ACTIONS(1052), - [anon_sym_sizeof] = ACTIONS(1052), - [anon_sym_LBRACE] = ACTIONS(1054), - [anon_sym_union] = ACTIONS(1052), - [anon_sym_unsigned] = ACTIONS(1052), - [anon_sym_short] = ACTIONS(1052), - [anon_sym_do] = ACTIONS(1052), - [sym_preproc_directive] = ACTIONS(1052), - [anon_sym_AMP] = ACTIONS(1054), - [aux_sym_preproc_if_token1] = ACTIONS(1052), - [anon_sym_TILDE] = ACTIONS(1054), - [anon_sym_L_DQUOTE] = ACTIONS(1054), - [anon_sym_LPAREN2] = ACTIONS(1054), - [anon_sym_RBRACE] = ACTIONS(1054), - [anon_sym_else] = ACTIONS(1052), - [sym_primitive_type] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1052), - [anon_sym_break] = ACTIONS(1052), - [anon_sym_BANG] = ACTIONS(1054), - [aux_sym_preproc_include_token1] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1052), - [anon_sym_static] = ACTIONS(1052), - [anon_sym_DQUOTE] = ACTIONS(1054), - [anon_sym_register] = ACTIONS(1052), - [anon_sym_STAR] = ACTIONS(1054), - [anon_sym_if] = ACTIONS(1052), - [anon_sym_switch] = ACTIONS(1052), - [anon_sym_enum] = ACTIONS(1052), - [sym_false] = ACTIONS(1052), - [anon_sym_return] = ACTIONS(1052), - [anon_sym_continue] = ACTIONS(1052), - [anon_sym_SEMI] = ACTIONS(1054), - [aux_sym_preproc_def_token1] = ACTIONS(1052), - [anon_sym_PLUS] = ACTIONS(1052), - [anon_sym_auto] = ACTIONS(1052), - [anon_sym_inline] = ACTIONS(1052), + [sym__expression] = STATE(690), + [sym_comma_expression] = STATE(1296), + [sym_conditional_expression] = STATE(690), + [sym_assignment_expression] = STATE(690), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(690), + [sym_binary_expression] = STATE(690), + [sym_update_expression] = STATE(690), + [sym_cast_expression] = STATE(690), + [sym_sizeof_expression] = STATE(690), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(690), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(690), + [sym_concatenated_string] = STATE(690), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1889), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1891), + [sym_false] = ACTIONS(1891), + [sym_null] = ACTIONS(1891), + [sym_comment] = ACTIONS(3), }, [548] = { - [sym_true] = ACTIONS(1056), - [anon_sym_restrict] = ACTIONS(1056), - [sym_null] = ACTIONS(1056), - [anon_sym_goto] = ACTIONS(1056), - [anon_sym_const] = ACTIONS(1056), - [anon_sym_typedef] = ACTIONS(1056), - [anon_sym_DASH_DASH] = ACTIONS(1058), - [anon_sym__Atomic] = ACTIONS(1056), - [sym_identifier] = ACTIONS(1056), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1056), - [sym_number_literal] = ACTIONS(1058), - [anon_sym_volatile] = ACTIONS(1056), - [anon_sym_SQUOTE] = ACTIONS(1058), - [anon_sym_extern] = ACTIONS(1056), - [anon_sym_PLUS_PLUS] = ACTIONS(1058), - [anon_sym_struct] = ACTIONS(1056), - [anon_sym_signed] = ACTIONS(1056), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1056), - [anon_sym_while] = ACTIONS(1056), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1056), - [anon_sym_L_SQUOTE] = ACTIONS(1058), - [anon_sym___attribute__] = ACTIONS(1056), - [anon_sym_sizeof] = ACTIONS(1056), - [anon_sym_LBRACE] = ACTIONS(1058), - [anon_sym_union] = ACTIONS(1056), - [anon_sym_unsigned] = ACTIONS(1056), - [anon_sym_short] = ACTIONS(1056), - [anon_sym_do] = ACTIONS(1056), - [sym_preproc_directive] = ACTIONS(1056), - [anon_sym_AMP] = ACTIONS(1058), - [aux_sym_preproc_if_token1] = ACTIONS(1056), - [anon_sym_TILDE] = ACTIONS(1058), - [anon_sym_L_DQUOTE] = ACTIONS(1058), - [anon_sym_LPAREN2] = ACTIONS(1058), - [anon_sym_RBRACE] = ACTIONS(1058), - [anon_sym_else] = ACTIONS(1056), - [sym_primitive_type] = ACTIONS(1056), - [anon_sym_for] = ACTIONS(1056), - [anon_sym_break] = ACTIONS(1056), - [anon_sym_BANG] = ACTIONS(1058), - [aux_sym_preproc_include_token1] = ACTIONS(1056), - [anon_sym_DASH] = ACTIONS(1056), - [anon_sym_static] = ACTIONS(1056), - [anon_sym_DQUOTE] = ACTIONS(1058), - [anon_sym_register] = ACTIONS(1056), - [anon_sym_STAR] = ACTIONS(1058), - [anon_sym_if] = ACTIONS(1056), - [anon_sym_switch] = ACTIONS(1056), - [anon_sym_enum] = ACTIONS(1056), - [sym_false] = ACTIONS(1056), - [anon_sym_return] = ACTIONS(1056), - [anon_sym_continue] = ACTIONS(1056), - [anon_sym_SEMI] = ACTIONS(1058), - [aux_sym_preproc_def_token1] = ACTIONS(1056), - [anon_sym_PLUS] = ACTIONS(1056), - [anon_sym_auto] = ACTIONS(1056), - [anon_sym_inline] = ACTIONS(1056), + [sym__expression] = STATE(737), + [sym_conditional_expression] = STATE(737), + [sym_assignment_expression] = STATE(737), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(737), + [sym_binary_expression] = STATE(737), + [sym_update_expression] = STATE(737), + [sym_cast_expression] = STATE(737), + [sym_sizeof_expression] = STATE(737), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(737), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(737), + [sym_concatenated_string] = STATE(737), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_SEMI] = ACTIONS(1893), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1895), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1897), + [sym_false] = ACTIONS(1897), + [sym_null] = ACTIONS(1897), + [sym_comment] = ACTIONS(3), }, [549] = { - [sym_true] = ACTIONS(1062), - [anon_sym_restrict] = ACTIONS(1062), - [sym_null] = ACTIONS(1062), - [anon_sym_goto] = ACTIONS(1062), - [anon_sym_const] = ACTIONS(1062), - [anon_sym_typedef] = ACTIONS(1062), - [anon_sym_DASH_DASH] = ACTIONS(1064), - [anon_sym__Atomic] = ACTIONS(1062), - [sym_identifier] = ACTIONS(1062), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1062), - [sym_number_literal] = ACTIONS(1064), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_SQUOTE] = ACTIONS(1064), - [anon_sym_extern] = ACTIONS(1062), - [anon_sym_PLUS_PLUS] = ACTIONS(1064), - [anon_sym_struct] = ACTIONS(1062), - [anon_sym_signed] = ACTIONS(1062), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1062), - [anon_sym_while] = ACTIONS(1062), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1062), - [anon_sym_L_SQUOTE] = ACTIONS(1064), - [anon_sym___attribute__] = ACTIONS(1062), - [anon_sym_sizeof] = ACTIONS(1062), - [anon_sym_LBRACE] = ACTIONS(1064), - [anon_sym_union] = ACTIONS(1062), - [anon_sym_unsigned] = ACTIONS(1062), - [anon_sym_short] = ACTIONS(1062), - [anon_sym_do] = ACTIONS(1062), - [sym_preproc_directive] = ACTIONS(1062), - [anon_sym_AMP] = ACTIONS(1064), - [aux_sym_preproc_if_token1] = ACTIONS(1062), - [anon_sym_TILDE] = ACTIONS(1064), - [anon_sym_L_DQUOTE] = ACTIONS(1064), - [anon_sym_LPAREN2] = ACTIONS(1064), - [anon_sym_RBRACE] = ACTIONS(1064), - [sym_primitive_type] = ACTIONS(1062), - [anon_sym_for] = ACTIONS(1062), - [anon_sym_break] = ACTIONS(1062), - [anon_sym_BANG] = ACTIONS(1064), - [aux_sym_preproc_include_token1] = ACTIONS(1062), - [anon_sym_DASH] = ACTIONS(1062), - [anon_sym_static] = ACTIONS(1062), - [anon_sym_DQUOTE] = ACTIONS(1064), - [anon_sym_register] = ACTIONS(1062), - [anon_sym_STAR] = ACTIONS(1064), - [anon_sym_if] = ACTIONS(1062), - [anon_sym_switch] = ACTIONS(1062), - [anon_sym_enum] = ACTIONS(1062), - [sym_false] = ACTIONS(1062), - [anon_sym_return] = ACTIONS(1062), - [anon_sym_continue] = ACTIONS(1062), - [anon_sym_SEMI] = ACTIONS(1064), - [aux_sym_preproc_def_token1] = ACTIONS(1062), - [anon_sym_PLUS] = ACTIONS(1062), - [anon_sym_auto] = ACTIONS(1062), - [anon_sym_inline] = ACTIONS(1062), + [sym__expression] = STATE(451), + [sym_conditional_expression] = STATE(451), + [sym_assignment_expression] = STATE(451), + [sym_pointer_expression] = STATE(451), + [sym_unary_expression] = STATE(451), + [sym_binary_expression] = STATE(451), + [sym_update_expression] = STATE(451), + [sym_cast_expression] = STATE(451), + [sym_sizeof_expression] = STATE(451), + [sym_subscript_expression] = STATE(451), + [sym_call_expression] = STATE(451), + [sym_field_expression] = STATE(451), + [sym_compound_literal_expression] = STATE(451), + [sym_parenthesized_expression] = STATE(451), + [sym_char_literal] = STATE(451), + [sym_concatenated_string] = STATE(451), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(1881), + [anon_sym_LPAREN2] = ACTIONS(729), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_RBRACK] = ACTIONS(1899), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_TILDE] = ACTIONS(739), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH_DASH] = ACTIONS(741), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_sizeof] = ACTIONS(743), + [sym_number_literal] = ACTIONS(1885), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_null] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), }, [550] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(1080), - [anon_sym_PERCENT_EQ] = ACTIONS(1078), - [anon_sym_DASH_EQ] = ACTIONS(1078), - [anon_sym_PIPE] = ACTIONS(1080), - [anon_sym_EQ_EQ] = ACTIONS(1078), - [anon_sym_SLASH] = ACTIONS(2249), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LT_LT] = ACTIONS(1080), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_PLUS_EQ] = ACTIONS(1078), - [anon_sym_LT_LT_EQ] = ACTIONS(1078), - [anon_sym_QMARK] = ACTIONS(1078), - [anon_sym_BANG_EQ] = ACTIONS(1078), - [anon_sym_CARET_EQ] = ACTIONS(1078), - [anon_sym_COMMA] = ACTIONS(1078), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT_EQ] = ACTIONS(1078), - [anon_sym_GT] = ACTIONS(1080), - [anon_sym_PIPE_EQ] = ACTIONS(1078), - [anon_sym_RPAREN] = ACTIONS(1078), - [anon_sym_RBRACK] = ACTIONS(1078), - [anon_sym_AMP_EQ] = ACTIONS(1078), - [anon_sym_PERCENT] = ACTIONS(2249), - [anon_sym_AMP] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1080), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(1078), - [anon_sym_RBRACE] = ACTIONS(1078), - [anon_sym_COLON] = ACTIONS(1078), - [anon_sym_STAR_EQ] = ACTIONS(1078), - [anon_sym_PIPE_PIPE] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(2261), - [anon_sym_LT_EQ] = ACTIONS(1078), - [anon_sym_STAR] = ACTIONS(2249), - [anon_sym_SLASH_EQ] = ACTIONS(1078), - [anon_sym_AMP_AMP] = ACTIONS(1078), - [anon_sym_SEMI] = ACTIONS(1078), - [anon_sym_CARET] = ACTIONS(1080), - [anon_sym_PLUS] = ACTIONS(2261), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(1080), - [anon_sym_LBRACK] = ACTIONS(305), + [sym__expression] = STATE(745), + [sym_conditional_expression] = STATE(745), + [sym_assignment_expression] = STATE(745), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(745), + [sym_binary_expression] = STATE(745), + [sym_update_expression] = STATE(745), + [sym_cast_expression] = STATE(745), + [sym_sizeof_expression] = STATE(745), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(745), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(745), + [sym_concatenated_string] = STATE(745), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_SEMI] = ACTIONS(1901), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1903), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1905), + [sym_false] = ACTIONS(1905), + [sym_null] = ACTIONS(1905), + [sym_comment] = ACTIONS(3), }, [551] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(2243), - [anon_sym_PERCENT_EQ] = ACTIONS(1078), - [anon_sym_DASH_EQ] = ACTIONS(1078), - [anon_sym_PIPE] = ACTIONS(2245), - [anon_sym_EQ_EQ] = ACTIONS(2247), - [anon_sym_SLASH] = ACTIONS(2249), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LT_LT] = ACTIONS(2243), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_PLUS_EQ] = ACTIONS(1078), - [anon_sym_LT_LT_EQ] = ACTIONS(1078), - [anon_sym_QMARK] = ACTIONS(1078), - [anon_sym_BANG_EQ] = ACTIONS(2247), - [anon_sym_CARET_EQ] = ACTIONS(1078), - [anon_sym_COMMA] = ACTIONS(1078), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT_EQ] = ACTIONS(1078), - [anon_sym_GT] = ACTIONS(2251), - [anon_sym_PIPE_EQ] = ACTIONS(1078), - [anon_sym_RPAREN] = ACTIONS(1078), - [anon_sym_RBRACK] = ACTIONS(1078), - [anon_sym_AMP_EQ] = ACTIONS(1078), - [anon_sym_PERCENT] = ACTIONS(2249), - [anon_sym_AMP] = ACTIONS(2253), - [anon_sym_EQ] = ACTIONS(1080), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(2257), - [anon_sym_RBRACE] = ACTIONS(1078), - [anon_sym_COLON] = ACTIONS(1078), - [anon_sym_STAR_EQ] = ACTIONS(1078), - [anon_sym_PIPE_PIPE] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(2261), - [anon_sym_LT_EQ] = ACTIONS(2257), - [anon_sym_STAR] = ACTIONS(2249), - [anon_sym_SLASH_EQ] = ACTIONS(1078), - [anon_sym_AMP_AMP] = ACTIONS(2263), - [anon_sym_SEMI] = ACTIONS(1078), - [anon_sym_CARET] = ACTIONS(2265), - [anon_sym_PLUS] = ACTIONS(2261), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(2251), - [anon_sym_LBRACK] = ACTIONS(305), + [sym__expression] = STATE(756), + [sym_conditional_expression] = STATE(756), + [sym_assignment_expression] = STATE(756), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(756), + [sym_binary_expression] = STATE(756), + [sym_update_expression] = STATE(756), + [sym_cast_expression] = STATE(756), + [sym_sizeof_expression] = STATE(756), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(756), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(756), + [sym_concatenated_string] = STATE(756), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_SEMI] = ACTIONS(1907), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1909), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1911), + [sym_false] = ACTIONS(1911), + [sym_null] = ACTIONS(1911), + [sym_comment] = ACTIONS(3), }, [552] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(2243), - [anon_sym_PERCENT_EQ] = ACTIONS(1078), - [anon_sym_DASH_EQ] = ACTIONS(1078), - [anon_sym_PIPE] = ACTIONS(1080), - [anon_sym_EQ_EQ] = ACTIONS(1078), - [anon_sym_SLASH] = ACTIONS(2249), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LT_LT] = ACTIONS(2243), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_PLUS_EQ] = ACTIONS(1078), - [anon_sym_LT_LT_EQ] = ACTIONS(1078), - [anon_sym_QMARK] = ACTIONS(1078), - [anon_sym_BANG_EQ] = ACTIONS(1078), - [anon_sym_CARET_EQ] = ACTIONS(1078), - [anon_sym_COMMA] = ACTIONS(1078), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT_EQ] = ACTIONS(1078), - [anon_sym_GT] = ACTIONS(2251), - [anon_sym_PIPE_EQ] = ACTIONS(1078), - [anon_sym_RPAREN] = ACTIONS(1078), - [anon_sym_RBRACK] = ACTIONS(1078), - [anon_sym_AMP_EQ] = ACTIONS(1078), - [anon_sym_PERCENT] = ACTIONS(2249), - [anon_sym_AMP] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1080), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(2257), - [anon_sym_RBRACE] = ACTIONS(1078), - [anon_sym_COLON] = ACTIONS(1078), - [anon_sym_STAR_EQ] = ACTIONS(1078), - [anon_sym_PIPE_PIPE] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(2261), - [anon_sym_LT_EQ] = ACTIONS(2257), - [anon_sym_STAR] = ACTIONS(2249), - [anon_sym_SLASH_EQ] = ACTIONS(1078), - [anon_sym_AMP_AMP] = ACTIONS(1078), - [anon_sym_SEMI] = ACTIONS(1078), - [anon_sym_CARET] = ACTIONS(1080), - [anon_sym_PLUS] = ACTIONS(2261), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(2251), - [anon_sym_LBRACK] = ACTIONS(305), + [sym__expression] = STATE(738), + [sym_conditional_expression] = STATE(738), + [sym_assignment_expression] = STATE(738), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(738), + [sym_binary_expression] = STATE(738), + [sym_update_expression] = STATE(738), + [sym_cast_expression] = STATE(738), + [sym_sizeof_expression] = STATE(738), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(738), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(738), + [sym_concatenated_string] = STATE(738), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_SEMI] = ACTIONS(1913), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1915), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), + [sym_null] = ACTIONS(1917), + [sym_comment] = ACTIONS(3), }, [553] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(1080), - [anon_sym_PERCENT_EQ] = ACTIONS(1078), - [anon_sym_DASH_EQ] = ACTIONS(1078), - [anon_sym_PIPE] = ACTIONS(1080), - [anon_sym_EQ_EQ] = ACTIONS(1078), - [anon_sym_SLASH] = ACTIONS(2249), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LT_LT] = ACTIONS(1080), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_PLUS_EQ] = ACTIONS(1078), - [anon_sym_LT_LT_EQ] = ACTIONS(1078), - [anon_sym_QMARK] = ACTIONS(1078), - [anon_sym_BANG_EQ] = ACTIONS(1078), - [anon_sym_CARET_EQ] = ACTIONS(1078), - [anon_sym_COMMA] = ACTIONS(1078), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT_EQ] = ACTIONS(1078), - [anon_sym_GT] = ACTIONS(1080), - [anon_sym_PIPE_EQ] = ACTIONS(1078), - [anon_sym_RPAREN] = ACTIONS(1078), - [anon_sym_RBRACK] = ACTIONS(1078), - [anon_sym_AMP_EQ] = ACTIONS(1078), - [anon_sym_PERCENT] = ACTIONS(2249), - [anon_sym_AMP] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1080), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(1078), - [anon_sym_RBRACE] = ACTIONS(1078), - [anon_sym_COLON] = ACTIONS(1078), - [anon_sym_STAR_EQ] = ACTIONS(1078), - [anon_sym_PIPE_PIPE] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1080), - [anon_sym_LT_EQ] = ACTIONS(1078), - [anon_sym_STAR] = ACTIONS(2249), - [anon_sym_SLASH_EQ] = ACTIONS(1078), - [anon_sym_AMP_AMP] = ACTIONS(1078), - [anon_sym_SEMI] = ACTIONS(1078), - [anon_sym_CARET] = ACTIONS(1080), - [anon_sym_PLUS] = ACTIONS(1080), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(1080), - [anon_sym_LBRACK] = ACTIONS(305), + [sym__expression] = STATE(751), + [sym_conditional_expression] = STATE(751), + [sym_assignment_expression] = STATE(751), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(751), + [sym_binary_expression] = STATE(751), + [sym_update_expression] = STATE(751), + [sym_cast_expression] = STATE(751), + [sym_sizeof_expression] = STATE(751), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(751), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(751), + [sym_concatenated_string] = STATE(751), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_SEMI] = ACTIONS(1919), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1921), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1923), + [sym_false] = ACTIONS(1923), + [sym_null] = ACTIONS(1923), + [sym_comment] = ACTIONS(3), }, [554] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(2243), - [anon_sym_PERCENT_EQ] = ACTIONS(1078), - [anon_sym_DASH_EQ] = ACTIONS(1078), - [anon_sym_PIPE] = ACTIONS(1080), - [anon_sym_EQ_EQ] = ACTIONS(1078), - [anon_sym_SLASH] = ACTIONS(2249), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LT_LT] = ACTIONS(2243), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_PLUS_EQ] = ACTIONS(1078), - [anon_sym_LT_LT_EQ] = ACTIONS(1078), - [anon_sym_QMARK] = ACTIONS(1078), - [anon_sym_BANG_EQ] = ACTIONS(1078), - [anon_sym_CARET_EQ] = ACTIONS(1078), - [anon_sym_COMMA] = ACTIONS(1078), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT_EQ] = ACTIONS(1078), - [anon_sym_GT] = ACTIONS(1080), - [anon_sym_PIPE_EQ] = ACTIONS(1078), - [anon_sym_RPAREN] = ACTIONS(1078), - [anon_sym_RBRACK] = ACTIONS(1078), - [anon_sym_AMP_EQ] = ACTIONS(1078), - [anon_sym_PERCENT] = ACTIONS(2249), - [anon_sym_AMP] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1080), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(1078), - [anon_sym_RBRACE] = ACTIONS(1078), - [anon_sym_COLON] = ACTIONS(1078), - [anon_sym_STAR_EQ] = ACTIONS(1078), - [anon_sym_PIPE_PIPE] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(2261), - [anon_sym_LT_EQ] = ACTIONS(1078), - [anon_sym_STAR] = ACTIONS(2249), - [anon_sym_SLASH_EQ] = ACTIONS(1078), - [anon_sym_AMP_AMP] = ACTIONS(1078), - [anon_sym_SEMI] = ACTIONS(1078), - [anon_sym_CARET] = ACTIONS(1080), - [anon_sym_PLUS] = ACTIONS(2261), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(1080), - [anon_sym_LBRACK] = ACTIONS(305), + [sym__expression] = STATE(752), + [sym_conditional_expression] = STATE(752), + [sym_assignment_expression] = STATE(752), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(752), + [sym_binary_expression] = STATE(752), + [sym_update_expression] = STATE(752), + [sym_cast_expression] = STATE(752), + [sym_sizeof_expression] = STATE(752), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(752), + [sym_concatenated_string] = STATE(752), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_SEMI] = ACTIONS(1925), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1927), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1929), + [sym_false] = ACTIONS(1929), + [sym_null] = ACTIONS(1929), + [sym_comment] = ACTIONS(3), }, [555] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(2243), - [anon_sym_PERCENT_EQ] = ACTIONS(1078), - [anon_sym_DASH_EQ] = ACTIONS(1078), - [anon_sym_PIPE] = ACTIONS(1080), - [anon_sym_EQ_EQ] = ACTIONS(2247), - [anon_sym_SLASH] = ACTIONS(2249), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LT_LT] = ACTIONS(2243), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_PLUS_EQ] = ACTIONS(1078), - [anon_sym_LT_LT_EQ] = ACTIONS(1078), - [anon_sym_QMARK] = ACTIONS(1078), - [anon_sym_BANG_EQ] = ACTIONS(2247), - [anon_sym_CARET_EQ] = ACTIONS(1078), - [anon_sym_COMMA] = ACTIONS(1078), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT_EQ] = ACTIONS(1078), - [anon_sym_GT] = ACTIONS(2251), - [anon_sym_PIPE_EQ] = ACTIONS(1078), - [anon_sym_RPAREN] = ACTIONS(1078), - [anon_sym_RBRACK] = ACTIONS(1078), - [anon_sym_AMP_EQ] = ACTIONS(1078), - [anon_sym_PERCENT] = ACTIONS(2249), - [anon_sym_AMP] = ACTIONS(2253), - [anon_sym_EQ] = ACTIONS(1080), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(2257), - [anon_sym_RBRACE] = ACTIONS(1078), - [anon_sym_COLON] = ACTIONS(1078), - [anon_sym_STAR_EQ] = ACTIONS(1078), - [anon_sym_PIPE_PIPE] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(2261), - [anon_sym_LT_EQ] = ACTIONS(2257), - [anon_sym_STAR] = ACTIONS(2249), - [anon_sym_SLASH_EQ] = ACTIONS(1078), - [anon_sym_AMP_AMP] = ACTIONS(1078), - [anon_sym_SEMI] = ACTIONS(1078), - [anon_sym_CARET] = ACTIONS(2265), - [anon_sym_PLUS] = ACTIONS(2261), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(2251), - [anon_sym_LBRACK] = ACTIONS(305), + [sym__expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_assignment_expression] = STATE(768), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_update_expression] = STATE(768), + [sym_cast_expression] = STATE(768), + [sym_sizeof_expression] = STATE(768), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(768), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(768), + [sym_concatenated_string] = STATE(768), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_SEMI] = ACTIONS(1931), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1933), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1935), + [sym_false] = ACTIONS(1935), + [sym_null] = ACTIONS(1935), + [sym_comment] = ACTIONS(3), }, [556] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(2243), - [anon_sym_PERCENT_EQ] = ACTIONS(1078), - [anon_sym_DASH_EQ] = ACTIONS(1078), - [anon_sym_PIPE] = ACTIONS(1080), - [anon_sym_EQ_EQ] = ACTIONS(2247), - [anon_sym_SLASH] = ACTIONS(2249), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LT_LT] = ACTIONS(2243), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_PLUS_EQ] = ACTIONS(1078), - [anon_sym_LT_LT_EQ] = ACTIONS(1078), - [anon_sym_QMARK] = ACTIONS(1078), - [anon_sym_BANG_EQ] = ACTIONS(2247), - [anon_sym_CARET_EQ] = ACTIONS(1078), - [anon_sym_COMMA] = ACTIONS(1078), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT_EQ] = ACTIONS(1078), - [anon_sym_GT] = ACTIONS(2251), - [anon_sym_PIPE_EQ] = ACTIONS(1078), - [anon_sym_RPAREN] = ACTIONS(1078), - [anon_sym_RBRACK] = ACTIONS(1078), - [anon_sym_AMP_EQ] = ACTIONS(1078), - [anon_sym_PERCENT] = ACTIONS(2249), - [anon_sym_AMP] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1080), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(2257), - [anon_sym_RBRACE] = ACTIONS(1078), - [anon_sym_COLON] = ACTIONS(1078), - [anon_sym_STAR_EQ] = ACTIONS(1078), - [anon_sym_PIPE_PIPE] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(2261), - [anon_sym_LT_EQ] = ACTIONS(2257), - [anon_sym_STAR] = ACTIONS(2249), - [anon_sym_SLASH_EQ] = ACTIONS(1078), - [anon_sym_AMP_AMP] = ACTIONS(1078), - [anon_sym_SEMI] = ACTIONS(1078), - [anon_sym_CARET] = ACTIONS(1080), - [anon_sym_PLUS] = ACTIONS(2261), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(2251), - [anon_sym_LBRACK] = ACTIONS(305), + [sym__expression] = STATE(451), + [sym_conditional_expression] = STATE(451), + [sym_assignment_expression] = STATE(451), + [sym_pointer_expression] = STATE(451), + [sym_unary_expression] = STATE(451), + [sym_binary_expression] = STATE(451), + [sym_update_expression] = STATE(451), + [sym_cast_expression] = STATE(451), + [sym_sizeof_expression] = STATE(451), + [sym_subscript_expression] = STATE(451), + [sym_call_expression] = STATE(451), + [sym_field_expression] = STATE(451), + [sym_compound_literal_expression] = STATE(451), + [sym_parenthesized_expression] = STATE(451), + [sym_char_literal] = STATE(451), + [sym_concatenated_string] = STATE(451), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(1881), + [anon_sym_LPAREN2] = ACTIONS(729), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_RBRACK] = ACTIONS(1937), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_TILDE] = ACTIONS(739), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH_DASH] = ACTIONS(741), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_sizeof] = ACTIONS(743), + [sym_number_literal] = ACTIONS(1885), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_null] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), }, [557] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(2243), - [anon_sym_PERCENT_EQ] = ACTIONS(1078), - [anon_sym_DASH_EQ] = ACTIONS(1078), - [anon_sym_PIPE] = ACTIONS(2245), - [anon_sym_EQ_EQ] = ACTIONS(2247), - [anon_sym_SLASH] = ACTIONS(2249), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LT_LT] = ACTIONS(2243), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_PLUS_EQ] = ACTIONS(1078), - [anon_sym_LT_LT_EQ] = ACTIONS(1078), - [anon_sym_QMARK] = ACTIONS(1078), - [anon_sym_BANG_EQ] = ACTIONS(2247), - [anon_sym_CARET_EQ] = ACTIONS(1078), - [anon_sym_COMMA] = ACTIONS(1078), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT_EQ] = ACTIONS(1078), - [anon_sym_GT] = ACTIONS(2251), - [anon_sym_PIPE_EQ] = ACTIONS(1078), - [anon_sym_RPAREN] = ACTIONS(1078), - [anon_sym_RBRACK] = ACTIONS(1078), - [anon_sym_AMP_EQ] = ACTIONS(1078), - [anon_sym_PERCENT] = ACTIONS(2249), - [anon_sym_AMP] = ACTIONS(2253), - [anon_sym_EQ] = ACTIONS(1080), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(2257), - [anon_sym_RBRACE] = ACTIONS(1078), - [anon_sym_COLON] = ACTIONS(1078), - [anon_sym_STAR_EQ] = ACTIONS(1078), - [anon_sym_PIPE_PIPE] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(2261), - [anon_sym_LT_EQ] = ACTIONS(2257), - [anon_sym_STAR] = ACTIONS(2249), - [anon_sym_SLASH_EQ] = ACTIONS(1078), - [anon_sym_AMP_AMP] = ACTIONS(1078), - [anon_sym_SEMI] = ACTIONS(1078), - [anon_sym_CARET] = ACTIONS(2265), - [anon_sym_PLUS] = ACTIONS(2261), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(2251), - [anon_sym_LBRACK] = ACTIONS(305), + [sym__expression] = STATE(451), + [sym_conditional_expression] = STATE(451), + [sym_assignment_expression] = STATE(451), + [sym_pointer_expression] = STATE(451), + [sym_unary_expression] = STATE(451), + [sym_binary_expression] = STATE(451), + [sym_update_expression] = STATE(451), + [sym_cast_expression] = STATE(451), + [sym_sizeof_expression] = STATE(451), + [sym_subscript_expression] = STATE(451), + [sym_call_expression] = STATE(451), + [sym_field_expression] = STATE(451), + [sym_compound_literal_expression] = STATE(451), + [sym_parenthesized_expression] = STATE(451), + [sym_char_literal] = STATE(451), + [sym_concatenated_string] = STATE(451), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(1881), + [anon_sym_LPAREN2] = ACTIONS(729), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_RBRACK] = ACTIONS(1939), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_TILDE] = ACTIONS(739), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH_DASH] = ACTIONS(741), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_sizeof] = ACTIONS(743), + [sym_number_literal] = ACTIONS(1885), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_null] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), }, [558] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(2243), - [anon_sym_PERCENT_EQ] = ACTIONS(1078), - [anon_sym_DASH_EQ] = ACTIONS(1078), - [anon_sym_PIPE] = ACTIONS(1080), - [anon_sym_EQ_EQ] = ACTIONS(2247), - [anon_sym_SLASH] = ACTIONS(2249), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LT_LT] = ACTIONS(2243), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_PLUS_EQ] = ACTIONS(1078), - [anon_sym_LT_LT_EQ] = ACTIONS(1078), - [anon_sym_QMARK] = ACTIONS(1078), - [anon_sym_BANG_EQ] = ACTIONS(2247), - [anon_sym_CARET_EQ] = ACTIONS(1078), - [anon_sym_COMMA] = ACTIONS(1078), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT_EQ] = ACTIONS(1078), - [anon_sym_GT] = ACTIONS(2251), - [anon_sym_PIPE_EQ] = ACTIONS(1078), - [anon_sym_RPAREN] = ACTIONS(1078), - [anon_sym_RBRACK] = ACTIONS(1078), - [anon_sym_AMP_EQ] = ACTIONS(1078), - [anon_sym_PERCENT] = ACTIONS(2249), - [anon_sym_AMP] = ACTIONS(2253), - [anon_sym_EQ] = ACTIONS(1080), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(2257), - [anon_sym_RBRACE] = ACTIONS(1078), - [anon_sym_COLON] = ACTIONS(1078), - [anon_sym_STAR_EQ] = ACTIONS(1078), - [anon_sym_PIPE_PIPE] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(2261), - [anon_sym_LT_EQ] = ACTIONS(2257), - [anon_sym_STAR] = ACTIONS(2249), - [anon_sym_SLASH_EQ] = ACTIONS(1078), - [anon_sym_AMP_AMP] = ACTIONS(1078), - [anon_sym_SEMI] = ACTIONS(1078), - [anon_sym_CARET] = ACTIONS(1080), - [anon_sym_PLUS] = ACTIONS(2261), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(2251), - [anon_sym_LBRACK] = ACTIONS(305), + [sym__expression] = STATE(714), + [sym_comma_expression] = STATE(1122), + [sym_conditional_expression] = STATE(714), + [sym_assignment_expression] = STATE(714), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(714), + [sym_binary_expression] = STATE(714), + [sym_update_expression] = STATE(714), + [sym_cast_expression] = STATE(714), + [sym_sizeof_expression] = STATE(714), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(714), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(714), + [sym_concatenated_string] = STATE(714), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1941), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1943), + [sym_false] = ACTIONS(1943), + [sym_null] = ACTIONS(1943), + [sym_comment] = ACTIONS(3), }, [559] = { - [sym_true] = ACTIONS(1110), - [anon_sym_restrict] = ACTIONS(1110), - [sym_null] = ACTIONS(1110), - [anon_sym_goto] = ACTIONS(1110), - [anon_sym_const] = ACTIONS(1110), - [anon_sym_typedef] = ACTIONS(1110), - [anon_sym_DASH_DASH] = ACTIONS(1112), - [anon_sym__Atomic] = ACTIONS(1110), - [sym_identifier] = ACTIONS(1110), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1110), - [sym_number_literal] = ACTIONS(1112), - [anon_sym_volatile] = ACTIONS(1110), - [anon_sym_SQUOTE] = ACTIONS(1112), - [anon_sym_extern] = ACTIONS(1110), - [anon_sym_PLUS_PLUS] = ACTIONS(1112), - [anon_sym_struct] = ACTIONS(1110), - [anon_sym_signed] = ACTIONS(1110), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1110), - [anon_sym_while] = ACTIONS(1110), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1110), - [anon_sym_L_SQUOTE] = ACTIONS(1112), - [anon_sym___attribute__] = ACTIONS(1110), - [anon_sym_sizeof] = ACTIONS(1110), - [anon_sym_LBRACE] = ACTIONS(1112), - [anon_sym_union] = ACTIONS(1110), - [anon_sym_unsigned] = ACTIONS(1110), - [anon_sym_short] = ACTIONS(1110), - [anon_sym_do] = ACTIONS(1110), - [sym_preproc_directive] = ACTIONS(1110), - [anon_sym_AMP] = ACTIONS(1112), - [aux_sym_preproc_if_token1] = ACTIONS(1110), - [anon_sym_TILDE] = ACTIONS(1112), - [anon_sym_L_DQUOTE] = ACTIONS(1112), - [anon_sym_LPAREN2] = ACTIONS(1112), - [anon_sym_RBRACE] = ACTIONS(1112), - [sym_primitive_type] = ACTIONS(1110), - [anon_sym_for] = ACTIONS(1110), - [anon_sym_break] = ACTIONS(1110), - [anon_sym_BANG] = ACTIONS(1112), - [aux_sym_preproc_include_token1] = ACTIONS(1110), - [anon_sym_DASH] = ACTIONS(1110), - [anon_sym_static] = ACTIONS(1110), - [anon_sym_DQUOTE] = ACTIONS(1112), - [anon_sym_register] = ACTIONS(1110), - [anon_sym_STAR] = ACTIONS(1112), - [anon_sym_if] = ACTIONS(1110), - [anon_sym_switch] = ACTIONS(1110), - [anon_sym_enum] = ACTIONS(1110), - [sym_false] = ACTIONS(1110), - [anon_sym_return] = ACTIONS(1110), - [anon_sym_continue] = ACTIONS(1110), - [anon_sym_SEMI] = ACTIONS(1112), - [aux_sym_preproc_def_token1] = ACTIONS(1110), - [anon_sym_PLUS] = ACTIONS(1110), - [anon_sym_auto] = ACTIONS(1110), - [anon_sym_inline] = ACTIONS(1110), + [sym__expression] = STATE(742), + [sym_conditional_expression] = STATE(742), + [sym_assignment_expression] = STATE(742), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(742), + [sym_binary_expression] = STATE(742), + [sym_update_expression] = STATE(742), + [sym_cast_expression] = STATE(742), + [sym_sizeof_expression] = STATE(742), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(742), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(742), + [sym_concatenated_string] = STATE(742), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_SEMI] = ACTIONS(1945), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1947), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1949), + [sym_false] = ACTIONS(1949), + [sym_null] = ACTIONS(1949), + [sym_comment] = ACTIONS(3), }, [560] = { - [sym_true] = ACTIONS(1128), - [anon_sym_restrict] = ACTIONS(1128), - [sym_null] = ACTIONS(1128), - [anon_sym_goto] = ACTIONS(1128), - [anon_sym_const] = ACTIONS(1128), - [anon_sym_typedef] = ACTIONS(1128), - [anon_sym_DASH_DASH] = ACTIONS(1130), - [anon_sym__Atomic] = ACTIONS(1128), - [sym_identifier] = ACTIONS(1128), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1128), - [sym_number_literal] = ACTIONS(1130), - [anon_sym_volatile] = ACTIONS(1128), - [anon_sym_SQUOTE] = ACTIONS(1130), - [anon_sym_extern] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1130), - [anon_sym_struct] = ACTIONS(1128), - [anon_sym_signed] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1128), - [anon_sym_while] = ACTIONS(1128), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1128), - [anon_sym_L_SQUOTE] = ACTIONS(1130), - [anon_sym___attribute__] = ACTIONS(1128), - [anon_sym_sizeof] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(1130), - [anon_sym_union] = ACTIONS(1128), - [anon_sym_unsigned] = ACTIONS(1128), - [anon_sym_short] = ACTIONS(1128), - [anon_sym_do] = ACTIONS(1128), - [sym_preproc_directive] = ACTIONS(1128), - [anon_sym_AMP] = ACTIONS(1130), - [aux_sym_preproc_if_token1] = ACTIONS(1128), - [anon_sym_TILDE] = ACTIONS(1130), - [anon_sym_L_DQUOTE] = ACTIONS(1130), - [anon_sym_LPAREN2] = ACTIONS(1130), - [anon_sym_RBRACE] = ACTIONS(1130), - [sym_primitive_type] = ACTIONS(1128), - [anon_sym_for] = ACTIONS(1128), - [anon_sym_break] = ACTIONS(1128), - [anon_sym_BANG] = ACTIONS(1130), - [aux_sym_preproc_include_token1] = ACTIONS(1128), - [anon_sym_DASH] = ACTIONS(1128), - [anon_sym_static] = ACTIONS(1128), - [anon_sym_DQUOTE] = ACTIONS(1130), - [anon_sym_register] = ACTIONS(1128), - [anon_sym_STAR] = ACTIONS(1130), - [anon_sym_if] = ACTIONS(1128), - [anon_sym_switch] = ACTIONS(1128), - [anon_sym_enum] = ACTIONS(1128), - [sym_false] = ACTIONS(1128), - [anon_sym_return] = ACTIONS(1128), - [anon_sym_continue] = ACTIONS(1128), - [anon_sym_SEMI] = ACTIONS(1130), - [aux_sym_preproc_def_token1] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1128), - [anon_sym_auto] = ACTIONS(1128), - [anon_sym_inline] = ACTIONS(1128), + [sym__expression] = STATE(730), + [sym_conditional_expression] = STATE(730), + [sym_assignment_expression] = STATE(730), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(730), + [sym_binary_expression] = STATE(730), + [sym_update_expression] = STATE(730), + [sym_cast_expression] = STATE(730), + [sym_sizeof_expression] = STATE(730), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(730), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(730), + [sym_concatenated_string] = STATE(730), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_SEMI] = ACTIONS(1951), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1953), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1955), + [sym_false] = ACTIONS(1955), + [sym_null] = ACTIONS(1955), + [sym_comment] = ACTIONS(3), }, [561] = { - [sym_preproc_def] = STATE(561), - [sym_preproc_function_def] = STATE(561), - [sym_sized_type_specifier] = STATE(130), - [sym_enum_specifier] = STATE(130), - [sym__field_declaration_list_item] = STATE(561), - [sym_field_declaration] = STATE(561), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(561), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(130), - [sym_union_specifier] = STATE(130), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_attribute_specifier] = STATE(43), - [sym_macro_type_specifier] = STATE(130), - [sym_preproc_call] = STATE(561), - [sym_preproc_if_in_field_declaration_list] = STATE(561), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(561), - [sym_struct_specifier] = STATE(130), - [sym__declaration_specifiers] = STATE(888), - [sym_storage_class_specifier] = STATE(43), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2269), - [anon_sym_union] = ACTIONS(1168), - [anon_sym_unsigned] = ACTIONS(1171), - [anon_sym_restrict] = ACTIONS(1174), - [anon_sym_short] = ACTIONS(1171), - [anon_sym_static] = ACTIONS(1177), - [anon_sym_volatile] = ACTIONS(1174), - [anon_sym_register] = ACTIONS(1177), - [anon_sym_extern] = ACTIONS(1177), - [aux_sym_preproc_else_token1] = ACTIONS(2272), - [aux_sym_preproc_if_token2] = ACTIONS(2272), - [sym_preproc_directive] = ACTIONS(2274), - [anon_sym_signed] = ACTIONS(1171), - [aux_sym_preproc_if_token1] = ACTIONS(2277), - [anon_sym_long] = ACTIONS(1171), - [anon_sym_enum] = ACTIONS(1189), - [anon_sym_const] = ACTIONS(1174), - [anon_sym_struct] = ACTIONS(1180), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2269), - [aux_sym_preproc_elif_token1] = ACTIONS(2272), - [aux_sym_preproc_def_token1] = ACTIONS(2280), - [anon_sym__Atomic] = ACTIONS(1174), - [anon_sym_auto] = ACTIONS(1177), - [sym_primitive_type] = ACTIONS(1197), - [anon_sym_inline] = ACTIONS(1177), - [anon_sym___attribute__] = ACTIONS(1200), - [sym_identifier] = ACTIONS(1203), + [sym__expression] = STATE(673), + [sym_comma_expression] = STATE(1220), + [sym_conditional_expression] = STATE(673), + [sym_assignment_expression] = STATE(673), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(673), + [sym_binary_expression] = STATE(673), + [sym_update_expression] = STATE(673), + [sym_cast_expression] = STATE(673), + [sym_sizeof_expression] = STATE(673), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(673), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(673), + [sym_concatenated_string] = STATE(673), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1059), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1061), + [sym_false] = ACTIONS(1061), + [sym_null] = ACTIONS(1061), + [sym_comment] = ACTIONS(3), }, [562] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1214), - [anon_sym_union] = ACTIONS(1214), - [anon_sym_unsigned] = ACTIONS(1214), - [anon_sym_restrict] = ACTIONS(1214), - [anon_sym_short] = ACTIONS(1214), - [anon_sym_static] = ACTIONS(1214), - [anon_sym_volatile] = ACTIONS(1214), - [anon_sym_register] = ACTIONS(1214), - [anon_sym_extern] = ACTIONS(1214), - [aux_sym_preproc_else_token1] = ACTIONS(1214), - [aux_sym_preproc_if_token2] = ACTIONS(1214), - [sym_preproc_directive] = ACTIONS(1214), - [anon_sym_signed] = ACTIONS(1214), - [aux_sym_preproc_if_token1] = ACTIONS(1214), - [anon_sym_long] = ACTIONS(1214), - [anon_sym_enum] = ACTIONS(1214), - [anon_sym_const] = ACTIONS(1214), - [anon_sym_struct] = ACTIONS(1214), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1214), - [aux_sym_preproc_elif_token1] = ACTIONS(1214), - [aux_sym_preproc_def_token1] = ACTIONS(1214), - [anon_sym__Atomic] = ACTIONS(1214), - [anon_sym_auto] = ACTIONS(1214), - [sym_primitive_type] = ACTIONS(1214), - [anon_sym_inline] = ACTIONS(1214), - [anon_sym___attribute__] = ACTIONS(1214), - [sym_identifier] = ACTIONS(1214), + [sym__expression] = STATE(451), + [sym_conditional_expression] = STATE(451), + [sym_assignment_expression] = STATE(451), + [sym_pointer_expression] = STATE(451), + [sym_unary_expression] = STATE(451), + [sym_binary_expression] = STATE(451), + [sym_update_expression] = STATE(451), + [sym_cast_expression] = STATE(451), + [sym_sizeof_expression] = STATE(451), + [sym_subscript_expression] = STATE(451), + [sym_call_expression] = STATE(451), + [sym_field_expression] = STATE(451), + [sym_compound_literal_expression] = STATE(451), + [sym_parenthesized_expression] = STATE(451), + [sym_char_literal] = STATE(451), + [sym_concatenated_string] = STATE(451), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(1881), + [anon_sym_LPAREN2] = ACTIONS(729), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_RBRACK] = ACTIONS(1957), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_TILDE] = ACTIONS(739), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH_DASH] = ACTIONS(741), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_sizeof] = ACTIONS(743), + [sym_number_literal] = ACTIONS(1885), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_null] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), }, [563] = { - [sym_true] = ACTIONS(1226), - [anon_sym_restrict] = ACTIONS(1226), - [sym_null] = ACTIONS(1226), - [anon_sym_goto] = ACTIONS(1226), - [anon_sym_const] = ACTIONS(1226), - [anon_sym_typedef] = ACTIONS(1226), - [anon_sym_DASH_DASH] = ACTIONS(1228), - [anon_sym__Atomic] = ACTIONS(1226), - [sym_identifier] = ACTIONS(1226), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1226), - [sym_number_literal] = ACTIONS(1228), - [anon_sym_volatile] = ACTIONS(1226), - [anon_sym_SQUOTE] = ACTIONS(1228), - [anon_sym_extern] = ACTIONS(1226), - [anon_sym_PLUS_PLUS] = ACTIONS(1228), - [anon_sym_struct] = ACTIONS(1226), - [anon_sym_signed] = ACTIONS(1226), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1226), - [anon_sym_while] = ACTIONS(1226), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1226), - [anon_sym_L_SQUOTE] = ACTIONS(1228), - [anon_sym___attribute__] = ACTIONS(1226), - [anon_sym_sizeof] = ACTIONS(1226), - [anon_sym_LBRACE] = ACTIONS(1228), - [anon_sym_union] = ACTIONS(1226), - [anon_sym_unsigned] = ACTIONS(1226), - [anon_sym_short] = ACTIONS(1226), - [anon_sym_do] = ACTIONS(1226), - [sym_preproc_directive] = ACTIONS(1226), - [anon_sym_AMP] = ACTIONS(1228), - [aux_sym_preproc_if_token1] = ACTIONS(1226), - [anon_sym_TILDE] = ACTIONS(1228), - [anon_sym_L_DQUOTE] = ACTIONS(1228), - [anon_sym_LPAREN2] = ACTIONS(1228), - [anon_sym_RBRACE] = ACTIONS(1228), - [anon_sym_else] = ACTIONS(1226), - [sym_primitive_type] = ACTIONS(1226), - [anon_sym_for] = ACTIONS(1226), - [anon_sym_break] = ACTIONS(1226), - [anon_sym_BANG] = ACTIONS(1228), - [aux_sym_preproc_include_token1] = ACTIONS(1226), - [anon_sym_DASH] = ACTIONS(1226), - [anon_sym_static] = ACTIONS(1226), - [anon_sym_DQUOTE] = ACTIONS(1228), - [anon_sym_register] = ACTIONS(1226), - [anon_sym_STAR] = ACTIONS(1228), - [anon_sym_if] = ACTIONS(1226), - [anon_sym_switch] = ACTIONS(1226), - [anon_sym_enum] = ACTIONS(1226), - [sym_false] = ACTIONS(1226), - [anon_sym_return] = ACTIONS(1226), - [anon_sym_continue] = ACTIONS(1226), - [anon_sym_SEMI] = ACTIONS(1228), - [aux_sym_preproc_def_token1] = ACTIONS(1226), - [anon_sym_PLUS] = ACTIONS(1226), - [anon_sym_auto] = ACTIONS(1226), - [anon_sym_inline] = ACTIONS(1226), + [sym__expression] = STATE(757), + [sym_conditional_expression] = STATE(757), + [sym_assignment_expression] = STATE(757), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(757), + [sym_binary_expression] = STATE(757), + [sym_update_expression] = STATE(757), + [sym_cast_expression] = STATE(757), + [sym_sizeof_expression] = STATE(757), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(757), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(757), + [sym_concatenated_string] = STATE(757), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_SEMI] = ACTIONS(1959), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1961), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1963), + [sym_false] = ACTIONS(1963), + [sym_null] = ACTIONS(1963), + [sym_comment] = ACTIONS(3), }, [564] = { - [sym_true] = ACTIONS(1234), - [anon_sym_restrict] = ACTIONS(1234), - [sym_null] = ACTIONS(1234), - [anon_sym_goto] = ACTIONS(1234), - [anon_sym_const] = ACTIONS(1234), - [anon_sym_typedef] = ACTIONS(1234), - [anon_sym_DASH_DASH] = ACTIONS(1236), - [anon_sym__Atomic] = ACTIONS(1234), - [sym_identifier] = ACTIONS(1234), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1234), - [sym_number_literal] = ACTIONS(1236), - [anon_sym_volatile] = ACTIONS(1234), - [anon_sym_SQUOTE] = ACTIONS(1236), - [anon_sym_extern] = ACTIONS(1234), - [anon_sym_PLUS_PLUS] = ACTIONS(1236), - [anon_sym_struct] = ACTIONS(1234), - [anon_sym_signed] = ACTIONS(1234), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1234), - [anon_sym_while] = ACTIONS(1234), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1234), - [anon_sym_L_SQUOTE] = ACTIONS(1236), - [anon_sym___attribute__] = ACTIONS(1234), - [anon_sym_sizeof] = ACTIONS(1234), - [anon_sym_LBRACE] = ACTIONS(1236), - [anon_sym_union] = ACTIONS(1234), - [anon_sym_unsigned] = ACTIONS(1234), - [anon_sym_short] = ACTIONS(1234), - [anon_sym_do] = ACTIONS(1234), - [sym_preproc_directive] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(1236), - [aux_sym_preproc_if_token1] = ACTIONS(1234), - [anon_sym_TILDE] = ACTIONS(1236), - [anon_sym_L_DQUOTE] = ACTIONS(1236), - [anon_sym_LPAREN2] = ACTIONS(1236), - [anon_sym_RBRACE] = ACTIONS(1236), - [sym_primitive_type] = ACTIONS(1234), - [anon_sym_for] = ACTIONS(1234), - [anon_sym_break] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1236), - [aux_sym_preproc_include_token1] = ACTIONS(1234), - [anon_sym_DASH] = ACTIONS(1234), - [anon_sym_static] = ACTIONS(1234), - [anon_sym_DQUOTE] = ACTIONS(1236), - [anon_sym_register] = ACTIONS(1234), - [anon_sym_STAR] = ACTIONS(1236), - [anon_sym_if] = ACTIONS(1234), - [anon_sym_switch] = ACTIONS(1234), - [anon_sym_enum] = ACTIONS(1234), - [sym_false] = ACTIONS(1234), - [anon_sym_return] = ACTIONS(1234), - [anon_sym_continue] = ACTIONS(1234), - [anon_sym_SEMI] = ACTIONS(1236), - [aux_sym_preproc_def_token1] = ACTIONS(1234), - [anon_sym_PLUS] = ACTIONS(1234), - [anon_sym_auto] = ACTIONS(1234), - [anon_sym_inline] = ACTIONS(1234), + [sym__expression] = STATE(670), + [sym_comma_expression] = STATE(1272), + [sym_conditional_expression] = STATE(670), + [sym_assignment_expression] = STATE(670), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(670), + [sym_binary_expression] = STATE(670), + [sym_update_expression] = STATE(670), + [sym_cast_expression] = STATE(670), + [sym_sizeof_expression] = STATE(670), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(670), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(670), + [sym_concatenated_string] = STATE(670), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1965), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_null] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), }, [565] = { - [sym_true] = ACTIONS(1238), - [anon_sym_restrict] = ACTIONS(1238), - [sym_null] = ACTIONS(1238), - [anon_sym_goto] = ACTIONS(1238), - [anon_sym_const] = ACTIONS(1238), - [anon_sym_typedef] = ACTIONS(1238), - [anon_sym_DASH_DASH] = ACTIONS(1240), - [anon_sym__Atomic] = ACTIONS(1238), - [sym_identifier] = ACTIONS(1238), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1238), - [sym_number_literal] = ACTIONS(1240), - [anon_sym_volatile] = ACTIONS(1238), - [anon_sym_SQUOTE] = ACTIONS(1240), - [anon_sym_extern] = ACTIONS(1238), - [anon_sym_PLUS_PLUS] = ACTIONS(1240), - [anon_sym_struct] = ACTIONS(1238), - [anon_sym_signed] = ACTIONS(1238), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1238), - [anon_sym_while] = ACTIONS(1238), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1238), - [anon_sym_L_SQUOTE] = ACTIONS(1240), - [anon_sym___attribute__] = ACTIONS(1238), - [anon_sym_sizeof] = ACTIONS(1238), - [anon_sym_LBRACE] = ACTIONS(1240), - [anon_sym_union] = ACTIONS(1238), - [anon_sym_unsigned] = ACTIONS(1238), - [anon_sym_short] = ACTIONS(1238), - [anon_sym_do] = ACTIONS(1238), - [sym_preproc_directive] = ACTIONS(1238), - [anon_sym_AMP] = ACTIONS(1240), - [aux_sym_preproc_if_token1] = ACTIONS(1238), - [anon_sym_TILDE] = ACTIONS(1240), - [anon_sym_L_DQUOTE] = ACTIONS(1240), - [anon_sym_LPAREN2] = ACTIONS(1240), - [anon_sym_RBRACE] = ACTIONS(1240), - [sym_primitive_type] = ACTIONS(1238), - [anon_sym_for] = ACTIONS(1238), - [anon_sym_break] = ACTIONS(1238), - [anon_sym_BANG] = ACTIONS(1240), - [aux_sym_preproc_include_token1] = ACTIONS(1238), - [anon_sym_DASH] = ACTIONS(1238), - [anon_sym_static] = ACTIONS(1238), - [anon_sym_DQUOTE] = ACTIONS(1240), - [anon_sym_register] = ACTIONS(1238), - [anon_sym_STAR] = ACTIONS(1240), - [anon_sym_if] = ACTIONS(1238), - [anon_sym_switch] = ACTIONS(1238), - [anon_sym_enum] = ACTIONS(1238), - [sym_false] = ACTIONS(1238), - [anon_sym_return] = ACTIONS(1238), - [anon_sym_continue] = ACTIONS(1238), - [anon_sym_SEMI] = ACTIONS(1240), - [aux_sym_preproc_def_token1] = ACTIONS(1238), - [anon_sym_PLUS] = ACTIONS(1238), - [anon_sym_auto] = ACTIONS(1238), - [anon_sym_inline] = ACTIONS(1238), + [sym__expression] = STATE(729), + [sym_comma_expression] = STATE(1151), + [sym_conditional_expression] = STATE(729), + [sym_assignment_expression] = STATE(729), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(729), + [sym_binary_expression] = STATE(729), + [sym_update_expression] = STATE(729), + [sym_cast_expression] = STATE(729), + [sym_sizeof_expression] = STATE(729), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(729), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(729), + [sym_concatenated_string] = STATE(729), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1969), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1971), + [sym_false] = ACTIONS(1971), + [sym_null] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), }, [566] = { - [sym_true] = ACTIONS(1316), - [anon_sym_restrict] = ACTIONS(1316), - [sym_null] = ACTIONS(1316), - [anon_sym_goto] = ACTIONS(1316), - [anon_sym_const] = ACTIONS(1316), - [anon_sym_typedef] = ACTIONS(1316), - [anon_sym_DASH_DASH] = ACTIONS(1318), - [anon_sym__Atomic] = ACTIONS(1316), - [sym_identifier] = ACTIONS(1316), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1316), - [sym_number_literal] = ACTIONS(1318), - [anon_sym_volatile] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(1318), - [anon_sym_extern] = ACTIONS(1316), - [anon_sym_PLUS_PLUS] = ACTIONS(1318), - [anon_sym_struct] = ACTIONS(1316), - [anon_sym_signed] = ACTIONS(1316), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1316), - [anon_sym_while] = ACTIONS(1316), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1316), - [anon_sym_L_SQUOTE] = ACTIONS(1318), - [anon_sym___attribute__] = ACTIONS(1316), - [anon_sym_sizeof] = ACTIONS(1316), - [anon_sym_LBRACE] = ACTIONS(1318), - [anon_sym_union] = ACTIONS(1316), - [anon_sym_unsigned] = ACTIONS(1316), - [anon_sym_short] = ACTIONS(1316), - [anon_sym_do] = ACTIONS(1316), - [sym_preproc_directive] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1318), - [aux_sym_preproc_if_token1] = ACTIONS(1316), - [anon_sym_TILDE] = ACTIONS(1318), - [anon_sym_L_DQUOTE] = ACTIONS(1318), - [anon_sym_LPAREN2] = ACTIONS(1318), - [anon_sym_RBRACE] = ACTIONS(1318), - [sym_primitive_type] = ACTIONS(1316), - [anon_sym_for] = ACTIONS(1316), - [anon_sym_break] = ACTIONS(1316), - [anon_sym_BANG] = ACTIONS(1318), - [aux_sym_preproc_include_token1] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1316), - [anon_sym_static] = ACTIONS(1316), - [anon_sym_DQUOTE] = ACTIONS(1318), - [anon_sym_register] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1318), - [anon_sym_if] = ACTIONS(1316), - [anon_sym_switch] = ACTIONS(1316), - [anon_sym_enum] = ACTIONS(1316), - [sym_false] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(1316), - [anon_sym_continue] = ACTIONS(1316), - [anon_sym_SEMI] = ACTIONS(1318), - [aux_sym_preproc_def_token1] = ACTIONS(1316), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_auto] = ACTIONS(1316), - [anon_sym_inline] = ACTIONS(1316), + [sym__expression] = STATE(733), + [sym_conditional_expression] = STATE(733), + [sym_assignment_expression] = STATE(733), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(733), + [sym_binary_expression] = STATE(733), + [sym_update_expression] = STATE(733), + [sym_cast_expression] = STATE(733), + [sym_sizeof_expression] = STATE(733), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(733), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(733), + [sym_concatenated_string] = STATE(733), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_SEMI] = ACTIONS(1973), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1975), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1977), + [sym_false] = ACTIONS(1977), + [sym_null] = ACTIONS(1977), + [sym_comment] = ACTIONS(3), }, [567] = { - [sym_true] = ACTIONS(1360), - [anon_sym_restrict] = ACTIONS(1360), - [sym_null] = ACTIONS(1360), - [anon_sym_goto] = ACTIONS(1360), - [anon_sym_const] = ACTIONS(1360), - [anon_sym_typedef] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1362), - [anon_sym__Atomic] = ACTIONS(1360), - [sym_identifier] = ACTIONS(1360), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1360), - [sym_number_literal] = ACTIONS(1362), - [anon_sym_volatile] = ACTIONS(1360), - [anon_sym_SQUOTE] = ACTIONS(1362), - [anon_sym_extern] = ACTIONS(1360), - [anon_sym_PLUS_PLUS] = ACTIONS(1362), - [anon_sym_struct] = ACTIONS(1360), - [anon_sym_signed] = ACTIONS(1360), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1360), - [anon_sym_while] = ACTIONS(1360), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1360), - [anon_sym_L_SQUOTE] = ACTIONS(1362), - [anon_sym___attribute__] = ACTIONS(1360), - [anon_sym_sizeof] = ACTIONS(1360), - [anon_sym_LBRACE] = ACTIONS(1362), - [anon_sym_union] = ACTIONS(1360), - [anon_sym_unsigned] = ACTIONS(1360), - [anon_sym_short] = ACTIONS(1360), - [anon_sym_do] = ACTIONS(1360), - [sym_preproc_directive] = ACTIONS(1360), - [anon_sym_AMP] = ACTIONS(1362), - [aux_sym_preproc_if_token1] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1362), - [anon_sym_L_DQUOTE] = ACTIONS(1362), - [anon_sym_LPAREN2] = ACTIONS(1362), - [anon_sym_RBRACE] = ACTIONS(1362), - [sym_primitive_type] = ACTIONS(1360), - [anon_sym_for] = ACTIONS(1360), - [anon_sym_break] = ACTIONS(1360), - [anon_sym_BANG] = ACTIONS(1362), - [aux_sym_preproc_include_token1] = ACTIONS(1360), - [anon_sym_DASH] = ACTIONS(1360), - [anon_sym_static] = ACTIONS(1360), - [anon_sym_DQUOTE] = ACTIONS(1362), - [anon_sym_register] = ACTIONS(1360), - [anon_sym_STAR] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1360), - [anon_sym_switch] = ACTIONS(1360), - [anon_sym_enum] = ACTIONS(1360), - [sym_false] = ACTIONS(1360), - [anon_sym_return] = ACTIONS(1360), - [anon_sym_continue] = ACTIONS(1360), - [anon_sym_SEMI] = ACTIONS(1362), - [aux_sym_preproc_def_token1] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1360), - [anon_sym_auto] = ACTIONS(1360), - [anon_sym_inline] = ACTIONS(1360), + [sym__expression] = STATE(780), + [sym_conditional_expression] = STATE(780), + [sym_assignment_expression] = STATE(780), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(780), + [sym_binary_expression] = STATE(780), + [sym_update_expression] = STATE(780), + [sym_cast_expression] = STATE(780), + [sym_sizeof_expression] = STATE(780), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(780), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(780), + [sym_concatenated_string] = STATE(780), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_SEMI] = ACTIONS(1979), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1981), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1983), + [sym_false] = ACTIONS(1983), + [sym_null] = ACTIONS(1983), + [sym_comment] = ACTIONS(3), }, [568] = { - [sym_true] = ACTIONS(1364), - [anon_sym_restrict] = ACTIONS(1364), - [sym_null] = ACTIONS(1364), - [anon_sym_goto] = ACTIONS(1364), - [anon_sym_const] = ACTIONS(1364), - [anon_sym_typedef] = ACTIONS(1364), - [anon_sym_DASH_DASH] = ACTIONS(1366), - [anon_sym__Atomic] = ACTIONS(1364), - [sym_identifier] = ACTIONS(1364), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1364), - [sym_number_literal] = ACTIONS(1366), - [anon_sym_volatile] = ACTIONS(1364), - [anon_sym_SQUOTE] = ACTIONS(1366), - [anon_sym_extern] = ACTIONS(1364), - [anon_sym_PLUS_PLUS] = ACTIONS(1366), - [anon_sym_struct] = ACTIONS(1364), - [anon_sym_signed] = ACTIONS(1364), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1364), - [anon_sym_while] = ACTIONS(1364), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1364), - [anon_sym_L_SQUOTE] = ACTIONS(1366), - [anon_sym___attribute__] = ACTIONS(1364), - [anon_sym_sizeof] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1366), - [anon_sym_union] = ACTIONS(1364), - [anon_sym_unsigned] = ACTIONS(1364), - [anon_sym_short] = ACTIONS(1364), - [anon_sym_do] = ACTIONS(1364), - [sym_preproc_directive] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1366), - [aux_sym_preproc_if_token1] = ACTIONS(1364), - [anon_sym_TILDE] = ACTIONS(1366), - [anon_sym_L_DQUOTE] = ACTIONS(1366), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_RBRACE] = ACTIONS(1366), - [sym_primitive_type] = ACTIONS(1364), - [anon_sym_for] = ACTIONS(1364), - [anon_sym_break] = ACTIONS(1364), - [anon_sym_BANG] = ACTIONS(1366), - [aux_sym_preproc_include_token1] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1364), - [anon_sym_static] = ACTIONS(1364), - [anon_sym_DQUOTE] = ACTIONS(1366), - [anon_sym_register] = ACTIONS(1364), - [anon_sym_STAR] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1364), - [anon_sym_switch] = ACTIONS(1364), - [anon_sym_enum] = ACTIONS(1364), - [sym_false] = ACTIONS(1364), - [anon_sym_return] = ACTIONS(1364), - [anon_sym_continue] = ACTIONS(1364), - [anon_sym_SEMI] = ACTIONS(1366), - [aux_sym_preproc_def_token1] = ACTIONS(1364), - [anon_sym_PLUS] = ACTIONS(1364), - [anon_sym_auto] = ACTIONS(1364), - [anon_sym_inline] = ACTIONS(1364), + [sym__expression] = STATE(451), + [sym_conditional_expression] = STATE(451), + [sym_assignment_expression] = STATE(451), + [sym_pointer_expression] = STATE(451), + [sym_unary_expression] = STATE(451), + [sym_binary_expression] = STATE(451), + [sym_update_expression] = STATE(451), + [sym_cast_expression] = STATE(451), + [sym_sizeof_expression] = STATE(451), + [sym_subscript_expression] = STATE(451), + [sym_call_expression] = STATE(451), + [sym_field_expression] = STATE(451), + [sym_compound_literal_expression] = STATE(451), + [sym_parenthesized_expression] = STATE(451), + [sym_char_literal] = STATE(451), + [sym_concatenated_string] = STATE(451), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(1881), + [anon_sym_LPAREN2] = ACTIONS(729), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_RBRACK] = ACTIONS(1985), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_TILDE] = ACTIONS(739), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH_DASH] = ACTIONS(741), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_sizeof] = ACTIONS(743), + [sym_number_literal] = ACTIONS(1885), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_null] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), }, [569] = { - [sym_true] = ACTIONS(1370), - [anon_sym_restrict] = ACTIONS(1370), - [sym_null] = ACTIONS(1370), - [anon_sym_goto] = ACTIONS(1370), - [anon_sym_const] = ACTIONS(1370), - [anon_sym_typedef] = ACTIONS(1370), - [anon_sym_DASH_DASH] = ACTIONS(1372), - [anon_sym__Atomic] = ACTIONS(1370), - [sym_identifier] = ACTIONS(1370), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1370), - [sym_number_literal] = ACTIONS(1372), - [anon_sym_volatile] = ACTIONS(1370), - [anon_sym_SQUOTE] = ACTIONS(1372), - [anon_sym_extern] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1372), - [anon_sym_struct] = ACTIONS(1370), - [anon_sym_signed] = ACTIONS(1370), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1370), - [anon_sym_while] = ACTIONS(1370), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1370), - [anon_sym_L_SQUOTE] = ACTIONS(1372), - [anon_sym___attribute__] = ACTIONS(1370), - [anon_sym_sizeof] = ACTIONS(1370), - [anon_sym_LBRACE] = ACTIONS(1372), - [anon_sym_union] = ACTIONS(1370), - [anon_sym_unsigned] = ACTIONS(1370), - [anon_sym_short] = ACTIONS(1370), - [anon_sym_do] = ACTIONS(1370), - [sym_preproc_directive] = ACTIONS(1370), - [anon_sym_AMP] = ACTIONS(1372), - [aux_sym_preproc_if_token1] = ACTIONS(1370), - [anon_sym_TILDE] = ACTIONS(1372), - [anon_sym_L_DQUOTE] = ACTIONS(1372), - [anon_sym_LPAREN2] = ACTIONS(1372), - [anon_sym_RBRACE] = ACTIONS(1372), - [sym_primitive_type] = ACTIONS(1370), - [anon_sym_for] = ACTIONS(1370), - [anon_sym_break] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1372), - [aux_sym_preproc_include_token1] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_DQUOTE] = ACTIONS(1372), - [anon_sym_register] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_if] = ACTIONS(1370), - [anon_sym_switch] = ACTIONS(1370), - [anon_sym_enum] = ACTIONS(1370), - [sym_false] = ACTIONS(1370), - [anon_sym_return] = ACTIONS(1370), - [anon_sym_continue] = ACTIONS(1370), - [anon_sym_SEMI] = ACTIONS(1372), - [aux_sym_preproc_def_token1] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_auto] = ACTIONS(1370), - [anon_sym_inline] = ACTIONS(1370), + [sym__expression] = STATE(734), + [sym_conditional_expression] = STATE(734), + [sym_assignment_expression] = STATE(734), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(734), + [sym_binary_expression] = STATE(734), + [sym_update_expression] = STATE(734), + [sym_cast_expression] = STATE(734), + [sym_sizeof_expression] = STATE(734), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(734), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(734), + [sym_concatenated_string] = STATE(734), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_SEMI] = ACTIONS(1987), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1989), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1991), + [sym_false] = ACTIONS(1991), + [sym_null] = ACTIONS(1991), + [sym_comment] = ACTIONS(3), }, [570] = { - [sym_if_statement] = STATE(588), - [sym_do_statement] = STATE(588), - [sym_for_statement] = STATE(588), - [sym__expression] = STATE(867), - [sym_comma_expression] = STATE(868), - [sym_binary_expression] = STATE(867), - [sym_update_expression] = STATE(867), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(588), - [sym_return_statement] = STATE(588), - [sym_break_statement] = STATE(588), - [sym_conditional_expression] = STATE(867), - [sym_assignment_expression] = STATE(867), - [sym_cast_expression] = STATE(867), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(867), - [sym_char_literal] = STATE(867), - [sym_labeled_statement] = STATE(588), - [sym_while_statement] = STATE(588), - [sym_continue_statement] = STATE(588), - [sym_goto_statement] = STATE(588), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(867), - [sym_sizeof_expression] = STATE(867), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(867), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(588), - [sym_expression_statement] = STATE(588), - [anon_sym_LBRACE] = ACTIONS(97), - [sym_true] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [anon_sym_do] = ACTIONS(99), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(2139), - [anon_sym_for] = ACTIONS(109), - [anon_sym_break] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(115), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(117), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(81), - [anon_sym_return] = ACTIONS(119), - [anon_sym_while] = ACTIONS(95), - [anon_sym_continue] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym__expression] = STATE(451), + [sym_conditional_expression] = STATE(451), + [sym_assignment_expression] = STATE(451), + [sym_pointer_expression] = STATE(451), + [sym_unary_expression] = STATE(451), + [sym_binary_expression] = STATE(451), + [sym_update_expression] = STATE(451), + [sym_cast_expression] = STATE(451), + [sym_sizeof_expression] = STATE(451), + [sym_subscript_expression] = STATE(451), + [sym_call_expression] = STATE(451), + [sym_field_expression] = STATE(451), + [sym_compound_literal_expression] = STATE(451), + [sym_parenthesized_expression] = STATE(451), + [sym_char_literal] = STATE(451), + [sym_concatenated_string] = STATE(451), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(1881), + [anon_sym_LPAREN2] = ACTIONS(729), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_RBRACK] = ACTIONS(1993), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_TILDE] = ACTIONS(739), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH_DASH] = ACTIONS(741), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_sizeof] = ACTIONS(743), + [sym_number_literal] = ACTIONS(1885), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_null] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), }, [571] = { - [sym_true] = ACTIONS(1380), - [anon_sym_restrict] = ACTIONS(1380), - [sym_null] = ACTIONS(1380), - [anon_sym_goto] = ACTIONS(1380), - [anon_sym_const] = ACTIONS(1380), - [anon_sym_typedef] = ACTIONS(1380), - [anon_sym_DASH_DASH] = ACTIONS(1382), - [anon_sym__Atomic] = ACTIONS(1380), - [sym_identifier] = ACTIONS(1380), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1380), - [sym_number_literal] = ACTIONS(1382), - [anon_sym_volatile] = ACTIONS(1380), - [anon_sym_SQUOTE] = ACTIONS(1382), - [anon_sym_extern] = ACTIONS(1380), - [anon_sym_PLUS_PLUS] = ACTIONS(1382), - [anon_sym_struct] = ACTIONS(1380), - [anon_sym_signed] = ACTIONS(1380), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1380), - [anon_sym_while] = ACTIONS(1380), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1380), - [anon_sym_L_SQUOTE] = ACTIONS(1382), - [anon_sym___attribute__] = ACTIONS(1380), - [anon_sym_sizeof] = ACTIONS(1380), - [anon_sym_LBRACE] = ACTIONS(1382), - [anon_sym_union] = ACTIONS(1380), - [anon_sym_unsigned] = ACTIONS(1380), - [anon_sym_short] = ACTIONS(1380), - [anon_sym_do] = ACTIONS(1380), - [sym_preproc_directive] = ACTIONS(1380), - [anon_sym_AMP] = ACTIONS(1382), - [aux_sym_preproc_if_token1] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1382), - [anon_sym_L_DQUOTE] = ACTIONS(1382), - [anon_sym_LPAREN2] = ACTIONS(1382), - [anon_sym_RBRACE] = ACTIONS(1382), - [anon_sym_else] = ACTIONS(1380), - [sym_primitive_type] = ACTIONS(1380), - [anon_sym_for] = ACTIONS(1380), - [anon_sym_break] = ACTIONS(1380), - [anon_sym_BANG] = ACTIONS(1382), - [aux_sym_preproc_include_token1] = ACTIONS(1380), - [anon_sym_DASH] = ACTIONS(1380), - [anon_sym_static] = ACTIONS(1380), - [anon_sym_DQUOTE] = ACTIONS(1382), - [anon_sym_register] = ACTIONS(1380), - [anon_sym_STAR] = ACTIONS(1382), - [anon_sym_if] = ACTIONS(1380), - [anon_sym_switch] = ACTIONS(1380), - [anon_sym_enum] = ACTIONS(1380), - [sym_false] = ACTIONS(1380), - [anon_sym_return] = ACTIONS(1380), - [anon_sym_continue] = ACTIONS(1380), - [anon_sym_SEMI] = ACTIONS(1382), - [aux_sym_preproc_def_token1] = ACTIONS(1380), - [anon_sym_PLUS] = ACTIONS(1380), - [anon_sym_auto] = ACTIONS(1380), - [anon_sym_inline] = ACTIONS(1380), + [sym__expression] = STATE(665), + [sym_comma_expression] = STATE(1101), + [sym_conditional_expression] = STATE(665), + [sym_assignment_expression] = STATE(665), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(665), + [sym_binary_expression] = STATE(665), + [sym_update_expression] = STATE(665), + [sym_cast_expression] = STATE(665), + [sym_sizeof_expression] = STATE(665), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(665), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(665), + [sym_concatenated_string] = STATE(665), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(1995), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1997), + [sym_false] = ACTIONS(1997), + [sym_null] = ACTIONS(1997), + [sym_comment] = ACTIONS(3), }, [572] = { - [sym_true] = ACTIONS(1400), - [anon_sym_restrict] = ACTIONS(1400), - [sym_null] = ACTIONS(1400), - [anon_sym_goto] = ACTIONS(1400), - [anon_sym_const] = ACTIONS(1400), - [anon_sym_typedef] = ACTIONS(1400), - [anon_sym_DASH_DASH] = ACTIONS(1402), - [anon_sym__Atomic] = ACTIONS(1400), - [sym_identifier] = ACTIONS(1400), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1400), - [sym_number_literal] = ACTIONS(1402), - [anon_sym_volatile] = ACTIONS(1400), - [anon_sym_SQUOTE] = ACTIONS(1402), - [anon_sym_extern] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1402), - [anon_sym_struct] = ACTIONS(1400), - [anon_sym_signed] = ACTIONS(1400), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1400), - [anon_sym_while] = ACTIONS(1400), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1400), - [anon_sym_L_SQUOTE] = ACTIONS(1402), - [anon_sym___attribute__] = ACTIONS(1400), - [anon_sym_sizeof] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1402), - [anon_sym_union] = ACTIONS(1400), - [anon_sym_unsigned] = ACTIONS(1400), - [anon_sym_short] = ACTIONS(1400), - [anon_sym_do] = ACTIONS(1400), - [sym_preproc_directive] = ACTIONS(1400), - [anon_sym_AMP] = ACTIONS(1402), - [aux_sym_preproc_if_token1] = ACTIONS(1400), - [anon_sym_TILDE] = ACTIONS(1402), - [anon_sym_L_DQUOTE] = ACTIONS(1402), - [anon_sym_LPAREN2] = ACTIONS(1402), - [anon_sym_RBRACE] = ACTIONS(1402), - [sym_primitive_type] = ACTIONS(1400), - [anon_sym_for] = ACTIONS(1400), - [anon_sym_break] = ACTIONS(1400), - [anon_sym_BANG] = ACTIONS(1402), - [aux_sym_preproc_include_token1] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_static] = ACTIONS(1400), - [anon_sym_DQUOTE] = ACTIONS(1402), - [anon_sym_register] = ACTIONS(1400), - [anon_sym_STAR] = ACTIONS(1402), - [anon_sym_if] = ACTIONS(1400), - [anon_sym_switch] = ACTIONS(1400), - [anon_sym_enum] = ACTIONS(1400), - [sym_false] = ACTIONS(1400), - [anon_sym_return] = ACTIONS(1400), - [anon_sym_continue] = ACTIONS(1400), - [anon_sym_SEMI] = ACTIONS(1402), - [aux_sym_preproc_def_token1] = ACTIONS(1400), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_auto] = ACTIONS(1400), - [anon_sym_inline] = ACTIONS(1400), + [sym__expression] = STATE(451), + [sym_conditional_expression] = STATE(451), + [sym_assignment_expression] = STATE(451), + [sym_pointer_expression] = STATE(451), + [sym_unary_expression] = STATE(451), + [sym_binary_expression] = STATE(451), + [sym_update_expression] = STATE(451), + [sym_cast_expression] = STATE(451), + [sym_sizeof_expression] = STATE(451), + [sym_subscript_expression] = STATE(451), + [sym_call_expression] = STATE(451), + [sym_field_expression] = STATE(451), + [sym_compound_literal_expression] = STATE(451), + [sym_parenthesized_expression] = STATE(451), + [sym_char_literal] = STATE(451), + [sym_concatenated_string] = STATE(451), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(1881), + [anon_sym_LPAREN2] = ACTIONS(729), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_RBRACK] = ACTIONS(1999), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_TILDE] = ACTIONS(739), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH_DASH] = ACTIONS(741), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_sizeof] = ACTIONS(743), + [sym_number_literal] = ACTIONS(1885), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_null] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), }, [573] = { - [sym_true] = ACTIONS(1410), - [anon_sym_restrict] = ACTIONS(1410), - [sym_null] = ACTIONS(1410), - [anon_sym_goto] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1410), - [anon_sym_typedef] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1412), - [anon_sym__Atomic] = ACTIONS(1410), - [sym_identifier] = ACTIONS(1410), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1410), - [sym_number_literal] = ACTIONS(1412), - [anon_sym_volatile] = ACTIONS(1410), - [anon_sym_SQUOTE] = ACTIONS(1412), - [anon_sym_extern] = ACTIONS(1410), - [anon_sym_PLUS_PLUS] = ACTIONS(1412), - [anon_sym_struct] = ACTIONS(1410), - [anon_sym_signed] = ACTIONS(1410), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1410), - [anon_sym_while] = ACTIONS(1410), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1410), - [anon_sym_L_SQUOTE] = ACTIONS(1412), - [anon_sym___attribute__] = ACTIONS(1410), - [anon_sym_sizeof] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_union] = ACTIONS(1410), - [anon_sym_unsigned] = ACTIONS(1410), - [anon_sym_short] = ACTIONS(1410), - [anon_sym_do] = ACTIONS(1410), - [sym_preproc_directive] = ACTIONS(1410), - [anon_sym_AMP] = ACTIONS(1412), - [aux_sym_preproc_if_token1] = ACTIONS(1410), - [anon_sym_TILDE] = ACTIONS(1412), - [anon_sym_L_DQUOTE] = ACTIONS(1412), - [anon_sym_LPAREN2] = ACTIONS(1412), - [anon_sym_RBRACE] = ACTIONS(1412), - [sym_primitive_type] = ACTIONS(1410), - [anon_sym_for] = ACTIONS(1410), - [anon_sym_break] = ACTIONS(1410), - [anon_sym_BANG] = ACTIONS(1412), - [aux_sym_preproc_include_token1] = ACTIONS(1410), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_static] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_register] = ACTIONS(1410), - [anon_sym_STAR] = ACTIONS(1412), - [anon_sym_if] = ACTIONS(1410), - [anon_sym_switch] = ACTIONS(1410), - [anon_sym_enum] = ACTIONS(1410), - [sym_false] = ACTIONS(1410), - [anon_sym_return] = ACTIONS(1410), - [anon_sym_continue] = ACTIONS(1410), - [anon_sym_SEMI] = ACTIONS(1412), - [aux_sym_preproc_def_token1] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_auto] = ACTIONS(1410), - [anon_sym_inline] = ACTIONS(1410), + [sym__expression] = STATE(664), + [sym_conditional_expression] = STATE(664), + [sym_assignment_expression] = STATE(664), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(664), + [sym_binary_expression] = STATE(664), + [sym_update_expression] = STATE(664), + [sym_cast_expression] = STATE(664), + [sym_sizeof_expression] = STATE(664), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(664), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(664), + [sym_concatenated_string] = STATE(664), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_RPAREN] = ACTIONS(2001), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(2003), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(2005), + [sym_false] = ACTIONS(2005), + [sym_null] = ACTIONS(2005), + [sym_comment] = ACTIONS(3), }, [574] = { - [sym_char_literal] = STATE(237), - [sym__expression] = STATE(237), - [sym_binary_expression] = STATE(237), - [sym_update_expression] = STATE(237), - [sym_call_expression] = STATE(237), - [sym_pointer_expression] = STATE(237), - [sym_unary_expression] = STATE(237), - [sym_sizeof_expression] = STATE(237), - [sym_subscript_expression] = STATE(237), - [sym_parenthesized_expression] = STATE(237), - [sym_initializer_list] = STATE(238), - [sym_concatenated_string] = STATE(237), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(237), - [sym_assignment_expression] = STATE(237), - [sym_cast_expression] = STATE(237), - [sym_field_expression] = STATE(237), - [sym_compound_literal_expression] = STATE(237), - [anon_sym_GT_GT] = ACTIONS(1422), - [sym_true] = ACTIONS(888), - [sym_null] = ACTIONS(888), - [anon_sym_PERCENT_EQ] = ACTIONS(1420), - [anon_sym_DASH_EQ] = ACTIONS(1420), - [anon_sym_PIPE] = ACTIONS(1422), - [anon_sym_EQ_EQ] = ACTIONS(1420), - [anon_sym_SLASH] = ACTIONS(1422), - [anon_sym_DASH_GT] = ACTIONS(1420), - [anon_sym_LT_LT] = ACTIONS(1422), - [anon_sym_DASH_DASH] = ACTIONS(159), - [sym_identifier] = ACTIONS(888), - [anon_sym_PLUS_EQ] = ACTIONS(1420), - [anon_sym_LT_LT_EQ] = ACTIONS(1420), - [anon_sym_QMARK] = ACTIONS(1420), - [anon_sym_BANG_EQ] = ACTIONS(1420), - [anon_sym_CARET_EQ] = ACTIONS(1420), - [anon_sym_COMMA] = ACTIONS(1420), - [sym_number_literal] = ACTIONS(890), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(159), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT_EQ] = ACTIONS(1420), - [anon_sym_GT] = ACTIONS(1422), - [anon_sym_PIPE_EQ] = ACTIONS(1420), - [anon_sym_RPAREN] = ACTIONS(1420), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_RBRACK] = ACTIONS(1420), - [anon_sym_sizeof] = ACTIONS(165), - [anon_sym_LBRACE] = ACTIONS(886), - [anon_sym_AMP_EQ] = ACTIONS(1420), - [anon_sym_PERCENT] = ACTIONS(1422), - [anon_sym_AMP] = ACTIONS(1424), - [anon_sym_TILDE] = ACTIONS(155), - [anon_sym_EQ] = ACTIONS(1422), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(1420), - [anon_sym_RBRACE] = ACTIONS(1420), - [anon_sym_COLON] = ACTIONS(1420), - [anon_sym_STAR_EQ] = ACTIONS(1420), - [anon_sym_PIPE_PIPE] = ACTIONS(1420), - [anon_sym_BANG] = ACTIONS(161), - [anon_sym_DASH] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(1420), - [anon_sym_STAR] = ACTIONS(1424), - [sym_false] = ACTIONS(888), - [anon_sym_SLASH_EQ] = ACTIONS(1420), - [anon_sym_AMP_AMP] = ACTIONS(1420), - [anon_sym_SEMI] = ACTIONS(1420), - [anon_sym_CARET] = ACTIONS(1422), - [anon_sym_PLUS] = ACTIONS(161), - [anon_sym_DOT] = ACTIONS(1422), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_LBRACK] = ACTIONS(1420), + [sym__expression] = STATE(451), + [sym_conditional_expression] = STATE(451), + [sym_assignment_expression] = STATE(451), + [sym_pointer_expression] = STATE(451), + [sym_unary_expression] = STATE(451), + [sym_binary_expression] = STATE(451), + [sym_update_expression] = STATE(451), + [sym_cast_expression] = STATE(451), + [sym_sizeof_expression] = STATE(451), + [sym_subscript_expression] = STATE(451), + [sym_call_expression] = STATE(451), + [sym_field_expression] = STATE(451), + [sym_compound_literal_expression] = STATE(451), + [sym_parenthesized_expression] = STATE(451), + [sym_char_literal] = STATE(451), + [sym_concatenated_string] = STATE(451), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(1881), + [anon_sym_LPAREN2] = ACTIONS(729), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_RBRACK] = ACTIONS(2007), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_TILDE] = ACTIONS(739), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH_DASH] = ACTIONS(741), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_sizeof] = ACTIONS(743), + [sym_number_literal] = ACTIONS(1885), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_null] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), }, [575] = { - [sym_char_literal] = STATE(591), - [sym__expression] = STATE(591), - [sym_binary_expression] = STATE(591), - [sym_update_expression] = STATE(591), - [sym_call_expression] = STATE(591), - [sym_pointer_expression] = STATE(591), - [sym_unary_expression] = STATE(591), - [sym_sizeof_expression] = STATE(591), - [sym_subscript_expression] = STATE(591), - [sym_parenthesized_expression] = STATE(591), - [sym_concatenated_string] = STATE(591), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(591), - [sym_assignment_expression] = STATE(591), - [sym_cast_expression] = STATE(591), - [sym_field_expression] = STATE(591), - [sym_compound_literal_expression] = STATE(591), - [sym_true] = ACTIONS(2283), - [sym_null] = ACTIONS(2283), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(155), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(159), - [sym_identifier] = ACTIONS(2283), - [anon_sym_BANG] = ACTIONS(155), - [anon_sym_DASH] = ACTIONS(161), - [sym_number_literal] = ACTIONS(2285), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(159), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2283), - [anon_sym_PLUS] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(165), + [sym__expression] = STATE(660), + [sym_conditional_expression] = STATE(660), + [sym_assignment_expression] = STATE(660), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(660), + [sym_binary_expression] = STATE(660), + [sym_update_expression] = STATE(660), + [sym_cast_expression] = STATE(660), + [sym_sizeof_expression] = STATE(660), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(660), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(660), + [sym_concatenated_string] = STATE(660), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(2009), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(2011), + [sym_false] = ACTIONS(2011), + [sym_null] = ACTIONS(2011), + [sym_comment] = ACTIONS(3), }, [576] = { - [sym_true] = ACTIONS(1466), - [anon_sym_restrict] = ACTIONS(1466), - [sym_null] = ACTIONS(1466), - [anon_sym_goto] = ACTIONS(1466), - [anon_sym_const] = ACTIONS(1466), - [anon_sym_typedef] = ACTIONS(1466), - [anon_sym_DASH_DASH] = ACTIONS(1468), - [anon_sym__Atomic] = ACTIONS(1466), - [sym_identifier] = ACTIONS(1466), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1466), - [sym_number_literal] = ACTIONS(1468), - [anon_sym_volatile] = ACTIONS(1466), - [anon_sym_SQUOTE] = ACTIONS(1468), - [anon_sym_extern] = ACTIONS(1466), - [anon_sym_PLUS_PLUS] = ACTIONS(1468), - [anon_sym_struct] = ACTIONS(1466), - [anon_sym_signed] = ACTIONS(1466), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1466), - [anon_sym_while] = ACTIONS(1466), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1466), - [anon_sym_L_SQUOTE] = ACTIONS(1468), - [anon_sym___attribute__] = ACTIONS(1466), - [anon_sym_sizeof] = ACTIONS(1466), - [anon_sym_LBRACE] = ACTIONS(1468), - [anon_sym_union] = ACTIONS(1466), - [anon_sym_unsigned] = ACTIONS(1466), - [anon_sym_short] = ACTIONS(1466), - [anon_sym_do] = ACTIONS(1466), - [sym_preproc_directive] = ACTIONS(1466), - [anon_sym_AMP] = ACTIONS(1468), - [aux_sym_preproc_if_token1] = ACTIONS(1466), - [anon_sym_TILDE] = ACTIONS(1468), - [anon_sym_L_DQUOTE] = ACTIONS(1468), - [anon_sym_LPAREN2] = ACTIONS(1468), - [anon_sym_RBRACE] = ACTIONS(1468), - [sym_primitive_type] = ACTIONS(1466), - [anon_sym_for] = ACTIONS(1466), - [anon_sym_break] = ACTIONS(1466), - [anon_sym_BANG] = ACTIONS(1468), - [aux_sym_preproc_include_token1] = ACTIONS(1466), - [anon_sym_DASH] = ACTIONS(1466), - [anon_sym_static] = ACTIONS(1466), - [anon_sym_DQUOTE] = ACTIONS(1468), - [anon_sym_register] = ACTIONS(1466), - [anon_sym_STAR] = ACTIONS(1468), - [anon_sym_if] = ACTIONS(1466), - [anon_sym_switch] = ACTIONS(1466), - [anon_sym_enum] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [anon_sym_return] = ACTIONS(1466), - [anon_sym_continue] = ACTIONS(1466), - [anon_sym_SEMI] = ACTIONS(1468), - [aux_sym_preproc_def_token1] = ACTIONS(1466), - [anon_sym_PLUS] = ACTIONS(1466), - [anon_sym_auto] = ACTIONS(1466), - [anon_sym_inline] = ACTIONS(1466), + [sym__expression] = STATE(743), + [sym_conditional_expression] = STATE(743), + [sym_assignment_expression] = STATE(743), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(743), + [sym_binary_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(743), + [sym_sizeof_expression] = STATE(743), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(743), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(743), + [sym_concatenated_string] = STATE(743), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(2013), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(2015), + [sym_false] = ACTIONS(2015), + [sym_null] = ACTIONS(2015), + [sym_comment] = ACTIONS(3), }, [577] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1485), - [anon_sym_union] = ACTIONS(1485), - [anon_sym_unsigned] = ACTIONS(1485), - [anon_sym_restrict] = ACTIONS(1485), - [anon_sym_short] = ACTIONS(1485), - [anon_sym_static] = ACTIONS(1485), - [anon_sym_volatile] = ACTIONS(1485), - [anon_sym_register] = ACTIONS(1485), - [anon_sym_extern] = ACTIONS(1485), - [aux_sym_preproc_else_token1] = ACTIONS(1485), - [aux_sym_preproc_if_token2] = ACTIONS(1485), - [sym_preproc_directive] = ACTIONS(1485), - [anon_sym_signed] = ACTIONS(1485), - [aux_sym_preproc_if_token1] = ACTIONS(1485), - [anon_sym_long] = ACTIONS(1485), - [anon_sym_enum] = ACTIONS(1485), - [anon_sym_const] = ACTIONS(1485), - [anon_sym_struct] = ACTIONS(1485), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1485), - [aux_sym_preproc_elif_token1] = ACTIONS(1485), - [aux_sym_preproc_def_token1] = ACTIONS(1485), - [anon_sym__Atomic] = ACTIONS(1485), - [anon_sym_auto] = ACTIONS(1485), - [sym_primitive_type] = ACTIONS(1485), - [anon_sym_inline] = ACTIONS(1485), - [anon_sym___attribute__] = ACTIONS(1485), - [sym_identifier] = ACTIONS(1485), + [sym__expression] = STATE(739), + [sym_conditional_expression] = STATE(739), + [sym_assignment_expression] = STATE(739), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(739), + [sym_binary_expression] = STATE(739), + [sym_update_expression] = STATE(739), + [sym_cast_expression] = STATE(739), + [sym_sizeof_expression] = STATE(739), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(739), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(739), + [sym_concatenated_string] = STATE(739), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(2017), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(2019), + [sym_false] = ACTIONS(2019), + [sym_null] = ACTIONS(2019), + [sym_comment] = ACTIONS(3), }, [578] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1495), - [anon_sym_union] = ACTIONS(1495), - [anon_sym_unsigned] = ACTIONS(1495), - [anon_sym_restrict] = ACTIONS(1495), - [anon_sym_short] = ACTIONS(1495), - [anon_sym_static] = ACTIONS(1495), - [anon_sym_volatile] = ACTIONS(1495), - [anon_sym_register] = ACTIONS(1495), - [anon_sym_extern] = ACTIONS(1495), - [aux_sym_preproc_else_token1] = ACTIONS(1495), - [aux_sym_preproc_if_token2] = ACTIONS(1495), - [sym_preproc_directive] = ACTIONS(1495), - [anon_sym_signed] = ACTIONS(1495), - [aux_sym_preproc_if_token1] = ACTIONS(1495), - [anon_sym_long] = ACTIONS(1495), - [anon_sym_enum] = ACTIONS(1495), - [anon_sym_const] = ACTIONS(1495), - [anon_sym_struct] = ACTIONS(1495), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1495), - [aux_sym_preproc_elif_token1] = ACTIONS(1495), - [aux_sym_preproc_def_token1] = ACTIONS(1495), - [anon_sym__Atomic] = ACTIONS(1495), - [anon_sym_auto] = ACTIONS(1495), - [sym_primitive_type] = ACTIONS(1495), - [anon_sym_inline] = ACTIONS(1495), - [anon_sym___attribute__] = ACTIONS(1495), - [sym_identifier] = ACTIONS(1495), + [sym__expression] = STATE(464), + [sym_conditional_expression] = STATE(464), + [sym_assignment_expression] = STATE(464), + [sym_pointer_expression] = STATE(464), + [sym_unary_expression] = STATE(464), + [sym_binary_expression] = STATE(464), + [sym_update_expression] = STATE(464), + [sym_cast_expression] = STATE(464), + [sym_sizeof_expression] = STATE(464), + [sym_subscript_expression] = STATE(464), + [sym_call_expression] = STATE(464), + [sym_field_expression] = STATE(464), + [sym_compound_literal_expression] = STATE(464), + [sym_parenthesized_expression] = STATE(464), + [sym_char_literal] = STATE(464), + [sym_concatenated_string] = STATE(464), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(2021), + [anon_sym_LPAREN2] = ACTIONS(729), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_TILDE] = ACTIONS(739), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH_DASH] = ACTIONS(741), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_sizeof] = ACTIONS(743), + [sym_number_literal] = ACTIONS(2023), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(2021), + [sym_false] = ACTIONS(2021), + [sym_null] = ACTIONS(2021), + [sym_comment] = ACTIONS(3), }, [579] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1509), - [anon_sym_union] = ACTIONS(1509), - [anon_sym_unsigned] = ACTIONS(1509), - [anon_sym_restrict] = ACTIONS(1509), - [anon_sym_short] = ACTIONS(1509), - [anon_sym_static] = ACTIONS(1509), - [anon_sym_volatile] = ACTIONS(1509), - [anon_sym_register] = ACTIONS(1509), - [anon_sym_extern] = ACTIONS(1509), - [aux_sym_preproc_else_token1] = ACTIONS(1509), - [aux_sym_preproc_if_token2] = ACTIONS(1509), - [sym_preproc_directive] = ACTIONS(1509), - [anon_sym_signed] = ACTIONS(1509), - [aux_sym_preproc_if_token1] = ACTIONS(1509), - [anon_sym_long] = ACTIONS(1509), - [anon_sym_enum] = ACTIONS(1509), - [anon_sym_const] = ACTIONS(1509), - [anon_sym_struct] = ACTIONS(1509), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1509), - [aux_sym_preproc_elif_token1] = ACTIONS(1509), - [aux_sym_preproc_def_token1] = ACTIONS(1509), - [anon_sym__Atomic] = ACTIONS(1509), - [anon_sym_auto] = ACTIONS(1509), - [sym_primitive_type] = ACTIONS(1509), - [anon_sym_inline] = ACTIONS(1509), - [anon_sym___attribute__] = ACTIONS(1509), - [sym_identifier] = ACTIONS(1509), + [sym__expression] = STATE(471), + [sym_conditional_expression] = STATE(471), + [sym_assignment_expression] = STATE(471), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(471), + [sym_binary_expression] = STATE(471), + [sym_update_expression] = STATE(471), + [sym_cast_expression] = STATE(471), + [sym_sizeof_expression] = STATE(471), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(471), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(471), + [sym_concatenated_string] = STATE(471), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(2025), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(2027), + [sym_false] = ACTIONS(2027), + [sym_null] = ACTIONS(2027), + [sym_comment] = ACTIONS(3), }, [580] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1513), - [anon_sym_union] = ACTIONS(1513), - [anon_sym_unsigned] = ACTIONS(1513), - [anon_sym_restrict] = ACTIONS(1513), - [anon_sym_short] = ACTIONS(1513), - [anon_sym_static] = ACTIONS(1513), - [anon_sym_volatile] = ACTIONS(1513), - [anon_sym_register] = ACTIONS(1513), - [anon_sym_extern] = ACTIONS(1513), - [aux_sym_preproc_else_token1] = ACTIONS(1513), - [aux_sym_preproc_if_token2] = ACTIONS(1513), - [sym_preproc_directive] = ACTIONS(1513), - [anon_sym_signed] = ACTIONS(1513), - [aux_sym_preproc_if_token1] = ACTIONS(1513), - [anon_sym_long] = ACTIONS(1513), - [anon_sym_enum] = ACTIONS(1513), - [anon_sym_const] = ACTIONS(1513), - [anon_sym_struct] = ACTIONS(1513), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1513), - [aux_sym_preproc_elif_token1] = ACTIONS(1513), - [aux_sym_preproc_def_token1] = ACTIONS(1513), - [anon_sym__Atomic] = ACTIONS(1513), - [anon_sym_auto] = ACTIONS(1513), - [sym_primitive_type] = ACTIONS(1513), - [anon_sym_inline] = ACTIONS(1513), - [anon_sym___attribute__] = ACTIONS(1513), - [sym_identifier] = ACTIONS(1513), + [sym__expression] = STATE(719), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(719), + [sym_binary_expression] = STATE(719), + [sym_update_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(719), + [sym_concatenated_string] = STATE(719), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(2029), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(2031), + [sym_false] = ACTIONS(2031), + [sym_null] = ACTIONS(2031), + [sym_comment] = ACTIONS(3), }, [581] = { - [sym_true] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym__Atomic] = ACTIONS(1533), - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_sizeof] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_AMP] = ACTIONS(1535), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1535), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1535), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_DQUOTE] = ACTIONS(1535), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_auto] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), + [sym__expression] = STATE(469), + [sym_conditional_expression] = STATE(469), + [sym_assignment_expression] = STATE(469), + [sym_pointer_expression] = STATE(469), + [sym_unary_expression] = STATE(469), + [sym_binary_expression] = STATE(469), + [sym_update_expression] = STATE(469), + [sym_cast_expression] = STATE(469), + [sym_sizeof_expression] = STATE(469), + [sym_subscript_expression] = STATE(469), + [sym_call_expression] = STATE(469), + [sym_field_expression] = STATE(469), + [sym_compound_literal_expression] = STATE(469), + [sym_parenthesized_expression] = STATE(469), + [sym_char_literal] = STATE(469), + [sym_concatenated_string] = STATE(469), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(2033), + [anon_sym_LPAREN2] = ACTIONS(729), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_TILDE] = ACTIONS(739), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH_DASH] = ACTIONS(741), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_sizeof] = ACTIONS(743), + [sym_number_literal] = ACTIONS(2035), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(2033), + [sym_false] = ACTIONS(2033), + [sym_null] = ACTIONS(2033), + [sym_comment] = ACTIONS(3), }, [582] = { - [sym_true] = ACTIONS(1607), - [anon_sym_restrict] = ACTIONS(1607), - [sym_null] = ACTIONS(1607), - [anon_sym_goto] = ACTIONS(1607), - [anon_sym_const] = ACTIONS(1607), - [anon_sym_typedef] = ACTIONS(1607), - [anon_sym_DASH_DASH] = ACTIONS(1609), - [anon_sym__Atomic] = ACTIONS(1607), - [sym_identifier] = ACTIONS(1607), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1607), - [sym_number_literal] = ACTIONS(1609), - [anon_sym_volatile] = ACTIONS(1607), - [anon_sym_SQUOTE] = ACTIONS(1609), - [anon_sym_extern] = ACTIONS(1607), - [anon_sym_PLUS_PLUS] = ACTIONS(1609), - [anon_sym_struct] = ACTIONS(1607), - [anon_sym_signed] = ACTIONS(1607), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1607), - [anon_sym_while] = ACTIONS(1607), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1607), - [anon_sym_L_SQUOTE] = ACTIONS(1609), - [anon_sym___attribute__] = ACTIONS(1607), - [anon_sym_sizeof] = ACTIONS(1607), - [anon_sym_LBRACE] = ACTIONS(1609), - [anon_sym_union] = ACTIONS(1607), - [anon_sym_unsigned] = ACTIONS(1607), - [anon_sym_short] = ACTIONS(1607), - [anon_sym_do] = ACTIONS(1607), - [sym_preproc_directive] = ACTIONS(1607), - [anon_sym_AMP] = ACTIONS(1609), - [aux_sym_preproc_if_token1] = ACTIONS(1607), - [anon_sym_TILDE] = ACTIONS(1609), - [anon_sym_L_DQUOTE] = ACTIONS(1609), - [anon_sym_LPAREN2] = ACTIONS(1609), - [anon_sym_RBRACE] = ACTIONS(1609), - [sym_primitive_type] = ACTIONS(1607), - [anon_sym_for] = ACTIONS(1607), - [anon_sym_break] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1609), - [aux_sym_preproc_include_token1] = ACTIONS(1607), - [anon_sym_DASH] = ACTIONS(1607), - [anon_sym_static] = ACTIONS(1607), - [anon_sym_DQUOTE] = ACTIONS(1609), - [anon_sym_register] = ACTIONS(1607), - [anon_sym_STAR] = ACTIONS(1609), - [anon_sym_if] = ACTIONS(1607), - [anon_sym_switch] = ACTIONS(1607), - [anon_sym_enum] = ACTIONS(1607), - [sym_false] = ACTIONS(1607), - [anon_sym_return] = ACTIONS(1607), - [anon_sym_continue] = ACTIONS(1607), - [anon_sym_SEMI] = ACTIONS(1609), - [aux_sym_preproc_def_token1] = ACTIONS(1607), - [anon_sym_PLUS] = ACTIONS(1607), - [anon_sym_auto] = ACTIONS(1607), - [anon_sym_inline] = ACTIONS(1607), + [sym__expression] = STATE(458), + [sym_conditional_expression] = STATE(458), + [sym_assignment_expression] = STATE(458), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(458), + [sym_binary_expression] = STATE(458), + [sym_update_expression] = STATE(458), + [sym_cast_expression] = STATE(458), + [sym_sizeof_expression] = STATE(458), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(458), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(458), + [sym_concatenated_string] = STATE(458), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(2037), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(2039), + [sym_false] = ACTIONS(2039), + [sym_null] = ACTIONS(2039), + [sym_comment] = ACTIONS(3), }, [583] = { - [sym_true] = ACTIONS(1616), - [anon_sym_restrict] = ACTIONS(1616), - [sym_null] = ACTIONS(1616), - [anon_sym_goto] = ACTIONS(1616), - [anon_sym_const] = ACTIONS(1616), - [anon_sym_typedef] = ACTIONS(1616), - [anon_sym_DASH_DASH] = ACTIONS(1618), - [anon_sym__Atomic] = ACTIONS(1616), - [sym_identifier] = ACTIONS(1616), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1616), - [sym_number_literal] = ACTIONS(1618), - [anon_sym_volatile] = ACTIONS(1616), - [anon_sym_SQUOTE] = ACTIONS(1618), - [anon_sym_extern] = ACTIONS(1616), - [anon_sym_PLUS_PLUS] = ACTIONS(1618), - [anon_sym_struct] = ACTIONS(1616), - [anon_sym_signed] = ACTIONS(1616), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1616), - [anon_sym_while] = ACTIONS(1616), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1616), - [anon_sym_L_SQUOTE] = ACTIONS(1618), - [anon_sym___attribute__] = ACTIONS(1616), - [anon_sym_sizeof] = ACTIONS(1616), - [anon_sym_LBRACE] = ACTIONS(1618), - [anon_sym_union] = ACTIONS(1616), - [anon_sym_unsigned] = ACTIONS(1616), - [anon_sym_short] = ACTIONS(1616), - [anon_sym_do] = ACTIONS(1616), - [sym_preproc_directive] = ACTIONS(1616), - [anon_sym_AMP] = ACTIONS(1618), - [aux_sym_preproc_if_token1] = ACTIONS(1616), - [anon_sym_TILDE] = ACTIONS(1618), - [anon_sym_L_DQUOTE] = ACTIONS(1618), - [anon_sym_LPAREN2] = ACTIONS(1618), - [anon_sym_RBRACE] = ACTIONS(1618), - [sym_primitive_type] = ACTIONS(1616), - [anon_sym_for] = ACTIONS(1616), - [anon_sym_break] = ACTIONS(1616), - [anon_sym_BANG] = ACTIONS(1618), - [aux_sym_preproc_include_token1] = ACTIONS(1616), - [anon_sym_DASH] = ACTIONS(1616), - [anon_sym_static] = ACTIONS(1616), - [anon_sym_DQUOTE] = ACTIONS(1618), - [anon_sym_register] = ACTIONS(1616), - [anon_sym_STAR] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(1616), - [anon_sym_switch] = ACTIONS(1616), - [anon_sym_enum] = ACTIONS(1616), - [sym_false] = ACTIONS(1616), - [anon_sym_return] = ACTIONS(1616), - [anon_sym_continue] = ACTIONS(1616), - [anon_sym_SEMI] = ACTIONS(1618), - [aux_sym_preproc_def_token1] = ACTIONS(1616), - [anon_sym_PLUS] = ACTIONS(1616), - [anon_sym_auto] = ACTIONS(1616), - [anon_sym_inline] = ACTIONS(1616), + [sym__expression] = STATE(657), + [sym_conditional_expression] = STATE(657), + [sym_assignment_expression] = STATE(657), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(657), + [sym_binary_expression] = STATE(657), + [sym_update_expression] = STATE(657), + [sym_cast_expression] = STATE(657), + [sym_sizeof_expression] = STATE(657), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(657), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(657), + [sym_concatenated_string] = STATE(657), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_LPAREN2] = ACTIONS(2041), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(2043), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(2045), + [sym_false] = ACTIONS(2045), + [sym_null] = ACTIONS(2045), + [sym_comment] = ACTIONS(3), }, [584] = { - [sym_if_statement] = STATE(598), - [sym_do_statement] = STATE(598), - [sym_for_statement] = STATE(598), - [sym__expression] = STATE(867), - [sym_comma_expression] = STATE(868), - [sym_binary_expression] = STATE(867), - [sym_update_expression] = STATE(867), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(598), - [sym_return_statement] = STATE(598), - [sym_break_statement] = STATE(598), - [sym_conditional_expression] = STATE(867), - [sym_assignment_expression] = STATE(867), - [sym_cast_expression] = STATE(867), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(867), - [sym_char_literal] = STATE(867), - [sym_labeled_statement] = STATE(598), - [sym_while_statement] = STATE(598), - [sym_continue_statement] = STATE(598), - [sym_goto_statement] = STATE(598), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(867), - [sym_sizeof_expression] = STATE(867), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(867), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(598), - [sym_expression_statement] = STATE(598), - [anon_sym_LBRACE] = ACTIONS(97), - [sym_true] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [anon_sym_do] = ACTIONS(99), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(2139), - [anon_sym_for] = ACTIONS(109), - [anon_sym_break] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(115), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(117), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(81), - [anon_sym_return] = ACTIONS(119), - [anon_sym_while] = ACTIONS(95), - [anon_sym_continue] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym__expression] = STATE(451), + [sym_conditional_expression] = STATE(451), + [sym_assignment_expression] = STATE(451), + [sym_pointer_expression] = STATE(451), + [sym_unary_expression] = STATE(451), + [sym_binary_expression] = STATE(451), + [sym_update_expression] = STATE(451), + [sym_cast_expression] = STATE(451), + [sym_sizeof_expression] = STATE(451), + [sym_subscript_expression] = STATE(451), + [sym_call_expression] = STATE(451), + [sym_field_expression] = STATE(451), + [sym_compound_literal_expression] = STATE(451), + [sym_parenthesized_expression] = STATE(451), + [sym_char_literal] = STATE(451), + [sym_concatenated_string] = STATE(451), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(1881), + [anon_sym_LPAREN2] = ACTIONS(729), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_TILDE] = ACTIONS(739), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH_DASH] = ACTIONS(741), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_sizeof] = ACTIONS(743), + [sym_number_literal] = ACTIONS(1885), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_null] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), }, [585] = { - [sym_if_statement] = STATE(602), - [sym_do_statement] = STATE(602), - [sym_for_statement] = STATE(602), - [sym__expression] = STATE(867), - [sym_comma_expression] = STATE(868), - [sym_binary_expression] = STATE(867), - [sym_update_expression] = STATE(867), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(602), - [sym_return_statement] = STATE(602), - [sym_break_statement] = STATE(602), - [sym_conditional_expression] = STATE(867), - [sym_assignment_expression] = STATE(867), - [sym_cast_expression] = STATE(867), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(867), - [sym_char_literal] = STATE(867), - [sym_labeled_statement] = STATE(602), - [sym_while_statement] = STATE(602), - [sym_continue_statement] = STATE(602), - [sym_goto_statement] = STATE(602), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(867), - [sym_sizeof_expression] = STATE(867), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(867), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(602), - [sym_expression_statement] = STATE(602), - [anon_sym_LBRACE] = ACTIONS(97), - [sym_true] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [anon_sym_do] = ACTIONS(99), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(2139), - [anon_sym_for] = ACTIONS(109), - [anon_sym_break] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(115), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(117), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(81), - [anon_sym_return] = ACTIONS(119), - [anon_sym_while] = ACTIONS(95), - [anon_sym_continue] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym__expression] = STATE(767), + [sym_conditional_expression] = STATE(767), + [sym_assignment_expression] = STATE(767), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(767), + [sym_binary_expression] = STATE(767), + [sym_update_expression] = STATE(767), + [sym_cast_expression] = STATE(767), + [sym_sizeof_expression] = STATE(767), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(767), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(767), + [sym_concatenated_string] = STATE(767), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(2047), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(2049), + [sym_false] = ACTIONS(2049), + [sym_null] = ACTIONS(2049), + [sym_comment] = ACTIONS(3), }, [586] = { - [sym_true] = ACTIONS(1646), - [anon_sym_restrict] = ACTIONS(1646), - [sym_null] = ACTIONS(1646), - [anon_sym_goto] = ACTIONS(1646), - [anon_sym_const] = ACTIONS(1646), - [anon_sym_typedef] = ACTIONS(1646), - [anon_sym_DASH_DASH] = ACTIONS(1648), - [anon_sym__Atomic] = ACTIONS(1646), - [sym_identifier] = ACTIONS(1646), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1646), - [sym_number_literal] = ACTIONS(1648), - [anon_sym_volatile] = ACTIONS(1646), - [anon_sym_SQUOTE] = ACTIONS(1648), - [anon_sym_extern] = ACTIONS(1646), - [anon_sym_PLUS_PLUS] = ACTIONS(1648), - [anon_sym_struct] = ACTIONS(1646), - [anon_sym_signed] = ACTIONS(1646), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1646), - [anon_sym_while] = ACTIONS(1646), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1646), - [anon_sym_L_SQUOTE] = ACTIONS(1648), - [anon_sym___attribute__] = ACTIONS(1646), - [anon_sym_sizeof] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_union] = ACTIONS(1646), - [anon_sym_unsigned] = ACTIONS(1646), - [anon_sym_short] = ACTIONS(1646), - [anon_sym_do] = ACTIONS(1646), - [sym_preproc_directive] = ACTIONS(1646), - [anon_sym_AMP] = ACTIONS(1648), - [aux_sym_preproc_if_token1] = ACTIONS(1646), - [anon_sym_TILDE] = ACTIONS(1648), - [anon_sym_L_DQUOTE] = ACTIONS(1648), - [anon_sym_LPAREN2] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1648), - [sym_primitive_type] = ACTIONS(1646), - [anon_sym_for] = ACTIONS(1646), - [anon_sym_break] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1648), - [aux_sym_preproc_include_token1] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1646), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_DQUOTE] = ACTIONS(1648), - [anon_sym_register] = ACTIONS(1646), - [anon_sym_STAR] = ACTIONS(1648), - [anon_sym_if] = ACTIONS(1646), - [anon_sym_switch] = ACTIONS(1646), - [anon_sym_enum] = ACTIONS(1646), - [sym_false] = ACTIONS(1646), - [anon_sym_return] = ACTIONS(1646), - [anon_sym_continue] = ACTIONS(1646), - [anon_sym_SEMI] = ACTIONS(1648), - [aux_sym_preproc_def_token1] = ACTIONS(1646), - [anon_sym_PLUS] = ACTIONS(1646), - [anon_sym_auto] = ACTIONS(1646), - [anon_sym_inline] = ACTIONS(1646), + [sym__expression] = STATE(659), + [sym_conditional_expression] = STATE(659), + [sym_assignment_expression] = STATE(659), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(659), + [sym_binary_expression] = STATE(659), + [sym_update_expression] = STATE(659), + [sym_cast_expression] = STATE(659), + [sym_sizeof_expression] = STATE(659), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(659), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(659), + [sym_concatenated_string] = STATE(659), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(2051), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(2053), + [sym_false] = ACTIONS(2053), + [sym_null] = ACTIONS(2053), + [sym_comment] = ACTIONS(3), }, [587] = { - [sym_true] = ACTIONS(1650), - [anon_sym_restrict] = ACTIONS(1650), - [sym_null] = ACTIONS(1650), - [anon_sym_goto] = ACTIONS(1650), - [anon_sym_const] = ACTIONS(1650), - [anon_sym_typedef] = ACTIONS(1650), - [anon_sym_DASH_DASH] = ACTIONS(1652), - [anon_sym__Atomic] = ACTIONS(1650), - [sym_identifier] = ACTIONS(1650), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1650), - [sym_number_literal] = ACTIONS(1652), - [anon_sym_volatile] = ACTIONS(1650), - [anon_sym_SQUOTE] = ACTIONS(1652), - [anon_sym_extern] = ACTIONS(1650), - [anon_sym_PLUS_PLUS] = ACTIONS(1652), - [anon_sym_struct] = ACTIONS(1650), - [anon_sym_signed] = ACTIONS(1650), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1650), - [anon_sym_while] = ACTIONS(1650), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1650), - [anon_sym_L_SQUOTE] = ACTIONS(1652), - [anon_sym___attribute__] = ACTIONS(1650), - [anon_sym_sizeof] = ACTIONS(1650), - [anon_sym_LBRACE] = ACTIONS(1652), - [anon_sym_union] = ACTIONS(1650), - [anon_sym_unsigned] = ACTIONS(1650), - [anon_sym_short] = ACTIONS(1650), - [anon_sym_do] = ACTIONS(1650), - [sym_preproc_directive] = ACTIONS(1650), - [anon_sym_AMP] = ACTIONS(1652), - [aux_sym_preproc_if_token1] = ACTIONS(1650), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_L_DQUOTE] = ACTIONS(1652), - [anon_sym_LPAREN2] = ACTIONS(1652), - [anon_sym_RBRACE] = ACTIONS(1652), - [sym_primitive_type] = ACTIONS(1650), - [anon_sym_for] = ACTIONS(1650), - [anon_sym_break] = ACTIONS(1650), - [anon_sym_BANG] = ACTIONS(1652), - [aux_sym_preproc_include_token1] = ACTIONS(1650), - [anon_sym_DASH] = ACTIONS(1650), - [anon_sym_static] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_register] = ACTIONS(1650), - [anon_sym_STAR] = ACTIONS(1652), - [anon_sym_if] = ACTIONS(1650), - [anon_sym_switch] = ACTIONS(1650), - [anon_sym_enum] = ACTIONS(1650), - [sym_false] = ACTIONS(1650), - [anon_sym_return] = ACTIONS(1650), - [anon_sym_continue] = ACTIONS(1650), - [anon_sym_SEMI] = ACTIONS(1652), - [aux_sym_preproc_def_token1] = ACTIONS(1650), - [anon_sym_PLUS] = ACTIONS(1650), - [anon_sym_auto] = ACTIONS(1650), - [anon_sym_inline] = ACTIONS(1650), + [sym__expression] = STATE(658), + [sym_conditional_expression] = STATE(658), + [sym_assignment_expression] = STATE(658), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(658), + [sym_binary_expression] = STATE(658), + [sym_update_expression] = STATE(658), + [sym_cast_expression] = STATE(658), + [sym_sizeof_expression] = STATE(658), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(658), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(658), + [sym_concatenated_string] = STATE(658), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(2055), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(2057), + [sym_false] = ACTIONS(2057), + [sym_null] = ACTIONS(2057), + [sym_comment] = ACTIONS(3), }, [588] = { - [sym_true] = ACTIONS(1654), - [anon_sym_restrict] = ACTIONS(1654), - [sym_null] = ACTIONS(1654), - [anon_sym_goto] = ACTIONS(1654), - [anon_sym_const] = ACTIONS(1654), - [anon_sym_typedef] = ACTIONS(1654), - [anon_sym_DASH_DASH] = ACTIONS(1656), - [anon_sym__Atomic] = ACTIONS(1654), - [sym_identifier] = ACTIONS(1654), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1654), - [sym_number_literal] = ACTIONS(1656), - [anon_sym_volatile] = ACTIONS(1654), - [anon_sym_SQUOTE] = ACTIONS(1656), - [anon_sym_extern] = ACTIONS(1654), - [anon_sym_PLUS_PLUS] = ACTIONS(1656), - [anon_sym_struct] = ACTIONS(1654), - [anon_sym_signed] = ACTIONS(1654), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1654), - [anon_sym_while] = ACTIONS(1654), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1654), - [anon_sym_L_SQUOTE] = ACTIONS(1656), - [anon_sym___attribute__] = ACTIONS(1654), - [anon_sym_sizeof] = ACTIONS(1654), - [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_union] = ACTIONS(1654), - [anon_sym_unsigned] = ACTIONS(1654), - [anon_sym_short] = ACTIONS(1654), - [anon_sym_do] = ACTIONS(1654), - [sym_preproc_directive] = ACTIONS(1654), - [anon_sym_AMP] = ACTIONS(1656), - [aux_sym_preproc_if_token1] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1656), - [anon_sym_L_DQUOTE] = ACTIONS(1656), - [anon_sym_LPAREN2] = ACTIONS(1656), - [anon_sym_RBRACE] = ACTIONS(1656), - [anon_sym_else] = ACTIONS(1654), - [sym_primitive_type] = ACTIONS(1654), - [anon_sym_for] = ACTIONS(1654), - [anon_sym_break] = ACTIONS(1654), - [anon_sym_BANG] = ACTIONS(1656), - [aux_sym_preproc_include_token1] = ACTIONS(1654), - [anon_sym_DASH] = ACTIONS(1654), - [anon_sym_static] = ACTIONS(1654), - [anon_sym_DQUOTE] = ACTIONS(1656), - [anon_sym_register] = ACTIONS(1654), - [anon_sym_STAR] = ACTIONS(1656), - [anon_sym_if] = ACTIONS(1654), - [anon_sym_switch] = ACTIONS(1654), - [anon_sym_enum] = ACTIONS(1654), - [sym_false] = ACTIONS(1654), - [anon_sym_return] = ACTIONS(1654), - [anon_sym_continue] = ACTIONS(1654), - [anon_sym_SEMI] = ACTIONS(1656), - [aux_sym_preproc_def_token1] = ACTIONS(1654), - [anon_sym_PLUS] = ACTIONS(1654), - [anon_sym_auto] = ACTIONS(1654), - [anon_sym_inline] = ACTIONS(1654), + [sym__expression] = STATE(656), + [sym_conditional_expression] = STATE(656), + [sym_assignment_expression] = STATE(656), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(656), + [sym_binary_expression] = STATE(656), + [sym_update_expression] = STATE(656), + [sym_cast_expression] = STATE(656), + [sym_sizeof_expression] = STATE(656), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(656), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(656), + [sym_concatenated_string] = STATE(656), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(2059), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(2061), + [sym_false] = ACTIONS(2061), + [sym_null] = ACTIONS(2061), + [sym_comment] = ACTIONS(3), }, [589] = { - [sym_true] = ACTIONS(1666), - [anon_sym_restrict] = ACTIONS(1666), - [sym_null] = ACTIONS(1666), - [anon_sym_goto] = ACTIONS(1666), - [anon_sym_const] = ACTIONS(1666), - [anon_sym_typedef] = ACTIONS(1666), - [anon_sym_DASH_DASH] = ACTIONS(1668), - [anon_sym__Atomic] = ACTIONS(1666), - [sym_identifier] = ACTIONS(1666), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1666), - [sym_number_literal] = ACTIONS(1668), - [anon_sym_volatile] = ACTIONS(1666), - [anon_sym_SQUOTE] = ACTIONS(1668), - [anon_sym_extern] = ACTIONS(1666), - [anon_sym_PLUS_PLUS] = ACTIONS(1668), - [anon_sym_struct] = ACTIONS(1666), - [anon_sym_signed] = ACTIONS(1666), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1666), - [anon_sym_while] = ACTIONS(1666), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1666), - [anon_sym_L_SQUOTE] = ACTIONS(1668), - [anon_sym___attribute__] = ACTIONS(1666), - [anon_sym_sizeof] = ACTIONS(1666), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_union] = ACTIONS(1666), - [anon_sym_unsigned] = ACTIONS(1666), - [anon_sym_short] = ACTIONS(1666), - [anon_sym_do] = ACTIONS(1666), - [sym_preproc_directive] = ACTIONS(1666), - [anon_sym_AMP] = ACTIONS(1668), - [aux_sym_preproc_if_token1] = ACTIONS(1666), - [anon_sym_TILDE] = ACTIONS(1668), - [anon_sym_L_DQUOTE] = ACTIONS(1668), - [anon_sym_LPAREN2] = ACTIONS(1668), - [anon_sym_RBRACE] = ACTIONS(1668), - [anon_sym_else] = ACTIONS(1666), - [sym_primitive_type] = ACTIONS(1666), - [anon_sym_for] = ACTIONS(1666), - [anon_sym_break] = ACTIONS(1666), - [anon_sym_BANG] = ACTIONS(1668), - [aux_sym_preproc_include_token1] = ACTIONS(1666), - [anon_sym_DASH] = ACTIONS(1666), - [anon_sym_static] = ACTIONS(1666), - [anon_sym_DQUOTE] = ACTIONS(1668), - [anon_sym_register] = ACTIONS(1666), - [anon_sym_STAR] = ACTIONS(1668), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_switch] = ACTIONS(1666), - [anon_sym_enum] = ACTIONS(1666), - [sym_false] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1666), - [anon_sym_continue] = ACTIONS(1666), - [anon_sym_SEMI] = ACTIONS(1668), - [aux_sym_preproc_def_token1] = ACTIONS(1666), - [anon_sym_PLUS] = ACTIONS(1666), - [anon_sym_auto] = ACTIONS(1666), - [anon_sym_inline] = ACTIONS(1666), + [sym__expression] = STATE(769), + [sym_conditional_expression] = STATE(769), + [sym_assignment_expression] = STATE(769), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(769), + [sym_binary_expression] = STATE(769), + [sym_update_expression] = STATE(769), + [sym_cast_expression] = STATE(769), + [sym_sizeof_expression] = STATE(769), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(769), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(769), + [sym_concatenated_string] = STATE(769), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(2063), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(2065), + [sym_false] = ACTIONS(2065), + [sym_null] = ACTIONS(2065), + [sym_comment] = ACTIONS(3), }, [590] = { - [sym_true] = ACTIONS(1763), - [anon_sym_restrict] = ACTIONS(1763), - [sym_null] = ACTIONS(1763), - [anon_sym_goto] = ACTIONS(1763), - [anon_sym_const] = ACTIONS(1763), - [anon_sym_typedef] = ACTIONS(1763), - [anon_sym_DASH_DASH] = ACTIONS(1765), - [anon_sym__Atomic] = ACTIONS(1763), - [sym_identifier] = ACTIONS(1763), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1763), - [sym_number_literal] = ACTIONS(1765), - [anon_sym_volatile] = ACTIONS(1763), - [anon_sym_SQUOTE] = ACTIONS(1765), - [anon_sym_extern] = ACTIONS(1763), - [anon_sym_PLUS_PLUS] = ACTIONS(1765), - [anon_sym_struct] = ACTIONS(1763), - [anon_sym_signed] = ACTIONS(1763), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1763), - [anon_sym_while] = ACTIONS(1763), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1763), - [anon_sym_L_SQUOTE] = ACTIONS(1765), - [anon_sym___attribute__] = ACTIONS(1763), - [anon_sym_sizeof] = ACTIONS(1763), - [anon_sym_LBRACE] = ACTIONS(1765), - [anon_sym_union] = ACTIONS(1763), - [anon_sym_unsigned] = ACTIONS(1763), - [anon_sym_short] = ACTIONS(1763), - [anon_sym_do] = ACTIONS(1763), - [sym_preproc_directive] = ACTIONS(1763), - [anon_sym_AMP] = ACTIONS(1765), - [aux_sym_preproc_if_token1] = ACTIONS(1763), - [anon_sym_TILDE] = ACTIONS(1765), - [anon_sym_L_DQUOTE] = ACTIONS(1765), - [anon_sym_LPAREN2] = ACTIONS(1765), - [anon_sym_RBRACE] = ACTIONS(1765), - [sym_primitive_type] = ACTIONS(1763), - [anon_sym_for] = ACTIONS(1763), - [anon_sym_break] = ACTIONS(1763), - [anon_sym_BANG] = ACTIONS(1765), - [aux_sym_preproc_include_token1] = ACTIONS(1763), - [anon_sym_DASH] = ACTIONS(1763), - [anon_sym_static] = ACTIONS(1763), - [anon_sym_DQUOTE] = ACTIONS(1765), - [anon_sym_register] = ACTIONS(1763), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_switch] = ACTIONS(1763), - [anon_sym_enum] = ACTIONS(1763), - [sym_false] = ACTIONS(1763), - [anon_sym_return] = ACTIONS(1763), - [anon_sym_continue] = ACTIONS(1763), - [anon_sym_SEMI] = ACTIONS(1765), - [aux_sym_preproc_def_token1] = ACTIONS(1763), - [anon_sym_PLUS] = ACTIONS(1763), - [anon_sym_auto] = ACTIONS(1763), - [anon_sym_inline] = ACTIONS(1763), + [sym__expression] = STATE(655), + [sym_conditional_expression] = STATE(655), + [sym_assignment_expression] = STATE(655), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(655), + [sym_binary_expression] = STATE(655), + [sym_update_expression] = STATE(655), + [sym_cast_expression] = STATE(655), + [sym_sizeof_expression] = STATE(655), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(655), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(655), + [sym_concatenated_string] = STATE(655), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(2067), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(2069), + [sym_false] = ACTIONS(2069), + [sym_null] = ACTIONS(2069), + [sym_comment] = ACTIONS(3), }, [591] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(2243), - [anon_sym_PERCENT_EQ] = ACTIONS(1776), - [anon_sym_DASH_EQ] = ACTIONS(1776), - [anon_sym_PIPE] = ACTIONS(2245), - [anon_sym_EQ_EQ] = ACTIONS(2247), - [anon_sym_SLASH] = ACTIONS(2249), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LT_LT] = ACTIONS(2243), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_PLUS_EQ] = ACTIONS(1776), - [anon_sym_LT_LT_EQ] = ACTIONS(1776), - [anon_sym_QMARK] = ACTIONS(2287), - [anon_sym_BANG_EQ] = ACTIONS(2247), - [anon_sym_CARET_EQ] = ACTIONS(1776), - [anon_sym_COMMA] = ACTIONS(1776), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT_EQ] = ACTIONS(1776), - [anon_sym_GT] = ACTIONS(2251), - [anon_sym_PIPE_EQ] = ACTIONS(1776), - [anon_sym_RPAREN] = ACTIONS(1776), - [anon_sym_RBRACK] = ACTIONS(1776), - [anon_sym_AMP_EQ] = ACTIONS(1776), - [anon_sym_PERCENT] = ACTIONS(2249), - [anon_sym_AMP] = ACTIONS(2253), - [anon_sym_EQ] = ACTIONS(2289), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(2257), - [anon_sym_RBRACE] = ACTIONS(1776), - [anon_sym_COLON] = ACTIONS(1776), - [anon_sym_STAR_EQ] = ACTIONS(1776), - [anon_sym_PIPE_PIPE] = ACTIONS(2259), - [anon_sym_DASH] = ACTIONS(2261), - [anon_sym_LT_EQ] = ACTIONS(2257), - [anon_sym_STAR] = ACTIONS(2249), - [anon_sym_SLASH_EQ] = ACTIONS(1776), - [anon_sym_AMP_AMP] = ACTIONS(2263), - [anon_sym_SEMI] = ACTIONS(1776), - [anon_sym_CARET] = ACTIONS(2265), - [anon_sym_PLUS] = ACTIONS(2261), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(2251), - [anon_sym_LBRACK] = ACTIONS(305), + [sym__expression] = STATE(653), + [sym_conditional_expression] = STATE(653), + [sym_assignment_expression] = STATE(653), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(653), + [sym_binary_expression] = STATE(653), + [sym_update_expression] = STATE(653), + [sym_cast_expression] = STATE(653), + [sym_sizeof_expression] = STATE(653), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(653), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(653), + [sym_concatenated_string] = STATE(653), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(2071), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(2073), + [sym_false] = ACTIONS(2073), + [sym_null] = ACTIONS(2073), + [sym_comment] = ACTIONS(3), }, [592] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1793), - [anon_sym_union] = ACTIONS(1793), - [anon_sym_unsigned] = ACTIONS(1793), - [anon_sym_restrict] = ACTIONS(1793), - [anon_sym_short] = ACTIONS(1793), - [anon_sym_static] = ACTIONS(1793), - [anon_sym_volatile] = ACTIONS(1793), - [anon_sym_register] = ACTIONS(1793), - [anon_sym_extern] = ACTIONS(1793), - [aux_sym_preproc_else_token1] = ACTIONS(1793), - [aux_sym_preproc_if_token2] = ACTIONS(1793), - [sym_preproc_directive] = ACTIONS(1793), - [anon_sym_signed] = ACTIONS(1793), - [aux_sym_preproc_if_token1] = ACTIONS(1793), - [anon_sym_long] = ACTIONS(1793), - [anon_sym_enum] = ACTIONS(1793), - [anon_sym_const] = ACTIONS(1793), - [anon_sym_struct] = ACTIONS(1793), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1793), - [aux_sym_preproc_elif_token1] = ACTIONS(1793), - [aux_sym_preproc_def_token1] = ACTIONS(1793), - [anon_sym__Atomic] = ACTIONS(1793), - [anon_sym_auto] = ACTIONS(1793), - [sym_primitive_type] = ACTIONS(1793), - [anon_sym_inline] = ACTIONS(1793), - [anon_sym___attribute__] = ACTIONS(1793), - [sym_identifier] = ACTIONS(1793), + [sym__expression] = STATE(652), + [sym_conditional_expression] = STATE(652), + [sym_assignment_expression] = STATE(652), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(652), + [sym_binary_expression] = STATE(652), + [sym_update_expression] = STATE(652), + [sym_cast_expression] = STATE(652), + [sym_sizeof_expression] = STATE(652), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(652), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(652), + [sym_concatenated_string] = STATE(652), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(2075), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(2077), + [sym_false] = ACTIONS(2077), + [sym_null] = ACTIONS(2077), + [sym_comment] = ACTIONS(3), }, [593] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1799), - [anon_sym_union] = ACTIONS(1799), - [anon_sym_unsigned] = ACTIONS(1799), - [anon_sym_restrict] = ACTIONS(1799), - [anon_sym_short] = ACTIONS(1799), - [anon_sym_static] = ACTIONS(1799), - [anon_sym_volatile] = ACTIONS(1799), - [anon_sym_register] = ACTIONS(1799), - [anon_sym_extern] = ACTIONS(1799), - [aux_sym_preproc_else_token1] = ACTIONS(1799), - [aux_sym_preproc_if_token2] = ACTIONS(1799), - [sym_preproc_directive] = ACTIONS(1799), - [anon_sym_signed] = ACTIONS(1799), - [aux_sym_preproc_if_token1] = ACTIONS(1799), - [anon_sym_long] = ACTIONS(1799), - [anon_sym_enum] = ACTIONS(1799), - [anon_sym_const] = ACTIONS(1799), - [anon_sym_struct] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1799), - [aux_sym_preproc_elif_token1] = ACTIONS(1799), - [aux_sym_preproc_def_token1] = ACTIONS(1799), - [anon_sym__Atomic] = ACTIONS(1799), - [anon_sym_auto] = ACTIONS(1799), - [sym_primitive_type] = ACTIONS(1799), - [anon_sym_inline] = ACTIONS(1799), - [anon_sym___attribute__] = ACTIONS(1799), - [sym_identifier] = ACTIONS(1799), + [sym__expression] = STATE(452), + [sym_conditional_expression] = STATE(452), + [sym_assignment_expression] = STATE(452), + [sym_pointer_expression] = STATE(452), + [sym_unary_expression] = STATE(452), + [sym_binary_expression] = STATE(452), + [sym_update_expression] = STATE(452), + [sym_cast_expression] = STATE(452), + [sym_sizeof_expression] = STATE(452), + [sym_subscript_expression] = STATE(452), + [sym_call_expression] = STATE(452), + [sym_field_expression] = STATE(452), + [sym_compound_literal_expression] = STATE(452), + [sym_parenthesized_expression] = STATE(452), + [sym_char_literal] = STATE(452), + [sym_concatenated_string] = STATE(452), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(2079), + [anon_sym_LPAREN2] = ACTIONS(2081), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_TILDE] = ACTIONS(739), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH_DASH] = ACTIONS(741), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_sizeof] = ACTIONS(743), + [sym_number_literal] = ACTIONS(2083), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(2079), + [sym_false] = ACTIONS(2079), + [sym_null] = ACTIONS(2079), + [sym_comment] = ACTIONS(3), }, [594] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1803), - [anon_sym_union] = ACTIONS(1803), - [anon_sym_unsigned] = ACTIONS(1803), - [anon_sym_restrict] = ACTIONS(1803), - [anon_sym_short] = ACTIONS(1803), - [anon_sym_static] = ACTIONS(1803), - [anon_sym_volatile] = ACTIONS(1803), - [anon_sym_register] = ACTIONS(1803), - [anon_sym_extern] = ACTIONS(1803), - [aux_sym_preproc_else_token1] = ACTIONS(1803), - [aux_sym_preproc_if_token2] = ACTIONS(1803), - [sym_preproc_directive] = ACTIONS(1803), - [anon_sym_signed] = ACTIONS(1803), - [aux_sym_preproc_if_token1] = ACTIONS(1803), - [anon_sym_long] = ACTIONS(1803), - [anon_sym_enum] = ACTIONS(1803), - [anon_sym_const] = ACTIONS(1803), - [anon_sym_struct] = ACTIONS(1803), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1803), - [aux_sym_preproc_elif_token1] = ACTIONS(1803), - [aux_sym_preproc_def_token1] = ACTIONS(1803), - [anon_sym__Atomic] = ACTIONS(1803), - [anon_sym_auto] = ACTIONS(1803), - [sym_primitive_type] = ACTIONS(1803), - [anon_sym_inline] = ACTIONS(1803), - [anon_sym___attribute__] = ACTIONS(1803), - [sym_identifier] = ACTIONS(1803), + [sym__expression] = STATE(459), + [sym_conditional_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_pointer_expression] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_update_expression] = STATE(459), + [sym_cast_expression] = STATE(459), + [sym_sizeof_expression] = STATE(459), + [sym_subscript_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_field_expression] = STATE(459), + [sym_compound_literal_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_char_literal] = STATE(459), + [sym_concatenated_string] = STATE(459), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(2085), + [anon_sym_LPAREN2] = ACTIONS(729), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_TILDE] = ACTIONS(739), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH_DASH] = ACTIONS(741), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_sizeof] = ACTIONS(743), + [sym_number_literal] = ACTIONS(2087), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(2085), + [sym_false] = ACTIONS(2085), + [sym_null] = ACTIONS(2085), + [sym_comment] = ACTIONS(3), }, [595] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1809), - [anon_sym_union] = ACTIONS(1809), - [anon_sym_unsigned] = ACTIONS(1809), - [anon_sym_restrict] = ACTIONS(1809), - [anon_sym_short] = ACTIONS(1809), - [anon_sym_static] = ACTIONS(1809), - [anon_sym_volatile] = ACTIONS(1809), - [anon_sym_register] = ACTIONS(1809), - [anon_sym_extern] = ACTIONS(1809), - [aux_sym_preproc_else_token1] = ACTIONS(1809), - [aux_sym_preproc_if_token2] = ACTIONS(1809), - [sym_preproc_directive] = ACTIONS(1809), - [anon_sym_signed] = ACTIONS(1809), - [aux_sym_preproc_if_token1] = ACTIONS(1809), - [anon_sym_long] = ACTIONS(1809), - [anon_sym_enum] = ACTIONS(1809), - [anon_sym_const] = ACTIONS(1809), - [anon_sym_struct] = ACTIONS(1809), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1809), - [aux_sym_preproc_elif_token1] = ACTIONS(1809), - [aux_sym_preproc_def_token1] = ACTIONS(1809), - [anon_sym__Atomic] = ACTIONS(1809), - [anon_sym_auto] = ACTIONS(1809), - [sym_primitive_type] = ACTIONS(1809), - [anon_sym_inline] = ACTIONS(1809), - [anon_sym___attribute__] = ACTIONS(1809), - [sym_identifier] = ACTIONS(1809), + [sym__expression] = STATE(741), + [sym_conditional_expression] = STATE(741), + [sym_assignment_expression] = STATE(741), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(741), + [sym_binary_expression] = STATE(741), + [sym_update_expression] = STATE(741), + [sym_cast_expression] = STATE(741), + [sym_sizeof_expression] = STATE(741), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(741), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(741), + [sym_concatenated_string] = STATE(741), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(2089), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(2091), + [sym_false] = ACTIONS(2091), + [sym_null] = ACTIONS(2091), + [sym_comment] = ACTIONS(3), }, [596] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1831), - [anon_sym_union] = ACTIONS(1831), - [anon_sym_unsigned] = ACTIONS(1831), - [anon_sym_restrict] = ACTIONS(1831), - [anon_sym_short] = ACTIONS(1831), - [anon_sym_static] = ACTIONS(1831), - [anon_sym_volatile] = ACTIONS(1831), - [anon_sym_register] = ACTIONS(1831), - [anon_sym_extern] = ACTIONS(1831), - [aux_sym_preproc_else_token1] = ACTIONS(1831), - [aux_sym_preproc_if_token2] = ACTIONS(1831), - [sym_preproc_directive] = ACTIONS(1831), - [anon_sym_signed] = ACTIONS(1831), - [aux_sym_preproc_if_token1] = ACTIONS(1831), - [anon_sym_long] = ACTIONS(1831), - [anon_sym_enum] = ACTIONS(1831), - [anon_sym_const] = ACTIONS(1831), - [anon_sym_struct] = ACTIONS(1831), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1831), - [aux_sym_preproc_elif_token1] = ACTIONS(1831), - [aux_sym_preproc_def_token1] = ACTIONS(1831), - [anon_sym__Atomic] = ACTIONS(1831), - [anon_sym_auto] = ACTIONS(1831), - [sym_primitive_type] = ACTIONS(1831), - [anon_sym_inline] = ACTIONS(1831), - [anon_sym___attribute__] = ACTIONS(1831), - [sym_identifier] = ACTIONS(1831), + [sym__expression] = STATE(467), + [sym_conditional_expression] = STATE(467), + [sym_assignment_expression] = STATE(467), + [sym_pointer_expression] = STATE(467), + [sym_unary_expression] = STATE(467), + [sym_binary_expression] = STATE(467), + [sym_update_expression] = STATE(467), + [sym_cast_expression] = STATE(467), + [sym_sizeof_expression] = STATE(467), + [sym_subscript_expression] = STATE(467), + [sym_call_expression] = STATE(467), + [sym_field_expression] = STATE(467), + [sym_compound_literal_expression] = STATE(467), + [sym_parenthesized_expression] = STATE(467), + [sym_char_literal] = STATE(467), + [sym_concatenated_string] = STATE(467), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(2093), + [anon_sym_LPAREN2] = ACTIONS(729), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_TILDE] = ACTIONS(739), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH_DASH] = ACTIONS(741), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_sizeof] = ACTIONS(743), + [sym_number_literal] = ACTIONS(2095), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(2093), + [sym_false] = ACTIONS(2093), + [sym_null] = ACTIONS(2093), + [sym_comment] = ACTIONS(3), }, [597] = { - [sym_true] = ACTIONS(1900), - [anon_sym_restrict] = ACTIONS(1900), - [sym_null] = ACTIONS(1900), - [anon_sym_goto] = ACTIONS(1900), - [anon_sym_const] = ACTIONS(1900), - [anon_sym_typedef] = ACTIONS(1900), - [anon_sym_DASH_DASH] = ACTIONS(1902), - [anon_sym__Atomic] = ACTIONS(1900), - [sym_identifier] = ACTIONS(1900), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1900), - [sym_number_literal] = ACTIONS(1902), - [anon_sym_volatile] = ACTIONS(1900), - [anon_sym_SQUOTE] = ACTIONS(1902), - [anon_sym_extern] = ACTIONS(1900), - [anon_sym_PLUS_PLUS] = ACTIONS(1902), - [anon_sym_struct] = ACTIONS(1900), - [anon_sym_signed] = ACTIONS(1900), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1900), - [anon_sym_while] = ACTIONS(1900), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1900), - [anon_sym_L_SQUOTE] = ACTIONS(1902), - [anon_sym___attribute__] = ACTIONS(1900), - [anon_sym_sizeof] = ACTIONS(1900), - [anon_sym_LBRACE] = ACTIONS(1902), - [anon_sym_union] = ACTIONS(1900), - [anon_sym_unsigned] = ACTIONS(1900), - [anon_sym_short] = ACTIONS(1900), - [anon_sym_do] = ACTIONS(1900), - [sym_preproc_directive] = ACTIONS(1900), - [anon_sym_AMP] = ACTIONS(1902), - [aux_sym_preproc_if_token1] = ACTIONS(1900), - [anon_sym_TILDE] = ACTIONS(1902), - [anon_sym_L_DQUOTE] = ACTIONS(1902), - [anon_sym_LPAREN2] = ACTIONS(1902), - [anon_sym_RBRACE] = ACTIONS(1902), - [sym_primitive_type] = ACTIONS(1900), - [anon_sym_for] = ACTIONS(1900), - [anon_sym_break] = ACTIONS(1900), - [anon_sym_BANG] = ACTIONS(1902), - [aux_sym_preproc_include_token1] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_static] = ACTIONS(1900), - [anon_sym_DQUOTE] = ACTIONS(1902), - [anon_sym_register] = ACTIONS(1900), - [anon_sym_STAR] = ACTIONS(1902), - [anon_sym_if] = ACTIONS(1900), - [anon_sym_switch] = ACTIONS(1900), - [anon_sym_enum] = ACTIONS(1900), - [sym_false] = ACTIONS(1900), - [anon_sym_return] = ACTIONS(1900), - [anon_sym_continue] = ACTIONS(1900), - [anon_sym_SEMI] = ACTIONS(1902), - [aux_sym_preproc_def_token1] = ACTIONS(1900), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_auto] = ACTIONS(1900), - [anon_sym_inline] = ACTIONS(1900), + [sym__expression] = STATE(651), + [sym_conditional_expression] = STATE(651), + [sym_assignment_expression] = STATE(651), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(651), + [sym_binary_expression] = STATE(651), + [sym_update_expression] = STATE(651), + [sym_cast_expression] = STATE(651), + [sym_sizeof_expression] = STATE(651), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(651), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(651), + [sym_concatenated_string] = STATE(651), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(2097), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(2099), + [sym_false] = ACTIONS(2099), + [sym_null] = ACTIONS(2099), + [sym_comment] = ACTIONS(3), }, [598] = { - [sym_true] = ACTIONS(1904), - [anon_sym_restrict] = ACTIONS(1904), - [sym_null] = ACTIONS(1904), - [anon_sym_goto] = ACTIONS(1904), - [anon_sym_const] = ACTIONS(1904), - [anon_sym_typedef] = ACTIONS(1904), - [anon_sym_DASH_DASH] = ACTIONS(1906), - [anon_sym__Atomic] = ACTIONS(1904), - [sym_identifier] = ACTIONS(1904), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1904), - [sym_number_literal] = ACTIONS(1906), - [anon_sym_volatile] = ACTIONS(1904), - [anon_sym_SQUOTE] = ACTIONS(1906), - [anon_sym_extern] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1906), - [anon_sym_struct] = ACTIONS(1904), - [anon_sym_signed] = ACTIONS(1904), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1904), - [anon_sym_while] = ACTIONS(1904), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1904), - [anon_sym_L_SQUOTE] = ACTIONS(1906), - [anon_sym___attribute__] = ACTIONS(1904), - [anon_sym_sizeof] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_union] = ACTIONS(1904), - [anon_sym_unsigned] = ACTIONS(1904), - [anon_sym_short] = ACTIONS(1904), - [anon_sym_do] = ACTIONS(1904), - [sym_preproc_directive] = ACTIONS(1904), - [anon_sym_AMP] = ACTIONS(1906), - [aux_sym_preproc_if_token1] = ACTIONS(1904), - [anon_sym_TILDE] = ACTIONS(1906), - [anon_sym_L_DQUOTE] = ACTIONS(1906), - [anon_sym_LPAREN2] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(1906), - [anon_sym_else] = ACTIONS(1904), - [sym_primitive_type] = ACTIONS(1904), - [anon_sym_for] = ACTIONS(1904), - [anon_sym_break] = ACTIONS(1904), - [anon_sym_BANG] = ACTIONS(1906), - [aux_sym_preproc_include_token1] = ACTIONS(1904), - [anon_sym_DASH] = ACTIONS(1904), - [anon_sym_static] = ACTIONS(1904), - [anon_sym_DQUOTE] = ACTIONS(1906), - [anon_sym_register] = ACTIONS(1904), - [anon_sym_STAR] = ACTIONS(1906), - [anon_sym_if] = ACTIONS(1904), - [anon_sym_switch] = ACTIONS(1904), - [anon_sym_enum] = ACTIONS(1904), - [sym_false] = ACTIONS(1904), - [anon_sym_return] = ACTIONS(1904), - [anon_sym_continue] = ACTIONS(1904), - [anon_sym_SEMI] = ACTIONS(1906), - [aux_sym_preproc_def_token1] = ACTIONS(1904), - [anon_sym_PLUS] = ACTIONS(1904), - [anon_sym_auto] = ACTIONS(1904), - [anon_sym_inline] = ACTIONS(1904), + [sym__expression] = STATE(716), + [sym_conditional_expression] = STATE(716), + [sym_assignment_expression] = STATE(716), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(716), + [sym_binary_expression] = STATE(716), + [sym_update_expression] = STATE(716), + [sym_cast_expression] = STATE(716), + [sym_sizeof_expression] = STATE(716), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(716), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(716), + [sym_concatenated_string] = STATE(716), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(2101), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(2103), + [sym_false] = ACTIONS(2103), + [sym_null] = ACTIONS(2103), + [sym_comment] = ACTIONS(3), }, [599] = { - [sym_if_statement] = STATE(608), - [sym_do_statement] = STATE(608), - [sym_for_statement] = STATE(608), - [sym__expression] = STATE(867), - [sym_comma_expression] = STATE(868), - [sym_binary_expression] = STATE(867), - [sym_update_expression] = STATE(867), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(608), - [sym_return_statement] = STATE(608), - [sym_break_statement] = STATE(608), - [sym_conditional_expression] = STATE(867), - [sym_assignment_expression] = STATE(867), - [sym_cast_expression] = STATE(867), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(867), - [sym_char_literal] = STATE(867), - [sym_labeled_statement] = STATE(608), - [sym_while_statement] = STATE(608), - [sym_continue_statement] = STATE(608), - [sym_goto_statement] = STATE(608), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(867), - [sym_sizeof_expression] = STATE(867), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(867), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(608), - [sym_expression_statement] = STATE(608), - [anon_sym_LBRACE] = ACTIONS(97), - [sym_true] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [anon_sym_do] = ACTIONS(99), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(2139), - [anon_sym_for] = ACTIONS(109), - [anon_sym_break] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(115), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(117), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(81), - [anon_sym_return] = ACTIONS(119), - [anon_sym_while] = ACTIONS(95), - [anon_sym_continue] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym__expression] = STATE(650), + [sym_conditional_expression] = STATE(650), + [sym_assignment_expression] = STATE(650), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(650), + [sym_binary_expression] = STATE(650), + [sym_update_expression] = STATE(650), + [sym_cast_expression] = STATE(650), + [sym_sizeof_expression] = STATE(650), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(650), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(650), + [sym_concatenated_string] = STATE(650), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(2105), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(2107), + [sym_false] = ACTIONS(2107), + [sym_null] = ACTIONS(2107), + [sym_comment] = ACTIONS(3), }, [600] = { - [sym_if_statement] = STATE(609), - [sym_do_statement] = STATE(609), - [sym_for_statement] = STATE(609), - [sym__expression] = STATE(867), - [sym_comma_expression] = STATE(868), - [sym_binary_expression] = STATE(867), - [sym_update_expression] = STATE(867), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(609), - [sym_return_statement] = STATE(609), - [sym_break_statement] = STATE(609), - [sym_conditional_expression] = STATE(867), - [sym_assignment_expression] = STATE(867), - [sym_cast_expression] = STATE(867), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(867), - [sym_char_literal] = STATE(867), - [sym_labeled_statement] = STATE(609), - [sym_while_statement] = STATE(609), - [sym_continue_statement] = STATE(609), - [sym_goto_statement] = STATE(609), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(867), - [sym_sizeof_expression] = STATE(867), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(867), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(609), - [sym_expression_statement] = STATE(609), - [anon_sym_LBRACE] = ACTIONS(97), - [sym_true] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [anon_sym_do] = ACTIONS(99), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(2139), - [anon_sym_for] = ACTIONS(109), - [anon_sym_break] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(115), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(117), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(81), - [anon_sym_return] = ACTIONS(119), - [anon_sym_while] = ACTIONS(95), - [anon_sym_continue] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym__expression] = STATE(457), + [sym_conditional_expression] = STATE(457), + [sym_assignment_expression] = STATE(457), + [sym_pointer_expression] = STATE(457), + [sym_unary_expression] = STATE(457), + [sym_binary_expression] = STATE(457), + [sym_update_expression] = STATE(457), + [sym_cast_expression] = STATE(457), + [sym_sizeof_expression] = STATE(457), + [sym_subscript_expression] = STATE(457), + [sym_call_expression] = STATE(457), + [sym_field_expression] = STATE(457), + [sym_compound_literal_expression] = STATE(457), + [sym_parenthesized_expression] = STATE(457), + [sym_char_literal] = STATE(457), + [sym_concatenated_string] = STATE(457), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(2109), + [anon_sym_LPAREN2] = ACTIONS(729), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_TILDE] = ACTIONS(739), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH_DASH] = ACTIONS(741), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_sizeof] = ACTIONS(743), + [sym_number_literal] = ACTIONS(2111), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(2109), + [sym_false] = ACTIONS(2109), + [sym_null] = ACTIONS(2109), + [sym_comment] = ACTIONS(3), }, [601] = { - [sym_if_statement] = STATE(611), - [sym_do_statement] = STATE(611), - [sym_for_statement] = STATE(611), - [sym__expression] = STATE(867), - [sym_comma_expression] = STATE(868), - [sym_binary_expression] = STATE(867), - [sym_update_expression] = STATE(867), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(611), - [sym_return_statement] = STATE(611), - [sym_break_statement] = STATE(611), - [sym_conditional_expression] = STATE(867), - [sym_assignment_expression] = STATE(867), - [sym_cast_expression] = STATE(867), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(867), - [sym_char_literal] = STATE(867), - [sym_labeled_statement] = STATE(611), - [sym_while_statement] = STATE(611), - [sym_continue_statement] = STATE(611), - [sym_goto_statement] = STATE(611), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(867), - [sym_sizeof_expression] = STATE(867), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(867), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(611), - [sym_expression_statement] = STATE(611), - [anon_sym_LBRACE] = ACTIONS(97), - [sym_true] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [anon_sym_do] = ACTIONS(99), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(2139), - [anon_sym_for] = ACTIONS(109), - [anon_sym_break] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(115), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(117), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(81), - [anon_sym_return] = ACTIONS(119), - [anon_sym_while] = ACTIONS(95), - [anon_sym_continue] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym__expression] = STATE(462), + [sym_conditional_expression] = STATE(462), + [sym_assignment_expression] = STATE(462), + [sym_pointer_expression] = STATE(462), + [sym_unary_expression] = STATE(462), + [sym_binary_expression] = STATE(462), + [sym_update_expression] = STATE(462), + [sym_cast_expression] = STATE(462), + [sym_sizeof_expression] = STATE(462), + [sym_subscript_expression] = STATE(462), + [sym_call_expression] = STATE(462), + [sym_field_expression] = STATE(462), + [sym_compound_literal_expression] = STATE(462), + [sym_parenthesized_expression] = STATE(462), + [sym_char_literal] = STATE(462), + [sym_concatenated_string] = STATE(462), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(2113), + [anon_sym_LPAREN2] = ACTIONS(729), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_TILDE] = ACTIONS(739), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH_DASH] = ACTIONS(741), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_sizeof] = ACTIONS(743), + [sym_number_literal] = ACTIONS(2115), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(2113), + [sym_false] = ACTIONS(2113), + [sym_null] = ACTIONS(2113), + [sym_comment] = ACTIONS(3), }, [602] = { - [sym_true] = ACTIONS(1918), - [anon_sym_restrict] = ACTIONS(1918), - [sym_null] = ACTIONS(1918), - [anon_sym_goto] = ACTIONS(1918), - [anon_sym_const] = ACTIONS(1918), - [anon_sym_typedef] = ACTIONS(1918), - [anon_sym_DASH_DASH] = ACTIONS(1920), - [anon_sym__Atomic] = ACTIONS(1918), - [sym_identifier] = ACTIONS(1918), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1918), - [sym_number_literal] = ACTIONS(1920), - [anon_sym_volatile] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1920), - [anon_sym_extern] = ACTIONS(1918), - [anon_sym_PLUS_PLUS] = ACTIONS(1920), - [anon_sym_struct] = ACTIONS(1918), - [anon_sym_signed] = ACTIONS(1918), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1918), - [anon_sym_while] = ACTIONS(1918), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1918), - [anon_sym_L_SQUOTE] = ACTIONS(1920), - [anon_sym___attribute__] = ACTIONS(1918), - [anon_sym_sizeof] = ACTIONS(1918), - [anon_sym_LBRACE] = ACTIONS(1920), - [anon_sym_union] = ACTIONS(1918), - [anon_sym_unsigned] = ACTIONS(1918), - [anon_sym_short] = ACTIONS(1918), - [anon_sym_do] = ACTIONS(1918), - [sym_preproc_directive] = ACTIONS(1918), - [anon_sym_AMP] = ACTIONS(1920), - [aux_sym_preproc_if_token1] = ACTIONS(1918), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_L_DQUOTE] = ACTIONS(1920), - [anon_sym_LPAREN2] = ACTIONS(1920), - [anon_sym_RBRACE] = ACTIONS(1920), - [anon_sym_else] = ACTIONS(1918), - [sym_primitive_type] = ACTIONS(1918), - [anon_sym_for] = ACTIONS(1918), - [anon_sym_break] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [aux_sym_preproc_include_token1] = ACTIONS(1918), - [anon_sym_DASH] = ACTIONS(1918), - [anon_sym_static] = ACTIONS(1918), - [anon_sym_DQUOTE] = ACTIONS(1920), - [anon_sym_register] = ACTIONS(1918), - [anon_sym_STAR] = ACTIONS(1920), - [anon_sym_if] = ACTIONS(1918), - [anon_sym_switch] = ACTIONS(1918), - [anon_sym_enum] = ACTIONS(1918), - [sym_false] = ACTIONS(1918), - [anon_sym_return] = ACTIONS(1918), - [anon_sym_continue] = ACTIONS(1918), - [anon_sym_SEMI] = ACTIONS(1920), - [aux_sym_preproc_def_token1] = ACTIONS(1918), - [anon_sym_PLUS] = ACTIONS(1918), - [anon_sym_auto] = ACTIONS(1918), - [anon_sym_inline] = ACTIONS(1918), + [sym__expression] = STATE(456), + [sym_conditional_expression] = STATE(456), + [sym_assignment_expression] = STATE(456), + [sym_pointer_expression] = STATE(456), + [sym_unary_expression] = STATE(456), + [sym_binary_expression] = STATE(456), + [sym_update_expression] = STATE(456), + [sym_cast_expression] = STATE(456), + [sym_sizeof_expression] = STATE(456), + [sym_subscript_expression] = STATE(456), + [sym_call_expression] = STATE(456), + [sym_field_expression] = STATE(456), + [sym_compound_literal_expression] = STATE(456), + [sym_parenthesized_expression] = STATE(456), + [sym_char_literal] = STATE(456), + [sym_concatenated_string] = STATE(456), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(2117), + [anon_sym_LPAREN2] = ACTIONS(729), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_TILDE] = ACTIONS(739), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH_DASH] = ACTIONS(741), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_sizeof] = ACTIONS(743), + [sym_number_literal] = ACTIONS(2119), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(2117), + [sym_false] = ACTIONS(2117), + [sym_null] = ACTIONS(2117), + [sym_comment] = ACTIONS(3), }, [603] = { - [sym_if_statement] = STATE(614), - [sym_do_statement] = STATE(614), - [sym_for_statement] = STATE(614), - [sym__expression] = STATE(867), - [sym_comma_expression] = STATE(868), - [sym_binary_expression] = STATE(867), - [sym_update_expression] = STATE(867), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(614), - [sym_return_statement] = STATE(614), - [sym_break_statement] = STATE(614), - [sym_conditional_expression] = STATE(867), - [sym_assignment_expression] = STATE(867), - [sym_cast_expression] = STATE(867), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(867), - [sym_char_literal] = STATE(867), - [sym_labeled_statement] = STATE(614), - [sym_while_statement] = STATE(614), - [sym_continue_statement] = STATE(614), - [sym_goto_statement] = STATE(614), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(867), - [sym_sizeof_expression] = STATE(867), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(867), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(614), - [sym_expression_statement] = STATE(614), - [anon_sym_LBRACE] = ACTIONS(97), - [sym_true] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [anon_sym_do] = ACTIONS(99), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(2139), - [anon_sym_for] = ACTIONS(109), - [anon_sym_break] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(115), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(117), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(81), - [anon_sym_return] = ACTIONS(119), - [anon_sym_while] = ACTIONS(95), - [anon_sym_continue] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym__expression] = STATE(467), + [sym_conditional_expression] = STATE(467), + [sym_assignment_expression] = STATE(467), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(467), + [sym_binary_expression] = STATE(467), + [sym_update_expression] = STATE(467), + [sym_cast_expression] = STATE(467), + [sym_sizeof_expression] = STATE(467), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(467), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(467), + [sym_concatenated_string] = STATE(467), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(2095), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(2093), + [sym_false] = ACTIONS(2093), + [sym_null] = ACTIONS(2093), + [sym_comment] = ACTIONS(3), }, [604] = { - [sym_if_statement] = STATE(615), - [sym_do_statement] = STATE(615), - [sym_for_statement] = STATE(615), - [sym__expression] = STATE(867), - [sym_comma_expression] = STATE(868), - [sym_binary_expression] = STATE(867), - [sym_update_expression] = STATE(867), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(615), - [sym_return_statement] = STATE(615), - [sym_break_statement] = STATE(615), - [sym_conditional_expression] = STATE(867), - [sym_assignment_expression] = STATE(867), - [sym_cast_expression] = STATE(867), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(867), - [sym_char_literal] = STATE(867), - [sym_labeled_statement] = STATE(615), - [sym_while_statement] = STATE(615), - [sym_continue_statement] = STATE(615), - [sym_goto_statement] = STATE(615), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(867), - [sym_sizeof_expression] = STATE(867), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(867), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(615), - [sym_expression_statement] = STATE(615), - [anon_sym_LBRACE] = ACTIONS(97), - [sym_true] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [anon_sym_do] = ACTIONS(99), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(2139), - [anon_sym_for] = ACTIONS(109), - [anon_sym_break] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(115), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(117), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(81), - [anon_sym_return] = ACTIONS(119), - [anon_sym_while] = ACTIONS(95), - [anon_sym_continue] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym__expression] = STATE(455), + [sym_conditional_expression] = STATE(455), + [sym_assignment_expression] = STATE(455), + [sym_pointer_expression] = STATE(455), + [sym_unary_expression] = STATE(455), + [sym_binary_expression] = STATE(455), + [sym_update_expression] = STATE(455), + [sym_cast_expression] = STATE(455), + [sym_sizeof_expression] = STATE(455), + [sym_subscript_expression] = STATE(455), + [sym_call_expression] = STATE(455), + [sym_field_expression] = STATE(455), + [sym_compound_literal_expression] = STATE(455), + [sym_parenthesized_expression] = STATE(455), + [sym_char_literal] = STATE(455), + [sym_concatenated_string] = STATE(455), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(2121), + [anon_sym_LPAREN2] = ACTIONS(729), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_TILDE] = ACTIONS(739), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH_DASH] = ACTIONS(741), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_sizeof] = ACTIONS(743), + [sym_number_literal] = ACTIONS(2123), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(2121), + [sym_false] = ACTIONS(2121), + [sym_null] = ACTIONS(2121), + [sym_comment] = ACTIONS(3), }, [605] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1949), - [anon_sym_union] = ACTIONS(1949), - [anon_sym_unsigned] = ACTIONS(1949), - [anon_sym_restrict] = ACTIONS(1949), - [anon_sym_short] = ACTIONS(1949), - [anon_sym_static] = ACTIONS(1949), - [anon_sym_volatile] = ACTIONS(1949), - [anon_sym_register] = ACTIONS(1949), - [anon_sym_extern] = ACTIONS(1949), - [aux_sym_preproc_else_token1] = ACTIONS(1949), - [aux_sym_preproc_if_token2] = ACTIONS(1949), - [sym_preproc_directive] = ACTIONS(1949), - [anon_sym_signed] = ACTIONS(1949), - [aux_sym_preproc_if_token1] = ACTIONS(1949), - [anon_sym_long] = ACTIONS(1949), - [anon_sym_enum] = ACTIONS(1949), - [anon_sym_const] = ACTIONS(1949), - [anon_sym_struct] = ACTIONS(1949), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1949), - [aux_sym_preproc_elif_token1] = ACTIONS(1949), - [aux_sym_preproc_def_token1] = ACTIONS(1949), - [anon_sym__Atomic] = ACTIONS(1949), - [anon_sym_auto] = ACTIONS(1949), - [sym_primitive_type] = ACTIONS(1949), - [anon_sym_inline] = ACTIONS(1949), - [anon_sym___attribute__] = ACTIONS(1949), - [sym_identifier] = ACTIONS(1949), + [sym__expression] = STATE(463), + [sym_conditional_expression] = STATE(463), + [sym_assignment_expression] = STATE(463), + [sym_pointer_expression] = STATE(463), + [sym_unary_expression] = STATE(463), + [sym_binary_expression] = STATE(463), + [sym_update_expression] = STATE(463), + [sym_cast_expression] = STATE(463), + [sym_sizeof_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_call_expression] = STATE(463), + [sym_field_expression] = STATE(463), + [sym_compound_literal_expression] = STATE(463), + [sym_parenthesized_expression] = STATE(463), + [sym_char_literal] = STATE(463), + [sym_concatenated_string] = STATE(463), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(2125), + [anon_sym_LPAREN2] = ACTIONS(729), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_TILDE] = ACTIONS(739), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH_DASH] = ACTIONS(741), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_sizeof] = ACTIONS(743), + [sym_number_literal] = ACTIONS(2127), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(2125), + [sym_false] = ACTIONS(2125), + [sym_null] = ACTIONS(2125), + [sym_comment] = ACTIONS(3), }, [606] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1953), - [anon_sym_union] = ACTIONS(1953), - [anon_sym_unsigned] = ACTIONS(1953), - [anon_sym_restrict] = ACTIONS(1953), - [anon_sym_short] = ACTIONS(1953), - [anon_sym_static] = ACTIONS(1953), - [anon_sym_volatile] = ACTIONS(1953), - [anon_sym_register] = ACTIONS(1953), - [anon_sym_extern] = ACTIONS(1953), - [aux_sym_preproc_else_token1] = ACTIONS(1953), - [aux_sym_preproc_if_token2] = ACTIONS(1953), - [sym_preproc_directive] = ACTIONS(1953), - [anon_sym_signed] = ACTIONS(1953), - [aux_sym_preproc_if_token1] = ACTIONS(1953), - [anon_sym_long] = ACTIONS(1953), - [anon_sym_enum] = ACTIONS(1953), - [anon_sym_const] = ACTIONS(1953), - [anon_sym_struct] = ACTIONS(1953), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1953), - [aux_sym_preproc_elif_token1] = ACTIONS(1953), - [aux_sym_preproc_def_token1] = ACTIONS(1953), - [anon_sym__Atomic] = ACTIONS(1953), - [anon_sym_auto] = ACTIONS(1953), - [sym_primitive_type] = ACTIONS(1953), - [anon_sym_inline] = ACTIONS(1953), - [anon_sym___attribute__] = ACTIONS(1953), - [sym_identifier] = ACTIONS(1953), + [sym__expression] = STATE(447), + [sym_conditional_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_pointer_expression] = STATE(447), + [sym_unary_expression] = STATE(447), + [sym_binary_expression] = STATE(447), + [sym_update_expression] = STATE(447), + [sym_cast_expression] = STATE(447), + [sym_sizeof_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_call_expression] = STATE(447), + [sym_field_expression] = STATE(447), + [sym_compound_literal_expression] = STATE(447), + [sym_parenthesized_expression] = STATE(447), + [sym_char_literal] = STATE(447), + [sym_concatenated_string] = STATE(447), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(2129), + [anon_sym_LPAREN2] = ACTIONS(729), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_TILDE] = ACTIONS(739), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH_DASH] = ACTIONS(741), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_sizeof] = ACTIONS(743), + [sym_number_literal] = ACTIONS(2131), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(2129), + [sym_false] = ACTIONS(2129), + [sym_null] = ACTIONS(2129), + [sym_comment] = ACTIONS(3), }, [607] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1963), - [anon_sym_union] = ACTIONS(1963), - [anon_sym_unsigned] = ACTIONS(1963), - [anon_sym_restrict] = ACTIONS(1963), - [anon_sym_short] = ACTIONS(1963), - [anon_sym_static] = ACTIONS(1963), - [anon_sym_volatile] = ACTIONS(1963), - [anon_sym_register] = ACTIONS(1963), - [anon_sym_extern] = ACTIONS(1963), - [aux_sym_preproc_else_token1] = ACTIONS(1963), - [aux_sym_preproc_if_token2] = ACTIONS(1963), - [sym_preproc_directive] = ACTIONS(1963), - [anon_sym_signed] = ACTIONS(1963), - [aux_sym_preproc_if_token1] = ACTIONS(1963), - [anon_sym_long] = ACTIONS(1963), - [anon_sym_enum] = ACTIONS(1963), - [anon_sym_const] = ACTIONS(1963), - [anon_sym_struct] = ACTIONS(1963), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1963), - [aux_sym_preproc_elif_token1] = ACTIONS(1963), - [aux_sym_preproc_def_token1] = ACTIONS(1963), - [anon_sym__Atomic] = ACTIONS(1963), - [anon_sym_auto] = ACTIONS(1963), - [sym_primitive_type] = ACTIONS(1963), - [anon_sym_inline] = ACTIONS(1963), - [anon_sym___attribute__] = ACTIONS(1963), - [sym_identifier] = ACTIONS(1963), + [sym__expression] = STATE(454), + [sym_conditional_expression] = STATE(454), + [sym_assignment_expression] = STATE(454), + [sym_pointer_expression] = STATE(454), + [sym_unary_expression] = STATE(454), + [sym_binary_expression] = STATE(454), + [sym_update_expression] = STATE(454), + [sym_cast_expression] = STATE(454), + [sym_sizeof_expression] = STATE(454), + [sym_subscript_expression] = STATE(454), + [sym_call_expression] = STATE(454), + [sym_field_expression] = STATE(454), + [sym_compound_literal_expression] = STATE(454), + [sym_parenthesized_expression] = STATE(454), + [sym_char_literal] = STATE(454), + [sym_concatenated_string] = STATE(454), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(2133), + [anon_sym_LPAREN2] = ACTIONS(729), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_TILDE] = ACTIONS(739), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH_DASH] = ACTIONS(741), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_sizeof] = ACTIONS(743), + [sym_number_literal] = ACTIONS(2135), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(2133), + [sym_false] = ACTIONS(2133), + [sym_null] = ACTIONS(2133), + [sym_comment] = ACTIONS(3), }, [608] = { - [sym_true] = ACTIONS(1986), - [anon_sym_restrict] = ACTIONS(1986), - [sym_null] = ACTIONS(1986), - [anon_sym_goto] = ACTIONS(1986), - [anon_sym_const] = ACTIONS(1986), - [anon_sym_typedef] = ACTIONS(1986), - [anon_sym_DASH_DASH] = ACTIONS(1988), - [anon_sym__Atomic] = ACTIONS(1986), - [sym_identifier] = ACTIONS(1986), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1986), - [sym_number_literal] = ACTIONS(1988), - [anon_sym_volatile] = ACTIONS(1986), - [anon_sym_SQUOTE] = ACTIONS(1988), - [anon_sym_extern] = ACTIONS(1986), - [anon_sym_PLUS_PLUS] = ACTIONS(1988), - [anon_sym_struct] = ACTIONS(1986), - [anon_sym_signed] = ACTIONS(1986), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1986), - [anon_sym_while] = ACTIONS(1986), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1986), - [anon_sym_L_SQUOTE] = ACTIONS(1988), - [anon_sym___attribute__] = ACTIONS(1986), - [anon_sym_sizeof] = ACTIONS(1986), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_union] = ACTIONS(1986), - [anon_sym_unsigned] = ACTIONS(1986), - [anon_sym_short] = ACTIONS(1986), - [anon_sym_do] = ACTIONS(1986), - [sym_preproc_directive] = ACTIONS(1986), - [anon_sym_AMP] = ACTIONS(1988), - [aux_sym_preproc_if_token1] = ACTIONS(1986), - [anon_sym_TILDE] = ACTIONS(1988), - [anon_sym_L_DQUOTE] = ACTIONS(1988), - [anon_sym_LPAREN2] = ACTIONS(1988), - [anon_sym_RBRACE] = ACTIONS(1988), - [anon_sym_else] = ACTIONS(1986), - [sym_primitive_type] = ACTIONS(1986), - [anon_sym_for] = ACTIONS(1986), - [anon_sym_break] = ACTIONS(1986), - [anon_sym_BANG] = ACTIONS(1988), - [aux_sym_preproc_include_token1] = ACTIONS(1986), - [anon_sym_DASH] = ACTIONS(1986), - [anon_sym_static] = ACTIONS(1986), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_register] = ACTIONS(1986), - [anon_sym_STAR] = ACTIONS(1988), - [anon_sym_if] = ACTIONS(1986), - [anon_sym_switch] = ACTIONS(1986), - [anon_sym_enum] = ACTIONS(1986), - [sym_false] = ACTIONS(1986), - [anon_sym_return] = ACTIONS(1986), - [anon_sym_continue] = ACTIONS(1986), - [anon_sym_SEMI] = ACTIONS(1988), - [aux_sym_preproc_def_token1] = ACTIONS(1986), - [anon_sym_PLUS] = ACTIONS(1986), - [anon_sym_auto] = ACTIONS(1986), - [anon_sym_inline] = ACTIONS(1986), + [sym__expression] = STATE(471), + [sym_conditional_expression] = STATE(471), + [sym_assignment_expression] = STATE(471), + [sym_pointer_expression] = STATE(471), + [sym_unary_expression] = STATE(471), + [sym_binary_expression] = STATE(471), + [sym_update_expression] = STATE(471), + [sym_cast_expression] = STATE(471), + [sym_sizeof_expression] = STATE(471), + [sym_subscript_expression] = STATE(471), + [sym_call_expression] = STATE(471), + [sym_field_expression] = STATE(471), + [sym_compound_literal_expression] = STATE(471), + [sym_parenthesized_expression] = STATE(471), + [sym_char_literal] = STATE(471), + [sym_concatenated_string] = STATE(471), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(2027), + [anon_sym_LPAREN2] = ACTIONS(729), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_TILDE] = ACTIONS(739), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH_DASH] = ACTIONS(741), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_sizeof] = ACTIONS(743), + [sym_number_literal] = ACTIONS(2025), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(2027), + [sym_false] = ACTIONS(2027), + [sym_null] = ACTIONS(2027), + [sym_comment] = ACTIONS(3), }, [609] = { - [sym_true] = ACTIONS(1990), - [anon_sym_restrict] = ACTIONS(1990), - [sym_null] = ACTIONS(1990), - [anon_sym_goto] = ACTIONS(1990), - [anon_sym_const] = ACTIONS(1990), - [anon_sym_typedef] = ACTIONS(1990), - [anon_sym_DASH_DASH] = ACTIONS(1992), - [anon_sym__Atomic] = ACTIONS(1990), - [sym_identifier] = ACTIONS(1990), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1990), - [sym_number_literal] = ACTIONS(1992), - [anon_sym_volatile] = ACTIONS(1990), - [anon_sym_SQUOTE] = ACTIONS(1992), - [anon_sym_extern] = ACTIONS(1990), - [anon_sym_PLUS_PLUS] = ACTIONS(1992), - [anon_sym_struct] = ACTIONS(1990), - [anon_sym_signed] = ACTIONS(1990), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1990), - [anon_sym_while] = ACTIONS(1990), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1990), - [anon_sym_L_SQUOTE] = ACTIONS(1992), - [anon_sym___attribute__] = ACTIONS(1990), - [anon_sym_sizeof] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1992), - [anon_sym_union] = ACTIONS(1990), - [anon_sym_unsigned] = ACTIONS(1990), - [anon_sym_short] = ACTIONS(1990), - [anon_sym_do] = ACTIONS(1990), - [sym_preproc_directive] = ACTIONS(1990), - [anon_sym_AMP] = ACTIONS(1992), - [aux_sym_preproc_if_token1] = ACTIONS(1990), - [anon_sym_TILDE] = ACTIONS(1992), - [anon_sym_L_DQUOTE] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(1992), - [anon_sym_RBRACE] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(1990), - [sym_primitive_type] = ACTIONS(1990), - [anon_sym_for] = ACTIONS(1990), - [anon_sym_break] = ACTIONS(1990), - [anon_sym_BANG] = ACTIONS(1992), - [aux_sym_preproc_include_token1] = ACTIONS(1990), - [anon_sym_DASH] = ACTIONS(1990), - [anon_sym_static] = ACTIONS(1990), - [anon_sym_DQUOTE] = ACTIONS(1992), - [anon_sym_register] = ACTIONS(1990), - [anon_sym_STAR] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1990), - [anon_sym_switch] = ACTIONS(1990), - [anon_sym_enum] = ACTIONS(1990), - [sym_false] = ACTIONS(1990), - [anon_sym_return] = ACTIONS(1990), - [anon_sym_continue] = ACTIONS(1990), - [anon_sym_SEMI] = ACTIONS(1992), - [aux_sym_preproc_def_token1] = ACTIONS(1990), - [anon_sym_PLUS] = ACTIONS(1990), - [anon_sym_auto] = ACTIONS(1990), - [anon_sym_inline] = ACTIONS(1990), + [sym__expression] = STATE(747), + [sym_conditional_expression] = STATE(747), + [sym_assignment_expression] = STATE(747), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(747), + [sym_binary_expression] = STATE(747), + [sym_update_expression] = STATE(747), + [sym_cast_expression] = STATE(747), + [sym_sizeof_expression] = STATE(747), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(747), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(747), + [sym_concatenated_string] = STATE(747), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(2137), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(2139), + [sym_false] = ACTIONS(2139), + [sym_null] = ACTIONS(2139), + [sym_comment] = ACTIONS(3), }, [610] = { - [sym_if_statement] = STATE(617), - [sym_do_statement] = STATE(617), - [sym_for_statement] = STATE(617), - [sym__expression] = STATE(867), - [sym_comma_expression] = STATE(868), - [sym_binary_expression] = STATE(867), - [sym_update_expression] = STATE(867), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(617), - [sym_return_statement] = STATE(617), - [sym_break_statement] = STATE(617), - [sym_conditional_expression] = STATE(867), - [sym_assignment_expression] = STATE(867), - [sym_cast_expression] = STATE(867), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(867), - [sym_char_literal] = STATE(867), - [sym_labeled_statement] = STATE(617), - [sym_while_statement] = STATE(617), - [sym_continue_statement] = STATE(617), - [sym_goto_statement] = STATE(617), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(867), - [sym_sizeof_expression] = STATE(867), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(867), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(617), - [sym_expression_statement] = STATE(617), - [anon_sym_LBRACE] = ACTIONS(97), - [sym_true] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [anon_sym_do] = ACTIONS(99), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(2139), - [anon_sym_for] = ACTIONS(109), - [anon_sym_break] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(115), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(117), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(81), - [anon_sym_return] = ACTIONS(119), - [anon_sym_while] = ACTIONS(95), - [anon_sym_continue] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym__expression] = STATE(649), + [sym_conditional_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(649), + [sym_binary_expression] = STATE(649), + [sym_update_expression] = STATE(649), + [sym_cast_expression] = STATE(649), + [sym_sizeof_expression] = STATE(649), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(649), + [sym_concatenated_string] = STATE(649), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(2141), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(2143), + [sym_false] = ACTIONS(2143), + [sym_null] = ACTIONS(2143), + [sym_comment] = ACTIONS(3), }, [611] = { - [sym_true] = ACTIONS(1994), - [anon_sym_restrict] = ACTIONS(1994), - [sym_null] = ACTIONS(1994), - [anon_sym_goto] = ACTIONS(1994), - [anon_sym_const] = ACTIONS(1994), - [anon_sym_typedef] = ACTIONS(1994), - [anon_sym_DASH_DASH] = ACTIONS(1996), - [anon_sym__Atomic] = ACTIONS(1994), - [sym_identifier] = ACTIONS(1994), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1994), - [sym_number_literal] = ACTIONS(1996), - [anon_sym_volatile] = ACTIONS(1994), - [anon_sym_SQUOTE] = ACTIONS(1996), - [anon_sym_extern] = ACTIONS(1994), - [anon_sym_PLUS_PLUS] = ACTIONS(1996), - [anon_sym_struct] = ACTIONS(1994), - [anon_sym_signed] = ACTIONS(1994), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1994), - [anon_sym_while] = ACTIONS(1994), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1994), - [anon_sym_L_SQUOTE] = ACTIONS(1996), - [anon_sym___attribute__] = ACTIONS(1994), - [anon_sym_sizeof] = ACTIONS(1994), - [anon_sym_LBRACE] = ACTIONS(1996), - [anon_sym_union] = ACTIONS(1994), - [anon_sym_unsigned] = ACTIONS(1994), - [anon_sym_short] = ACTIONS(1994), - [anon_sym_do] = ACTIONS(1994), - [sym_preproc_directive] = ACTIONS(1994), - [anon_sym_AMP] = ACTIONS(1996), - [aux_sym_preproc_if_token1] = ACTIONS(1994), - [anon_sym_TILDE] = ACTIONS(1996), - [anon_sym_L_DQUOTE] = ACTIONS(1996), - [anon_sym_LPAREN2] = ACTIONS(1996), - [anon_sym_RBRACE] = ACTIONS(1996), - [anon_sym_else] = ACTIONS(1994), - [sym_primitive_type] = ACTIONS(1994), - [anon_sym_for] = ACTIONS(1994), - [anon_sym_break] = ACTIONS(1994), - [anon_sym_BANG] = ACTIONS(1996), - [aux_sym_preproc_include_token1] = ACTIONS(1994), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_static] = ACTIONS(1994), - [anon_sym_DQUOTE] = ACTIONS(1996), - [anon_sym_register] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(1996), - [anon_sym_if] = ACTIONS(1994), - [anon_sym_switch] = ACTIONS(1994), - [anon_sym_enum] = ACTIONS(1994), - [sym_false] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1994), - [anon_sym_continue] = ACTIONS(1994), - [anon_sym_SEMI] = ACTIONS(1996), - [aux_sym_preproc_def_token1] = ACTIONS(1994), - [anon_sym_PLUS] = ACTIONS(1994), - [anon_sym_auto] = ACTIONS(1994), - [anon_sym_inline] = ACTIONS(1994), + [sym__expression] = STATE(458), + [sym_conditional_expression] = STATE(458), + [sym_assignment_expression] = STATE(458), + [sym_pointer_expression] = STATE(458), + [sym_unary_expression] = STATE(458), + [sym_binary_expression] = STATE(458), + [sym_update_expression] = STATE(458), + [sym_cast_expression] = STATE(458), + [sym_sizeof_expression] = STATE(458), + [sym_subscript_expression] = STATE(458), + [sym_call_expression] = STATE(458), + [sym_field_expression] = STATE(458), + [sym_compound_literal_expression] = STATE(458), + [sym_parenthesized_expression] = STATE(458), + [sym_char_literal] = STATE(458), + [sym_concatenated_string] = STATE(458), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(2039), + [anon_sym_LPAREN2] = ACTIONS(729), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_TILDE] = ACTIONS(739), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH_DASH] = ACTIONS(741), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_sizeof] = ACTIONS(743), + [sym_number_literal] = ACTIONS(2037), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(2039), + [sym_false] = ACTIONS(2039), + [sym_null] = ACTIONS(2039), + [sym_comment] = ACTIONS(3), }, [612] = { - [sym_if_statement] = STATE(618), - [sym_do_statement] = STATE(618), - [sym_for_statement] = STATE(618), - [sym__expression] = STATE(867), - [sym_comma_expression] = STATE(868), - [sym_binary_expression] = STATE(867), - [sym_update_expression] = STATE(867), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(618), - [sym_return_statement] = STATE(618), - [sym_break_statement] = STATE(618), - [sym_conditional_expression] = STATE(867), - [sym_assignment_expression] = STATE(867), - [sym_cast_expression] = STATE(867), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(867), - [sym_char_literal] = STATE(867), - [sym_labeled_statement] = STATE(618), - [sym_while_statement] = STATE(618), - [sym_continue_statement] = STATE(618), - [sym_goto_statement] = STATE(618), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(867), - [sym_sizeof_expression] = STATE(867), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(867), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(618), - [sym_expression_statement] = STATE(618), - [anon_sym_LBRACE] = ACTIONS(97), - [sym_true] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [anon_sym_do] = ACTIONS(99), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(2139), - [anon_sym_for] = ACTIONS(109), - [anon_sym_break] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(115), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(117), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(81), - [anon_sym_return] = ACTIONS(119), - [anon_sym_while] = ACTIONS(95), - [anon_sym_continue] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym__expression] = STATE(654), + [sym_conditional_expression] = STATE(654), + [sym_assignment_expression] = STATE(654), + [sym_pointer_expression] = STATE(484), + [sym_unary_expression] = STATE(654), + [sym_binary_expression] = STATE(654), + [sym_update_expression] = STATE(654), + [sym_cast_expression] = STATE(654), + [sym_sizeof_expression] = STATE(654), + [sym_subscript_expression] = STATE(484), + [sym_call_expression] = STATE(484), + [sym_field_expression] = STATE(484), + [sym_compound_literal_expression] = STATE(654), + [sym_parenthesized_expression] = STATE(484), + [sym_char_literal] = STATE(654), + [sym_concatenated_string] = STATE(654), + [sym_string_literal] = STATE(431), + [sym_identifier] = ACTIONS(911), + [anon_sym_LPAREN2] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_sizeof] = ACTIONS(71), + [sym_number_literal] = ACTIONS(2145), + [anon_sym_L_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_L_DQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(77), + [sym_true] = ACTIONS(2147), + [sym_false] = ACTIONS(2147), + [sym_null] = ACTIONS(2147), + [sym_comment] = ACTIONS(3), }, [613] = { - [sym_if_statement] = STATE(619), - [sym_do_statement] = STATE(619), - [sym_for_statement] = STATE(619), - [sym__expression] = STATE(867), - [sym_comma_expression] = STATE(868), - [sym_binary_expression] = STATE(867), - [sym_update_expression] = STATE(867), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(619), - [sym_return_statement] = STATE(619), - [sym_break_statement] = STATE(619), - [sym_conditional_expression] = STATE(867), - [sym_assignment_expression] = STATE(867), - [sym_cast_expression] = STATE(867), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(867), - [sym_char_literal] = STATE(867), - [sym_labeled_statement] = STATE(619), - [sym_while_statement] = STATE(619), - [sym_continue_statement] = STATE(619), - [sym_goto_statement] = STATE(619), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(867), - [sym_sizeof_expression] = STATE(867), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(867), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(619), - [sym_expression_statement] = STATE(619), - [anon_sym_LBRACE] = ACTIONS(97), - [sym_true] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [anon_sym_do] = ACTIONS(99), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(2139), - [anon_sym_for] = ACTIONS(109), - [anon_sym_break] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(115), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(117), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(81), - [anon_sym_return] = ACTIONS(119), - [anon_sym_while] = ACTIONS(95), - [anon_sym_continue] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_function_definition] = STATE(378), + [sym_declaration] = STATE(378), + [sym__declaration_specifiers] = STATE(903), + [sym_attribute_specifier] = STATE(661), + [sym_declaration_list] = STATE(378), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(835), + [sym_sized_type_specifier] = STATE(835), + [sym_enum_specifier] = STATE(835), + [sym_struct_specifier] = STATE(835), + [sym_union_specifier] = STATE(835), + [sym_macro_type_specifier] = STATE(835), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(1209), + [anon_sym_extern] = ACTIONS(33), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(2149), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(709), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [sym_comment] = ACTIONS(3), }, [614] = { - [sym_true] = ACTIONS(2000), - [anon_sym_restrict] = ACTIONS(2000), - [sym_null] = ACTIONS(2000), - [anon_sym_goto] = ACTIONS(2000), - [anon_sym_const] = ACTIONS(2000), - [anon_sym_typedef] = ACTIONS(2000), - [anon_sym_DASH_DASH] = ACTIONS(2002), - [anon_sym__Atomic] = ACTIONS(2000), - [sym_identifier] = ACTIONS(2000), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2000), - [sym_number_literal] = ACTIONS(2002), - [anon_sym_volatile] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2002), - [anon_sym_extern] = ACTIONS(2000), - [anon_sym_PLUS_PLUS] = ACTIONS(2002), - [anon_sym_struct] = ACTIONS(2000), - [anon_sym_signed] = ACTIONS(2000), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(2000), - [anon_sym_while] = ACTIONS(2000), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2000), - [anon_sym_L_SQUOTE] = ACTIONS(2002), - [anon_sym___attribute__] = ACTIONS(2000), - [anon_sym_sizeof] = ACTIONS(2000), - [anon_sym_LBRACE] = ACTIONS(2002), - [anon_sym_union] = ACTIONS(2000), - [anon_sym_unsigned] = ACTIONS(2000), - [anon_sym_short] = ACTIONS(2000), - [anon_sym_do] = ACTIONS(2000), - [sym_preproc_directive] = ACTIONS(2000), - [anon_sym_AMP] = ACTIONS(2002), - [aux_sym_preproc_if_token1] = ACTIONS(2000), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_L_DQUOTE] = ACTIONS(2002), - [anon_sym_LPAREN2] = ACTIONS(2002), - [anon_sym_RBRACE] = ACTIONS(2002), - [anon_sym_else] = ACTIONS(2000), - [sym_primitive_type] = ACTIONS(2000), - [anon_sym_for] = ACTIONS(2000), - [anon_sym_break] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [aux_sym_preproc_include_token1] = ACTIONS(2000), - [anon_sym_DASH] = ACTIONS(2000), - [anon_sym_static] = ACTIONS(2000), - [anon_sym_DQUOTE] = ACTIONS(2002), - [anon_sym_register] = ACTIONS(2000), - [anon_sym_STAR] = ACTIONS(2002), - [anon_sym_if] = ACTIONS(2000), - [anon_sym_switch] = ACTIONS(2000), - [anon_sym_enum] = ACTIONS(2000), - [sym_false] = ACTIONS(2000), - [anon_sym_return] = ACTIONS(2000), - [anon_sym_continue] = ACTIONS(2000), - [anon_sym_SEMI] = ACTIONS(2002), - [aux_sym_preproc_def_token1] = ACTIONS(2000), - [anon_sym_PLUS] = ACTIONS(2000), - [anon_sym_auto] = ACTIONS(2000), - [anon_sym_inline] = ACTIONS(2000), + [sym_function_definition] = STATE(379), + [sym_declaration] = STATE(379), + [sym__declaration_specifiers] = STATE(899), + [sym_attribute_specifier] = STATE(661), + [sym_declaration_list] = STATE(379), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(835), + [sym_sized_type_specifier] = STATE(835), + [sym_enum_specifier] = STATE(835), + [sym_struct_specifier] = STATE(835), + [sym_union_specifier] = STATE(835), + [sym_macro_type_specifier] = STATE(835), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(1209), + [anon_sym_extern] = ACTIONS(33), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(2151), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(709), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [sym_comment] = ACTIONS(3), }, [615] = { - [sym_true] = ACTIONS(2004), - [anon_sym_restrict] = ACTIONS(2004), - [sym_null] = ACTIONS(2004), - [anon_sym_goto] = ACTIONS(2004), - [anon_sym_const] = ACTIONS(2004), - [anon_sym_typedef] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2006), - [anon_sym__Atomic] = ACTIONS(2004), - [sym_identifier] = ACTIONS(2004), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2004), - [sym_number_literal] = ACTIONS(2006), - [anon_sym_volatile] = ACTIONS(2004), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_extern] = ACTIONS(2004), - [anon_sym_PLUS_PLUS] = ACTIONS(2006), - [anon_sym_struct] = ACTIONS(2004), - [anon_sym_signed] = ACTIONS(2004), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(2004), - [anon_sym_while] = ACTIONS(2004), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym___attribute__] = ACTIONS(2004), - [anon_sym_sizeof] = ACTIONS(2004), - [anon_sym_LBRACE] = ACTIONS(2006), - [anon_sym_union] = ACTIONS(2004), - [anon_sym_unsigned] = ACTIONS(2004), - [anon_sym_short] = ACTIONS(2004), - [anon_sym_do] = ACTIONS(2004), - [sym_preproc_directive] = ACTIONS(2004), - [anon_sym_AMP] = ACTIONS(2006), - [aux_sym_preproc_if_token1] = ACTIONS(2004), - [anon_sym_TILDE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2006), - [anon_sym_LPAREN2] = ACTIONS(2006), - [anon_sym_RBRACE] = ACTIONS(2006), - [anon_sym_else] = ACTIONS(2004), - [sym_primitive_type] = ACTIONS(2004), - [anon_sym_for] = ACTIONS(2004), - [anon_sym_break] = ACTIONS(2004), - [anon_sym_BANG] = ACTIONS(2006), - [aux_sym_preproc_include_token1] = ACTIONS(2004), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_static] = ACTIONS(2004), - [anon_sym_DQUOTE] = ACTIONS(2006), - [anon_sym_register] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_if] = ACTIONS(2004), - [anon_sym_switch] = ACTIONS(2004), - [anon_sym_enum] = ACTIONS(2004), - [sym_false] = ACTIONS(2004), - [anon_sym_return] = ACTIONS(2004), - [anon_sym_continue] = ACTIONS(2004), - [anon_sym_SEMI] = ACTIONS(2006), - [aux_sym_preproc_def_token1] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_auto] = ACTIONS(2004), - [anon_sym_inline] = ACTIONS(2004), + [sym_function_definition] = STATE(392), + [sym_declaration] = STATE(392), + [sym__declaration_specifiers] = STATE(906), + [sym_attribute_specifier] = STATE(661), + [sym_declaration_list] = STATE(392), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(835), + [sym_sized_type_specifier] = STATE(835), + [sym_enum_specifier] = STATE(835), + [sym_struct_specifier] = STATE(835), + [sym_union_specifier] = STATE(835), + [sym_macro_type_specifier] = STATE(835), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(1209), + [anon_sym_extern] = ACTIONS(33), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(2153), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(709), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [sym_comment] = ACTIONS(3), }, [616] = { - [sym_if_statement] = STATE(621), - [sym_do_statement] = STATE(621), - [sym_for_statement] = STATE(621), - [sym__expression] = STATE(867), - [sym_comma_expression] = STATE(868), - [sym_binary_expression] = STATE(867), - [sym_update_expression] = STATE(867), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(621), - [sym_return_statement] = STATE(621), - [sym_break_statement] = STATE(621), - [sym_conditional_expression] = STATE(867), - [sym_assignment_expression] = STATE(867), - [sym_cast_expression] = STATE(867), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(867), - [sym_char_literal] = STATE(867), - [sym_labeled_statement] = STATE(621), - [sym_while_statement] = STATE(621), - [sym_continue_statement] = STATE(621), - [sym_goto_statement] = STATE(621), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(867), - [sym_sizeof_expression] = STATE(867), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(867), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(621), - [sym_expression_statement] = STATE(621), - [anon_sym_LBRACE] = ACTIONS(97), - [sym_true] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [anon_sym_do] = ACTIONS(99), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(2139), - [anon_sym_for] = ACTIONS(109), - [anon_sym_break] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(115), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(117), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(81), - [anon_sym_return] = ACTIONS(119), - [anon_sym_while] = ACTIONS(95), - [anon_sym_continue] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_function_definition] = STATE(241), + [sym_declaration] = STATE(241), + [sym__declaration_specifiers] = STATE(895), + [sym_attribute_specifier] = STATE(661), + [sym_declaration_list] = STATE(241), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(835), + [sym_sized_type_specifier] = STATE(835), + [sym_enum_specifier] = STATE(835), + [sym_struct_specifier] = STATE(835), + [sym_union_specifier] = STATE(835), + [sym_macro_type_specifier] = STATE(835), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(1209), + [anon_sym_extern] = ACTIONS(33), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(2155), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(709), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [sym_comment] = ACTIONS(3), }, [617] = { - [sym_true] = ACTIONS(2117), - [anon_sym_restrict] = ACTIONS(2117), - [sym_null] = ACTIONS(2117), - [anon_sym_goto] = ACTIONS(2117), - [anon_sym_const] = ACTIONS(2117), - [anon_sym_typedef] = ACTIONS(2117), - [anon_sym_DASH_DASH] = ACTIONS(2119), - [anon_sym__Atomic] = ACTIONS(2117), - [sym_identifier] = ACTIONS(2117), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2117), - [sym_number_literal] = ACTIONS(2119), - [anon_sym_volatile] = ACTIONS(2117), - [anon_sym_SQUOTE] = ACTIONS(2119), - [anon_sym_extern] = ACTIONS(2117), - [anon_sym_PLUS_PLUS] = ACTIONS(2119), - [anon_sym_struct] = ACTIONS(2117), - [anon_sym_signed] = ACTIONS(2117), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(2117), - [anon_sym_while] = ACTIONS(2117), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2117), - [anon_sym_L_SQUOTE] = ACTIONS(2119), - [anon_sym___attribute__] = ACTIONS(2117), - [anon_sym_sizeof] = ACTIONS(2117), - [anon_sym_LBRACE] = ACTIONS(2119), - [anon_sym_union] = ACTIONS(2117), - [anon_sym_unsigned] = ACTIONS(2117), - [anon_sym_short] = ACTIONS(2117), - [anon_sym_do] = ACTIONS(2117), - [sym_preproc_directive] = ACTIONS(2117), - [anon_sym_AMP] = ACTIONS(2119), - [aux_sym_preproc_if_token1] = ACTIONS(2117), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_L_DQUOTE] = ACTIONS(2119), - [anon_sym_LPAREN2] = ACTIONS(2119), - [anon_sym_RBRACE] = ACTIONS(2119), - [anon_sym_else] = ACTIONS(2117), - [sym_primitive_type] = ACTIONS(2117), - [anon_sym_for] = ACTIONS(2117), - [anon_sym_break] = ACTIONS(2117), - [anon_sym_BANG] = ACTIONS(2119), - [aux_sym_preproc_include_token1] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), - [anon_sym_static] = ACTIONS(2117), - [anon_sym_DQUOTE] = ACTIONS(2119), - [anon_sym_register] = ACTIONS(2117), - [anon_sym_STAR] = ACTIONS(2119), - [anon_sym_if] = ACTIONS(2117), - [anon_sym_switch] = ACTIONS(2117), - [anon_sym_enum] = ACTIONS(2117), - [sym_false] = ACTIONS(2117), - [anon_sym_return] = ACTIONS(2117), - [anon_sym_continue] = ACTIONS(2117), - [anon_sym_SEMI] = ACTIONS(2119), - [aux_sym_preproc_def_token1] = ACTIONS(2117), - [anon_sym_PLUS] = ACTIONS(2117), - [anon_sym_auto] = ACTIONS(2117), - [anon_sym_inline] = ACTIONS(2117), + [sym__declaration_specifiers] = STATE(873), + [sym_attribute_specifier] = STATE(661), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(835), + [sym_sized_type_specifier] = STATE(835), + [sym_enum_specifier] = STATE(835), + [sym_struct_specifier] = STATE(835), + [sym_union_specifier] = STATE(835), + [sym_parameter_declaration] = STATE(1018), + [sym_macro_type_specifier] = STATE(835), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(1209), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1253), + [anon_sym_RPAREN] = ACTIONS(1255), + [anon_sym_extern] = ACTIONS(33), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(709), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [sym_comment] = ACTIONS(3), }, [618] = { - [sym_true] = ACTIONS(2121), - [anon_sym_restrict] = ACTIONS(2121), - [sym_null] = ACTIONS(2121), - [anon_sym_goto] = ACTIONS(2121), - [anon_sym_const] = ACTIONS(2121), - [anon_sym_typedef] = ACTIONS(2121), - [anon_sym_DASH_DASH] = ACTIONS(2123), - [anon_sym__Atomic] = ACTIONS(2121), - [sym_identifier] = ACTIONS(2121), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2121), - [sym_number_literal] = ACTIONS(2123), - [anon_sym_volatile] = ACTIONS(2121), - [anon_sym_SQUOTE] = ACTIONS(2123), - [anon_sym_extern] = ACTIONS(2121), - [anon_sym_PLUS_PLUS] = ACTIONS(2123), - [anon_sym_struct] = ACTIONS(2121), - [anon_sym_signed] = ACTIONS(2121), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(2121), - [anon_sym_while] = ACTIONS(2121), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2121), - [anon_sym_L_SQUOTE] = ACTIONS(2123), - [anon_sym___attribute__] = ACTIONS(2121), - [anon_sym_sizeof] = ACTIONS(2121), - [anon_sym_LBRACE] = ACTIONS(2123), - [anon_sym_union] = ACTIONS(2121), - [anon_sym_unsigned] = ACTIONS(2121), - [anon_sym_short] = ACTIONS(2121), - [anon_sym_do] = ACTIONS(2121), - [sym_preproc_directive] = ACTIONS(2121), - [anon_sym_AMP] = ACTIONS(2123), - [aux_sym_preproc_if_token1] = ACTIONS(2121), - [anon_sym_TILDE] = ACTIONS(2123), - [anon_sym_L_DQUOTE] = ACTIONS(2123), - [anon_sym_LPAREN2] = ACTIONS(2123), - [anon_sym_RBRACE] = ACTIONS(2123), - [anon_sym_else] = ACTIONS(2121), - [sym_primitive_type] = ACTIONS(2121), - [anon_sym_for] = ACTIONS(2121), - [anon_sym_break] = ACTIONS(2121), - [anon_sym_BANG] = ACTIONS(2123), - [aux_sym_preproc_include_token1] = ACTIONS(2121), - [anon_sym_DASH] = ACTIONS(2121), - [anon_sym_static] = ACTIONS(2121), - [anon_sym_DQUOTE] = ACTIONS(2123), - [anon_sym_register] = ACTIONS(2121), - [anon_sym_STAR] = ACTIONS(2123), - [anon_sym_if] = ACTIONS(2121), - [anon_sym_switch] = ACTIONS(2121), - [anon_sym_enum] = ACTIONS(2121), - [sym_false] = ACTIONS(2121), - [anon_sym_return] = ACTIONS(2121), - [anon_sym_continue] = ACTIONS(2121), - [anon_sym_SEMI] = ACTIONS(2123), - [aux_sym_preproc_def_token1] = ACTIONS(2121), - [anon_sym_PLUS] = ACTIONS(2121), - [anon_sym_auto] = ACTIONS(2121), - [anon_sym_inline] = ACTIONS(2121), + [sym_identifier] = ACTIONS(933), + [anon_sym_SEMI] = ACTIONS(931), + [anon_sym_LPAREN2] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(931), + [anon_sym_RBRACE] = ACTIONS(931), + [anon_sym_STAR] = ACTIONS(931), + [anon_sym_if] = ACTIONS(933), + [anon_sym_else] = ACTIONS(933), + [anon_sym_switch] = ACTIONS(933), + [anon_sym_case] = ACTIONS(933), + [anon_sym_default] = ACTIONS(933), + [anon_sym_while] = ACTIONS(933), + [anon_sym_do] = ACTIONS(933), + [anon_sym_for] = ACTIONS(933), + [anon_sym_return] = ACTIONS(933), + [anon_sym_break] = ACTIONS(933), + [anon_sym_continue] = ACTIONS(933), + [anon_sym_goto] = ACTIONS(933), + [anon_sym_AMP] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_TILDE] = ACTIONS(931), + [anon_sym_DASH] = ACTIONS(933), + [anon_sym_PLUS] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_sizeof] = ACTIONS(933), + [sym_number_literal] = ACTIONS(931), + [anon_sym_L_SQUOTE] = ACTIONS(931), + [anon_sym_SQUOTE] = ACTIONS(931), + [anon_sym_L_DQUOTE] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(931), + [sym_true] = ACTIONS(933), + [sym_false] = ACTIONS(933), + [sym_null] = ACTIONS(933), + [sym_comment] = ACTIONS(3), }, [619] = { - [sym_true] = ACTIONS(2125), - [anon_sym_restrict] = ACTIONS(2125), - [sym_null] = ACTIONS(2125), - [anon_sym_goto] = ACTIONS(2125), - [anon_sym_const] = ACTIONS(2125), - [anon_sym_typedef] = ACTIONS(2125), - [anon_sym_DASH_DASH] = ACTIONS(2127), - [anon_sym__Atomic] = ACTIONS(2125), - [sym_identifier] = ACTIONS(2125), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2125), - [sym_number_literal] = ACTIONS(2127), - [anon_sym_volatile] = ACTIONS(2125), - [anon_sym_SQUOTE] = ACTIONS(2127), - [anon_sym_extern] = ACTIONS(2125), - [anon_sym_PLUS_PLUS] = ACTIONS(2127), - [anon_sym_struct] = ACTIONS(2125), - [anon_sym_signed] = ACTIONS(2125), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(2125), - [anon_sym_while] = ACTIONS(2125), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2125), - [anon_sym_L_SQUOTE] = ACTIONS(2127), - [anon_sym___attribute__] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2125), - [anon_sym_LBRACE] = ACTIONS(2127), - [anon_sym_union] = ACTIONS(2125), - [anon_sym_unsigned] = ACTIONS(2125), - [anon_sym_short] = ACTIONS(2125), - [anon_sym_do] = ACTIONS(2125), - [sym_preproc_directive] = ACTIONS(2125), - [anon_sym_AMP] = ACTIONS(2127), - [aux_sym_preproc_if_token1] = ACTIONS(2125), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_L_DQUOTE] = ACTIONS(2127), - [anon_sym_LPAREN2] = ACTIONS(2127), - [anon_sym_RBRACE] = ACTIONS(2127), - [anon_sym_else] = ACTIONS(2125), - [sym_primitive_type] = ACTIONS(2125), - [anon_sym_for] = ACTIONS(2125), - [anon_sym_break] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2127), - [aux_sym_preproc_include_token1] = ACTIONS(2125), - [anon_sym_DASH] = ACTIONS(2125), - [anon_sym_static] = ACTIONS(2125), - [anon_sym_DQUOTE] = ACTIONS(2127), - [anon_sym_register] = ACTIONS(2125), - [anon_sym_STAR] = ACTIONS(2127), - [anon_sym_if] = ACTIONS(2125), - [anon_sym_switch] = ACTIONS(2125), - [anon_sym_enum] = ACTIONS(2125), - [sym_false] = ACTIONS(2125), - [anon_sym_return] = ACTIONS(2125), - [anon_sym_continue] = ACTIONS(2125), - [anon_sym_SEMI] = ACTIONS(2127), - [aux_sym_preproc_def_token1] = ACTIONS(2125), - [anon_sym_PLUS] = ACTIONS(2125), - [anon_sym_auto] = ACTIONS(2125), - [anon_sym_inline] = ACTIONS(2125), + [sym_identifier] = ACTIONS(1039), + [anon_sym_SEMI] = ACTIONS(1037), + [anon_sym_LPAREN2] = ACTIONS(1037), + [anon_sym_LBRACE] = ACTIONS(1037), + [anon_sym_RBRACE] = ACTIONS(1037), + [anon_sym_STAR] = ACTIONS(1037), + [anon_sym_if] = ACTIONS(1039), + [anon_sym_else] = ACTIONS(1039), + [anon_sym_switch] = ACTIONS(1039), + [anon_sym_case] = ACTIONS(1039), + [anon_sym_default] = ACTIONS(1039), + [anon_sym_while] = ACTIONS(1039), + [anon_sym_do] = ACTIONS(1039), + [anon_sym_for] = ACTIONS(1039), + [anon_sym_return] = ACTIONS(1039), + [anon_sym_break] = ACTIONS(1039), + [anon_sym_continue] = ACTIONS(1039), + [anon_sym_goto] = ACTIONS(1039), + [anon_sym_AMP] = ACTIONS(1037), + [anon_sym_BANG] = ACTIONS(1037), + [anon_sym_TILDE] = ACTIONS(1037), + [anon_sym_DASH] = ACTIONS(1039), + [anon_sym_PLUS] = ACTIONS(1039), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_sizeof] = ACTIONS(1039), + [sym_number_literal] = ACTIONS(1037), + [anon_sym_L_SQUOTE] = ACTIONS(1037), + [anon_sym_SQUOTE] = ACTIONS(1037), + [anon_sym_L_DQUOTE] = ACTIONS(1037), + [anon_sym_DQUOTE] = ACTIONS(1037), + [sym_true] = ACTIONS(1039), + [sym_false] = ACTIONS(1039), + [sym_null] = ACTIONS(1039), + [sym_comment] = ACTIONS(3), }, [620] = { - [sym_if_statement] = STATE(622), - [sym_do_statement] = STATE(622), - [sym_for_statement] = STATE(622), - [sym__expression] = STATE(867), - [sym_comma_expression] = STATE(868), - [sym_binary_expression] = STATE(867), - [sym_update_expression] = STATE(867), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(622), - [sym_return_statement] = STATE(622), - [sym_break_statement] = STATE(622), - [sym_conditional_expression] = STATE(867), - [sym_assignment_expression] = STATE(867), - [sym_cast_expression] = STATE(867), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(867), - [sym_char_literal] = STATE(867), - [sym_labeled_statement] = STATE(622), - [sym_while_statement] = STATE(622), - [sym_continue_statement] = STATE(622), - [sym_goto_statement] = STATE(622), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(867), - [sym_sizeof_expression] = STATE(867), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(867), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(622), - [sym_expression_statement] = STATE(622), - [anon_sym_LBRACE] = ACTIONS(97), - [sym_true] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [anon_sym_do] = ACTIONS(99), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(2139), - [anon_sym_for] = ACTIONS(109), - [anon_sym_break] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(115), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(117), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(81), - [anon_sym_return] = ACTIONS(119), - [anon_sym_while] = ACTIONS(95), - [anon_sym_continue] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_identifier] = ACTIONS(1035), + [anon_sym_SEMI] = ACTIONS(1033), + [anon_sym_LPAREN2] = ACTIONS(1033), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_RBRACE] = ACTIONS(1033), + [anon_sym_STAR] = ACTIONS(1033), + [anon_sym_if] = ACTIONS(1035), + [anon_sym_else] = ACTIONS(1035), + [anon_sym_switch] = ACTIONS(1035), + [anon_sym_case] = ACTIONS(1035), + [anon_sym_default] = ACTIONS(1035), + [anon_sym_while] = ACTIONS(1035), + [anon_sym_do] = ACTIONS(1035), + [anon_sym_for] = ACTIONS(1035), + [anon_sym_return] = ACTIONS(1035), + [anon_sym_break] = ACTIONS(1035), + [anon_sym_continue] = ACTIONS(1035), + [anon_sym_goto] = ACTIONS(1035), + [anon_sym_AMP] = ACTIONS(1033), + [anon_sym_BANG] = ACTIONS(1033), + [anon_sym_TILDE] = ACTIONS(1033), + [anon_sym_DASH] = ACTIONS(1035), + [anon_sym_PLUS] = ACTIONS(1035), + [anon_sym_DASH_DASH] = ACTIONS(1033), + [anon_sym_PLUS_PLUS] = ACTIONS(1033), + [anon_sym_sizeof] = ACTIONS(1035), + [sym_number_literal] = ACTIONS(1033), + [anon_sym_L_SQUOTE] = ACTIONS(1033), + [anon_sym_SQUOTE] = ACTIONS(1033), + [anon_sym_L_DQUOTE] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(1033), + [sym_true] = ACTIONS(1035), + [sym_false] = ACTIONS(1035), + [sym_null] = ACTIONS(1035), + [sym_comment] = ACTIONS(3), }, [621] = { - [sym_true] = ACTIONS(2129), - [anon_sym_restrict] = ACTIONS(2129), - [sym_null] = ACTIONS(2129), - [anon_sym_goto] = ACTIONS(2129), - [anon_sym_const] = ACTIONS(2129), - [anon_sym_typedef] = ACTIONS(2129), - [anon_sym_DASH_DASH] = ACTIONS(2131), - [anon_sym__Atomic] = ACTIONS(2129), - [sym_identifier] = ACTIONS(2129), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2129), - [sym_number_literal] = ACTIONS(2131), - [anon_sym_volatile] = ACTIONS(2129), - [anon_sym_SQUOTE] = ACTIONS(2131), - [anon_sym_extern] = ACTIONS(2129), - [anon_sym_PLUS_PLUS] = ACTIONS(2131), - [anon_sym_struct] = ACTIONS(2129), - [anon_sym_signed] = ACTIONS(2129), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(2129), - [anon_sym_while] = ACTIONS(2129), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2129), - [anon_sym_L_SQUOTE] = ACTIONS(2131), - [anon_sym___attribute__] = ACTIONS(2129), - [anon_sym_sizeof] = ACTIONS(2129), - [anon_sym_LBRACE] = ACTIONS(2131), - [anon_sym_union] = ACTIONS(2129), - [anon_sym_unsigned] = ACTIONS(2129), - [anon_sym_short] = ACTIONS(2129), - [anon_sym_do] = ACTIONS(2129), - [sym_preproc_directive] = ACTIONS(2129), - [anon_sym_AMP] = ACTIONS(2131), - [aux_sym_preproc_if_token1] = ACTIONS(2129), - [anon_sym_TILDE] = ACTIONS(2131), - [anon_sym_L_DQUOTE] = ACTIONS(2131), - [anon_sym_LPAREN2] = ACTIONS(2131), - [anon_sym_RBRACE] = ACTIONS(2131), - [anon_sym_else] = ACTIONS(2129), - [sym_primitive_type] = ACTIONS(2129), - [anon_sym_for] = ACTIONS(2129), - [anon_sym_break] = ACTIONS(2129), - [anon_sym_BANG] = ACTIONS(2131), - [aux_sym_preproc_include_token1] = ACTIONS(2129), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_static] = ACTIONS(2129), - [anon_sym_DQUOTE] = ACTIONS(2131), - [anon_sym_register] = ACTIONS(2129), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_if] = ACTIONS(2129), - [anon_sym_switch] = ACTIONS(2129), - [anon_sym_enum] = ACTIONS(2129), - [sym_false] = ACTIONS(2129), - [anon_sym_return] = ACTIONS(2129), - [anon_sym_continue] = ACTIONS(2129), - [anon_sym_SEMI] = ACTIONS(2131), - [aux_sym_preproc_def_token1] = ACTIONS(2129), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_auto] = ACTIONS(2129), - [anon_sym_inline] = ACTIONS(2129), + [sym_identifier] = ACTIONS(985), + [anon_sym_SEMI] = ACTIONS(983), + [anon_sym_LPAREN2] = ACTIONS(983), + [anon_sym_LBRACE] = ACTIONS(983), + [anon_sym_RBRACE] = ACTIONS(983), + [anon_sym_STAR] = ACTIONS(983), + [anon_sym_if] = ACTIONS(985), + [anon_sym_else] = ACTIONS(985), + [anon_sym_switch] = ACTIONS(985), + [anon_sym_case] = ACTIONS(985), + [anon_sym_default] = ACTIONS(985), + [anon_sym_while] = ACTIONS(985), + [anon_sym_do] = ACTIONS(985), + [anon_sym_for] = ACTIONS(985), + [anon_sym_return] = ACTIONS(985), + [anon_sym_break] = ACTIONS(985), + [anon_sym_continue] = ACTIONS(985), + [anon_sym_goto] = ACTIONS(985), + [anon_sym_AMP] = ACTIONS(983), + [anon_sym_BANG] = ACTIONS(983), + [anon_sym_TILDE] = ACTIONS(983), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(985), + [anon_sym_DASH_DASH] = ACTIONS(983), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_sizeof] = ACTIONS(985), + [sym_number_literal] = ACTIONS(983), + [anon_sym_L_SQUOTE] = ACTIONS(983), + [anon_sym_SQUOTE] = ACTIONS(983), + [anon_sym_L_DQUOTE] = ACTIONS(983), + [anon_sym_DQUOTE] = ACTIONS(983), + [sym_true] = ACTIONS(985), + [sym_false] = ACTIONS(985), + [sym_null] = ACTIONS(985), + [sym_comment] = ACTIONS(3), }, [622] = { - [sym_true] = ACTIONS(2133), - [anon_sym_restrict] = ACTIONS(2133), - [sym_null] = ACTIONS(2133), - [anon_sym_goto] = ACTIONS(2133), - [anon_sym_const] = ACTIONS(2133), - [anon_sym_typedef] = ACTIONS(2133), - [anon_sym_DASH_DASH] = ACTIONS(2135), - [anon_sym__Atomic] = ACTIONS(2133), - [sym_identifier] = ACTIONS(2133), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2133), - [sym_number_literal] = ACTIONS(2135), - [anon_sym_volatile] = ACTIONS(2133), - [anon_sym_SQUOTE] = ACTIONS(2135), - [anon_sym_extern] = ACTIONS(2133), - [anon_sym_PLUS_PLUS] = ACTIONS(2135), - [anon_sym_struct] = ACTIONS(2133), - [anon_sym_signed] = ACTIONS(2133), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(2133), - [anon_sym_while] = ACTIONS(2133), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2133), - [anon_sym_L_SQUOTE] = ACTIONS(2135), - [anon_sym___attribute__] = ACTIONS(2133), - [anon_sym_sizeof] = ACTIONS(2133), - [anon_sym_LBRACE] = ACTIONS(2135), - [anon_sym_union] = ACTIONS(2133), - [anon_sym_unsigned] = ACTIONS(2133), - [anon_sym_short] = ACTIONS(2133), - [anon_sym_do] = ACTIONS(2133), - [sym_preproc_directive] = ACTIONS(2133), - [anon_sym_AMP] = ACTIONS(2135), - [aux_sym_preproc_if_token1] = ACTIONS(2133), - [anon_sym_TILDE] = ACTIONS(2135), - [anon_sym_L_DQUOTE] = ACTIONS(2135), - [anon_sym_LPAREN2] = ACTIONS(2135), - [anon_sym_RBRACE] = ACTIONS(2135), - [anon_sym_else] = ACTIONS(2133), - [sym_primitive_type] = ACTIONS(2133), - [anon_sym_for] = ACTIONS(2133), - [anon_sym_break] = ACTIONS(2133), - [anon_sym_BANG] = ACTIONS(2135), - [aux_sym_preproc_include_token1] = ACTIONS(2133), - [anon_sym_DASH] = ACTIONS(2133), - [anon_sym_static] = ACTIONS(2133), - [anon_sym_DQUOTE] = ACTIONS(2135), - [anon_sym_register] = ACTIONS(2133), - [anon_sym_STAR] = ACTIONS(2135), - [anon_sym_if] = ACTIONS(2133), - [anon_sym_switch] = ACTIONS(2133), - [anon_sym_enum] = ACTIONS(2133), - [sym_false] = ACTIONS(2133), - [anon_sym_return] = ACTIONS(2133), - [anon_sym_continue] = ACTIONS(2133), - [anon_sym_SEMI] = ACTIONS(2135), - [aux_sym_preproc_def_token1] = ACTIONS(2133), - [anon_sym_PLUS] = ACTIONS(2133), - [anon_sym_auto] = ACTIONS(2133), - [anon_sym_inline] = ACTIONS(2133), + [sym_identifier] = ACTIONS(989), + [anon_sym_SEMI] = ACTIONS(987), + [anon_sym_LPAREN2] = ACTIONS(987), + [anon_sym_LBRACE] = ACTIONS(987), + [anon_sym_RBRACE] = ACTIONS(987), + [anon_sym_STAR] = ACTIONS(987), + [anon_sym_if] = ACTIONS(989), + [anon_sym_else] = ACTIONS(989), + [anon_sym_switch] = ACTIONS(989), + [anon_sym_case] = ACTIONS(989), + [anon_sym_default] = ACTIONS(989), + [anon_sym_while] = ACTIONS(989), + [anon_sym_do] = ACTIONS(989), + [anon_sym_for] = ACTIONS(989), + [anon_sym_return] = ACTIONS(989), + [anon_sym_break] = ACTIONS(989), + [anon_sym_continue] = ACTIONS(989), + [anon_sym_goto] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(987), + [anon_sym_BANG] = ACTIONS(987), + [anon_sym_TILDE] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(987), + [anon_sym_PLUS_PLUS] = ACTIONS(987), + [anon_sym_sizeof] = ACTIONS(989), + [sym_number_literal] = ACTIONS(987), + [anon_sym_L_SQUOTE] = ACTIONS(987), + [anon_sym_SQUOTE] = ACTIONS(987), + [anon_sym_L_DQUOTE] = ACTIONS(987), + [anon_sym_DQUOTE] = ACTIONS(987), + [sym_true] = ACTIONS(989), + [sym_false] = ACTIONS(989), + [sym_null] = ACTIONS(989), + [sym_comment] = ACTIONS(3), }, [623] = { - [sym_true] = ACTIONS(255), - [anon_sym_restrict] = ACTIONS(255), - [sym_null] = ACTIONS(255), - [anon_sym_goto] = ACTIONS(255), - [aux_sym_preproc_if_token2] = ACTIONS(255), - [anon_sym_const] = ACTIONS(255), - [anon_sym_typedef] = ACTIONS(255), - [anon_sym_DASH_DASH] = ACTIONS(257), - [anon_sym__Atomic] = ACTIONS(255), - [sym_identifier] = ACTIONS(255), - [aux_sym_preproc_ifdef_token1] = ACTIONS(255), - [sym_number_literal] = ACTIONS(257), - [anon_sym_volatile] = ACTIONS(255), - [anon_sym_SQUOTE] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(255), - [anon_sym_PLUS_PLUS] = ACTIONS(257), - [anon_sym_struct] = ACTIONS(255), - [anon_sym_signed] = ACTIONS(255), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(255), - [anon_sym_while] = ACTIONS(255), - [aux_sym_preproc_ifdef_token2] = ACTIONS(255), - [aux_sym_preproc_elif_token1] = ACTIONS(255), - [anon_sym_L_SQUOTE] = ACTIONS(257), - [anon_sym___attribute__] = ACTIONS(255), - [anon_sym_sizeof] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(257), - [anon_sym_union] = ACTIONS(255), - [anon_sym_unsigned] = ACTIONS(255), - [anon_sym_short] = ACTIONS(255), - [anon_sym_do] = ACTIONS(255), - [aux_sym_preproc_else_token1] = ACTIONS(255), - [sym_preproc_directive] = ACTIONS(255), - [anon_sym_AMP] = ACTIONS(257), - [aux_sym_preproc_if_token1] = ACTIONS(255), - [anon_sym_TILDE] = ACTIONS(257), - [anon_sym_L_DQUOTE] = ACTIONS(257), - [anon_sym_LPAREN2] = ACTIONS(257), - [anon_sym_else] = ACTIONS(255), - [sym_primitive_type] = ACTIONS(255), - [anon_sym_for] = ACTIONS(255), - [anon_sym_break] = ACTIONS(255), - [anon_sym_BANG] = ACTIONS(257), - [aux_sym_preproc_include_token1] = ACTIONS(255), - [anon_sym_DASH] = ACTIONS(255), - [anon_sym_static] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(257), - [anon_sym_register] = ACTIONS(255), - [anon_sym_STAR] = ACTIONS(257), - [anon_sym_if] = ACTIONS(255), - [anon_sym_switch] = ACTIONS(255), - [anon_sym_enum] = ACTIONS(255), - [sym_false] = ACTIONS(255), - [anon_sym_return] = ACTIONS(255), - [anon_sym_continue] = ACTIONS(255), - [anon_sym_SEMI] = ACTIONS(257), - [aux_sym_preproc_def_token1] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(255), - [anon_sym_auto] = ACTIONS(255), - [anon_sym_inline] = ACTIONS(255), + [sym_identifier] = ACTIONS(1047), + [anon_sym_SEMI] = ACTIONS(1045), + [anon_sym_LPAREN2] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(1045), + [anon_sym_RBRACE] = ACTIONS(1045), + [anon_sym_STAR] = ACTIONS(1045), + [anon_sym_if] = ACTIONS(1047), + [anon_sym_else] = ACTIONS(1047), + [anon_sym_switch] = ACTIONS(1047), + [anon_sym_case] = ACTIONS(1047), + [anon_sym_default] = ACTIONS(1047), + [anon_sym_while] = ACTIONS(1047), + [anon_sym_do] = ACTIONS(1047), + [anon_sym_for] = ACTIONS(1047), + [anon_sym_return] = ACTIONS(1047), + [anon_sym_break] = ACTIONS(1047), + [anon_sym_continue] = ACTIONS(1047), + [anon_sym_goto] = ACTIONS(1047), + [anon_sym_AMP] = ACTIONS(1045), + [anon_sym_BANG] = ACTIONS(1045), + [anon_sym_TILDE] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1047), + [anon_sym_DASH_DASH] = ACTIONS(1045), + [anon_sym_PLUS_PLUS] = ACTIONS(1045), + [anon_sym_sizeof] = ACTIONS(1047), + [sym_number_literal] = ACTIONS(1045), + [anon_sym_L_SQUOTE] = ACTIONS(1045), + [anon_sym_SQUOTE] = ACTIONS(1045), + [anon_sym_L_DQUOTE] = ACTIONS(1045), + [anon_sym_DQUOTE] = ACTIONS(1045), + [sym_true] = ACTIONS(1047), + [sym_false] = ACTIONS(1047), + [sym_null] = ACTIONS(1047), + [sym_comment] = ACTIONS(3), }, [624] = { - [sym_true] = ACTIONS(336), - [anon_sym_restrict] = ACTIONS(336), - [sym_null] = ACTIONS(336), - [anon_sym_goto] = ACTIONS(336), - [aux_sym_preproc_if_token2] = ACTIONS(336), - [anon_sym_const] = ACTIONS(336), - [anon_sym_typedef] = ACTIONS(336), - [anon_sym_DASH_DASH] = ACTIONS(338), - [anon_sym__Atomic] = ACTIONS(336), - [sym_identifier] = ACTIONS(336), - [aux_sym_preproc_ifdef_token1] = ACTIONS(336), - [sym_number_literal] = ACTIONS(338), - [anon_sym_volatile] = ACTIONS(336), - [anon_sym_SQUOTE] = ACTIONS(338), - [anon_sym_extern] = ACTIONS(336), - [anon_sym_PLUS_PLUS] = ACTIONS(338), - [anon_sym_struct] = ACTIONS(336), - [anon_sym_signed] = ACTIONS(336), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(336), - [anon_sym_while] = ACTIONS(336), - [aux_sym_preproc_ifdef_token2] = ACTIONS(336), - [aux_sym_preproc_elif_token1] = ACTIONS(336), - [anon_sym_L_SQUOTE] = ACTIONS(338), - [anon_sym___attribute__] = ACTIONS(336), - [anon_sym_sizeof] = ACTIONS(336), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_union] = ACTIONS(336), - [anon_sym_unsigned] = ACTIONS(336), - [anon_sym_short] = ACTIONS(336), - [anon_sym_do] = ACTIONS(336), - [aux_sym_preproc_else_token1] = ACTIONS(336), - [sym_preproc_directive] = ACTIONS(336), - [anon_sym_AMP] = ACTIONS(338), - [aux_sym_preproc_if_token1] = ACTIONS(336), - [anon_sym_TILDE] = ACTIONS(338), - [anon_sym_L_DQUOTE] = ACTIONS(338), - [anon_sym_LPAREN2] = ACTIONS(338), - [anon_sym_else] = ACTIONS(336), - [sym_primitive_type] = ACTIONS(336), - [anon_sym_for] = ACTIONS(336), - [anon_sym_break] = ACTIONS(336), - [anon_sym_BANG] = ACTIONS(338), - [aux_sym_preproc_include_token1] = ACTIONS(336), - [anon_sym_DASH] = ACTIONS(336), - [anon_sym_static] = ACTIONS(336), - [anon_sym_DQUOTE] = ACTIONS(338), - [anon_sym_register] = ACTIONS(336), - [anon_sym_STAR] = ACTIONS(338), - [anon_sym_if] = ACTIONS(336), - [anon_sym_switch] = ACTIONS(336), - [anon_sym_enum] = ACTIONS(336), - [sym_false] = ACTIONS(336), - [anon_sym_return] = ACTIONS(336), - [anon_sym_continue] = ACTIONS(336), - [anon_sym_SEMI] = ACTIONS(338), - [aux_sym_preproc_def_token1] = ACTIONS(336), - [anon_sym_PLUS] = ACTIONS(336), - [anon_sym_auto] = ACTIONS(336), - [anon_sym_inline] = ACTIONS(336), + [sym_identifier] = ACTIONS(915), + [anon_sym_SEMI] = ACTIONS(913), + [anon_sym_LPAREN2] = ACTIONS(913), + [anon_sym_LBRACE] = ACTIONS(913), + [anon_sym_RBRACE] = ACTIONS(913), + [anon_sym_STAR] = ACTIONS(913), + [anon_sym_if] = ACTIONS(915), + [anon_sym_else] = ACTIONS(915), + [anon_sym_switch] = ACTIONS(915), + [anon_sym_case] = ACTIONS(915), + [anon_sym_default] = ACTIONS(915), + [anon_sym_while] = ACTIONS(915), + [anon_sym_do] = ACTIONS(915), + [anon_sym_for] = ACTIONS(915), + [anon_sym_return] = ACTIONS(915), + [anon_sym_break] = ACTIONS(915), + [anon_sym_continue] = ACTIONS(915), + [anon_sym_goto] = ACTIONS(915), + [anon_sym_AMP] = ACTIONS(913), + [anon_sym_BANG] = ACTIONS(913), + [anon_sym_TILDE] = ACTIONS(913), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_PLUS] = ACTIONS(915), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_sizeof] = ACTIONS(915), + [sym_number_literal] = ACTIONS(913), + [anon_sym_L_SQUOTE] = ACTIONS(913), + [anon_sym_SQUOTE] = ACTIONS(913), + [anon_sym_L_DQUOTE] = ACTIONS(913), + [anon_sym_DQUOTE] = ACTIONS(913), + [sym_true] = ACTIONS(915), + [sym_false] = ACTIONS(915), + [sym_null] = ACTIONS(915), + [sym_comment] = ACTIONS(3), }, [625] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(368), - [anon_sym_union] = ACTIONS(368), - [anon_sym_unsigned] = ACTIONS(368), - [anon_sym_restrict] = ACTIONS(368), - [anon_sym_short] = ACTIONS(368), - [anon_sym_static] = ACTIONS(368), - [anon_sym_volatile] = ACTIONS(368), - [anon_sym_register] = ACTIONS(368), - [anon_sym_extern] = ACTIONS(368), - [anon_sym_struct] = ACTIONS(368), - [sym_preproc_directive] = ACTIONS(368), - [anon_sym_signed] = ACTIONS(368), - [aux_sym_preproc_if_token1] = ACTIONS(368), - [anon_sym_long] = ACTIONS(368), - [anon_sym_enum] = ACTIONS(368), - [anon_sym_const] = ACTIONS(368), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(370), - [aux_sym_preproc_ifdef_token2] = ACTIONS(368), - [aux_sym_preproc_def_token1] = ACTIONS(368), - [anon_sym__Atomic] = ACTIONS(368), - [anon_sym_auto] = ACTIONS(368), - [sym_primitive_type] = ACTIONS(368), - [anon_sym_inline] = ACTIONS(368), - [anon_sym___attribute__] = ACTIONS(368), - [sym_identifier] = ACTIONS(368), + [sym_identifier] = ACTIONS(941), + [anon_sym_SEMI] = ACTIONS(939), + [anon_sym_LPAREN2] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(939), + [anon_sym_RBRACE] = ACTIONS(939), + [anon_sym_STAR] = ACTIONS(939), + [anon_sym_if] = ACTIONS(941), + [anon_sym_else] = ACTIONS(941), + [anon_sym_switch] = ACTIONS(941), + [anon_sym_case] = ACTIONS(941), + [anon_sym_default] = ACTIONS(941), + [anon_sym_while] = ACTIONS(941), + [anon_sym_do] = ACTIONS(941), + [anon_sym_for] = ACTIONS(941), + [anon_sym_return] = ACTIONS(941), + [anon_sym_break] = ACTIONS(941), + [anon_sym_continue] = ACTIONS(941), + [anon_sym_goto] = ACTIONS(941), + [anon_sym_AMP] = ACTIONS(939), + [anon_sym_BANG] = ACTIONS(939), + [anon_sym_TILDE] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(941), + [anon_sym_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(939), + [anon_sym_sizeof] = ACTIONS(941), + [sym_number_literal] = ACTIONS(939), + [anon_sym_L_SQUOTE] = ACTIONS(939), + [anon_sym_SQUOTE] = ACTIONS(939), + [anon_sym_L_DQUOTE] = ACTIONS(939), + [anon_sym_DQUOTE] = ACTIONS(939), + [sym_true] = ACTIONS(941), + [sym_false] = ACTIONS(941), + [sym_null] = ACTIONS(941), + [sym_comment] = ACTIONS(3), }, [626] = { - [sym_true] = ACTIONS(465), - [anon_sym_restrict] = ACTIONS(465), - [sym_null] = ACTIONS(465), - [anon_sym_goto] = ACTIONS(465), - [anon_sym_const] = ACTIONS(465), - [anon_sym_typedef] = ACTIONS(465), - [anon_sym_DASH_DASH] = ACTIONS(467), - [anon_sym__Atomic] = ACTIONS(465), - [sym_identifier] = ACTIONS(465), - [aux_sym_preproc_ifdef_token1] = ACTIONS(465), - [sym_number_literal] = ACTIONS(467), - [anon_sym_volatile] = ACTIONS(465), - [anon_sym_SQUOTE] = ACTIONS(467), - [anon_sym_extern] = ACTIONS(465), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_struct] = ACTIONS(465), - [anon_sym_signed] = ACTIONS(465), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(465), - [anon_sym_while] = ACTIONS(465), - [aux_sym_preproc_ifdef_token2] = ACTIONS(465), - [anon_sym_L_SQUOTE] = ACTIONS(467), - [anon_sym___attribute__] = ACTIONS(465), - [anon_sym_sizeof] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(467), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsigned] = ACTIONS(465), - [anon_sym_short] = ACTIONS(465), - [anon_sym_do] = ACTIONS(465), - [sym_preproc_directive] = ACTIONS(465), - [anon_sym_AMP] = ACTIONS(467), - [aux_sym_preproc_if_token1] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(467), - [anon_sym_L_DQUOTE] = ACTIONS(467), - [anon_sym_LPAREN2] = ACTIONS(467), - [anon_sym_RBRACE] = ACTIONS(467), - [sym_primitive_type] = ACTIONS(465), - [anon_sym_for] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_BANG] = ACTIONS(467), - [aux_sym_preproc_include_token1] = ACTIONS(465), - [anon_sym_DASH] = ACTIONS(465), - [anon_sym_static] = ACTIONS(465), - [anon_sym_DQUOTE] = ACTIONS(467), - [anon_sym_register] = ACTIONS(465), - [anon_sym_STAR] = ACTIONS(467), - [anon_sym_if] = ACTIONS(465), - [anon_sym_switch] = ACTIONS(465), - [anon_sym_enum] = ACTIONS(465), - [sym_false] = ACTIONS(465), - [anon_sym_return] = ACTIONS(465), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_SEMI] = ACTIONS(467), - [aux_sym_preproc_def_token1] = ACTIONS(465), - [anon_sym_PLUS] = ACTIONS(465), - [anon_sym_auto] = ACTIONS(465), - [anon_sym_inline] = ACTIONS(465), + [sym_identifier] = ACTIONS(1017), + [anon_sym_SEMI] = ACTIONS(1015), + [anon_sym_LPAREN2] = ACTIONS(1015), + [anon_sym_LBRACE] = ACTIONS(1015), + [anon_sym_RBRACE] = ACTIONS(1015), + [anon_sym_STAR] = ACTIONS(1015), + [anon_sym_if] = ACTIONS(1017), + [anon_sym_else] = ACTIONS(1017), + [anon_sym_switch] = ACTIONS(1017), + [anon_sym_case] = ACTIONS(1017), + [anon_sym_default] = ACTIONS(1017), + [anon_sym_while] = ACTIONS(1017), + [anon_sym_do] = ACTIONS(1017), + [anon_sym_for] = ACTIONS(1017), + [anon_sym_return] = ACTIONS(1017), + [anon_sym_break] = ACTIONS(1017), + [anon_sym_continue] = ACTIONS(1017), + [anon_sym_goto] = ACTIONS(1017), + [anon_sym_AMP] = ACTIONS(1015), + [anon_sym_BANG] = ACTIONS(1015), + [anon_sym_TILDE] = ACTIONS(1015), + [anon_sym_DASH] = ACTIONS(1017), + [anon_sym_PLUS] = ACTIONS(1017), + [anon_sym_DASH_DASH] = ACTIONS(1015), + [anon_sym_PLUS_PLUS] = ACTIONS(1015), + [anon_sym_sizeof] = ACTIONS(1017), + [sym_number_literal] = ACTIONS(1015), + [anon_sym_L_SQUOTE] = ACTIONS(1015), + [anon_sym_SQUOTE] = ACTIONS(1015), + [anon_sym_L_DQUOTE] = ACTIONS(1015), + [anon_sym_DQUOTE] = ACTIONS(1015), + [sym_true] = ACTIONS(1017), + [sym_false] = ACTIONS(1017), + [sym_null] = ACTIONS(1017), + [sym_comment] = ACTIONS(3), }, [627] = { - [sym_if_statement] = STATE(643), - [sym_do_statement] = STATE(643), - [sym_for_statement] = STATE(643), - [sym__expression] = STATE(951), - [sym_comma_expression] = STATE(952), - [sym_binary_expression] = STATE(951), - [sym_update_expression] = STATE(951), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(643), - [sym_return_statement] = STATE(643), - [sym_break_statement] = STATE(643), - [sym_conditional_expression] = STATE(951), - [sym_assignment_expression] = STATE(951), - [sym_cast_expression] = STATE(951), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(951), - [sym_char_literal] = STATE(951), - [sym_labeled_statement] = STATE(643), - [sym_while_statement] = STATE(643), - [sym_continue_statement] = STATE(643), - [sym_goto_statement] = STATE(643), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(951), - [sym_sizeof_expression] = STATE(951), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(951), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(643), - [sym_expression_statement] = STATE(643), - [anon_sym_LBRACE] = ACTIONS(398), - [sym_true] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [anon_sym_do] = ACTIONS(400), - [anon_sym_goto] = ACTIONS(380), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(2291), - [anon_sym_for] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(390), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(416), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(418), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(378), - [anon_sym_return] = ACTIONS(420), - [anon_sym_while] = ACTIONS(394), - [anon_sym_continue] = ACTIONS(422), - [anon_sym_SEMI] = ACTIONS(424), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_identifier] = ACTIONS(1043), + [anon_sym_SEMI] = ACTIONS(1041), + [anon_sym_LPAREN2] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_RBRACE] = ACTIONS(1041), + [anon_sym_STAR] = ACTIONS(1041), + [anon_sym_if] = ACTIONS(1043), + [anon_sym_else] = ACTIONS(1043), + [anon_sym_switch] = ACTIONS(1043), + [anon_sym_case] = ACTIONS(1043), + [anon_sym_default] = ACTIONS(1043), + [anon_sym_while] = ACTIONS(1043), + [anon_sym_do] = ACTIONS(1043), + [anon_sym_for] = ACTIONS(1043), + [anon_sym_return] = ACTIONS(1043), + [anon_sym_break] = ACTIONS(1043), + [anon_sym_continue] = ACTIONS(1043), + [anon_sym_goto] = ACTIONS(1043), + [anon_sym_AMP] = ACTIONS(1041), + [anon_sym_BANG] = ACTIONS(1041), + [anon_sym_TILDE] = ACTIONS(1041), + [anon_sym_DASH] = ACTIONS(1043), + [anon_sym_PLUS] = ACTIONS(1043), + [anon_sym_DASH_DASH] = ACTIONS(1041), + [anon_sym_PLUS_PLUS] = ACTIONS(1041), + [anon_sym_sizeof] = ACTIONS(1043), + [sym_number_literal] = ACTIONS(1041), + [anon_sym_L_SQUOTE] = ACTIONS(1041), + [anon_sym_SQUOTE] = ACTIONS(1041), + [anon_sym_L_DQUOTE] = ACTIONS(1041), + [anon_sym_DQUOTE] = ACTIONS(1041), + [sym_true] = ACTIONS(1043), + [sym_false] = ACTIONS(1043), + [sym_null] = ACTIONS(1043), + [sym_comment] = ACTIONS(3), }, [628] = { - [sym_true] = ACTIONS(487), - [anon_sym_restrict] = ACTIONS(487), - [sym_null] = ACTIONS(487), - [anon_sym_goto] = ACTIONS(487), - [aux_sym_preproc_if_token2] = ACTIONS(487), - [anon_sym_const] = ACTIONS(487), - [anon_sym_typedef] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(489), - [anon_sym__Atomic] = ACTIONS(487), - [sym_identifier] = ACTIONS(487), - [aux_sym_preproc_ifdef_token1] = ACTIONS(487), - [sym_number_literal] = ACTIONS(489), - [anon_sym_volatile] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [anon_sym_extern] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(489), - [anon_sym_struct] = ACTIONS(487), - [anon_sym_signed] = ACTIONS(487), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(487), - [anon_sym_while] = ACTIONS(487), - [aux_sym_preproc_ifdef_token2] = ACTIONS(487), - [aux_sym_preproc_elif_token1] = ACTIONS(487), - [anon_sym_L_SQUOTE] = ACTIONS(489), - [anon_sym___attribute__] = ACTIONS(487), - [anon_sym_sizeof] = ACTIONS(487), - [anon_sym_LBRACE] = ACTIONS(489), - [anon_sym_union] = ACTIONS(487), - [anon_sym_unsigned] = ACTIONS(487), - [anon_sym_short] = ACTIONS(487), - [anon_sym_do] = ACTIONS(487), - [aux_sym_preproc_else_token1] = ACTIONS(487), - [sym_preproc_directive] = ACTIONS(487), - [anon_sym_AMP] = ACTIONS(489), - [aux_sym_preproc_if_token1] = ACTIONS(487), - [anon_sym_TILDE] = ACTIONS(489), - [anon_sym_L_DQUOTE] = ACTIONS(489), - [anon_sym_LPAREN2] = ACTIONS(489), - [anon_sym_else] = ACTIONS(487), - [sym_primitive_type] = ACTIONS(487), - [anon_sym_for] = ACTIONS(487), - [anon_sym_break] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(489), - [aux_sym_preproc_include_token1] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_static] = ACTIONS(487), - [anon_sym_DQUOTE] = ACTIONS(489), - [anon_sym_register] = ACTIONS(487), - [anon_sym_STAR] = ACTIONS(489), - [anon_sym_if] = ACTIONS(487), - [anon_sym_switch] = ACTIONS(487), - [anon_sym_enum] = ACTIONS(487), - [sym_false] = ACTIONS(487), - [anon_sym_return] = ACTIONS(487), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(489), - [aux_sym_preproc_def_token1] = ACTIONS(487), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_auto] = ACTIONS(487), - [anon_sym_inline] = ACTIONS(487), + [sym_identifier] = ACTIONS(1031), + [anon_sym_SEMI] = ACTIONS(1029), + [anon_sym_LPAREN2] = ACTIONS(1029), + [anon_sym_LBRACE] = ACTIONS(1029), + [anon_sym_RBRACE] = ACTIONS(1029), + [anon_sym_STAR] = ACTIONS(1029), + [anon_sym_if] = ACTIONS(1031), + [anon_sym_else] = ACTIONS(1031), + [anon_sym_switch] = ACTIONS(1031), + [anon_sym_case] = ACTIONS(1031), + [anon_sym_default] = ACTIONS(1031), + [anon_sym_while] = ACTIONS(1031), + [anon_sym_do] = ACTIONS(1031), + [anon_sym_for] = ACTIONS(1031), + [anon_sym_return] = ACTIONS(1031), + [anon_sym_break] = ACTIONS(1031), + [anon_sym_continue] = ACTIONS(1031), + [anon_sym_goto] = ACTIONS(1031), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_TILDE] = ACTIONS(1029), + [anon_sym_DASH] = ACTIONS(1031), + [anon_sym_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_sizeof] = ACTIONS(1031), + [sym_number_literal] = ACTIONS(1029), + [anon_sym_L_SQUOTE] = ACTIONS(1029), + [anon_sym_SQUOTE] = ACTIONS(1029), + [anon_sym_L_DQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE] = ACTIONS(1029), + [sym_true] = ACTIONS(1031), + [sym_false] = ACTIONS(1031), + [sym_null] = ACTIONS(1031), + [sym_comment] = ACTIONS(3), }, [629] = { - [sym_true] = ACTIONS(493), - [anon_sym_restrict] = ACTIONS(493), - [sym_null] = ACTIONS(493), - [anon_sym_goto] = ACTIONS(493), - [aux_sym_preproc_if_token2] = ACTIONS(493), - [anon_sym_const] = ACTIONS(493), - [anon_sym_typedef] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(495), - [anon_sym__Atomic] = ACTIONS(493), - [sym_identifier] = ACTIONS(493), - [aux_sym_preproc_ifdef_token1] = ACTIONS(493), - [sym_number_literal] = ACTIONS(495), - [anon_sym_volatile] = ACTIONS(493), - [anon_sym_SQUOTE] = ACTIONS(495), - [anon_sym_extern] = ACTIONS(493), - [anon_sym_PLUS_PLUS] = ACTIONS(495), - [anon_sym_struct] = ACTIONS(493), - [anon_sym_signed] = ACTIONS(493), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(493), - [anon_sym_while] = ACTIONS(493), - [aux_sym_preproc_ifdef_token2] = ACTIONS(493), - [aux_sym_preproc_elif_token1] = ACTIONS(493), - [anon_sym_L_SQUOTE] = ACTIONS(495), - [anon_sym___attribute__] = ACTIONS(493), - [anon_sym_sizeof] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_union] = ACTIONS(493), - [anon_sym_unsigned] = ACTIONS(493), - [anon_sym_short] = ACTIONS(493), - [anon_sym_do] = ACTIONS(493), - [aux_sym_preproc_else_token1] = ACTIONS(493), - [sym_preproc_directive] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(495), - [aux_sym_preproc_if_token1] = ACTIONS(493), - [anon_sym_TILDE] = ACTIONS(495), - [anon_sym_L_DQUOTE] = ACTIONS(495), - [anon_sym_LPAREN2] = ACTIONS(495), - [sym_primitive_type] = ACTIONS(493), - [anon_sym_for] = ACTIONS(493), - [anon_sym_break] = ACTIONS(493), - [anon_sym_BANG] = ACTIONS(495), - [aux_sym_preproc_include_token1] = ACTIONS(493), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_static] = ACTIONS(493), - [anon_sym_DQUOTE] = ACTIONS(495), - [anon_sym_register] = ACTIONS(493), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_if] = ACTIONS(493), - [anon_sym_switch] = ACTIONS(493), - [anon_sym_enum] = ACTIONS(493), - [sym_false] = ACTIONS(493), - [anon_sym_return] = ACTIONS(493), - [anon_sym_continue] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(495), - [aux_sym_preproc_def_token1] = ACTIONS(493), - [anon_sym_PLUS] = ACTIONS(493), - [anon_sym_auto] = ACTIONS(493), - [anon_sym_inline] = ACTIONS(493), + [sym_identifier] = ACTIONS(945), + [anon_sym_SEMI] = ACTIONS(943), + [anon_sym_LPAREN2] = ACTIONS(943), + [anon_sym_LBRACE] = ACTIONS(943), + [anon_sym_RBRACE] = ACTIONS(943), + [anon_sym_STAR] = ACTIONS(943), + [anon_sym_if] = ACTIONS(945), + [anon_sym_else] = ACTIONS(945), + [anon_sym_switch] = ACTIONS(945), + [anon_sym_case] = ACTIONS(945), + [anon_sym_default] = ACTIONS(945), + [anon_sym_while] = ACTIONS(945), + [anon_sym_do] = ACTIONS(945), + [anon_sym_for] = ACTIONS(945), + [anon_sym_return] = ACTIONS(945), + [anon_sym_break] = ACTIONS(945), + [anon_sym_continue] = ACTIONS(945), + [anon_sym_goto] = ACTIONS(945), + [anon_sym_AMP] = ACTIONS(943), + [anon_sym_BANG] = ACTIONS(943), + [anon_sym_TILDE] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(945), + [anon_sym_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(943), + [anon_sym_sizeof] = ACTIONS(945), + [sym_number_literal] = ACTIONS(943), + [anon_sym_L_SQUOTE] = ACTIONS(943), + [anon_sym_SQUOTE] = ACTIONS(943), + [anon_sym_L_DQUOTE] = ACTIONS(943), + [anon_sym_DQUOTE] = ACTIONS(943), + [sym_true] = ACTIONS(945), + [sym_false] = ACTIONS(945), + [sym_null] = ACTIONS(945), + [sym_comment] = ACTIONS(3), }, [630] = { - [sym_if_statement] = STATE(646), - [sym_do_statement] = STATE(646), - [sym_for_statement] = STATE(646), - [sym__expression] = STATE(951), - [sym_comma_expression] = STATE(952), - [sym_binary_expression] = STATE(951), - [sym_update_expression] = STATE(951), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(646), - [sym_return_statement] = STATE(646), - [sym_break_statement] = STATE(646), - [sym_conditional_expression] = STATE(951), - [sym_assignment_expression] = STATE(951), - [sym_cast_expression] = STATE(951), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(951), - [sym_char_literal] = STATE(951), - [sym_labeled_statement] = STATE(646), - [sym_while_statement] = STATE(646), - [sym_continue_statement] = STATE(646), - [sym_goto_statement] = STATE(646), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(951), - [sym_sizeof_expression] = STATE(951), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(951), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(646), - [sym_expression_statement] = STATE(646), - [anon_sym_LBRACE] = ACTIONS(398), - [sym_true] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [anon_sym_do] = ACTIONS(400), - [anon_sym_goto] = ACTIONS(380), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(2291), - [anon_sym_for] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(390), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(416), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(418), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(378), - [anon_sym_return] = ACTIONS(420), - [anon_sym_while] = ACTIONS(394), - [anon_sym_continue] = ACTIONS(422), - [anon_sym_SEMI] = ACTIONS(424), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_identifier] = ACTIONS(1005), + [anon_sym_SEMI] = ACTIONS(1003), + [anon_sym_LPAREN2] = ACTIONS(1003), + [anon_sym_LBRACE] = ACTIONS(1003), + [anon_sym_RBRACE] = ACTIONS(1003), + [anon_sym_STAR] = ACTIONS(1003), + [anon_sym_if] = ACTIONS(1005), + [anon_sym_else] = ACTIONS(1005), + [anon_sym_switch] = ACTIONS(1005), + [anon_sym_case] = ACTIONS(1005), + [anon_sym_default] = ACTIONS(1005), + [anon_sym_while] = ACTIONS(1005), + [anon_sym_do] = ACTIONS(1005), + [anon_sym_for] = ACTIONS(1005), + [anon_sym_return] = ACTIONS(1005), + [anon_sym_break] = ACTIONS(1005), + [anon_sym_continue] = ACTIONS(1005), + [anon_sym_goto] = ACTIONS(1005), + [anon_sym_AMP] = ACTIONS(1003), + [anon_sym_BANG] = ACTIONS(1003), + [anon_sym_TILDE] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1005), + [anon_sym_PLUS] = ACTIONS(1005), + [anon_sym_DASH_DASH] = ACTIONS(1003), + [anon_sym_PLUS_PLUS] = ACTIONS(1003), + [anon_sym_sizeof] = ACTIONS(1005), + [sym_number_literal] = ACTIONS(1003), + [anon_sym_L_SQUOTE] = ACTIONS(1003), + [anon_sym_SQUOTE] = ACTIONS(1003), + [anon_sym_L_DQUOTE] = ACTIONS(1003), + [anon_sym_DQUOTE] = ACTIONS(1003), + [sym_true] = ACTIONS(1005), + [sym_false] = ACTIONS(1005), + [sym_null] = ACTIONS(1005), + [sym_comment] = ACTIONS(3), }, [631] = { - [sym_true] = ACTIONS(529), - [anon_sym_restrict] = ACTIONS(529), - [sym_null] = ACTIONS(529), - [anon_sym_goto] = ACTIONS(529), - [aux_sym_preproc_if_token2] = ACTIONS(529), - [anon_sym_const] = ACTIONS(529), - [anon_sym_typedef] = ACTIONS(529), - [anon_sym_DASH_DASH] = ACTIONS(531), - [anon_sym__Atomic] = ACTIONS(529), - [sym_identifier] = ACTIONS(529), - [aux_sym_preproc_ifdef_token1] = ACTIONS(529), - [sym_number_literal] = ACTIONS(531), - [anon_sym_volatile] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [anon_sym_extern] = ACTIONS(529), - [anon_sym_PLUS_PLUS] = ACTIONS(531), - [anon_sym_struct] = ACTIONS(529), - [anon_sym_signed] = ACTIONS(529), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(529), - [anon_sym_while] = ACTIONS(529), - [aux_sym_preproc_ifdef_token2] = ACTIONS(529), - [aux_sym_preproc_elif_token1] = ACTIONS(529), - [anon_sym_L_SQUOTE] = ACTIONS(531), - [anon_sym___attribute__] = ACTIONS(529), - [anon_sym_sizeof] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_union] = ACTIONS(529), - [anon_sym_unsigned] = ACTIONS(529), - [anon_sym_short] = ACTIONS(529), - [anon_sym_do] = ACTIONS(529), - [aux_sym_preproc_else_token1] = ACTIONS(529), - [sym_preproc_directive] = ACTIONS(529), - [anon_sym_AMP] = ACTIONS(531), - [aux_sym_preproc_if_token1] = ACTIONS(529), - [anon_sym_TILDE] = ACTIONS(531), - [anon_sym_L_DQUOTE] = ACTIONS(531), - [anon_sym_LPAREN2] = ACTIONS(531), - [anon_sym_else] = ACTIONS(529), - [sym_primitive_type] = ACTIONS(529), - [anon_sym_for] = ACTIONS(529), - [anon_sym_break] = ACTIONS(529), - [anon_sym_BANG] = ACTIONS(531), - [aux_sym_preproc_include_token1] = ACTIONS(529), - [anon_sym_DASH] = ACTIONS(529), - [anon_sym_static] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [anon_sym_register] = ACTIONS(529), - [anon_sym_STAR] = ACTIONS(531), - [anon_sym_if] = ACTIONS(529), - [anon_sym_switch] = ACTIONS(529), - [anon_sym_enum] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [anon_sym_return] = ACTIONS(529), - [anon_sym_continue] = ACTIONS(529), - [anon_sym_SEMI] = ACTIONS(531), - [aux_sym_preproc_def_token1] = ACTIONS(529), - [anon_sym_PLUS] = ACTIONS(529), - [anon_sym_auto] = ACTIONS(529), - [anon_sym_inline] = ACTIONS(529), + [sym_identifier] = ACTIONS(1009), + [anon_sym_SEMI] = ACTIONS(1007), + [anon_sym_LPAREN2] = ACTIONS(1007), + [anon_sym_LBRACE] = ACTIONS(1007), + [anon_sym_RBRACE] = ACTIONS(1007), + [anon_sym_STAR] = ACTIONS(1007), + [anon_sym_if] = ACTIONS(1009), + [anon_sym_else] = ACTIONS(1009), + [anon_sym_switch] = ACTIONS(1009), + [anon_sym_case] = ACTIONS(1009), + [anon_sym_default] = ACTIONS(1009), + [anon_sym_while] = ACTIONS(1009), + [anon_sym_do] = ACTIONS(1009), + [anon_sym_for] = ACTIONS(1009), + [anon_sym_return] = ACTIONS(1009), + [anon_sym_break] = ACTIONS(1009), + [anon_sym_continue] = ACTIONS(1009), + [anon_sym_goto] = ACTIONS(1009), + [anon_sym_AMP] = ACTIONS(1007), + [anon_sym_BANG] = ACTIONS(1007), + [anon_sym_TILDE] = ACTIONS(1007), + [anon_sym_DASH] = ACTIONS(1009), + [anon_sym_PLUS] = ACTIONS(1009), + [anon_sym_DASH_DASH] = ACTIONS(1007), + [anon_sym_PLUS_PLUS] = ACTIONS(1007), + [anon_sym_sizeof] = ACTIONS(1009), + [sym_number_literal] = ACTIONS(1007), + [anon_sym_L_SQUOTE] = ACTIONS(1007), + [anon_sym_SQUOTE] = ACTIONS(1007), + [anon_sym_L_DQUOTE] = ACTIONS(1007), + [anon_sym_DQUOTE] = ACTIONS(1007), + [sym_true] = ACTIONS(1009), + [sym_false] = ACTIONS(1009), + [sym_null] = ACTIONS(1009), + [sym_comment] = ACTIONS(3), }, [632] = { - [sym_if_statement] = STATE(649), - [sym_do_statement] = STATE(649), - [sym_for_statement] = STATE(649), - [sym__expression] = STATE(951), - [sym_comma_expression] = STATE(952), - [sym_binary_expression] = STATE(951), - [sym_update_expression] = STATE(951), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(649), - [sym_return_statement] = STATE(649), - [sym_break_statement] = STATE(649), - [sym_conditional_expression] = STATE(951), - [sym_assignment_expression] = STATE(951), - [sym_cast_expression] = STATE(951), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(951), - [sym_char_literal] = STATE(951), - [sym_labeled_statement] = STATE(649), - [sym_while_statement] = STATE(649), - [sym_continue_statement] = STATE(649), - [sym_goto_statement] = STATE(649), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(951), - [sym_sizeof_expression] = STATE(951), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(951), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(649), - [sym_expression_statement] = STATE(649), - [anon_sym_LBRACE] = ACTIONS(398), - [sym_true] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [anon_sym_do] = ACTIONS(400), - [anon_sym_goto] = ACTIONS(380), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(2291), - [anon_sym_for] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(390), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(416), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(418), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(378), - [anon_sym_return] = ACTIONS(420), - [anon_sym_while] = ACTIONS(394), - [anon_sym_continue] = ACTIONS(422), - [anon_sym_SEMI] = ACTIONS(424), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_identifier] = ACTIONS(1013), + [anon_sym_SEMI] = ACTIONS(1011), + [anon_sym_LPAREN2] = ACTIONS(1011), + [anon_sym_LBRACE] = ACTIONS(1011), + [anon_sym_RBRACE] = ACTIONS(1011), + [anon_sym_STAR] = ACTIONS(1011), + [anon_sym_if] = ACTIONS(1013), + [anon_sym_else] = ACTIONS(1013), + [anon_sym_switch] = ACTIONS(1013), + [anon_sym_case] = ACTIONS(1013), + [anon_sym_default] = ACTIONS(1013), + [anon_sym_while] = ACTIONS(1013), + [anon_sym_do] = ACTIONS(1013), + [anon_sym_for] = ACTIONS(1013), + [anon_sym_return] = ACTIONS(1013), + [anon_sym_break] = ACTIONS(1013), + [anon_sym_continue] = ACTIONS(1013), + [anon_sym_goto] = ACTIONS(1013), + [anon_sym_AMP] = ACTIONS(1011), + [anon_sym_BANG] = ACTIONS(1011), + [anon_sym_TILDE] = ACTIONS(1011), + [anon_sym_DASH] = ACTIONS(1013), + [anon_sym_PLUS] = ACTIONS(1013), + [anon_sym_DASH_DASH] = ACTIONS(1011), + [anon_sym_PLUS_PLUS] = ACTIONS(1011), + [anon_sym_sizeof] = ACTIONS(1013), + [sym_number_literal] = ACTIONS(1011), + [anon_sym_L_SQUOTE] = ACTIONS(1011), + [anon_sym_SQUOTE] = ACTIONS(1011), + [anon_sym_L_DQUOTE] = ACTIONS(1011), + [anon_sym_DQUOTE] = ACTIONS(1011), + [sym_true] = ACTIONS(1013), + [sym_false] = ACTIONS(1013), + [sym_null] = ACTIONS(1013), + [sym_comment] = ACTIONS(3), }, [633] = { - [sym_true] = ACTIONS(535), - [anon_sym_restrict] = ACTIONS(535), - [sym_null] = ACTIONS(535), - [anon_sym_goto] = ACTIONS(535), - [aux_sym_preproc_if_token2] = ACTIONS(535), - [anon_sym_const] = ACTIONS(535), - [anon_sym_typedef] = ACTIONS(535), - [anon_sym_DASH_DASH] = ACTIONS(537), - [anon_sym__Atomic] = ACTIONS(535), - [sym_identifier] = ACTIONS(535), - [aux_sym_preproc_ifdef_token1] = ACTIONS(535), - [sym_number_literal] = ACTIONS(537), - [anon_sym_volatile] = ACTIONS(535), - [anon_sym_SQUOTE] = ACTIONS(537), - [anon_sym_extern] = ACTIONS(535), - [anon_sym_PLUS_PLUS] = ACTIONS(537), - [anon_sym_struct] = ACTIONS(535), - [anon_sym_signed] = ACTIONS(535), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(535), - [anon_sym_while] = ACTIONS(535), - [aux_sym_preproc_ifdef_token2] = ACTIONS(535), - [aux_sym_preproc_elif_token1] = ACTIONS(535), - [anon_sym_L_SQUOTE] = ACTIONS(537), - [anon_sym___attribute__] = ACTIONS(535), - [anon_sym_sizeof] = ACTIONS(535), - [anon_sym_LBRACE] = ACTIONS(537), - [anon_sym_union] = ACTIONS(535), - [anon_sym_unsigned] = ACTIONS(535), - [anon_sym_short] = ACTIONS(535), - [anon_sym_do] = ACTIONS(535), - [aux_sym_preproc_else_token1] = ACTIONS(535), - [sym_preproc_directive] = ACTIONS(535), - [anon_sym_AMP] = ACTIONS(537), - [aux_sym_preproc_if_token1] = ACTIONS(535), - [anon_sym_TILDE] = ACTIONS(537), - [anon_sym_L_DQUOTE] = ACTIONS(537), - [anon_sym_LPAREN2] = ACTIONS(537), - [anon_sym_else] = ACTIONS(535), - [sym_primitive_type] = ACTIONS(535), - [anon_sym_for] = ACTIONS(535), - [anon_sym_break] = ACTIONS(535), - [anon_sym_BANG] = ACTIONS(537), - [aux_sym_preproc_include_token1] = ACTIONS(535), - [anon_sym_DASH] = ACTIONS(535), - [anon_sym_static] = ACTIONS(535), - [anon_sym_DQUOTE] = ACTIONS(537), - [anon_sym_register] = ACTIONS(535), - [anon_sym_STAR] = ACTIONS(537), - [anon_sym_if] = ACTIONS(535), - [anon_sym_switch] = ACTIONS(535), - [anon_sym_enum] = ACTIONS(535), - [sym_false] = ACTIONS(535), - [anon_sym_return] = ACTIONS(535), - [anon_sym_continue] = ACTIONS(535), - [anon_sym_SEMI] = ACTIONS(537), - [aux_sym_preproc_def_token1] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(535), - [anon_sym_auto] = ACTIONS(535), - [anon_sym_inline] = ACTIONS(535), + [sym_identifier] = ACTIONS(1027), + [anon_sym_SEMI] = ACTIONS(1025), + [anon_sym_LPAREN2] = ACTIONS(1025), + [anon_sym_LBRACE] = ACTIONS(1025), + [anon_sym_RBRACE] = ACTIONS(1025), + [anon_sym_STAR] = ACTIONS(1025), + [anon_sym_if] = ACTIONS(1027), + [anon_sym_else] = ACTIONS(1027), + [anon_sym_switch] = ACTIONS(1027), + [anon_sym_case] = ACTIONS(1027), + [anon_sym_default] = ACTIONS(1027), + [anon_sym_while] = ACTIONS(1027), + [anon_sym_do] = ACTIONS(1027), + [anon_sym_for] = ACTIONS(1027), + [anon_sym_return] = ACTIONS(1027), + [anon_sym_break] = ACTIONS(1027), + [anon_sym_continue] = ACTIONS(1027), + [anon_sym_goto] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1025), + [anon_sym_BANG] = ACTIONS(1025), + [anon_sym_TILDE] = ACTIONS(1025), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH_DASH] = ACTIONS(1025), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_sizeof] = ACTIONS(1027), + [sym_number_literal] = ACTIONS(1025), + [anon_sym_L_SQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1025), + [anon_sym_L_DQUOTE] = ACTIONS(1025), + [anon_sym_DQUOTE] = ACTIONS(1025), + [sym_true] = ACTIONS(1027), + [sym_false] = ACTIONS(1027), + [sym_null] = ACTIONS(1027), + [sym_comment] = ACTIONS(3), }, [634] = { - [sym_true] = ACTIONS(605), - [anon_sym_restrict] = ACTIONS(605), - [sym_null] = ACTIONS(605), - [anon_sym_goto] = ACTIONS(605), - [aux_sym_preproc_if_token2] = ACTIONS(605), - [anon_sym_const] = ACTIONS(605), - [anon_sym_typedef] = ACTIONS(605), - [anon_sym_DASH_DASH] = ACTIONS(607), - [anon_sym__Atomic] = ACTIONS(605), - [sym_identifier] = ACTIONS(605), - [aux_sym_preproc_ifdef_token1] = ACTIONS(605), - [sym_number_literal] = ACTIONS(607), - [anon_sym_volatile] = ACTIONS(605), - [anon_sym_SQUOTE] = ACTIONS(607), - [anon_sym_extern] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(607), - [anon_sym_struct] = ACTIONS(605), - [anon_sym_signed] = ACTIONS(605), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(605), - [anon_sym_while] = ACTIONS(605), - [aux_sym_preproc_ifdef_token2] = ACTIONS(605), - [aux_sym_preproc_elif_token1] = ACTIONS(605), - [anon_sym_L_SQUOTE] = ACTIONS(607), - [anon_sym___attribute__] = ACTIONS(605), - [anon_sym_sizeof] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(607), - [anon_sym_union] = ACTIONS(605), - [anon_sym_unsigned] = ACTIONS(605), - [anon_sym_short] = ACTIONS(605), - [anon_sym_do] = ACTIONS(605), - [aux_sym_preproc_else_token1] = ACTIONS(605), - [sym_preproc_directive] = ACTIONS(605), - [anon_sym_AMP] = ACTIONS(607), - [aux_sym_preproc_if_token1] = ACTIONS(605), - [anon_sym_TILDE] = ACTIONS(607), - [anon_sym_L_DQUOTE] = ACTIONS(607), - [anon_sym_LPAREN2] = ACTIONS(607), - [anon_sym_else] = ACTIONS(605), - [sym_primitive_type] = ACTIONS(605), - [anon_sym_for] = ACTIONS(605), - [anon_sym_break] = ACTIONS(605), - [anon_sym_BANG] = ACTIONS(607), - [aux_sym_preproc_include_token1] = ACTIONS(605), - [anon_sym_DASH] = ACTIONS(605), - [anon_sym_static] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(607), - [anon_sym_register] = ACTIONS(605), - [anon_sym_STAR] = ACTIONS(607), - [anon_sym_if] = ACTIONS(605), - [anon_sym_switch] = ACTIONS(605), - [anon_sym_enum] = ACTIONS(605), - [sym_false] = ACTIONS(605), - [anon_sym_return] = ACTIONS(605), - [anon_sym_continue] = ACTIONS(605), - [anon_sym_SEMI] = ACTIONS(607), - [aux_sym_preproc_def_token1] = ACTIONS(605), - [anon_sym_PLUS] = ACTIONS(605), - [anon_sym_auto] = ACTIONS(605), - [anon_sym_inline] = ACTIONS(605), + [sym_identifier] = ACTIONS(977), + [anon_sym_SEMI] = ACTIONS(975), + [anon_sym_LPAREN2] = ACTIONS(975), + [anon_sym_LBRACE] = ACTIONS(975), + [anon_sym_RBRACE] = ACTIONS(975), + [anon_sym_STAR] = ACTIONS(975), + [anon_sym_if] = ACTIONS(977), + [anon_sym_else] = ACTIONS(977), + [anon_sym_switch] = ACTIONS(977), + [anon_sym_case] = ACTIONS(977), + [anon_sym_default] = ACTIONS(977), + [anon_sym_while] = ACTIONS(977), + [anon_sym_do] = ACTIONS(977), + [anon_sym_for] = ACTIONS(977), + [anon_sym_return] = ACTIONS(977), + [anon_sym_break] = ACTIONS(977), + [anon_sym_continue] = ACTIONS(977), + [anon_sym_goto] = ACTIONS(977), + [anon_sym_AMP] = ACTIONS(975), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(977), + [anon_sym_PLUS] = ACTIONS(977), + [anon_sym_DASH_DASH] = ACTIONS(975), + [anon_sym_PLUS_PLUS] = ACTIONS(975), + [anon_sym_sizeof] = ACTIONS(977), + [sym_number_literal] = ACTIONS(975), + [anon_sym_L_SQUOTE] = ACTIONS(975), + [anon_sym_SQUOTE] = ACTIONS(975), + [anon_sym_L_DQUOTE] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(975), + [sym_true] = ACTIONS(977), + [sym_false] = ACTIONS(977), + [sym_null] = ACTIONS(977), + [sym_comment] = ACTIONS(3), }, [635] = { - [sym_true] = ACTIONS(621), - [anon_sym_restrict] = ACTIONS(621), - [sym_null] = ACTIONS(621), - [anon_sym_goto] = ACTIONS(621), - [aux_sym_preproc_if_token2] = ACTIONS(621), - [anon_sym_const] = ACTIONS(621), - [anon_sym_typedef] = ACTIONS(621), - [anon_sym_DASH_DASH] = ACTIONS(623), - [anon_sym__Atomic] = ACTIONS(621), - [sym_identifier] = ACTIONS(621), - [aux_sym_preproc_ifdef_token1] = ACTIONS(621), - [sym_number_literal] = ACTIONS(623), - [anon_sym_volatile] = ACTIONS(621), - [anon_sym_SQUOTE] = ACTIONS(623), - [anon_sym_extern] = ACTIONS(621), - [anon_sym_PLUS_PLUS] = ACTIONS(623), - [anon_sym_struct] = ACTIONS(621), - [anon_sym_signed] = ACTIONS(621), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(621), - [anon_sym_while] = ACTIONS(621), - [aux_sym_preproc_ifdef_token2] = ACTIONS(621), - [aux_sym_preproc_elif_token1] = ACTIONS(621), - [anon_sym_L_SQUOTE] = ACTIONS(623), - [anon_sym___attribute__] = ACTIONS(621), - [anon_sym_sizeof] = ACTIONS(621), - [anon_sym_LBRACE] = ACTIONS(623), - [anon_sym_union] = ACTIONS(621), - [anon_sym_unsigned] = ACTIONS(621), - [anon_sym_short] = ACTIONS(621), - [anon_sym_do] = ACTIONS(621), - [aux_sym_preproc_else_token1] = ACTIONS(621), - [sym_preproc_directive] = ACTIONS(621), - [anon_sym_AMP] = ACTIONS(623), - [aux_sym_preproc_if_token1] = ACTIONS(621), - [anon_sym_TILDE] = ACTIONS(623), - [anon_sym_L_DQUOTE] = ACTIONS(623), - [anon_sym_LPAREN2] = ACTIONS(623), - [sym_primitive_type] = ACTIONS(621), - [anon_sym_for] = ACTIONS(621), - [anon_sym_break] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(623), - [aux_sym_preproc_include_token1] = ACTIONS(621), - [anon_sym_DASH] = ACTIONS(621), - [anon_sym_static] = ACTIONS(621), - [anon_sym_DQUOTE] = ACTIONS(623), - [anon_sym_register] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(623), - [anon_sym_if] = ACTIONS(621), - [anon_sym_switch] = ACTIONS(621), - [anon_sym_enum] = ACTIONS(621), - [sym_false] = ACTIONS(621), - [anon_sym_return] = ACTIONS(621), - [anon_sym_continue] = ACTIONS(621), - [anon_sym_SEMI] = ACTIONS(623), - [aux_sym_preproc_def_token1] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(621), - [anon_sym_auto] = ACTIONS(621), - [anon_sym_inline] = ACTIONS(621), + [sym_identifier] = ACTIONS(949), + [anon_sym_SEMI] = ACTIONS(947), + [anon_sym_LPAREN2] = ACTIONS(947), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(947), + [anon_sym_STAR] = ACTIONS(947), + [anon_sym_if] = ACTIONS(949), + [anon_sym_else] = ACTIONS(949), + [anon_sym_switch] = ACTIONS(949), + [anon_sym_case] = ACTIONS(949), + [anon_sym_default] = ACTIONS(949), + [anon_sym_while] = ACTIONS(949), + [anon_sym_do] = ACTIONS(949), + [anon_sym_for] = ACTIONS(949), + [anon_sym_return] = ACTIONS(949), + [anon_sym_break] = ACTIONS(949), + [anon_sym_continue] = ACTIONS(949), + [anon_sym_goto] = ACTIONS(949), + [anon_sym_AMP] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_TILDE] = ACTIONS(947), + [anon_sym_DASH] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(949), + [anon_sym_DASH_DASH] = ACTIONS(947), + [anon_sym_PLUS_PLUS] = ACTIONS(947), + [anon_sym_sizeof] = ACTIONS(949), + [sym_number_literal] = ACTIONS(947), + [anon_sym_L_SQUOTE] = ACTIONS(947), + [anon_sym_SQUOTE] = ACTIONS(947), + [anon_sym_L_DQUOTE] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(947), + [sym_true] = ACTIONS(949), + [sym_false] = ACTIONS(949), + [sym_null] = ACTIONS(949), + [sym_comment] = ACTIONS(3), }, [636] = { - [sym_if_statement] = STATE(636), - [sym_preproc_def] = STATE(636), - [sym_preproc_function_def] = STATE(636), - [sym__expression] = STATE(951), - [sym_comma_expression] = STATE(952), - [sym_binary_expression] = STATE(951), - [sym_update_expression] = STATE(951), - [sym_call_expression] = STATE(36), - [sym_function_definition] = STATE(636), - [sym_declaration] = STATE(636), - [sym_do_statement] = STATE(636), - [sym_for_statement] = STATE(636), - [aux_sym_translation_unit_repeat1] = STATE(636), - [sym_expression_statement] = STATE(636), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(953), - [sym_union_specifier] = STATE(953), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_switch_statement] = STATE(636), - [sym_return_statement] = STATE(636), - [sym_preproc_call] = STATE(636), - [sym_conditional_expression] = STATE(951), - [sym_assignment_expression] = STATE(951), - [sym_type_definition] = STATE(636), - [sym_cast_expression] = STATE(951), - [sym__declaration_specifiers] = STATE(1172), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(951), - [sym_char_literal] = STATE(951), - [sym_break_statement] = STATE(636), - [sym__empty_declaration] = STATE(636), - [sym_sized_type_specifier] = STATE(953), - [sym_enum_specifier] = STATE(953), - [sym_labeled_statement] = STATE(636), - [sym_preproc_include] = STATE(636), - [sym_preproc_if] = STATE(636), - [sym_preproc_ifdef] = STATE(636), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(951), - [sym_sizeof_expression] = STATE(951), - [sym_attribute_specifier] = STATE(43), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_linkage_specification] = STATE(636), - [sym_concatenated_string] = STATE(951), - [sym_string_literal] = STATE(41), - [sym_macro_type_specifier] = STATE(953), - [sym_while_statement] = STATE(636), - [sym_storage_class_specifier] = STATE(43), - [sym_compound_statement] = STATE(636), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_continue_statement] = STATE(636), - [sym_struct_specifier] = STATE(953), - [sym_goto_statement] = STATE(636), - [sym_true] = ACTIONS(2293), - [anon_sym_restrict] = ACTIONS(665), - [sym_null] = ACTIONS(2293), - [anon_sym_goto] = ACTIONS(2296), - [aux_sym_preproc_if_token2] = ACTIONS(2299), - [anon_sym_const] = ACTIONS(665), - [anon_sym_typedef] = ACTIONS(2301), - [anon_sym_DASH_DASH] = ACTIONS(674), - [anon_sym__Atomic] = ACTIONS(665), - [sym_identifier] = ACTIONS(2304), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2307), - [sym_number_literal] = ACTIONS(2310), - [anon_sym_volatile] = ACTIONS(665), - [anon_sym_SQUOTE] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(2313), - [anon_sym_PLUS_PLUS] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(692), - [anon_sym_signed] = ACTIONS(695), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(695), - [anon_sym_while] = ACTIONS(2316), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2307), - [aux_sym_preproc_elif_token1] = ACTIONS(2299), - [anon_sym_L_SQUOTE] = ACTIONS(686), - [anon_sym___attribute__] = ACTIONS(701), - [anon_sym_sizeof] = ACTIONS(704), - [anon_sym_LBRACE] = ACTIONS(2319), - [anon_sym_union] = ACTIONS(710), - [anon_sym_unsigned] = ACTIONS(695), - [anon_sym_short] = ACTIONS(695), - [anon_sym_do] = ACTIONS(2322), - [aux_sym_preproc_else_token1] = ACTIONS(2299), - [sym_preproc_directive] = ACTIONS(2325), - [anon_sym_AMP] = ACTIONS(719), - [aux_sym_preproc_if_token1] = ACTIONS(2328), - [anon_sym_TILDE] = ACTIONS(725), - [anon_sym_L_DQUOTE] = ACTIONS(728), - [anon_sym_LPAREN2] = ACTIONS(731), - [sym_primitive_type] = ACTIONS(2331), - [anon_sym_for] = ACTIONS(2334), - [anon_sym_break] = ACTIONS(2337), - [anon_sym_BANG] = ACTIONS(725), - [aux_sym_preproc_include_token1] = ACTIONS(2340), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_static] = ACTIONS(749), - [anon_sym_DQUOTE] = ACTIONS(728), - [anon_sym_register] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(719), - [anon_sym_if] = ACTIONS(2343), - [anon_sym_switch] = ACTIONS(2346), - [anon_sym_enum] = ACTIONS(758), - [sym_false] = ACTIONS(2293), - [anon_sym_return] = ACTIONS(2349), - [anon_sym_continue] = ACTIONS(2352), - [anon_sym_SEMI] = ACTIONS(2355), - [aux_sym_preproc_def_token1] = ACTIONS(2358), - [anon_sym_PLUS] = ACTIONS(746), - [anon_sym_auto] = ACTIONS(749), - [anon_sym_inline] = ACTIONS(749), + [sym_identifier] = ACTIONS(957), + [anon_sym_SEMI] = ACTIONS(955), + [anon_sym_LPAREN2] = ACTIONS(955), + [anon_sym_LBRACE] = ACTIONS(955), + [anon_sym_RBRACE] = ACTIONS(955), + [anon_sym_STAR] = ACTIONS(955), + [anon_sym_if] = ACTIONS(957), + [anon_sym_else] = ACTIONS(957), + [anon_sym_switch] = ACTIONS(957), + [anon_sym_case] = ACTIONS(957), + [anon_sym_default] = ACTIONS(957), + [anon_sym_while] = ACTIONS(957), + [anon_sym_do] = ACTIONS(957), + [anon_sym_for] = ACTIONS(957), + [anon_sym_return] = ACTIONS(957), + [anon_sym_break] = ACTIONS(957), + [anon_sym_continue] = ACTIONS(957), + [anon_sym_goto] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(955), + [anon_sym_BANG] = ACTIONS(955), + [anon_sym_TILDE] = ACTIONS(955), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_DASH_DASH] = ACTIONS(955), + [anon_sym_PLUS_PLUS] = ACTIONS(955), + [anon_sym_sizeof] = ACTIONS(957), + [sym_number_literal] = ACTIONS(955), + [anon_sym_L_SQUOTE] = ACTIONS(955), + [anon_sym_SQUOTE] = ACTIONS(955), + [anon_sym_L_DQUOTE] = ACTIONS(955), + [anon_sym_DQUOTE] = ACTIONS(955), + [sym_true] = ACTIONS(957), + [sym_false] = ACTIONS(957), + [sym_null] = ACTIONS(957), + [sym_comment] = ACTIONS(3), }, [637] = { - [sym_true] = ACTIONS(792), - [anon_sym_restrict] = ACTIONS(792), - [sym_null] = ACTIONS(792), - [anon_sym_goto] = ACTIONS(792), - [aux_sym_preproc_if_token2] = ACTIONS(792), - [anon_sym_const] = ACTIONS(792), - [anon_sym_typedef] = ACTIONS(792), - [anon_sym_DASH_DASH] = ACTIONS(794), - [anon_sym__Atomic] = ACTIONS(792), - [sym_identifier] = ACTIONS(792), - [aux_sym_preproc_ifdef_token1] = ACTIONS(792), - [sym_number_literal] = ACTIONS(794), - [anon_sym_volatile] = ACTIONS(792), - [anon_sym_SQUOTE] = ACTIONS(794), - [anon_sym_extern] = ACTIONS(792), - [anon_sym_PLUS_PLUS] = ACTIONS(794), - [anon_sym_struct] = ACTIONS(792), - [anon_sym_signed] = ACTIONS(792), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(792), - [anon_sym_while] = ACTIONS(792), - [aux_sym_preproc_ifdef_token2] = ACTIONS(792), - [aux_sym_preproc_elif_token1] = ACTIONS(792), - [anon_sym_L_SQUOTE] = ACTIONS(794), - [anon_sym___attribute__] = ACTIONS(792), - [anon_sym_sizeof] = ACTIONS(792), - [anon_sym_LBRACE] = ACTIONS(794), - [anon_sym_union] = ACTIONS(792), - [anon_sym_unsigned] = ACTIONS(792), - [anon_sym_short] = ACTIONS(792), - [anon_sym_do] = ACTIONS(792), - [aux_sym_preproc_else_token1] = ACTIONS(792), - [sym_preproc_directive] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(794), - [aux_sym_preproc_if_token1] = ACTIONS(792), - [anon_sym_TILDE] = ACTIONS(794), - [anon_sym_L_DQUOTE] = ACTIONS(794), - [anon_sym_LPAREN2] = ACTIONS(794), - [anon_sym_else] = ACTIONS(792), - [sym_primitive_type] = ACTIONS(792), - [anon_sym_for] = ACTIONS(792), - [anon_sym_break] = ACTIONS(792), - [anon_sym_BANG] = ACTIONS(794), - [aux_sym_preproc_include_token1] = ACTIONS(792), - [anon_sym_DASH] = ACTIONS(792), - [anon_sym_static] = ACTIONS(792), - [anon_sym_DQUOTE] = ACTIONS(794), - [anon_sym_register] = ACTIONS(792), - [anon_sym_STAR] = ACTIONS(794), - [anon_sym_if] = ACTIONS(792), - [anon_sym_switch] = ACTIONS(792), - [anon_sym_enum] = ACTIONS(792), - [sym_false] = ACTIONS(792), - [anon_sym_return] = ACTIONS(792), - [anon_sym_continue] = ACTIONS(792), - [anon_sym_SEMI] = ACTIONS(794), - [aux_sym_preproc_def_token1] = ACTIONS(792), - [anon_sym_PLUS] = ACTIONS(792), - [anon_sym_auto] = ACTIONS(792), - [anon_sym_inline] = ACTIONS(792), + [sym_identifier] = ACTIONS(981), + [anon_sym_SEMI] = ACTIONS(979), + [anon_sym_LPAREN2] = ACTIONS(979), + [anon_sym_LBRACE] = ACTIONS(979), + [anon_sym_RBRACE] = ACTIONS(979), + [anon_sym_STAR] = ACTIONS(979), + [anon_sym_if] = ACTIONS(981), + [anon_sym_else] = ACTIONS(981), + [anon_sym_switch] = ACTIONS(981), + [anon_sym_case] = ACTIONS(981), + [anon_sym_default] = ACTIONS(981), + [anon_sym_while] = ACTIONS(981), + [anon_sym_do] = ACTIONS(981), + [anon_sym_for] = ACTIONS(981), + [anon_sym_return] = ACTIONS(981), + [anon_sym_break] = ACTIONS(981), + [anon_sym_continue] = ACTIONS(981), + [anon_sym_goto] = ACTIONS(981), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_BANG] = ACTIONS(979), + [anon_sym_TILDE] = ACTIONS(979), + [anon_sym_DASH] = ACTIONS(981), + [anon_sym_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(979), + [anon_sym_PLUS_PLUS] = ACTIONS(979), + [anon_sym_sizeof] = ACTIONS(981), + [sym_number_literal] = ACTIONS(979), + [anon_sym_L_SQUOTE] = ACTIONS(979), + [anon_sym_SQUOTE] = ACTIONS(979), + [anon_sym_L_DQUOTE] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(979), + [sym_true] = ACTIONS(981), + [sym_false] = ACTIONS(981), + [sym_null] = ACTIONS(981), + [sym_comment] = ACTIONS(3), }, [638] = { - [sym_true] = ACTIONS(822), - [anon_sym_restrict] = ACTIONS(822), - [sym_null] = ACTIONS(822), - [anon_sym_goto] = ACTIONS(822), - [aux_sym_preproc_if_token2] = ACTIONS(822), - [anon_sym_const] = ACTIONS(822), - [anon_sym_typedef] = ACTIONS(822), - [anon_sym_DASH_DASH] = ACTIONS(824), - [anon_sym__Atomic] = ACTIONS(822), - [sym_identifier] = ACTIONS(822), - [aux_sym_preproc_ifdef_token1] = ACTIONS(822), - [sym_number_literal] = ACTIONS(824), - [anon_sym_volatile] = ACTIONS(822), - [anon_sym_SQUOTE] = ACTIONS(824), - [anon_sym_extern] = ACTIONS(822), - [anon_sym_PLUS_PLUS] = ACTIONS(824), - [anon_sym_struct] = ACTIONS(822), - [anon_sym_signed] = ACTIONS(822), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(822), - [anon_sym_while] = ACTIONS(822), - [aux_sym_preproc_ifdef_token2] = ACTIONS(822), - [aux_sym_preproc_elif_token1] = ACTIONS(822), - [anon_sym_L_SQUOTE] = ACTIONS(824), - [anon_sym___attribute__] = ACTIONS(822), - [anon_sym_sizeof] = ACTIONS(822), - [anon_sym_LBRACE] = ACTIONS(824), - [anon_sym_union] = ACTIONS(822), - [anon_sym_unsigned] = ACTIONS(822), - [anon_sym_short] = ACTIONS(822), - [anon_sym_do] = ACTIONS(822), - [aux_sym_preproc_else_token1] = ACTIONS(822), - [sym_preproc_directive] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(824), - [aux_sym_preproc_if_token1] = ACTIONS(822), - [anon_sym_TILDE] = ACTIONS(824), - [anon_sym_L_DQUOTE] = ACTIONS(824), - [anon_sym_LPAREN2] = ACTIONS(824), - [anon_sym_else] = ACTIONS(822), - [sym_primitive_type] = ACTIONS(822), - [anon_sym_for] = ACTIONS(822), - [anon_sym_break] = ACTIONS(822), - [anon_sym_BANG] = ACTIONS(824), - [aux_sym_preproc_include_token1] = ACTIONS(822), - [anon_sym_DASH] = ACTIONS(822), - [anon_sym_static] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(824), - [anon_sym_register] = ACTIONS(822), - [anon_sym_STAR] = ACTIONS(824), - [anon_sym_if] = ACTIONS(822), - [anon_sym_switch] = ACTIONS(822), - [anon_sym_enum] = ACTIONS(822), - [sym_false] = ACTIONS(822), - [anon_sym_return] = ACTIONS(822), - [anon_sym_continue] = ACTIONS(822), - [anon_sym_SEMI] = ACTIONS(824), - [aux_sym_preproc_def_token1] = ACTIONS(822), - [anon_sym_PLUS] = ACTIONS(822), - [anon_sym_auto] = ACTIONS(822), - [anon_sym_inline] = ACTIONS(822), + [sym_identifier] = ACTIONS(1001), + [anon_sym_SEMI] = ACTIONS(999), + [anon_sym_LPAREN2] = ACTIONS(999), + [anon_sym_LBRACE] = ACTIONS(999), + [anon_sym_RBRACE] = ACTIONS(999), + [anon_sym_STAR] = ACTIONS(999), + [anon_sym_if] = ACTIONS(1001), + [anon_sym_else] = ACTIONS(1001), + [anon_sym_switch] = ACTIONS(1001), + [anon_sym_case] = ACTIONS(1001), + [anon_sym_default] = ACTIONS(1001), + [anon_sym_while] = ACTIONS(1001), + [anon_sym_do] = ACTIONS(1001), + [anon_sym_for] = ACTIONS(1001), + [anon_sym_return] = ACTIONS(1001), + [anon_sym_break] = ACTIONS(1001), + [anon_sym_continue] = ACTIONS(1001), + [anon_sym_goto] = ACTIONS(1001), + [anon_sym_AMP] = ACTIONS(999), + [anon_sym_BANG] = ACTIONS(999), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH_DASH] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(999), + [anon_sym_sizeof] = ACTIONS(1001), + [sym_number_literal] = ACTIONS(999), + [anon_sym_L_SQUOTE] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(999), + [anon_sym_L_DQUOTE] = ACTIONS(999), + [anon_sym_DQUOTE] = ACTIONS(999), + [sym_true] = ACTIONS(1001), + [sym_false] = ACTIONS(1001), + [sym_null] = ACTIONS(1001), + [sym_comment] = ACTIONS(3), }, [639] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(826), - [anon_sym_union] = ACTIONS(826), - [anon_sym_unsigned] = ACTIONS(826), - [anon_sym_restrict] = ACTIONS(826), - [anon_sym_short] = ACTIONS(826), - [anon_sym_static] = ACTIONS(826), - [anon_sym_volatile] = ACTIONS(826), - [anon_sym_register] = ACTIONS(826), - [anon_sym_extern] = ACTIONS(826), - [anon_sym_struct] = ACTIONS(826), - [sym_preproc_directive] = ACTIONS(826), - [anon_sym_signed] = ACTIONS(826), - [aux_sym_preproc_if_token1] = ACTIONS(826), - [anon_sym_long] = ACTIONS(826), - [anon_sym_enum] = ACTIONS(826), - [anon_sym_const] = ACTIONS(826), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(828), - [aux_sym_preproc_ifdef_token2] = ACTIONS(826), - [aux_sym_preproc_def_token1] = ACTIONS(826), - [anon_sym__Atomic] = ACTIONS(826), - [anon_sym_auto] = ACTIONS(826), - [sym_primitive_type] = ACTIONS(826), - [anon_sym_inline] = ACTIONS(826), - [anon_sym___attribute__] = ACTIONS(826), - [sym_identifier] = ACTIONS(826), + [sym_identifier] = ACTIONS(993), + [anon_sym_SEMI] = ACTIONS(991), + [anon_sym_LPAREN2] = ACTIONS(991), + [anon_sym_LBRACE] = ACTIONS(991), + [anon_sym_RBRACE] = ACTIONS(991), + [anon_sym_STAR] = ACTIONS(991), + [anon_sym_if] = ACTIONS(993), + [anon_sym_else] = ACTIONS(993), + [anon_sym_switch] = ACTIONS(993), + [anon_sym_case] = ACTIONS(993), + [anon_sym_default] = ACTIONS(993), + [anon_sym_while] = ACTIONS(993), + [anon_sym_do] = ACTIONS(993), + [anon_sym_for] = ACTIONS(993), + [anon_sym_return] = ACTIONS(993), + [anon_sym_break] = ACTIONS(993), + [anon_sym_continue] = ACTIONS(993), + [anon_sym_goto] = ACTIONS(993), + [anon_sym_AMP] = ACTIONS(991), + [anon_sym_BANG] = ACTIONS(991), + [anon_sym_TILDE] = ACTIONS(991), + [anon_sym_DASH] = ACTIONS(993), + [anon_sym_PLUS] = ACTIONS(993), + [anon_sym_DASH_DASH] = ACTIONS(991), + [anon_sym_PLUS_PLUS] = ACTIONS(991), + [anon_sym_sizeof] = ACTIONS(993), + [sym_number_literal] = ACTIONS(991), + [anon_sym_L_SQUOTE] = ACTIONS(991), + [anon_sym_SQUOTE] = ACTIONS(991), + [anon_sym_L_DQUOTE] = ACTIONS(991), + [anon_sym_DQUOTE] = ACTIONS(991), + [sym_true] = ACTIONS(993), + [sym_false] = ACTIONS(993), + [sym_null] = ACTIONS(993), + [sym_comment] = ACTIONS(3), }, [640] = { - [sym_true] = ACTIONS(830), - [anon_sym_restrict] = ACTIONS(830), - [sym_null] = ACTIONS(830), - [anon_sym_goto] = ACTIONS(830), - [aux_sym_preproc_if_token2] = ACTIONS(830), - [anon_sym_const] = ACTIONS(830), - [anon_sym_typedef] = ACTIONS(830), - [anon_sym_DASH_DASH] = ACTIONS(832), - [anon_sym__Atomic] = ACTIONS(830), - [sym_identifier] = ACTIONS(830), - [aux_sym_preproc_ifdef_token1] = ACTIONS(830), - [sym_number_literal] = ACTIONS(832), - [anon_sym_volatile] = ACTIONS(830), - [anon_sym_SQUOTE] = ACTIONS(832), - [anon_sym_extern] = ACTIONS(830), - [anon_sym_PLUS_PLUS] = ACTIONS(832), - [anon_sym_struct] = ACTIONS(830), - [anon_sym_signed] = ACTIONS(830), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(830), - [anon_sym_while] = ACTIONS(830), - [aux_sym_preproc_ifdef_token2] = ACTIONS(830), - [aux_sym_preproc_elif_token1] = ACTIONS(830), - [anon_sym_L_SQUOTE] = ACTIONS(832), - [anon_sym___attribute__] = ACTIONS(830), - [anon_sym_sizeof] = ACTIONS(830), - [anon_sym_LBRACE] = ACTIONS(832), - [anon_sym_union] = ACTIONS(830), - [anon_sym_unsigned] = ACTIONS(830), - [anon_sym_short] = ACTIONS(830), - [anon_sym_do] = ACTIONS(830), - [aux_sym_preproc_else_token1] = ACTIONS(830), - [sym_preproc_directive] = ACTIONS(830), - [anon_sym_AMP] = ACTIONS(832), - [aux_sym_preproc_if_token1] = ACTIONS(830), - [anon_sym_TILDE] = ACTIONS(832), - [anon_sym_L_DQUOTE] = ACTIONS(832), - [anon_sym_LPAREN2] = ACTIONS(832), - [sym_primitive_type] = ACTIONS(830), - [anon_sym_for] = ACTIONS(830), - [anon_sym_break] = ACTIONS(830), - [anon_sym_BANG] = ACTIONS(832), - [aux_sym_preproc_include_token1] = ACTIONS(830), - [anon_sym_DASH] = ACTIONS(830), - [anon_sym_static] = ACTIONS(830), - [anon_sym_DQUOTE] = ACTIONS(832), - [anon_sym_register] = ACTIONS(830), - [anon_sym_STAR] = ACTIONS(832), - [anon_sym_if] = ACTIONS(830), - [anon_sym_switch] = ACTIONS(830), - [anon_sym_enum] = ACTIONS(830), - [sym_false] = ACTIONS(830), - [anon_sym_return] = ACTIONS(830), - [anon_sym_continue] = ACTIONS(830), - [anon_sym_SEMI] = ACTIONS(832), - [aux_sym_preproc_def_token1] = ACTIONS(830), - [anon_sym_PLUS] = ACTIONS(830), - [anon_sym_auto] = ACTIONS(830), - [anon_sym_inline] = ACTIONS(830), + [sym_identifier] = ACTIONS(1051), + [anon_sym_SEMI] = ACTIONS(1049), + [anon_sym_LPAREN2] = ACTIONS(1049), + [anon_sym_LBRACE] = ACTIONS(1049), + [anon_sym_RBRACE] = ACTIONS(1049), + [anon_sym_STAR] = ACTIONS(1049), + [anon_sym_if] = ACTIONS(1051), + [anon_sym_else] = ACTIONS(1051), + [anon_sym_switch] = ACTIONS(1051), + [anon_sym_case] = ACTIONS(1051), + [anon_sym_default] = ACTIONS(1051), + [anon_sym_while] = ACTIONS(1051), + [anon_sym_do] = ACTIONS(1051), + [anon_sym_for] = ACTIONS(1051), + [anon_sym_return] = ACTIONS(1051), + [anon_sym_break] = ACTIONS(1051), + [anon_sym_continue] = ACTIONS(1051), + [anon_sym_goto] = ACTIONS(1051), + [anon_sym_AMP] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_TILDE] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_PLUS] = ACTIONS(1051), + [anon_sym_DASH_DASH] = ACTIONS(1049), + [anon_sym_PLUS_PLUS] = ACTIONS(1049), + [anon_sym_sizeof] = ACTIONS(1051), + [sym_number_literal] = ACTIONS(1049), + [anon_sym_L_SQUOTE] = ACTIONS(1049), + [anon_sym_SQUOTE] = ACTIONS(1049), + [anon_sym_L_DQUOTE] = ACTIONS(1049), + [anon_sym_DQUOTE] = ACTIONS(1049), + [sym_true] = ACTIONS(1051), + [sym_false] = ACTIONS(1051), + [sym_null] = ACTIONS(1051), + [sym_comment] = ACTIONS(3), }, [641] = { - [anon_sym_case] = ACTIONS(892), - [sym_true] = ACTIONS(892), - [anon_sym_restrict] = ACTIONS(892), - [sym_null] = ACTIONS(892), - [anon_sym_goto] = ACTIONS(892), - [anon_sym_const] = ACTIONS(892), - [anon_sym_typedef] = ACTIONS(892), - [anon_sym_DASH_DASH] = ACTIONS(894), - [anon_sym_default] = ACTIONS(892), - [anon_sym__Atomic] = ACTIONS(892), - [sym_identifier] = ACTIONS(892), - [aux_sym_preproc_ifdef_token1] = ACTIONS(892), - [sym_number_literal] = ACTIONS(894), - [anon_sym_volatile] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(894), - [anon_sym_extern] = ACTIONS(892), - [anon_sym_PLUS_PLUS] = ACTIONS(894), - [anon_sym_struct] = ACTIONS(892), - [anon_sym_signed] = ACTIONS(892), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(892), - [anon_sym_while] = ACTIONS(892), - [aux_sym_preproc_ifdef_token2] = ACTIONS(892), - [anon_sym_L_SQUOTE] = ACTIONS(894), - [anon_sym___attribute__] = ACTIONS(892), - [anon_sym_sizeof] = ACTIONS(892), - [anon_sym_LBRACE] = ACTIONS(894), - [anon_sym_union] = ACTIONS(892), - [anon_sym_unsigned] = ACTIONS(892), - [anon_sym_short] = ACTIONS(892), - [anon_sym_do] = ACTIONS(892), - [sym_preproc_directive] = ACTIONS(892), - [anon_sym_AMP] = ACTIONS(894), - [aux_sym_preproc_if_token1] = ACTIONS(892), - [anon_sym_TILDE] = ACTIONS(894), - [anon_sym_L_DQUOTE] = ACTIONS(894), - [anon_sym_LPAREN2] = ACTIONS(894), - [anon_sym_RBRACE] = ACTIONS(894), - [anon_sym_else] = ACTIONS(892), - [sym_primitive_type] = ACTIONS(892), - [anon_sym_for] = ACTIONS(892), - [anon_sym_break] = ACTIONS(892), - [anon_sym_BANG] = ACTIONS(894), - [aux_sym_preproc_include_token1] = ACTIONS(892), - [anon_sym_DASH] = ACTIONS(892), - [anon_sym_static] = ACTIONS(892), - [anon_sym_DQUOTE] = ACTIONS(894), - [anon_sym_register] = ACTIONS(892), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_if] = ACTIONS(892), - [anon_sym_switch] = ACTIONS(892), - [anon_sym_enum] = ACTIONS(892), - [sym_false] = ACTIONS(892), - [ts_builtin_sym_end] = ACTIONS(894), - [anon_sym_return] = ACTIONS(892), - [anon_sym_continue] = ACTIONS(892), - [anon_sym_SEMI] = ACTIONS(894), - [aux_sym_preproc_def_token1] = ACTIONS(892), - [anon_sym_PLUS] = ACTIONS(892), - [anon_sym_auto] = ACTIONS(892), - [anon_sym_inline] = ACTIONS(892), + [sym_identifier] = ACTIONS(1021), + [anon_sym_SEMI] = ACTIONS(1019), + [anon_sym_LPAREN2] = ACTIONS(1019), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_RBRACE] = ACTIONS(1019), + [anon_sym_STAR] = ACTIONS(1019), + [anon_sym_if] = ACTIONS(1021), + [anon_sym_else] = ACTIONS(2157), + [anon_sym_switch] = ACTIONS(1021), + [anon_sym_case] = ACTIONS(1021), + [anon_sym_default] = ACTIONS(1021), + [anon_sym_while] = ACTIONS(1021), + [anon_sym_do] = ACTIONS(1021), + [anon_sym_for] = ACTIONS(1021), + [anon_sym_return] = ACTIONS(1021), + [anon_sym_break] = ACTIONS(1021), + [anon_sym_continue] = ACTIONS(1021), + [anon_sym_goto] = ACTIONS(1021), + [anon_sym_AMP] = ACTIONS(1019), + [anon_sym_BANG] = ACTIONS(1019), + [anon_sym_TILDE] = ACTIONS(1019), + [anon_sym_DASH] = ACTIONS(1021), + [anon_sym_PLUS] = ACTIONS(1021), + [anon_sym_DASH_DASH] = ACTIONS(1019), + [anon_sym_PLUS_PLUS] = ACTIONS(1019), + [anon_sym_sizeof] = ACTIONS(1021), + [sym_number_literal] = ACTIONS(1019), + [anon_sym_L_SQUOTE] = ACTIONS(1019), + [anon_sym_SQUOTE] = ACTIONS(1019), + [anon_sym_L_DQUOTE] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(1019), + [sym_true] = ACTIONS(1021), + [sym_false] = ACTIONS(1021), + [sym_null] = ACTIONS(1021), + [sym_comment] = ACTIONS(3), }, [642] = { - [sym_true] = ACTIONS(937), - [anon_sym_restrict] = ACTIONS(937), - [sym_null] = ACTIONS(937), - [anon_sym_goto] = ACTIONS(937), - [anon_sym_const] = ACTIONS(937), - [anon_sym_typedef] = ACTIONS(937), - [anon_sym_DASH_DASH] = ACTIONS(939), - [anon_sym__Atomic] = ACTIONS(937), - [sym_identifier] = ACTIONS(937), - [aux_sym_preproc_ifdef_token1] = ACTIONS(937), - [sym_number_literal] = ACTIONS(939), - [anon_sym_volatile] = ACTIONS(937), - [anon_sym_SQUOTE] = ACTIONS(939), - [anon_sym_extern] = ACTIONS(937), - [anon_sym_PLUS_PLUS] = ACTIONS(939), - [anon_sym_struct] = ACTIONS(937), - [anon_sym_signed] = ACTIONS(937), + [sym_identifier] = ACTIONS(953), + [anon_sym_SEMI] = ACTIONS(951), + [anon_sym_LPAREN2] = ACTIONS(951), + [anon_sym_LBRACE] = ACTIONS(951), + [anon_sym_RBRACE] = ACTIONS(951), + [anon_sym_STAR] = ACTIONS(951), + [anon_sym_if] = ACTIONS(953), + [anon_sym_else] = ACTIONS(953), + [anon_sym_switch] = ACTIONS(953), + [anon_sym_case] = ACTIONS(953), + [anon_sym_default] = ACTIONS(953), + [anon_sym_while] = ACTIONS(953), + [anon_sym_do] = ACTIONS(953), + [anon_sym_for] = ACTIONS(953), + [anon_sym_return] = ACTIONS(953), + [anon_sym_break] = ACTIONS(953), + [anon_sym_continue] = ACTIONS(953), + [anon_sym_goto] = ACTIONS(953), + [anon_sym_AMP] = ACTIONS(951), + [anon_sym_BANG] = ACTIONS(951), + [anon_sym_TILDE] = ACTIONS(951), + [anon_sym_DASH] = ACTIONS(953), + [anon_sym_PLUS] = ACTIONS(953), + [anon_sym_DASH_DASH] = ACTIONS(951), + [anon_sym_PLUS_PLUS] = ACTIONS(951), + [anon_sym_sizeof] = ACTIONS(953), + [sym_number_literal] = ACTIONS(951), + [anon_sym_L_SQUOTE] = ACTIONS(951), + [anon_sym_SQUOTE] = ACTIONS(951), + [anon_sym_L_DQUOTE] = ACTIONS(951), + [anon_sym_DQUOTE] = ACTIONS(951), + [sym_true] = ACTIONS(953), + [sym_false] = ACTIONS(953), + [sym_null] = ACTIONS(953), [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(937), - [anon_sym_while] = ACTIONS(937), - [aux_sym_preproc_ifdef_token2] = ACTIONS(937), - [anon_sym_L_SQUOTE] = ACTIONS(939), - [anon_sym___attribute__] = ACTIONS(937), - [anon_sym_sizeof] = ACTIONS(937), - [anon_sym_LBRACE] = ACTIONS(939), - [anon_sym_union] = ACTIONS(937), - [anon_sym_unsigned] = ACTIONS(937), - [anon_sym_short] = ACTIONS(937), - [anon_sym_do] = ACTIONS(937), - [sym_preproc_directive] = ACTIONS(937), - [anon_sym_AMP] = ACTIONS(939), - [aux_sym_preproc_if_token1] = ACTIONS(937), - [anon_sym_TILDE] = ACTIONS(939), - [anon_sym_L_DQUOTE] = ACTIONS(939), - [anon_sym_LPAREN2] = ACTIONS(939), - [anon_sym_RBRACE] = ACTIONS(939), - [sym_primitive_type] = ACTIONS(937), - [anon_sym_for] = ACTIONS(937), - [anon_sym_break] = ACTIONS(937), - [anon_sym_BANG] = ACTIONS(939), - [aux_sym_preproc_include_token1] = ACTIONS(937), - [anon_sym_DASH] = ACTIONS(937), - [anon_sym_static] = ACTIONS(937), - [anon_sym_DQUOTE] = ACTIONS(939), - [anon_sym_register] = ACTIONS(937), - [anon_sym_STAR] = ACTIONS(939), - [anon_sym_if] = ACTIONS(937), - [anon_sym_switch] = ACTIONS(937), - [anon_sym_enum] = ACTIONS(937), - [sym_false] = ACTIONS(937), - [anon_sym_return] = ACTIONS(937), - [anon_sym_continue] = ACTIONS(937), - [anon_sym_SEMI] = ACTIONS(939), - [aux_sym_preproc_def_token1] = ACTIONS(937), - [anon_sym_PLUS] = ACTIONS(937), - [anon_sym_auto] = ACTIONS(937), - [anon_sym_inline] = ACTIONS(937), }, [643] = { - [sym_true] = ACTIONS(950), - [anon_sym_restrict] = ACTIONS(950), - [sym_null] = ACTIONS(950), - [anon_sym_goto] = ACTIONS(950), - [aux_sym_preproc_if_token2] = ACTIONS(950), - [anon_sym_const] = ACTIONS(950), - [anon_sym_typedef] = ACTIONS(950), - [anon_sym_DASH_DASH] = ACTIONS(952), - [anon_sym__Atomic] = ACTIONS(950), - [sym_identifier] = ACTIONS(950), - [aux_sym_preproc_ifdef_token1] = ACTIONS(950), - [sym_number_literal] = ACTIONS(952), - [anon_sym_volatile] = ACTIONS(950), - [anon_sym_SQUOTE] = ACTIONS(952), - [anon_sym_extern] = ACTIONS(950), - [anon_sym_PLUS_PLUS] = ACTIONS(952), - [anon_sym_struct] = ACTIONS(950), - [anon_sym_signed] = ACTIONS(950), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(950), - [anon_sym_while] = ACTIONS(950), - [aux_sym_preproc_ifdef_token2] = ACTIONS(950), - [aux_sym_preproc_elif_token1] = ACTIONS(950), - [anon_sym_L_SQUOTE] = ACTIONS(952), - [anon_sym___attribute__] = ACTIONS(950), - [anon_sym_sizeof] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(952), - [anon_sym_union] = ACTIONS(950), - [anon_sym_unsigned] = ACTIONS(950), - [anon_sym_short] = ACTIONS(950), - [anon_sym_do] = ACTIONS(950), - [aux_sym_preproc_else_token1] = ACTIONS(950), - [sym_preproc_directive] = ACTIONS(950), - [anon_sym_AMP] = ACTIONS(952), - [aux_sym_preproc_if_token1] = ACTIONS(950), - [anon_sym_TILDE] = ACTIONS(952), - [anon_sym_L_DQUOTE] = ACTIONS(952), - [anon_sym_LPAREN2] = ACTIONS(952), - [anon_sym_else] = ACTIONS(950), - [sym_primitive_type] = ACTIONS(950), - [anon_sym_for] = ACTIONS(950), - [anon_sym_break] = ACTIONS(950), - [anon_sym_BANG] = ACTIONS(952), - [aux_sym_preproc_include_token1] = ACTIONS(950), - [anon_sym_DASH] = ACTIONS(950), - [anon_sym_static] = ACTIONS(950), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_register] = ACTIONS(950), - [anon_sym_STAR] = ACTIONS(952), - [anon_sym_if] = ACTIONS(950), - [anon_sym_switch] = ACTIONS(950), - [anon_sym_enum] = ACTIONS(950), - [sym_false] = ACTIONS(950), - [anon_sym_return] = ACTIONS(950), - [anon_sym_continue] = ACTIONS(950), - [anon_sym_SEMI] = ACTIONS(952), - [aux_sym_preproc_def_token1] = ACTIONS(950), - [anon_sym_PLUS] = ACTIONS(950), - [anon_sym_auto] = ACTIONS(950), - [anon_sym_inline] = ACTIONS(950), + [sym_identifier] = ACTIONS(997), + [anon_sym_SEMI] = ACTIONS(995), + [anon_sym_LPAREN2] = ACTIONS(995), + [anon_sym_LBRACE] = ACTIONS(995), + [anon_sym_RBRACE] = ACTIONS(995), + [anon_sym_STAR] = ACTIONS(995), + [anon_sym_if] = ACTIONS(997), + [anon_sym_else] = ACTIONS(997), + [anon_sym_switch] = ACTIONS(997), + [anon_sym_case] = ACTIONS(997), + [anon_sym_default] = ACTIONS(997), + [anon_sym_while] = ACTIONS(997), + [anon_sym_do] = ACTIONS(997), + [anon_sym_for] = ACTIONS(997), + [anon_sym_return] = ACTIONS(997), + [anon_sym_break] = ACTIONS(997), + [anon_sym_continue] = ACTIONS(997), + [anon_sym_goto] = ACTIONS(997), + [anon_sym_AMP] = ACTIONS(995), + [anon_sym_BANG] = ACTIONS(995), + [anon_sym_TILDE] = ACTIONS(995), + [anon_sym_DASH] = ACTIONS(997), + [anon_sym_PLUS] = ACTIONS(997), + [anon_sym_DASH_DASH] = ACTIONS(995), + [anon_sym_PLUS_PLUS] = ACTIONS(995), + [anon_sym_sizeof] = ACTIONS(997), + [sym_number_literal] = ACTIONS(995), + [anon_sym_L_SQUOTE] = ACTIONS(995), + [anon_sym_SQUOTE] = ACTIONS(995), + [anon_sym_L_DQUOTE] = ACTIONS(995), + [anon_sym_DQUOTE] = ACTIONS(995), + [sym_true] = ACTIONS(997), + [sym_false] = ACTIONS(997), + [sym_null] = ACTIONS(997), + [sym_comment] = ACTIONS(3), }, [644] = { - [sym_true] = ACTIONS(970), - [anon_sym_restrict] = ACTIONS(970), - [sym_null] = ACTIONS(970), - [anon_sym_goto] = ACTIONS(970), - [aux_sym_preproc_if_token2] = ACTIONS(970), - [anon_sym_const] = ACTIONS(970), - [anon_sym_typedef] = ACTIONS(970), - [anon_sym_DASH_DASH] = ACTIONS(972), - [anon_sym__Atomic] = ACTIONS(970), - [sym_identifier] = ACTIONS(970), - [aux_sym_preproc_ifdef_token1] = ACTIONS(970), - [sym_number_literal] = ACTIONS(972), - [anon_sym_volatile] = ACTIONS(970), - [anon_sym_SQUOTE] = ACTIONS(972), - [anon_sym_extern] = ACTIONS(970), - [anon_sym_PLUS_PLUS] = ACTIONS(972), - [anon_sym_struct] = ACTIONS(970), - [anon_sym_signed] = ACTIONS(970), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(970), - [anon_sym_while] = ACTIONS(970), - [aux_sym_preproc_ifdef_token2] = ACTIONS(970), - [aux_sym_preproc_elif_token1] = ACTIONS(970), - [anon_sym_L_SQUOTE] = ACTIONS(972), - [anon_sym___attribute__] = ACTIONS(970), - [anon_sym_sizeof] = ACTIONS(970), - [anon_sym_LBRACE] = ACTIONS(972), - [anon_sym_union] = ACTIONS(970), - [anon_sym_unsigned] = ACTIONS(970), - [anon_sym_short] = ACTIONS(970), - [anon_sym_do] = ACTIONS(970), - [aux_sym_preproc_else_token1] = ACTIONS(970), - [sym_preproc_directive] = ACTIONS(970), - [anon_sym_AMP] = ACTIONS(972), - [aux_sym_preproc_if_token1] = ACTIONS(970), - [anon_sym_TILDE] = ACTIONS(972), - [anon_sym_L_DQUOTE] = ACTIONS(972), - [anon_sym_LPAREN2] = ACTIONS(972), - [sym_primitive_type] = ACTIONS(970), - [anon_sym_for] = ACTIONS(970), - [anon_sym_break] = ACTIONS(970), - [anon_sym_BANG] = ACTIONS(972), - [aux_sym_preproc_include_token1] = ACTIONS(970), - [anon_sym_DASH] = ACTIONS(970), - [anon_sym_static] = ACTIONS(970), - [anon_sym_DQUOTE] = ACTIONS(972), - [anon_sym_register] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_if] = ACTIONS(970), - [anon_sym_switch] = ACTIONS(970), - [anon_sym_enum] = ACTIONS(970), - [sym_false] = ACTIONS(970), - [anon_sym_return] = ACTIONS(970), - [anon_sym_continue] = ACTIONS(970), - [anon_sym_SEMI] = ACTIONS(972), - [aux_sym_preproc_def_token1] = ACTIONS(970), - [anon_sym_PLUS] = ACTIONS(970), - [anon_sym_auto] = ACTIONS(970), - [anon_sym_inline] = ACTIONS(970), + [sym_identifier] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(959), + [anon_sym_LPAREN2] = ACTIONS(959), + [anon_sym_LBRACE] = ACTIONS(959), + [anon_sym_RBRACE] = ACTIONS(959), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_if] = ACTIONS(961), + [anon_sym_else] = ACTIONS(961), + [anon_sym_switch] = ACTIONS(961), + [anon_sym_case] = ACTIONS(961), + [anon_sym_default] = ACTIONS(961), + [anon_sym_while] = ACTIONS(961), + [anon_sym_do] = ACTIONS(961), + [anon_sym_for] = ACTIONS(961), + [anon_sym_return] = ACTIONS(961), + [anon_sym_break] = ACTIONS(961), + [anon_sym_continue] = ACTIONS(961), + [anon_sym_goto] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(959), + [anon_sym_BANG] = ACTIONS(959), + [anon_sym_TILDE] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(959), + [anon_sym_sizeof] = ACTIONS(961), + [sym_number_literal] = ACTIONS(959), + [anon_sym_L_SQUOTE] = ACTIONS(959), + [anon_sym_SQUOTE] = ACTIONS(959), + [anon_sym_L_DQUOTE] = ACTIONS(959), + [anon_sym_DQUOTE] = ACTIONS(959), + [sym_true] = ACTIONS(961), + [sym_false] = ACTIONS(961), + [sym_null] = ACTIONS(961), + [sym_comment] = ACTIONS(3), }, [645] = { - [sym_true] = ACTIONS(980), - [anon_sym_restrict] = ACTIONS(980), - [sym_null] = ACTIONS(980), - [anon_sym_goto] = ACTIONS(980), - [aux_sym_preproc_if_token2] = ACTIONS(980), - [anon_sym_const] = ACTIONS(980), - [anon_sym_typedef] = ACTIONS(980), - [anon_sym_DASH_DASH] = ACTIONS(982), - [anon_sym__Atomic] = ACTIONS(980), - [sym_identifier] = ACTIONS(980), - [aux_sym_preproc_ifdef_token1] = ACTIONS(980), - [sym_number_literal] = ACTIONS(982), - [anon_sym_volatile] = ACTIONS(980), - [anon_sym_SQUOTE] = ACTIONS(982), - [anon_sym_extern] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(982), - [anon_sym_struct] = ACTIONS(980), - [anon_sym_signed] = ACTIONS(980), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(980), - [anon_sym_while] = ACTIONS(980), - [aux_sym_preproc_ifdef_token2] = ACTIONS(980), - [aux_sym_preproc_elif_token1] = ACTIONS(980), - [anon_sym_L_SQUOTE] = ACTIONS(982), - [anon_sym___attribute__] = ACTIONS(980), - [anon_sym_sizeof] = ACTIONS(980), - [anon_sym_LBRACE] = ACTIONS(982), - [anon_sym_union] = ACTIONS(980), - [anon_sym_unsigned] = ACTIONS(980), - [anon_sym_short] = ACTIONS(980), - [anon_sym_do] = ACTIONS(980), - [aux_sym_preproc_else_token1] = ACTIONS(980), - [sym_preproc_directive] = ACTIONS(980), - [anon_sym_AMP] = ACTIONS(982), - [aux_sym_preproc_if_token1] = ACTIONS(980), - [anon_sym_TILDE] = ACTIONS(982), - [anon_sym_L_DQUOTE] = ACTIONS(982), - [anon_sym_LPAREN2] = ACTIONS(982), - [sym_primitive_type] = ACTIONS(980), - [anon_sym_for] = ACTIONS(980), - [anon_sym_break] = ACTIONS(980), - [anon_sym_BANG] = ACTIONS(982), - [aux_sym_preproc_include_token1] = ACTIONS(980), - [anon_sym_DASH] = ACTIONS(980), - [anon_sym_static] = ACTIONS(980), - [anon_sym_DQUOTE] = ACTIONS(982), - [anon_sym_register] = ACTIONS(980), - [anon_sym_STAR] = ACTIONS(982), - [anon_sym_if] = ACTIONS(980), - [anon_sym_switch] = ACTIONS(980), - [anon_sym_enum] = ACTIONS(980), - [sym_false] = ACTIONS(980), - [anon_sym_return] = ACTIONS(980), - [anon_sym_continue] = ACTIONS(980), - [anon_sym_SEMI] = ACTIONS(982), - [aux_sym_preproc_def_token1] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(980), - [anon_sym_auto] = ACTIONS(980), - [anon_sym_inline] = ACTIONS(980), + [sym_identifier] = ACTIONS(965), + [anon_sym_SEMI] = ACTIONS(963), + [anon_sym_LPAREN2] = ACTIONS(963), + [anon_sym_LBRACE] = ACTIONS(963), + [anon_sym_RBRACE] = ACTIONS(963), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_if] = ACTIONS(965), + [anon_sym_else] = ACTIONS(965), + [anon_sym_switch] = ACTIONS(965), + [anon_sym_case] = ACTIONS(965), + [anon_sym_default] = ACTIONS(965), + [anon_sym_while] = ACTIONS(965), + [anon_sym_do] = ACTIONS(965), + [anon_sym_for] = ACTIONS(965), + [anon_sym_return] = ACTIONS(965), + [anon_sym_break] = ACTIONS(965), + [anon_sym_continue] = ACTIONS(965), + [anon_sym_goto] = ACTIONS(965), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(963), + [anon_sym_TILDE] = ACTIONS(963), + [anon_sym_DASH] = ACTIONS(965), + [anon_sym_PLUS] = ACTIONS(965), + [anon_sym_DASH_DASH] = ACTIONS(963), + [anon_sym_PLUS_PLUS] = ACTIONS(963), + [anon_sym_sizeof] = ACTIONS(965), + [sym_number_literal] = ACTIONS(963), + [anon_sym_L_SQUOTE] = ACTIONS(963), + [anon_sym_SQUOTE] = ACTIONS(963), + [anon_sym_L_DQUOTE] = ACTIONS(963), + [anon_sym_DQUOTE] = ACTIONS(963), + [sym_true] = ACTIONS(965), + [sym_false] = ACTIONS(965), + [sym_null] = ACTIONS(965), + [sym_comment] = ACTIONS(3), }, [646] = { - [sym_true] = ACTIONS(984), - [anon_sym_restrict] = ACTIONS(984), - [sym_null] = ACTIONS(984), - [anon_sym_goto] = ACTIONS(984), - [aux_sym_preproc_if_token2] = ACTIONS(984), - [anon_sym_const] = ACTIONS(984), - [anon_sym_typedef] = ACTIONS(984), - [anon_sym_DASH_DASH] = ACTIONS(986), - [anon_sym__Atomic] = ACTIONS(984), - [sym_identifier] = ACTIONS(984), - [aux_sym_preproc_ifdef_token1] = ACTIONS(984), - [sym_number_literal] = ACTIONS(986), - [anon_sym_volatile] = ACTIONS(984), - [anon_sym_SQUOTE] = ACTIONS(986), - [anon_sym_extern] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(986), - [anon_sym_struct] = ACTIONS(984), - [anon_sym_signed] = ACTIONS(984), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(984), - [anon_sym_while] = ACTIONS(984), - [aux_sym_preproc_ifdef_token2] = ACTIONS(984), - [aux_sym_preproc_elif_token1] = ACTIONS(984), - [anon_sym_L_SQUOTE] = ACTIONS(986), - [anon_sym___attribute__] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(984), - [anon_sym_LBRACE] = ACTIONS(986), - [anon_sym_union] = ACTIONS(984), - [anon_sym_unsigned] = ACTIONS(984), - [anon_sym_short] = ACTIONS(984), - [anon_sym_do] = ACTIONS(984), - [aux_sym_preproc_else_token1] = ACTIONS(984), - [sym_preproc_directive] = ACTIONS(984), - [anon_sym_AMP] = ACTIONS(986), - [aux_sym_preproc_if_token1] = ACTIONS(984), - [anon_sym_TILDE] = ACTIONS(986), - [anon_sym_L_DQUOTE] = ACTIONS(986), - [anon_sym_LPAREN2] = ACTIONS(986), - [anon_sym_else] = ACTIONS(2361), - [sym_primitive_type] = ACTIONS(984), - [anon_sym_for] = ACTIONS(984), - [anon_sym_break] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(986), - [aux_sym_preproc_include_token1] = ACTIONS(984), - [anon_sym_DASH] = ACTIONS(984), - [anon_sym_static] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(986), - [anon_sym_register] = ACTIONS(984), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_if] = ACTIONS(984), - [anon_sym_switch] = ACTIONS(984), - [anon_sym_enum] = ACTIONS(984), - [sym_false] = ACTIONS(984), - [anon_sym_return] = ACTIONS(984), - [anon_sym_continue] = ACTIONS(984), - [anon_sym_SEMI] = ACTIONS(986), - [aux_sym_preproc_def_token1] = ACTIONS(984), - [anon_sym_PLUS] = ACTIONS(984), - [anon_sym_auto] = ACTIONS(984), - [anon_sym_inline] = ACTIONS(984), + [sym_identifier] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(971), + [anon_sym_LPAREN2] = ACTIONS(971), + [anon_sym_LBRACE] = ACTIONS(971), + [anon_sym_RBRACE] = ACTIONS(971), + [anon_sym_STAR] = ACTIONS(971), + [anon_sym_if] = ACTIONS(973), + [anon_sym_else] = ACTIONS(973), + [anon_sym_switch] = ACTIONS(973), + [anon_sym_case] = ACTIONS(973), + [anon_sym_default] = ACTIONS(973), + [anon_sym_while] = ACTIONS(973), + [anon_sym_do] = ACTIONS(973), + [anon_sym_for] = ACTIONS(973), + [anon_sym_return] = ACTIONS(973), + [anon_sym_break] = ACTIONS(973), + [anon_sym_continue] = ACTIONS(973), + [anon_sym_goto] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(971), + [anon_sym_BANG] = ACTIONS(971), + [anon_sym_TILDE] = ACTIONS(971), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_PLUS] = ACTIONS(973), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(971), + [anon_sym_sizeof] = ACTIONS(973), + [sym_number_literal] = ACTIONS(971), + [anon_sym_L_SQUOTE] = ACTIONS(971), + [anon_sym_SQUOTE] = ACTIONS(971), + [anon_sym_L_DQUOTE] = ACTIONS(971), + [anon_sym_DQUOTE] = ACTIONS(971), + [sym_true] = ACTIONS(973), + [sym_false] = ACTIONS(973), + [sym_null] = ACTIONS(973), + [sym_comment] = ACTIONS(3), }, [647] = { - [sym_true] = ACTIONS(1028), - [anon_sym_restrict] = ACTIONS(1028), - [sym_null] = ACTIONS(1028), - [anon_sym_goto] = ACTIONS(1028), - [aux_sym_preproc_if_token2] = ACTIONS(1028), - [anon_sym_const] = ACTIONS(1028), - [anon_sym_typedef] = ACTIONS(1028), - [anon_sym_DASH_DASH] = ACTIONS(1030), - [anon_sym__Atomic] = ACTIONS(1028), - [sym_identifier] = ACTIONS(1028), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1028), - [sym_number_literal] = ACTIONS(1030), - [anon_sym_volatile] = ACTIONS(1028), - [anon_sym_SQUOTE] = ACTIONS(1030), - [anon_sym_extern] = ACTIONS(1028), - [anon_sym_PLUS_PLUS] = ACTIONS(1030), - [anon_sym_struct] = ACTIONS(1028), - [anon_sym_signed] = ACTIONS(1028), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1028), - [anon_sym_while] = ACTIONS(1028), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1028), - [aux_sym_preproc_elif_token1] = ACTIONS(1028), - [anon_sym_L_SQUOTE] = ACTIONS(1030), - [anon_sym___attribute__] = ACTIONS(1028), - [anon_sym_sizeof] = ACTIONS(1028), - [anon_sym_LBRACE] = ACTIONS(1030), - [anon_sym_union] = ACTIONS(1028), - [anon_sym_unsigned] = ACTIONS(1028), - [anon_sym_short] = ACTIONS(1028), - [anon_sym_do] = ACTIONS(1028), - [aux_sym_preproc_else_token1] = ACTIONS(1028), - [sym_preproc_directive] = ACTIONS(1028), - [anon_sym_AMP] = ACTIONS(1030), - [aux_sym_preproc_if_token1] = ACTIONS(1028), - [anon_sym_TILDE] = ACTIONS(1030), - [anon_sym_L_DQUOTE] = ACTIONS(1030), - [anon_sym_LPAREN2] = ACTIONS(1030), - [anon_sym_else] = ACTIONS(1028), - [sym_primitive_type] = ACTIONS(1028), - [anon_sym_for] = ACTIONS(1028), - [anon_sym_break] = ACTIONS(1028), - [anon_sym_BANG] = ACTIONS(1030), - [aux_sym_preproc_include_token1] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1028), - [anon_sym_static] = ACTIONS(1028), - [anon_sym_DQUOTE] = ACTIONS(1030), - [anon_sym_register] = ACTIONS(1028), - [anon_sym_STAR] = ACTIONS(1030), - [anon_sym_if] = ACTIONS(1028), - [anon_sym_switch] = ACTIONS(1028), - [anon_sym_enum] = ACTIONS(1028), - [sym_false] = ACTIONS(1028), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_continue] = ACTIONS(1028), - [anon_sym_SEMI] = ACTIONS(1030), - [aux_sym_preproc_def_token1] = ACTIONS(1028), - [anon_sym_PLUS] = ACTIONS(1028), - [anon_sym_auto] = ACTIONS(1028), - [anon_sym_inline] = ACTIONS(1028), + [sym_identifier] = ACTIONS(969), + [anon_sym_SEMI] = ACTIONS(967), + [anon_sym_LPAREN2] = ACTIONS(967), + [anon_sym_LBRACE] = ACTIONS(967), + [anon_sym_RBRACE] = ACTIONS(967), + [anon_sym_STAR] = ACTIONS(967), + [anon_sym_if] = ACTIONS(969), + [anon_sym_else] = ACTIONS(969), + [anon_sym_switch] = ACTIONS(969), + [anon_sym_case] = ACTIONS(969), + [anon_sym_default] = ACTIONS(969), + [anon_sym_while] = ACTIONS(969), + [anon_sym_do] = ACTIONS(969), + [anon_sym_for] = ACTIONS(969), + [anon_sym_return] = ACTIONS(969), + [anon_sym_break] = ACTIONS(969), + [anon_sym_continue] = ACTIONS(969), + [anon_sym_goto] = ACTIONS(969), + [anon_sym_AMP] = ACTIONS(967), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DASH_DASH] = ACTIONS(967), + [anon_sym_PLUS_PLUS] = ACTIONS(967), + [anon_sym_sizeof] = ACTIONS(969), + [sym_number_literal] = ACTIONS(967), + [anon_sym_L_SQUOTE] = ACTIONS(967), + [anon_sym_SQUOTE] = ACTIONS(967), + [anon_sym_L_DQUOTE] = ACTIONS(967), + [anon_sym_DQUOTE] = ACTIONS(967), + [sym_true] = ACTIONS(969), + [sym_false] = ACTIONS(969), + [sym_null] = ACTIONS(969), + [sym_comment] = ACTIONS(3), }, [648] = { - [sym_true] = ACTIONS(1052), - [anon_sym_restrict] = ACTIONS(1052), - [sym_null] = ACTIONS(1052), - [anon_sym_goto] = ACTIONS(1052), - [aux_sym_preproc_if_token2] = ACTIONS(1052), - [anon_sym_const] = ACTIONS(1052), - [anon_sym_typedef] = ACTIONS(1052), - [anon_sym_DASH_DASH] = ACTIONS(1054), - [anon_sym__Atomic] = ACTIONS(1052), - [sym_identifier] = ACTIONS(1052), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1052), - [sym_number_literal] = ACTIONS(1054), - [anon_sym_volatile] = ACTIONS(1052), - [anon_sym_SQUOTE] = ACTIONS(1054), - [anon_sym_extern] = ACTIONS(1052), - [anon_sym_PLUS_PLUS] = ACTIONS(1054), - [anon_sym_struct] = ACTIONS(1052), - [anon_sym_signed] = ACTIONS(1052), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1052), - [anon_sym_while] = ACTIONS(1052), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1052), - [aux_sym_preproc_elif_token1] = ACTIONS(1052), - [anon_sym_L_SQUOTE] = ACTIONS(1054), - [anon_sym___attribute__] = ACTIONS(1052), - [anon_sym_sizeof] = ACTIONS(1052), - [anon_sym_LBRACE] = ACTIONS(1054), - [anon_sym_union] = ACTIONS(1052), - [anon_sym_unsigned] = ACTIONS(1052), - [anon_sym_short] = ACTIONS(1052), - [anon_sym_do] = ACTIONS(1052), - [aux_sym_preproc_else_token1] = ACTIONS(1052), - [sym_preproc_directive] = ACTIONS(1052), - [anon_sym_AMP] = ACTIONS(1054), - [aux_sym_preproc_if_token1] = ACTIONS(1052), - [anon_sym_TILDE] = ACTIONS(1054), - [anon_sym_L_DQUOTE] = ACTIONS(1054), - [anon_sym_LPAREN2] = ACTIONS(1054), - [anon_sym_else] = ACTIONS(1052), - [sym_primitive_type] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1052), - [anon_sym_break] = ACTIONS(1052), - [anon_sym_BANG] = ACTIONS(1054), - [aux_sym_preproc_include_token1] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1052), - [anon_sym_static] = ACTIONS(1052), - [anon_sym_DQUOTE] = ACTIONS(1054), - [anon_sym_register] = ACTIONS(1052), - [anon_sym_STAR] = ACTIONS(1054), - [anon_sym_if] = ACTIONS(1052), - [anon_sym_switch] = ACTIONS(1052), - [anon_sym_enum] = ACTIONS(1052), - [sym_false] = ACTIONS(1052), - [anon_sym_return] = ACTIONS(1052), - [anon_sym_continue] = ACTIONS(1052), - [anon_sym_SEMI] = ACTIONS(1054), - [aux_sym_preproc_def_token1] = ACTIONS(1052), - [anon_sym_PLUS] = ACTIONS(1052), - [anon_sym_auto] = ACTIONS(1052), - [anon_sym_inline] = ACTIONS(1052), + [sym__declaration_specifiers] = STATE(873), + [sym_attribute_specifier] = STATE(661), + [sym_storage_class_specifier] = STATE(661), + [sym_type_qualifier] = STATE(661), + [sym__type_specifier] = STATE(835), + [sym_sized_type_specifier] = STATE(835), + [sym_enum_specifier] = STATE(835), + [sym_struct_specifier] = STATE(835), + [sym_union_specifier] = STATE(835), + [sym_parameter_declaration] = STATE(1077), + [sym_macro_type_specifier] = STATE(835), + [aux_sym__declaration_specifiers_repeat1] = STATE(661), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(1209), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2159), + [anon_sym_extern] = ACTIONS(33), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(709), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [sym_comment] = ACTIONS(3), }, [649] = { - [sym_true] = ACTIONS(1056), - [anon_sym_restrict] = ACTIONS(1056), - [sym_null] = ACTIONS(1056), - [anon_sym_goto] = ACTIONS(1056), - [aux_sym_preproc_if_token2] = ACTIONS(1056), - [anon_sym_const] = ACTIONS(1056), - [anon_sym_typedef] = ACTIONS(1056), - [anon_sym_DASH_DASH] = ACTIONS(1058), - [anon_sym__Atomic] = ACTIONS(1056), - [sym_identifier] = ACTIONS(1056), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1056), - [sym_number_literal] = ACTIONS(1058), - [anon_sym_volatile] = ACTIONS(1056), - [anon_sym_SQUOTE] = ACTIONS(1058), - [anon_sym_extern] = ACTIONS(1056), - [anon_sym_PLUS_PLUS] = ACTIONS(1058), - [anon_sym_struct] = ACTIONS(1056), - [anon_sym_signed] = ACTIONS(1056), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1056), - [anon_sym_while] = ACTIONS(1056), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1056), - [aux_sym_preproc_elif_token1] = ACTIONS(1056), - [anon_sym_L_SQUOTE] = ACTIONS(1058), - [anon_sym___attribute__] = ACTIONS(1056), - [anon_sym_sizeof] = ACTIONS(1056), - [anon_sym_LBRACE] = ACTIONS(1058), - [anon_sym_union] = ACTIONS(1056), - [anon_sym_unsigned] = ACTIONS(1056), - [anon_sym_short] = ACTIONS(1056), - [anon_sym_do] = ACTIONS(1056), - [aux_sym_preproc_else_token1] = ACTIONS(1056), - [sym_preproc_directive] = ACTIONS(1056), - [anon_sym_AMP] = ACTIONS(1058), - [aux_sym_preproc_if_token1] = ACTIONS(1056), - [anon_sym_TILDE] = ACTIONS(1058), - [anon_sym_L_DQUOTE] = ACTIONS(1058), - [anon_sym_LPAREN2] = ACTIONS(1058), - [anon_sym_else] = ACTIONS(1056), - [sym_primitive_type] = ACTIONS(1056), - [anon_sym_for] = ACTIONS(1056), - [anon_sym_break] = ACTIONS(1056), - [anon_sym_BANG] = ACTIONS(1058), - [aux_sym_preproc_include_token1] = ACTIONS(1056), - [anon_sym_DASH] = ACTIONS(1056), - [anon_sym_static] = ACTIONS(1056), - [anon_sym_DQUOTE] = ACTIONS(1058), - [anon_sym_register] = ACTIONS(1056), - [anon_sym_STAR] = ACTIONS(1058), - [anon_sym_if] = ACTIONS(1056), - [anon_sym_switch] = ACTIONS(1056), - [anon_sym_enum] = ACTIONS(1056), - [sym_false] = ACTIONS(1056), - [anon_sym_return] = ACTIONS(1056), - [anon_sym_continue] = ACTIONS(1056), - [anon_sym_SEMI] = ACTIONS(1058), - [aux_sym_preproc_def_token1] = ACTIONS(1056), - [anon_sym_PLUS] = ACTIONS(1056), - [anon_sym_auto] = ACTIONS(1056), - [anon_sym_inline] = ACTIONS(1056), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(1403), + [anon_sym_RPAREN] = ACTIONS(1403), + [anon_sym_SEMI] = ACTIONS(1403), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_RBRACE] = ACTIONS(1403), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_RBRACK] = ACTIONS(1403), + [anon_sym_COLON] = ACTIONS(1403), + [anon_sym_QMARK] = ACTIONS(1403), + [anon_sym_AMP] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(1403), + [anon_sym_AMP_AMP] = ACTIONS(1403), + [anon_sym_PIPE] = ACTIONS(1411), + [anon_sym_CARET] = ACTIONS(1403), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [650] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1062), - [anon_sym_union] = ACTIONS(1062), - [anon_sym_unsigned] = ACTIONS(1062), - [anon_sym_restrict] = ACTIONS(1062), - [anon_sym_short] = ACTIONS(1062), - [anon_sym_static] = ACTIONS(1062), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_register] = ACTIONS(1062), - [anon_sym_extern] = ACTIONS(1062), - [anon_sym_struct] = ACTIONS(1062), - [sym_preproc_directive] = ACTIONS(1062), - [anon_sym_signed] = ACTIONS(1062), - [aux_sym_preproc_if_token1] = ACTIONS(1062), - [anon_sym_long] = ACTIONS(1062), - [anon_sym_enum] = ACTIONS(1062), - [anon_sym_const] = ACTIONS(1062), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(1064), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1062), - [aux_sym_preproc_def_token1] = ACTIONS(1062), - [anon_sym__Atomic] = ACTIONS(1062), - [anon_sym_auto] = ACTIONS(1062), - [sym_primitive_type] = ACTIONS(1062), - [anon_sym_inline] = ACTIONS(1062), - [anon_sym___attribute__] = ACTIONS(1062), - [sym_identifier] = ACTIONS(1062), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(1403), + [anon_sym_RPAREN] = ACTIONS(1403), + [anon_sym_SEMI] = ACTIONS(1403), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_RBRACE] = ACTIONS(1403), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_RBRACK] = ACTIONS(1403), + [anon_sym_COLON] = ACTIONS(1403), + [anon_sym_QMARK] = ACTIONS(1403), + [anon_sym_AMP] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(1403), + [anon_sym_AMP_AMP] = ACTIONS(1403), + [anon_sym_PIPE] = ACTIONS(1411), + [anon_sym_CARET] = ACTIONS(1403), + [anon_sym_EQ_EQ] = ACTIONS(1403), + [anon_sym_BANG_EQ] = ACTIONS(1403), + [anon_sym_GT] = ACTIONS(1411), + [anon_sym_GT_EQ] = ACTIONS(1403), + [anon_sym_LT_EQ] = ACTIONS(1403), + [anon_sym_LT] = ACTIONS(1411), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [651] = { - [sym_true] = ACTIONS(1110), - [anon_sym_restrict] = ACTIONS(1110), - [sym_null] = ACTIONS(1110), - [anon_sym_goto] = ACTIONS(1110), - [aux_sym_preproc_if_token2] = ACTIONS(1110), - [anon_sym_const] = ACTIONS(1110), - [anon_sym_typedef] = ACTIONS(1110), - [anon_sym_DASH_DASH] = ACTIONS(1112), - [anon_sym__Atomic] = ACTIONS(1110), - [sym_identifier] = ACTIONS(1110), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1110), - [sym_number_literal] = ACTIONS(1112), - [anon_sym_volatile] = ACTIONS(1110), - [anon_sym_SQUOTE] = ACTIONS(1112), - [anon_sym_extern] = ACTIONS(1110), - [anon_sym_PLUS_PLUS] = ACTIONS(1112), - [anon_sym_struct] = ACTIONS(1110), - [anon_sym_signed] = ACTIONS(1110), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1110), - [anon_sym_while] = ACTIONS(1110), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1110), - [aux_sym_preproc_elif_token1] = ACTIONS(1110), - [anon_sym_L_SQUOTE] = ACTIONS(1112), - [anon_sym___attribute__] = ACTIONS(1110), - [anon_sym_sizeof] = ACTIONS(1110), - [anon_sym_LBRACE] = ACTIONS(1112), - [anon_sym_union] = ACTIONS(1110), - [anon_sym_unsigned] = ACTIONS(1110), - [anon_sym_short] = ACTIONS(1110), - [anon_sym_do] = ACTIONS(1110), - [aux_sym_preproc_else_token1] = ACTIONS(1110), - [sym_preproc_directive] = ACTIONS(1110), - [anon_sym_AMP] = ACTIONS(1112), - [aux_sym_preproc_if_token1] = ACTIONS(1110), - [anon_sym_TILDE] = ACTIONS(1112), - [anon_sym_L_DQUOTE] = ACTIONS(1112), - [anon_sym_LPAREN2] = ACTIONS(1112), - [sym_primitive_type] = ACTIONS(1110), - [anon_sym_for] = ACTIONS(1110), - [anon_sym_break] = ACTIONS(1110), - [anon_sym_BANG] = ACTIONS(1112), - [aux_sym_preproc_include_token1] = ACTIONS(1110), - [anon_sym_DASH] = ACTIONS(1110), - [anon_sym_static] = ACTIONS(1110), - [anon_sym_DQUOTE] = ACTIONS(1112), - [anon_sym_register] = ACTIONS(1110), - [anon_sym_STAR] = ACTIONS(1112), - [anon_sym_if] = ACTIONS(1110), - [anon_sym_switch] = ACTIONS(1110), - [anon_sym_enum] = ACTIONS(1110), - [sym_false] = ACTIONS(1110), - [anon_sym_return] = ACTIONS(1110), - [anon_sym_continue] = ACTIONS(1110), - [anon_sym_SEMI] = ACTIONS(1112), - [aux_sym_preproc_def_token1] = ACTIONS(1110), - [anon_sym_PLUS] = ACTIONS(1110), - [anon_sym_auto] = ACTIONS(1110), - [anon_sym_inline] = ACTIONS(1110), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(1403), + [anon_sym_RPAREN] = ACTIONS(1403), + [anon_sym_SEMI] = ACTIONS(1403), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_RBRACE] = ACTIONS(1403), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_RBRACK] = ACTIONS(1403), + [anon_sym_COLON] = ACTIONS(1403), + [anon_sym_QMARK] = ACTIONS(1403), + [anon_sym_AMP] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(1403), + [anon_sym_AMP_AMP] = ACTIONS(1403), + [anon_sym_PIPE] = ACTIONS(1411), + [anon_sym_CARET] = ACTIONS(1403), + [anon_sym_EQ_EQ] = ACTIONS(1403), + [anon_sym_BANG_EQ] = ACTIONS(1403), + [anon_sym_GT] = ACTIONS(1411), + [anon_sym_GT_EQ] = ACTIONS(1403), + [anon_sym_LT_EQ] = ACTIONS(1403), + [anon_sym_LT] = ACTIONS(1411), + [anon_sym_LT_LT] = ACTIONS(1403), + [anon_sym_GT_GT] = ACTIONS(1403), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [652] = { - [sym_true] = ACTIONS(1128), - [anon_sym_restrict] = ACTIONS(1128), - [sym_null] = ACTIONS(1128), - [anon_sym_goto] = ACTIONS(1128), - [aux_sym_preproc_if_token2] = ACTIONS(1128), - [anon_sym_const] = ACTIONS(1128), - [anon_sym_typedef] = ACTIONS(1128), - [anon_sym_DASH_DASH] = ACTIONS(1130), - [anon_sym__Atomic] = ACTIONS(1128), - [sym_identifier] = ACTIONS(1128), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1128), - [sym_number_literal] = ACTIONS(1130), - [anon_sym_volatile] = ACTIONS(1128), - [anon_sym_SQUOTE] = ACTIONS(1130), - [anon_sym_extern] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1130), - [anon_sym_struct] = ACTIONS(1128), - [anon_sym_signed] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1128), - [anon_sym_while] = ACTIONS(1128), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1128), - [aux_sym_preproc_elif_token1] = ACTIONS(1128), - [anon_sym_L_SQUOTE] = ACTIONS(1130), - [anon_sym___attribute__] = ACTIONS(1128), - [anon_sym_sizeof] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(1130), - [anon_sym_union] = ACTIONS(1128), - [anon_sym_unsigned] = ACTIONS(1128), - [anon_sym_short] = ACTIONS(1128), - [anon_sym_do] = ACTIONS(1128), - [aux_sym_preproc_else_token1] = ACTIONS(1128), - [sym_preproc_directive] = ACTIONS(1128), - [anon_sym_AMP] = ACTIONS(1130), - [aux_sym_preproc_if_token1] = ACTIONS(1128), - [anon_sym_TILDE] = ACTIONS(1130), - [anon_sym_L_DQUOTE] = ACTIONS(1130), - [anon_sym_LPAREN2] = ACTIONS(1130), - [sym_primitive_type] = ACTIONS(1128), - [anon_sym_for] = ACTIONS(1128), - [anon_sym_break] = ACTIONS(1128), - [anon_sym_BANG] = ACTIONS(1130), - [aux_sym_preproc_include_token1] = ACTIONS(1128), - [anon_sym_DASH] = ACTIONS(1128), - [anon_sym_static] = ACTIONS(1128), - [anon_sym_DQUOTE] = ACTIONS(1130), - [anon_sym_register] = ACTIONS(1128), - [anon_sym_STAR] = ACTIONS(1130), - [anon_sym_if] = ACTIONS(1128), - [anon_sym_switch] = ACTIONS(1128), - [anon_sym_enum] = ACTIONS(1128), - [sym_false] = ACTIONS(1128), - [anon_sym_return] = ACTIONS(1128), - [anon_sym_continue] = ACTIONS(1128), - [anon_sym_SEMI] = ACTIONS(1130), - [aux_sym_preproc_def_token1] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1128), - [anon_sym_auto] = ACTIONS(1128), - [anon_sym_inline] = ACTIONS(1128), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(1403), + [anon_sym_RPAREN] = ACTIONS(1403), + [anon_sym_SEMI] = ACTIONS(1403), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_RBRACE] = ACTIONS(1403), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_RBRACK] = ACTIONS(1403), + [anon_sym_COLON] = ACTIONS(1403), + [anon_sym_QMARK] = ACTIONS(1403), + [anon_sym_AMP] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(1403), + [anon_sym_AMP_AMP] = ACTIONS(1403), + [anon_sym_PIPE] = ACTIONS(1411), + [anon_sym_CARET] = ACTIONS(1403), + [anon_sym_EQ_EQ] = ACTIONS(1403), + [anon_sym_BANG_EQ] = ACTIONS(1403), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [653] = { - [sym_preproc_def] = STATE(653), - [sym_preproc_function_def] = STATE(653), - [sym_sized_type_specifier] = STATE(130), - [sym_enum_specifier] = STATE(130), - [sym__field_declaration_list_item] = STATE(653), - [sym_field_declaration] = STATE(653), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(653), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(130), - [sym_union_specifier] = STATE(130), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_attribute_specifier] = STATE(43), - [sym_macro_type_specifier] = STATE(130), - [sym_preproc_call] = STATE(653), - [sym_preproc_if_in_field_declaration_list] = STATE(653), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(653), - [sym_struct_specifier] = STATE(130), - [sym__declaration_specifiers] = STATE(969), - [sym_storage_class_specifier] = STATE(43), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2363), - [anon_sym_union] = ACTIONS(1168), - [anon_sym_unsigned] = ACTIONS(1171), - [anon_sym_restrict] = ACTIONS(1174), - [anon_sym_short] = ACTIONS(1171), - [anon_sym_static] = ACTIONS(1177), - [anon_sym_volatile] = ACTIONS(1174), - [anon_sym_register] = ACTIONS(1177), - [anon_sym_extern] = ACTIONS(1177), - [aux_sym_preproc_if_token2] = ACTIONS(2272), - [sym_preproc_directive] = ACTIONS(2366), - [anon_sym_signed] = ACTIONS(1171), - [aux_sym_preproc_if_token1] = ACTIONS(2369), - [anon_sym_long] = ACTIONS(1171), - [anon_sym_enum] = ACTIONS(1189), - [anon_sym_const] = ACTIONS(1174), - [anon_sym_struct] = ACTIONS(1180), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2363), - [aux_sym_preproc_def_token1] = ACTIONS(2372), - [anon_sym__Atomic] = ACTIONS(1174), - [anon_sym_auto] = ACTIONS(1177), - [sym_primitive_type] = ACTIONS(1197), - [anon_sym_inline] = ACTIONS(1177), - [anon_sym___attribute__] = ACTIONS(1200), - [sym_identifier] = ACTIONS(1203), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(1403), + [anon_sym_RPAREN] = ACTIONS(1403), + [anon_sym_SEMI] = ACTIONS(1403), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_RBRACE] = ACTIONS(1403), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_RBRACK] = ACTIONS(1403), + [anon_sym_COLON] = ACTIONS(1403), + [anon_sym_QMARK] = ACTIONS(1403), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(1403), + [anon_sym_AMP_AMP] = ACTIONS(1403), + [anon_sym_PIPE] = ACTIONS(1411), + [anon_sym_CARET] = ACTIONS(1403), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [654] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1214), - [anon_sym_union] = ACTIONS(1214), - [anon_sym_unsigned] = ACTIONS(1214), - [anon_sym_restrict] = ACTIONS(1214), - [anon_sym_short] = ACTIONS(1214), - [anon_sym_static] = ACTIONS(1214), - [anon_sym_volatile] = ACTIONS(1214), - [anon_sym_register] = ACTIONS(1214), - [anon_sym_extern] = ACTIONS(1214), - [aux_sym_preproc_if_token2] = ACTIONS(1214), - [sym_preproc_directive] = ACTIONS(1214), - [anon_sym_signed] = ACTIONS(1214), - [aux_sym_preproc_if_token1] = ACTIONS(1214), - [anon_sym_long] = ACTIONS(1214), - [anon_sym_enum] = ACTIONS(1214), - [anon_sym_const] = ACTIONS(1214), - [anon_sym_struct] = ACTIONS(1214), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1214), - [aux_sym_preproc_def_token1] = ACTIONS(1214), - [anon_sym__Atomic] = ACTIONS(1214), - [anon_sym_auto] = ACTIONS(1214), - [sym_primitive_type] = ACTIONS(1214), - [anon_sym_inline] = ACTIONS(1214), - [anon_sym___attribute__] = ACTIONS(1214), - [sym_identifier] = ACTIONS(1214), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(1433), + [anon_sym_RPAREN] = ACTIONS(1433), + [anon_sym_SEMI] = ACTIONS(1433), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_RBRACE] = ACTIONS(1433), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_RBRACK] = ACTIONS(1433), + [anon_sym_COLON] = ACTIONS(1433), + [anon_sym_QMARK] = ACTIONS(1433), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [655] = { - [sym_true] = ACTIONS(1226), - [anon_sym_restrict] = ACTIONS(1226), - [sym_null] = ACTIONS(1226), - [anon_sym_goto] = ACTIONS(1226), - [aux_sym_preproc_if_token2] = ACTIONS(1226), - [anon_sym_const] = ACTIONS(1226), - [anon_sym_typedef] = ACTIONS(1226), - [anon_sym_DASH_DASH] = ACTIONS(1228), - [anon_sym__Atomic] = ACTIONS(1226), - [sym_identifier] = ACTIONS(1226), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1226), - [sym_number_literal] = ACTIONS(1228), - [anon_sym_volatile] = ACTIONS(1226), - [anon_sym_SQUOTE] = ACTIONS(1228), - [anon_sym_extern] = ACTIONS(1226), - [anon_sym_PLUS_PLUS] = ACTIONS(1228), - [anon_sym_struct] = ACTIONS(1226), - [anon_sym_signed] = ACTIONS(1226), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1226), - [anon_sym_while] = ACTIONS(1226), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1226), - [aux_sym_preproc_elif_token1] = ACTIONS(1226), - [anon_sym_L_SQUOTE] = ACTIONS(1228), - [anon_sym___attribute__] = ACTIONS(1226), - [anon_sym_sizeof] = ACTIONS(1226), - [anon_sym_LBRACE] = ACTIONS(1228), - [anon_sym_union] = ACTIONS(1226), - [anon_sym_unsigned] = ACTIONS(1226), - [anon_sym_short] = ACTIONS(1226), - [anon_sym_do] = ACTIONS(1226), - [aux_sym_preproc_else_token1] = ACTIONS(1226), - [sym_preproc_directive] = ACTIONS(1226), - [anon_sym_AMP] = ACTIONS(1228), - [aux_sym_preproc_if_token1] = ACTIONS(1226), - [anon_sym_TILDE] = ACTIONS(1228), - [anon_sym_L_DQUOTE] = ACTIONS(1228), - [anon_sym_LPAREN2] = ACTIONS(1228), - [anon_sym_else] = ACTIONS(1226), - [sym_primitive_type] = ACTIONS(1226), - [anon_sym_for] = ACTIONS(1226), - [anon_sym_break] = ACTIONS(1226), - [anon_sym_BANG] = ACTIONS(1228), - [aux_sym_preproc_include_token1] = ACTIONS(1226), - [anon_sym_DASH] = ACTIONS(1226), - [anon_sym_static] = ACTIONS(1226), - [anon_sym_DQUOTE] = ACTIONS(1228), - [anon_sym_register] = ACTIONS(1226), - [anon_sym_STAR] = ACTIONS(1228), - [anon_sym_if] = ACTIONS(1226), - [anon_sym_switch] = ACTIONS(1226), - [anon_sym_enum] = ACTIONS(1226), - [sym_false] = ACTIONS(1226), - [anon_sym_return] = ACTIONS(1226), - [anon_sym_continue] = ACTIONS(1226), - [anon_sym_SEMI] = ACTIONS(1228), - [aux_sym_preproc_def_token1] = ACTIONS(1226), - [anon_sym_PLUS] = ACTIONS(1226), - [anon_sym_auto] = ACTIONS(1226), - [anon_sym_inline] = ACTIONS(1226), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(1403), + [anon_sym_RPAREN] = ACTIONS(1403), + [anon_sym_SEMI] = ACTIONS(1403), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_RBRACE] = ACTIONS(1403), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_RBRACK] = ACTIONS(1403), + [anon_sym_COLON] = ACTIONS(1403), + [anon_sym_QMARK] = ACTIONS(1403), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(1403), + [anon_sym_AMP_AMP] = ACTIONS(1403), + [anon_sym_PIPE] = ACTIONS(1411), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [656] = { - [sym_true] = ACTIONS(1234), - [anon_sym_restrict] = ACTIONS(1234), - [sym_null] = ACTIONS(1234), - [anon_sym_goto] = ACTIONS(1234), - [aux_sym_preproc_if_token2] = ACTIONS(1234), - [anon_sym_const] = ACTIONS(1234), - [anon_sym_typedef] = ACTIONS(1234), - [anon_sym_DASH_DASH] = ACTIONS(1236), - [anon_sym__Atomic] = ACTIONS(1234), - [sym_identifier] = ACTIONS(1234), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1234), - [sym_number_literal] = ACTIONS(1236), - [anon_sym_volatile] = ACTIONS(1234), - [anon_sym_SQUOTE] = ACTIONS(1236), - [anon_sym_extern] = ACTIONS(1234), - [anon_sym_PLUS_PLUS] = ACTIONS(1236), - [anon_sym_struct] = ACTIONS(1234), - [anon_sym_signed] = ACTIONS(1234), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1234), - [anon_sym_while] = ACTIONS(1234), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1234), - [aux_sym_preproc_elif_token1] = ACTIONS(1234), - [anon_sym_L_SQUOTE] = ACTIONS(1236), - [anon_sym___attribute__] = ACTIONS(1234), - [anon_sym_sizeof] = ACTIONS(1234), - [anon_sym_LBRACE] = ACTIONS(1236), - [anon_sym_union] = ACTIONS(1234), - [anon_sym_unsigned] = ACTIONS(1234), - [anon_sym_short] = ACTIONS(1234), - [anon_sym_do] = ACTIONS(1234), - [aux_sym_preproc_else_token1] = ACTIONS(1234), - [sym_preproc_directive] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(1236), - [aux_sym_preproc_if_token1] = ACTIONS(1234), - [anon_sym_TILDE] = ACTIONS(1236), - [anon_sym_L_DQUOTE] = ACTIONS(1236), - [anon_sym_LPAREN2] = ACTIONS(1236), - [sym_primitive_type] = ACTIONS(1234), - [anon_sym_for] = ACTIONS(1234), - [anon_sym_break] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1236), - [aux_sym_preproc_include_token1] = ACTIONS(1234), - [anon_sym_DASH] = ACTIONS(1234), - [anon_sym_static] = ACTIONS(1234), - [anon_sym_DQUOTE] = ACTIONS(1236), - [anon_sym_register] = ACTIONS(1234), - [anon_sym_STAR] = ACTIONS(1236), - [anon_sym_if] = ACTIONS(1234), - [anon_sym_switch] = ACTIONS(1234), - [anon_sym_enum] = ACTIONS(1234), - [sym_false] = ACTIONS(1234), - [anon_sym_return] = ACTIONS(1234), - [anon_sym_continue] = ACTIONS(1234), - [anon_sym_SEMI] = ACTIONS(1236), - [aux_sym_preproc_def_token1] = ACTIONS(1234), - [anon_sym_PLUS] = ACTIONS(1234), - [anon_sym_auto] = ACTIONS(1234), - [anon_sym_inline] = ACTIONS(1234), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(1403), + [anon_sym_RPAREN] = ACTIONS(1403), + [anon_sym_SEMI] = ACTIONS(1403), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_RBRACE] = ACTIONS(1403), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_RBRACK] = ACTIONS(1403), + [anon_sym_COLON] = ACTIONS(1403), + [anon_sym_QMARK] = ACTIONS(1403), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(1403), + [anon_sym_AMP_AMP] = ACTIONS(1403), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [657] = { - [sym_true] = ACTIONS(1238), - [anon_sym_restrict] = ACTIONS(1238), - [sym_null] = ACTIONS(1238), - [anon_sym_goto] = ACTIONS(1238), - [aux_sym_preproc_if_token2] = ACTIONS(1238), - [anon_sym_const] = ACTIONS(1238), - [anon_sym_typedef] = ACTIONS(1238), - [anon_sym_DASH_DASH] = ACTIONS(1240), - [anon_sym__Atomic] = ACTIONS(1238), - [sym_identifier] = ACTIONS(1238), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1238), - [sym_number_literal] = ACTIONS(1240), - [anon_sym_volatile] = ACTIONS(1238), - [anon_sym_SQUOTE] = ACTIONS(1240), - [anon_sym_extern] = ACTIONS(1238), - [anon_sym_PLUS_PLUS] = ACTIONS(1240), - [anon_sym_struct] = ACTIONS(1238), - [anon_sym_signed] = ACTIONS(1238), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1238), - [anon_sym_while] = ACTIONS(1238), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1238), - [aux_sym_preproc_elif_token1] = ACTIONS(1238), - [anon_sym_L_SQUOTE] = ACTIONS(1240), - [anon_sym___attribute__] = ACTIONS(1238), - [anon_sym_sizeof] = ACTIONS(1238), - [anon_sym_LBRACE] = ACTIONS(1240), - [anon_sym_union] = ACTIONS(1238), - [anon_sym_unsigned] = ACTIONS(1238), - [anon_sym_short] = ACTIONS(1238), - [anon_sym_do] = ACTIONS(1238), - [aux_sym_preproc_else_token1] = ACTIONS(1238), - [sym_preproc_directive] = ACTIONS(1238), - [anon_sym_AMP] = ACTIONS(1240), - [aux_sym_preproc_if_token1] = ACTIONS(1238), - [anon_sym_TILDE] = ACTIONS(1240), - [anon_sym_L_DQUOTE] = ACTIONS(1240), - [anon_sym_LPAREN2] = ACTIONS(1240), - [sym_primitive_type] = ACTIONS(1238), - [anon_sym_for] = ACTIONS(1238), - [anon_sym_break] = ACTIONS(1238), - [anon_sym_BANG] = ACTIONS(1240), - [aux_sym_preproc_include_token1] = ACTIONS(1238), - [anon_sym_DASH] = ACTIONS(1238), - [anon_sym_static] = ACTIONS(1238), - [anon_sym_DQUOTE] = ACTIONS(1240), - [anon_sym_register] = ACTIONS(1238), - [anon_sym_STAR] = ACTIONS(1240), - [anon_sym_if] = ACTIONS(1238), - [anon_sym_switch] = ACTIONS(1238), - [anon_sym_enum] = ACTIONS(1238), - [sym_false] = ACTIONS(1238), - [anon_sym_return] = ACTIONS(1238), - [anon_sym_continue] = ACTIONS(1238), - [anon_sym_SEMI] = ACTIONS(1240), - [aux_sym_preproc_def_token1] = ACTIONS(1238), - [anon_sym_PLUS] = ACTIONS(1238), - [anon_sym_auto] = ACTIONS(1238), - [anon_sym_inline] = ACTIONS(1238), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(1461), + [anon_sym_RPAREN] = ACTIONS(1461), + [anon_sym_SEMI] = ACTIONS(1461), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_RBRACE] = ACTIONS(1461), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_RBRACK] = ACTIONS(1461), + [anon_sym_COLON] = ACTIONS(1461), + [anon_sym_QMARK] = ACTIONS(1461), + [anon_sym_AMP] = ACTIONS(1463), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(1461), + [anon_sym_AMP_AMP] = ACTIONS(1461), + [anon_sym_PIPE] = ACTIONS(1463), + [anon_sym_CARET] = ACTIONS(1461), + [anon_sym_EQ_EQ] = ACTIONS(1461), + [anon_sym_BANG_EQ] = ACTIONS(1461), + [anon_sym_GT] = ACTIONS(1463), + [anon_sym_GT_EQ] = ACTIONS(1461), + [anon_sym_LT_EQ] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(1463), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [658] = { - [sym_true] = ACTIONS(1316), - [anon_sym_restrict] = ACTIONS(1316), - [sym_null] = ACTIONS(1316), - [anon_sym_goto] = ACTIONS(1316), - [aux_sym_preproc_if_token2] = ACTIONS(1316), - [anon_sym_const] = ACTIONS(1316), - [anon_sym_typedef] = ACTIONS(1316), - [anon_sym_DASH_DASH] = ACTIONS(1318), - [anon_sym__Atomic] = ACTIONS(1316), - [sym_identifier] = ACTIONS(1316), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1316), - [sym_number_literal] = ACTIONS(1318), - [anon_sym_volatile] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(1318), - [anon_sym_extern] = ACTIONS(1316), - [anon_sym_PLUS_PLUS] = ACTIONS(1318), - [anon_sym_struct] = ACTIONS(1316), - [anon_sym_signed] = ACTIONS(1316), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1316), - [anon_sym_while] = ACTIONS(1316), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1316), - [aux_sym_preproc_elif_token1] = ACTIONS(1316), - [anon_sym_L_SQUOTE] = ACTIONS(1318), - [anon_sym___attribute__] = ACTIONS(1316), - [anon_sym_sizeof] = ACTIONS(1316), - [anon_sym_LBRACE] = ACTIONS(1318), - [anon_sym_union] = ACTIONS(1316), - [anon_sym_unsigned] = ACTIONS(1316), - [anon_sym_short] = ACTIONS(1316), - [anon_sym_do] = ACTIONS(1316), - [aux_sym_preproc_else_token1] = ACTIONS(1316), - [sym_preproc_directive] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1318), - [aux_sym_preproc_if_token1] = ACTIONS(1316), - [anon_sym_TILDE] = ACTIONS(1318), - [anon_sym_L_DQUOTE] = ACTIONS(1318), - [anon_sym_LPAREN2] = ACTIONS(1318), - [sym_primitive_type] = ACTIONS(1316), - [anon_sym_for] = ACTIONS(1316), - [anon_sym_break] = ACTIONS(1316), - [anon_sym_BANG] = ACTIONS(1318), - [aux_sym_preproc_include_token1] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1316), - [anon_sym_static] = ACTIONS(1316), - [anon_sym_DQUOTE] = ACTIONS(1318), - [anon_sym_register] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1318), - [anon_sym_if] = ACTIONS(1316), - [anon_sym_switch] = ACTIONS(1316), - [anon_sym_enum] = ACTIONS(1316), - [sym_false] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(1316), - [anon_sym_continue] = ACTIONS(1316), - [anon_sym_SEMI] = ACTIONS(1318), - [aux_sym_preproc_def_token1] = ACTIONS(1316), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_auto] = ACTIONS(1316), - [anon_sym_inline] = ACTIONS(1316), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(1403), + [anon_sym_RPAREN] = ACTIONS(1403), + [anon_sym_SEMI] = ACTIONS(1403), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_RBRACE] = ACTIONS(1403), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_RBRACK] = ACTIONS(1403), + [anon_sym_COLON] = ACTIONS(1403), + [anon_sym_QMARK] = ACTIONS(1403), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(1403), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [659] = { - [sym_true] = ACTIONS(1360), - [anon_sym_restrict] = ACTIONS(1360), - [sym_null] = ACTIONS(1360), - [anon_sym_goto] = ACTIONS(1360), - [aux_sym_preproc_if_token2] = ACTIONS(1360), - [anon_sym_const] = ACTIONS(1360), - [anon_sym_typedef] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1362), - [anon_sym__Atomic] = ACTIONS(1360), - [sym_identifier] = ACTIONS(1360), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1360), - [sym_number_literal] = ACTIONS(1362), - [anon_sym_volatile] = ACTIONS(1360), - [anon_sym_SQUOTE] = ACTIONS(1362), - [anon_sym_extern] = ACTIONS(1360), - [anon_sym_PLUS_PLUS] = ACTIONS(1362), - [anon_sym_struct] = ACTIONS(1360), - [anon_sym_signed] = ACTIONS(1360), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1360), - [anon_sym_while] = ACTIONS(1360), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1360), - [aux_sym_preproc_elif_token1] = ACTIONS(1360), - [anon_sym_L_SQUOTE] = ACTIONS(1362), - [anon_sym___attribute__] = ACTIONS(1360), - [anon_sym_sizeof] = ACTIONS(1360), - [anon_sym_LBRACE] = ACTIONS(1362), - [anon_sym_union] = ACTIONS(1360), - [anon_sym_unsigned] = ACTIONS(1360), - [anon_sym_short] = ACTIONS(1360), - [anon_sym_do] = ACTIONS(1360), - [aux_sym_preproc_else_token1] = ACTIONS(1360), - [sym_preproc_directive] = ACTIONS(1360), - [anon_sym_AMP] = ACTIONS(1362), - [aux_sym_preproc_if_token1] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1362), - [anon_sym_L_DQUOTE] = ACTIONS(1362), - [anon_sym_LPAREN2] = ACTIONS(1362), - [sym_primitive_type] = ACTIONS(1360), - [anon_sym_for] = ACTIONS(1360), - [anon_sym_break] = ACTIONS(1360), - [anon_sym_BANG] = ACTIONS(1362), - [aux_sym_preproc_include_token1] = ACTIONS(1360), - [anon_sym_DASH] = ACTIONS(1360), - [anon_sym_static] = ACTIONS(1360), - [anon_sym_DQUOTE] = ACTIONS(1362), - [anon_sym_register] = ACTIONS(1360), - [anon_sym_STAR] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1360), - [anon_sym_switch] = ACTIONS(1360), - [anon_sym_enum] = ACTIONS(1360), - [sym_false] = ACTIONS(1360), - [anon_sym_return] = ACTIONS(1360), - [anon_sym_continue] = ACTIONS(1360), - [anon_sym_SEMI] = ACTIONS(1362), - [aux_sym_preproc_def_token1] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1360), - [anon_sym_auto] = ACTIONS(1360), - [anon_sym_inline] = ACTIONS(1360), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(1403), + [anon_sym_RPAREN] = ACTIONS(1403), + [anon_sym_SEMI] = ACTIONS(1403), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_RBRACE] = ACTIONS(1403), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_RBRACK] = ACTIONS(1403), + [anon_sym_COLON] = ACTIONS(1403), + [anon_sym_QMARK] = ACTIONS(1403), + [anon_sym_AMP] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(1403), + [anon_sym_AMP_AMP] = ACTIONS(1403), + [anon_sym_PIPE] = ACTIONS(1411), + [anon_sym_CARET] = ACTIONS(1403), + [anon_sym_EQ_EQ] = ACTIONS(1403), + [anon_sym_BANG_EQ] = ACTIONS(1403), + [anon_sym_GT] = ACTIONS(1411), + [anon_sym_GT_EQ] = ACTIONS(1403), + [anon_sym_LT_EQ] = ACTIONS(1403), + [anon_sym_LT] = ACTIONS(1411), + [anon_sym_LT_LT] = ACTIONS(1403), + [anon_sym_GT_GT] = ACTIONS(1403), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [660] = { - [sym_true] = ACTIONS(1364), - [anon_sym_restrict] = ACTIONS(1364), - [sym_null] = ACTIONS(1364), - [anon_sym_goto] = ACTIONS(1364), - [aux_sym_preproc_if_token2] = ACTIONS(1364), - [anon_sym_const] = ACTIONS(1364), - [anon_sym_typedef] = ACTIONS(1364), - [anon_sym_DASH_DASH] = ACTIONS(1366), - [anon_sym__Atomic] = ACTIONS(1364), - [sym_identifier] = ACTIONS(1364), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1364), - [sym_number_literal] = ACTIONS(1366), - [anon_sym_volatile] = ACTIONS(1364), - [anon_sym_SQUOTE] = ACTIONS(1366), - [anon_sym_extern] = ACTIONS(1364), - [anon_sym_PLUS_PLUS] = ACTIONS(1366), - [anon_sym_struct] = ACTIONS(1364), - [anon_sym_signed] = ACTIONS(1364), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1364), - [anon_sym_while] = ACTIONS(1364), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1364), - [aux_sym_preproc_elif_token1] = ACTIONS(1364), - [anon_sym_L_SQUOTE] = ACTIONS(1366), - [anon_sym___attribute__] = ACTIONS(1364), - [anon_sym_sizeof] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1366), - [anon_sym_union] = ACTIONS(1364), - [anon_sym_unsigned] = ACTIONS(1364), - [anon_sym_short] = ACTIONS(1364), - [anon_sym_do] = ACTIONS(1364), - [aux_sym_preproc_else_token1] = ACTIONS(1364), - [sym_preproc_directive] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1366), - [aux_sym_preproc_if_token1] = ACTIONS(1364), - [anon_sym_TILDE] = ACTIONS(1366), - [anon_sym_L_DQUOTE] = ACTIONS(1366), - [anon_sym_LPAREN2] = ACTIONS(1366), - [sym_primitive_type] = ACTIONS(1364), - [anon_sym_for] = ACTIONS(1364), - [anon_sym_break] = ACTIONS(1364), - [anon_sym_BANG] = ACTIONS(1366), - [aux_sym_preproc_include_token1] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1364), - [anon_sym_static] = ACTIONS(1364), - [anon_sym_DQUOTE] = ACTIONS(1366), - [anon_sym_register] = ACTIONS(1364), - [anon_sym_STAR] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1364), - [anon_sym_switch] = ACTIONS(1364), - [anon_sym_enum] = ACTIONS(1364), - [sym_false] = ACTIONS(1364), - [anon_sym_return] = ACTIONS(1364), - [anon_sym_continue] = ACTIONS(1364), - [anon_sym_SEMI] = ACTIONS(1366), - [aux_sym_preproc_def_token1] = ACTIONS(1364), - [anon_sym_PLUS] = ACTIONS(1364), - [anon_sym_auto] = ACTIONS(1364), - [anon_sym_inline] = ACTIONS(1364), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(1513), + [anon_sym_RPAREN] = ACTIONS(1513), + [anon_sym_SEMI] = ACTIONS(1513), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_RBRACE] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_RBRACK] = ACTIONS(1513), + [anon_sym_COLON] = ACTIONS(1513), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [661] = { - [sym_true] = ACTIONS(1370), - [anon_sym_restrict] = ACTIONS(1370), - [sym_null] = ACTIONS(1370), - [anon_sym_goto] = ACTIONS(1370), - [aux_sym_preproc_if_token2] = ACTIONS(1370), - [anon_sym_const] = ACTIONS(1370), - [anon_sym_typedef] = ACTIONS(1370), - [anon_sym_DASH_DASH] = ACTIONS(1372), - [anon_sym__Atomic] = ACTIONS(1370), - [sym_identifier] = ACTIONS(1370), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1370), - [sym_number_literal] = ACTIONS(1372), - [anon_sym_volatile] = ACTIONS(1370), - [anon_sym_SQUOTE] = ACTIONS(1372), - [anon_sym_extern] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1372), - [anon_sym_struct] = ACTIONS(1370), - [anon_sym_signed] = ACTIONS(1370), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1370), - [anon_sym_while] = ACTIONS(1370), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1370), - [aux_sym_preproc_elif_token1] = ACTIONS(1370), - [anon_sym_L_SQUOTE] = ACTIONS(1372), - [anon_sym___attribute__] = ACTIONS(1370), - [anon_sym_sizeof] = ACTIONS(1370), - [anon_sym_LBRACE] = ACTIONS(1372), - [anon_sym_union] = ACTIONS(1370), - [anon_sym_unsigned] = ACTIONS(1370), - [anon_sym_short] = ACTIONS(1370), - [anon_sym_do] = ACTIONS(1370), - [aux_sym_preproc_else_token1] = ACTIONS(1370), - [sym_preproc_directive] = ACTIONS(1370), - [anon_sym_AMP] = ACTIONS(1372), - [aux_sym_preproc_if_token1] = ACTIONS(1370), - [anon_sym_TILDE] = ACTIONS(1372), - [anon_sym_L_DQUOTE] = ACTIONS(1372), - [anon_sym_LPAREN2] = ACTIONS(1372), - [sym_primitive_type] = ACTIONS(1370), - [anon_sym_for] = ACTIONS(1370), - [anon_sym_break] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1372), - [aux_sym_preproc_include_token1] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_DQUOTE] = ACTIONS(1372), - [anon_sym_register] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_if] = ACTIONS(1370), - [anon_sym_switch] = ACTIONS(1370), - [anon_sym_enum] = ACTIONS(1370), - [sym_false] = ACTIONS(1370), - [anon_sym_return] = ACTIONS(1370), - [anon_sym_continue] = ACTIONS(1370), - [anon_sym_SEMI] = ACTIONS(1372), - [aux_sym_preproc_def_token1] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_auto] = ACTIONS(1370), - [anon_sym_inline] = ACTIONS(1370), + [sym_attribute_specifier] = STATE(662), + [sym_storage_class_specifier] = STATE(662), + [sym_type_qualifier] = STATE(662), + [sym__type_specifier] = STATE(838), + [sym_sized_type_specifier] = STATE(838), + [sym_enum_specifier] = STATE(838), + [sym_struct_specifier] = STATE(838), + [sym_union_specifier] = STATE(838), + [sym_macro_type_specifier] = STATE(838), + [aux_sym__declaration_specifiers_repeat1] = STATE(662), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(1209), + [anon_sym_extern] = ACTIONS(33), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(2187), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [sym_comment] = ACTIONS(3), }, [662] = { - [sym_if_statement] = STATE(678), - [sym_do_statement] = STATE(678), - [sym_for_statement] = STATE(678), - [sym__expression] = STATE(951), - [sym_comma_expression] = STATE(952), - [sym_binary_expression] = STATE(951), - [sym_update_expression] = STATE(951), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(678), - [sym_return_statement] = STATE(678), - [sym_break_statement] = STATE(678), - [sym_conditional_expression] = STATE(951), - [sym_assignment_expression] = STATE(951), - [sym_cast_expression] = STATE(951), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(951), - [sym_char_literal] = STATE(951), - [sym_labeled_statement] = STATE(678), - [sym_while_statement] = STATE(678), - [sym_continue_statement] = STATE(678), - [sym_goto_statement] = STATE(678), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(951), - [sym_sizeof_expression] = STATE(951), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(951), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(678), - [sym_expression_statement] = STATE(678), - [anon_sym_LBRACE] = ACTIONS(398), - [sym_true] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [anon_sym_do] = ACTIONS(400), - [anon_sym_goto] = ACTIONS(380), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(2291), - [anon_sym_for] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(390), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(416), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(418), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(378), - [anon_sym_return] = ACTIONS(420), - [anon_sym_while] = ACTIONS(394), - [anon_sym_continue] = ACTIONS(422), - [anon_sym_SEMI] = ACTIONS(424), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_attribute_specifier] = STATE(662), + [sym_storage_class_specifier] = STATE(662), + [sym_type_qualifier] = STATE(662), + [aux_sym__declaration_specifiers_repeat1] = STATE(662), + [sym_identifier] = ACTIONS(2189), + [anon_sym_COMMA] = ACTIONS(2191), + [anon_sym_RPAREN] = ACTIONS(2191), + [anon_sym_SEMI] = ACTIONS(2191), + [anon_sym_extern] = ACTIONS(2193), + [anon_sym___attribute__] = ACTIONS(2196), + [anon_sym_LPAREN2] = ACTIONS(2191), + [anon_sym_STAR] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(2191), + [anon_sym_static] = ACTIONS(2193), + [anon_sym_auto] = ACTIONS(2193), + [anon_sym_register] = ACTIONS(2193), + [anon_sym_inline] = ACTIONS(2193), + [anon_sym_const] = ACTIONS(2199), + [anon_sym_volatile] = ACTIONS(2199), + [anon_sym_restrict] = ACTIONS(2199), + [anon_sym__Atomic] = ACTIONS(2199), + [anon_sym_signed] = ACTIONS(2189), + [anon_sym_unsigned] = ACTIONS(2189), + [anon_sym_long] = ACTIONS(2189), + [anon_sym_short] = ACTIONS(2189), + [sym_primitive_type] = ACTIONS(2189), + [anon_sym_enum] = ACTIONS(2189), + [anon_sym_struct] = ACTIONS(2189), + [anon_sym_union] = ACTIONS(2189), + [anon_sym_COLON] = ACTIONS(2191), + [sym_comment] = ACTIONS(3), }, [663] = { - [sym_true] = ACTIONS(1380), - [anon_sym_restrict] = ACTIONS(1380), - [sym_null] = ACTIONS(1380), - [anon_sym_goto] = ACTIONS(1380), - [aux_sym_preproc_if_token2] = ACTIONS(1380), - [anon_sym_const] = ACTIONS(1380), - [anon_sym_typedef] = ACTIONS(1380), - [anon_sym_DASH_DASH] = ACTIONS(1382), - [anon_sym__Atomic] = ACTIONS(1380), - [sym_identifier] = ACTIONS(1380), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1380), - [sym_number_literal] = ACTIONS(1382), - [anon_sym_volatile] = ACTIONS(1380), - [anon_sym_SQUOTE] = ACTIONS(1382), - [anon_sym_extern] = ACTIONS(1380), - [anon_sym_PLUS_PLUS] = ACTIONS(1382), - [anon_sym_struct] = ACTIONS(1380), - [anon_sym_signed] = ACTIONS(1380), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1380), - [anon_sym_while] = ACTIONS(1380), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1380), - [aux_sym_preproc_elif_token1] = ACTIONS(1380), - [anon_sym_L_SQUOTE] = ACTIONS(1382), - [anon_sym___attribute__] = ACTIONS(1380), - [anon_sym_sizeof] = ACTIONS(1380), - [anon_sym_LBRACE] = ACTIONS(1382), - [anon_sym_union] = ACTIONS(1380), - [anon_sym_unsigned] = ACTIONS(1380), - [anon_sym_short] = ACTIONS(1380), - [anon_sym_do] = ACTIONS(1380), - [aux_sym_preproc_else_token1] = ACTIONS(1380), - [sym_preproc_directive] = ACTIONS(1380), - [anon_sym_AMP] = ACTIONS(1382), - [aux_sym_preproc_if_token1] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1382), - [anon_sym_L_DQUOTE] = ACTIONS(1382), - [anon_sym_LPAREN2] = ACTIONS(1382), - [anon_sym_else] = ACTIONS(1380), - [sym_primitive_type] = ACTIONS(1380), - [anon_sym_for] = ACTIONS(1380), - [anon_sym_break] = ACTIONS(1380), - [anon_sym_BANG] = ACTIONS(1382), - [aux_sym_preproc_include_token1] = ACTIONS(1380), - [anon_sym_DASH] = ACTIONS(1380), - [anon_sym_static] = ACTIONS(1380), - [anon_sym_DQUOTE] = ACTIONS(1382), - [anon_sym_register] = ACTIONS(1380), - [anon_sym_STAR] = ACTIONS(1382), - [anon_sym_if] = ACTIONS(1380), - [anon_sym_switch] = ACTIONS(1380), - [anon_sym_enum] = ACTIONS(1380), - [sym_false] = ACTIONS(1380), - [anon_sym_return] = ACTIONS(1380), - [anon_sym_continue] = ACTIONS(1380), - [anon_sym_SEMI] = ACTIONS(1382), - [aux_sym_preproc_def_token1] = ACTIONS(1380), - [anon_sym_PLUS] = ACTIONS(1380), - [anon_sym_auto] = ACTIONS(1380), - [anon_sym_inline] = ACTIONS(1380), + [sym_argument_list] = STATE(475), + [aux_sym_initializer_list_repeat1] = STATE(1050), + [anon_sym_COMMA] = ACTIONS(2202), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_RBRACE] = ACTIONS(2204), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [664] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1400), - [anon_sym_union] = ACTIONS(1400), - [anon_sym_unsigned] = ACTIONS(1400), - [anon_sym_restrict] = ACTIONS(1400), - [anon_sym_short] = ACTIONS(1400), - [anon_sym_static] = ACTIONS(1400), - [anon_sym_volatile] = ACTIONS(1400), - [anon_sym_register] = ACTIONS(1400), - [anon_sym_extern] = ACTIONS(1400), - [anon_sym_struct] = ACTIONS(1400), - [sym_preproc_directive] = ACTIONS(1400), - [anon_sym_signed] = ACTIONS(1400), - [aux_sym_preproc_if_token1] = ACTIONS(1400), - [anon_sym_long] = ACTIONS(1400), - [anon_sym_enum] = ACTIONS(1400), - [anon_sym_const] = ACTIONS(1400), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(1402), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1400), - [aux_sym_preproc_def_token1] = ACTIONS(1400), - [anon_sym__Atomic] = ACTIONS(1400), - [anon_sym_auto] = ACTIONS(1400), - [sym_primitive_type] = ACTIONS(1400), - [anon_sym_inline] = ACTIONS(1400), - [anon_sym___attribute__] = ACTIONS(1400), - [sym_identifier] = ACTIONS(1400), + [sym_argument_list] = STATE(475), + [aux_sym_argument_list_repeat1] = STATE(1022), + [anon_sym_COMMA] = ACTIONS(2206), + [anon_sym_RPAREN] = ACTIONS(2208), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [665] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1410), - [anon_sym_union] = ACTIONS(1410), - [anon_sym_unsigned] = ACTIONS(1410), - [anon_sym_restrict] = ACTIONS(1410), - [anon_sym_short] = ACTIONS(1410), - [anon_sym_static] = ACTIONS(1410), - [anon_sym_volatile] = ACTIONS(1410), - [anon_sym_register] = ACTIONS(1410), - [anon_sym_extern] = ACTIONS(1410), - [anon_sym_struct] = ACTIONS(1410), - [sym_preproc_directive] = ACTIONS(1410), - [anon_sym_signed] = ACTIONS(1410), - [aux_sym_preproc_if_token1] = ACTIONS(1410), - [anon_sym_long] = ACTIONS(1410), - [anon_sym_enum] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1410), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(1412), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1410), - [aux_sym_preproc_def_token1] = ACTIONS(1410), - [anon_sym__Atomic] = ACTIONS(1410), - [anon_sym_auto] = ACTIONS(1410), - [sym_primitive_type] = ACTIONS(1410), - [anon_sym_inline] = ACTIONS(1410), - [anon_sym___attribute__] = ACTIONS(1410), - [sym_identifier] = ACTIONS(1410), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(2210), + [anon_sym_RPAREN] = ACTIONS(2212), + [anon_sym_SEMI] = ACTIONS(2212), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [666] = { - [sym_true] = ACTIONS(1466), - [anon_sym_restrict] = ACTIONS(1466), - [sym_null] = ACTIONS(1466), - [anon_sym_goto] = ACTIONS(1466), - [aux_sym_preproc_if_token2] = ACTIONS(1466), - [anon_sym_const] = ACTIONS(1466), - [anon_sym_typedef] = ACTIONS(1466), - [anon_sym_DASH_DASH] = ACTIONS(1468), - [anon_sym__Atomic] = ACTIONS(1466), - [sym_identifier] = ACTIONS(1466), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1466), - [sym_number_literal] = ACTIONS(1468), - [anon_sym_volatile] = ACTIONS(1466), - [anon_sym_SQUOTE] = ACTIONS(1468), - [anon_sym_extern] = ACTIONS(1466), - [anon_sym_PLUS_PLUS] = ACTIONS(1468), - [anon_sym_struct] = ACTIONS(1466), - [anon_sym_signed] = ACTIONS(1466), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1466), - [anon_sym_while] = ACTIONS(1466), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1466), - [aux_sym_preproc_elif_token1] = ACTIONS(1466), - [anon_sym_L_SQUOTE] = ACTIONS(1468), - [anon_sym___attribute__] = ACTIONS(1466), - [anon_sym_sizeof] = ACTIONS(1466), - [anon_sym_LBRACE] = ACTIONS(1468), - [anon_sym_union] = ACTIONS(1466), - [anon_sym_unsigned] = ACTIONS(1466), - [anon_sym_short] = ACTIONS(1466), - [anon_sym_do] = ACTIONS(1466), - [aux_sym_preproc_else_token1] = ACTIONS(1466), - [sym_preproc_directive] = ACTIONS(1466), - [anon_sym_AMP] = ACTIONS(1468), - [aux_sym_preproc_if_token1] = ACTIONS(1466), - [anon_sym_TILDE] = ACTIONS(1468), - [anon_sym_L_DQUOTE] = ACTIONS(1468), - [anon_sym_LPAREN2] = ACTIONS(1468), - [sym_primitive_type] = ACTIONS(1466), - [anon_sym_for] = ACTIONS(1466), - [anon_sym_break] = ACTIONS(1466), - [anon_sym_BANG] = ACTIONS(1468), - [aux_sym_preproc_include_token1] = ACTIONS(1466), - [anon_sym_DASH] = ACTIONS(1466), - [anon_sym_static] = ACTIONS(1466), - [anon_sym_DQUOTE] = ACTIONS(1468), - [anon_sym_register] = ACTIONS(1466), - [anon_sym_STAR] = ACTIONS(1468), - [anon_sym_if] = ACTIONS(1466), - [anon_sym_switch] = ACTIONS(1466), - [anon_sym_enum] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [anon_sym_return] = ACTIONS(1466), - [anon_sym_continue] = ACTIONS(1466), - [anon_sym_SEMI] = ACTIONS(1468), - [aux_sym_preproc_def_token1] = ACTIONS(1466), - [anon_sym_PLUS] = ACTIONS(1466), - [anon_sym_auto] = ACTIONS(1466), - [anon_sym_inline] = ACTIONS(1466), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(2210), + [anon_sym_SEMI] = ACTIONS(2214), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [667] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1485), - [anon_sym_union] = ACTIONS(1485), - [anon_sym_unsigned] = ACTIONS(1485), - [anon_sym_restrict] = ACTIONS(1485), - [anon_sym_short] = ACTIONS(1485), - [anon_sym_static] = ACTIONS(1485), - [anon_sym_volatile] = ACTIONS(1485), - [anon_sym_register] = ACTIONS(1485), - [anon_sym_extern] = ACTIONS(1485), - [aux_sym_preproc_if_token2] = ACTIONS(1485), - [sym_preproc_directive] = ACTIONS(1485), - [anon_sym_signed] = ACTIONS(1485), - [aux_sym_preproc_if_token1] = ACTIONS(1485), - [anon_sym_long] = ACTIONS(1485), - [anon_sym_enum] = ACTIONS(1485), - [anon_sym_const] = ACTIONS(1485), - [anon_sym_struct] = ACTIONS(1485), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1485), - [aux_sym_preproc_def_token1] = ACTIONS(1485), - [anon_sym__Atomic] = ACTIONS(1485), - [anon_sym_auto] = ACTIONS(1485), - [sym_primitive_type] = ACTIONS(1485), - [anon_sym_inline] = ACTIONS(1485), - [anon_sym___attribute__] = ACTIONS(1485), - [sym_identifier] = ACTIONS(1485), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(2210), + [anon_sym_RPAREN] = ACTIONS(2216), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [668] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1495), - [anon_sym_union] = ACTIONS(1495), - [anon_sym_unsigned] = ACTIONS(1495), - [anon_sym_restrict] = ACTIONS(1495), - [anon_sym_short] = ACTIONS(1495), - [anon_sym_static] = ACTIONS(1495), - [anon_sym_volatile] = ACTIONS(1495), - [anon_sym_register] = ACTIONS(1495), - [anon_sym_extern] = ACTIONS(1495), - [aux_sym_preproc_if_token2] = ACTIONS(1495), - [sym_preproc_directive] = ACTIONS(1495), - [anon_sym_signed] = ACTIONS(1495), - [aux_sym_preproc_if_token1] = ACTIONS(1495), - [anon_sym_long] = ACTIONS(1495), - [anon_sym_enum] = ACTIONS(1495), - [anon_sym_const] = ACTIONS(1495), - [anon_sym_struct] = ACTIONS(1495), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1495), - [aux_sym_preproc_def_token1] = ACTIONS(1495), - [anon_sym__Atomic] = ACTIONS(1495), - [anon_sym_auto] = ACTIONS(1495), - [sym_primitive_type] = ACTIONS(1495), - [anon_sym_inline] = ACTIONS(1495), - [anon_sym___attribute__] = ACTIONS(1495), - [sym_identifier] = ACTIONS(1495), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(2210), + [anon_sym_SEMI] = ACTIONS(2218), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [669] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1509), - [anon_sym_union] = ACTIONS(1509), - [anon_sym_unsigned] = ACTIONS(1509), - [anon_sym_restrict] = ACTIONS(1509), - [anon_sym_short] = ACTIONS(1509), - [anon_sym_static] = ACTIONS(1509), - [anon_sym_volatile] = ACTIONS(1509), - [anon_sym_register] = ACTIONS(1509), - [anon_sym_extern] = ACTIONS(1509), - [aux_sym_preproc_if_token2] = ACTIONS(1509), - [sym_preproc_directive] = ACTIONS(1509), - [anon_sym_signed] = ACTIONS(1509), - [aux_sym_preproc_if_token1] = ACTIONS(1509), - [anon_sym_long] = ACTIONS(1509), - [anon_sym_enum] = ACTIONS(1509), - [anon_sym_const] = ACTIONS(1509), - [anon_sym_struct] = ACTIONS(1509), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1509), - [aux_sym_preproc_def_token1] = ACTIONS(1509), - [anon_sym__Atomic] = ACTIONS(1509), - [anon_sym_auto] = ACTIONS(1509), - [sym_primitive_type] = ACTIONS(1509), - [anon_sym_inline] = ACTIONS(1509), - [anon_sym___attribute__] = ACTIONS(1509), - [sym_identifier] = ACTIONS(1509), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(2210), + [anon_sym_SEMI] = ACTIONS(2220), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [670] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1513), - [anon_sym_union] = ACTIONS(1513), - [anon_sym_unsigned] = ACTIONS(1513), - [anon_sym_restrict] = ACTIONS(1513), - [anon_sym_short] = ACTIONS(1513), - [anon_sym_static] = ACTIONS(1513), - [anon_sym_volatile] = ACTIONS(1513), - [anon_sym_register] = ACTIONS(1513), - [anon_sym_extern] = ACTIONS(1513), - [aux_sym_preproc_if_token2] = ACTIONS(1513), - [sym_preproc_directive] = ACTIONS(1513), - [anon_sym_signed] = ACTIONS(1513), - [aux_sym_preproc_if_token1] = ACTIONS(1513), - [anon_sym_long] = ACTIONS(1513), - [anon_sym_enum] = ACTIONS(1513), - [anon_sym_const] = ACTIONS(1513), - [anon_sym_struct] = ACTIONS(1513), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1513), - [aux_sym_preproc_def_token1] = ACTIONS(1513), - [anon_sym__Atomic] = ACTIONS(1513), - [anon_sym_auto] = ACTIONS(1513), - [sym_primitive_type] = ACTIONS(1513), - [anon_sym_inline] = ACTIONS(1513), - [anon_sym___attribute__] = ACTIONS(1513), - [sym_identifier] = ACTIONS(1513), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(2210), + [anon_sym_RPAREN] = ACTIONS(2222), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [671] = { - [sym_true] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym__Atomic] = ACTIONS(1533), - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [aux_sym_preproc_elif_token1] = ACTIONS(1533), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_sizeof] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [aux_sym_preproc_else_token1] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_AMP] = ACTIONS(1535), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_LPAREN2] = ACTIONS(1535), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1535), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_DQUOTE] = ACTIONS(1535), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_auto] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(2210), + [anon_sym_SEMI] = ACTIONS(2224), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [672] = { - [sym_true] = ACTIONS(1607), - [anon_sym_restrict] = ACTIONS(1607), - [sym_null] = ACTIONS(1607), - [anon_sym_goto] = ACTIONS(1607), - [aux_sym_preproc_if_token2] = ACTIONS(1607), - [anon_sym_const] = ACTIONS(1607), - [anon_sym_typedef] = ACTIONS(1607), - [anon_sym_DASH_DASH] = ACTIONS(1609), - [anon_sym__Atomic] = ACTIONS(1607), - [sym_identifier] = ACTIONS(1607), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1607), - [sym_number_literal] = ACTIONS(1609), - [anon_sym_volatile] = ACTIONS(1607), - [anon_sym_SQUOTE] = ACTIONS(1609), - [anon_sym_extern] = ACTIONS(1607), - [anon_sym_PLUS_PLUS] = ACTIONS(1609), - [anon_sym_struct] = ACTIONS(1607), - [anon_sym_signed] = ACTIONS(1607), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1607), - [anon_sym_while] = ACTIONS(1607), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1607), - [aux_sym_preproc_elif_token1] = ACTIONS(1607), - [anon_sym_L_SQUOTE] = ACTIONS(1609), - [anon_sym___attribute__] = ACTIONS(1607), - [anon_sym_sizeof] = ACTIONS(1607), - [anon_sym_LBRACE] = ACTIONS(1609), - [anon_sym_union] = ACTIONS(1607), - [anon_sym_unsigned] = ACTIONS(1607), - [anon_sym_short] = ACTIONS(1607), - [anon_sym_do] = ACTIONS(1607), - [aux_sym_preproc_else_token1] = ACTIONS(1607), - [sym_preproc_directive] = ACTIONS(1607), - [anon_sym_AMP] = ACTIONS(1609), - [aux_sym_preproc_if_token1] = ACTIONS(1607), - [anon_sym_TILDE] = ACTIONS(1609), - [anon_sym_L_DQUOTE] = ACTIONS(1609), - [anon_sym_LPAREN2] = ACTIONS(1609), - [sym_primitive_type] = ACTIONS(1607), - [anon_sym_for] = ACTIONS(1607), - [anon_sym_break] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1609), - [aux_sym_preproc_include_token1] = ACTIONS(1607), - [anon_sym_DASH] = ACTIONS(1607), - [anon_sym_static] = ACTIONS(1607), - [anon_sym_DQUOTE] = ACTIONS(1609), - [anon_sym_register] = ACTIONS(1607), - [anon_sym_STAR] = ACTIONS(1609), - [anon_sym_if] = ACTIONS(1607), - [anon_sym_switch] = ACTIONS(1607), - [anon_sym_enum] = ACTIONS(1607), - [sym_false] = ACTIONS(1607), - [anon_sym_return] = ACTIONS(1607), - [anon_sym_continue] = ACTIONS(1607), - [anon_sym_SEMI] = ACTIONS(1609), - [aux_sym_preproc_def_token1] = ACTIONS(1607), - [anon_sym_PLUS] = ACTIONS(1607), - [anon_sym_auto] = ACTIONS(1607), - [anon_sym_inline] = ACTIONS(1607), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(2210), + [anon_sym_RPAREN] = ACTIONS(2226), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [673] = { - [sym_true] = ACTIONS(1616), - [anon_sym_restrict] = ACTIONS(1616), - [sym_null] = ACTIONS(1616), - [anon_sym_goto] = ACTIONS(1616), - [aux_sym_preproc_if_token2] = ACTIONS(1616), - [anon_sym_const] = ACTIONS(1616), - [anon_sym_typedef] = ACTIONS(1616), - [anon_sym_DASH_DASH] = ACTIONS(1618), - [anon_sym__Atomic] = ACTIONS(1616), - [sym_identifier] = ACTIONS(1616), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1616), - [sym_number_literal] = ACTIONS(1618), - [anon_sym_volatile] = ACTIONS(1616), - [anon_sym_SQUOTE] = ACTIONS(1618), - [anon_sym_extern] = ACTIONS(1616), - [anon_sym_PLUS_PLUS] = ACTIONS(1618), - [anon_sym_struct] = ACTIONS(1616), - [anon_sym_signed] = ACTIONS(1616), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1616), - [anon_sym_while] = ACTIONS(1616), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1616), - [aux_sym_preproc_elif_token1] = ACTIONS(1616), - [anon_sym_L_SQUOTE] = ACTIONS(1618), - [anon_sym___attribute__] = ACTIONS(1616), - [anon_sym_sizeof] = ACTIONS(1616), - [anon_sym_LBRACE] = ACTIONS(1618), - [anon_sym_union] = ACTIONS(1616), - [anon_sym_unsigned] = ACTIONS(1616), - [anon_sym_short] = ACTIONS(1616), - [anon_sym_do] = ACTIONS(1616), - [aux_sym_preproc_else_token1] = ACTIONS(1616), - [sym_preproc_directive] = ACTIONS(1616), - [anon_sym_AMP] = ACTIONS(1618), - [aux_sym_preproc_if_token1] = ACTIONS(1616), - [anon_sym_TILDE] = ACTIONS(1618), - [anon_sym_L_DQUOTE] = ACTIONS(1618), - [anon_sym_LPAREN2] = ACTIONS(1618), - [sym_primitive_type] = ACTIONS(1616), - [anon_sym_for] = ACTIONS(1616), - [anon_sym_break] = ACTIONS(1616), - [anon_sym_BANG] = ACTIONS(1618), - [aux_sym_preproc_include_token1] = ACTIONS(1616), - [anon_sym_DASH] = ACTIONS(1616), - [anon_sym_static] = ACTIONS(1616), - [anon_sym_DQUOTE] = ACTIONS(1618), - [anon_sym_register] = ACTIONS(1616), - [anon_sym_STAR] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(1616), - [anon_sym_switch] = ACTIONS(1616), - [anon_sym_enum] = ACTIONS(1616), - [sym_false] = ACTIONS(1616), - [anon_sym_return] = ACTIONS(1616), - [anon_sym_continue] = ACTIONS(1616), - [anon_sym_SEMI] = ACTIONS(1618), - [aux_sym_preproc_def_token1] = ACTIONS(1616), - [anon_sym_PLUS] = ACTIONS(1616), - [anon_sym_auto] = ACTIONS(1616), - [anon_sym_inline] = ACTIONS(1616), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(2210), + [anon_sym_RPAREN] = ACTIONS(2228), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [674] = { - [sym_if_statement] = STATE(687), - [sym_do_statement] = STATE(687), - [sym_for_statement] = STATE(687), - [sym__expression] = STATE(951), - [sym_comma_expression] = STATE(952), - [sym_binary_expression] = STATE(951), - [sym_update_expression] = STATE(951), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(687), - [sym_return_statement] = STATE(687), - [sym_break_statement] = STATE(687), - [sym_conditional_expression] = STATE(951), - [sym_assignment_expression] = STATE(951), - [sym_cast_expression] = STATE(951), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(951), - [sym_char_literal] = STATE(951), - [sym_labeled_statement] = STATE(687), - [sym_while_statement] = STATE(687), - [sym_continue_statement] = STATE(687), - [sym_goto_statement] = STATE(687), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(951), - [sym_sizeof_expression] = STATE(951), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(951), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(687), - [sym_expression_statement] = STATE(687), - [anon_sym_LBRACE] = ACTIONS(398), - [sym_true] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [anon_sym_do] = ACTIONS(400), - [anon_sym_goto] = ACTIONS(380), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(2291), - [anon_sym_for] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(390), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(416), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(418), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(378), - [anon_sym_return] = ACTIONS(420), - [anon_sym_while] = ACTIONS(394), - [anon_sym_continue] = ACTIONS(422), - [anon_sym_SEMI] = ACTIONS(424), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(2210), + [anon_sym_RPAREN] = ACTIONS(2230), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [675] = { - [sym_if_statement] = STATE(691), - [sym_do_statement] = STATE(691), - [sym_for_statement] = STATE(691), - [sym__expression] = STATE(951), - [sym_comma_expression] = STATE(952), - [sym_binary_expression] = STATE(951), - [sym_update_expression] = STATE(951), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(691), - [sym_return_statement] = STATE(691), - [sym_break_statement] = STATE(691), - [sym_conditional_expression] = STATE(951), - [sym_assignment_expression] = STATE(951), - [sym_cast_expression] = STATE(951), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(951), - [sym_char_literal] = STATE(951), - [sym_labeled_statement] = STATE(691), - [sym_while_statement] = STATE(691), - [sym_continue_statement] = STATE(691), - [sym_goto_statement] = STATE(691), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(951), - [sym_sizeof_expression] = STATE(951), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(951), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(691), - [sym_expression_statement] = STATE(691), - [anon_sym_LBRACE] = ACTIONS(398), - [sym_true] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [anon_sym_do] = ACTIONS(400), - [anon_sym_goto] = ACTIONS(380), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(2291), - [anon_sym_for] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(390), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(416), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(418), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(378), - [anon_sym_return] = ACTIONS(420), - [anon_sym_while] = ACTIONS(394), - [anon_sym_continue] = ACTIONS(422), - [anon_sym_SEMI] = ACTIONS(424), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(2210), + [anon_sym_RPAREN] = ACTIONS(2232), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [676] = { - [sym_true] = ACTIONS(1646), - [anon_sym_restrict] = ACTIONS(1646), - [sym_null] = ACTIONS(1646), - [anon_sym_goto] = ACTIONS(1646), - [aux_sym_preproc_if_token2] = ACTIONS(1646), - [anon_sym_const] = ACTIONS(1646), - [anon_sym_typedef] = ACTIONS(1646), - [anon_sym_DASH_DASH] = ACTIONS(1648), - [anon_sym__Atomic] = ACTIONS(1646), - [sym_identifier] = ACTIONS(1646), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1646), - [sym_number_literal] = ACTIONS(1648), - [anon_sym_volatile] = ACTIONS(1646), - [anon_sym_SQUOTE] = ACTIONS(1648), - [anon_sym_extern] = ACTIONS(1646), - [anon_sym_PLUS_PLUS] = ACTIONS(1648), - [anon_sym_struct] = ACTIONS(1646), - [anon_sym_signed] = ACTIONS(1646), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1646), - [anon_sym_while] = ACTIONS(1646), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1646), - [aux_sym_preproc_elif_token1] = ACTIONS(1646), - [anon_sym_L_SQUOTE] = ACTIONS(1648), - [anon_sym___attribute__] = ACTIONS(1646), - [anon_sym_sizeof] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_union] = ACTIONS(1646), - [anon_sym_unsigned] = ACTIONS(1646), - [anon_sym_short] = ACTIONS(1646), - [anon_sym_do] = ACTIONS(1646), - [aux_sym_preproc_else_token1] = ACTIONS(1646), - [sym_preproc_directive] = ACTIONS(1646), - [anon_sym_AMP] = ACTIONS(1648), - [aux_sym_preproc_if_token1] = ACTIONS(1646), - [anon_sym_TILDE] = ACTIONS(1648), - [anon_sym_L_DQUOTE] = ACTIONS(1648), - [anon_sym_LPAREN2] = ACTIONS(1648), - [sym_primitive_type] = ACTIONS(1646), - [anon_sym_for] = ACTIONS(1646), - [anon_sym_break] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1648), - [aux_sym_preproc_include_token1] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1646), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_DQUOTE] = ACTIONS(1648), - [anon_sym_register] = ACTIONS(1646), - [anon_sym_STAR] = ACTIONS(1648), - [anon_sym_if] = ACTIONS(1646), - [anon_sym_switch] = ACTIONS(1646), - [anon_sym_enum] = ACTIONS(1646), - [sym_false] = ACTIONS(1646), - [anon_sym_return] = ACTIONS(1646), - [anon_sym_continue] = ACTIONS(1646), - [anon_sym_SEMI] = ACTIONS(1648), - [aux_sym_preproc_def_token1] = ACTIONS(1646), - [anon_sym_PLUS] = ACTIONS(1646), - [anon_sym_auto] = ACTIONS(1646), - [anon_sym_inline] = ACTIONS(1646), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(2210), + [anon_sym_RPAREN] = ACTIONS(2234), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [677] = { - [sym_true] = ACTIONS(1650), - [anon_sym_restrict] = ACTIONS(1650), - [sym_null] = ACTIONS(1650), - [anon_sym_goto] = ACTIONS(1650), - [aux_sym_preproc_if_token2] = ACTIONS(1650), - [anon_sym_const] = ACTIONS(1650), - [anon_sym_typedef] = ACTIONS(1650), - [anon_sym_DASH_DASH] = ACTIONS(1652), - [anon_sym__Atomic] = ACTIONS(1650), - [sym_identifier] = ACTIONS(1650), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1650), - [sym_number_literal] = ACTIONS(1652), - [anon_sym_volatile] = ACTIONS(1650), - [anon_sym_SQUOTE] = ACTIONS(1652), - [anon_sym_extern] = ACTIONS(1650), - [anon_sym_PLUS_PLUS] = ACTIONS(1652), - [anon_sym_struct] = ACTIONS(1650), - [anon_sym_signed] = ACTIONS(1650), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1650), - [anon_sym_while] = ACTIONS(1650), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1650), - [aux_sym_preproc_elif_token1] = ACTIONS(1650), - [anon_sym_L_SQUOTE] = ACTIONS(1652), - [anon_sym___attribute__] = ACTIONS(1650), - [anon_sym_sizeof] = ACTIONS(1650), - [anon_sym_LBRACE] = ACTIONS(1652), - [anon_sym_union] = ACTIONS(1650), - [anon_sym_unsigned] = ACTIONS(1650), - [anon_sym_short] = ACTIONS(1650), - [anon_sym_do] = ACTIONS(1650), - [aux_sym_preproc_else_token1] = ACTIONS(1650), - [sym_preproc_directive] = ACTIONS(1650), - [anon_sym_AMP] = ACTIONS(1652), - [aux_sym_preproc_if_token1] = ACTIONS(1650), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_L_DQUOTE] = ACTIONS(1652), - [anon_sym_LPAREN2] = ACTIONS(1652), - [sym_primitive_type] = ACTIONS(1650), - [anon_sym_for] = ACTIONS(1650), - [anon_sym_break] = ACTIONS(1650), - [anon_sym_BANG] = ACTIONS(1652), - [aux_sym_preproc_include_token1] = ACTIONS(1650), - [anon_sym_DASH] = ACTIONS(1650), - [anon_sym_static] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_register] = ACTIONS(1650), - [anon_sym_STAR] = ACTIONS(1652), - [anon_sym_if] = ACTIONS(1650), - [anon_sym_switch] = ACTIONS(1650), - [anon_sym_enum] = ACTIONS(1650), - [sym_false] = ACTIONS(1650), - [anon_sym_return] = ACTIONS(1650), - [anon_sym_continue] = ACTIONS(1650), - [anon_sym_SEMI] = ACTIONS(1652), - [aux_sym_preproc_def_token1] = ACTIONS(1650), - [anon_sym_PLUS] = ACTIONS(1650), - [anon_sym_auto] = ACTIONS(1650), - [anon_sym_inline] = ACTIONS(1650), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(2210), + [anon_sym_RPAREN] = ACTIONS(2236), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [678] = { - [sym_true] = ACTIONS(1654), - [anon_sym_restrict] = ACTIONS(1654), - [sym_null] = ACTIONS(1654), - [anon_sym_goto] = ACTIONS(1654), - [aux_sym_preproc_if_token2] = ACTIONS(1654), - [anon_sym_const] = ACTIONS(1654), - [anon_sym_typedef] = ACTIONS(1654), - [anon_sym_DASH_DASH] = ACTIONS(1656), - [anon_sym__Atomic] = ACTIONS(1654), - [sym_identifier] = ACTIONS(1654), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1654), - [sym_number_literal] = ACTIONS(1656), - [anon_sym_volatile] = ACTIONS(1654), - [anon_sym_SQUOTE] = ACTIONS(1656), - [anon_sym_extern] = ACTIONS(1654), - [anon_sym_PLUS_PLUS] = ACTIONS(1656), - [anon_sym_struct] = ACTIONS(1654), - [anon_sym_signed] = ACTIONS(1654), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1654), - [anon_sym_while] = ACTIONS(1654), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1654), - [aux_sym_preproc_elif_token1] = ACTIONS(1654), - [anon_sym_L_SQUOTE] = ACTIONS(1656), - [anon_sym___attribute__] = ACTIONS(1654), - [anon_sym_sizeof] = ACTIONS(1654), - [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_union] = ACTIONS(1654), - [anon_sym_unsigned] = ACTIONS(1654), - [anon_sym_short] = ACTIONS(1654), - [anon_sym_do] = ACTIONS(1654), - [aux_sym_preproc_else_token1] = ACTIONS(1654), - [sym_preproc_directive] = ACTIONS(1654), - [anon_sym_AMP] = ACTIONS(1656), - [aux_sym_preproc_if_token1] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1656), - [anon_sym_L_DQUOTE] = ACTIONS(1656), - [anon_sym_LPAREN2] = ACTIONS(1656), - [anon_sym_else] = ACTIONS(1654), - [sym_primitive_type] = ACTIONS(1654), - [anon_sym_for] = ACTIONS(1654), - [anon_sym_break] = ACTIONS(1654), - [anon_sym_BANG] = ACTIONS(1656), - [aux_sym_preproc_include_token1] = ACTIONS(1654), - [anon_sym_DASH] = ACTIONS(1654), - [anon_sym_static] = ACTIONS(1654), - [anon_sym_DQUOTE] = ACTIONS(1656), - [anon_sym_register] = ACTIONS(1654), - [anon_sym_STAR] = ACTIONS(1656), - [anon_sym_if] = ACTIONS(1654), - [anon_sym_switch] = ACTIONS(1654), - [anon_sym_enum] = ACTIONS(1654), - [sym_false] = ACTIONS(1654), - [anon_sym_return] = ACTIONS(1654), - [anon_sym_continue] = ACTIONS(1654), - [anon_sym_SEMI] = ACTIONS(1656), - [aux_sym_preproc_def_token1] = ACTIONS(1654), - [anon_sym_PLUS] = ACTIONS(1654), - [anon_sym_auto] = ACTIONS(1654), - [anon_sym_inline] = ACTIONS(1654), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(2210), + [anon_sym_RPAREN] = ACTIONS(2238), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [679] = { - [sym_true] = ACTIONS(1666), - [anon_sym_restrict] = ACTIONS(1666), - [sym_null] = ACTIONS(1666), - [anon_sym_goto] = ACTIONS(1666), - [aux_sym_preproc_if_token2] = ACTIONS(1666), - [anon_sym_const] = ACTIONS(1666), - [anon_sym_typedef] = ACTIONS(1666), - [anon_sym_DASH_DASH] = ACTIONS(1668), - [anon_sym__Atomic] = ACTIONS(1666), - [sym_identifier] = ACTIONS(1666), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1666), - [sym_number_literal] = ACTIONS(1668), - [anon_sym_volatile] = ACTIONS(1666), - [anon_sym_SQUOTE] = ACTIONS(1668), - [anon_sym_extern] = ACTIONS(1666), - [anon_sym_PLUS_PLUS] = ACTIONS(1668), - [anon_sym_struct] = ACTIONS(1666), - [anon_sym_signed] = ACTIONS(1666), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1666), - [anon_sym_while] = ACTIONS(1666), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1666), - [aux_sym_preproc_elif_token1] = ACTIONS(1666), - [anon_sym_L_SQUOTE] = ACTIONS(1668), - [anon_sym___attribute__] = ACTIONS(1666), - [anon_sym_sizeof] = ACTIONS(1666), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_union] = ACTIONS(1666), - [anon_sym_unsigned] = ACTIONS(1666), - [anon_sym_short] = ACTIONS(1666), - [anon_sym_do] = ACTIONS(1666), - [aux_sym_preproc_else_token1] = ACTIONS(1666), - [sym_preproc_directive] = ACTIONS(1666), - [anon_sym_AMP] = ACTIONS(1668), - [aux_sym_preproc_if_token1] = ACTIONS(1666), - [anon_sym_TILDE] = ACTIONS(1668), - [anon_sym_L_DQUOTE] = ACTIONS(1668), - [anon_sym_LPAREN2] = ACTIONS(1668), - [anon_sym_else] = ACTIONS(1666), - [sym_primitive_type] = ACTIONS(1666), - [anon_sym_for] = ACTIONS(1666), - [anon_sym_break] = ACTIONS(1666), - [anon_sym_BANG] = ACTIONS(1668), - [aux_sym_preproc_include_token1] = ACTIONS(1666), - [anon_sym_DASH] = ACTIONS(1666), - [anon_sym_static] = ACTIONS(1666), - [anon_sym_DQUOTE] = ACTIONS(1668), - [anon_sym_register] = ACTIONS(1666), - [anon_sym_STAR] = ACTIONS(1668), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_switch] = ACTIONS(1666), - [anon_sym_enum] = ACTIONS(1666), - [sym_false] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1666), - [anon_sym_continue] = ACTIONS(1666), - [anon_sym_SEMI] = ACTIONS(1668), - [aux_sym_preproc_def_token1] = ACTIONS(1666), - [anon_sym_PLUS] = ACTIONS(1666), - [anon_sym_auto] = ACTIONS(1666), - [anon_sym_inline] = ACTIONS(1666), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(2210), + [anon_sym_RPAREN] = ACTIONS(2240), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [680] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1763), - [anon_sym_union] = ACTIONS(1763), - [anon_sym_unsigned] = ACTIONS(1763), - [anon_sym_restrict] = ACTIONS(1763), - [anon_sym_short] = ACTIONS(1763), - [anon_sym_static] = ACTIONS(1763), - [anon_sym_volatile] = ACTIONS(1763), - [anon_sym_register] = ACTIONS(1763), - [anon_sym_extern] = ACTIONS(1763), - [anon_sym_struct] = ACTIONS(1763), - [sym_preproc_directive] = ACTIONS(1763), - [anon_sym_signed] = ACTIONS(1763), - [aux_sym_preproc_if_token1] = ACTIONS(1763), - [anon_sym_long] = ACTIONS(1763), - [anon_sym_enum] = ACTIONS(1763), - [anon_sym_const] = ACTIONS(1763), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(1765), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1763), - [aux_sym_preproc_def_token1] = ACTIONS(1763), - [anon_sym__Atomic] = ACTIONS(1763), - [anon_sym_auto] = ACTIONS(1763), - [sym_primitive_type] = ACTIONS(1763), - [anon_sym_inline] = ACTIONS(1763), - [anon_sym___attribute__] = ACTIONS(1763), - [sym_identifier] = ACTIONS(1763), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(2210), + [anon_sym_RPAREN] = ACTIONS(2242), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [681] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1793), - [anon_sym_union] = ACTIONS(1793), - [anon_sym_unsigned] = ACTIONS(1793), - [anon_sym_restrict] = ACTIONS(1793), - [anon_sym_short] = ACTIONS(1793), - [anon_sym_static] = ACTIONS(1793), - [anon_sym_volatile] = ACTIONS(1793), - [anon_sym_register] = ACTIONS(1793), - [anon_sym_extern] = ACTIONS(1793), - [aux_sym_preproc_if_token2] = ACTIONS(1793), - [sym_preproc_directive] = ACTIONS(1793), - [anon_sym_signed] = ACTIONS(1793), - [aux_sym_preproc_if_token1] = ACTIONS(1793), - [anon_sym_long] = ACTIONS(1793), - [anon_sym_enum] = ACTIONS(1793), - [anon_sym_const] = ACTIONS(1793), - [anon_sym_struct] = ACTIONS(1793), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1793), - [aux_sym_preproc_def_token1] = ACTIONS(1793), - [anon_sym__Atomic] = ACTIONS(1793), - [anon_sym_auto] = ACTIONS(1793), - [sym_primitive_type] = ACTIONS(1793), - [anon_sym_inline] = ACTIONS(1793), - [anon_sym___attribute__] = ACTIONS(1793), - [sym_identifier] = ACTIONS(1793), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(2210), + [anon_sym_RPAREN] = ACTIONS(2244), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [682] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1799), - [anon_sym_union] = ACTIONS(1799), - [anon_sym_unsigned] = ACTIONS(1799), - [anon_sym_restrict] = ACTIONS(1799), - [anon_sym_short] = ACTIONS(1799), - [anon_sym_static] = ACTIONS(1799), - [anon_sym_volatile] = ACTIONS(1799), - [anon_sym_register] = ACTIONS(1799), - [anon_sym_extern] = ACTIONS(1799), - [aux_sym_preproc_if_token2] = ACTIONS(1799), - [sym_preproc_directive] = ACTIONS(1799), - [anon_sym_signed] = ACTIONS(1799), - [aux_sym_preproc_if_token1] = ACTIONS(1799), - [anon_sym_long] = ACTIONS(1799), - [anon_sym_enum] = ACTIONS(1799), - [anon_sym_const] = ACTIONS(1799), - [anon_sym_struct] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1799), - [aux_sym_preproc_def_token1] = ACTIONS(1799), - [anon_sym__Atomic] = ACTIONS(1799), - [anon_sym_auto] = ACTIONS(1799), - [sym_primitive_type] = ACTIONS(1799), - [anon_sym_inline] = ACTIONS(1799), - [anon_sym___attribute__] = ACTIONS(1799), - [sym_identifier] = ACTIONS(1799), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(2210), + [anon_sym_RPAREN] = ACTIONS(2246), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [683] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1803), - [anon_sym_union] = ACTIONS(1803), - [anon_sym_unsigned] = ACTIONS(1803), - [anon_sym_restrict] = ACTIONS(1803), - [anon_sym_short] = ACTIONS(1803), - [anon_sym_static] = ACTIONS(1803), - [anon_sym_volatile] = ACTIONS(1803), - [anon_sym_register] = ACTIONS(1803), - [anon_sym_extern] = ACTIONS(1803), - [aux_sym_preproc_if_token2] = ACTIONS(1803), - [sym_preproc_directive] = ACTIONS(1803), - [anon_sym_signed] = ACTIONS(1803), - [aux_sym_preproc_if_token1] = ACTIONS(1803), - [anon_sym_long] = ACTIONS(1803), - [anon_sym_enum] = ACTIONS(1803), - [anon_sym_const] = ACTIONS(1803), - [anon_sym_struct] = ACTIONS(1803), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1803), - [aux_sym_preproc_def_token1] = ACTIONS(1803), - [anon_sym__Atomic] = ACTIONS(1803), - [anon_sym_auto] = ACTIONS(1803), - [sym_primitive_type] = ACTIONS(1803), - [anon_sym_inline] = ACTIONS(1803), - [anon_sym___attribute__] = ACTIONS(1803), - [sym_identifier] = ACTIONS(1803), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(2210), + [anon_sym_RPAREN] = ACTIONS(2248), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [684] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1809), - [anon_sym_union] = ACTIONS(1809), - [anon_sym_unsigned] = ACTIONS(1809), - [anon_sym_restrict] = ACTIONS(1809), - [anon_sym_short] = ACTIONS(1809), - [anon_sym_static] = ACTIONS(1809), - [anon_sym_volatile] = ACTIONS(1809), - [anon_sym_register] = ACTIONS(1809), - [anon_sym_extern] = ACTIONS(1809), - [aux_sym_preproc_if_token2] = ACTIONS(1809), - [sym_preproc_directive] = ACTIONS(1809), - [anon_sym_signed] = ACTIONS(1809), - [aux_sym_preproc_if_token1] = ACTIONS(1809), - [anon_sym_long] = ACTIONS(1809), - [anon_sym_enum] = ACTIONS(1809), - [anon_sym_const] = ACTIONS(1809), - [anon_sym_struct] = ACTIONS(1809), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1809), - [aux_sym_preproc_def_token1] = ACTIONS(1809), - [anon_sym__Atomic] = ACTIONS(1809), - [anon_sym_auto] = ACTIONS(1809), - [sym_primitive_type] = ACTIONS(1809), - [anon_sym_inline] = ACTIONS(1809), - [anon_sym___attribute__] = ACTIONS(1809), - [sym_identifier] = ACTIONS(1809), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(2210), + [anon_sym_RPAREN] = ACTIONS(2250), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [685] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1831), - [anon_sym_union] = ACTIONS(1831), - [anon_sym_unsigned] = ACTIONS(1831), - [anon_sym_restrict] = ACTIONS(1831), - [anon_sym_short] = ACTIONS(1831), - [anon_sym_static] = ACTIONS(1831), - [anon_sym_volatile] = ACTIONS(1831), - [anon_sym_register] = ACTIONS(1831), - [anon_sym_extern] = ACTIONS(1831), - [aux_sym_preproc_if_token2] = ACTIONS(1831), - [sym_preproc_directive] = ACTIONS(1831), - [anon_sym_signed] = ACTIONS(1831), - [aux_sym_preproc_if_token1] = ACTIONS(1831), - [anon_sym_long] = ACTIONS(1831), - [anon_sym_enum] = ACTIONS(1831), - [anon_sym_const] = ACTIONS(1831), - [anon_sym_struct] = ACTIONS(1831), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1831), - [aux_sym_preproc_def_token1] = ACTIONS(1831), - [anon_sym__Atomic] = ACTIONS(1831), - [anon_sym_auto] = ACTIONS(1831), - [sym_primitive_type] = ACTIONS(1831), - [anon_sym_inline] = ACTIONS(1831), - [anon_sym___attribute__] = ACTIONS(1831), - [sym_identifier] = ACTIONS(1831), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(2210), + [anon_sym_SEMI] = ACTIONS(2252), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [686] = { - [sym_true] = ACTIONS(1900), - [anon_sym_restrict] = ACTIONS(1900), - [sym_null] = ACTIONS(1900), - [anon_sym_goto] = ACTIONS(1900), - [aux_sym_preproc_if_token2] = ACTIONS(1900), - [anon_sym_const] = ACTIONS(1900), - [anon_sym_typedef] = ACTIONS(1900), - [anon_sym_DASH_DASH] = ACTIONS(1902), - [anon_sym__Atomic] = ACTIONS(1900), - [sym_identifier] = ACTIONS(1900), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1900), - [sym_number_literal] = ACTIONS(1902), - [anon_sym_volatile] = ACTIONS(1900), - [anon_sym_SQUOTE] = ACTIONS(1902), - [anon_sym_extern] = ACTIONS(1900), - [anon_sym_PLUS_PLUS] = ACTIONS(1902), - [anon_sym_struct] = ACTIONS(1900), - [anon_sym_signed] = ACTIONS(1900), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1900), - [anon_sym_while] = ACTIONS(1900), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1900), - [aux_sym_preproc_elif_token1] = ACTIONS(1900), - [anon_sym_L_SQUOTE] = ACTIONS(1902), - [anon_sym___attribute__] = ACTIONS(1900), - [anon_sym_sizeof] = ACTIONS(1900), - [anon_sym_LBRACE] = ACTIONS(1902), - [anon_sym_union] = ACTIONS(1900), - [anon_sym_unsigned] = ACTIONS(1900), - [anon_sym_short] = ACTIONS(1900), - [anon_sym_do] = ACTIONS(1900), - [aux_sym_preproc_else_token1] = ACTIONS(1900), - [sym_preproc_directive] = ACTIONS(1900), - [anon_sym_AMP] = ACTIONS(1902), - [aux_sym_preproc_if_token1] = ACTIONS(1900), - [anon_sym_TILDE] = ACTIONS(1902), - [anon_sym_L_DQUOTE] = ACTIONS(1902), - [anon_sym_LPAREN2] = ACTIONS(1902), - [sym_primitive_type] = ACTIONS(1900), - [anon_sym_for] = ACTIONS(1900), - [anon_sym_break] = ACTIONS(1900), - [anon_sym_BANG] = ACTIONS(1902), - [aux_sym_preproc_include_token1] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_static] = ACTIONS(1900), - [anon_sym_DQUOTE] = ACTIONS(1902), - [anon_sym_register] = ACTIONS(1900), - [anon_sym_STAR] = ACTIONS(1902), - [anon_sym_if] = ACTIONS(1900), - [anon_sym_switch] = ACTIONS(1900), - [anon_sym_enum] = ACTIONS(1900), - [sym_false] = ACTIONS(1900), - [anon_sym_return] = ACTIONS(1900), - [anon_sym_continue] = ACTIONS(1900), - [anon_sym_SEMI] = ACTIONS(1902), - [aux_sym_preproc_def_token1] = ACTIONS(1900), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_auto] = ACTIONS(1900), - [anon_sym_inline] = ACTIONS(1900), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(2210), + [anon_sym_RPAREN] = ACTIONS(2254), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [687] = { - [sym_true] = ACTIONS(1904), - [anon_sym_restrict] = ACTIONS(1904), - [sym_null] = ACTIONS(1904), - [anon_sym_goto] = ACTIONS(1904), - [aux_sym_preproc_if_token2] = ACTIONS(1904), - [anon_sym_const] = ACTIONS(1904), - [anon_sym_typedef] = ACTIONS(1904), - [anon_sym_DASH_DASH] = ACTIONS(1906), - [anon_sym__Atomic] = ACTIONS(1904), - [sym_identifier] = ACTIONS(1904), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1904), - [sym_number_literal] = ACTIONS(1906), - [anon_sym_volatile] = ACTIONS(1904), - [anon_sym_SQUOTE] = ACTIONS(1906), - [anon_sym_extern] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1906), - [anon_sym_struct] = ACTIONS(1904), - [anon_sym_signed] = ACTIONS(1904), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1904), - [anon_sym_while] = ACTIONS(1904), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1904), - [aux_sym_preproc_elif_token1] = ACTIONS(1904), - [anon_sym_L_SQUOTE] = ACTIONS(1906), - [anon_sym___attribute__] = ACTIONS(1904), - [anon_sym_sizeof] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_union] = ACTIONS(1904), - [anon_sym_unsigned] = ACTIONS(1904), - [anon_sym_short] = ACTIONS(1904), - [anon_sym_do] = ACTIONS(1904), - [aux_sym_preproc_else_token1] = ACTIONS(1904), - [sym_preproc_directive] = ACTIONS(1904), - [anon_sym_AMP] = ACTIONS(1906), - [aux_sym_preproc_if_token1] = ACTIONS(1904), - [anon_sym_TILDE] = ACTIONS(1906), - [anon_sym_L_DQUOTE] = ACTIONS(1906), - [anon_sym_LPAREN2] = ACTIONS(1906), - [anon_sym_else] = ACTIONS(1904), - [sym_primitive_type] = ACTIONS(1904), - [anon_sym_for] = ACTIONS(1904), - [anon_sym_break] = ACTIONS(1904), - [anon_sym_BANG] = ACTIONS(1906), - [aux_sym_preproc_include_token1] = ACTIONS(1904), - [anon_sym_DASH] = ACTIONS(1904), - [anon_sym_static] = ACTIONS(1904), - [anon_sym_DQUOTE] = ACTIONS(1906), - [anon_sym_register] = ACTIONS(1904), - [anon_sym_STAR] = ACTIONS(1906), - [anon_sym_if] = ACTIONS(1904), - [anon_sym_switch] = ACTIONS(1904), - [anon_sym_enum] = ACTIONS(1904), - [sym_false] = ACTIONS(1904), - [anon_sym_return] = ACTIONS(1904), - [anon_sym_continue] = ACTIONS(1904), - [anon_sym_SEMI] = ACTIONS(1906), - [aux_sym_preproc_def_token1] = ACTIONS(1904), - [anon_sym_PLUS] = ACTIONS(1904), - [anon_sym_auto] = ACTIONS(1904), - [anon_sym_inline] = ACTIONS(1904), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(2210), + [anon_sym_RPAREN] = ACTIONS(2256), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [688] = { - [sym_if_statement] = STATE(697), - [sym_do_statement] = STATE(697), - [sym_for_statement] = STATE(697), - [sym__expression] = STATE(951), - [sym_comma_expression] = STATE(952), - [sym_binary_expression] = STATE(951), - [sym_update_expression] = STATE(951), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(697), - [sym_return_statement] = STATE(697), - [sym_break_statement] = STATE(697), - [sym_conditional_expression] = STATE(951), - [sym_assignment_expression] = STATE(951), - [sym_cast_expression] = STATE(951), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(951), - [sym_char_literal] = STATE(951), - [sym_labeled_statement] = STATE(697), - [sym_while_statement] = STATE(697), - [sym_continue_statement] = STATE(697), - [sym_goto_statement] = STATE(697), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(951), - [sym_sizeof_expression] = STATE(951), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(951), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(697), - [sym_expression_statement] = STATE(697), - [anon_sym_LBRACE] = ACTIONS(398), - [sym_true] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [anon_sym_do] = ACTIONS(400), - [anon_sym_goto] = ACTIONS(380), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(2291), - [anon_sym_for] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(390), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(416), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(418), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(378), - [anon_sym_return] = ACTIONS(420), - [anon_sym_while] = ACTIONS(394), - [anon_sym_continue] = ACTIONS(422), - [anon_sym_SEMI] = ACTIONS(424), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(2210), + [anon_sym_SEMI] = ACTIONS(2258), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [689] = { - [sym_if_statement] = STATE(698), - [sym_do_statement] = STATE(698), - [sym_for_statement] = STATE(698), - [sym__expression] = STATE(951), - [sym_comma_expression] = STATE(952), - [sym_binary_expression] = STATE(951), - [sym_update_expression] = STATE(951), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(698), - [sym_return_statement] = STATE(698), - [sym_break_statement] = STATE(698), - [sym_conditional_expression] = STATE(951), - [sym_assignment_expression] = STATE(951), - [sym_cast_expression] = STATE(951), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(951), - [sym_char_literal] = STATE(951), - [sym_labeled_statement] = STATE(698), - [sym_while_statement] = STATE(698), - [sym_continue_statement] = STATE(698), - [sym_goto_statement] = STATE(698), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(951), - [sym_sizeof_expression] = STATE(951), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(951), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(698), - [sym_expression_statement] = STATE(698), - [anon_sym_LBRACE] = ACTIONS(398), - [sym_true] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [anon_sym_do] = ACTIONS(400), - [anon_sym_goto] = ACTIONS(380), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(2291), - [anon_sym_for] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(390), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(416), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(418), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(378), - [anon_sym_return] = ACTIONS(420), - [anon_sym_while] = ACTIONS(394), - [anon_sym_continue] = ACTIONS(422), - [anon_sym_SEMI] = ACTIONS(424), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(2210), + [anon_sym_RPAREN] = ACTIONS(2260), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [690] = { - [sym_if_statement] = STATE(700), - [sym_do_statement] = STATE(700), - [sym_for_statement] = STATE(700), - [sym__expression] = STATE(951), - [sym_comma_expression] = STATE(952), - [sym_binary_expression] = STATE(951), - [sym_update_expression] = STATE(951), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(700), - [sym_return_statement] = STATE(700), - [sym_break_statement] = STATE(700), - [sym_conditional_expression] = STATE(951), - [sym_assignment_expression] = STATE(951), - [sym_cast_expression] = STATE(951), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(951), - [sym_char_literal] = STATE(951), - [sym_labeled_statement] = STATE(700), - [sym_while_statement] = STATE(700), - [sym_continue_statement] = STATE(700), - [sym_goto_statement] = STATE(700), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(951), - [sym_sizeof_expression] = STATE(951), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(951), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(700), - [sym_expression_statement] = STATE(700), - [anon_sym_LBRACE] = ACTIONS(398), - [sym_true] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [anon_sym_do] = ACTIONS(400), - [anon_sym_goto] = ACTIONS(380), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(2291), - [anon_sym_for] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(390), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(416), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(418), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(378), - [anon_sym_return] = ACTIONS(420), - [anon_sym_while] = ACTIONS(394), - [anon_sym_continue] = ACTIONS(422), - [anon_sym_SEMI] = ACTIONS(424), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(2210), + [anon_sym_RPAREN] = ACTIONS(2262), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [691] = { - [sym_true] = ACTIONS(1918), - [anon_sym_restrict] = ACTIONS(1918), - [sym_null] = ACTIONS(1918), - [anon_sym_goto] = ACTIONS(1918), - [aux_sym_preproc_if_token2] = ACTIONS(1918), - [anon_sym_const] = ACTIONS(1918), - [anon_sym_typedef] = ACTIONS(1918), - [anon_sym_DASH_DASH] = ACTIONS(1920), - [anon_sym__Atomic] = ACTIONS(1918), - [sym_identifier] = ACTIONS(1918), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1918), - [sym_number_literal] = ACTIONS(1920), - [anon_sym_volatile] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1920), - [anon_sym_extern] = ACTIONS(1918), - [anon_sym_PLUS_PLUS] = ACTIONS(1920), - [anon_sym_struct] = ACTIONS(1918), - [anon_sym_signed] = ACTIONS(1918), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1918), - [anon_sym_while] = ACTIONS(1918), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1918), - [aux_sym_preproc_elif_token1] = ACTIONS(1918), - [anon_sym_L_SQUOTE] = ACTIONS(1920), - [anon_sym___attribute__] = ACTIONS(1918), - [anon_sym_sizeof] = ACTIONS(1918), - [anon_sym_LBRACE] = ACTIONS(1920), - [anon_sym_union] = ACTIONS(1918), - [anon_sym_unsigned] = ACTIONS(1918), - [anon_sym_short] = ACTIONS(1918), - [anon_sym_do] = ACTIONS(1918), - [aux_sym_preproc_else_token1] = ACTIONS(1918), - [sym_preproc_directive] = ACTIONS(1918), - [anon_sym_AMP] = ACTIONS(1920), - [aux_sym_preproc_if_token1] = ACTIONS(1918), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_L_DQUOTE] = ACTIONS(1920), - [anon_sym_LPAREN2] = ACTIONS(1920), - [anon_sym_else] = ACTIONS(1918), - [sym_primitive_type] = ACTIONS(1918), - [anon_sym_for] = ACTIONS(1918), - [anon_sym_break] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [aux_sym_preproc_include_token1] = ACTIONS(1918), - [anon_sym_DASH] = ACTIONS(1918), - [anon_sym_static] = ACTIONS(1918), - [anon_sym_DQUOTE] = ACTIONS(1920), - [anon_sym_register] = ACTIONS(1918), - [anon_sym_STAR] = ACTIONS(1920), - [anon_sym_if] = ACTIONS(1918), - [anon_sym_switch] = ACTIONS(1918), - [anon_sym_enum] = ACTIONS(1918), - [sym_false] = ACTIONS(1918), - [anon_sym_return] = ACTIONS(1918), - [anon_sym_continue] = ACTIONS(1918), - [anon_sym_SEMI] = ACTIONS(1920), - [aux_sym_preproc_def_token1] = ACTIONS(1918), - [anon_sym_PLUS] = ACTIONS(1918), - [anon_sym_auto] = ACTIONS(1918), - [anon_sym_inline] = ACTIONS(1918), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(2210), + [anon_sym_RPAREN] = ACTIONS(2264), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [692] = { - [sym_if_statement] = STATE(703), - [sym_do_statement] = STATE(703), - [sym_for_statement] = STATE(703), - [sym__expression] = STATE(951), - [sym_comma_expression] = STATE(952), - [sym_binary_expression] = STATE(951), - [sym_update_expression] = STATE(951), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(703), - [sym_return_statement] = STATE(703), - [sym_break_statement] = STATE(703), - [sym_conditional_expression] = STATE(951), - [sym_assignment_expression] = STATE(951), - [sym_cast_expression] = STATE(951), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(951), - [sym_char_literal] = STATE(951), - [sym_labeled_statement] = STATE(703), - [sym_while_statement] = STATE(703), - [sym_continue_statement] = STATE(703), - [sym_goto_statement] = STATE(703), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(951), - [sym_sizeof_expression] = STATE(951), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(951), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(703), - [sym_expression_statement] = STATE(703), - [anon_sym_LBRACE] = ACTIONS(398), - [sym_true] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [anon_sym_do] = ACTIONS(400), - [anon_sym_goto] = ACTIONS(380), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(2291), - [anon_sym_for] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(390), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(416), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(418), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(378), - [anon_sym_return] = ACTIONS(420), - [anon_sym_while] = ACTIONS(394), - [anon_sym_continue] = ACTIONS(422), - [anon_sym_SEMI] = ACTIONS(424), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(2210), + [anon_sym_SEMI] = ACTIONS(2266), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [693] = { - [sym_if_statement] = STATE(704), - [sym_do_statement] = STATE(704), - [sym_for_statement] = STATE(704), - [sym__expression] = STATE(951), - [sym_comma_expression] = STATE(952), - [sym_binary_expression] = STATE(951), - [sym_update_expression] = STATE(951), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(704), - [sym_return_statement] = STATE(704), - [sym_break_statement] = STATE(704), - [sym_conditional_expression] = STATE(951), - [sym_assignment_expression] = STATE(951), - [sym_cast_expression] = STATE(951), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(951), - [sym_char_literal] = STATE(951), - [sym_labeled_statement] = STATE(704), - [sym_while_statement] = STATE(704), - [sym_continue_statement] = STATE(704), - [sym_goto_statement] = STATE(704), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(951), - [sym_sizeof_expression] = STATE(951), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(951), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(704), - [sym_expression_statement] = STATE(704), - [anon_sym_LBRACE] = ACTIONS(398), - [sym_true] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [anon_sym_do] = ACTIONS(400), - [anon_sym_goto] = ACTIONS(380), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(2291), - [anon_sym_for] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(390), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(416), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(418), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(378), - [anon_sym_return] = ACTIONS(420), - [anon_sym_while] = ACTIONS(394), - [anon_sym_continue] = ACTIONS(422), - [anon_sym_SEMI] = ACTIONS(424), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(2210), + [anon_sym_RPAREN] = ACTIONS(2268), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [694] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1949), - [anon_sym_union] = ACTIONS(1949), - [anon_sym_unsigned] = ACTIONS(1949), - [anon_sym_restrict] = ACTIONS(1949), - [anon_sym_short] = ACTIONS(1949), - [anon_sym_static] = ACTIONS(1949), - [anon_sym_volatile] = ACTIONS(1949), - [anon_sym_register] = ACTIONS(1949), - [anon_sym_extern] = ACTIONS(1949), - [aux_sym_preproc_if_token2] = ACTIONS(1949), - [sym_preproc_directive] = ACTIONS(1949), - [anon_sym_signed] = ACTIONS(1949), - [aux_sym_preproc_if_token1] = ACTIONS(1949), - [anon_sym_long] = ACTIONS(1949), - [anon_sym_enum] = ACTIONS(1949), - [anon_sym_const] = ACTIONS(1949), - [anon_sym_struct] = ACTIONS(1949), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1949), - [aux_sym_preproc_def_token1] = ACTIONS(1949), - [anon_sym__Atomic] = ACTIONS(1949), - [anon_sym_auto] = ACTIONS(1949), - [sym_primitive_type] = ACTIONS(1949), - [anon_sym_inline] = ACTIONS(1949), - [anon_sym___attribute__] = ACTIONS(1949), - [sym_identifier] = ACTIONS(1949), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(2210), + [anon_sym_RPAREN] = ACTIONS(2270), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [695] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1953), - [anon_sym_union] = ACTIONS(1953), - [anon_sym_unsigned] = ACTIONS(1953), - [anon_sym_restrict] = ACTIONS(1953), - [anon_sym_short] = ACTIONS(1953), - [anon_sym_static] = ACTIONS(1953), - [anon_sym_volatile] = ACTIONS(1953), - [anon_sym_register] = ACTIONS(1953), - [anon_sym_extern] = ACTIONS(1953), - [aux_sym_preproc_if_token2] = ACTIONS(1953), - [sym_preproc_directive] = ACTIONS(1953), - [anon_sym_signed] = ACTIONS(1953), - [aux_sym_preproc_if_token1] = ACTIONS(1953), - [anon_sym_long] = ACTIONS(1953), - [anon_sym_enum] = ACTIONS(1953), - [anon_sym_const] = ACTIONS(1953), - [anon_sym_struct] = ACTIONS(1953), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1953), - [aux_sym_preproc_def_token1] = ACTIONS(1953), - [anon_sym__Atomic] = ACTIONS(1953), - [anon_sym_auto] = ACTIONS(1953), - [sym_primitive_type] = ACTIONS(1953), - [anon_sym_inline] = ACTIONS(1953), - [anon_sym___attribute__] = ACTIONS(1953), - [sym_identifier] = ACTIONS(1953), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(2210), + [anon_sym_RPAREN] = ACTIONS(2272), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [696] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1963), - [anon_sym_union] = ACTIONS(1963), - [anon_sym_unsigned] = ACTIONS(1963), - [anon_sym_restrict] = ACTIONS(1963), - [anon_sym_short] = ACTIONS(1963), - [anon_sym_static] = ACTIONS(1963), - [anon_sym_volatile] = ACTIONS(1963), - [anon_sym_register] = ACTIONS(1963), - [anon_sym_extern] = ACTIONS(1963), - [aux_sym_preproc_if_token2] = ACTIONS(1963), - [sym_preproc_directive] = ACTIONS(1963), - [anon_sym_signed] = ACTIONS(1963), - [aux_sym_preproc_if_token1] = ACTIONS(1963), - [anon_sym_long] = ACTIONS(1963), - [anon_sym_enum] = ACTIONS(1963), - [anon_sym_const] = ACTIONS(1963), - [anon_sym_struct] = ACTIONS(1963), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1963), - [aux_sym_preproc_def_token1] = ACTIONS(1963), - [anon_sym__Atomic] = ACTIONS(1963), - [anon_sym_auto] = ACTIONS(1963), - [sym_primitive_type] = ACTIONS(1963), - [anon_sym_inline] = ACTIONS(1963), - [anon_sym___attribute__] = ACTIONS(1963), - [sym_identifier] = ACTIONS(1963), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(2210), + [anon_sym_RPAREN] = ACTIONS(2274), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [697] = { - [sym_true] = ACTIONS(1986), - [anon_sym_restrict] = ACTIONS(1986), - [sym_null] = ACTIONS(1986), - [anon_sym_goto] = ACTIONS(1986), - [aux_sym_preproc_if_token2] = ACTIONS(1986), - [anon_sym_const] = ACTIONS(1986), - [anon_sym_typedef] = ACTIONS(1986), - [anon_sym_DASH_DASH] = ACTIONS(1988), - [anon_sym__Atomic] = ACTIONS(1986), - [sym_identifier] = ACTIONS(1986), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1986), - [sym_number_literal] = ACTIONS(1988), - [anon_sym_volatile] = ACTIONS(1986), - [anon_sym_SQUOTE] = ACTIONS(1988), - [anon_sym_extern] = ACTIONS(1986), - [anon_sym_PLUS_PLUS] = ACTIONS(1988), - [anon_sym_struct] = ACTIONS(1986), - [anon_sym_signed] = ACTIONS(1986), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1986), - [anon_sym_while] = ACTIONS(1986), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1986), - [aux_sym_preproc_elif_token1] = ACTIONS(1986), - [anon_sym_L_SQUOTE] = ACTIONS(1988), - [anon_sym___attribute__] = ACTIONS(1986), - [anon_sym_sizeof] = ACTIONS(1986), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_union] = ACTIONS(1986), - [anon_sym_unsigned] = ACTIONS(1986), - [anon_sym_short] = ACTIONS(1986), - [anon_sym_do] = ACTIONS(1986), - [aux_sym_preproc_else_token1] = ACTIONS(1986), - [sym_preproc_directive] = ACTIONS(1986), - [anon_sym_AMP] = ACTIONS(1988), - [aux_sym_preproc_if_token1] = ACTIONS(1986), - [anon_sym_TILDE] = ACTIONS(1988), - [anon_sym_L_DQUOTE] = ACTIONS(1988), - [anon_sym_LPAREN2] = ACTIONS(1988), - [anon_sym_else] = ACTIONS(1986), - [sym_primitive_type] = ACTIONS(1986), - [anon_sym_for] = ACTIONS(1986), - [anon_sym_break] = ACTIONS(1986), - [anon_sym_BANG] = ACTIONS(1988), - [aux_sym_preproc_include_token1] = ACTIONS(1986), - [anon_sym_DASH] = ACTIONS(1986), - [anon_sym_static] = ACTIONS(1986), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_register] = ACTIONS(1986), - [anon_sym_STAR] = ACTIONS(1988), - [anon_sym_if] = ACTIONS(1986), - [anon_sym_switch] = ACTIONS(1986), - [anon_sym_enum] = ACTIONS(1986), - [sym_false] = ACTIONS(1986), - [anon_sym_return] = ACTIONS(1986), - [anon_sym_continue] = ACTIONS(1986), - [anon_sym_SEMI] = ACTIONS(1988), - [aux_sym_preproc_def_token1] = ACTIONS(1986), - [anon_sym_PLUS] = ACTIONS(1986), - [anon_sym_auto] = ACTIONS(1986), - [anon_sym_inline] = ACTIONS(1986), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(2210), + [anon_sym_RPAREN] = ACTIONS(2276), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [698] = { - [sym_true] = ACTIONS(1990), - [anon_sym_restrict] = ACTIONS(1990), - [sym_null] = ACTIONS(1990), - [anon_sym_goto] = ACTIONS(1990), - [aux_sym_preproc_if_token2] = ACTIONS(1990), - [anon_sym_const] = ACTIONS(1990), - [anon_sym_typedef] = ACTIONS(1990), - [anon_sym_DASH_DASH] = ACTIONS(1992), - [anon_sym__Atomic] = ACTIONS(1990), - [sym_identifier] = ACTIONS(1990), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1990), - [sym_number_literal] = ACTIONS(1992), - [anon_sym_volatile] = ACTIONS(1990), - [anon_sym_SQUOTE] = ACTIONS(1992), - [anon_sym_extern] = ACTIONS(1990), - [anon_sym_PLUS_PLUS] = ACTIONS(1992), - [anon_sym_struct] = ACTIONS(1990), - [anon_sym_signed] = ACTIONS(1990), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1990), - [anon_sym_while] = ACTIONS(1990), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1990), - [aux_sym_preproc_elif_token1] = ACTIONS(1990), - [anon_sym_L_SQUOTE] = ACTIONS(1992), - [anon_sym___attribute__] = ACTIONS(1990), - [anon_sym_sizeof] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1992), - [anon_sym_union] = ACTIONS(1990), - [anon_sym_unsigned] = ACTIONS(1990), - [anon_sym_short] = ACTIONS(1990), - [anon_sym_do] = ACTIONS(1990), - [aux_sym_preproc_else_token1] = ACTIONS(1990), - [sym_preproc_directive] = ACTIONS(1990), - [anon_sym_AMP] = ACTIONS(1992), - [aux_sym_preproc_if_token1] = ACTIONS(1990), - [anon_sym_TILDE] = ACTIONS(1992), - [anon_sym_L_DQUOTE] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(1990), - [sym_primitive_type] = ACTIONS(1990), - [anon_sym_for] = ACTIONS(1990), - [anon_sym_break] = ACTIONS(1990), - [anon_sym_BANG] = ACTIONS(1992), - [aux_sym_preproc_include_token1] = ACTIONS(1990), - [anon_sym_DASH] = ACTIONS(1990), - [anon_sym_static] = ACTIONS(1990), - [anon_sym_DQUOTE] = ACTIONS(1992), - [anon_sym_register] = ACTIONS(1990), - [anon_sym_STAR] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1990), - [anon_sym_switch] = ACTIONS(1990), - [anon_sym_enum] = ACTIONS(1990), - [sym_false] = ACTIONS(1990), - [anon_sym_return] = ACTIONS(1990), - [anon_sym_continue] = ACTIONS(1990), - [anon_sym_SEMI] = ACTIONS(1992), - [aux_sym_preproc_def_token1] = ACTIONS(1990), - [anon_sym_PLUS] = ACTIONS(1990), - [anon_sym_auto] = ACTIONS(1990), - [anon_sym_inline] = ACTIONS(1990), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(2210), + [anon_sym_SEMI] = ACTIONS(2278), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [699] = { - [sym_if_statement] = STATE(706), - [sym_do_statement] = STATE(706), - [sym_for_statement] = STATE(706), - [sym__expression] = STATE(951), - [sym_comma_expression] = STATE(952), - [sym_binary_expression] = STATE(951), - [sym_update_expression] = STATE(951), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(706), - [sym_return_statement] = STATE(706), - [sym_break_statement] = STATE(706), - [sym_conditional_expression] = STATE(951), - [sym_assignment_expression] = STATE(951), - [sym_cast_expression] = STATE(951), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(951), - [sym_char_literal] = STATE(951), - [sym_labeled_statement] = STATE(706), - [sym_while_statement] = STATE(706), - [sym_continue_statement] = STATE(706), - [sym_goto_statement] = STATE(706), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(951), - [sym_sizeof_expression] = STATE(951), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(951), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(706), - [sym_expression_statement] = STATE(706), - [anon_sym_LBRACE] = ACTIONS(398), - [sym_true] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [anon_sym_do] = ACTIONS(400), - [anon_sym_goto] = ACTIONS(380), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(2291), - [anon_sym_for] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(390), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(416), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(418), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(378), - [anon_sym_return] = ACTIONS(420), - [anon_sym_while] = ACTIONS(394), - [anon_sym_continue] = ACTIONS(422), - [anon_sym_SEMI] = ACTIONS(424), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(2210), + [anon_sym_RPAREN] = ACTIONS(2280), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [700] = { - [sym_true] = ACTIONS(1994), - [anon_sym_restrict] = ACTIONS(1994), - [sym_null] = ACTIONS(1994), - [anon_sym_goto] = ACTIONS(1994), - [aux_sym_preproc_if_token2] = ACTIONS(1994), - [anon_sym_const] = ACTIONS(1994), - [anon_sym_typedef] = ACTIONS(1994), - [anon_sym_DASH_DASH] = ACTIONS(1996), - [anon_sym__Atomic] = ACTIONS(1994), - [sym_identifier] = ACTIONS(1994), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1994), - [sym_number_literal] = ACTIONS(1996), - [anon_sym_volatile] = ACTIONS(1994), - [anon_sym_SQUOTE] = ACTIONS(1996), - [anon_sym_extern] = ACTIONS(1994), - [anon_sym_PLUS_PLUS] = ACTIONS(1996), - [anon_sym_struct] = ACTIONS(1994), - [anon_sym_signed] = ACTIONS(1994), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1994), - [anon_sym_while] = ACTIONS(1994), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1994), - [aux_sym_preproc_elif_token1] = ACTIONS(1994), - [anon_sym_L_SQUOTE] = ACTIONS(1996), - [anon_sym___attribute__] = ACTIONS(1994), - [anon_sym_sizeof] = ACTIONS(1994), - [anon_sym_LBRACE] = ACTIONS(1996), - [anon_sym_union] = ACTIONS(1994), - [anon_sym_unsigned] = ACTIONS(1994), - [anon_sym_short] = ACTIONS(1994), - [anon_sym_do] = ACTIONS(1994), - [aux_sym_preproc_else_token1] = ACTIONS(1994), - [sym_preproc_directive] = ACTIONS(1994), - [anon_sym_AMP] = ACTIONS(1996), - [aux_sym_preproc_if_token1] = ACTIONS(1994), - [anon_sym_TILDE] = ACTIONS(1996), - [anon_sym_L_DQUOTE] = ACTIONS(1996), - [anon_sym_LPAREN2] = ACTIONS(1996), - [anon_sym_else] = ACTIONS(1994), - [sym_primitive_type] = ACTIONS(1994), - [anon_sym_for] = ACTIONS(1994), - [anon_sym_break] = ACTIONS(1994), - [anon_sym_BANG] = ACTIONS(1996), - [aux_sym_preproc_include_token1] = ACTIONS(1994), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_static] = ACTIONS(1994), - [anon_sym_DQUOTE] = ACTIONS(1996), - [anon_sym_register] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(1996), - [anon_sym_if] = ACTIONS(1994), - [anon_sym_switch] = ACTIONS(1994), - [anon_sym_enum] = ACTIONS(1994), - [sym_false] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1994), - [anon_sym_continue] = ACTIONS(1994), - [anon_sym_SEMI] = ACTIONS(1996), - [aux_sym_preproc_def_token1] = ACTIONS(1994), - [anon_sym_PLUS] = ACTIONS(1994), - [anon_sym_auto] = ACTIONS(1994), - [anon_sym_inline] = ACTIONS(1994), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(2282), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_RBRACE] = ACTIONS(2282), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [701] = { - [sym_if_statement] = STATE(707), - [sym_do_statement] = STATE(707), - [sym_for_statement] = STATE(707), - [sym__expression] = STATE(951), - [sym_comma_expression] = STATE(952), - [sym_binary_expression] = STATE(951), - [sym_update_expression] = STATE(951), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(707), - [sym_return_statement] = STATE(707), - [sym_break_statement] = STATE(707), - [sym_conditional_expression] = STATE(951), - [sym_assignment_expression] = STATE(951), - [sym_cast_expression] = STATE(951), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(951), - [sym_char_literal] = STATE(951), - [sym_labeled_statement] = STATE(707), - [sym_while_statement] = STATE(707), - [sym_continue_statement] = STATE(707), - [sym_goto_statement] = STATE(707), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(951), - [sym_sizeof_expression] = STATE(951), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(951), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(707), - [sym_expression_statement] = STATE(707), - [anon_sym_LBRACE] = ACTIONS(398), - [sym_true] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [anon_sym_do] = ACTIONS(400), - [anon_sym_goto] = ACTIONS(380), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(2291), - [anon_sym_for] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(390), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(416), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(418), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(378), - [anon_sym_return] = ACTIONS(420), - [anon_sym_while] = ACTIONS(394), - [anon_sym_continue] = ACTIONS(422), - [anon_sym_SEMI] = ACTIONS(424), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(2284), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_RBRACE] = ACTIONS(2284), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [702] = { - [sym_if_statement] = STATE(708), - [sym_do_statement] = STATE(708), - [sym_for_statement] = STATE(708), - [sym__expression] = STATE(951), - [sym_comma_expression] = STATE(952), - [sym_binary_expression] = STATE(951), - [sym_update_expression] = STATE(951), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(708), - [sym_return_statement] = STATE(708), - [sym_break_statement] = STATE(708), - [sym_conditional_expression] = STATE(951), - [sym_assignment_expression] = STATE(951), - [sym_cast_expression] = STATE(951), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(951), - [sym_char_literal] = STATE(951), - [sym_labeled_statement] = STATE(708), - [sym_while_statement] = STATE(708), - [sym_continue_statement] = STATE(708), - [sym_goto_statement] = STATE(708), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(951), - [sym_sizeof_expression] = STATE(951), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(951), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(708), - [sym_expression_statement] = STATE(708), - [anon_sym_LBRACE] = ACTIONS(398), - [sym_true] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [anon_sym_do] = ACTIONS(400), - [anon_sym_goto] = ACTIONS(380), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(2291), - [anon_sym_for] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(390), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(416), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(418), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(378), - [anon_sym_return] = ACTIONS(420), - [anon_sym_while] = ACTIONS(394), - [anon_sym_continue] = ACTIONS(422), - [anon_sym_SEMI] = ACTIONS(424), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(2210), + [anon_sym_RPAREN] = ACTIONS(2286), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [703] = { - [sym_true] = ACTIONS(2000), - [anon_sym_restrict] = ACTIONS(2000), - [sym_null] = ACTIONS(2000), - [anon_sym_goto] = ACTIONS(2000), - [aux_sym_preproc_if_token2] = ACTIONS(2000), - [anon_sym_const] = ACTIONS(2000), - [anon_sym_typedef] = ACTIONS(2000), - [anon_sym_DASH_DASH] = ACTIONS(2002), - [anon_sym__Atomic] = ACTIONS(2000), - [sym_identifier] = ACTIONS(2000), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2000), - [sym_number_literal] = ACTIONS(2002), - [anon_sym_volatile] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2002), - [anon_sym_extern] = ACTIONS(2000), - [anon_sym_PLUS_PLUS] = ACTIONS(2002), - [anon_sym_struct] = ACTIONS(2000), - [anon_sym_signed] = ACTIONS(2000), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(2000), - [anon_sym_while] = ACTIONS(2000), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2000), - [aux_sym_preproc_elif_token1] = ACTIONS(2000), - [anon_sym_L_SQUOTE] = ACTIONS(2002), - [anon_sym___attribute__] = ACTIONS(2000), - [anon_sym_sizeof] = ACTIONS(2000), - [anon_sym_LBRACE] = ACTIONS(2002), - [anon_sym_union] = ACTIONS(2000), - [anon_sym_unsigned] = ACTIONS(2000), - [anon_sym_short] = ACTIONS(2000), - [anon_sym_do] = ACTIONS(2000), - [aux_sym_preproc_else_token1] = ACTIONS(2000), - [sym_preproc_directive] = ACTIONS(2000), - [anon_sym_AMP] = ACTIONS(2002), - [aux_sym_preproc_if_token1] = ACTIONS(2000), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_L_DQUOTE] = ACTIONS(2002), - [anon_sym_LPAREN2] = ACTIONS(2002), - [anon_sym_else] = ACTIONS(2000), - [sym_primitive_type] = ACTIONS(2000), - [anon_sym_for] = ACTIONS(2000), - [anon_sym_break] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [aux_sym_preproc_include_token1] = ACTIONS(2000), - [anon_sym_DASH] = ACTIONS(2000), - [anon_sym_static] = ACTIONS(2000), - [anon_sym_DQUOTE] = ACTIONS(2002), - [anon_sym_register] = ACTIONS(2000), - [anon_sym_STAR] = ACTIONS(2002), - [anon_sym_if] = ACTIONS(2000), - [anon_sym_switch] = ACTIONS(2000), - [anon_sym_enum] = ACTIONS(2000), - [sym_false] = ACTIONS(2000), - [anon_sym_return] = ACTIONS(2000), - [anon_sym_continue] = ACTIONS(2000), - [anon_sym_SEMI] = ACTIONS(2002), - [aux_sym_preproc_def_token1] = ACTIONS(2000), - [anon_sym_PLUS] = ACTIONS(2000), - [anon_sym_auto] = ACTIONS(2000), - [anon_sym_inline] = ACTIONS(2000), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(2210), + [anon_sym_SEMI] = ACTIONS(2288), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [704] = { - [sym_true] = ACTIONS(2004), - [anon_sym_restrict] = ACTIONS(2004), - [sym_null] = ACTIONS(2004), - [anon_sym_goto] = ACTIONS(2004), - [aux_sym_preproc_if_token2] = ACTIONS(2004), - [anon_sym_const] = ACTIONS(2004), - [anon_sym_typedef] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2006), - [anon_sym__Atomic] = ACTIONS(2004), - [sym_identifier] = ACTIONS(2004), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2004), - [sym_number_literal] = ACTIONS(2006), - [anon_sym_volatile] = ACTIONS(2004), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_extern] = ACTIONS(2004), - [anon_sym_PLUS_PLUS] = ACTIONS(2006), - [anon_sym_struct] = ACTIONS(2004), - [anon_sym_signed] = ACTIONS(2004), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(2004), - [anon_sym_while] = ACTIONS(2004), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2004), - [aux_sym_preproc_elif_token1] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym___attribute__] = ACTIONS(2004), - [anon_sym_sizeof] = ACTIONS(2004), - [anon_sym_LBRACE] = ACTIONS(2006), - [anon_sym_union] = ACTIONS(2004), - [anon_sym_unsigned] = ACTIONS(2004), - [anon_sym_short] = ACTIONS(2004), - [anon_sym_do] = ACTIONS(2004), - [aux_sym_preproc_else_token1] = ACTIONS(2004), - [sym_preproc_directive] = ACTIONS(2004), - [anon_sym_AMP] = ACTIONS(2006), - [aux_sym_preproc_if_token1] = ACTIONS(2004), - [anon_sym_TILDE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2006), - [anon_sym_LPAREN2] = ACTIONS(2006), - [anon_sym_else] = ACTIONS(2004), - [sym_primitive_type] = ACTIONS(2004), - [anon_sym_for] = ACTIONS(2004), - [anon_sym_break] = ACTIONS(2004), - [anon_sym_BANG] = ACTIONS(2006), - [aux_sym_preproc_include_token1] = ACTIONS(2004), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_static] = ACTIONS(2004), - [anon_sym_DQUOTE] = ACTIONS(2006), - [anon_sym_register] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_if] = ACTIONS(2004), - [anon_sym_switch] = ACTIONS(2004), - [anon_sym_enum] = ACTIONS(2004), - [sym_false] = ACTIONS(2004), - [anon_sym_return] = ACTIONS(2004), - [anon_sym_continue] = ACTIONS(2004), - [anon_sym_SEMI] = ACTIONS(2006), - [aux_sym_preproc_def_token1] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_auto] = ACTIONS(2004), - [anon_sym_inline] = ACTIONS(2004), + [sym_identifier] = ACTIONS(2290), + [anon_sym_COMMA] = ACTIONS(2292), + [anon_sym_RPAREN] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2292), + [anon_sym_extern] = ACTIONS(2290), + [anon_sym___attribute__] = ACTIONS(2290), + [anon_sym_LPAREN2] = ACTIONS(2292), + [anon_sym_LBRACE] = ACTIONS(2292), + [anon_sym_STAR] = ACTIONS(2292), + [anon_sym_LBRACK] = ACTIONS(2292), + [anon_sym_EQ] = ACTIONS(2292), + [anon_sym_static] = ACTIONS(2290), + [anon_sym_auto] = ACTIONS(2290), + [anon_sym_register] = ACTIONS(2290), + [anon_sym_inline] = ACTIONS(2290), + [anon_sym_const] = ACTIONS(2290), + [anon_sym_volatile] = ACTIONS(2290), + [anon_sym_restrict] = ACTIONS(2290), + [anon_sym__Atomic] = ACTIONS(2290), + [anon_sym_signed] = ACTIONS(2290), + [anon_sym_unsigned] = ACTIONS(2290), + [anon_sym_long] = ACTIONS(2290), + [anon_sym_short] = ACTIONS(2290), + [sym_primitive_type] = ACTIONS(2290), + [anon_sym_enum] = ACTIONS(2290), + [anon_sym_struct] = ACTIONS(2290), + [anon_sym_union] = ACTIONS(2290), + [anon_sym_COLON] = ACTIONS(2292), + [sym_comment] = ACTIONS(3), }, [705] = { - [sym_if_statement] = STATE(710), - [sym_do_statement] = STATE(710), - [sym_for_statement] = STATE(710), - [sym__expression] = STATE(951), - [sym_comma_expression] = STATE(952), - [sym_binary_expression] = STATE(951), - [sym_update_expression] = STATE(951), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(710), - [sym_return_statement] = STATE(710), - [sym_break_statement] = STATE(710), - [sym_conditional_expression] = STATE(951), - [sym_assignment_expression] = STATE(951), - [sym_cast_expression] = STATE(951), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(951), - [sym_char_literal] = STATE(951), - [sym_labeled_statement] = STATE(710), - [sym_while_statement] = STATE(710), - [sym_continue_statement] = STATE(710), - [sym_goto_statement] = STATE(710), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(951), - [sym_sizeof_expression] = STATE(951), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(951), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(710), - [sym_expression_statement] = STATE(710), - [anon_sym_LBRACE] = ACTIONS(398), - [sym_true] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [anon_sym_do] = ACTIONS(400), - [anon_sym_goto] = ACTIONS(380), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(2291), - [anon_sym_for] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(390), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(416), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(418), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(378), - [anon_sym_return] = ACTIONS(420), - [anon_sym_while] = ACTIONS(394), - [anon_sym_continue] = ACTIONS(422), - [anon_sym_SEMI] = ACTIONS(424), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(2210), + [anon_sym_RPAREN] = ACTIONS(2294), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [706] = { - [sym_true] = ACTIONS(2117), - [anon_sym_restrict] = ACTIONS(2117), - [sym_null] = ACTIONS(2117), - [anon_sym_goto] = ACTIONS(2117), - [aux_sym_preproc_if_token2] = ACTIONS(2117), - [anon_sym_const] = ACTIONS(2117), - [anon_sym_typedef] = ACTIONS(2117), - [anon_sym_DASH_DASH] = ACTIONS(2119), - [anon_sym__Atomic] = ACTIONS(2117), - [sym_identifier] = ACTIONS(2117), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2117), - [sym_number_literal] = ACTIONS(2119), - [anon_sym_volatile] = ACTIONS(2117), - [anon_sym_SQUOTE] = ACTIONS(2119), - [anon_sym_extern] = ACTIONS(2117), - [anon_sym_PLUS_PLUS] = ACTIONS(2119), - [anon_sym_struct] = ACTIONS(2117), - [anon_sym_signed] = ACTIONS(2117), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(2117), - [anon_sym_while] = ACTIONS(2117), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2117), - [aux_sym_preproc_elif_token1] = ACTIONS(2117), - [anon_sym_L_SQUOTE] = ACTIONS(2119), - [anon_sym___attribute__] = ACTIONS(2117), - [anon_sym_sizeof] = ACTIONS(2117), - [anon_sym_LBRACE] = ACTIONS(2119), - [anon_sym_union] = ACTIONS(2117), - [anon_sym_unsigned] = ACTIONS(2117), - [anon_sym_short] = ACTIONS(2117), - [anon_sym_do] = ACTIONS(2117), - [aux_sym_preproc_else_token1] = ACTIONS(2117), - [sym_preproc_directive] = ACTIONS(2117), - [anon_sym_AMP] = ACTIONS(2119), - [aux_sym_preproc_if_token1] = ACTIONS(2117), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_L_DQUOTE] = ACTIONS(2119), - [anon_sym_LPAREN2] = ACTIONS(2119), - [anon_sym_else] = ACTIONS(2117), - [sym_primitive_type] = ACTIONS(2117), - [anon_sym_for] = ACTIONS(2117), - [anon_sym_break] = ACTIONS(2117), - [anon_sym_BANG] = ACTIONS(2119), - [aux_sym_preproc_include_token1] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), - [anon_sym_static] = ACTIONS(2117), - [anon_sym_DQUOTE] = ACTIONS(2119), - [anon_sym_register] = ACTIONS(2117), - [anon_sym_STAR] = ACTIONS(2119), - [anon_sym_if] = ACTIONS(2117), - [anon_sym_switch] = ACTIONS(2117), - [anon_sym_enum] = ACTIONS(2117), - [sym_false] = ACTIONS(2117), - [anon_sym_return] = ACTIONS(2117), - [anon_sym_continue] = ACTIONS(2117), - [anon_sym_SEMI] = ACTIONS(2119), - [aux_sym_preproc_def_token1] = ACTIONS(2117), - [anon_sym_PLUS] = ACTIONS(2117), - [anon_sym_auto] = ACTIONS(2117), - [anon_sym_inline] = ACTIONS(2117), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(2210), + [anon_sym_RPAREN] = ACTIONS(2296), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [707] = { - [sym_true] = ACTIONS(2121), - [anon_sym_restrict] = ACTIONS(2121), - [sym_null] = ACTIONS(2121), - [anon_sym_goto] = ACTIONS(2121), - [aux_sym_preproc_if_token2] = ACTIONS(2121), - [anon_sym_const] = ACTIONS(2121), - [anon_sym_typedef] = ACTIONS(2121), - [anon_sym_DASH_DASH] = ACTIONS(2123), - [anon_sym__Atomic] = ACTIONS(2121), - [sym_identifier] = ACTIONS(2121), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2121), - [sym_number_literal] = ACTIONS(2123), - [anon_sym_volatile] = ACTIONS(2121), - [anon_sym_SQUOTE] = ACTIONS(2123), - [anon_sym_extern] = ACTIONS(2121), - [anon_sym_PLUS_PLUS] = ACTIONS(2123), - [anon_sym_struct] = ACTIONS(2121), - [anon_sym_signed] = ACTIONS(2121), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(2121), - [anon_sym_while] = ACTIONS(2121), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2121), - [aux_sym_preproc_elif_token1] = ACTIONS(2121), - [anon_sym_L_SQUOTE] = ACTIONS(2123), - [anon_sym___attribute__] = ACTIONS(2121), - [anon_sym_sizeof] = ACTIONS(2121), - [anon_sym_LBRACE] = ACTIONS(2123), - [anon_sym_union] = ACTIONS(2121), - [anon_sym_unsigned] = ACTIONS(2121), - [anon_sym_short] = ACTIONS(2121), - [anon_sym_do] = ACTIONS(2121), - [aux_sym_preproc_else_token1] = ACTIONS(2121), - [sym_preproc_directive] = ACTIONS(2121), - [anon_sym_AMP] = ACTIONS(2123), - [aux_sym_preproc_if_token1] = ACTIONS(2121), - [anon_sym_TILDE] = ACTIONS(2123), - [anon_sym_L_DQUOTE] = ACTIONS(2123), - [anon_sym_LPAREN2] = ACTIONS(2123), - [anon_sym_else] = ACTIONS(2121), - [sym_primitive_type] = ACTIONS(2121), - [anon_sym_for] = ACTIONS(2121), - [anon_sym_break] = ACTIONS(2121), - [anon_sym_BANG] = ACTIONS(2123), - [aux_sym_preproc_include_token1] = ACTIONS(2121), - [anon_sym_DASH] = ACTIONS(2121), - [anon_sym_static] = ACTIONS(2121), - [anon_sym_DQUOTE] = ACTIONS(2123), - [anon_sym_register] = ACTIONS(2121), - [anon_sym_STAR] = ACTIONS(2123), - [anon_sym_if] = ACTIONS(2121), - [anon_sym_switch] = ACTIONS(2121), - [anon_sym_enum] = ACTIONS(2121), - [sym_false] = ACTIONS(2121), - [anon_sym_return] = ACTIONS(2121), - [anon_sym_continue] = ACTIONS(2121), - [anon_sym_SEMI] = ACTIONS(2123), - [aux_sym_preproc_def_token1] = ACTIONS(2121), - [anon_sym_PLUS] = ACTIONS(2121), - [anon_sym_auto] = ACTIONS(2121), - [anon_sym_inline] = ACTIONS(2121), - }, - [708] = { - [sym_true] = ACTIONS(2125), - [anon_sym_restrict] = ACTIONS(2125), - [sym_null] = ACTIONS(2125), - [anon_sym_goto] = ACTIONS(2125), - [aux_sym_preproc_if_token2] = ACTIONS(2125), - [anon_sym_const] = ACTIONS(2125), - [anon_sym_typedef] = ACTIONS(2125), - [anon_sym_DASH_DASH] = ACTIONS(2127), - [anon_sym__Atomic] = ACTIONS(2125), - [sym_identifier] = ACTIONS(2125), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2125), - [sym_number_literal] = ACTIONS(2127), - [anon_sym_volatile] = ACTIONS(2125), - [anon_sym_SQUOTE] = ACTIONS(2127), - [anon_sym_extern] = ACTIONS(2125), - [anon_sym_PLUS_PLUS] = ACTIONS(2127), - [anon_sym_struct] = ACTIONS(2125), - [anon_sym_signed] = ACTIONS(2125), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(2125), - [anon_sym_while] = ACTIONS(2125), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2125), - [aux_sym_preproc_elif_token1] = ACTIONS(2125), - [anon_sym_L_SQUOTE] = ACTIONS(2127), - [anon_sym___attribute__] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2125), - [anon_sym_LBRACE] = ACTIONS(2127), - [anon_sym_union] = ACTIONS(2125), - [anon_sym_unsigned] = ACTIONS(2125), - [anon_sym_short] = ACTIONS(2125), - [anon_sym_do] = ACTIONS(2125), - [aux_sym_preproc_else_token1] = ACTIONS(2125), - [sym_preproc_directive] = ACTIONS(2125), - [anon_sym_AMP] = ACTIONS(2127), - [aux_sym_preproc_if_token1] = ACTIONS(2125), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_L_DQUOTE] = ACTIONS(2127), - [anon_sym_LPAREN2] = ACTIONS(2127), - [anon_sym_else] = ACTIONS(2125), - [sym_primitive_type] = ACTIONS(2125), - [anon_sym_for] = ACTIONS(2125), - [anon_sym_break] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2127), - [aux_sym_preproc_include_token1] = ACTIONS(2125), - [anon_sym_DASH] = ACTIONS(2125), - [anon_sym_static] = ACTIONS(2125), - [anon_sym_DQUOTE] = ACTIONS(2127), - [anon_sym_register] = ACTIONS(2125), - [anon_sym_STAR] = ACTIONS(2127), - [anon_sym_if] = ACTIONS(2125), - [anon_sym_switch] = ACTIONS(2125), - [anon_sym_enum] = ACTIONS(2125), - [sym_false] = ACTIONS(2125), - [anon_sym_return] = ACTIONS(2125), - [anon_sym_continue] = ACTIONS(2125), - [anon_sym_SEMI] = ACTIONS(2127), - [aux_sym_preproc_def_token1] = ACTIONS(2125), - [anon_sym_PLUS] = ACTIONS(2125), - [anon_sym_auto] = ACTIONS(2125), - [anon_sym_inline] = ACTIONS(2125), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(2210), + [anon_sym_SEMI] = ACTIONS(2298), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), + }, + [708] = { + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(2210), + [anon_sym_RPAREN] = ACTIONS(2300), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [709] = { - [sym_if_statement] = STATE(711), - [sym_do_statement] = STATE(711), - [sym_for_statement] = STATE(711), - [sym__expression] = STATE(951), - [sym_comma_expression] = STATE(952), - [sym_binary_expression] = STATE(951), - [sym_update_expression] = STATE(951), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(711), - [sym_return_statement] = STATE(711), - [sym_break_statement] = STATE(711), - [sym_conditional_expression] = STATE(951), - [sym_assignment_expression] = STATE(951), - [sym_cast_expression] = STATE(951), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(951), - [sym_char_literal] = STATE(951), - [sym_labeled_statement] = STATE(711), - [sym_while_statement] = STATE(711), - [sym_continue_statement] = STATE(711), - [sym_goto_statement] = STATE(711), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(951), - [sym_sizeof_expression] = STATE(951), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(951), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(711), - [sym_expression_statement] = STATE(711), - [anon_sym_LBRACE] = ACTIONS(398), - [sym_true] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [anon_sym_do] = ACTIONS(400), - [anon_sym_goto] = ACTIONS(380), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(2291), - [anon_sym_for] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(390), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(416), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(418), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(378), - [anon_sym_return] = ACTIONS(420), - [anon_sym_while] = ACTIONS(394), - [anon_sym_continue] = ACTIONS(422), - [anon_sym_SEMI] = ACTIONS(424), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(2210), + [anon_sym_RPAREN] = ACTIONS(2302), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [710] = { - [sym_true] = ACTIONS(2129), - [anon_sym_restrict] = ACTIONS(2129), - [sym_null] = ACTIONS(2129), - [anon_sym_goto] = ACTIONS(2129), - [aux_sym_preproc_if_token2] = ACTIONS(2129), - [anon_sym_const] = ACTIONS(2129), - [anon_sym_typedef] = ACTIONS(2129), - [anon_sym_DASH_DASH] = ACTIONS(2131), - [anon_sym__Atomic] = ACTIONS(2129), - [sym_identifier] = ACTIONS(2129), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2129), - [sym_number_literal] = ACTIONS(2131), - [anon_sym_volatile] = ACTIONS(2129), - [anon_sym_SQUOTE] = ACTIONS(2131), - [anon_sym_extern] = ACTIONS(2129), - [anon_sym_PLUS_PLUS] = ACTIONS(2131), - [anon_sym_struct] = ACTIONS(2129), - [anon_sym_signed] = ACTIONS(2129), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(2129), - [anon_sym_while] = ACTIONS(2129), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2129), - [aux_sym_preproc_elif_token1] = ACTIONS(2129), - [anon_sym_L_SQUOTE] = ACTIONS(2131), - [anon_sym___attribute__] = ACTIONS(2129), - [anon_sym_sizeof] = ACTIONS(2129), - [anon_sym_LBRACE] = ACTIONS(2131), - [anon_sym_union] = ACTIONS(2129), - [anon_sym_unsigned] = ACTIONS(2129), - [anon_sym_short] = ACTIONS(2129), - [anon_sym_do] = ACTIONS(2129), - [aux_sym_preproc_else_token1] = ACTIONS(2129), - [sym_preproc_directive] = ACTIONS(2129), - [anon_sym_AMP] = ACTIONS(2131), - [aux_sym_preproc_if_token1] = ACTIONS(2129), - [anon_sym_TILDE] = ACTIONS(2131), - [anon_sym_L_DQUOTE] = ACTIONS(2131), - [anon_sym_LPAREN2] = ACTIONS(2131), - [anon_sym_else] = ACTIONS(2129), - [sym_primitive_type] = ACTIONS(2129), - [anon_sym_for] = ACTIONS(2129), - [anon_sym_break] = ACTIONS(2129), - [anon_sym_BANG] = ACTIONS(2131), - [aux_sym_preproc_include_token1] = ACTIONS(2129), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_static] = ACTIONS(2129), - [anon_sym_DQUOTE] = ACTIONS(2131), - [anon_sym_register] = ACTIONS(2129), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_if] = ACTIONS(2129), - [anon_sym_switch] = ACTIONS(2129), - [anon_sym_enum] = ACTIONS(2129), - [sym_false] = ACTIONS(2129), - [anon_sym_return] = ACTIONS(2129), - [anon_sym_continue] = ACTIONS(2129), - [anon_sym_SEMI] = ACTIONS(2131), - [aux_sym_preproc_def_token1] = ACTIONS(2129), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_auto] = ACTIONS(2129), - [anon_sym_inline] = ACTIONS(2129), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(2210), + [anon_sym_RPAREN] = ACTIONS(2304), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [711] = { - [sym_true] = ACTIONS(2133), - [anon_sym_restrict] = ACTIONS(2133), - [sym_null] = ACTIONS(2133), - [anon_sym_goto] = ACTIONS(2133), - [aux_sym_preproc_if_token2] = ACTIONS(2133), - [anon_sym_const] = ACTIONS(2133), - [anon_sym_typedef] = ACTIONS(2133), - [anon_sym_DASH_DASH] = ACTIONS(2135), - [anon_sym__Atomic] = ACTIONS(2133), - [sym_identifier] = ACTIONS(2133), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2133), - [sym_number_literal] = ACTIONS(2135), - [anon_sym_volatile] = ACTIONS(2133), - [anon_sym_SQUOTE] = ACTIONS(2135), - [anon_sym_extern] = ACTIONS(2133), - [anon_sym_PLUS_PLUS] = ACTIONS(2135), - [anon_sym_struct] = ACTIONS(2133), - [anon_sym_signed] = ACTIONS(2133), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(2133), - [anon_sym_while] = ACTIONS(2133), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2133), - [aux_sym_preproc_elif_token1] = ACTIONS(2133), - [anon_sym_L_SQUOTE] = ACTIONS(2135), - [anon_sym___attribute__] = ACTIONS(2133), - [anon_sym_sizeof] = ACTIONS(2133), - [anon_sym_LBRACE] = ACTIONS(2135), - [anon_sym_union] = ACTIONS(2133), - [anon_sym_unsigned] = ACTIONS(2133), - [anon_sym_short] = ACTIONS(2133), - [anon_sym_do] = ACTIONS(2133), - [aux_sym_preproc_else_token1] = ACTIONS(2133), - [sym_preproc_directive] = ACTIONS(2133), - [anon_sym_AMP] = ACTIONS(2135), - [aux_sym_preproc_if_token1] = ACTIONS(2133), - [anon_sym_TILDE] = ACTIONS(2135), - [anon_sym_L_DQUOTE] = ACTIONS(2135), - [anon_sym_LPAREN2] = ACTIONS(2135), - [anon_sym_else] = ACTIONS(2133), - [sym_primitive_type] = ACTIONS(2133), - [anon_sym_for] = ACTIONS(2133), - [anon_sym_break] = ACTIONS(2133), - [anon_sym_BANG] = ACTIONS(2135), - [aux_sym_preproc_include_token1] = ACTIONS(2133), - [anon_sym_DASH] = ACTIONS(2133), - [anon_sym_static] = ACTIONS(2133), - [anon_sym_DQUOTE] = ACTIONS(2135), - [anon_sym_register] = ACTIONS(2133), - [anon_sym_STAR] = ACTIONS(2135), - [anon_sym_if] = ACTIONS(2133), - [anon_sym_switch] = ACTIONS(2133), - [anon_sym_enum] = ACTIONS(2133), - [sym_false] = ACTIONS(2133), - [anon_sym_return] = ACTIONS(2133), - [anon_sym_continue] = ACTIONS(2133), - [anon_sym_SEMI] = ACTIONS(2135), - [aux_sym_preproc_def_token1] = ACTIONS(2133), - [anon_sym_PLUS] = ACTIONS(2133), - [anon_sym_auto] = ACTIONS(2133), - [anon_sym_inline] = ACTIONS(2133), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(2210), + [anon_sym_RPAREN] = ACTIONS(2306), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [712] = { - [sym_true] = ACTIONS(255), - [anon_sym_restrict] = ACTIONS(255), - [sym_null] = ACTIONS(255), - [anon_sym_goto] = ACTIONS(255), - [aux_sym_preproc_if_token2] = ACTIONS(255), - [anon_sym_const] = ACTIONS(255), - [anon_sym_typedef] = ACTIONS(255), - [anon_sym_DASH_DASH] = ACTIONS(257), - [anon_sym__Atomic] = ACTIONS(255), - [sym_identifier] = ACTIONS(255), - [aux_sym_preproc_ifdef_token1] = ACTIONS(255), - [sym_number_literal] = ACTIONS(257), - [anon_sym_volatile] = ACTIONS(255), - [anon_sym_SQUOTE] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(255), - [anon_sym_PLUS_PLUS] = ACTIONS(257), - [anon_sym_struct] = ACTIONS(255), - [anon_sym_signed] = ACTIONS(255), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(255), - [anon_sym_while] = ACTIONS(255), - [aux_sym_preproc_ifdef_token2] = ACTIONS(255), - [anon_sym_L_SQUOTE] = ACTIONS(257), - [anon_sym___attribute__] = ACTIONS(255), - [anon_sym_sizeof] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(257), - [anon_sym_union] = ACTIONS(255), - [anon_sym_unsigned] = ACTIONS(255), - [anon_sym_short] = ACTIONS(255), - [anon_sym_do] = ACTIONS(255), - [sym_preproc_directive] = ACTIONS(255), - [anon_sym_AMP] = ACTIONS(257), - [aux_sym_preproc_if_token1] = ACTIONS(255), - [anon_sym_TILDE] = ACTIONS(257), - [anon_sym_L_DQUOTE] = ACTIONS(257), - [anon_sym_LPAREN2] = ACTIONS(257), - [anon_sym_else] = ACTIONS(255), - [sym_primitive_type] = ACTIONS(255), - [anon_sym_for] = ACTIONS(255), - [anon_sym_break] = ACTIONS(255), - [anon_sym_BANG] = ACTIONS(257), - [aux_sym_preproc_include_token1] = ACTIONS(255), - [anon_sym_DASH] = ACTIONS(255), - [anon_sym_static] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(257), - [anon_sym_register] = ACTIONS(255), - [anon_sym_STAR] = ACTIONS(257), - [anon_sym_if] = ACTIONS(255), - [anon_sym_switch] = ACTIONS(255), - [anon_sym_enum] = ACTIONS(255), - [sym_false] = ACTIONS(255), - [anon_sym_return] = ACTIONS(255), - [anon_sym_continue] = ACTIONS(255), - [anon_sym_SEMI] = ACTIONS(257), - [aux_sym_preproc_def_token1] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(255), - [anon_sym_auto] = ACTIONS(255), - [anon_sym_inline] = ACTIONS(255), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(2210), + [anon_sym_SEMI] = ACTIONS(2308), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [713] = { - [sym_true] = ACTIONS(336), - [anon_sym_restrict] = ACTIONS(336), - [sym_null] = ACTIONS(336), - [anon_sym_goto] = ACTIONS(336), - [aux_sym_preproc_if_token2] = ACTIONS(336), - [anon_sym_const] = ACTIONS(336), - [anon_sym_typedef] = ACTIONS(336), - [anon_sym_DASH_DASH] = ACTIONS(338), - [anon_sym__Atomic] = ACTIONS(336), - [sym_identifier] = ACTIONS(336), - [aux_sym_preproc_ifdef_token1] = ACTIONS(336), - [sym_number_literal] = ACTIONS(338), - [anon_sym_volatile] = ACTIONS(336), - [anon_sym_SQUOTE] = ACTIONS(338), - [anon_sym_extern] = ACTIONS(336), - [anon_sym_PLUS_PLUS] = ACTIONS(338), - [anon_sym_struct] = ACTIONS(336), - [anon_sym_signed] = ACTIONS(336), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(336), - [anon_sym_while] = ACTIONS(336), - [aux_sym_preproc_ifdef_token2] = ACTIONS(336), - [anon_sym_L_SQUOTE] = ACTIONS(338), - [anon_sym___attribute__] = ACTIONS(336), - [anon_sym_sizeof] = ACTIONS(336), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_union] = ACTIONS(336), - [anon_sym_unsigned] = ACTIONS(336), - [anon_sym_short] = ACTIONS(336), - [anon_sym_do] = ACTIONS(336), - [sym_preproc_directive] = ACTIONS(336), - [anon_sym_AMP] = ACTIONS(338), - [aux_sym_preproc_if_token1] = ACTIONS(336), - [anon_sym_TILDE] = ACTIONS(338), - [anon_sym_L_DQUOTE] = ACTIONS(338), - [anon_sym_LPAREN2] = ACTIONS(338), - [anon_sym_else] = ACTIONS(336), - [sym_primitive_type] = ACTIONS(336), - [anon_sym_for] = ACTIONS(336), - [anon_sym_break] = ACTIONS(336), - [anon_sym_BANG] = ACTIONS(338), - [aux_sym_preproc_include_token1] = ACTIONS(336), - [anon_sym_DASH] = ACTIONS(336), - [anon_sym_static] = ACTIONS(336), - [anon_sym_DQUOTE] = ACTIONS(338), - [anon_sym_register] = ACTIONS(336), - [anon_sym_STAR] = ACTIONS(338), - [anon_sym_if] = ACTIONS(336), - [anon_sym_switch] = ACTIONS(336), - [anon_sym_enum] = ACTIONS(336), - [sym_false] = ACTIONS(336), - [anon_sym_return] = ACTIONS(336), - [anon_sym_continue] = ACTIONS(336), - [anon_sym_SEMI] = ACTIONS(338), - [aux_sym_preproc_def_token1] = ACTIONS(336), - [anon_sym_PLUS] = ACTIONS(336), - [anon_sym_auto] = ACTIONS(336), - [anon_sym_inline] = ACTIONS(336), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(2210), + [anon_sym_SEMI] = ACTIONS(2310), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [714] = { - [sym_true] = ACTIONS(368), - [anon_sym_restrict] = ACTIONS(368), - [sym_null] = ACTIONS(368), - [anon_sym_goto] = ACTIONS(368), - [aux_sym_preproc_if_token2] = ACTIONS(368), - [anon_sym_const] = ACTIONS(368), - [anon_sym_typedef] = ACTIONS(368), - [anon_sym_DASH_DASH] = ACTIONS(370), - [anon_sym__Atomic] = ACTIONS(368), - [sym_identifier] = ACTIONS(368), - [aux_sym_preproc_ifdef_token1] = ACTIONS(368), - [sym_number_literal] = ACTIONS(370), - [anon_sym_volatile] = ACTIONS(368), - [anon_sym_SQUOTE] = ACTIONS(370), - [anon_sym_extern] = ACTIONS(368), - [anon_sym_PLUS_PLUS] = ACTIONS(370), - [anon_sym_struct] = ACTIONS(368), - [anon_sym_signed] = ACTIONS(368), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(368), - [anon_sym_while] = ACTIONS(368), - [aux_sym_preproc_ifdef_token2] = ACTIONS(368), - [aux_sym_preproc_elif_token1] = ACTIONS(368), - [anon_sym_L_SQUOTE] = ACTIONS(370), - [anon_sym___attribute__] = ACTIONS(368), - [anon_sym_sizeof] = ACTIONS(368), - [anon_sym_LBRACE] = ACTIONS(370), - [anon_sym_union] = ACTIONS(368), - [anon_sym_unsigned] = ACTIONS(368), - [anon_sym_short] = ACTIONS(368), - [anon_sym_do] = ACTIONS(368), - [aux_sym_preproc_else_token1] = ACTIONS(368), - [sym_preproc_directive] = ACTIONS(368), - [anon_sym_AMP] = ACTIONS(370), - [aux_sym_preproc_if_token1] = ACTIONS(368), - [anon_sym_TILDE] = ACTIONS(370), - [anon_sym_L_DQUOTE] = ACTIONS(370), - [anon_sym_LPAREN2] = ACTIONS(370), - [sym_primitive_type] = ACTIONS(368), - [anon_sym_for] = ACTIONS(368), - [anon_sym_break] = ACTIONS(368), - [anon_sym_BANG] = ACTIONS(370), - [aux_sym_preproc_include_token1] = ACTIONS(368), - [anon_sym_DASH] = ACTIONS(368), - [anon_sym_static] = ACTIONS(368), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_register] = ACTIONS(368), - [anon_sym_STAR] = ACTIONS(370), - [anon_sym_if] = ACTIONS(368), - [anon_sym_switch] = ACTIONS(368), - [anon_sym_enum] = ACTIONS(368), - [sym_false] = ACTIONS(368), - [anon_sym_return] = ACTIONS(368), - [anon_sym_continue] = ACTIONS(368), - [anon_sym_SEMI] = ACTIONS(370), - [aux_sym_preproc_def_token1] = ACTIONS(368), - [anon_sym_PLUS] = ACTIONS(368), - [anon_sym_auto] = ACTIONS(368), - [anon_sym_inline] = ACTIONS(368), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(2210), + [anon_sym_RPAREN] = ACTIONS(2312), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [715] = { - [sym_true] = ACTIONS(465), - [anon_sym_restrict] = ACTIONS(465), - [sym_null] = ACTIONS(465), - [anon_sym_goto] = ACTIONS(465), - [aux_sym_preproc_if_token2] = ACTIONS(465), - [anon_sym_const] = ACTIONS(465), - [anon_sym_typedef] = ACTIONS(465), - [anon_sym_DASH_DASH] = ACTIONS(467), - [anon_sym__Atomic] = ACTIONS(465), - [sym_identifier] = ACTIONS(465), - [aux_sym_preproc_ifdef_token1] = ACTIONS(465), - [sym_number_literal] = ACTIONS(467), - [anon_sym_volatile] = ACTIONS(465), - [anon_sym_SQUOTE] = ACTIONS(467), - [anon_sym_extern] = ACTIONS(465), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_struct] = ACTIONS(465), - [anon_sym_signed] = ACTIONS(465), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(465), - [anon_sym_while] = ACTIONS(465), - [aux_sym_preproc_ifdef_token2] = ACTIONS(465), - [aux_sym_preproc_elif_token1] = ACTIONS(465), - [anon_sym_L_SQUOTE] = ACTIONS(467), - [anon_sym___attribute__] = ACTIONS(465), - [anon_sym_sizeof] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(467), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsigned] = ACTIONS(465), - [anon_sym_short] = ACTIONS(465), - [anon_sym_do] = ACTIONS(465), - [aux_sym_preproc_else_token1] = ACTIONS(465), - [sym_preproc_directive] = ACTIONS(465), - [anon_sym_AMP] = ACTIONS(467), - [aux_sym_preproc_if_token1] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(467), - [anon_sym_L_DQUOTE] = ACTIONS(467), - [anon_sym_LPAREN2] = ACTIONS(467), - [sym_primitive_type] = ACTIONS(465), - [anon_sym_for] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_BANG] = ACTIONS(467), - [aux_sym_preproc_include_token1] = ACTIONS(465), - [anon_sym_DASH] = ACTIONS(465), - [anon_sym_static] = ACTIONS(465), - [anon_sym_DQUOTE] = ACTIONS(467), - [anon_sym_register] = ACTIONS(465), - [anon_sym_STAR] = ACTIONS(467), - [anon_sym_if] = ACTIONS(465), - [anon_sym_switch] = ACTIONS(465), - [anon_sym_enum] = ACTIONS(465), - [sym_false] = ACTIONS(465), - [anon_sym_return] = ACTIONS(465), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_SEMI] = ACTIONS(467), - [aux_sym_preproc_def_token1] = ACTIONS(465), - [anon_sym_PLUS] = ACTIONS(465), - [anon_sym_auto] = ACTIONS(465), - [anon_sym_inline] = ACTIONS(465), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(2210), + [anon_sym_SEMI] = ACTIONS(2314), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [716] = { - [sym_if_statement] = STATE(732), - [sym_do_statement] = STATE(732), - [sym_for_statement] = STATE(732), - [sym__expression] = STATE(1030), - [sym_comma_expression] = STATE(1031), - [sym_binary_expression] = STATE(1030), - [sym_update_expression] = STATE(1030), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(732), - [sym_return_statement] = STATE(732), - [sym_break_statement] = STATE(732), - [sym_conditional_expression] = STATE(1030), - [sym_assignment_expression] = STATE(1030), - [sym_cast_expression] = STATE(1030), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1030), - [sym_char_literal] = STATE(1030), - [sym_labeled_statement] = STATE(732), - [sym_while_statement] = STATE(732), - [sym_continue_statement] = STATE(732), - [sym_goto_statement] = STATE(732), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1030), - [sym_sizeof_expression] = STATE(1030), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1030), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(732), - [sym_expression_statement] = STATE(732), - [anon_sym_LBRACE] = ACTIONS(854), - [sym_true] = ACTIONS(836), - [sym_null] = ACTIONS(836), - [anon_sym_do] = ACTIONS(856), - [anon_sym_goto] = ACTIONS(838), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(2375), - [anon_sym_for] = ACTIONS(864), - [anon_sym_break] = ACTIONS(866), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(870), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(872), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(836), - [anon_sym_return] = ACTIONS(874), - [anon_sym_while] = ACTIONS(852), - [anon_sym_continue] = ACTIONS(876), - [anon_sym_SEMI] = ACTIONS(878), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(2316), + [anon_sym_RPAREN] = ACTIONS(2316), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [717] = { - [sym_true] = ACTIONS(487), - [anon_sym_restrict] = ACTIONS(487), - [sym_null] = ACTIONS(487), - [anon_sym_goto] = ACTIONS(487), - [aux_sym_preproc_if_token2] = ACTIONS(487), - [anon_sym_const] = ACTIONS(487), - [anon_sym_typedef] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(489), - [anon_sym__Atomic] = ACTIONS(487), - [sym_identifier] = ACTIONS(487), - [aux_sym_preproc_ifdef_token1] = ACTIONS(487), - [sym_number_literal] = ACTIONS(489), - [anon_sym_volatile] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [anon_sym_extern] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(489), - [anon_sym_struct] = ACTIONS(487), - [anon_sym_signed] = ACTIONS(487), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(487), - [anon_sym_while] = ACTIONS(487), - [aux_sym_preproc_ifdef_token2] = ACTIONS(487), - [anon_sym_L_SQUOTE] = ACTIONS(489), - [anon_sym___attribute__] = ACTIONS(487), - [anon_sym_sizeof] = ACTIONS(487), - [anon_sym_LBRACE] = ACTIONS(489), - [anon_sym_union] = ACTIONS(487), - [anon_sym_unsigned] = ACTIONS(487), - [anon_sym_short] = ACTIONS(487), - [anon_sym_do] = ACTIONS(487), - [sym_preproc_directive] = ACTIONS(487), - [anon_sym_AMP] = ACTIONS(489), - [aux_sym_preproc_if_token1] = ACTIONS(487), - [anon_sym_TILDE] = ACTIONS(489), - [anon_sym_L_DQUOTE] = ACTIONS(489), - [anon_sym_LPAREN2] = ACTIONS(489), - [anon_sym_else] = ACTIONS(487), - [sym_primitive_type] = ACTIONS(487), - [anon_sym_for] = ACTIONS(487), - [anon_sym_break] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(489), - [aux_sym_preproc_include_token1] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_static] = ACTIONS(487), - [anon_sym_DQUOTE] = ACTIONS(489), - [anon_sym_register] = ACTIONS(487), - [anon_sym_STAR] = ACTIONS(489), - [anon_sym_if] = ACTIONS(487), - [anon_sym_switch] = ACTIONS(487), - [anon_sym_enum] = ACTIONS(487), - [sym_false] = ACTIONS(487), - [anon_sym_return] = ACTIONS(487), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(489), - [aux_sym_preproc_def_token1] = ACTIONS(487), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_auto] = ACTIONS(487), - [anon_sym_inline] = ACTIONS(487), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(2210), + [anon_sym_RPAREN] = ACTIONS(2318), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [718] = { - [sym_true] = ACTIONS(493), - [anon_sym_restrict] = ACTIONS(493), - [sym_null] = ACTIONS(493), - [anon_sym_goto] = ACTIONS(493), - [aux_sym_preproc_if_token2] = ACTIONS(493), - [anon_sym_const] = ACTIONS(493), - [anon_sym_typedef] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(495), - [anon_sym__Atomic] = ACTIONS(493), - [sym_identifier] = ACTIONS(493), - [aux_sym_preproc_ifdef_token1] = ACTIONS(493), - [sym_number_literal] = ACTIONS(495), - [anon_sym_volatile] = ACTIONS(493), - [anon_sym_SQUOTE] = ACTIONS(495), - [anon_sym_extern] = ACTIONS(493), - [anon_sym_PLUS_PLUS] = ACTIONS(495), - [anon_sym_struct] = ACTIONS(493), - [anon_sym_signed] = ACTIONS(493), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(493), - [anon_sym_while] = ACTIONS(493), - [aux_sym_preproc_ifdef_token2] = ACTIONS(493), - [anon_sym_L_SQUOTE] = ACTIONS(495), - [anon_sym___attribute__] = ACTIONS(493), - [anon_sym_sizeof] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_union] = ACTIONS(493), - [anon_sym_unsigned] = ACTIONS(493), - [anon_sym_short] = ACTIONS(493), - [anon_sym_do] = ACTIONS(493), - [sym_preproc_directive] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(495), - [aux_sym_preproc_if_token1] = ACTIONS(493), - [anon_sym_TILDE] = ACTIONS(495), - [anon_sym_L_DQUOTE] = ACTIONS(495), - [anon_sym_LPAREN2] = ACTIONS(495), - [sym_primitive_type] = ACTIONS(493), - [anon_sym_for] = ACTIONS(493), - [anon_sym_break] = ACTIONS(493), - [anon_sym_BANG] = ACTIONS(495), - [aux_sym_preproc_include_token1] = ACTIONS(493), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_static] = ACTIONS(493), - [anon_sym_DQUOTE] = ACTIONS(495), - [anon_sym_register] = ACTIONS(493), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_if] = ACTIONS(493), - [anon_sym_switch] = ACTIONS(493), - [anon_sym_enum] = ACTIONS(493), - [sym_false] = ACTIONS(493), - [anon_sym_return] = ACTIONS(493), - [anon_sym_continue] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(495), - [aux_sym_preproc_def_token1] = ACTIONS(493), - [anon_sym_PLUS] = ACTIONS(493), - [anon_sym_auto] = ACTIONS(493), - [anon_sym_inline] = ACTIONS(493), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(2210), + [anon_sym_RPAREN] = ACTIONS(2320), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [719] = { - [sym_if_statement] = STATE(735), - [sym_do_statement] = STATE(735), - [sym_for_statement] = STATE(735), - [sym__expression] = STATE(1030), - [sym_comma_expression] = STATE(1031), - [sym_binary_expression] = STATE(1030), - [sym_update_expression] = STATE(1030), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(735), - [sym_return_statement] = STATE(735), - [sym_break_statement] = STATE(735), - [sym_conditional_expression] = STATE(1030), - [sym_assignment_expression] = STATE(1030), - [sym_cast_expression] = STATE(1030), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1030), - [sym_char_literal] = STATE(1030), - [sym_labeled_statement] = STATE(735), - [sym_while_statement] = STATE(735), - [sym_continue_statement] = STATE(735), - [sym_goto_statement] = STATE(735), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1030), - [sym_sizeof_expression] = STATE(1030), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1030), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(735), - [sym_expression_statement] = STATE(735), - [anon_sym_LBRACE] = ACTIONS(854), - [sym_true] = ACTIONS(836), - [sym_null] = ACTIONS(836), - [anon_sym_do] = ACTIONS(856), - [anon_sym_goto] = ACTIONS(838), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(2375), - [anon_sym_for] = ACTIONS(864), - [anon_sym_break] = ACTIONS(866), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(870), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(872), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(836), - [anon_sym_return] = ACTIONS(874), - [anon_sym_while] = ACTIONS(852), - [anon_sym_continue] = ACTIONS(876), - [anon_sym_SEMI] = ACTIONS(878), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(2322), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_RBRACE] = ACTIONS(2322), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [720] = { - [sym_true] = ACTIONS(529), - [anon_sym_restrict] = ACTIONS(529), - [sym_null] = ACTIONS(529), - [anon_sym_goto] = ACTIONS(529), - [aux_sym_preproc_if_token2] = ACTIONS(529), - [anon_sym_const] = ACTIONS(529), - [anon_sym_typedef] = ACTIONS(529), - [anon_sym_DASH_DASH] = ACTIONS(531), - [anon_sym__Atomic] = ACTIONS(529), - [sym_identifier] = ACTIONS(529), - [aux_sym_preproc_ifdef_token1] = ACTIONS(529), - [sym_number_literal] = ACTIONS(531), - [anon_sym_volatile] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(531), - [anon_sym_extern] = ACTIONS(529), - [anon_sym_PLUS_PLUS] = ACTIONS(531), - [anon_sym_struct] = ACTIONS(529), - [anon_sym_signed] = ACTIONS(529), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(529), - [anon_sym_while] = ACTIONS(529), - [aux_sym_preproc_ifdef_token2] = ACTIONS(529), - [anon_sym_L_SQUOTE] = ACTIONS(531), - [anon_sym___attribute__] = ACTIONS(529), - [anon_sym_sizeof] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_union] = ACTIONS(529), - [anon_sym_unsigned] = ACTIONS(529), - [anon_sym_short] = ACTIONS(529), - [anon_sym_do] = ACTIONS(529), - [sym_preproc_directive] = ACTIONS(529), - [anon_sym_AMP] = ACTIONS(531), - [aux_sym_preproc_if_token1] = ACTIONS(529), - [anon_sym_TILDE] = ACTIONS(531), - [anon_sym_L_DQUOTE] = ACTIONS(531), - [anon_sym_LPAREN2] = ACTIONS(531), - [anon_sym_else] = ACTIONS(529), - [sym_primitive_type] = ACTIONS(529), - [anon_sym_for] = ACTIONS(529), - [anon_sym_break] = ACTIONS(529), - [anon_sym_BANG] = ACTIONS(531), - [aux_sym_preproc_include_token1] = ACTIONS(529), - [anon_sym_DASH] = ACTIONS(529), - [anon_sym_static] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [anon_sym_register] = ACTIONS(529), - [anon_sym_STAR] = ACTIONS(531), - [anon_sym_if] = ACTIONS(529), - [anon_sym_switch] = ACTIONS(529), - [anon_sym_enum] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [anon_sym_return] = ACTIONS(529), - [anon_sym_continue] = ACTIONS(529), - [anon_sym_SEMI] = ACTIONS(531), - [aux_sym_preproc_def_token1] = ACTIONS(529), - [anon_sym_PLUS] = ACTIONS(529), - [anon_sym_auto] = ACTIONS(529), - [anon_sym_inline] = ACTIONS(529), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(2210), + [anon_sym_SEMI] = ACTIONS(2324), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [721] = { - [sym_if_statement] = STATE(738), - [sym_do_statement] = STATE(738), - [sym_for_statement] = STATE(738), - [sym__expression] = STATE(1030), - [sym_comma_expression] = STATE(1031), - [sym_binary_expression] = STATE(1030), - [sym_update_expression] = STATE(1030), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(738), - [sym_return_statement] = STATE(738), - [sym_break_statement] = STATE(738), - [sym_conditional_expression] = STATE(1030), - [sym_assignment_expression] = STATE(1030), - [sym_cast_expression] = STATE(1030), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1030), - [sym_char_literal] = STATE(1030), - [sym_labeled_statement] = STATE(738), - [sym_while_statement] = STATE(738), - [sym_continue_statement] = STATE(738), - [sym_goto_statement] = STATE(738), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1030), - [sym_sizeof_expression] = STATE(1030), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1030), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(738), - [sym_expression_statement] = STATE(738), - [anon_sym_LBRACE] = ACTIONS(854), - [sym_true] = ACTIONS(836), - [sym_null] = ACTIONS(836), - [anon_sym_do] = ACTIONS(856), - [anon_sym_goto] = ACTIONS(838), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(2375), - [anon_sym_for] = ACTIONS(864), - [anon_sym_break] = ACTIONS(866), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(870), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(872), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(836), - [anon_sym_return] = ACTIONS(874), - [anon_sym_while] = ACTIONS(852), - [anon_sym_continue] = ACTIONS(876), - [anon_sym_SEMI] = ACTIONS(878), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(2210), + [anon_sym_SEMI] = ACTIONS(2326), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [722] = { - [sym_true] = ACTIONS(535), - [anon_sym_restrict] = ACTIONS(535), - [sym_null] = ACTIONS(535), - [anon_sym_goto] = ACTIONS(535), - [aux_sym_preproc_if_token2] = ACTIONS(535), - [anon_sym_const] = ACTIONS(535), - [anon_sym_typedef] = ACTIONS(535), - [anon_sym_DASH_DASH] = ACTIONS(537), - [anon_sym__Atomic] = ACTIONS(535), - [sym_identifier] = ACTIONS(535), - [aux_sym_preproc_ifdef_token1] = ACTIONS(535), - [sym_number_literal] = ACTIONS(537), - [anon_sym_volatile] = ACTIONS(535), - [anon_sym_SQUOTE] = ACTIONS(537), - [anon_sym_extern] = ACTIONS(535), - [anon_sym_PLUS_PLUS] = ACTIONS(537), - [anon_sym_struct] = ACTIONS(535), - [anon_sym_signed] = ACTIONS(535), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(535), - [anon_sym_while] = ACTIONS(535), - [aux_sym_preproc_ifdef_token2] = ACTIONS(535), - [anon_sym_L_SQUOTE] = ACTIONS(537), - [anon_sym___attribute__] = ACTIONS(535), - [anon_sym_sizeof] = ACTIONS(535), - [anon_sym_LBRACE] = ACTIONS(537), - [anon_sym_union] = ACTIONS(535), - [anon_sym_unsigned] = ACTIONS(535), - [anon_sym_short] = ACTIONS(535), - [anon_sym_do] = ACTIONS(535), - [sym_preproc_directive] = ACTIONS(535), - [anon_sym_AMP] = ACTIONS(537), - [aux_sym_preproc_if_token1] = ACTIONS(535), - [anon_sym_TILDE] = ACTIONS(537), - [anon_sym_L_DQUOTE] = ACTIONS(537), - [anon_sym_LPAREN2] = ACTIONS(537), - [anon_sym_else] = ACTIONS(535), - [sym_primitive_type] = ACTIONS(535), - [anon_sym_for] = ACTIONS(535), - [anon_sym_break] = ACTIONS(535), - [anon_sym_BANG] = ACTIONS(537), - [aux_sym_preproc_include_token1] = ACTIONS(535), - [anon_sym_DASH] = ACTIONS(535), - [anon_sym_static] = ACTIONS(535), - [anon_sym_DQUOTE] = ACTIONS(537), - [anon_sym_register] = ACTIONS(535), - [anon_sym_STAR] = ACTIONS(537), - [anon_sym_if] = ACTIONS(535), - [anon_sym_switch] = ACTIONS(535), - [anon_sym_enum] = ACTIONS(535), - [sym_false] = ACTIONS(535), - [anon_sym_return] = ACTIONS(535), - [anon_sym_continue] = ACTIONS(535), - [anon_sym_SEMI] = ACTIONS(537), - [aux_sym_preproc_def_token1] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(535), - [anon_sym_auto] = ACTIONS(535), - [anon_sym_inline] = ACTIONS(535), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(2210), + [anon_sym_RPAREN] = ACTIONS(2328), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [723] = { - [sym_true] = ACTIONS(605), - [anon_sym_restrict] = ACTIONS(605), - [sym_null] = ACTIONS(605), - [anon_sym_goto] = ACTIONS(605), - [aux_sym_preproc_if_token2] = ACTIONS(605), - [anon_sym_const] = ACTIONS(605), - [anon_sym_typedef] = ACTIONS(605), - [anon_sym_DASH_DASH] = ACTIONS(607), - [anon_sym__Atomic] = ACTIONS(605), - [sym_identifier] = ACTIONS(605), - [aux_sym_preproc_ifdef_token1] = ACTIONS(605), - [sym_number_literal] = ACTIONS(607), - [anon_sym_volatile] = ACTIONS(605), - [anon_sym_SQUOTE] = ACTIONS(607), - [anon_sym_extern] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(607), - [anon_sym_struct] = ACTIONS(605), - [anon_sym_signed] = ACTIONS(605), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(605), - [anon_sym_while] = ACTIONS(605), - [aux_sym_preproc_ifdef_token2] = ACTIONS(605), - [anon_sym_L_SQUOTE] = ACTIONS(607), - [anon_sym___attribute__] = ACTIONS(605), - [anon_sym_sizeof] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(607), - [anon_sym_union] = ACTIONS(605), - [anon_sym_unsigned] = ACTIONS(605), - [anon_sym_short] = ACTIONS(605), - [anon_sym_do] = ACTIONS(605), - [sym_preproc_directive] = ACTIONS(605), - [anon_sym_AMP] = ACTIONS(607), - [aux_sym_preproc_if_token1] = ACTIONS(605), - [anon_sym_TILDE] = ACTIONS(607), - [anon_sym_L_DQUOTE] = ACTIONS(607), - [anon_sym_LPAREN2] = ACTIONS(607), - [anon_sym_else] = ACTIONS(605), - [sym_primitive_type] = ACTIONS(605), - [anon_sym_for] = ACTIONS(605), - [anon_sym_break] = ACTIONS(605), - [anon_sym_BANG] = ACTIONS(607), - [aux_sym_preproc_include_token1] = ACTIONS(605), - [anon_sym_DASH] = ACTIONS(605), - [anon_sym_static] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(607), - [anon_sym_register] = ACTIONS(605), - [anon_sym_STAR] = ACTIONS(607), - [anon_sym_if] = ACTIONS(605), - [anon_sym_switch] = ACTIONS(605), - [anon_sym_enum] = ACTIONS(605), - [sym_false] = ACTIONS(605), - [anon_sym_return] = ACTIONS(605), - [anon_sym_continue] = ACTIONS(605), - [anon_sym_SEMI] = ACTIONS(607), - [aux_sym_preproc_def_token1] = ACTIONS(605), - [anon_sym_PLUS] = ACTIONS(605), - [anon_sym_auto] = ACTIONS(605), - [anon_sym_inline] = ACTIONS(605), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(2210), + [anon_sym_SEMI] = ACTIONS(2330), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [724] = { - [sym_true] = ACTIONS(621), - [anon_sym_restrict] = ACTIONS(621), - [sym_null] = ACTIONS(621), - [anon_sym_goto] = ACTIONS(621), - [aux_sym_preproc_if_token2] = ACTIONS(621), - [anon_sym_const] = ACTIONS(621), - [anon_sym_typedef] = ACTIONS(621), - [anon_sym_DASH_DASH] = ACTIONS(623), - [anon_sym__Atomic] = ACTIONS(621), - [sym_identifier] = ACTIONS(621), - [aux_sym_preproc_ifdef_token1] = ACTIONS(621), - [sym_number_literal] = ACTIONS(623), - [anon_sym_volatile] = ACTIONS(621), - [anon_sym_SQUOTE] = ACTIONS(623), - [anon_sym_extern] = ACTIONS(621), - [anon_sym_PLUS_PLUS] = ACTIONS(623), - [anon_sym_struct] = ACTIONS(621), - [anon_sym_signed] = ACTIONS(621), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(621), - [anon_sym_while] = ACTIONS(621), - [aux_sym_preproc_ifdef_token2] = ACTIONS(621), - [anon_sym_L_SQUOTE] = ACTIONS(623), - [anon_sym___attribute__] = ACTIONS(621), - [anon_sym_sizeof] = ACTIONS(621), - [anon_sym_LBRACE] = ACTIONS(623), - [anon_sym_union] = ACTIONS(621), - [anon_sym_unsigned] = ACTIONS(621), - [anon_sym_short] = ACTIONS(621), - [anon_sym_do] = ACTIONS(621), - [sym_preproc_directive] = ACTIONS(621), - [anon_sym_AMP] = ACTIONS(623), - [aux_sym_preproc_if_token1] = ACTIONS(621), - [anon_sym_TILDE] = ACTIONS(623), - [anon_sym_L_DQUOTE] = ACTIONS(623), - [anon_sym_LPAREN2] = ACTIONS(623), - [sym_primitive_type] = ACTIONS(621), - [anon_sym_for] = ACTIONS(621), - [anon_sym_break] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(623), - [aux_sym_preproc_include_token1] = ACTIONS(621), - [anon_sym_DASH] = ACTIONS(621), - [anon_sym_static] = ACTIONS(621), - [anon_sym_DQUOTE] = ACTIONS(623), - [anon_sym_register] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(623), - [anon_sym_if] = ACTIONS(621), - [anon_sym_switch] = ACTIONS(621), - [anon_sym_enum] = ACTIONS(621), - [sym_false] = ACTIONS(621), - [anon_sym_return] = ACTIONS(621), - [anon_sym_continue] = ACTIONS(621), - [anon_sym_SEMI] = ACTIONS(623), - [aux_sym_preproc_def_token1] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(621), - [anon_sym_auto] = ACTIONS(621), - [anon_sym_inline] = ACTIONS(621), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(2332), + [anon_sym_SEMI] = ACTIONS(2332), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [725] = { - [sym_if_statement] = STATE(725), - [sym_preproc_def] = STATE(725), - [sym_preproc_function_def] = STATE(725), - [sym__expression] = STATE(1030), - [sym_comma_expression] = STATE(1031), - [sym_binary_expression] = STATE(1030), - [sym_update_expression] = STATE(1030), - [sym_call_expression] = STATE(36), - [sym_function_definition] = STATE(725), - [sym_declaration] = STATE(725), - [sym_do_statement] = STATE(725), - [sym_for_statement] = STATE(725), - [aux_sym_translation_unit_repeat1] = STATE(725), - [sym_expression_statement] = STATE(725), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(1032), - [sym_union_specifier] = STATE(1032), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_switch_statement] = STATE(725), - [sym_return_statement] = STATE(725), - [sym_preproc_call] = STATE(725), - [sym_conditional_expression] = STATE(1030), - [sym_assignment_expression] = STATE(1030), - [sym_type_definition] = STATE(725), - [sym_cast_expression] = STATE(1030), - [sym__declaration_specifiers] = STATE(1191), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1030), - [sym_char_literal] = STATE(1030), - [sym_break_statement] = STATE(725), - [sym__empty_declaration] = STATE(725), - [sym_sized_type_specifier] = STATE(1032), - [sym_enum_specifier] = STATE(1032), - [sym_labeled_statement] = STATE(725), - [sym_preproc_include] = STATE(725), - [sym_preproc_if] = STATE(725), - [sym_preproc_ifdef] = STATE(725), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1030), - [sym_sizeof_expression] = STATE(1030), - [sym_attribute_specifier] = STATE(43), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_linkage_specification] = STATE(725), - [sym_concatenated_string] = STATE(1030), - [sym_string_literal] = STATE(41), - [sym_macro_type_specifier] = STATE(1032), - [sym_while_statement] = STATE(725), - [sym_storage_class_specifier] = STATE(43), - [sym_compound_statement] = STATE(725), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_continue_statement] = STATE(725), - [sym_struct_specifier] = STATE(1032), - [sym_goto_statement] = STATE(725), - [sym_true] = ACTIONS(2377), - [anon_sym_restrict] = ACTIONS(665), - [sym_null] = ACTIONS(2377), - [anon_sym_goto] = ACTIONS(2380), - [aux_sym_preproc_if_token2] = ACTIONS(2299), - [anon_sym_const] = ACTIONS(665), - [anon_sym_typedef] = ACTIONS(2383), - [anon_sym_DASH_DASH] = ACTIONS(674), - [anon_sym__Atomic] = ACTIONS(665), - [sym_identifier] = ACTIONS(2386), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2389), - [sym_number_literal] = ACTIONS(2392), - [anon_sym_volatile] = ACTIONS(665), - [anon_sym_SQUOTE] = ACTIONS(686), - [anon_sym_extern] = ACTIONS(2395), - [anon_sym_PLUS_PLUS] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(692), - [anon_sym_signed] = ACTIONS(695), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(695), - [anon_sym_while] = ACTIONS(2398), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2389), - [anon_sym_L_SQUOTE] = ACTIONS(686), - [anon_sym___attribute__] = ACTIONS(701), - [anon_sym_sizeof] = ACTIONS(704), - [anon_sym_LBRACE] = ACTIONS(2401), - [anon_sym_union] = ACTIONS(710), - [anon_sym_unsigned] = ACTIONS(695), - [anon_sym_short] = ACTIONS(695), - [anon_sym_do] = ACTIONS(2404), - [sym_preproc_directive] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(719), - [aux_sym_preproc_if_token1] = ACTIONS(2410), - [anon_sym_TILDE] = ACTIONS(725), - [anon_sym_L_DQUOTE] = ACTIONS(728), - [anon_sym_LPAREN2] = ACTIONS(731), - [sym_primitive_type] = ACTIONS(2413), - [anon_sym_for] = ACTIONS(2416), - [anon_sym_break] = ACTIONS(2419), - [anon_sym_BANG] = ACTIONS(725), - [aux_sym_preproc_include_token1] = ACTIONS(2422), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_static] = ACTIONS(749), - [anon_sym_DQUOTE] = ACTIONS(728), - [anon_sym_register] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(719), - [anon_sym_if] = ACTIONS(2425), - [anon_sym_switch] = ACTIONS(2428), - [anon_sym_enum] = ACTIONS(758), - [sym_false] = ACTIONS(2377), - [anon_sym_return] = ACTIONS(2431), - [anon_sym_continue] = ACTIONS(2434), - [anon_sym_SEMI] = ACTIONS(2437), - [aux_sym_preproc_def_token1] = ACTIONS(2440), - [anon_sym_PLUS] = ACTIONS(746), - [anon_sym_auto] = ACTIONS(749), - [anon_sym_inline] = ACTIONS(749), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(2210), + [anon_sym_RPAREN] = ACTIONS(2334), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [726] = { - [sym_true] = ACTIONS(792), - [anon_sym_restrict] = ACTIONS(792), - [sym_null] = ACTIONS(792), - [anon_sym_goto] = ACTIONS(792), - [aux_sym_preproc_if_token2] = ACTIONS(792), - [anon_sym_const] = ACTIONS(792), - [anon_sym_typedef] = ACTIONS(792), - [anon_sym_DASH_DASH] = ACTIONS(794), - [anon_sym__Atomic] = ACTIONS(792), - [sym_identifier] = ACTIONS(792), - [aux_sym_preproc_ifdef_token1] = ACTIONS(792), - [sym_number_literal] = ACTIONS(794), - [anon_sym_volatile] = ACTIONS(792), - [anon_sym_SQUOTE] = ACTIONS(794), - [anon_sym_extern] = ACTIONS(792), - [anon_sym_PLUS_PLUS] = ACTIONS(794), - [anon_sym_struct] = ACTIONS(792), - [anon_sym_signed] = ACTIONS(792), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(792), - [anon_sym_while] = ACTIONS(792), - [aux_sym_preproc_ifdef_token2] = ACTIONS(792), - [anon_sym_L_SQUOTE] = ACTIONS(794), - [anon_sym___attribute__] = ACTIONS(792), - [anon_sym_sizeof] = ACTIONS(792), - [anon_sym_LBRACE] = ACTIONS(794), - [anon_sym_union] = ACTIONS(792), - [anon_sym_unsigned] = ACTIONS(792), - [anon_sym_short] = ACTIONS(792), - [anon_sym_do] = ACTIONS(792), - [sym_preproc_directive] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(794), - [aux_sym_preproc_if_token1] = ACTIONS(792), - [anon_sym_TILDE] = ACTIONS(794), - [anon_sym_L_DQUOTE] = ACTIONS(794), - [anon_sym_LPAREN2] = ACTIONS(794), - [anon_sym_else] = ACTIONS(792), - [sym_primitive_type] = ACTIONS(792), - [anon_sym_for] = ACTIONS(792), - [anon_sym_break] = ACTIONS(792), - [anon_sym_BANG] = ACTIONS(794), - [aux_sym_preproc_include_token1] = ACTIONS(792), - [anon_sym_DASH] = ACTIONS(792), - [anon_sym_static] = ACTIONS(792), - [anon_sym_DQUOTE] = ACTIONS(794), - [anon_sym_register] = ACTIONS(792), - [anon_sym_STAR] = ACTIONS(794), - [anon_sym_if] = ACTIONS(792), - [anon_sym_switch] = ACTIONS(792), - [anon_sym_enum] = ACTIONS(792), - [sym_false] = ACTIONS(792), - [anon_sym_return] = ACTIONS(792), - [anon_sym_continue] = ACTIONS(792), - [anon_sym_SEMI] = ACTIONS(794), - [aux_sym_preproc_def_token1] = ACTIONS(792), - [anon_sym_PLUS] = ACTIONS(792), - [anon_sym_auto] = ACTIONS(792), - [anon_sym_inline] = ACTIONS(792), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(2210), + [anon_sym_RPAREN] = ACTIONS(2336), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [727] = { - [sym_true] = ACTIONS(822), - [anon_sym_restrict] = ACTIONS(822), - [sym_null] = ACTIONS(822), - [anon_sym_goto] = ACTIONS(822), - [aux_sym_preproc_if_token2] = ACTIONS(822), - [anon_sym_const] = ACTIONS(822), - [anon_sym_typedef] = ACTIONS(822), - [anon_sym_DASH_DASH] = ACTIONS(824), - [anon_sym__Atomic] = ACTIONS(822), - [sym_identifier] = ACTIONS(822), - [aux_sym_preproc_ifdef_token1] = ACTIONS(822), - [sym_number_literal] = ACTIONS(824), - [anon_sym_volatile] = ACTIONS(822), - [anon_sym_SQUOTE] = ACTIONS(824), - [anon_sym_extern] = ACTIONS(822), - [anon_sym_PLUS_PLUS] = ACTIONS(824), - [anon_sym_struct] = ACTIONS(822), - [anon_sym_signed] = ACTIONS(822), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(822), - [anon_sym_while] = ACTIONS(822), - [aux_sym_preproc_ifdef_token2] = ACTIONS(822), - [anon_sym_L_SQUOTE] = ACTIONS(824), - [anon_sym___attribute__] = ACTIONS(822), - [anon_sym_sizeof] = ACTIONS(822), - [anon_sym_LBRACE] = ACTIONS(824), - [anon_sym_union] = ACTIONS(822), - [anon_sym_unsigned] = ACTIONS(822), - [anon_sym_short] = ACTIONS(822), - [anon_sym_do] = ACTIONS(822), - [sym_preproc_directive] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(824), - [aux_sym_preproc_if_token1] = ACTIONS(822), - [anon_sym_TILDE] = ACTIONS(824), - [anon_sym_L_DQUOTE] = ACTIONS(824), - [anon_sym_LPAREN2] = ACTIONS(824), - [anon_sym_else] = ACTIONS(822), - [sym_primitive_type] = ACTIONS(822), - [anon_sym_for] = ACTIONS(822), - [anon_sym_break] = ACTIONS(822), - [anon_sym_BANG] = ACTIONS(824), - [aux_sym_preproc_include_token1] = ACTIONS(822), - [anon_sym_DASH] = ACTIONS(822), - [anon_sym_static] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(824), - [anon_sym_register] = ACTIONS(822), - [anon_sym_STAR] = ACTIONS(824), - [anon_sym_if] = ACTIONS(822), - [anon_sym_switch] = ACTIONS(822), - [anon_sym_enum] = ACTIONS(822), - [sym_false] = ACTIONS(822), - [anon_sym_return] = ACTIONS(822), - [anon_sym_continue] = ACTIONS(822), - [anon_sym_SEMI] = ACTIONS(824), - [aux_sym_preproc_def_token1] = ACTIONS(822), - [anon_sym_PLUS] = ACTIONS(822), - [anon_sym_auto] = ACTIONS(822), - [anon_sym_inline] = ACTIONS(822), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(2210), + [anon_sym_RPAREN] = ACTIONS(2338), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [728] = { - [sym_true] = ACTIONS(826), - [anon_sym_restrict] = ACTIONS(826), - [sym_null] = ACTIONS(826), - [anon_sym_goto] = ACTIONS(826), - [aux_sym_preproc_if_token2] = ACTIONS(826), - [anon_sym_const] = ACTIONS(826), - [anon_sym_typedef] = ACTIONS(826), - [anon_sym_DASH_DASH] = ACTIONS(828), - [anon_sym__Atomic] = ACTIONS(826), - [sym_identifier] = ACTIONS(826), - [aux_sym_preproc_ifdef_token1] = ACTIONS(826), - [sym_number_literal] = ACTIONS(828), - [anon_sym_volatile] = ACTIONS(826), - [anon_sym_SQUOTE] = ACTIONS(828), - [anon_sym_extern] = ACTIONS(826), - [anon_sym_PLUS_PLUS] = ACTIONS(828), - [anon_sym_struct] = ACTIONS(826), - [anon_sym_signed] = ACTIONS(826), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(826), - [anon_sym_while] = ACTIONS(826), - [aux_sym_preproc_ifdef_token2] = ACTIONS(826), - [aux_sym_preproc_elif_token1] = ACTIONS(826), - [anon_sym_L_SQUOTE] = ACTIONS(828), - [anon_sym___attribute__] = ACTIONS(826), - [anon_sym_sizeof] = ACTIONS(826), - [anon_sym_LBRACE] = ACTIONS(828), - [anon_sym_union] = ACTIONS(826), - [anon_sym_unsigned] = ACTIONS(826), - [anon_sym_short] = ACTIONS(826), - [anon_sym_do] = ACTIONS(826), - [aux_sym_preproc_else_token1] = ACTIONS(826), - [sym_preproc_directive] = ACTIONS(826), - [anon_sym_AMP] = ACTIONS(828), - [aux_sym_preproc_if_token1] = ACTIONS(826), - [anon_sym_TILDE] = ACTIONS(828), - [anon_sym_L_DQUOTE] = ACTIONS(828), - [anon_sym_LPAREN2] = ACTIONS(828), - [sym_primitive_type] = ACTIONS(826), - [anon_sym_for] = ACTIONS(826), - [anon_sym_break] = ACTIONS(826), - [anon_sym_BANG] = ACTIONS(828), - [aux_sym_preproc_include_token1] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_static] = ACTIONS(826), - [anon_sym_DQUOTE] = ACTIONS(828), - [anon_sym_register] = ACTIONS(826), - [anon_sym_STAR] = ACTIONS(828), - [anon_sym_if] = ACTIONS(826), - [anon_sym_switch] = ACTIONS(826), - [anon_sym_enum] = ACTIONS(826), - [sym_false] = ACTIONS(826), - [anon_sym_return] = ACTIONS(826), - [anon_sym_continue] = ACTIONS(826), - [anon_sym_SEMI] = ACTIONS(828), - [aux_sym_preproc_def_token1] = ACTIONS(826), - [anon_sym_PLUS] = ACTIONS(826), - [anon_sym_auto] = ACTIONS(826), - [anon_sym_inline] = ACTIONS(826), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(2210), + [anon_sym_RPAREN] = ACTIONS(2340), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [729] = { - [sym_true] = ACTIONS(830), - [anon_sym_restrict] = ACTIONS(830), - [sym_null] = ACTIONS(830), - [anon_sym_goto] = ACTIONS(830), - [aux_sym_preproc_if_token2] = ACTIONS(830), - [anon_sym_const] = ACTIONS(830), - [anon_sym_typedef] = ACTIONS(830), - [anon_sym_DASH_DASH] = ACTIONS(832), - [anon_sym__Atomic] = ACTIONS(830), - [sym_identifier] = ACTIONS(830), - [aux_sym_preproc_ifdef_token1] = ACTIONS(830), - [sym_number_literal] = ACTIONS(832), - [anon_sym_volatile] = ACTIONS(830), - [anon_sym_SQUOTE] = ACTIONS(832), - [anon_sym_extern] = ACTIONS(830), - [anon_sym_PLUS_PLUS] = ACTIONS(832), - [anon_sym_struct] = ACTIONS(830), - [anon_sym_signed] = ACTIONS(830), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(830), - [anon_sym_while] = ACTIONS(830), - [aux_sym_preproc_ifdef_token2] = ACTIONS(830), - [anon_sym_L_SQUOTE] = ACTIONS(832), - [anon_sym___attribute__] = ACTIONS(830), - [anon_sym_sizeof] = ACTIONS(830), - [anon_sym_LBRACE] = ACTIONS(832), - [anon_sym_union] = ACTIONS(830), - [anon_sym_unsigned] = ACTIONS(830), - [anon_sym_short] = ACTIONS(830), - [anon_sym_do] = ACTIONS(830), - [sym_preproc_directive] = ACTIONS(830), - [anon_sym_AMP] = ACTIONS(832), - [aux_sym_preproc_if_token1] = ACTIONS(830), - [anon_sym_TILDE] = ACTIONS(832), - [anon_sym_L_DQUOTE] = ACTIONS(832), - [anon_sym_LPAREN2] = ACTIONS(832), - [sym_primitive_type] = ACTIONS(830), - [anon_sym_for] = ACTIONS(830), - [anon_sym_break] = ACTIONS(830), - [anon_sym_BANG] = ACTIONS(832), - [aux_sym_preproc_include_token1] = ACTIONS(830), - [anon_sym_DASH] = ACTIONS(830), - [anon_sym_static] = ACTIONS(830), - [anon_sym_DQUOTE] = ACTIONS(832), - [anon_sym_register] = ACTIONS(830), - [anon_sym_STAR] = ACTIONS(832), - [anon_sym_if] = ACTIONS(830), - [anon_sym_switch] = ACTIONS(830), - [anon_sym_enum] = ACTIONS(830), - [sym_false] = ACTIONS(830), - [anon_sym_return] = ACTIONS(830), - [anon_sym_continue] = ACTIONS(830), - [anon_sym_SEMI] = ACTIONS(832), - [aux_sym_preproc_def_token1] = ACTIONS(830), - [anon_sym_PLUS] = ACTIONS(830), - [anon_sym_auto] = ACTIONS(830), - [anon_sym_inline] = ACTIONS(830), + [sym_argument_list] = STATE(475), + [anon_sym_COMMA] = ACTIONS(2210), + [anon_sym_RPAREN] = ACTIONS(2342), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [730] = { - [sym_true] = ACTIONS(892), - [anon_sym_restrict] = ACTIONS(892), - [sym_null] = ACTIONS(892), - [anon_sym_goto] = ACTIONS(892), - [anon_sym_const] = ACTIONS(892), - [anon_sym_typedef] = ACTIONS(892), - [anon_sym_DASH_DASH] = ACTIONS(894), - [anon_sym__Atomic] = ACTIONS(892), - [sym_identifier] = ACTIONS(892), - [aux_sym_preproc_ifdef_token1] = ACTIONS(892), - [sym_number_literal] = ACTIONS(894), - [anon_sym_volatile] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(894), - [anon_sym_extern] = ACTIONS(892), - [anon_sym_PLUS_PLUS] = ACTIONS(894), - [anon_sym_struct] = ACTIONS(892), - [anon_sym_signed] = ACTIONS(892), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(892), - [anon_sym_while] = ACTIONS(892), - [aux_sym_preproc_ifdef_token2] = ACTIONS(892), - [anon_sym_L_SQUOTE] = ACTIONS(894), - [anon_sym___attribute__] = ACTIONS(892), - [anon_sym_sizeof] = ACTIONS(892), - [anon_sym_LBRACE] = ACTIONS(894), - [anon_sym_union] = ACTIONS(892), - [anon_sym_unsigned] = ACTIONS(892), - [anon_sym_short] = ACTIONS(892), - [anon_sym_do] = ACTIONS(892), - [sym_preproc_directive] = ACTIONS(892), - [anon_sym_AMP] = ACTIONS(894), - [aux_sym_preproc_if_token1] = ACTIONS(892), - [anon_sym_TILDE] = ACTIONS(894), - [anon_sym_L_DQUOTE] = ACTIONS(894), - [anon_sym_LPAREN2] = ACTIONS(894), - [anon_sym_RBRACE] = ACTIONS(894), - [anon_sym_else] = ACTIONS(892), - [sym_primitive_type] = ACTIONS(892), - [anon_sym_for] = ACTIONS(892), - [anon_sym_break] = ACTIONS(892), - [anon_sym_BANG] = ACTIONS(894), - [aux_sym_preproc_include_token1] = ACTIONS(892), - [anon_sym_DASH] = ACTIONS(892), - [anon_sym_static] = ACTIONS(892), - [anon_sym_DQUOTE] = ACTIONS(894), - [anon_sym_register] = ACTIONS(892), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_if] = ACTIONS(892), - [anon_sym_switch] = ACTIONS(892), - [anon_sym_enum] = ACTIONS(892), - [sym_false] = ACTIONS(892), - [anon_sym_return] = ACTIONS(892), - [anon_sym_continue] = ACTIONS(892), - [anon_sym_SEMI] = ACTIONS(894), - [aux_sym_preproc_def_token1] = ACTIONS(892), - [anon_sym_PLUS] = ACTIONS(892), - [anon_sym_auto] = ACTIONS(892), - [anon_sym_inline] = ACTIONS(892), + [sym_argument_list] = STATE(475), + [anon_sym_SEMI] = ACTIONS(2344), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [731] = { - [sym_true] = ACTIONS(937), - [anon_sym_restrict] = ACTIONS(937), - [sym_null] = ACTIONS(937), - [anon_sym_goto] = ACTIONS(937), - [aux_sym_preproc_if_token2] = ACTIONS(937), - [anon_sym_const] = ACTIONS(937), - [anon_sym_typedef] = ACTIONS(937), - [anon_sym_DASH_DASH] = ACTIONS(939), - [anon_sym__Atomic] = ACTIONS(937), - [sym_identifier] = ACTIONS(937), - [aux_sym_preproc_ifdef_token1] = ACTIONS(937), - [sym_number_literal] = ACTIONS(939), - [anon_sym_volatile] = ACTIONS(937), - [anon_sym_SQUOTE] = ACTIONS(939), - [anon_sym_extern] = ACTIONS(937), - [anon_sym_PLUS_PLUS] = ACTIONS(939), - [anon_sym_struct] = ACTIONS(937), - [anon_sym_signed] = ACTIONS(937), + [sym_argument_list] = STATE(475), + [anon_sym_SEMI] = ACTIONS(2346), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(937), - [anon_sym_while] = ACTIONS(937), - [aux_sym_preproc_ifdef_token2] = ACTIONS(937), - [aux_sym_preproc_elif_token1] = ACTIONS(937), - [anon_sym_L_SQUOTE] = ACTIONS(939), - [anon_sym___attribute__] = ACTIONS(937), - [anon_sym_sizeof] = ACTIONS(937), - [anon_sym_LBRACE] = ACTIONS(939), - [anon_sym_union] = ACTIONS(937), - [anon_sym_unsigned] = ACTIONS(937), - [anon_sym_short] = ACTIONS(937), - [anon_sym_do] = ACTIONS(937), - [aux_sym_preproc_else_token1] = ACTIONS(937), - [sym_preproc_directive] = ACTIONS(937), - [anon_sym_AMP] = ACTIONS(939), - [aux_sym_preproc_if_token1] = ACTIONS(937), - [anon_sym_TILDE] = ACTIONS(939), - [anon_sym_L_DQUOTE] = ACTIONS(939), - [anon_sym_LPAREN2] = ACTIONS(939), - [sym_primitive_type] = ACTIONS(937), - [anon_sym_for] = ACTIONS(937), - [anon_sym_break] = ACTIONS(937), - [anon_sym_BANG] = ACTIONS(939), - [aux_sym_preproc_include_token1] = ACTIONS(937), - [anon_sym_DASH] = ACTIONS(937), - [anon_sym_static] = ACTIONS(937), - [anon_sym_DQUOTE] = ACTIONS(939), - [anon_sym_register] = ACTIONS(937), - [anon_sym_STAR] = ACTIONS(939), - [anon_sym_if] = ACTIONS(937), - [anon_sym_switch] = ACTIONS(937), - [anon_sym_enum] = ACTIONS(937), - [sym_false] = ACTIONS(937), - [anon_sym_return] = ACTIONS(937), - [anon_sym_continue] = ACTIONS(937), - [anon_sym_SEMI] = ACTIONS(939), - [aux_sym_preproc_def_token1] = ACTIONS(937), - [anon_sym_PLUS] = ACTIONS(937), - [anon_sym_auto] = ACTIONS(937), - [anon_sym_inline] = ACTIONS(937), }, [732] = { - [sym_true] = ACTIONS(950), - [anon_sym_restrict] = ACTIONS(950), - [sym_null] = ACTIONS(950), - [anon_sym_goto] = ACTIONS(950), - [aux_sym_preproc_if_token2] = ACTIONS(950), - [anon_sym_const] = ACTIONS(950), - [anon_sym_typedef] = ACTIONS(950), - [anon_sym_DASH_DASH] = ACTIONS(952), - [anon_sym__Atomic] = ACTIONS(950), - [sym_identifier] = ACTIONS(950), - [aux_sym_preproc_ifdef_token1] = ACTIONS(950), - [sym_number_literal] = ACTIONS(952), - [anon_sym_volatile] = ACTIONS(950), - [anon_sym_SQUOTE] = ACTIONS(952), - [anon_sym_extern] = ACTIONS(950), - [anon_sym_PLUS_PLUS] = ACTIONS(952), - [anon_sym_struct] = ACTIONS(950), - [anon_sym_signed] = ACTIONS(950), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(950), - [anon_sym_while] = ACTIONS(950), - [aux_sym_preproc_ifdef_token2] = ACTIONS(950), - [anon_sym_L_SQUOTE] = ACTIONS(952), - [anon_sym___attribute__] = ACTIONS(950), - [anon_sym_sizeof] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(952), - [anon_sym_union] = ACTIONS(950), - [anon_sym_unsigned] = ACTIONS(950), - [anon_sym_short] = ACTIONS(950), - [anon_sym_do] = ACTIONS(950), - [sym_preproc_directive] = ACTIONS(950), - [anon_sym_AMP] = ACTIONS(952), - [aux_sym_preproc_if_token1] = ACTIONS(950), - [anon_sym_TILDE] = ACTIONS(952), - [anon_sym_L_DQUOTE] = ACTIONS(952), - [anon_sym_LPAREN2] = ACTIONS(952), - [anon_sym_else] = ACTIONS(950), - [sym_primitive_type] = ACTIONS(950), - [anon_sym_for] = ACTIONS(950), - [anon_sym_break] = ACTIONS(950), - [anon_sym_BANG] = ACTIONS(952), - [aux_sym_preproc_include_token1] = ACTIONS(950), - [anon_sym_DASH] = ACTIONS(950), - [anon_sym_static] = ACTIONS(950), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_register] = ACTIONS(950), - [anon_sym_STAR] = ACTIONS(952), - [anon_sym_if] = ACTIONS(950), - [anon_sym_switch] = ACTIONS(950), - [anon_sym_enum] = ACTIONS(950), - [sym_false] = ACTIONS(950), - [anon_sym_return] = ACTIONS(950), - [anon_sym_continue] = ACTIONS(950), - [anon_sym_SEMI] = ACTIONS(952), - [aux_sym_preproc_def_token1] = ACTIONS(950), - [anon_sym_PLUS] = ACTIONS(950), - [anon_sym_auto] = ACTIONS(950), - [anon_sym_inline] = ACTIONS(950), + [sym_argument_list] = STATE(475), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_RBRACK] = ACTIONS(1939), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [733] = { - [sym_true] = ACTIONS(970), - [anon_sym_restrict] = ACTIONS(970), - [sym_null] = ACTIONS(970), - [anon_sym_goto] = ACTIONS(970), - [aux_sym_preproc_if_token2] = ACTIONS(970), - [anon_sym_const] = ACTIONS(970), - [anon_sym_typedef] = ACTIONS(970), - [anon_sym_DASH_DASH] = ACTIONS(972), - [anon_sym__Atomic] = ACTIONS(970), - [sym_identifier] = ACTIONS(970), - [aux_sym_preproc_ifdef_token1] = ACTIONS(970), - [sym_number_literal] = ACTIONS(972), - [anon_sym_volatile] = ACTIONS(970), - [anon_sym_SQUOTE] = ACTIONS(972), - [anon_sym_extern] = ACTIONS(970), - [anon_sym_PLUS_PLUS] = ACTIONS(972), - [anon_sym_struct] = ACTIONS(970), - [anon_sym_signed] = ACTIONS(970), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(970), - [anon_sym_while] = ACTIONS(970), - [aux_sym_preproc_ifdef_token2] = ACTIONS(970), - [anon_sym_L_SQUOTE] = ACTIONS(972), - [anon_sym___attribute__] = ACTIONS(970), - [anon_sym_sizeof] = ACTIONS(970), - [anon_sym_LBRACE] = ACTIONS(972), - [anon_sym_union] = ACTIONS(970), - [anon_sym_unsigned] = ACTIONS(970), - [anon_sym_short] = ACTIONS(970), - [anon_sym_do] = ACTIONS(970), - [sym_preproc_directive] = ACTIONS(970), - [anon_sym_AMP] = ACTIONS(972), - [aux_sym_preproc_if_token1] = ACTIONS(970), - [anon_sym_TILDE] = ACTIONS(972), - [anon_sym_L_DQUOTE] = ACTIONS(972), - [anon_sym_LPAREN2] = ACTIONS(972), - [sym_primitive_type] = ACTIONS(970), - [anon_sym_for] = ACTIONS(970), - [anon_sym_break] = ACTIONS(970), - [anon_sym_BANG] = ACTIONS(972), - [aux_sym_preproc_include_token1] = ACTIONS(970), - [anon_sym_DASH] = ACTIONS(970), - [anon_sym_static] = ACTIONS(970), - [anon_sym_DQUOTE] = ACTIONS(972), - [anon_sym_register] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_if] = ACTIONS(970), - [anon_sym_switch] = ACTIONS(970), - [anon_sym_enum] = ACTIONS(970), - [sym_false] = ACTIONS(970), - [anon_sym_return] = ACTIONS(970), - [anon_sym_continue] = ACTIONS(970), - [anon_sym_SEMI] = ACTIONS(972), - [aux_sym_preproc_def_token1] = ACTIONS(970), - [anon_sym_PLUS] = ACTIONS(970), - [anon_sym_auto] = ACTIONS(970), - [anon_sym_inline] = ACTIONS(970), + [sym_argument_list] = STATE(475), + [anon_sym_SEMI] = ACTIONS(2348), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [734] = { - [sym_true] = ACTIONS(980), - [anon_sym_restrict] = ACTIONS(980), - [sym_null] = ACTIONS(980), - [anon_sym_goto] = ACTIONS(980), - [aux_sym_preproc_if_token2] = ACTIONS(980), - [anon_sym_const] = ACTIONS(980), - [anon_sym_typedef] = ACTIONS(980), - [anon_sym_DASH_DASH] = ACTIONS(982), - [anon_sym__Atomic] = ACTIONS(980), - [sym_identifier] = ACTIONS(980), - [aux_sym_preproc_ifdef_token1] = ACTIONS(980), - [sym_number_literal] = ACTIONS(982), - [anon_sym_volatile] = ACTIONS(980), - [anon_sym_SQUOTE] = ACTIONS(982), - [anon_sym_extern] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(982), - [anon_sym_struct] = ACTIONS(980), - [anon_sym_signed] = ACTIONS(980), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(980), - [anon_sym_while] = ACTIONS(980), - [aux_sym_preproc_ifdef_token2] = ACTIONS(980), - [anon_sym_L_SQUOTE] = ACTIONS(982), - [anon_sym___attribute__] = ACTIONS(980), - [anon_sym_sizeof] = ACTIONS(980), - [anon_sym_LBRACE] = ACTIONS(982), - [anon_sym_union] = ACTIONS(980), - [anon_sym_unsigned] = ACTIONS(980), - [anon_sym_short] = ACTIONS(980), - [anon_sym_do] = ACTIONS(980), - [sym_preproc_directive] = ACTIONS(980), - [anon_sym_AMP] = ACTIONS(982), - [aux_sym_preproc_if_token1] = ACTIONS(980), - [anon_sym_TILDE] = ACTIONS(982), - [anon_sym_L_DQUOTE] = ACTIONS(982), - [anon_sym_LPAREN2] = ACTIONS(982), - [sym_primitive_type] = ACTIONS(980), - [anon_sym_for] = ACTIONS(980), - [anon_sym_break] = ACTIONS(980), - [anon_sym_BANG] = ACTIONS(982), - [aux_sym_preproc_include_token1] = ACTIONS(980), - [anon_sym_DASH] = ACTIONS(980), - [anon_sym_static] = ACTIONS(980), - [anon_sym_DQUOTE] = ACTIONS(982), - [anon_sym_register] = ACTIONS(980), - [anon_sym_STAR] = ACTIONS(982), - [anon_sym_if] = ACTIONS(980), - [anon_sym_switch] = ACTIONS(980), - [anon_sym_enum] = ACTIONS(980), - [sym_false] = ACTIONS(980), - [anon_sym_return] = ACTIONS(980), - [anon_sym_continue] = ACTIONS(980), - [anon_sym_SEMI] = ACTIONS(982), - [aux_sym_preproc_def_token1] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(980), - [anon_sym_auto] = ACTIONS(980), - [anon_sym_inline] = ACTIONS(980), + [sym_argument_list] = STATE(475), + [anon_sym_SEMI] = ACTIONS(2350), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [735] = { - [sym_true] = ACTIONS(984), - [anon_sym_restrict] = ACTIONS(984), - [sym_null] = ACTIONS(984), - [anon_sym_goto] = ACTIONS(984), - [aux_sym_preproc_if_token2] = ACTIONS(984), - [anon_sym_const] = ACTIONS(984), - [anon_sym_typedef] = ACTIONS(984), - [anon_sym_DASH_DASH] = ACTIONS(986), - [anon_sym__Atomic] = ACTIONS(984), - [sym_identifier] = ACTIONS(984), - [aux_sym_preproc_ifdef_token1] = ACTIONS(984), - [sym_number_literal] = ACTIONS(986), - [anon_sym_volatile] = ACTIONS(984), - [anon_sym_SQUOTE] = ACTIONS(986), - [anon_sym_extern] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(986), - [anon_sym_struct] = ACTIONS(984), - [anon_sym_signed] = ACTIONS(984), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(984), - [anon_sym_while] = ACTIONS(984), - [aux_sym_preproc_ifdef_token2] = ACTIONS(984), - [anon_sym_L_SQUOTE] = ACTIONS(986), - [anon_sym___attribute__] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(984), - [anon_sym_LBRACE] = ACTIONS(986), - [anon_sym_union] = ACTIONS(984), - [anon_sym_unsigned] = ACTIONS(984), - [anon_sym_short] = ACTIONS(984), - [anon_sym_do] = ACTIONS(984), - [sym_preproc_directive] = ACTIONS(984), - [anon_sym_AMP] = ACTIONS(986), - [aux_sym_preproc_if_token1] = ACTIONS(984), - [anon_sym_TILDE] = ACTIONS(986), - [anon_sym_L_DQUOTE] = ACTIONS(986), - [anon_sym_LPAREN2] = ACTIONS(986), - [anon_sym_else] = ACTIONS(2443), - [sym_primitive_type] = ACTIONS(984), - [anon_sym_for] = ACTIONS(984), - [anon_sym_break] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(986), - [aux_sym_preproc_include_token1] = ACTIONS(984), - [anon_sym_DASH] = ACTIONS(984), - [anon_sym_static] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(986), - [anon_sym_register] = ACTIONS(984), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_if] = ACTIONS(984), - [anon_sym_switch] = ACTIONS(984), - [anon_sym_enum] = ACTIONS(984), - [sym_false] = ACTIONS(984), - [anon_sym_return] = ACTIONS(984), - [anon_sym_continue] = ACTIONS(984), - [anon_sym_SEMI] = ACTIONS(986), - [aux_sym_preproc_def_token1] = ACTIONS(984), - [anon_sym_PLUS] = ACTIONS(984), - [anon_sym_auto] = ACTIONS(984), - [anon_sym_inline] = ACTIONS(984), + [sym_argument_list] = STATE(475), + [anon_sym_SEMI] = ACTIONS(2352), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [736] = { - [sym_true] = ACTIONS(1028), - [anon_sym_restrict] = ACTIONS(1028), - [sym_null] = ACTIONS(1028), - [anon_sym_goto] = ACTIONS(1028), - [aux_sym_preproc_if_token2] = ACTIONS(1028), - [anon_sym_const] = ACTIONS(1028), - [anon_sym_typedef] = ACTIONS(1028), - [anon_sym_DASH_DASH] = ACTIONS(1030), - [anon_sym__Atomic] = ACTIONS(1028), - [sym_identifier] = ACTIONS(1028), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1028), - [sym_number_literal] = ACTIONS(1030), - [anon_sym_volatile] = ACTIONS(1028), - [anon_sym_SQUOTE] = ACTIONS(1030), - [anon_sym_extern] = ACTIONS(1028), - [anon_sym_PLUS_PLUS] = ACTIONS(1030), - [anon_sym_struct] = ACTIONS(1028), - [anon_sym_signed] = ACTIONS(1028), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1028), - [anon_sym_while] = ACTIONS(1028), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1028), - [anon_sym_L_SQUOTE] = ACTIONS(1030), - [anon_sym___attribute__] = ACTIONS(1028), - [anon_sym_sizeof] = ACTIONS(1028), - [anon_sym_LBRACE] = ACTIONS(1030), - [anon_sym_union] = ACTIONS(1028), - [anon_sym_unsigned] = ACTIONS(1028), - [anon_sym_short] = ACTIONS(1028), - [anon_sym_do] = ACTIONS(1028), - [sym_preproc_directive] = ACTIONS(1028), - [anon_sym_AMP] = ACTIONS(1030), - [aux_sym_preproc_if_token1] = ACTIONS(1028), - [anon_sym_TILDE] = ACTIONS(1030), - [anon_sym_L_DQUOTE] = ACTIONS(1030), - [anon_sym_LPAREN2] = ACTIONS(1030), - [anon_sym_else] = ACTIONS(1028), - [sym_primitive_type] = ACTIONS(1028), - [anon_sym_for] = ACTIONS(1028), - [anon_sym_break] = ACTIONS(1028), - [anon_sym_BANG] = ACTIONS(1030), - [aux_sym_preproc_include_token1] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1028), - [anon_sym_static] = ACTIONS(1028), - [anon_sym_DQUOTE] = ACTIONS(1030), - [anon_sym_register] = ACTIONS(1028), - [anon_sym_STAR] = ACTIONS(1030), - [anon_sym_if] = ACTIONS(1028), - [anon_sym_switch] = ACTIONS(1028), - [anon_sym_enum] = ACTIONS(1028), - [sym_false] = ACTIONS(1028), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_continue] = ACTIONS(1028), - [anon_sym_SEMI] = ACTIONS(1030), - [aux_sym_preproc_def_token1] = ACTIONS(1028), - [anon_sym_PLUS] = ACTIONS(1028), - [anon_sym_auto] = ACTIONS(1028), - [anon_sym_inline] = ACTIONS(1028), + [sym_argument_list] = STATE(475), + [anon_sym_SEMI] = ACTIONS(2354), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [737] = { - [sym_true] = ACTIONS(1052), - [anon_sym_restrict] = ACTIONS(1052), - [sym_null] = ACTIONS(1052), - [anon_sym_goto] = ACTIONS(1052), - [aux_sym_preproc_if_token2] = ACTIONS(1052), - [anon_sym_const] = ACTIONS(1052), - [anon_sym_typedef] = ACTIONS(1052), - [anon_sym_DASH_DASH] = ACTIONS(1054), - [anon_sym__Atomic] = ACTIONS(1052), - [sym_identifier] = ACTIONS(1052), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1052), - [sym_number_literal] = ACTIONS(1054), - [anon_sym_volatile] = ACTIONS(1052), - [anon_sym_SQUOTE] = ACTIONS(1054), - [anon_sym_extern] = ACTIONS(1052), - [anon_sym_PLUS_PLUS] = ACTIONS(1054), - [anon_sym_struct] = ACTIONS(1052), - [anon_sym_signed] = ACTIONS(1052), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1052), - [anon_sym_while] = ACTIONS(1052), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1052), - [anon_sym_L_SQUOTE] = ACTIONS(1054), - [anon_sym___attribute__] = ACTIONS(1052), - [anon_sym_sizeof] = ACTIONS(1052), - [anon_sym_LBRACE] = ACTIONS(1054), - [anon_sym_union] = ACTIONS(1052), - [anon_sym_unsigned] = ACTIONS(1052), - [anon_sym_short] = ACTIONS(1052), - [anon_sym_do] = ACTIONS(1052), - [sym_preproc_directive] = ACTIONS(1052), - [anon_sym_AMP] = ACTIONS(1054), - [aux_sym_preproc_if_token1] = ACTIONS(1052), - [anon_sym_TILDE] = ACTIONS(1054), - [anon_sym_L_DQUOTE] = ACTIONS(1054), - [anon_sym_LPAREN2] = ACTIONS(1054), - [anon_sym_else] = ACTIONS(1052), - [sym_primitive_type] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1052), - [anon_sym_break] = ACTIONS(1052), - [anon_sym_BANG] = ACTIONS(1054), - [aux_sym_preproc_include_token1] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1052), - [anon_sym_static] = ACTIONS(1052), - [anon_sym_DQUOTE] = ACTIONS(1054), - [anon_sym_register] = ACTIONS(1052), - [anon_sym_STAR] = ACTIONS(1054), - [anon_sym_if] = ACTIONS(1052), - [anon_sym_switch] = ACTIONS(1052), - [anon_sym_enum] = ACTIONS(1052), - [sym_false] = ACTIONS(1052), - [anon_sym_return] = ACTIONS(1052), - [anon_sym_continue] = ACTIONS(1052), - [anon_sym_SEMI] = ACTIONS(1054), - [aux_sym_preproc_def_token1] = ACTIONS(1052), - [anon_sym_PLUS] = ACTIONS(1052), - [anon_sym_auto] = ACTIONS(1052), - [anon_sym_inline] = ACTIONS(1052), + [sym_argument_list] = STATE(475), + [anon_sym_SEMI] = ACTIONS(2356), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [738] = { - [sym_true] = ACTIONS(1056), - [anon_sym_restrict] = ACTIONS(1056), - [sym_null] = ACTIONS(1056), - [anon_sym_goto] = ACTIONS(1056), - [aux_sym_preproc_if_token2] = ACTIONS(1056), - [anon_sym_const] = ACTIONS(1056), - [anon_sym_typedef] = ACTIONS(1056), - [anon_sym_DASH_DASH] = ACTIONS(1058), - [anon_sym__Atomic] = ACTIONS(1056), - [sym_identifier] = ACTIONS(1056), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1056), - [sym_number_literal] = ACTIONS(1058), - [anon_sym_volatile] = ACTIONS(1056), - [anon_sym_SQUOTE] = ACTIONS(1058), - [anon_sym_extern] = ACTIONS(1056), - [anon_sym_PLUS_PLUS] = ACTIONS(1058), - [anon_sym_struct] = ACTIONS(1056), - [anon_sym_signed] = ACTIONS(1056), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1056), - [anon_sym_while] = ACTIONS(1056), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1056), - [anon_sym_L_SQUOTE] = ACTIONS(1058), - [anon_sym___attribute__] = ACTIONS(1056), - [anon_sym_sizeof] = ACTIONS(1056), - [anon_sym_LBRACE] = ACTIONS(1058), - [anon_sym_union] = ACTIONS(1056), - [anon_sym_unsigned] = ACTIONS(1056), - [anon_sym_short] = ACTIONS(1056), - [anon_sym_do] = ACTIONS(1056), - [sym_preproc_directive] = ACTIONS(1056), - [anon_sym_AMP] = ACTIONS(1058), - [aux_sym_preproc_if_token1] = ACTIONS(1056), - [anon_sym_TILDE] = ACTIONS(1058), - [anon_sym_L_DQUOTE] = ACTIONS(1058), - [anon_sym_LPAREN2] = ACTIONS(1058), - [anon_sym_else] = ACTIONS(1056), - [sym_primitive_type] = ACTIONS(1056), - [anon_sym_for] = ACTIONS(1056), - [anon_sym_break] = ACTIONS(1056), - [anon_sym_BANG] = ACTIONS(1058), - [aux_sym_preproc_include_token1] = ACTIONS(1056), - [anon_sym_DASH] = ACTIONS(1056), - [anon_sym_static] = ACTIONS(1056), - [anon_sym_DQUOTE] = ACTIONS(1058), - [anon_sym_register] = ACTIONS(1056), - [anon_sym_STAR] = ACTIONS(1058), - [anon_sym_if] = ACTIONS(1056), - [anon_sym_switch] = ACTIONS(1056), - [anon_sym_enum] = ACTIONS(1056), - [sym_false] = ACTIONS(1056), - [anon_sym_return] = ACTIONS(1056), - [anon_sym_continue] = ACTIONS(1056), - [anon_sym_SEMI] = ACTIONS(1058), - [aux_sym_preproc_def_token1] = ACTIONS(1056), - [anon_sym_PLUS] = ACTIONS(1056), - [anon_sym_auto] = ACTIONS(1056), - [anon_sym_inline] = ACTIONS(1056), + [sym_argument_list] = STATE(475), + [anon_sym_SEMI] = ACTIONS(2358), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [739] = { - [sym_true] = ACTIONS(1062), - [anon_sym_restrict] = ACTIONS(1062), - [sym_null] = ACTIONS(1062), - [anon_sym_goto] = ACTIONS(1062), - [aux_sym_preproc_if_token2] = ACTIONS(1062), - [anon_sym_const] = ACTIONS(1062), - [anon_sym_typedef] = ACTIONS(1062), - [anon_sym_DASH_DASH] = ACTIONS(1064), - [anon_sym__Atomic] = ACTIONS(1062), - [sym_identifier] = ACTIONS(1062), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1062), - [sym_number_literal] = ACTIONS(1064), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_SQUOTE] = ACTIONS(1064), - [anon_sym_extern] = ACTIONS(1062), - [anon_sym_PLUS_PLUS] = ACTIONS(1064), - [anon_sym_struct] = ACTIONS(1062), - [anon_sym_signed] = ACTIONS(1062), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1062), - [anon_sym_while] = ACTIONS(1062), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1062), - [aux_sym_preproc_elif_token1] = ACTIONS(1062), - [anon_sym_L_SQUOTE] = ACTIONS(1064), - [anon_sym___attribute__] = ACTIONS(1062), - [anon_sym_sizeof] = ACTIONS(1062), - [anon_sym_LBRACE] = ACTIONS(1064), - [anon_sym_union] = ACTIONS(1062), - [anon_sym_unsigned] = ACTIONS(1062), - [anon_sym_short] = ACTIONS(1062), - [anon_sym_do] = ACTIONS(1062), - [aux_sym_preproc_else_token1] = ACTIONS(1062), - [sym_preproc_directive] = ACTIONS(1062), - [anon_sym_AMP] = ACTIONS(1064), - [aux_sym_preproc_if_token1] = ACTIONS(1062), - [anon_sym_TILDE] = ACTIONS(1064), - [anon_sym_L_DQUOTE] = ACTIONS(1064), - [anon_sym_LPAREN2] = ACTIONS(1064), - [sym_primitive_type] = ACTIONS(1062), - [anon_sym_for] = ACTIONS(1062), - [anon_sym_break] = ACTIONS(1062), - [anon_sym_BANG] = ACTIONS(1064), - [aux_sym_preproc_include_token1] = ACTIONS(1062), - [anon_sym_DASH] = ACTIONS(1062), - [anon_sym_static] = ACTIONS(1062), - [anon_sym_DQUOTE] = ACTIONS(1064), - [anon_sym_register] = ACTIONS(1062), - [anon_sym_STAR] = ACTIONS(1064), - [anon_sym_if] = ACTIONS(1062), - [anon_sym_switch] = ACTIONS(1062), - [anon_sym_enum] = ACTIONS(1062), - [sym_false] = ACTIONS(1062), - [anon_sym_return] = ACTIONS(1062), - [anon_sym_continue] = ACTIONS(1062), - [anon_sym_SEMI] = ACTIONS(1064), - [aux_sym_preproc_def_token1] = ACTIONS(1062), - [anon_sym_PLUS] = ACTIONS(1062), - [anon_sym_auto] = ACTIONS(1062), - [anon_sym_inline] = ACTIONS(1062), + [sym_argument_list] = STATE(475), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_COLON] = ACTIONS(2360), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [740] = { - [sym_true] = ACTIONS(1110), - [anon_sym_restrict] = ACTIONS(1110), - [sym_null] = ACTIONS(1110), - [anon_sym_goto] = ACTIONS(1110), - [aux_sym_preproc_if_token2] = ACTIONS(1110), - [anon_sym_const] = ACTIONS(1110), - [anon_sym_typedef] = ACTIONS(1110), - [anon_sym_DASH_DASH] = ACTIONS(1112), - [anon_sym__Atomic] = ACTIONS(1110), - [sym_identifier] = ACTIONS(1110), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1110), - [sym_number_literal] = ACTIONS(1112), - [anon_sym_volatile] = ACTIONS(1110), - [anon_sym_SQUOTE] = ACTIONS(1112), - [anon_sym_extern] = ACTIONS(1110), - [anon_sym_PLUS_PLUS] = ACTIONS(1112), - [anon_sym_struct] = ACTIONS(1110), - [anon_sym_signed] = ACTIONS(1110), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1110), - [anon_sym_while] = ACTIONS(1110), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1110), - [anon_sym_L_SQUOTE] = ACTIONS(1112), - [anon_sym___attribute__] = ACTIONS(1110), - [anon_sym_sizeof] = ACTIONS(1110), - [anon_sym_LBRACE] = ACTIONS(1112), - [anon_sym_union] = ACTIONS(1110), - [anon_sym_unsigned] = ACTIONS(1110), - [anon_sym_short] = ACTIONS(1110), - [anon_sym_do] = ACTIONS(1110), - [sym_preproc_directive] = ACTIONS(1110), - [anon_sym_AMP] = ACTIONS(1112), - [aux_sym_preproc_if_token1] = ACTIONS(1110), - [anon_sym_TILDE] = ACTIONS(1112), - [anon_sym_L_DQUOTE] = ACTIONS(1112), - [anon_sym_LPAREN2] = ACTIONS(1112), - [sym_primitive_type] = ACTIONS(1110), - [anon_sym_for] = ACTIONS(1110), - [anon_sym_break] = ACTIONS(1110), - [anon_sym_BANG] = ACTIONS(1112), - [aux_sym_preproc_include_token1] = ACTIONS(1110), - [anon_sym_DASH] = ACTIONS(1110), - [anon_sym_static] = ACTIONS(1110), - [anon_sym_DQUOTE] = ACTIONS(1112), - [anon_sym_register] = ACTIONS(1110), - [anon_sym_STAR] = ACTIONS(1112), - [anon_sym_if] = ACTIONS(1110), - [anon_sym_switch] = ACTIONS(1110), - [anon_sym_enum] = ACTIONS(1110), - [sym_false] = ACTIONS(1110), - [anon_sym_return] = ACTIONS(1110), - [anon_sym_continue] = ACTIONS(1110), - [anon_sym_SEMI] = ACTIONS(1112), - [aux_sym_preproc_def_token1] = ACTIONS(1110), - [anon_sym_PLUS] = ACTIONS(1110), - [anon_sym_auto] = ACTIONS(1110), - [anon_sym_inline] = ACTIONS(1110), + [sym_argument_list] = STATE(475), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_RBRACK] = ACTIONS(1883), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [741] = { - [sym_true] = ACTIONS(1128), - [anon_sym_restrict] = ACTIONS(1128), - [sym_null] = ACTIONS(1128), - [anon_sym_goto] = ACTIONS(1128), - [aux_sym_preproc_if_token2] = ACTIONS(1128), - [anon_sym_const] = ACTIONS(1128), - [anon_sym_typedef] = ACTIONS(1128), - [anon_sym_DASH_DASH] = ACTIONS(1130), - [anon_sym__Atomic] = ACTIONS(1128), - [sym_identifier] = ACTIONS(1128), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1128), - [sym_number_literal] = ACTIONS(1130), - [anon_sym_volatile] = ACTIONS(1128), - [anon_sym_SQUOTE] = ACTIONS(1130), - [anon_sym_extern] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1130), - [anon_sym_struct] = ACTIONS(1128), - [anon_sym_signed] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1128), - [anon_sym_while] = ACTIONS(1128), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1128), - [anon_sym_L_SQUOTE] = ACTIONS(1130), - [anon_sym___attribute__] = ACTIONS(1128), - [anon_sym_sizeof] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(1130), - [anon_sym_union] = ACTIONS(1128), - [anon_sym_unsigned] = ACTIONS(1128), - [anon_sym_short] = ACTIONS(1128), - [anon_sym_do] = ACTIONS(1128), - [sym_preproc_directive] = ACTIONS(1128), - [anon_sym_AMP] = ACTIONS(1130), - [aux_sym_preproc_if_token1] = ACTIONS(1128), - [anon_sym_TILDE] = ACTIONS(1130), - [anon_sym_L_DQUOTE] = ACTIONS(1130), - [anon_sym_LPAREN2] = ACTIONS(1130), - [sym_primitive_type] = ACTIONS(1128), - [anon_sym_for] = ACTIONS(1128), - [anon_sym_break] = ACTIONS(1128), - [anon_sym_BANG] = ACTIONS(1130), - [aux_sym_preproc_include_token1] = ACTIONS(1128), - [anon_sym_DASH] = ACTIONS(1128), - [anon_sym_static] = ACTIONS(1128), - [anon_sym_DQUOTE] = ACTIONS(1130), - [anon_sym_register] = ACTIONS(1128), - [anon_sym_STAR] = ACTIONS(1130), - [anon_sym_if] = ACTIONS(1128), - [anon_sym_switch] = ACTIONS(1128), - [anon_sym_enum] = ACTIONS(1128), - [sym_false] = ACTIONS(1128), - [anon_sym_return] = ACTIONS(1128), - [anon_sym_continue] = ACTIONS(1128), - [anon_sym_SEMI] = ACTIONS(1130), - [aux_sym_preproc_def_token1] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1128), - [anon_sym_auto] = ACTIONS(1128), - [anon_sym_inline] = ACTIONS(1128), + [sym_argument_list] = STATE(475), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_RBRACK] = ACTIONS(2362), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [742] = { - [sym_true] = ACTIONS(1226), - [anon_sym_restrict] = ACTIONS(1226), - [sym_null] = ACTIONS(1226), - [anon_sym_goto] = ACTIONS(1226), - [aux_sym_preproc_if_token2] = ACTIONS(1226), - [anon_sym_const] = ACTIONS(1226), - [anon_sym_typedef] = ACTIONS(1226), - [anon_sym_DASH_DASH] = ACTIONS(1228), - [anon_sym__Atomic] = ACTIONS(1226), - [sym_identifier] = ACTIONS(1226), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1226), - [sym_number_literal] = ACTIONS(1228), - [anon_sym_volatile] = ACTIONS(1226), - [anon_sym_SQUOTE] = ACTIONS(1228), - [anon_sym_extern] = ACTIONS(1226), - [anon_sym_PLUS_PLUS] = ACTIONS(1228), - [anon_sym_struct] = ACTIONS(1226), - [anon_sym_signed] = ACTIONS(1226), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1226), - [anon_sym_while] = ACTIONS(1226), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1226), - [anon_sym_L_SQUOTE] = ACTIONS(1228), - [anon_sym___attribute__] = ACTIONS(1226), - [anon_sym_sizeof] = ACTIONS(1226), - [anon_sym_LBRACE] = ACTIONS(1228), - [anon_sym_union] = ACTIONS(1226), - [anon_sym_unsigned] = ACTIONS(1226), - [anon_sym_short] = ACTIONS(1226), - [anon_sym_do] = ACTIONS(1226), - [sym_preproc_directive] = ACTIONS(1226), - [anon_sym_AMP] = ACTIONS(1228), - [aux_sym_preproc_if_token1] = ACTIONS(1226), - [anon_sym_TILDE] = ACTIONS(1228), - [anon_sym_L_DQUOTE] = ACTIONS(1228), - [anon_sym_LPAREN2] = ACTIONS(1228), - [anon_sym_else] = ACTIONS(1226), - [sym_primitive_type] = ACTIONS(1226), - [anon_sym_for] = ACTIONS(1226), - [anon_sym_break] = ACTIONS(1226), - [anon_sym_BANG] = ACTIONS(1228), - [aux_sym_preproc_include_token1] = ACTIONS(1226), - [anon_sym_DASH] = ACTIONS(1226), - [anon_sym_static] = ACTIONS(1226), - [anon_sym_DQUOTE] = ACTIONS(1228), - [anon_sym_register] = ACTIONS(1226), - [anon_sym_STAR] = ACTIONS(1228), - [anon_sym_if] = ACTIONS(1226), - [anon_sym_switch] = ACTIONS(1226), - [anon_sym_enum] = ACTIONS(1226), - [sym_false] = ACTIONS(1226), - [anon_sym_return] = ACTIONS(1226), - [anon_sym_continue] = ACTIONS(1226), - [anon_sym_SEMI] = ACTIONS(1228), - [aux_sym_preproc_def_token1] = ACTIONS(1226), - [anon_sym_PLUS] = ACTIONS(1226), - [anon_sym_auto] = ACTIONS(1226), - [anon_sym_inline] = ACTIONS(1226), + [sym_argument_list] = STATE(475), + [anon_sym_SEMI] = ACTIONS(2364), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [743] = { - [sym_true] = ACTIONS(1234), - [anon_sym_restrict] = ACTIONS(1234), - [sym_null] = ACTIONS(1234), - [anon_sym_goto] = ACTIONS(1234), - [aux_sym_preproc_if_token2] = ACTIONS(1234), - [anon_sym_const] = ACTIONS(1234), - [anon_sym_typedef] = ACTIONS(1234), - [anon_sym_DASH_DASH] = ACTIONS(1236), - [anon_sym__Atomic] = ACTIONS(1234), - [sym_identifier] = ACTIONS(1234), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1234), - [sym_number_literal] = ACTIONS(1236), - [anon_sym_volatile] = ACTIONS(1234), - [anon_sym_SQUOTE] = ACTIONS(1236), - [anon_sym_extern] = ACTIONS(1234), - [anon_sym_PLUS_PLUS] = ACTIONS(1236), - [anon_sym_struct] = ACTIONS(1234), - [anon_sym_signed] = ACTIONS(1234), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1234), - [anon_sym_while] = ACTIONS(1234), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1234), - [anon_sym_L_SQUOTE] = ACTIONS(1236), - [anon_sym___attribute__] = ACTIONS(1234), - [anon_sym_sizeof] = ACTIONS(1234), - [anon_sym_LBRACE] = ACTIONS(1236), - [anon_sym_union] = ACTIONS(1234), - [anon_sym_unsigned] = ACTIONS(1234), - [anon_sym_short] = ACTIONS(1234), - [anon_sym_do] = ACTIONS(1234), - [sym_preproc_directive] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(1236), - [aux_sym_preproc_if_token1] = ACTIONS(1234), - [anon_sym_TILDE] = ACTIONS(1236), - [anon_sym_L_DQUOTE] = ACTIONS(1236), - [anon_sym_LPAREN2] = ACTIONS(1236), - [sym_primitive_type] = ACTIONS(1234), - [anon_sym_for] = ACTIONS(1234), - [anon_sym_break] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1236), - [aux_sym_preproc_include_token1] = ACTIONS(1234), - [anon_sym_DASH] = ACTIONS(1234), - [anon_sym_static] = ACTIONS(1234), - [anon_sym_DQUOTE] = ACTIONS(1236), - [anon_sym_register] = ACTIONS(1234), - [anon_sym_STAR] = ACTIONS(1236), - [anon_sym_if] = ACTIONS(1234), - [anon_sym_switch] = ACTIONS(1234), - [anon_sym_enum] = ACTIONS(1234), - [sym_false] = ACTIONS(1234), - [anon_sym_return] = ACTIONS(1234), - [anon_sym_continue] = ACTIONS(1234), - [anon_sym_SEMI] = ACTIONS(1236), - [aux_sym_preproc_def_token1] = ACTIONS(1234), - [anon_sym_PLUS] = ACTIONS(1234), - [anon_sym_auto] = ACTIONS(1234), - [anon_sym_inline] = ACTIONS(1234), + [sym_argument_list] = STATE(475), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_RBRACK] = ACTIONS(2366), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [744] = { - [sym_true] = ACTIONS(1238), - [anon_sym_restrict] = ACTIONS(1238), - [sym_null] = ACTIONS(1238), - [anon_sym_goto] = ACTIONS(1238), - [aux_sym_preproc_if_token2] = ACTIONS(1238), - [anon_sym_const] = ACTIONS(1238), - [anon_sym_typedef] = ACTIONS(1238), - [anon_sym_DASH_DASH] = ACTIONS(1240), - [anon_sym__Atomic] = ACTIONS(1238), - [sym_identifier] = ACTIONS(1238), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1238), - [sym_number_literal] = ACTIONS(1240), - [anon_sym_volatile] = ACTIONS(1238), - [anon_sym_SQUOTE] = ACTIONS(1240), - [anon_sym_extern] = ACTIONS(1238), - [anon_sym_PLUS_PLUS] = ACTIONS(1240), - [anon_sym_struct] = ACTIONS(1238), - [anon_sym_signed] = ACTIONS(1238), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1238), - [anon_sym_while] = ACTIONS(1238), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1238), - [anon_sym_L_SQUOTE] = ACTIONS(1240), - [anon_sym___attribute__] = ACTIONS(1238), - [anon_sym_sizeof] = ACTIONS(1238), - [anon_sym_LBRACE] = ACTIONS(1240), - [anon_sym_union] = ACTIONS(1238), - [anon_sym_unsigned] = ACTIONS(1238), - [anon_sym_short] = ACTIONS(1238), - [anon_sym_do] = ACTIONS(1238), - [sym_preproc_directive] = ACTIONS(1238), - [anon_sym_AMP] = ACTIONS(1240), - [aux_sym_preproc_if_token1] = ACTIONS(1238), - [anon_sym_TILDE] = ACTIONS(1240), - [anon_sym_L_DQUOTE] = ACTIONS(1240), - [anon_sym_LPAREN2] = ACTIONS(1240), - [sym_primitive_type] = ACTIONS(1238), - [anon_sym_for] = ACTIONS(1238), - [anon_sym_break] = ACTIONS(1238), - [anon_sym_BANG] = ACTIONS(1240), - [aux_sym_preproc_include_token1] = ACTIONS(1238), - [anon_sym_DASH] = ACTIONS(1238), - [anon_sym_static] = ACTIONS(1238), - [anon_sym_DQUOTE] = ACTIONS(1240), - [anon_sym_register] = ACTIONS(1238), - [anon_sym_STAR] = ACTIONS(1240), - [anon_sym_if] = ACTIONS(1238), - [anon_sym_switch] = ACTIONS(1238), - [anon_sym_enum] = ACTIONS(1238), - [sym_false] = ACTIONS(1238), - [anon_sym_return] = ACTIONS(1238), - [anon_sym_continue] = ACTIONS(1238), - [anon_sym_SEMI] = ACTIONS(1240), - [aux_sym_preproc_def_token1] = ACTIONS(1238), - [anon_sym_PLUS] = ACTIONS(1238), - [anon_sym_auto] = ACTIONS(1238), - [anon_sym_inline] = ACTIONS(1238), + [sym_argument_list] = STATE(475), + [anon_sym_SEMI] = ACTIONS(2368), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [745] = { - [sym_true] = ACTIONS(1316), - [anon_sym_restrict] = ACTIONS(1316), - [sym_null] = ACTIONS(1316), - [anon_sym_goto] = ACTIONS(1316), - [aux_sym_preproc_if_token2] = ACTIONS(1316), - [anon_sym_const] = ACTIONS(1316), - [anon_sym_typedef] = ACTIONS(1316), - [anon_sym_DASH_DASH] = ACTIONS(1318), - [anon_sym__Atomic] = ACTIONS(1316), - [sym_identifier] = ACTIONS(1316), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1316), - [sym_number_literal] = ACTIONS(1318), - [anon_sym_volatile] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(1318), - [anon_sym_extern] = ACTIONS(1316), - [anon_sym_PLUS_PLUS] = ACTIONS(1318), - [anon_sym_struct] = ACTIONS(1316), - [anon_sym_signed] = ACTIONS(1316), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1316), - [anon_sym_while] = ACTIONS(1316), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1316), - [anon_sym_L_SQUOTE] = ACTIONS(1318), - [anon_sym___attribute__] = ACTIONS(1316), - [anon_sym_sizeof] = ACTIONS(1316), - [anon_sym_LBRACE] = ACTIONS(1318), - [anon_sym_union] = ACTIONS(1316), - [anon_sym_unsigned] = ACTIONS(1316), - [anon_sym_short] = ACTIONS(1316), - [anon_sym_do] = ACTIONS(1316), - [sym_preproc_directive] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1318), - [aux_sym_preproc_if_token1] = ACTIONS(1316), - [anon_sym_TILDE] = ACTIONS(1318), - [anon_sym_L_DQUOTE] = ACTIONS(1318), - [anon_sym_LPAREN2] = ACTIONS(1318), - [sym_primitive_type] = ACTIONS(1316), - [anon_sym_for] = ACTIONS(1316), - [anon_sym_break] = ACTIONS(1316), - [anon_sym_BANG] = ACTIONS(1318), - [aux_sym_preproc_include_token1] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1316), - [anon_sym_static] = ACTIONS(1316), - [anon_sym_DQUOTE] = ACTIONS(1318), - [anon_sym_register] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1318), - [anon_sym_if] = ACTIONS(1316), - [anon_sym_switch] = ACTIONS(1316), - [anon_sym_enum] = ACTIONS(1316), - [sym_false] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(1316), - [anon_sym_continue] = ACTIONS(1316), - [anon_sym_SEMI] = ACTIONS(1318), - [aux_sym_preproc_def_token1] = ACTIONS(1316), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_auto] = ACTIONS(1316), - [anon_sym_inline] = ACTIONS(1316), + [sym_argument_list] = STATE(475), + [anon_sym_SEMI] = ACTIONS(2370), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [746] = { - [sym_true] = ACTIONS(1360), - [anon_sym_restrict] = ACTIONS(1360), - [sym_null] = ACTIONS(1360), - [anon_sym_goto] = ACTIONS(1360), - [aux_sym_preproc_if_token2] = ACTIONS(1360), - [anon_sym_const] = ACTIONS(1360), - [anon_sym_typedef] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1362), - [anon_sym__Atomic] = ACTIONS(1360), - [sym_identifier] = ACTIONS(1360), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1360), - [sym_number_literal] = ACTIONS(1362), - [anon_sym_volatile] = ACTIONS(1360), - [anon_sym_SQUOTE] = ACTIONS(1362), - [anon_sym_extern] = ACTIONS(1360), - [anon_sym_PLUS_PLUS] = ACTIONS(1362), - [anon_sym_struct] = ACTIONS(1360), - [anon_sym_signed] = ACTIONS(1360), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1360), - [anon_sym_while] = ACTIONS(1360), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1360), - [anon_sym_L_SQUOTE] = ACTIONS(1362), - [anon_sym___attribute__] = ACTIONS(1360), - [anon_sym_sizeof] = ACTIONS(1360), - [anon_sym_LBRACE] = ACTIONS(1362), - [anon_sym_union] = ACTIONS(1360), - [anon_sym_unsigned] = ACTIONS(1360), - [anon_sym_short] = ACTIONS(1360), - [anon_sym_do] = ACTIONS(1360), - [sym_preproc_directive] = ACTIONS(1360), - [anon_sym_AMP] = ACTIONS(1362), - [aux_sym_preproc_if_token1] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1362), - [anon_sym_L_DQUOTE] = ACTIONS(1362), - [anon_sym_LPAREN2] = ACTIONS(1362), - [sym_primitive_type] = ACTIONS(1360), - [anon_sym_for] = ACTIONS(1360), - [anon_sym_break] = ACTIONS(1360), - [anon_sym_BANG] = ACTIONS(1362), - [aux_sym_preproc_include_token1] = ACTIONS(1360), - [anon_sym_DASH] = ACTIONS(1360), - [anon_sym_static] = ACTIONS(1360), - [anon_sym_DQUOTE] = ACTIONS(1362), - [anon_sym_register] = ACTIONS(1360), - [anon_sym_STAR] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1360), - [anon_sym_switch] = ACTIONS(1360), - [anon_sym_enum] = ACTIONS(1360), - [sym_false] = ACTIONS(1360), - [anon_sym_return] = ACTIONS(1360), - [anon_sym_continue] = ACTIONS(1360), - [anon_sym_SEMI] = ACTIONS(1362), - [aux_sym_preproc_def_token1] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1360), - [anon_sym_auto] = ACTIONS(1360), - [anon_sym_inline] = ACTIONS(1360), + [sym_argument_list] = STATE(475), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_RBRACK] = ACTIONS(1937), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [747] = { - [sym_true] = ACTIONS(1364), - [anon_sym_restrict] = ACTIONS(1364), - [sym_null] = ACTIONS(1364), - [anon_sym_goto] = ACTIONS(1364), - [aux_sym_preproc_if_token2] = ACTIONS(1364), - [anon_sym_const] = ACTIONS(1364), - [anon_sym_typedef] = ACTIONS(1364), - [anon_sym_DASH_DASH] = ACTIONS(1366), - [anon_sym__Atomic] = ACTIONS(1364), - [sym_identifier] = ACTIONS(1364), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1364), - [sym_number_literal] = ACTIONS(1366), - [anon_sym_volatile] = ACTIONS(1364), - [anon_sym_SQUOTE] = ACTIONS(1366), - [anon_sym_extern] = ACTIONS(1364), - [anon_sym_PLUS_PLUS] = ACTIONS(1366), - [anon_sym_struct] = ACTIONS(1364), - [anon_sym_signed] = ACTIONS(1364), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1364), - [anon_sym_while] = ACTIONS(1364), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1364), - [anon_sym_L_SQUOTE] = ACTIONS(1366), - [anon_sym___attribute__] = ACTIONS(1364), - [anon_sym_sizeof] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1366), - [anon_sym_union] = ACTIONS(1364), - [anon_sym_unsigned] = ACTIONS(1364), - [anon_sym_short] = ACTIONS(1364), - [anon_sym_do] = ACTIONS(1364), - [sym_preproc_directive] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1366), - [aux_sym_preproc_if_token1] = ACTIONS(1364), - [anon_sym_TILDE] = ACTIONS(1366), - [anon_sym_L_DQUOTE] = ACTIONS(1366), - [anon_sym_LPAREN2] = ACTIONS(1366), - [sym_primitive_type] = ACTIONS(1364), - [anon_sym_for] = ACTIONS(1364), - [anon_sym_break] = ACTIONS(1364), - [anon_sym_BANG] = ACTIONS(1366), - [aux_sym_preproc_include_token1] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1364), - [anon_sym_static] = ACTIONS(1364), - [anon_sym_DQUOTE] = ACTIONS(1366), - [anon_sym_register] = ACTIONS(1364), - [anon_sym_STAR] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1364), - [anon_sym_switch] = ACTIONS(1364), - [anon_sym_enum] = ACTIONS(1364), - [sym_false] = ACTIONS(1364), - [anon_sym_return] = ACTIONS(1364), - [anon_sym_continue] = ACTIONS(1364), - [anon_sym_SEMI] = ACTIONS(1366), - [aux_sym_preproc_def_token1] = ACTIONS(1364), - [anon_sym_PLUS] = ACTIONS(1364), - [anon_sym_auto] = ACTIONS(1364), - [anon_sym_inline] = ACTIONS(1364), + [sym_argument_list] = STATE(475), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_COLON] = ACTIONS(2372), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [748] = { - [sym_true] = ACTIONS(1370), - [anon_sym_restrict] = ACTIONS(1370), - [sym_null] = ACTIONS(1370), - [anon_sym_goto] = ACTIONS(1370), - [aux_sym_preproc_if_token2] = ACTIONS(1370), - [anon_sym_const] = ACTIONS(1370), - [anon_sym_typedef] = ACTIONS(1370), - [anon_sym_DASH_DASH] = ACTIONS(1372), - [anon_sym__Atomic] = ACTIONS(1370), - [sym_identifier] = ACTIONS(1370), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1370), - [sym_number_literal] = ACTIONS(1372), - [anon_sym_volatile] = ACTIONS(1370), - [anon_sym_SQUOTE] = ACTIONS(1372), - [anon_sym_extern] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1372), - [anon_sym_struct] = ACTIONS(1370), - [anon_sym_signed] = ACTIONS(1370), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1370), - [anon_sym_while] = ACTIONS(1370), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1370), - [anon_sym_L_SQUOTE] = ACTIONS(1372), - [anon_sym___attribute__] = ACTIONS(1370), - [anon_sym_sizeof] = ACTIONS(1370), - [anon_sym_LBRACE] = ACTIONS(1372), - [anon_sym_union] = ACTIONS(1370), - [anon_sym_unsigned] = ACTIONS(1370), - [anon_sym_short] = ACTIONS(1370), - [anon_sym_do] = ACTIONS(1370), - [sym_preproc_directive] = ACTIONS(1370), - [anon_sym_AMP] = ACTIONS(1372), - [aux_sym_preproc_if_token1] = ACTIONS(1370), - [anon_sym_TILDE] = ACTIONS(1372), - [anon_sym_L_DQUOTE] = ACTIONS(1372), - [anon_sym_LPAREN2] = ACTIONS(1372), - [sym_primitive_type] = ACTIONS(1370), - [anon_sym_for] = ACTIONS(1370), - [anon_sym_break] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1372), - [aux_sym_preproc_include_token1] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_DQUOTE] = ACTIONS(1372), - [anon_sym_register] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_if] = ACTIONS(1370), - [anon_sym_switch] = ACTIONS(1370), - [anon_sym_enum] = ACTIONS(1370), - [sym_false] = ACTIONS(1370), - [anon_sym_return] = ACTIONS(1370), - [anon_sym_continue] = ACTIONS(1370), - [anon_sym_SEMI] = ACTIONS(1372), - [aux_sym_preproc_def_token1] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_auto] = ACTIONS(1370), - [anon_sym_inline] = ACTIONS(1370), + [sym_argument_list] = STATE(475), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_RBRACK] = ACTIONS(1899), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [749] = { - [sym_if_statement] = STATE(761), - [sym_do_statement] = STATE(761), - [sym_for_statement] = STATE(761), - [sym__expression] = STATE(1030), - [sym_comma_expression] = STATE(1031), - [sym_binary_expression] = STATE(1030), - [sym_update_expression] = STATE(1030), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(761), - [sym_return_statement] = STATE(761), - [sym_break_statement] = STATE(761), - [sym_conditional_expression] = STATE(1030), - [sym_assignment_expression] = STATE(1030), - [sym_cast_expression] = STATE(1030), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1030), - [sym_char_literal] = STATE(1030), - [sym_labeled_statement] = STATE(761), - [sym_while_statement] = STATE(761), - [sym_continue_statement] = STATE(761), - [sym_goto_statement] = STATE(761), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1030), - [sym_sizeof_expression] = STATE(1030), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1030), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(761), - [sym_expression_statement] = STATE(761), - [anon_sym_LBRACE] = ACTIONS(854), - [sym_true] = ACTIONS(836), - [sym_null] = ACTIONS(836), - [anon_sym_do] = ACTIONS(856), - [anon_sym_goto] = ACTIONS(838), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(2375), - [anon_sym_for] = ACTIONS(864), - [anon_sym_break] = ACTIONS(866), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(870), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(872), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(836), - [anon_sym_return] = ACTIONS(874), - [anon_sym_while] = ACTIONS(852), - [anon_sym_continue] = ACTIONS(876), - [anon_sym_SEMI] = ACTIONS(878), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_argument_list] = STATE(475), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_RBRACK] = ACTIONS(1957), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [750] = { - [sym_true] = ACTIONS(1380), - [anon_sym_restrict] = ACTIONS(1380), - [sym_null] = ACTIONS(1380), - [anon_sym_goto] = ACTIONS(1380), - [aux_sym_preproc_if_token2] = ACTIONS(1380), - [anon_sym_const] = ACTIONS(1380), - [anon_sym_typedef] = ACTIONS(1380), - [anon_sym_DASH_DASH] = ACTIONS(1382), - [anon_sym__Atomic] = ACTIONS(1380), - [sym_identifier] = ACTIONS(1380), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1380), - [sym_number_literal] = ACTIONS(1382), - [anon_sym_volatile] = ACTIONS(1380), - [anon_sym_SQUOTE] = ACTIONS(1382), - [anon_sym_extern] = ACTIONS(1380), - [anon_sym_PLUS_PLUS] = ACTIONS(1382), - [anon_sym_struct] = ACTIONS(1380), - [anon_sym_signed] = ACTIONS(1380), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1380), - [anon_sym_while] = ACTIONS(1380), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1380), - [anon_sym_L_SQUOTE] = ACTIONS(1382), - [anon_sym___attribute__] = ACTIONS(1380), - [anon_sym_sizeof] = ACTIONS(1380), - [anon_sym_LBRACE] = ACTIONS(1382), - [anon_sym_union] = ACTIONS(1380), - [anon_sym_unsigned] = ACTIONS(1380), - [anon_sym_short] = ACTIONS(1380), - [anon_sym_do] = ACTIONS(1380), - [sym_preproc_directive] = ACTIONS(1380), - [anon_sym_AMP] = ACTIONS(1382), - [aux_sym_preproc_if_token1] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1382), - [anon_sym_L_DQUOTE] = ACTIONS(1382), - [anon_sym_LPAREN2] = ACTIONS(1382), - [anon_sym_else] = ACTIONS(1380), - [sym_primitive_type] = ACTIONS(1380), - [anon_sym_for] = ACTIONS(1380), - [anon_sym_break] = ACTIONS(1380), - [anon_sym_BANG] = ACTIONS(1382), - [aux_sym_preproc_include_token1] = ACTIONS(1380), - [anon_sym_DASH] = ACTIONS(1380), - [anon_sym_static] = ACTIONS(1380), - [anon_sym_DQUOTE] = ACTIONS(1382), - [anon_sym_register] = ACTIONS(1380), - [anon_sym_STAR] = ACTIONS(1382), - [anon_sym_if] = ACTIONS(1380), - [anon_sym_switch] = ACTIONS(1380), - [anon_sym_enum] = ACTIONS(1380), - [sym_false] = ACTIONS(1380), - [anon_sym_return] = ACTIONS(1380), - [anon_sym_continue] = ACTIONS(1380), - [anon_sym_SEMI] = ACTIONS(1382), - [aux_sym_preproc_def_token1] = ACTIONS(1380), - [anon_sym_PLUS] = ACTIONS(1380), - [anon_sym_auto] = ACTIONS(1380), - [anon_sym_inline] = ACTIONS(1380), + [sym_argument_list] = STATE(475), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_RBRACK] = ACTIONS(1993), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [751] = { - [sym_true] = ACTIONS(1400), - [anon_sym_restrict] = ACTIONS(1400), - [sym_null] = ACTIONS(1400), - [anon_sym_goto] = ACTIONS(1400), - [aux_sym_preproc_if_token2] = ACTIONS(1400), - [anon_sym_const] = ACTIONS(1400), - [anon_sym_typedef] = ACTIONS(1400), - [anon_sym_DASH_DASH] = ACTIONS(1402), - [anon_sym__Atomic] = ACTIONS(1400), - [sym_identifier] = ACTIONS(1400), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1400), - [sym_number_literal] = ACTIONS(1402), - [anon_sym_volatile] = ACTIONS(1400), - [anon_sym_SQUOTE] = ACTIONS(1402), - [anon_sym_extern] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1402), - [anon_sym_struct] = ACTIONS(1400), - [anon_sym_signed] = ACTIONS(1400), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1400), - [anon_sym_while] = ACTIONS(1400), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1400), - [aux_sym_preproc_elif_token1] = ACTIONS(1400), - [anon_sym_L_SQUOTE] = ACTIONS(1402), - [anon_sym___attribute__] = ACTIONS(1400), - [anon_sym_sizeof] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1402), - [anon_sym_union] = ACTIONS(1400), - [anon_sym_unsigned] = ACTIONS(1400), - [anon_sym_short] = ACTIONS(1400), - [anon_sym_do] = ACTIONS(1400), - [aux_sym_preproc_else_token1] = ACTIONS(1400), - [sym_preproc_directive] = ACTIONS(1400), - [anon_sym_AMP] = ACTIONS(1402), - [aux_sym_preproc_if_token1] = ACTIONS(1400), - [anon_sym_TILDE] = ACTIONS(1402), - [anon_sym_L_DQUOTE] = ACTIONS(1402), - [anon_sym_LPAREN2] = ACTIONS(1402), - [sym_primitive_type] = ACTIONS(1400), - [anon_sym_for] = ACTIONS(1400), - [anon_sym_break] = ACTIONS(1400), - [anon_sym_BANG] = ACTIONS(1402), - [aux_sym_preproc_include_token1] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_static] = ACTIONS(1400), - [anon_sym_DQUOTE] = ACTIONS(1402), - [anon_sym_register] = ACTIONS(1400), - [anon_sym_STAR] = ACTIONS(1402), - [anon_sym_if] = ACTIONS(1400), - [anon_sym_switch] = ACTIONS(1400), - [anon_sym_enum] = ACTIONS(1400), - [sym_false] = ACTIONS(1400), - [anon_sym_return] = ACTIONS(1400), - [anon_sym_continue] = ACTIONS(1400), - [anon_sym_SEMI] = ACTIONS(1402), - [aux_sym_preproc_def_token1] = ACTIONS(1400), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_auto] = ACTIONS(1400), - [anon_sym_inline] = ACTIONS(1400), + [sym_argument_list] = STATE(475), + [anon_sym_SEMI] = ACTIONS(2374), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [752] = { - [sym_true] = ACTIONS(1410), - [anon_sym_restrict] = ACTIONS(1410), - [sym_null] = ACTIONS(1410), - [anon_sym_goto] = ACTIONS(1410), - [aux_sym_preproc_if_token2] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1410), - [anon_sym_typedef] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1412), - [anon_sym__Atomic] = ACTIONS(1410), - [sym_identifier] = ACTIONS(1410), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1410), - [sym_number_literal] = ACTIONS(1412), - [anon_sym_volatile] = ACTIONS(1410), - [anon_sym_SQUOTE] = ACTIONS(1412), - [anon_sym_extern] = ACTIONS(1410), - [anon_sym_PLUS_PLUS] = ACTIONS(1412), - [anon_sym_struct] = ACTIONS(1410), - [anon_sym_signed] = ACTIONS(1410), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1410), - [anon_sym_while] = ACTIONS(1410), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1410), - [aux_sym_preproc_elif_token1] = ACTIONS(1410), - [anon_sym_L_SQUOTE] = ACTIONS(1412), - [anon_sym___attribute__] = ACTIONS(1410), - [anon_sym_sizeof] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_union] = ACTIONS(1410), - [anon_sym_unsigned] = ACTIONS(1410), - [anon_sym_short] = ACTIONS(1410), - [anon_sym_do] = ACTIONS(1410), - [aux_sym_preproc_else_token1] = ACTIONS(1410), - [sym_preproc_directive] = ACTIONS(1410), - [anon_sym_AMP] = ACTIONS(1412), - [aux_sym_preproc_if_token1] = ACTIONS(1410), - [anon_sym_TILDE] = ACTIONS(1412), - [anon_sym_L_DQUOTE] = ACTIONS(1412), - [anon_sym_LPAREN2] = ACTIONS(1412), - [sym_primitive_type] = ACTIONS(1410), - [anon_sym_for] = ACTIONS(1410), - [anon_sym_break] = ACTIONS(1410), - [anon_sym_BANG] = ACTIONS(1412), - [aux_sym_preproc_include_token1] = ACTIONS(1410), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_static] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_register] = ACTIONS(1410), - [anon_sym_STAR] = ACTIONS(1412), - [anon_sym_if] = ACTIONS(1410), - [anon_sym_switch] = ACTIONS(1410), - [anon_sym_enum] = ACTIONS(1410), - [sym_false] = ACTIONS(1410), - [anon_sym_return] = ACTIONS(1410), - [anon_sym_continue] = ACTIONS(1410), - [anon_sym_SEMI] = ACTIONS(1412), - [aux_sym_preproc_def_token1] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_auto] = ACTIONS(1410), - [anon_sym_inline] = ACTIONS(1410), + [sym_argument_list] = STATE(475), + [anon_sym_SEMI] = ACTIONS(2376), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [753] = { - [sym_true] = ACTIONS(1466), - [anon_sym_restrict] = ACTIONS(1466), - [sym_null] = ACTIONS(1466), - [anon_sym_goto] = ACTIONS(1466), - [aux_sym_preproc_if_token2] = ACTIONS(1466), - [anon_sym_const] = ACTIONS(1466), - [anon_sym_typedef] = ACTIONS(1466), - [anon_sym_DASH_DASH] = ACTIONS(1468), - [anon_sym__Atomic] = ACTIONS(1466), - [sym_identifier] = ACTIONS(1466), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1466), - [sym_number_literal] = ACTIONS(1468), - [anon_sym_volatile] = ACTIONS(1466), - [anon_sym_SQUOTE] = ACTIONS(1468), - [anon_sym_extern] = ACTIONS(1466), - [anon_sym_PLUS_PLUS] = ACTIONS(1468), - [anon_sym_struct] = ACTIONS(1466), - [anon_sym_signed] = ACTIONS(1466), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1466), - [anon_sym_while] = ACTIONS(1466), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1466), - [anon_sym_L_SQUOTE] = ACTIONS(1468), - [anon_sym___attribute__] = ACTIONS(1466), - [anon_sym_sizeof] = ACTIONS(1466), - [anon_sym_LBRACE] = ACTIONS(1468), - [anon_sym_union] = ACTIONS(1466), - [anon_sym_unsigned] = ACTIONS(1466), - [anon_sym_short] = ACTIONS(1466), - [anon_sym_do] = ACTIONS(1466), - [sym_preproc_directive] = ACTIONS(1466), - [anon_sym_AMP] = ACTIONS(1468), - [aux_sym_preproc_if_token1] = ACTIONS(1466), - [anon_sym_TILDE] = ACTIONS(1468), - [anon_sym_L_DQUOTE] = ACTIONS(1468), - [anon_sym_LPAREN2] = ACTIONS(1468), - [sym_primitive_type] = ACTIONS(1466), - [anon_sym_for] = ACTIONS(1466), - [anon_sym_break] = ACTIONS(1466), - [anon_sym_BANG] = ACTIONS(1468), - [aux_sym_preproc_include_token1] = ACTIONS(1466), - [anon_sym_DASH] = ACTIONS(1466), - [anon_sym_static] = ACTIONS(1466), - [anon_sym_DQUOTE] = ACTIONS(1468), - [anon_sym_register] = ACTIONS(1466), - [anon_sym_STAR] = ACTIONS(1468), - [anon_sym_if] = ACTIONS(1466), - [anon_sym_switch] = ACTIONS(1466), - [anon_sym_enum] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [anon_sym_return] = ACTIONS(1466), - [anon_sym_continue] = ACTIONS(1466), - [anon_sym_SEMI] = ACTIONS(1468), - [aux_sym_preproc_def_token1] = ACTIONS(1466), - [anon_sym_PLUS] = ACTIONS(1466), - [anon_sym_auto] = ACTIONS(1466), - [anon_sym_inline] = ACTIONS(1466), + [sym_identifier] = ACTIONS(1125), + [aux_sym_preproc_def_token1] = ACTIONS(1125), + [aux_sym_preproc_if_token1] = ACTIONS(1125), + [aux_sym_preproc_if_token2] = ACTIONS(1125), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1125), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1125), + [aux_sym_preproc_else_token1] = ACTIONS(1125), + [aux_sym_preproc_elif_token1] = ACTIONS(1125), + [sym_preproc_directive] = ACTIONS(1125), + [anon_sym_extern] = ACTIONS(1125), + [anon_sym___attribute__] = ACTIONS(1125), + [anon_sym_static] = ACTIONS(1125), + [anon_sym_auto] = ACTIONS(1125), + [anon_sym_register] = ACTIONS(1125), + [anon_sym_inline] = ACTIONS(1125), + [anon_sym_const] = ACTIONS(1125), + [anon_sym_volatile] = ACTIONS(1125), + [anon_sym_restrict] = ACTIONS(1125), + [anon_sym__Atomic] = ACTIONS(1125), + [anon_sym_signed] = ACTIONS(1125), + [anon_sym_unsigned] = ACTIONS(1125), + [anon_sym_long] = ACTIONS(1125), + [anon_sym_short] = ACTIONS(1125), + [sym_primitive_type] = ACTIONS(1125), + [anon_sym_enum] = ACTIONS(1125), + [anon_sym_struct] = ACTIONS(1125), + [anon_sym_union] = ACTIONS(1125), + [sym_comment] = ACTIONS(3), }, [754] = { - [sym_true] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym__Atomic] = ACTIONS(1533), - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym_sizeof] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_AMP] = ACTIONS(1535), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_LPAREN2] = ACTIONS(1535), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1535), - [aux_sym_preproc_include_token1] = ACTIONS(1533), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_DQUOTE] = ACTIONS(1535), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_auto] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), + [sym_identifier] = 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), + [sym_preproc_directive] = ACTIONS(1169), + [anon_sym_extern] = ACTIONS(1169), + [anon_sym___attribute__] = ACTIONS(1169), + [anon_sym_static] = ACTIONS(1169), + [anon_sym_auto] = ACTIONS(1169), + [anon_sym_register] = ACTIONS(1169), + [anon_sym_inline] = ACTIONS(1169), + [anon_sym_const] = ACTIONS(1169), + [anon_sym_volatile] = ACTIONS(1169), + [anon_sym_restrict] = ACTIONS(1169), + [anon_sym__Atomic] = ACTIONS(1169), + [anon_sym_signed] = ACTIONS(1169), + [anon_sym_unsigned] = ACTIONS(1169), + [anon_sym_long] = ACTIONS(1169), + [anon_sym_short] = ACTIONS(1169), + [sym_primitive_type] = ACTIONS(1169), + [anon_sym_enum] = ACTIONS(1169), + [anon_sym_struct] = ACTIONS(1169), + [anon_sym_union] = ACTIONS(1169), + [sym_comment] = ACTIONS(3), }, [755] = { - [sym_true] = ACTIONS(1607), - [anon_sym_restrict] = ACTIONS(1607), - [sym_null] = ACTIONS(1607), - [anon_sym_goto] = ACTIONS(1607), - [aux_sym_preproc_if_token2] = ACTIONS(1607), - [anon_sym_const] = ACTIONS(1607), - [anon_sym_typedef] = ACTIONS(1607), - [anon_sym_DASH_DASH] = ACTIONS(1609), - [anon_sym__Atomic] = ACTIONS(1607), - [sym_identifier] = ACTIONS(1607), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1607), - [sym_number_literal] = ACTIONS(1609), - [anon_sym_volatile] = ACTIONS(1607), - [anon_sym_SQUOTE] = ACTIONS(1609), - [anon_sym_extern] = ACTIONS(1607), - [anon_sym_PLUS_PLUS] = ACTIONS(1609), - [anon_sym_struct] = ACTIONS(1607), - [anon_sym_signed] = ACTIONS(1607), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1607), - [anon_sym_while] = ACTIONS(1607), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1607), - [anon_sym_L_SQUOTE] = ACTIONS(1609), - [anon_sym___attribute__] = ACTIONS(1607), - [anon_sym_sizeof] = ACTIONS(1607), - [anon_sym_LBRACE] = ACTIONS(1609), - [anon_sym_union] = ACTIONS(1607), - [anon_sym_unsigned] = ACTIONS(1607), - [anon_sym_short] = ACTIONS(1607), - [anon_sym_do] = ACTIONS(1607), - [sym_preproc_directive] = ACTIONS(1607), - [anon_sym_AMP] = ACTIONS(1609), - [aux_sym_preproc_if_token1] = ACTIONS(1607), - [anon_sym_TILDE] = ACTIONS(1609), - [anon_sym_L_DQUOTE] = ACTIONS(1609), - [anon_sym_LPAREN2] = ACTIONS(1609), - [sym_primitive_type] = ACTIONS(1607), - [anon_sym_for] = ACTIONS(1607), - [anon_sym_break] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1609), - [aux_sym_preproc_include_token1] = ACTIONS(1607), - [anon_sym_DASH] = ACTIONS(1607), - [anon_sym_static] = ACTIONS(1607), - [anon_sym_DQUOTE] = ACTIONS(1609), - [anon_sym_register] = ACTIONS(1607), - [anon_sym_STAR] = ACTIONS(1609), - [anon_sym_if] = ACTIONS(1607), - [anon_sym_switch] = ACTIONS(1607), - [anon_sym_enum] = ACTIONS(1607), - [sym_false] = ACTIONS(1607), - [anon_sym_return] = ACTIONS(1607), - [anon_sym_continue] = ACTIONS(1607), - [anon_sym_SEMI] = ACTIONS(1609), - [aux_sym_preproc_def_token1] = ACTIONS(1607), - [anon_sym_PLUS] = ACTIONS(1607), - [anon_sym_auto] = ACTIONS(1607), - [anon_sym_inline] = ACTIONS(1607), + [sym_identifier] = ACTIONS(1173), + [aux_sym_preproc_def_token1] = ACTIONS(1173), + [aux_sym_preproc_if_token1] = ACTIONS(1173), + [aux_sym_preproc_if_token2] = ACTIONS(1173), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1173), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1173), + [aux_sym_preproc_else_token1] = ACTIONS(1173), + [aux_sym_preproc_elif_token1] = ACTIONS(1173), + [sym_preproc_directive] = ACTIONS(1173), + [anon_sym_extern] = ACTIONS(1173), + [anon_sym___attribute__] = ACTIONS(1173), + [anon_sym_static] = ACTIONS(1173), + [anon_sym_auto] = ACTIONS(1173), + [anon_sym_register] = ACTIONS(1173), + [anon_sym_inline] = ACTIONS(1173), + [anon_sym_const] = ACTIONS(1173), + [anon_sym_volatile] = ACTIONS(1173), + [anon_sym_restrict] = ACTIONS(1173), + [anon_sym__Atomic] = ACTIONS(1173), + [anon_sym_signed] = ACTIONS(1173), + [anon_sym_unsigned] = ACTIONS(1173), + [anon_sym_long] = ACTIONS(1173), + [anon_sym_short] = ACTIONS(1173), + [sym_primitive_type] = ACTIONS(1173), + [anon_sym_enum] = ACTIONS(1173), + [anon_sym_struct] = ACTIONS(1173), + [anon_sym_union] = ACTIONS(1173), + [sym_comment] = ACTIONS(3), }, [756] = { - [sym_true] = ACTIONS(1616), - [anon_sym_restrict] = ACTIONS(1616), - [sym_null] = ACTIONS(1616), - [anon_sym_goto] = ACTIONS(1616), - [aux_sym_preproc_if_token2] = ACTIONS(1616), - [anon_sym_const] = ACTIONS(1616), - [anon_sym_typedef] = ACTIONS(1616), - [anon_sym_DASH_DASH] = ACTIONS(1618), - [anon_sym__Atomic] = ACTIONS(1616), - [sym_identifier] = ACTIONS(1616), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1616), - [sym_number_literal] = ACTIONS(1618), - [anon_sym_volatile] = ACTIONS(1616), - [anon_sym_SQUOTE] = ACTIONS(1618), - [anon_sym_extern] = ACTIONS(1616), - [anon_sym_PLUS_PLUS] = ACTIONS(1618), - [anon_sym_struct] = ACTIONS(1616), - [anon_sym_signed] = ACTIONS(1616), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1616), - [anon_sym_while] = ACTIONS(1616), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1616), - [anon_sym_L_SQUOTE] = ACTIONS(1618), - [anon_sym___attribute__] = ACTIONS(1616), - [anon_sym_sizeof] = ACTIONS(1616), - [anon_sym_LBRACE] = ACTIONS(1618), - [anon_sym_union] = ACTIONS(1616), - [anon_sym_unsigned] = ACTIONS(1616), - [anon_sym_short] = ACTIONS(1616), - [anon_sym_do] = ACTIONS(1616), - [sym_preproc_directive] = ACTIONS(1616), - [anon_sym_AMP] = ACTIONS(1618), - [aux_sym_preproc_if_token1] = ACTIONS(1616), - [anon_sym_TILDE] = ACTIONS(1618), - [anon_sym_L_DQUOTE] = ACTIONS(1618), - [anon_sym_LPAREN2] = ACTIONS(1618), - [sym_primitive_type] = ACTIONS(1616), - [anon_sym_for] = ACTIONS(1616), - [anon_sym_break] = ACTIONS(1616), - [anon_sym_BANG] = ACTIONS(1618), - [aux_sym_preproc_include_token1] = ACTIONS(1616), - [anon_sym_DASH] = ACTIONS(1616), - [anon_sym_static] = ACTIONS(1616), - [anon_sym_DQUOTE] = ACTIONS(1618), - [anon_sym_register] = ACTIONS(1616), - [anon_sym_STAR] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(1616), - [anon_sym_switch] = ACTIONS(1616), - [anon_sym_enum] = ACTIONS(1616), - [sym_false] = ACTIONS(1616), - [anon_sym_return] = ACTIONS(1616), - [anon_sym_continue] = ACTIONS(1616), - [anon_sym_SEMI] = ACTIONS(1618), - [aux_sym_preproc_def_token1] = ACTIONS(1616), - [anon_sym_PLUS] = ACTIONS(1616), - [anon_sym_auto] = ACTIONS(1616), - [anon_sym_inline] = ACTIONS(1616), + [sym_argument_list] = STATE(475), + [anon_sym_SEMI] = ACTIONS(2378), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [757] = { - [sym_if_statement] = STATE(765), - [sym_do_statement] = STATE(765), - [sym_for_statement] = STATE(765), - [sym__expression] = STATE(1030), - [sym_comma_expression] = STATE(1031), - [sym_binary_expression] = STATE(1030), - [sym_update_expression] = STATE(1030), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(765), - [sym_return_statement] = STATE(765), - [sym_break_statement] = STATE(765), - [sym_conditional_expression] = STATE(1030), - [sym_assignment_expression] = STATE(1030), - [sym_cast_expression] = STATE(1030), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1030), - [sym_char_literal] = STATE(1030), - [sym_labeled_statement] = STATE(765), - [sym_while_statement] = STATE(765), - [sym_continue_statement] = STATE(765), - [sym_goto_statement] = STATE(765), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1030), - [sym_sizeof_expression] = STATE(1030), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1030), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(765), - [sym_expression_statement] = STATE(765), - [anon_sym_LBRACE] = ACTIONS(854), - [sym_true] = ACTIONS(836), - [sym_null] = ACTIONS(836), - [anon_sym_do] = ACTIONS(856), - [anon_sym_goto] = ACTIONS(838), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(2375), - [anon_sym_for] = ACTIONS(864), - [anon_sym_break] = ACTIONS(866), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(870), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(872), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(836), - [anon_sym_return] = ACTIONS(874), - [anon_sym_while] = ACTIONS(852), - [anon_sym_continue] = ACTIONS(876), - [anon_sym_SEMI] = ACTIONS(878), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_argument_list] = STATE(475), + [anon_sym_SEMI] = ACTIONS(2380), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [758] = { - [sym_if_statement] = STATE(769), - [sym_do_statement] = STATE(769), - [sym_for_statement] = STATE(769), - [sym__expression] = STATE(1030), - [sym_comma_expression] = STATE(1031), - [sym_binary_expression] = STATE(1030), - [sym_update_expression] = STATE(1030), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(769), - [sym_return_statement] = STATE(769), - [sym_break_statement] = STATE(769), - [sym_conditional_expression] = STATE(1030), - [sym_assignment_expression] = STATE(1030), - [sym_cast_expression] = STATE(1030), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1030), - [sym_char_literal] = STATE(1030), - [sym_labeled_statement] = STATE(769), - [sym_while_statement] = STATE(769), - [sym_continue_statement] = STATE(769), - [sym_goto_statement] = STATE(769), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1030), - [sym_sizeof_expression] = STATE(1030), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1030), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(769), - [sym_expression_statement] = STATE(769), - [anon_sym_LBRACE] = ACTIONS(854), - [sym_true] = ACTIONS(836), - [sym_null] = ACTIONS(836), - [anon_sym_do] = ACTIONS(856), - [anon_sym_goto] = ACTIONS(838), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(2375), - [anon_sym_for] = ACTIONS(864), - [anon_sym_break] = ACTIONS(866), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(870), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(872), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(836), - [anon_sym_return] = ACTIONS(874), - [anon_sym_while] = ACTIONS(852), - [anon_sym_continue] = ACTIONS(876), - [anon_sym_SEMI] = ACTIONS(878), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_identifier] = ACTIONS(1141), + [aux_sym_preproc_def_token1] = ACTIONS(1141), + [aux_sym_preproc_if_token1] = ACTIONS(1141), + [aux_sym_preproc_if_token2] = ACTIONS(1141), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1141), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1141), + [aux_sym_preproc_else_token1] = ACTIONS(1141), + [aux_sym_preproc_elif_token1] = ACTIONS(1141), + [sym_preproc_directive] = ACTIONS(1141), + [anon_sym_extern] = ACTIONS(1141), + [anon_sym___attribute__] = ACTIONS(1141), + [anon_sym_static] = ACTIONS(1141), + [anon_sym_auto] = ACTIONS(1141), + [anon_sym_register] = ACTIONS(1141), + [anon_sym_inline] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_volatile] = ACTIONS(1141), + [anon_sym_restrict] = ACTIONS(1141), + [anon_sym__Atomic] = ACTIONS(1141), + [anon_sym_signed] = ACTIONS(1141), + [anon_sym_unsigned] = ACTIONS(1141), + [anon_sym_long] = ACTIONS(1141), + [anon_sym_short] = ACTIONS(1141), + [sym_primitive_type] = ACTIONS(1141), + [anon_sym_enum] = ACTIONS(1141), + [anon_sym_struct] = ACTIONS(1141), + [anon_sym_union] = ACTIONS(1141), + [sym_comment] = ACTIONS(3), }, [759] = { - [sym_true] = ACTIONS(1646), - [anon_sym_restrict] = ACTIONS(1646), - [sym_null] = ACTIONS(1646), - [anon_sym_goto] = ACTIONS(1646), - [aux_sym_preproc_if_token2] = ACTIONS(1646), - [anon_sym_const] = ACTIONS(1646), - [anon_sym_typedef] = ACTIONS(1646), - [anon_sym_DASH_DASH] = ACTIONS(1648), - [anon_sym__Atomic] = ACTIONS(1646), - [sym_identifier] = ACTIONS(1646), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1646), - [sym_number_literal] = ACTIONS(1648), - [anon_sym_volatile] = ACTIONS(1646), - [anon_sym_SQUOTE] = ACTIONS(1648), - [anon_sym_extern] = ACTIONS(1646), - [anon_sym_PLUS_PLUS] = ACTIONS(1648), - [anon_sym_struct] = ACTIONS(1646), - [anon_sym_signed] = ACTIONS(1646), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1646), - [anon_sym_while] = ACTIONS(1646), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1646), - [anon_sym_L_SQUOTE] = ACTIONS(1648), - [anon_sym___attribute__] = ACTIONS(1646), - [anon_sym_sizeof] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_union] = ACTIONS(1646), - [anon_sym_unsigned] = ACTIONS(1646), - [anon_sym_short] = ACTIONS(1646), - [anon_sym_do] = ACTIONS(1646), - [sym_preproc_directive] = ACTIONS(1646), - [anon_sym_AMP] = ACTIONS(1648), - [aux_sym_preproc_if_token1] = ACTIONS(1646), - [anon_sym_TILDE] = ACTIONS(1648), - [anon_sym_L_DQUOTE] = ACTIONS(1648), - [anon_sym_LPAREN2] = ACTIONS(1648), - [sym_primitive_type] = ACTIONS(1646), - [anon_sym_for] = ACTIONS(1646), - [anon_sym_break] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1648), - [aux_sym_preproc_include_token1] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1646), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_DQUOTE] = ACTIONS(1648), - [anon_sym_register] = ACTIONS(1646), - [anon_sym_STAR] = ACTIONS(1648), - [anon_sym_if] = ACTIONS(1646), - [anon_sym_switch] = ACTIONS(1646), - [anon_sym_enum] = ACTIONS(1646), - [sym_false] = ACTIONS(1646), - [anon_sym_return] = ACTIONS(1646), - [anon_sym_continue] = ACTIONS(1646), - [anon_sym_SEMI] = ACTIONS(1648), - [aux_sym_preproc_def_token1] = ACTIONS(1646), - [anon_sym_PLUS] = ACTIONS(1646), - [anon_sym_auto] = ACTIONS(1646), - [anon_sym_inline] = ACTIONS(1646), + [sym_identifier] = ACTIONS(1093), + [aux_sym_preproc_def_token1] = ACTIONS(1093), + [aux_sym_preproc_if_token1] = ACTIONS(1093), + [aux_sym_preproc_if_token2] = ACTIONS(1093), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1093), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1093), + [aux_sym_preproc_else_token1] = ACTIONS(1093), + [aux_sym_preproc_elif_token1] = ACTIONS(1093), + [sym_preproc_directive] = ACTIONS(1093), + [anon_sym_extern] = ACTIONS(1093), + [anon_sym___attribute__] = ACTIONS(1093), + [anon_sym_static] = ACTIONS(1093), + [anon_sym_auto] = ACTIONS(1093), + [anon_sym_register] = ACTIONS(1093), + [anon_sym_inline] = ACTIONS(1093), + [anon_sym_const] = ACTIONS(1093), + [anon_sym_volatile] = ACTIONS(1093), + [anon_sym_restrict] = ACTIONS(1093), + [anon_sym__Atomic] = ACTIONS(1093), + [anon_sym_signed] = ACTIONS(1093), + [anon_sym_unsigned] = ACTIONS(1093), + [anon_sym_long] = ACTIONS(1093), + [anon_sym_short] = ACTIONS(1093), + [sym_primitive_type] = ACTIONS(1093), + [anon_sym_enum] = ACTIONS(1093), + [anon_sym_struct] = ACTIONS(1093), + [anon_sym_union] = ACTIONS(1093), + [sym_comment] = ACTIONS(3), }, [760] = { - [sym_true] = ACTIONS(1650), - [anon_sym_restrict] = ACTIONS(1650), - [sym_null] = ACTIONS(1650), - [anon_sym_goto] = ACTIONS(1650), - [aux_sym_preproc_if_token2] = ACTIONS(1650), - [anon_sym_const] = ACTIONS(1650), - [anon_sym_typedef] = ACTIONS(1650), - [anon_sym_DASH_DASH] = ACTIONS(1652), - [anon_sym__Atomic] = ACTIONS(1650), - [sym_identifier] = ACTIONS(1650), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1650), - [sym_number_literal] = ACTIONS(1652), - [anon_sym_volatile] = ACTIONS(1650), - [anon_sym_SQUOTE] = ACTIONS(1652), - [anon_sym_extern] = ACTIONS(1650), - [anon_sym_PLUS_PLUS] = ACTIONS(1652), - [anon_sym_struct] = ACTIONS(1650), - [anon_sym_signed] = ACTIONS(1650), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1650), - [anon_sym_while] = ACTIONS(1650), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1650), - [anon_sym_L_SQUOTE] = ACTIONS(1652), - [anon_sym___attribute__] = ACTIONS(1650), - [anon_sym_sizeof] = ACTIONS(1650), - [anon_sym_LBRACE] = ACTIONS(1652), - [anon_sym_union] = ACTIONS(1650), - [anon_sym_unsigned] = ACTIONS(1650), - [anon_sym_short] = ACTIONS(1650), - [anon_sym_do] = ACTIONS(1650), - [sym_preproc_directive] = ACTIONS(1650), - [anon_sym_AMP] = ACTIONS(1652), - [aux_sym_preproc_if_token1] = ACTIONS(1650), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_L_DQUOTE] = ACTIONS(1652), - [anon_sym_LPAREN2] = ACTIONS(1652), - [sym_primitive_type] = ACTIONS(1650), - [anon_sym_for] = ACTIONS(1650), - [anon_sym_break] = ACTIONS(1650), - [anon_sym_BANG] = ACTIONS(1652), - [aux_sym_preproc_include_token1] = ACTIONS(1650), - [anon_sym_DASH] = ACTIONS(1650), - [anon_sym_static] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_register] = ACTIONS(1650), - [anon_sym_STAR] = ACTIONS(1652), - [anon_sym_if] = ACTIONS(1650), - [anon_sym_switch] = ACTIONS(1650), - [anon_sym_enum] = ACTIONS(1650), - [sym_false] = ACTIONS(1650), - [anon_sym_return] = ACTIONS(1650), - [anon_sym_continue] = ACTIONS(1650), - [anon_sym_SEMI] = ACTIONS(1652), - [aux_sym_preproc_def_token1] = ACTIONS(1650), - [anon_sym_PLUS] = ACTIONS(1650), - [anon_sym_auto] = ACTIONS(1650), - [anon_sym_inline] = ACTIONS(1650), + [sym_identifier] = ACTIONS(2382), + [aux_sym_preproc_def_token1] = ACTIONS(2382), + [aux_sym_preproc_if_token1] = ACTIONS(2382), + [aux_sym_preproc_if_token2] = ACTIONS(2382), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2382), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2382), + [aux_sym_preproc_else_token1] = ACTIONS(2382), + [aux_sym_preproc_elif_token1] = ACTIONS(2382), + [sym_preproc_directive] = ACTIONS(2382), + [anon_sym_extern] = ACTIONS(2382), + [anon_sym___attribute__] = ACTIONS(2382), + [anon_sym_static] = ACTIONS(2382), + [anon_sym_auto] = ACTIONS(2382), + [anon_sym_register] = ACTIONS(2382), + [anon_sym_inline] = ACTIONS(2382), + [anon_sym_const] = ACTIONS(2382), + [anon_sym_volatile] = ACTIONS(2382), + [anon_sym_restrict] = ACTIONS(2382), + [anon_sym__Atomic] = ACTIONS(2382), + [anon_sym_signed] = ACTIONS(2382), + [anon_sym_unsigned] = ACTIONS(2382), + [anon_sym_long] = ACTIONS(2382), + [anon_sym_short] = ACTIONS(2382), + [sym_primitive_type] = ACTIONS(2382), + [anon_sym_enum] = ACTIONS(2382), + [anon_sym_struct] = ACTIONS(2382), + [anon_sym_union] = ACTIONS(2382), + [sym_comment] = ACTIONS(3), }, [761] = { - [sym_true] = ACTIONS(1654), - [anon_sym_restrict] = ACTIONS(1654), - [sym_null] = ACTIONS(1654), - [anon_sym_goto] = ACTIONS(1654), - [aux_sym_preproc_if_token2] = ACTIONS(1654), - [anon_sym_const] = ACTIONS(1654), - [anon_sym_typedef] = ACTIONS(1654), - [anon_sym_DASH_DASH] = ACTIONS(1656), - [anon_sym__Atomic] = ACTIONS(1654), - [sym_identifier] = ACTIONS(1654), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1654), - [sym_number_literal] = ACTIONS(1656), - [anon_sym_volatile] = ACTIONS(1654), - [anon_sym_SQUOTE] = ACTIONS(1656), - [anon_sym_extern] = ACTIONS(1654), - [anon_sym_PLUS_PLUS] = ACTIONS(1656), - [anon_sym_struct] = ACTIONS(1654), - [anon_sym_signed] = ACTIONS(1654), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1654), - [anon_sym_while] = ACTIONS(1654), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1654), - [anon_sym_L_SQUOTE] = ACTIONS(1656), - [anon_sym___attribute__] = ACTIONS(1654), - [anon_sym_sizeof] = ACTIONS(1654), - [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_union] = ACTIONS(1654), - [anon_sym_unsigned] = ACTIONS(1654), - [anon_sym_short] = ACTIONS(1654), - [anon_sym_do] = ACTIONS(1654), - [sym_preproc_directive] = ACTIONS(1654), - [anon_sym_AMP] = ACTIONS(1656), - [aux_sym_preproc_if_token1] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1656), - [anon_sym_L_DQUOTE] = ACTIONS(1656), - [anon_sym_LPAREN2] = ACTIONS(1656), - [anon_sym_else] = ACTIONS(1654), - [sym_primitive_type] = ACTIONS(1654), - [anon_sym_for] = ACTIONS(1654), - [anon_sym_break] = ACTIONS(1654), - [anon_sym_BANG] = ACTIONS(1656), - [aux_sym_preproc_include_token1] = ACTIONS(1654), - [anon_sym_DASH] = ACTIONS(1654), - [anon_sym_static] = ACTIONS(1654), - [anon_sym_DQUOTE] = ACTIONS(1656), - [anon_sym_register] = ACTIONS(1654), - [anon_sym_STAR] = ACTIONS(1656), - [anon_sym_if] = ACTIONS(1654), - [anon_sym_switch] = ACTIONS(1654), - [anon_sym_enum] = ACTIONS(1654), - [sym_false] = ACTIONS(1654), - [anon_sym_return] = ACTIONS(1654), - [anon_sym_continue] = ACTIONS(1654), - [anon_sym_SEMI] = ACTIONS(1656), - [aux_sym_preproc_def_token1] = ACTIONS(1654), - [anon_sym_PLUS] = ACTIONS(1654), - [anon_sym_auto] = ACTIONS(1654), - [anon_sym_inline] = ACTIONS(1654), + [sym_identifier] = ACTIONS(2384), + [aux_sym_preproc_def_token1] = ACTIONS(2384), + [aux_sym_preproc_if_token1] = ACTIONS(2384), + [aux_sym_preproc_if_token2] = ACTIONS(2384), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2384), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2384), + [aux_sym_preproc_else_token1] = ACTIONS(2384), + [aux_sym_preproc_elif_token1] = ACTIONS(2384), + [sym_preproc_directive] = ACTIONS(2384), + [anon_sym_extern] = ACTIONS(2384), + [anon_sym___attribute__] = ACTIONS(2384), + [anon_sym_static] = ACTIONS(2384), + [anon_sym_auto] = ACTIONS(2384), + [anon_sym_register] = ACTIONS(2384), + [anon_sym_inline] = ACTIONS(2384), + [anon_sym_const] = ACTIONS(2384), + [anon_sym_volatile] = ACTIONS(2384), + [anon_sym_restrict] = ACTIONS(2384), + [anon_sym__Atomic] = ACTIONS(2384), + [anon_sym_signed] = ACTIONS(2384), + [anon_sym_unsigned] = ACTIONS(2384), + [anon_sym_long] = ACTIONS(2384), + [anon_sym_short] = ACTIONS(2384), + [sym_primitive_type] = ACTIONS(2384), + [anon_sym_enum] = ACTIONS(2384), + [anon_sym_struct] = ACTIONS(2384), + [anon_sym_union] = ACTIONS(2384), + [sym_comment] = ACTIONS(3), }, [762] = { - [sym_true] = ACTIONS(1666), - [anon_sym_restrict] = ACTIONS(1666), - [sym_null] = ACTIONS(1666), - [anon_sym_goto] = ACTIONS(1666), - [aux_sym_preproc_if_token2] = ACTIONS(1666), - [anon_sym_const] = ACTIONS(1666), - [anon_sym_typedef] = ACTIONS(1666), - [anon_sym_DASH_DASH] = ACTIONS(1668), - [anon_sym__Atomic] = ACTIONS(1666), - [sym_identifier] = ACTIONS(1666), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1666), - [sym_number_literal] = ACTIONS(1668), - [anon_sym_volatile] = ACTIONS(1666), - [anon_sym_SQUOTE] = ACTIONS(1668), - [anon_sym_extern] = ACTIONS(1666), - [anon_sym_PLUS_PLUS] = ACTIONS(1668), - [anon_sym_struct] = ACTIONS(1666), - [anon_sym_signed] = ACTIONS(1666), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1666), - [anon_sym_while] = ACTIONS(1666), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1666), - [anon_sym_L_SQUOTE] = ACTIONS(1668), - [anon_sym___attribute__] = ACTIONS(1666), - [anon_sym_sizeof] = ACTIONS(1666), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_union] = ACTIONS(1666), - [anon_sym_unsigned] = ACTIONS(1666), - [anon_sym_short] = ACTIONS(1666), - [anon_sym_do] = ACTIONS(1666), - [sym_preproc_directive] = ACTIONS(1666), - [anon_sym_AMP] = ACTIONS(1668), - [aux_sym_preproc_if_token1] = ACTIONS(1666), - [anon_sym_TILDE] = ACTIONS(1668), - [anon_sym_L_DQUOTE] = ACTIONS(1668), - [anon_sym_LPAREN2] = ACTIONS(1668), - [anon_sym_else] = ACTIONS(1666), - [sym_primitive_type] = ACTIONS(1666), - [anon_sym_for] = ACTIONS(1666), - [anon_sym_break] = ACTIONS(1666), - [anon_sym_BANG] = ACTIONS(1668), - [aux_sym_preproc_include_token1] = ACTIONS(1666), - [anon_sym_DASH] = ACTIONS(1666), - [anon_sym_static] = ACTIONS(1666), - [anon_sym_DQUOTE] = ACTIONS(1668), - [anon_sym_register] = ACTIONS(1666), - [anon_sym_STAR] = ACTIONS(1668), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_switch] = ACTIONS(1666), - [anon_sym_enum] = ACTIONS(1666), - [sym_false] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1666), - [anon_sym_continue] = ACTIONS(1666), - [anon_sym_SEMI] = ACTIONS(1668), - [aux_sym_preproc_def_token1] = ACTIONS(1666), - [anon_sym_PLUS] = ACTIONS(1666), - [anon_sym_auto] = ACTIONS(1666), - [anon_sym_inline] = ACTIONS(1666), + [sym_identifier] = ACTIONS(2386), + [aux_sym_preproc_def_token1] = ACTIONS(2386), + [aux_sym_preproc_if_token1] = ACTIONS(2386), + [aux_sym_preproc_if_token2] = ACTIONS(2386), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2386), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2386), + [aux_sym_preproc_else_token1] = ACTIONS(2386), + [aux_sym_preproc_elif_token1] = ACTIONS(2386), + [sym_preproc_directive] = ACTIONS(2386), + [anon_sym_extern] = ACTIONS(2386), + [anon_sym___attribute__] = ACTIONS(2386), + [anon_sym_static] = ACTIONS(2386), + [anon_sym_auto] = ACTIONS(2386), + [anon_sym_register] = ACTIONS(2386), + [anon_sym_inline] = ACTIONS(2386), + [anon_sym_const] = ACTIONS(2386), + [anon_sym_volatile] = ACTIONS(2386), + [anon_sym_restrict] = ACTIONS(2386), + [anon_sym__Atomic] = ACTIONS(2386), + [anon_sym_signed] = ACTIONS(2386), + [anon_sym_unsigned] = ACTIONS(2386), + [anon_sym_long] = ACTIONS(2386), + [anon_sym_short] = ACTIONS(2386), + [sym_primitive_type] = ACTIONS(2386), + [anon_sym_enum] = ACTIONS(2386), + [anon_sym_struct] = ACTIONS(2386), + [anon_sym_union] = ACTIONS(2386), + [sym_comment] = ACTIONS(3), }, [763] = { - [sym_true] = ACTIONS(1763), - [anon_sym_restrict] = ACTIONS(1763), - [sym_null] = ACTIONS(1763), - [anon_sym_goto] = ACTIONS(1763), - [aux_sym_preproc_if_token2] = ACTIONS(1763), - [anon_sym_const] = ACTIONS(1763), - [anon_sym_typedef] = ACTIONS(1763), - [anon_sym_DASH_DASH] = ACTIONS(1765), - [anon_sym__Atomic] = ACTIONS(1763), - [sym_identifier] = ACTIONS(1763), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1763), - [sym_number_literal] = ACTIONS(1765), - [anon_sym_volatile] = ACTIONS(1763), - [anon_sym_SQUOTE] = ACTIONS(1765), - [anon_sym_extern] = ACTIONS(1763), - [anon_sym_PLUS_PLUS] = ACTIONS(1765), - [anon_sym_struct] = ACTIONS(1763), - [anon_sym_signed] = ACTIONS(1763), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1763), - [anon_sym_while] = ACTIONS(1763), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1763), - [aux_sym_preproc_elif_token1] = ACTIONS(1763), - [anon_sym_L_SQUOTE] = ACTIONS(1765), - [anon_sym___attribute__] = ACTIONS(1763), - [anon_sym_sizeof] = ACTIONS(1763), - [anon_sym_LBRACE] = ACTIONS(1765), - [anon_sym_union] = ACTIONS(1763), - [anon_sym_unsigned] = ACTIONS(1763), - [anon_sym_short] = ACTIONS(1763), - [anon_sym_do] = ACTIONS(1763), - [aux_sym_preproc_else_token1] = ACTIONS(1763), - [sym_preproc_directive] = ACTIONS(1763), - [anon_sym_AMP] = ACTIONS(1765), - [aux_sym_preproc_if_token1] = ACTIONS(1763), - [anon_sym_TILDE] = ACTIONS(1765), - [anon_sym_L_DQUOTE] = ACTIONS(1765), - [anon_sym_LPAREN2] = ACTIONS(1765), - [sym_primitive_type] = ACTIONS(1763), - [anon_sym_for] = ACTIONS(1763), - [anon_sym_break] = ACTIONS(1763), - [anon_sym_BANG] = ACTIONS(1765), - [aux_sym_preproc_include_token1] = ACTIONS(1763), - [anon_sym_DASH] = ACTIONS(1763), - [anon_sym_static] = ACTIONS(1763), - [anon_sym_DQUOTE] = ACTIONS(1765), - [anon_sym_register] = ACTIONS(1763), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_switch] = ACTIONS(1763), - [anon_sym_enum] = ACTIONS(1763), - [sym_false] = ACTIONS(1763), - [anon_sym_return] = ACTIONS(1763), - [anon_sym_continue] = ACTIONS(1763), - [anon_sym_SEMI] = ACTIONS(1765), - [aux_sym_preproc_def_token1] = ACTIONS(1763), - [anon_sym_PLUS] = ACTIONS(1763), - [anon_sym_auto] = ACTIONS(1763), - [anon_sym_inline] = ACTIONS(1763), + [sym_identifier] = ACTIONS(2388), + [aux_sym_preproc_def_token1] = ACTIONS(2388), + [aux_sym_preproc_if_token1] = ACTIONS(2388), + [aux_sym_preproc_if_token2] = ACTIONS(2388), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2388), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2388), + [aux_sym_preproc_else_token1] = ACTIONS(2388), + [aux_sym_preproc_elif_token1] = ACTIONS(2388), + [sym_preproc_directive] = ACTIONS(2388), + [anon_sym_extern] = ACTIONS(2388), + [anon_sym___attribute__] = ACTIONS(2388), + [anon_sym_static] = ACTIONS(2388), + [anon_sym_auto] = ACTIONS(2388), + [anon_sym_register] = ACTIONS(2388), + [anon_sym_inline] = ACTIONS(2388), + [anon_sym_const] = ACTIONS(2388), + [anon_sym_volatile] = ACTIONS(2388), + [anon_sym_restrict] = ACTIONS(2388), + [anon_sym__Atomic] = ACTIONS(2388), + [anon_sym_signed] = ACTIONS(2388), + [anon_sym_unsigned] = ACTIONS(2388), + [anon_sym_long] = ACTIONS(2388), + [anon_sym_short] = ACTIONS(2388), + [sym_primitive_type] = ACTIONS(2388), + [anon_sym_enum] = ACTIONS(2388), + [anon_sym_struct] = ACTIONS(2388), + [anon_sym_union] = ACTIONS(2388), + [sym_comment] = ACTIONS(3), }, [764] = { - [sym_true] = ACTIONS(1900), - [anon_sym_restrict] = ACTIONS(1900), - [sym_null] = ACTIONS(1900), - [anon_sym_goto] = ACTIONS(1900), - [aux_sym_preproc_if_token2] = ACTIONS(1900), - [anon_sym_const] = ACTIONS(1900), - [anon_sym_typedef] = ACTIONS(1900), - [anon_sym_DASH_DASH] = ACTIONS(1902), - [anon_sym__Atomic] = ACTIONS(1900), - [sym_identifier] = ACTIONS(1900), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1900), - [sym_number_literal] = ACTIONS(1902), - [anon_sym_volatile] = ACTIONS(1900), - [anon_sym_SQUOTE] = ACTIONS(1902), - [anon_sym_extern] = ACTIONS(1900), - [anon_sym_PLUS_PLUS] = ACTIONS(1902), - [anon_sym_struct] = ACTIONS(1900), - [anon_sym_signed] = ACTIONS(1900), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1900), - [anon_sym_while] = ACTIONS(1900), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1900), - [anon_sym_L_SQUOTE] = ACTIONS(1902), - [anon_sym___attribute__] = ACTIONS(1900), - [anon_sym_sizeof] = ACTIONS(1900), - [anon_sym_LBRACE] = ACTIONS(1902), - [anon_sym_union] = ACTIONS(1900), - [anon_sym_unsigned] = ACTIONS(1900), - [anon_sym_short] = ACTIONS(1900), - [anon_sym_do] = ACTIONS(1900), - [sym_preproc_directive] = ACTIONS(1900), - [anon_sym_AMP] = ACTIONS(1902), - [aux_sym_preproc_if_token1] = ACTIONS(1900), - [anon_sym_TILDE] = ACTIONS(1902), - [anon_sym_L_DQUOTE] = ACTIONS(1902), - [anon_sym_LPAREN2] = ACTIONS(1902), - [sym_primitive_type] = ACTIONS(1900), - [anon_sym_for] = ACTIONS(1900), - [anon_sym_break] = ACTIONS(1900), - [anon_sym_BANG] = ACTIONS(1902), - [aux_sym_preproc_include_token1] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_static] = ACTIONS(1900), - [anon_sym_DQUOTE] = ACTIONS(1902), - [anon_sym_register] = ACTIONS(1900), - [anon_sym_STAR] = ACTIONS(1902), - [anon_sym_if] = ACTIONS(1900), - [anon_sym_switch] = ACTIONS(1900), - [anon_sym_enum] = ACTIONS(1900), - [sym_false] = ACTIONS(1900), - [anon_sym_return] = ACTIONS(1900), - [anon_sym_continue] = ACTIONS(1900), - [anon_sym_SEMI] = ACTIONS(1902), - [aux_sym_preproc_def_token1] = ACTIONS(1900), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_auto] = ACTIONS(1900), - [anon_sym_inline] = ACTIONS(1900), + [sym_argument_list] = STATE(475), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_RBRACK] = ACTIONS(2007), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [765] = { - [sym_true] = ACTIONS(1904), - [anon_sym_restrict] = ACTIONS(1904), - [sym_null] = ACTIONS(1904), - [anon_sym_goto] = ACTIONS(1904), - [aux_sym_preproc_if_token2] = ACTIONS(1904), - [anon_sym_const] = ACTIONS(1904), - [anon_sym_typedef] = ACTIONS(1904), - [anon_sym_DASH_DASH] = ACTIONS(1906), - [anon_sym__Atomic] = ACTIONS(1904), - [sym_identifier] = ACTIONS(1904), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1904), - [sym_number_literal] = ACTIONS(1906), - [anon_sym_volatile] = ACTIONS(1904), - [anon_sym_SQUOTE] = ACTIONS(1906), - [anon_sym_extern] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1906), - [anon_sym_struct] = ACTIONS(1904), - [anon_sym_signed] = ACTIONS(1904), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1904), - [anon_sym_while] = ACTIONS(1904), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1904), - [anon_sym_L_SQUOTE] = ACTIONS(1906), - [anon_sym___attribute__] = ACTIONS(1904), - [anon_sym_sizeof] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_union] = ACTIONS(1904), - [anon_sym_unsigned] = ACTIONS(1904), - [anon_sym_short] = ACTIONS(1904), - [anon_sym_do] = ACTIONS(1904), - [sym_preproc_directive] = ACTIONS(1904), - [anon_sym_AMP] = ACTIONS(1906), - [aux_sym_preproc_if_token1] = ACTIONS(1904), - [anon_sym_TILDE] = ACTIONS(1906), - [anon_sym_L_DQUOTE] = ACTIONS(1906), - [anon_sym_LPAREN2] = ACTIONS(1906), - [anon_sym_else] = ACTIONS(1904), - [sym_primitive_type] = ACTIONS(1904), - [anon_sym_for] = ACTIONS(1904), - [anon_sym_break] = ACTIONS(1904), - [anon_sym_BANG] = ACTIONS(1906), - [aux_sym_preproc_include_token1] = ACTIONS(1904), - [anon_sym_DASH] = ACTIONS(1904), - [anon_sym_static] = ACTIONS(1904), - [anon_sym_DQUOTE] = ACTIONS(1906), - [anon_sym_register] = ACTIONS(1904), - [anon_sym_STAR] = ACTIONS(1906), - [anon_sym_if] = ACTIONS(1904), - [anon_sym_switch] = ACTIONS(1904), - [anon_sym_enum] = ACTIONS(1904), - [sym_false] = ACTIONS(1904), - [anon_sym_return] = ACTIONS(1904), - [anon_sym_continue] = ACTIONS(1904), - [anon_sym_SEMI] = ACTIONS(1906), - [aux_sym_preproc_def_token1] = ACTIONS(1904), - [anon_sym_PLUS] = ACTIONS(1904), - [anon_sym_auto] = ACTIONS(1904), - [anon_sym_inline] = ACTIONS(1904), + [sym_identifier] = ACTIONS(2390), + [aux_sym_preproc_def_token1] = ACTIONS(2390), + [aux_sym_preproc_if_token1] = ACTIONS(2390), + [aux_sym_preproc_if_token2] = ACTIONS(2390), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2390), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2390), + [aux_sym_preproc_else_token1] = ACTIONS(2390), + [aux_sym_preproc_elif_token1] = ACTIONS(2390), + [sym_preproc_directive] = ACTIONS(2390), + [anon_sym_extern] = ACTIONS(2390), + [anon_sym___attribute__] = ACTIONS(2390), + [anon_sym_static] = ACTIONS(2390), + [anon_sym_auto] = ACTIONS(2390), + [anon_sym_register] = ACTIONS(2390), + [anon_sym_inline] = ACTIONS(2390), + [anon_sym_const] = ACTIONS(2390), + [anon_sym_volatile] = ACTIONS(2390), + [anon_sym_restrict] = ACTIONS(2390), + [anon_sym__Atomic] = ACTIONS(2390), + [anon_sym_signed] = ACTIONS(2390), + [anon_sym_unsigned] = ACTIONS(2390), + [anon_sym_long] = ACTIONS(2390), + [anon_sym_short] = ACTIONS(2390), + [sym_primitive_type] = ACTIONS(2390), + [anon_sym_enum] = ACTIONS(2390), + [anon_sym_struct] = ACTIONS(2390), + [anon_sym_union] = ACTIONS(2390), + [sym_comment] = ACTIONS(3), }, [766] = { - [sym_if_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym__expression] = STATE(1030), - [sym_comma_expression] = STATE(1031), - [sym_binary_expression] = STATE(1030), - [sym_update_expression] = STATE(1030), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_conditional_expression] = STATE(1030), - [sym_assignment_expression] = STATE(1030), - [sym_cast_expression] = STATE(1030), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1030), - [sym_char_literal] = STATE(1030), - [sym_labeled_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1030), - [sym_sizeof_expression] = STATE(1030), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1030), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [anon_sym_LBRACE] = ACTIONS(854), - [sym_true] = ACTIONS(836), - [sym_null] = ACTIONS(836), - [anon_sym_do] = ACTIONS(856), - [anon_sym_goto] = ACTIONS(838), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(2375), - [anon_sym_for] = ACTIONS(864), - [anon_sym_break] = ACTIONS(866), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(870), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(872), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(836), - [anon_sym_return] = ACTIONS(874), - [anon_sym_while] = ACTIONS(852), - [anon_sym_continue] = ACTIONS(876), - [anon_sym_SEMI] = ACTIONS(878), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_argument_list] = STATE(475), + [anon_sym_SEMI] = ACTIONS(2392), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [767] = { - [sym_if_statement] = STATE(773), - [sym_do_statement] = STATE(773), - [sym_for_statement] = STATE(773), - [sym__expression] = STATE(1030), - [sym_comma_expression] = STATE(1031), - [sym_binary_expression] = STATE(1030), - [sym_update_expression] = STATE(1030), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(773), - [sym_return_statement] = STATE(773), - [sym_break_statement] = STATE(773), - [sym_conditional_expression] = STATE(1030), - [sym_assignment_expression] = STATE(1030), - [sym_cast_expression] = STATE(1030), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1030), - [sym_char_literal] = STATE(1030), - [sym_labeled_statement] = STATE(773), - [sym_while_statement] = STATE(773), - [sym_continue_statement] = STATE(773), - [sym_goto_statement] = STATE(773), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1030), - [sym_sizeof_expression] = STATE(1030), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1030), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(773), - [sym_expression_statement] = STATE(773), - [anon_sym_LBRACE] = ACTIONS(854), - [sym_true] = ACTIONS(836), - [sym_null] = ACTIONS(836), - [anon_sym_do] = ACTIONS(856), - [anon_sym_goto] = ACTIONS(838), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(2375), - [anon_sym_for] = ACTIONS(864), - [anon_sym_break] = ACTIONS(866), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(870), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(872), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(836), - [anon_sym_return] = ACTIONS(874), - [anon_sym_while] = ACTIONS(852), - [anon_sym_continue] = ACTIONS(876), - [anon_sym_SEMI] = ACTIONS(878), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_argument_list] = STATE(475), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_COLON] = ACTIONS(2394), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [768] = { - [sym_if_statement] = STATE(775), - [sym_do_statement] = STATE(775), - [sym_for_statement] = STATE(775), - [sym__expression] = STATE(1030), - [sym_comma_expression] = STATE(1031), - [sym_binary_expression] = STATE(1030), - [sym_update_expression] = STATE(1030), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(775), - [sym_return_statement] = STATE(775), - [sym_break_statement] = STATE(775), - [sym_conditional_expression] = STATE(1030), - [sym_assignment_expression] = STATE(1030), - [sym_cast_expression] = STATE(1030), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1030), - [sym_char_literal] = STATE(1030), - [sym_labeled_statement] = STATE(775), - [sym_while_statement] = STATE(775), - [sym_continue_statement] = STATE(775), - [sym_goto_statement] = STATE(775), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1030), - [sym_sizeof_expression] = STATE(1030), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1030), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(775), - [sym_expression_statement] = STATE(775), - [anon_sym_LBRACE] = ACTIONS(854), - [sym_true] = ACTIONS(836), - [sym_null] = ACTIONS(836), - [anon_sym_do] = ACTIONS(856), - [anon_sym_goto] = ACTIONS(838), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(2375), - [anon_sym_for] = ACTIONS(864), - [anon_sym_break] = ACTIONS(866), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(870), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(872), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(836), - [anon_sym_return] = ACTIONS(874), - [anon_sym_while] = ACTIONS(852), - [anon_sym_continue] = ACTIONS(876), - [anon_sym_SEMI] = ACTIONS(878), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_argument_list] = STATE(475), + [anon_sym_SEMI] = ACTIONS(2396), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [769] = { - [sym_true] = ACTIONS(1918), - [anon_sym_restrict] = ACTIONS(1918), - [sym_null] = ACTIONS(1918), - [anon_sym_goto] = ACTIONS(1918), - [aux_sym_preproc_if_token2] = ACTIONS(1918), - [anon_sym_const] = ACTIONS(1918), - [anon_sym_typedef] = ACTIONS(1918), - [anon_sym_DASH_DASH] = ACTIONS(1920), - [anon_sym__Atomic] = ACTIONS(1918), - [sym_identifier] = ACTIONS(1918), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1918), - [sym_number_literal] = ACTIONS(1920), - [anon_sym_volatile] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1920), - [anon_sym_extern] = ACTIONS(1918), - [anon_sym_PLUS_PLUS] = ACTIONS(1920), - [anon_sym_struct] = ACTIONS(1918), - [anon_sym_signed] = ACTIONS(1918), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1918), - [anon_sym_while] = ACTIONS(1918), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1918), - [anon_sym_L_SQUOTE] = ACTIONS(1920), - [anon_sym___attribute__] = ACTIONS(1918), - [anon_sym_sizeof] = ACTIONS(1918), - [anon_sym_LBRACE] = ACTIONS(1920), - [anon_sym_union] = ACTIONS(1918), - [anon_sym_unsigned] = ACTIONS(1918), - [anon_sym_short] = ACTIONS(1918), - [anon_sym_do] = ACTIONS(1918), - [sym_preproc_directive] = ACTIONS(1918), - [anon_sym_AMP] = ACTIONS(1920), - [aux_sym_preproc_if_token1] = ACTIONS(1918), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_L_DQUOTE] = ACTIONS(1920), - [anon_sym_LPAREN2] = ACTIONS(1920), - [anon_sym_else] = ACTIONS(1918), - [sym_primitive_type] = ACTIONS(1918), - [anon_sym_for] = ACTIONS(1918), - [anon_sym_break] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [aux_sym_preproc_include_token1] = ACTIONS(1918), - [anon_sym_DASH] = ACTIONS(1918), - [anon_sym_static] = ACTIONS(1918), - [anon_sym_DQUOTE] = ACTIONS(1920), - [anon_sym_register] = ACTIONS(1918), - [anon_sym_STAR] = ACTIONS(1920), - [anon_sym_if] = ACTIONS(1918), - [anon_sym_switch] = ACTIONS(1918), - [anon_sym_enum] = ACTIONS(1918), - [sym_false] = ACTIONS(1918), - [anon_sym_return] = ACTIONS(1918), - [anon_sym_continue] = ACTIONS(1918), - [anon_sym_SEMI] = ACTIONS(1920), - [aux_sym_preproc_def_token1] = ACTIONS(1918), - [anon_sym_PLUS] = ACTIONS(1918), - [anon_sym_auto] = ACTIONS(1918), - [anon_sym_inline] = ACTIONS(1918), + [sym_argument_list] = STATE(475), + [anon_sym_SEMI] = ACTIONS(2398), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [770] = { - [sym_if_statement] = STATE(778), - [sym_do_statement] = STATE(778), - [sym_for_statement] = STATE(778), - [sym__expression] = STATE(1030), - [sym_comma_expression] = STATE(1031), - [sym_binary_expression] = STATE(1030), - [sym_update_expression] = STATE(1030), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(778), - [sym_return_statement] = STATE(778), - [sym_break_statement] = STATE(778), - [sym_conditional_expression] = STATE(1030), - [sym_assignment_expression] = STATE(1030), - [sym_cast_expression] = STATE(1030), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1030), - [sym_char_literal] = STATE(1030), - [sym_labeled_statement] = STATE(778), - [sym_while_statement] = STATE(778), - [sym_continue_statement] = STATE(778), - [sym_goto_statement] = STATE(778), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1030), - [sym_sizeof_expression] = STATE(1030), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1030), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(778), - [sym_expression_statement] = STATE(778), - [anon_sym_LBRACE] = ACTIONS(854), - [sym_true] = ACTIONS(836), - [sym_null] = ACTIONS(836), - [anon_sym_do] = ACTIONS(856), - [anon_sym_goto] = ACTIONS(838), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(2375), - [anon_sym_for] = ACTIONS(864), - [anon_sym_break] = ACTIONS(866), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(870), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(872), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(836), - [anon_sym_return] = ACTIONS(874), - [anon_sym_while] = ACTIONS(852), - [anon_sym_continue] = ACTIONS(876), - [anon_sym_SEMI] = ACTIONS(878), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_identifier] = ACTIONS(2400), + [aux_sym_preproc_def_token1] = ACTIONS(2400), + [aux_sym_preproc_if_token1] = ACTIONS(2400), + [aux_sym_preproc_if_token2] = ACTIONS(2400), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2400), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2400), + [aux_sym_preproc_else_token1] = ACTIONS(2400), + [aux_sym_preproc_elif_token1] = ACTIONS(2400), + [sym_preproc_directive] = ACTIONS(2400), + [anon_sym_extern] = ACTIONS(2400), + [anon_sym___attribute__] = ACTIONS(2400), + [anon_sym_static] = ACTIONS(2400), + [anon_sym_auto] = ACTIONS(2400), + [anon_sym_register] = ACTIONS(2400), + [anon_sym_inline] = ACTIONS(2400), + [anon_sym_const] = ACTIONS(2400), + [anon_sym_volatile] = ACTIONS(2400), + [anon_sym_restrict] = ACTIONS(2400), + [anon_sym__Atomic] = ACTIONS(2400), + [anon_sym_signed] = ACTIONS(2400), + [anon_sym_unsigned] = ACTIONS(2400), + [anon_sym_long] = ACTIONS(2400), + [anon_sym_short] = ACTIONS(2400), + [sym_primitive_type] = ACTIONS(2400), + [anon_sym_enum] = ACTIONS(2400), + [anon_sym_struct] = ACTIONS(2400), + [anon_sym_union] = ACTIONS(2400), + [sym_comment] = ACTIONS(3), }, [771] = { - [sym_if_statement] = STATE(779), - [sym_do_statement] = STATE(779), - [sym_for_statement] = STATE(779), - [sym__expression] = STATE(1030), - [sym_comma_expression] = STATE(1031), - [sym_binary_expression] = STATE(1030), - [sym_update_expression] = STATE(1030), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(779), - [sym_return_statement] = STATE(779), - [sym_break_statement] = STATE(779), - [sym_conditional_expression] = STATE(1030), - [sym_assignment_expression] = STATE(1030), - [sym_cast_expression] = STATE(1030), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1030), - [sym_char_literal] = STATE(1030), - [sym_labeled_statement] = STATE(779), - [sym_while_statement] = STATE(779), - [sym_continue_statement] = STATE(779), - [sym_goto_statement] = STATE(779), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1030), - [sym_sizeof_expression] = STATE(1030), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1030), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(779), - [sym_expression_statement] = STATE(779), - [anon_sym_LBRACE] = ACTIONS(854), - [sym_true] = ACTIONS(836), - [sym_null] = ACTIONS(836), - [anon_sym_do] = ACTIONS(856), - [anon_sym_goto] = ACTIONS(838), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(2375), - [anon_sym_for] = ACTIONS(864), - [anon_sym_break] = ACTIONS(866), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(870), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(872), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(836), - [anon_sym_return] = ACTIONS(874), - [anon_sym_while] = ACTIONS(852), - [anon_sym_continue] = ACTIONS(876), - [anon_sym_SEMI] = ACTIONS(878), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_identifier] = ACTIONS(2402), + [aux_sym_preproc_def_token1] = ACTIONS(2402), + [aux_sym_preproc_if_token1] = ACTIONS(2402), + [aux_sym_preproc_if_token2] = ACTIONS(2402), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2402), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2402), + [aux_sym_preproc_else_token1] = ACTIONS(2402), + [aux_sym_preproc_elif_token1] = ACTIONS(2402), + [sym_preproc_directive] = ACTIONS(2402), + [anon_sym_extern] = ACTIONS(2402), + [anon_sym___attribute__] = ACTIONS(2402), + [anon_sym_static] = ACTIONS(2402), + [anon_sym_auto] = ACTIONS(2402), + [anon_sym_register] = ACTIONS(2402), + [anon_sym_inline] = ACTIONS(2402), + [anon_sym_const] = ACTIONS(2402), + [anon_sym_volatile] = ACTIONS(2402), + [anon_sym_restrict] = ACTIONS(2402), + [anon_sym__Atomic] = ACTIONS(2402), + [anon_sym_signed] = ACTIONS(2402), + [anon_sym_unsigned] = ACTIONS(2402), + [anon_sym_long] = ACTIONS(2402), + [anon_sym_short] = ACTIONS(2402), + [sym_primitive_type] = ACTIONS(2402), + [anon_sym_enum] = ACTIONS(2402), + [anon_sym_struct] = ACTIONS(2402), + [anon_sym_union] = ACTIONS(2402), + [sym_comment] = ACTIONS(3), }, [772] = { - [sym_true] = ACTIONS(1986), - [anon_sym_restrict] = ACTIONS(1986), - [sym_null] = ACTIONS(1986), - [anon_sym_goto] = ACTIONS(1986), - [aux_sym_preproc_if_token2] = ACTIONS(1986), - [anon_sym_const] = ACTIONS(1986), - [anon_sym_typedef] = ACTIONS(1986), - [anon_sym_DASH_DASH] = ACTIONS(1988), - [anon_sym__Atomic] = ACTIONS(1986), - [sym_identifier] = ACTIONS(1986), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1986), - [sym_number_literal] = ACTIONS(1988), - [anon_sym_volatile] = ACTIONS(1986), - [anon_sym_SQUOTE] = ACTIONS(1988), - [anon_sym_extern] = ACTIONS(1986), - [anon_sym_PLUS_PLUS] = ACTIONS(1988), - [anon_sym_struct] = ACTIONS(1986), - [anon_sym_signed] = ACTIONS(1986), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1986), - [anon_sym_while] = ACTIONS(1986), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1986), - [anon_sym_L_SQUOTE] = ACTIONS(1988), - [anon_sym___attribute__] = ACTIONS(1986), - [anon_sym_sizeof] = ACTIONS(1986), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_union] = ACTIONS(1986), - [anon_sym_unsigned] = ACTIONS(1986), - [anon_sym_short] = ACTIONS(1986), - [anon_sym_do] = ACTIONS(1986), - [sym_preproc_directive] = ACTIONS(1986), - [anon_sym_AMP] = ACTIONS(1988), - [aux_sym_preproc_if_token1] = ACTIONS(1986), - [anon_sym_TILDE] = ACTIONS(1988), - [anon_sym_L_DQUOTE] = ACTIONS(1988), - [anon_sym_LPAREN2] = ACTIONS(1988), - [anon_sym_else] = ACTIONS(1986), - [sym_primitive_type] = ACTIONS(1986), - [anon_sym_for] = ACTIONS(1986), - [anon_sym_break] = ACTIONS(1986), - [anon_sym_BANG] = ACTIONS(1988), - [aux_sym_preproc_include_token1] = ACTIONS(1986), - [anon_sym_DASH] = ACTIONS(1986), - [anon_sym_static] = ACTIONS(1986), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_register] = ACTIONS(1986), - [anon_sym_STAR] = ACTIONS(1988), - [anon_sym_if] = ACTIONS(1986), - [anon_sym_switch] = ACTIONS(1986), - [anon_sym_enum] = ACTIONS(1986), - [sym_false] = ACTIONS(1986), - [anon_sym_return] = ACTIONS(1986), - [anon_sym_continue] = ACTIONS(1986), - [anon_sym_SEMI] = ACTIONS(1988), - [aux_sym_preproc_def_token1] = ACTIONS(1986), - [anon_sym_PLUS] = ACTIONS(1986), - [anon_sym_auto] = ACTIONS(1986), - [anon_sym_inline] = ACTIONS(1986), + [sym_identifier] = ACTIONS(2404), + [aux_sym_preproc_def_token1] = ACTIONS(2404), + [aux_sym_preproc_if_token1] = ACTIONS(2404), + [aux_sym_preproc_if_token2] = ACTIONS(2404), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2404), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2404), + [aux_sym_preproc_else_token1] = ACTIONS(2404), + [aux_sym_preproc_elif_token1] = ACTIONS(2404), + [sym_preproc_directive] = ACTIONS(2404), + [anon_sym_extern] = ACTIONS(2404), + [anon_sym___attribute__] = ACTIONS(2404), + [anon_sym_static] = ACTIONS(2404), + [anon_sym_auto] = ACTIONS(2404), + [anon_sym_register] = ACTIONS(2404), + [anon_sym_inline] = ACTIONS(2404), + [anon_sym_const] = ACTIONS(2404), + [anon_sym_volatile] = ACTIONS(2404), + [anon_sym_restrict] = ACTIONS(2404), + [anon_sym__Atomic] = ACTIONS(2404), + [anon_sym_signed] = ACTIONS(2404), + [anon_sym_unsigned] = ACTIONS(2404), + [anon_sym_long] = ACTIONS(2404), + [anon_sym_short] = ACTIONS(2404), + [sym_primitive_type] = ACTIONS(2404), + [anon_sym_enum] = ACTIONS(2404), + [anon_sym_struct] = ACTIONS(2404), + [anon_sym_union] = ACTIONS(2404), + [sym_comment] = ACTIONS(3), }, [773] = { - [sym_true] = ACTIONS(1990), - [anon_sym_restrict] = ACTIONS(1990), - [sym_null] = ACTIONS(1990), - [anon_sym_goto] = ACTIONS(1990), - [aux_sym_preproc_if_token2] = ACTIONS(1990), - [anon_sym_const] = ACTIONS(1990), - [anon_sym_typedef] = ACTIONS(1990), - [anon_sym_DASH_DASH] = ACTIONS(1992), - [anon_sym__Atomic] = ACTIONS(1990), - [sym_identifier] = ACTIONS(1990), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1990), - [sym_number_literal] = ACTIONS(1992), - [anon_sym_volatile] = ACTIONS(1990), - [anon_sym_SQUOTE] = ACTIONS(1992), - [anon_sym_extern] = ACTIONS(1990), - [anon_sym_PLUS_PLUS] = ACTIONS(1992), - [anon_sym_struct] = ACTIONS(1990), - [anon_sym_signed] = ACTIONS(1990), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1990), - [anon_sym_while] = ACTIONS(1990), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1990), - [anon_sym_L_SQUOTE] = ACTIONS(1992), - [anon_sym___attribute__] = ACTIONS(1990), - [anon_sym_sizeof] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1992), - [anon_sym_union] = ACTIONS(1990), - [anon_sym_unsigned] = ACTIONS(1990), - [anon_sym_short] = ACTIONS(1990), - [anon_sym_do] = ACTIONS(1990), - [sym_preproc_directive] = ACTIONS(1990), - [anon_sym_AMP] = ACTIONS(1992), - [aux_sym_preproc_if_token1] = ACTIONS(1990), - [anon_sym_TILDE] = ACTIONS(1992), - [anon_sym_L_DQUOTE] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(1990), - [sym_primitive_type] = ACTIONS(1990), - [anon_sym_for] = ACTIONS(1990), - [anon_sym_break] = ACTIONS(1990), - [anon_sym_BANG] = ACTIONS(1992), - [aux_sym_preproc_include_token1] = ACTIONS(1990), - [anon_sym_DASH] = ACTIONS(1990), - [anon_sym_static] = ACTIONS(1990), - [anon_sym_DQUOTE] = ACTIONS(1992), - [anon_sym_register] = ACTIONS(1990), - [anon_sym_STAR] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1990), - [anon_sym_switch] = ACTIONS(1990), - [anon_sym_enum] = ACTIONS(1990), - [sym_false] = ACTIONS(1990), - [anon_sym_return] = ACTIONS(1990), - [anon_sym_continue] = ACTIONS(1990), - [anon_sym_SEMI] = ACTIONS(1992), - [aux_sym_preproc_def_token1] = ACTIONS(1990), - [anon_sym_PLUS] = ACTIONS(1990), - [anon_sym_auto] = ACTIONS(1990), - [anon_sym_inline] = ACTIONS(1990), + [sym_argument_list] = STATE(475), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_RBRACK] = ACTIONS(1887), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [774] = { - [sym_if_statement] = STATE(781), - [sym_do_statement] = STATE(781), - [sym_for_statement] = STATE(781), - [sym__expression] = STATE(1030), - [sym_comma_expression] = STATE(1031), - [sym_binary_expression] = STATE(1030), - [sym_update_expression] = STATE(1030), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(781), - [sym_return_statement] = STATE(781), - [sym_break_statement] = STATE(781), - [sym_conditional_expression] = STATE(1030), - [sym_assignment_expression] = STATE(1030), - [sym_cast_expression] = STATE(1030), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1030), - [sym_char_literal] = STATE(1030), - [sym_labeled_statement] = STATE(781), - [sym_while_statement] = STATE(781), - [sym_continue_statement] = STATE(781), - [sym_goto_statement] = STATE(781), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1030), - [sym_sizeof_expression] = STATE(1030), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1030), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(781), - [sym_expression_statement] = STATE(781), - [anon_sym_LBRACE] = ACTIONS(854), - [sym_true] = ACTIONS(836), - [sym_null] = ACTIONS(836), - [anon_sym_do] = ACTIONS(856), - [anon_sym_goto] = ACTIONS(838), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(2375), - [anon_sym_for] = ACTIONS(864), - [anon_sym_break] = ACTIONS(866), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(870), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(872), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(836), - [anon_sym_return] = ACTIONS(874), - [anon_sym_while] = ACTIONS(852), - [anon_sym_continue] = ACTIONS(876), - [anon_sym_SEMI] = ACTIONS(878), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_identifier] = ACTIONS(1133), + [aux_sym_preproc_def_token1] = ACTIONS(1133), + [aux_sym_preproc_if_token1] = ACTIONS(1133), + [aux_sym_preproc_if_token2] = ACTIONS(1133), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1133), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1133), + [aux_sym_preproc_else_token1] = ACTIONS(1133), + [aux_sym_preproc_elif_token1] = ACTIONS(1133), + [sym_preproc_directive] = ACTIONS(1133), + [anon_sym_extern] = ACTIONS(1133), + [anon_sym___attribute__] = ACTIONS(1133), + [anon_sym_static] = ACTIONS(1133), + [anon_sym_auto] = ACTIONS(1133), + [anon_sym_register] = ACTIONS(1133), + [anon_sym_inline] = ACTIONS(1133), + [anon_sym_const] = ACTIONS(1133), + [anon_sym_volatile] = ACTIONS(1133), + [anon_sym_restrict] = ACTIONS(1133), + [anon_sym__Atomic] = ACTIONS(1133), + [anon_sym_signed] = ACTIONS(1133), + [anon_sym_unsigned] = ACTIONS(1133), + [anon_sym_long] = ACTIONS(1133), + [anon_sym_short] = ACTIONS(1133), + [sym_primitive_type] = ACTIONS(1133), + [anon_sym_enum] = ACTIONS(1133), + [anon_sym_struct] = ACTIONS(1133), + [anon_sym_union] = ACTIONS(1133), + [sym_comment] = ACTIONS(3), }, [775] = { - [sym_true] = ACTIONS(1994), - [anon_sym_restrict] = ACTIONS(1994), - [sym_null] = ACTIONS(1994), - [anon_sym_goto] = ACTIONS(1994), - [aux_sym_preproc_if_token2] = ACTIONS(1994), - [anon_sym_const] = ACTIONS(1994), - [anon_sym_typedef] = ACTIONS(1994), - [anon_sym_DASH_DASH] = ACTIONS(1996), - [anon_sym__Atomic] = ACTIONS(1994), - [sym_identifier] = ACTIONS(1994), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1994), - [sym_number_literal] = ACTIONS(1996), - [anon_sym_volatile] = ACTIONS(1994), - [anon_sym_SQUOTE] = ACTIONS(1996), - [anon_sym_extern] = ACTIONS(1994), - [anon_sym_PLUS_PLUS] = ACTIONS(1996), - [anon_sym_struct] = ACTIONS(1994), - [anon_sym_signed] = ACTIONS(1994), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1994), - [anon_sym_while] = ACTIONS(1994), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1994), - [anon_sym_L_SQUOTE] = ACTIONS(1996), - [anon_sym___attribute__] = ACTIONS(1994), - [anon_sym_sizeof] = ACTIONS(1994), - [anon_sym_LBRACE] = ACTIONS(1996), - [anon_sym_union] = ACTIONS(1994), - [anon_sym_unsigned] = ACTIONS(1994), - [anon_sym_short] = ACTIONS(1994), - [anon_sym_do] = ACTIONS(1994), - [sym_preproc_directive] = ACTIONS(1994), - [anon_sym_AMP] = ACTIONS(1996), - [aux_sym_preproc_if_token1] = ACTIONS(1994), - [anon_sym_TILDE] = ACTIONS(1996), - [anon_sym_L_DQUOTE] = ACTIONS(1996), - [anon_sym_LPAREN2] = ACTIONS(1996), - [anon_sym_else] = ACTIONS(1994), - [sym_primitive_type] = ACTIONS(1994), - [anon_sym_for] = ACTIONS(1994), - [anon_sym_break] = ACTIONS(1994), - [anon_sym_BANG] = ACTIONS(1996), - [aux_sym_preproc_include_token1] = ACTIONS(1994), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_static] = ACTIONS(1994), - [anon_sym_DQUOTE] = ACTIONS(1996), - [anon_sym_register] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(1996), - [anon_sym_if] = ACTIONS(1994), - [anon_sym_switch] = ACTIONS(1994), - [anon_sym_enum] = ACTIONS(1994), - [sym_false] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1994), - [anon_sym_continue] = ACTIONS(1994), - [anon_sym_SEMI] = ACTIONS(1996), - [aux_sym_preproc_def_token1] = ACTIONS(1994), - [anon_sym_PLUS] = ACTIONS(1994), - [anon_sym_auto] = ACTIONS(1994), - [anon_sym_inline] = ACTIONS(1994), + [sym_identifier] = ACTIONS(2406), + [aux_sym_preproc_def_token1] = ACTIONS(2406), + [aux_sym_preproc_if_token1] = ACTIONS(2406), + [aux_sym_preproc_if_token2] = ACTIONS(2406), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2406), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2406), + [aux_sym_preproc_else_token1] = ACTIONS(2406), + [aux_sym_preproc_elif_token1] = ACTIONS(2406), + [sym_preproc_directive] = ACTIONS(2406), + [anon_sym_extern] = ACTIONS(2406), + [anon_sym___attribute__] = ACTIONS(2406), + [anon_sym_static] = ACTIONS(2406), + [anon_sym_auto] = ACTIONS(2406), + [anon_sym_register] = ACTIONS(2406), + [anon_sym_inline] = ACTIONS(2406), + [anon_sym_const] = ACTIONS(2406), + [anon_sym_volatile] = ACTIONS(2406), + [anon_sym_restrict] = ACTIONS(2406), + [anon_sym__Atomic] = ACTIONS(2406), + [anon_sym_signed] = ACTIONS(2406), + [anon_sym_unsigned] = ACTIONS(2406), + [anon_sym_long] = ACTIONS(2406), + [anon_sym_short] = ACTIONS(2406), + [sym_primitive_type] = ACTIONS(2406), + [anon_sym_enum] = ACTIONS(2406), + [anon_sym_struct] = ACTIONS(2406), + [anon_sym_union] = ACTIONS(2406), + [sym_comment] = ACTIONS(3), }, [776] = { - [sym_if_statement] = STATE(782), - [sym_do_statement] = STATE(782), - [sym_for_statement] = STATE(782), - [sym__expression] = STATE(1030), - [sym_comma_expression] = STATE(1031), - [sym_binary_expression] = STATE(1030), - [sym_update_expression] = STATE(1030), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(782), - [sym_return_statement] = STATE(782), - [sym_break_statement] = STATE(782), - [sym_conditional_expression] = STATE(1030), - [sym_assignment_expression] = STATE(1030), - [sym_cast_expression] = STATE(1030), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1030), - [sym_char_literal] = STATE(1030), - [sym_labeled_statement] = STATE(782), - [sym_while_statement] = STATE(782), - [sym_continue_statement] = STATE(782), - [sym_goto_statement] = STATE(782), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1030), - [sym_sizeof_expression] = STATE(1030), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1030), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(782), - [sym_expression_statement] = STATE(782), - [anon_sym_LBRACE] = ACTIONS(854), - [sym_true] = ACTIONS(836), - [sym_null] = ACTIONS(836), - [anon_sym_do] = ACTIONS(856), - [anon_sym_goto] = ACTIONS(838), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(2375), - [anon_sym_for] = ACTIONS(864), - [anon_sym_break] = ACTIONS(866), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(870), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(872), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(836), - [anon_sym_return] = ACTIONS(874), - [anon_sym_while] = ACTIONS(852), - [anon_sym_continue] = ACTIONS(876), - [anon_sym_SEMI] = ACTIONS(878), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_identifier] = ACTIONS(2408), + [aux_sym_preproc_def_token1] = ACTIONS(2408), + [aux_sym_preproc_if_token1] = ACTIONS(2408), + [aux_sym_preproc_if_token2] = ACTIONS(2408), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2408), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2408), + [aux_sym_preproc_else_token1] = ACTIONS(2408), + [aux_sym_preproc_elif_token1] = ACTIONS(2408), + [sym_preproc_directive] = ACTIONS(2408), + [anon_sym_extern] = ACTIONS(2408), + [anon_sym___attribute__] = ACTIONS(2408), + [anon_sym_static] = ACTIONS(2408), + [anon_sym_auto] = ACTIONS(2408), + [anon_sym_register] = ACTIONS(2408), + [anon_sym_inline] = ACTIONS(2408), + [anon_sym_const] = ACTIONS(2408), + [anon_sym_volatile] = ACTIONS(2408), + [anon_sym_restrict] = ACTIONS(2408), + [anon_sym__Atomic] = ACTIONS(2408), + [anon_sym_signed] = ACTIONS(2408), + [anon_sym_unsigned] = ACTIONS(2408), + [anon_sym_long] = ACTIONS(2408), + [anon_sym_short] = ACTIONS(2408), + [sym_primitive_type] = ACTIONS(2408), + [anon_sym_enum] = ACTIONS(2408), + [anon_sym_struct] = ACTIONS(2408), + [anon_sym_union] = ACTIONS(2408), + [sym_comment] = ACTIONS(3), }, [777] = { - [sym_if_statement] = STATE(783), - [sym_do_statement] = STATE(783), - [sym_for_statement] = STATE(783), - [sym__expression] = STATE(1030), - [sym_comma_expression] = STATE(1031), - [sym_binary_expression] = STATE(1030), - [sym_update_expression] = STATE(1030), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(783), - [sym_return_statement] = STATE(783), - [sym_break_statement] = STATE(783), - [sym_conditional_expression] = STATE(1030), - [sym_assignment_expression] = STATE(1030), - [sym_cast_expression] = STATE(1030), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1030), - [sym_char_literal] = STATE(1030), - [sym_labeled_statement] = STATE(783), - [sym_while_statement] = STATE(783), - [sym_continue_statement] = STATE(783), - [sym_goto_statement] = STATE(783), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1030), - [sym_sizeof_expression] = STATE(1030), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1030), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(783), - [sym_expression_statement] = STATE(783), - [anon_sym_LBRACE] = ACTIONS(854), - [sym_true] = ACTIONS(836), - [sym_null] = ACTIONS(836), - [anon_sym_do] = ACTIONS(856), - [anon_sym_goto] = ACTIONS(838), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(2375), - [anon_sym_for] = ACTIONS(864), - [anon_sym_break] = ACTIONS(866), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(870), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(872), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(836), - [anon_sym_return] = ACTIONS(874), - [anon_sym_while] = ACTIONS(852), - [anon_sym_continue] = ACTIONS(876), - [anon_sym_SEMI] = ACTIONS(878), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_identifier] = ACTIONS(2410), + [aux_sym_preproc_def_token1] = ACTIONS(2410), + [aux_sym_preproc_if_token1] = ACTIONS(2410), + [aux_sym_preproc_if_token2] = ACTIONS(2410), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2410), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2410), + [aux_sym_preproc_else_token1] = ACTIONS(2410), + [aux_sym_preproc_elif_token1] = ACTIONS(2410), + [sym_preproc_directive] = ACTIONS(2410), + [anon_sym_extern] = ACTIONS(2410), + [anon_sym___attribute__] = ACTIONS(2410), + [anon_sym_static] = ACTIONS(2410), + [anon_sym_auto] = ACTIONS(2410), + [anon_sym_register] = ACTIONS(2410), + [anon_sym_inline] = ACTIONS(2410), + [anon_sym_const] = ACTIONS(2410), + [anon_sym_volatile] = ACTIONS(2410), + [anon_sym_restrict] = ACTIONS(2410), + [anon_sym__Atomic] = ACTIONS(2410), + [anon_sym_signed] = ACTIONS(2410), + [anon_sym_unsigned] = ACTIONS(2410), + [anon_sym_long] = ACTIONS(2410), + [anon_sym_short] = ACTIONS(2410), + [sym_primitive_type] = ACTIONS(2410), + [anon_sym_enum] = ACTIONS(2410), + [anon_sym_struct] = ACTIONS(2410), + [anon_sym_union] = ACTIONS(2410), + [sym_comment] = ACTIONS(3), }, [778] = { - [sym_true] = ACTIONS(2000), - [anon_sym_restrict] = ACTIONS(2000), - [sym_null] = ACTIONS(2000), - [anon_sym_goto] = ACTIONS(2000), - [aux_sym_preproc_if_token2] = ACTIONS(2000), - [anon_sym_const] = ACTIONS(2000), - [anon_sym_typedef] = ACTIONS(2000), - [anon_sym_DASH_DASH] = ACTIONS(2002), - [anon_sym__Atomic] = ACTIONS(2000), - [sym_identifier] = ACTIONS(2000), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2000), - [sym_number_literal] = ACTIONS(2002), - [anon_sym_volatile] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2002), - [anon_sym_extern] = ACTIONS(2000), - [anon_sym_PLUS_PLUS] = ACTIONS(2002), - [anon_sym_struct] = ACTIONS(2000), - [anon_sym_signed] = ACTIONS(2000), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(2000), - [anon_sym_while] = ACTIONS(2000), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2000), - [anon_sym_L_SQUOTE] = ACTIONS(2002), - [anon_sym___attribute__] = ACTIONS(2000), - [anon_sym_sizeof] = ACTIONS(2000), - [anon_sym_LBRACE] = ACTIONS(2002), - [anon_sym_union] = ACTIONS(2000), - [anon_sym_unsigned] = ACTIONS(2000), - [anon_sym_short] = ACTIONS(2000), - [anon_sym_do] = ACTIONS(2000), - [sym_preproc_directive] = ACTIONS(2000), - [anon_sym_AMP] = ACTIONS(2002), - [aux_sym_preproc_if_token1] = ACTIONS(2000), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_L_DQUOTE] = ACTIONS(2002), - [anon_sym_LPAREN2] = ACTIONS(2002), - [anon_sym_else] = ACTIONS(2000), - [sym_primitive_type] = ACTIONS(2000), - [anon_sym_for] = ACTIONS(2000), - [anon_sym_break] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [aux_sym_preproc_include_token1] = ACTIONS(2000), - [anon_sym_DASH] = ACTIONS(2000), - [anon_sym_static] = ACTIONS(2000), - [anon_sym_DQUOTE] = ACTIONS(2002), - [anon_sym_register] = ACTIONS(2000), - [anon_sym_STAR] = ACTIONS(2002), - [anon_sym_if] = ACTIONS(2000), - [anon_sym_switch] = ACTIONS(2000), - [anon_sym_enum] = ACTIONS(2000), - [sym_false] = ACTIONS(2000), - [anon_sym_return] = ACTIONS(2000), - [anon_sym_continue] = ACTIONS(2000), - [anon_sym_SEMI] = ACTIONS(2002), - [aux_sym_preproc_def_token1] = ACTIONS(2000), - [anon_sym_PLUS] = ACTIONS(2000), - [anon_sym_auto] = ACTIONS(2000), - [anon_sym_inline] = ACTIONS(2000), + [sym_identifier] = ACTIONS(2412), + [aux_sym_preproc_def_token1] = ACTIONS(2412), + [aux_sym_preproc_if_token1] = ACTIONS(2412), + [aux_sym_preproc_if_token2] = ACTIONS(2412), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2412), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2412), + [aux_sym_preproc_else_token1] = ACTIONS(2412), + [aux_sym_preproc_elif_token1] = ACTIONS(2412), + [sym_preproc_directive] = ACTIONS(2412), + [anon_sym_extern] = ACTIONS(2412), + [anon_sym___attribute__] = ACTIONS(2412), + [anon_sym_static] = ACTIONS(2412), + [anon_sym_auto] = ACTIONS(2412), + [anon_sym_register] = ACTIONS(2412), + [anon_sym_inline] = ACTIONS(2412), + [anon_sym_const] = ACTIONS(2412), + [anon_sym_volatile] = ACTIONS(2412), + [anon_sym_restrict] = ACTIONS(2412), + [anon_sym__Atomic] = ACTIONS(2412), + [anon_sym_signed] = ACTIONS(2412), + [anon_sym_unsigned] = ACTIONS(2412), + [anon_sym_long] = ACTIONS(2412), + [anon_sym_short] = ACTIONS(2412), + [sym_primitive_type] = ACTIONS(2412), + [anon_sym_enum] = ACTIONS(2412), + [anon_sym_struct] = ACTIONS(2412), + [anon_sym_union] = ACTIONS(2412), + [sym_comment] = ACTIONS(3), }, [779] = { - [sym_true] = ACTIONS(2004), - [anon_sym_restrict] = ACTIONS(2004), - [sym_null] = ACTIONS(2004), - [anon_sym_goto] = ACTIONS(2004), - [aux_sym_preproc_if_token2] = ACTIONS(2004), - [anon_sym_const] = ACTIONS(2004), - [anon_sym_typedef] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2006), - [anon_sym__Atomic] = ACTIONS(2004), - [sym_identifier] = ACTIONS(2004), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2004), - [sym_number_literal] = ACTIONS(2006), - [anon_sym_volatile] = ACTIONS(2004), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_extern] = ACTIONS(2004), - [anon_sym_PLUS_PLUS] = ACTIONS(2006), - [anon_sym_struct] = ACTIONS(2004), - [anon_sym_signed] = ACTIONS(2004), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(2004), - [anon_sym_while] = ACTIONS(2004), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym___attribute__] = ACTIONS(2004), - [anon_sym_sizeof] = ACTIONS(2004), - [anon_sym_LBRACE] = ACTIONS(2006), - [anon_sym_union] = ACTIONS(2004), - [anon_sym_unsigned] = ACTIONS(2004), - [anon_sym_short] = ACTIONS(2004), - [anon_sym_do] = ACTIONS(2004), - [sym_preproc_directive] = ACTIONS(2004), - [anon_sym_AMP] = ACTIONS(2006), - [aux_sym_preproc_if_token1] = ACTIONS(2004), - [anon_sym_TILDE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2006), - [anon_sym_LPAREN2] = ACTIONS(2006), - [anon_sym_else] = ACTIONS(2004), - [sym_primitive_type] = ACTIONS(2004), - [anon_sym_for] = ACTIONS(2004), - [anon_sym_break] = ACTIONS(2004), - [anon_sym_BANG] = ACTIONS(2006), - [aux_sym_preproc_include_token1] = ACTIONS(2004), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_static] = ACTIONS(2004), - [anon_sym_DQUOTE] = ACTIONS(2006), - [anon_sym_register] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_if] = ACTIONS(2004), - [anon_sym_switch] = ACTIONS(2004), - [anon_sym_enum] = ACTIONS(2004), - [sym_false] = ACTIONS(2004), - [anon_sym_return] = ACTIONS(2004), - [anon_sym_continue] = ACTIONS(2004), - [anon_sym_SEMI] = ACTIONS(2006), - [aux_sym_preproc_def_token1] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_auto] = ACTIONS(2004), - [anon_sym_inline] = ACTIONS(2004), + [sym_argument_list] = STATE(475), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_RBRACK] = ACTIONS(1985), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [780] = { - [sym_if_statement] = STATE(785), - [sym_do_statement] = STATE(785), - [sym_for_statement] = STATE(785), - [sym__expression] = STATE(1030), - [sym_comma_expression] = STATE(1031), - [sym_binary_expression] = STATE(1030), - [sym_update_expression] = STATE(1030), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(785), - [sym_return_statement] = STATE(785), - [sym_break_statement] = STATE(785), - [sym_conditional_expression] = STATE(1030), - [sym_assignment_expression] = STATE(1030), - [sym_cast_expression] = STATE(1030), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1030), - [sym_char_literal] = STATE(1030), - [sym_labeled_statement] = STATE(785), - [sym_while_statement] = STATE(785), - [sym_continue_statement] = STATE(785), - [sym_goto_statement] = STATE(785), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1030), - [sym_sizeof_expression] = STATE(1030), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1030), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(785), - [sym_expression_statement] = STATE(785), - [anon_sym_LBRACE] = ACTIONS(854), - [sym_true] = ACTIONS(836), - [sym_null] = ACTIONS(836), - [anon_sym_do] = ACTIONS(856), - [anon_sym_goto] = ACTIONS(838), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(2375), - [anon_sym_for] = ACTIONS(864), - [anon_sym_break] = ACTIONS(866), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(870), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(872), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(836), - [anon_sym_return] = ACTIONS(874), - [anon_sym_while] = ACTIONS(852), - [anon_sym_continue] = ACTIONS(876), - [anon_sym_SEMI] = ACTIONS(878), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_argument_list] = STATE(475), + [anon_sym_SEMI] = ACTIONS(2414), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [781] = { - [sym_true] = ACTIONS(2117), - [anon_sym_restrict] = ACTIONS(2117), - [sym_null] = ACTIONS(2117), - [anon_sym_goto] = ACTIONS(2117), - [aux_sym_preproc_if_token2] = ACTIONS(2117), - [anon_sym_const] = ACTIONS(2117), - [anon_sym_typedef] = ACTIONS(2117), - [anon_sym_DASH_DASH] = ACTIONS(2119), - [anon_sym__Atomic] = ACTIONS(2117), - [sym_identifier] = ACTIONS(2117), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2117), - [sym_number_literal] = ACTIONS(2119), - [anon_sym_volatile] = ACTIONS(2117), - [anon_sym_SQUOTE] = ACTIONS(2119), - [anon_sym_extern] = ACTIONS(2117), - [anon_sym_PLUS_PLUS] = ACTIONS(2119), - [anon_sym_struct] = ACTIONS(2117), - [anon_sym_signed] = ACTIONS(2117), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(2117), - [anon_sym_while] = ACTIONS(2117), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2117), - [anon_sym_L_SQUOTE] = ACTIONS(2119), - [anon_sym___attribute__] = ACTIONS(2117), - [anon_sym_sizeof] = ACTIONS(2117), - [anon_sym_LBRACE] = ACTIONS(2119), - [anon_sym_union] = ACTIONS(2117), - [anon_sym_unsigned] = ACTIONS(2117), - [anon_sym_short] = ACTIONS(2117), - [anon_sym_do] = ACTIONS(2117), - [sym_preproc_directive] = ACTIONS(2117), - [anon_sym_AMP] = ACTIONS(2119), - [aux_sym_preproc_if_token1] = ACTIONS(2117), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_L_DQUOTE] = ACTIONS(2119), - [anon_sym_LPAREN2] = ACTIONS(2119), - [anon_sym_else] = ACTIONS(2117), - [sym_primitive_type] = ACTIONS(2117), - [anon_sym_for] = ACTIONS(2117), - [anon_sym_break] = ACTIONS(2117), - [anon_sym_BANG] = ACTIONS(2119), - [aux_sym_preproc_include_token1] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), - [anon_sym_static] = ACTIONS(2117), - [anon_sym_DQUOTE] = ACTIONS(2119), - [anon_sym_register] = ACTIONS(2117), - [anon_sym_STAR] = ACTIONS(2119), - [anon_sym_if] = ACTIONS(2117), - [anon_sym_switch] = ACTIONS(2117), - [anon_sym_enum] = ACTIONS(2117), - [sym_false] = ACTIONS(2117), - [anon_sym_return] = ACTIONS(2117), - [anon_sym_continue] = ACTIONS(2117), - [anon_sym_SEMI] = ACTIONS(2119), - [aux_sym_preproc_def_token1] = ACTIONS(2117), - [anon_sym_PLUS] = ACTIONS(2117), - [anon_sym_auto] = ACTIONS(2117), - [anon_sym_inline] = ACTIONS(2117), + [sym_identifier] = ACTIONS(2416), + [aux_sym_preproc_def_token1] = ACTIONS(2416), + [aux_sym_preproc_if_token1] = ACTIONS(2416), + [aux_sym_preproc_if_token2] = ACTIONS(2416), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2416), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2416), + [aux_sym_preproc_else_token1] = ACTIONS(2416), + [aux_sym_preproc_elif_token1] = ACTIONS(2416), + [sym_preproc_directive] = ACTIONS(2416), + [anon_sym_extern] = ACTIONS(2416), + [anon_sym___attribute__] = ACTIONS(2416), + [anon_sym_static] = ACTIONS(2416), + [anon_sym_auto] = ACTIONS(2416), + [anon_sym_register] = ACTIONS(2416), + [anon_sym_inline] = ACTIONS(2416), + [anon_sym_const] = ACTIONS(2416), + [anon_sym_volatile] = ACTIONS(2416), + [anon_sym_restrict] = ACTIONS(2416), + [anon_sym__Atomic] = ACTIONS(2416), + [anon_sym_signed] = ACTIONS(2416), + [anon_sym_unsigned] = ACTIONS(2416), + [anon_sym_long] = ACTIONS(2416), + [anon_sym_short] = ACTIONS(2416), + [sym_primitive_type] = ACTIONS(2416), + [anon_sym_enum] = ACTIONS(2416), + [anon_sym_struct] = ACTIONS(2416), + [anon_sym_union] = ACTIONS(2416), + [sym_comment] = ACTIONS(3), }, [782] = { - [sym_true] = ACTIONS(2121), - [anon_sym_restrict] = ACTIONS(2121), - [sym_null] = ACTIONS(2121), - [anon_sym_goto] = ACTIONS(2121), - [aux_sym_preproc_if_token2] = ACTIONS(2121), - [anon_sym_const] = ACTIONS(2121), - [anon_sym_typedef] = ACTIONS(2121), - [anon_sym_DASH_DASH] = ACTIONS(2123), - [anon_sym__Atomic] = ACTIONS(2121), - [sym_identifier] = ACTIONS(2121), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2121), - [sym_number_literal] = ACTIONS(2123), - [anon_sym_volatile] = ACTIONS(2121), - [anon_sym_SQUOTE] = ACTIONS(2123), - [anon_sym_extern] = ACTIONS(2121), - [anon_sym_PLUS_PLUS] = ACTIONS(2123), - [anon_sym_struct] = ACTIONS(2121), - [anon_sym_signed] = ACTIONS(2121), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(2121), - [anon_sym_while] = ACTIONS(2121), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2121), - [anon_sym_L_SQUOTE] = ACTIONS(2123), - [anon_sym___attribute__] = ACTIONS(2121), - [anon_sym_sizeof] = ACTIONS(2121), - [anon_sym_LBRACE] = ACTIONS(2123), - [anon_sym_union] = ACTIONS(2121), - [anon_sym_unsigned] = ACTIONS(2121), - [anon_sym_short] = ACTIONS(2121), - [anon_sym_do] = ACTIONS(2121), - [sym_preproc_directive] = ACTIONS(2121), - [anon_sym_AMP] = ACTIONS(2123), - [aux_sym_preproc_if_token1] = ACTIONS(2121), - [anon_sym_TILDE] = ACTIONS(2123), - [anon_sym_L_DQUOTE] = ACTIONS(2123), - [anon_sym_LPAREN2] = ACTIONS(2123), - [anon_sym_else] = ACTIONS(2121), - [sym_primitive_type] = ACTIONS(2121), - [anon_sym_for] = ACTIONS(2121), - [anon_sym_break] = ACTIONS(2121), - [anon_sym_BANG] = ACTIONS(2123), - [aux_sym_preproc_include_token1] = ACTIONS(2121), - [anon_sym_DASH] = ACTIONS(2121), - [anon_sym_static] = ACTIONS(2121), - [anon_sym_DQUOTE] = ACTIONS(2123), - [anon_sym_register] = ACTIONS(2121), - [anon_sym_STAR] = ACTIONS(2123), - [anon_sym_if] = ACTIONS(2121), - [anon_sym_switch] = ACTIONS(2121), - [anon_sym_enum] = ACTIONS(2121), - [sym_false] = ACTIONS(2121), - [anon_sym_return] = ACTIONS(2121), - [anon_sym_continue] = ACTIONS(2121), - [anon_sym_SEMI] = ACTIONS(2123), - [aux_sym_preproc_def_token1] = ACTIONS(2121), - [anon_sym_PLUS] = ACTIONS(2121), - [anon_sym_auto] = ACTIONS(2121), - [anon_sym_inline] = ACTIONS(2121), + [sym_argument_list] = STATE(475), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_RBRACK] = ACTIONS(1999), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_DASH_GT] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), }, [783] = { - [sym_true] = ACTIONS(2125), - [anon_sym_restrict] = ACTIONS(2125), - [sym_null] = ACTIONS(2125), - [anon_sym_goto] = ACTIONS(2125), - [aux_sym_preproc_if_token2] = ACTIONS(2125), - [anon_sym_const] = ACTIONS(2125), - [anon_sym_typedef] = ACTIONS(2125), - [anon_sym_DASH_DASH] = ACTIONS(2127), - [anon_sym__Atomic] = ACTIONS(2125), - [sym_identifier] = ACTIONS(2125), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2125), - [sym_number_literal] = ACTIONS(2127), - [anon_sym_volatile] = ACTIONS(2125), - [anon_sym_SQUOTE] = ACTIONS(2127), - [anon_sym_extern] = ACTIONS(2125), - [anon_sym_PLUS_PLUS] = ACTIONS(2127), - [anon_sym_struct] = ACTIONS(2125), - [anon_sym_signed] = ACTIONS(2125), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(2125), - [anon_sym_while] = ACTIONS(2125), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2125), - [anon_sym_L_SQUOTE] = ACTIONS(2127), - [anon_sym___attribute__] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2125), - [anon_sym_LBRACE] = ACTIONS(2127), - [anon_sym_union] = ACTIONS(2125), - [anon_sym_unsigned] = ACTIONS(2125), - [anon_sym_short] = ACTIONS(2125), - [anon_sym_do] = ACTIONS(2125), - [sym_preproc_directive] = ACTIONS(2125), - [anon_sym_AMP] = ACTIONS(2127), - [aux_sym_preproc_if_token1] = ACTIONS(2125), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_L_DQUOTE] = ACTIONS(2127), - [anon_sym_LPAREN2] = ACTIONS(2127), - [anon_sym_else] = ACTIONS(2125), - [sym_primitive_type] = ACTIONS(2125), - [anon_sym_for] = ACTIONS(2125), - [anon_sym_break] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2127), - [aux_sym_preproc_include_token1] = ACTIONS(2125), - [anon_sym_DASH] = ACTIONS(2125), - [anon_sym_static] = ACTIONS(2125), - [anon_sym_DQUOTE] = ACTIONS(2127), - [anon_sym_register] = ACTIONS(2125), - [anon_sym_STAR] = ACTIONS(2127), - [anon_sym_if] = ACTIONS(2125), - [anon_sym_switch] = ACTIONS(2125), - [anon_sym_enum] = ACTIONS(2125), - [sym_false] = ACTIONS(2125), - [anon_sym_return] = ACTIONS(2125), - [anon_sym_continue] = ACTIONS(2125), - [anon_sym_SEMI] = ACTIONS(2127), - [aux_sym_preproc_def_token1] = ACTIONS(2125), - [anon_sym_PLUS] = ACTIONS(2125), - [anon_sym_auto] = ACTIONS(2125), - [anon_sym_inline] = ACTIONS(2125), + [sym_identifier] = ACTIONS(2418), + [anon_sym_COMMA] = ACTIONS(2420), + [anon_sym_RPAREN] = ACTIONS(2420), + [anon_sym_SEMI] = ACTIONS(2420), + [anon_sym_extern] = ACTIONS(2418), + [anon_sym___attribute__] = ACTIONS(2418), + [anon_sym_LPAREN2] = ACTIONS(2420), + [anon_sym_STAR] = ACTIONS(2420), + [anon_sym_LBRACK] = ACTIONS(2420), + [anon_sym_static] = ACTIONS(2418), + [anon_sym_auto] = ACTIONS(2418), + [anon_sym_register] = ACTIONS(2418), + [anon_sym_inline] = ACTIONS(2418), + [anon_sym_const] = ACTIONS(2418), + [anon_sym_volatile] = ACTIONS(2418), + [anon_sym_restrict] = ACTIONS(2418), + [anon_sym__Atomic] = ACTIONS(2418), + [anon_sym_signed] = ACTIONS(2418), + [anon_sym_unsigned] = ACTIONS(2418), + [anon_sym_long] = ACTIONS(2418), + [anon_sym_short] = ACTIONS(2418), + [sym_primitive_type] = ACTIONS(2418), + [anon_sym_enum] = ACTIONS(2418), + [anon_sym_struct] = ACTIONS(2418), + [anon_sym_union] = ACTIONS(2418), + [anon_sym_COLON] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), }, [784] = { - [sym_if_statement] = STATE(786), - [sym_do_statement] = STATE(786), - [sym_for_statement] = STATE(786), - [sym__expression] = STATE(1030), - [sym_comma_expression] = STATE(1031), - [sym_binary_expression] = STATE(1030), - [sym_update_expression] = STATE(1030), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(786), - [sym_return_statement] = STATE(786), - [sym_break_statement] = STATE(786), - [sym_conditional_expression] = STATE(1030), - [sym_assignment_expression] = STATE(1030), - [sym_cast_expression] = STATE(1030), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1030), - [sym_char_literal] = STATE(1030), - [sym_labeled_statement] = STATE(786), - [sym_while_statement] = STATE(786), - [sym_continue_statement] = STATE(786), - [sym_goto_statement] = STATE(786), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1030), - [sym_sizeof_expression] = STATE(1030), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1030), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(786), - [sym_expression_statement] = STATE(786), - [anon_sym_LBRACE] = ACTIONS(854), - [sym_true] = ACTIONS(836), - [sym_null] = ACTIONS(836), - [anon_sym_do] = ACTIONS(856), - [anon_sym_goto] = ACTIONS(838), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(2375), - [anon_sym_for] = ACTIONS(864), - [anon_sym_break] = ACTIONS(866), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(870), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(872), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(836), - [anon_sym_return] = ACTIONS(874), - [anon_sym_while] = ACTIONS(852), - [anon_sym_continue] = ACTIONS(876), - [anon_sym_SEMI] = ACTIONS(878), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_identifier] = ACTIONS(2422), + [anon_sym_COMMA] = ACTIONS(2424), + [anon_sym_RPAREN] = ACTIONS(2424), + [anon_sym_SEMI] = ACTIONS(2424), + [anon_sym_extern] = ACTIONS(2422), + [anon_sym___attribute__] = ACTIONS(2422), + [anon_sym_LPAREN2] = ACTIONS(2424), + [anon_sym_STAR] = ACTIONS(2424), + [anon_sym_LBRACK] = ACTIONS(2424), + [anon_sym_static] = ACTIONS(2422), + [anon_sym_auto] = ACTIONS(2422), + [anon_sym_register] = ACTIONS(2422), + [anon_sym_inline] = ACTIONS(2422), + [anon_sym_const] = ACTIONS(2422), + [anon_sym_volatile] = ACTIONS(2422), + [anon_sym_restrict] = ACTIONS(2422), + [anon_sym__Atomic] = ACTIONS(2422), + [anon_sym_signed] = ACTIONS(2422), + [anon_sym_unsigned] = ACTIONS(2422), + [anon_sym_long] = ACTIONS(2422), + [anon_sym_short] = ACTIONS(2422), + [sym_primitive_type] = ACTIONS(2422), + [anon_sym_enum] = ACTIONS(2422), + [anon_sym_struct] = ACTIONS(2422), + [anon_sym_union] = ACTIONS(2422), + [anon_sym_COLON] = ACTIONS(2424), + [sym_comment] = ACTIONS(3), }, [785] = { - [sym_true] = ACTIONS(2129), - [anon_sym_restrict] = ACTIONS(2129), - [sym_null] = ACTIONS(2129), - [anon_sym_goto] = ACTIONS(2129), - [aux_sym_preproc_if_token2] = ACTIONS(2129), - [anon_sym_const] = ACTIONS(2129), - [anon_sym_typedef] = ACTIONS(2129), - [anon_sym_DASH_DASH] = ACTIONS(2131), - [anon_sym__Atomic] = ACTIONS(2129), - [sym_identifier] = ACTIONS(2129), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2129), - [sym_number_literal] = ACTIONS(2131), - [anon_sym_volatile] = ACTIONS(2129), - [anon_sym_SQUOTE] = ACTIONS(2131), - [anon_sym_extern] = ACTIONS(2129), - [anon_sym_PLUS_PLUS] = ACTIONS(2131), - [anon_sym_struct] = ACTIONS(2129), - [anon_sym_signed] = ACTIONS(2129), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(2129), - [anon_sym_while] = ACTIONS(2129), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2129), - [anon_sym_L_SQUOTE] = ACTIONS(2131), - [anon_sym___attribute__] = ACTIONS(2129), - [anon_sym_sizeof] = ACTIONS(2129), - [anon_sym_LBRACE] = ACTIONS(2131), - [anon_sym_union] = ACTIONS(2129), - [anon_sym_unsigned] = ACTIONS(2129), - [anon_sym_short] = ACTIONS(2129), - [anon_sym_do] = ACTIONS(2129), - [sym_preproc_directive] = ACTIONS(2129), - [anon_sym_AMP] = ACTIONS(2131), - [aux_sym_preproc_if_token1] = ACTIONS(2129), - [anon_sym_TILDE] = ACTIONS(2131), - [anon_sym_L_DQUOTE] = ACTIONS(2131), - [anon_sym_LPAREN2] = ACTIONS(2131), - [anon_sym_else] = ACTIONS(2129), - [sym_primitive_type] = ACTIONS(2129), - [anon_sym_for] = ACTIONS(2129), - [anon_sym_break] = ACTIONS(2129), - [anon_sym_BANG] = ACTIONS(2131), - [aux_sym_preproc_include_token1] = ACTIONS(2129), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_static] = ACTIONS(2129), - [anon_sym_DQUOTE] = ACTIONS(2131), - [anon_sym_register] = ACTIONS(2129), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_if] = ACTIONS(2129), - [anon_sym_switch] = ACTIONS(2129), - [anon_sym_enum] = ACTIONS(2129), - [sym_false] = ACTIONS(2129), - [anon_sym_return] = ACTIONS(2129), - [anon_sym_continue] = ACTIONS(2129), - [anon_sym_SEMI] = ACTIONS(2131), - [aux_sym_preproc_def_token1] = ACTIONS(2129), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_auto] = ACTIONS(2129), - [anon_sym_inline] = ACTIONS(2129), + [sym_type_qualifier] = STATE(785), + [aux_sym_type_definition_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(2426), + [anon_sym_LPAREN2] = ACTIONS(2428), + [anon_sym_STAR] = ACTIONS(2428), + [anon_sym_RBRACK] = ACTIONS(2428), + [anon_sym_const] = ACTIONS(2430), + [anon_sym_volatile] = ACTIONS(2430), + [anon_sym_restrict] = ACTIONS(2430), + [anon_sym__Atomic] = ACTIONS(2430), + [anon_sym_AMP] = ACTIONS(2428), + [anon_sym_BANG] = ACTIONS(2428), + [anon_sym_TILDE] = ACTIONS(2428), + [anon_sym_DASH] = ACTIONS(2426), + [anon_sym_PLUS] = ACTIONS(2426), + [anon_sym_DASH_DASH] = ACTIONS(2428), + [anon_sym_PLUS_PLUS] = ACTIONS(2428), + [anon_sym_sizeof] = ACTIONS(2426), + [sym_number_literal] = ACTIONS(2428), + [anon_sym_L_SQUOTE] = ACTIONS(2428), + [anon_sym_SQUOTE] = ACTIONS(2428), + [anon_sym_L_DQUOTE] = ACTIONS(2428), + [anon_sym_DQUOTE] = ACTIONS(2428), + [sym_true] = ACTIONS(2426), + [sym_false] = ACTIONS(2426), + [sym_null] = ACTIONS(2426), + [sym_comment] = ACTIONS(3), }, [786] = { - [sym_true] = ACTIONS(2133), - [anon_sym_restrict] = ACTIONS(2133), - [sym_null] = ACTIONS(2133), - [anon_sym_goto] = ACTIONS(2133), - [aux_sym_preproc_if_token2] = ACTIONS(2133), - [anon_sym_const] = ACTIONS(2133), - [anon_sym_typedef] = ACTIONS(2133), - [anon_sym_DASH_DASH] = ACTIONS(2135), - [anon_sym__Atomic] = ACTIONS(2133), - [sym_identifier] = ACTIONS(2133), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2133), - [sym_number_literal] = ACTIONS(2135), - [anon_sym_volatile] = ACTIONS(2133), - [anon_sym_SQUOTE] = ACTIONS(2135), - [anon_sym_extern] = ACTIONS(2133), - [anon_sym_PLUS_PLUS] = ACTIONS(2135), - [anon_sym_struct] = ACTIONS(2133), - [anon_sym_signed] = ACTIONS(2133), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(2133), - [anon_sym_while] = ACTIONS(2133), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2133), - [anon_sym_L_SQUOTE] = ACTIONS(2135), - [anon_sym___attribute__] = ACTIONS(2133), - [anon_sym_sizeof] = ACTIONS(2133), - [anon_sym_LBRACE] = ACTIONS(2135), - [anon_sym_union] = ACTIONS(2133), - [anon_sym_unsigned] = ACTIONS(2133), - [anon_sym_short] = ACTIONS(2133), - [anon_sym_do] = ACTIONS(2133), - [sym_preproc_directive] = ACTIONS(2133), - [anon_sym_AMP] = ACTIONS(2135), - [aux_sym_preproc_if_token1] = ACTIONS(2133), - [anon_sym_TILDE] = ACTIONS(2135), - [anon_sym_L_DQUOTE] = ACTIONS(2135), - [anon_sym_LPAREN2] = ACTIONS(2135), - [anon_sym_else] = ACTIONS(2133), - [sym_primitive_type] = ACTIONS(2133), - [anon_sym_for] = ACTIONS(2133), - [anon_sym_break] = ACTIONS(2133), - [anon_sym_BANG] = ACTIONS(2135), - [aux_sym_preproc_include_token1] = ACTIONS(2133), - [anon_sym_DASH] = ACTIONS(2133), - [anon_sym_static] = ACTIONS(2133), - [anon_sym_DQUOTE] = ACTIONS(2135), - [anon_sym_register] = ACTIONS(2133), - [anon_sym_STAR] = ACTIONS(2135), - [anon_sym_if] = ACTIONS(2133), - [anon_sym_switch] = ACTIONS(2133), - [anon_sym_enum] = ACTIONS(2133), - [sym_false] = ACTIONS(2133), - [anon_sym_return] = ACTIONS(2133), - [anon_sym_continue] = ACTIONS(2133), - [anon_sym_SEMI] = ACTIONS(2135), - [aux_sym_preproc_def_token1] = ACTIONS(2133), - [anon_sym_PLUS] = ACTIONS(2133), - [anon_sym_auto] = ACTIONS(2133), - [anon_sym_inline] = ACTIONS(2133), + [sym_identifier] = ACTIONS(2388), + [aux_sym_preproc_def_token1] = ACTIONS(2388), + [aux_sym_preproc_if_token1] = ACTIONS(2388), + [aux_sym_preproc_if_token2] = ACTIONS(2388), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2388), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2388), + [sym_preproc_directive] = ACTIONS(2388), + [anon_sym_extern] = ACTIONS(2388), + [anon_sym___attribute__] = ACTIONS(2388), + [anon_sym_static] = ACTIONS(2388), + [anon_sym_auto] = ACTIONS(2388), + [anon_sym_register] = ACTIONS(2388), + [anon_sym_inline] = ACTIONS(2388), + [anon_sym_const] = ACTIONS(2388), + [anon_sym_volatile] = ACTIONS(2388), + [anon_sym_restrict] = ACTIONS(2388), + [anon_sym__Atomic] = ACTIONS(2388), + [anon_sym_signed] = ACTIONS(2388), + [anon_sym_unsigned] = ACTIONS(2388), + [anon_sym_long] = ACTIONS(2388), + [anon_sym_short] = ACTIONS(2388), + [sym_primitive_type] = ACTIONS(2388), + [anon_sym_enum] = ACTIONS(2388), + [anon_sym_struct] = ACTIONS(2388), + [anon_sym_union] = ACTIONS(2388), + [sym_comment] = ACTIONS(3), }, [787] = { - [anon_sym_LBRACE] = ACTIONS(257), - [anon_sym_case] = ACTIONS(255), - [sym_true] = ACTIONS(255), - [sym_null] = ACTIONS(255), - [anon_sym_do] = ACTIONS(255), - [anon_sym_goto] = ACTIONS(255), - [anon_sym_AMP] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(257), - [anon_sym_L_DQUOTE] = ACTIONS(257), - [anon_sym_LPAREN2] = ACTIONS(257), - [anon_sym_RBRACE] = ACTIONS(257), - [anon_sym_DASH_DASH] = ACTIONS(257), - [anon_sym_default] = ACTIONS(255), - [anon_sym_else] = ACTIONS(255), - [sym_identifier] = ACTIONS(255), - [anon_sym_for] = ACTIONS(255), - [anon_sym_break] = ACTIONS(255), - [anon_sym_BANG] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(255), - [sym_number_literal] = ACTIONS(257), - [anon_sym_DQUOTE] = ACTIONS(257), - [anon_sym_SQUOTE] = ACTIONS(257), - [anon_sym_STAR] = ACTIONS(257), - [anon_sym_if] = ACTIONS(255), - [anon_sym_PLUS_PLUS] = ACTIONS(257), - [anon_sym_switch] = ACTIONS(255), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(255), - [anon_sym_return] = ACTIONS(255), - [anon_sym_while] = ACTIONS(255), - [anon_sym_continue] = ACTIONS(255), - [anon_sym_SEMI] = ACTIONS(257), - [anon_sym_PLUS] = ACTIONS(255), - [anon_sym_L_SQUOTE] = ACTIONS(257), - [anon_sym_sizeof] = ACTIONS(255), + [sym_identifier] = ACTIONS(1173), + [aux_sym_preproc_def_token1] = ACTIONS(1173), + [aux_sym_preproc_if_token1] = ACTIONS(1173), + [aux_sym_preproc_if_token2] = ACTIONS(1173), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1173), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1173), + [sym_preproc_directive] = ACTIONS(1173), + [anon_sym_extern] = ACTIONS(1173), + [anon_sym___attribute__] = ACTIONS(1173), + [anon_sym_static] = ACTIONS(1173), + [anon_sym_auto] = ACTIONS(1173), + [anon_sym_register] = ACTIONS(1173), + [anon_sym_inline] = ACTIONS(1173), + [anon_sym_const] = ACTIONS(1173), + [anon_sym_volatile] = ACTIONS(1173), + [anon_sym_restrict] = ACTIONS(1173), + [anon_sym__Atomic] = ACTIONS(1173), + [anon_sym_signed] = ACTIONS(1173), + [anon_sym_unsigned] = ACTIONS(1173), + [anon_sym_long] = ACTIONS(1173), + [anon_sym_short] = ACTIONS(1173), + [sym_primitive_type] = ACTIONS(1173), + [anon_sym_enum] = ACTIONS(1173), + [anon_sym_struct] = ACTIONS(1173), + [anon_sym_union] = ACTIONS(1173), + [sym_comment] = ACTIONS(3), }, [788] = { - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_case] = ACTIONS(336), - [sym_true] = ACTIONS(336), - [sym_null] = ACTIONS(336), - [anon_sym_do] = ACTIONS(336), - [anon_sym_goto] = ACTIONS(336), - [anon_sym_AMP] = ACTIONS(338), - [anon_sym_TILDE] = ACTIONS(338), - [anon_sym_L_DQUOTE] = ACTIONS(338), - [anon_sym_LPAREN2] = ACTIONS(338), - [anon_sym_RBRACE] = ACTIONS(338), - [anon_sym_DASH_DASH] = ACTIONS(338), - [anon_sym_default] = ACTIONS(336), - [anon_sym_else] = ACTIONS(336), - [sym_identifier] = ACTIONS(336), - [anon_sym_for] = ACTIONS(336), - [anon_sym_break] = ACTIONS(336), - [anon_sym_BANG] = ACTIONS(338), - [anon_sym_DASH] = ACTIONS(336), - [sym_number_literal] = ACTIONS(338), - [anon_sym_DQUOTE] = ACTIONS(338), - [anon_sym_SQUOTE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(338), - [anon_sym_if] = ACTIONS(336), - [anon_sym_PLUS_PLUS] = ACTIONS(338), - [anon_sym_switch] = ACTIONS(336), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(336), - [anon_sym_return] = ACTIONS(336), - [anon_sym_while] = ACTIONS(336), - [anon_sym_continue] = ACTIONS(336), - [anon_sym_SEMI] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(336), - [anon_sym_L_SQUOTE] = ACTIONS(338), - [anon_sym_sizeof] = ACTIONS(336), + [sym_identifier] = ACTIONS(2390), + [aux_sym_preproc_def_token1] = ACTIONS(2390), + [aux_sym_preproc_if_token1] = ACTIONS(2390), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2390), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2390), + [sym_preproc_directive] = ACTIONS(2390), + [anon_sym_extern] = ACTIONS(2390), + [anon_sym___attribute__] = ACTIONS(2390), + [anon_sym_RBRACE] = ACTIONS(2433), + [anon_sym_static] = ACTIONS(2390), + [anon_sym_auto] = ACTIONS(2390), + [anon_sym_register] = ACTIONS(2390), + [anon_sym_inline] = ACTIONS(2390), + [anon_sym_const] = ACTIONS(2390), + [anon_sym_volatile] = ACTIONS(2390), + [anon_sym_restrict] = ACTIONS(2390), + [anon_sym__Atomic] = ACTIONS(2390), + [anon_sym_signed] = ACTIONS(2390), + [anon_sym_unsigned] = ACTIONS(2390), + [anon_sym_long] = ACTIONS(2390), + [anon_sym_short] = ACTIONS(2390), + [sym_primitive_type] = ACTIONS(2390), + [anon_sym_enum] = ACTIONS(2390), + [anon_sym_struct] = ACTIONS(2390), + [anon_sym_union] = ACTIONS(2390), + [sym_comment] = ACTIONS(3), }, [789] = { - [sym_true] = ACTIONS(368), - [anon_sym_restrict] = ACTIONS(368), - [sym_null] = ACTIONS(368), - [anon_sym_goto] = ACTIONS(368), - [aux_sym_preproc_if_token2] = ACTIONS(368), - [anon_sym_const] = ACTIONS(368), - [anon_sym_typedef] = ACTIONS(368), - [anon_sym_DASH_DASH] = ACTIONS(370), - [anon_sym__Atomic] = ACTIONS(368), - [sym_identifier] = ACTIONS(368), - [aux_sym_preproc_ifdef_token1] = ACTIONS(368), - [sym_number_literal] = ACTIONS(370), - [anon_sym_volatile] = ACTIONS(368), - [anon_sym_SQUOTE] = ACTIONS(370), - [anon_sym_extern] = ACTIONS(368), - [anon_sym_PLUS_PLUS] = ACTIONS(370), - [anon_sym_struct] = ACTIONS(368), - [anon_sym_signed] = ACTIONS(368), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(368), - [anon_sym_while] = ACTIONS(368), - [aux_sym_preproc_ifdef_token2] = ACTIONS(368), - [anon_sym_L_SQUOTE] = ACTIONS(370), - [anon_sym___attribute__] = ACTIONS(368), - [anon_sym_sizeof] = ACTIONS(368), - [anon_sym_LBRACE] = ACTIONS(370), - [anon_sym_union] = ACTIONS(368), - [anon_sym_unsigned] = ACTIONS(368), - [anon_sym_short] = ACTIONS(368), - [anon_sym_do] = ACTIONS(368), - [sym_preproc_directive] = ACTIONS(368), - [anon_sym_AMP] = ACTIONS(370), - [aux_sym_preproc_if_token1] = ACTIONS(368), - [anon_sym_TILDE] = ACTIONS(370), - [anon_sym_L_DQUOTE] = ACTIONS(370), - [anon_sym_LPAREN2] = ACTIONS(370), - [sym_primitive_type] = ACTIONS(368), - [anon_sym_for] = ACTIONS(368), - [anon_sym_break] = ACTIONS(368), - [anon_sym_BANG] = ACTIONS(370), - [aux_sym_preproc_include_token1] = ACTIONS(368), - [anon_sym_DASH] = ACTIONS(368), - [anon_sym_static] = ACTIONS(368), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_register] = ACTIONS(368), - [anon_sym_STAR] = ACTIONS(370), - [anon_sym_if] = ACTIONS(368), - [anon_sym_switch] = ACTIONS(368), - [anon_sym_enum] = ACTIONS(368), - [sym_false] = ACTIONS(368), - [anon_sym_return] = ACTIONS(368), - [anon_sym_continue] = ACTIONS(368), - [anon_sym_SEMI] = ACTIONS(370), - [aux_sym_preproc_def_token1] = ACTIONS(368), - [anon_sym_PLUS] = ACTIONS(368), - [anon_sym_auto] = ACTIONS(368), - [anon_sym_inline] = ACTIONS(368), + [sym_identifier] = ACTIONS(2412), + [aux_sym_preproc_def_token1] = ACTIONS(2412), + [aux_sym_preproc_if_token1] = ACTIONS(2412), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2412), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2412), + [sym_preproc_directive] = ACTIONS(2412), + [anon_sym_extern] = ACTIONS(2412), + [anon_sym___attribute__] = ACTIONS(2412), + [anon_sym_RBRACE] = ACTIONS(2435), + [anon_sym_static] = ACTIONS(2412), + [anon_sym_auto] = ACTIONS(2412), + [anon_sym_register] = ACTIONS(2412), + [anon_sym_inline] = ACTIONS(2412), + [anon_sym_const] = ACTIONS(2412), + [anon_sym_volatile] = ACTIONS(2412), + [anon_sym_restrict] = ACTIONS(2412), + [anon_sym__Atomic] = ACTIONS(2412), + [anon_sym_signed] = ACTIONS(2412), + [anon_sym_unsigned] = ACTIONS(2412), + [anon_sym_long] = ACTIONS(2412), + [anon_sym_short] = ACTIONS(2412), + [sym_primitive_type] = ACTIONS(2412), + [anon_sym_enum] = ACTIONS(2412), + [anon_sym_struct] = ACTIONS(2412), + [anon_sym_union] = ACTIONS(2412), + [sym_comment] = ACTIONS(3), }, [790] = { - [sym_true] = ACTIONS(465), - [anon_sym_restrict] = ACTIONS(465), - [sym_null] = ACTIONS(465), - [anon_sym_goto] = ACTIONS(465), - [aux_sym_preproc_if_token2] = ACTIONS(465), - [anon_sym_const] = ACTIONS(465), - [anon_sym_typedef] = ACTIONS(465), - [anon_sym_DASH_DASH] = ACTIONS(467), - [anon_sym__Atomic] = ACTIONS(465), - [sym_identifier] = ACTIONS(465), - [aux_sym_preproc_ifdef_token1] = ACTIONS(465), - [sym_number_literal] = ACTIONS(467), - [anon_sym_volatile] = ACTIONS(465), - [anon_sym_SQUOTE] = ACTIONS(467), - [anon_sym_extern] = ACTIONS(465), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_struct] = ACTIONS(465), - [anon_sym_signed] = ACTIONS(465), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(465), - [anon_sym_while] = ACTIONS(465), - [aux_sym_preproc_ifdef_token2] = ACTIONS(465), - [anon_sym_L_SQUOTE] = ACTIONS(467), - [anon_sym___attribute__] = ACTIONS(465), - [anon_sym_sizeof] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(467), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsigned] = ACTIONS(465), - [anon_sym_short] = ACTIONS(465), - [anon_sym_do] = ACTIONS(465), - [sym_preproc_directive] = ACTIONS(465), - [anon_sym_AMP] = ACTIONS(467), - [aux_sym_preproc_if_token1] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(467), - [anon_sym_L_DQUOTE] = ACTIONS(467), - [anon_sym_LPAREN2] = ACTIONS(467), - [sym_primitive_type] = ACTIONS(465), - [anon_sym_for] = ACTIONS(465), - [anon_sym_break] = ACTIONS(465), - [anon_sym_BANG] = ACTIONS(467), - [aux_sym_preproc_include_token1] = ACTIONS(465), - [anon_sym_DASH] = ACTIONS(465), - [anon_sym_static] = ACTIONS(465), - [anon_sym_DQUOTE] = ACTIONS(467), - [anon_sym_register] = ACTIONS(465), - [anon_sym_STAR] = ACTIONS(467), - [anon_sym_if] = ACTIONS(465), - [anon_sym_switch] = ACTIONS(465), - [anon_sym_enum] = ACTIONS(465), - [sym_false] = ACTIONS(465), - [anon_sym_return] = ACTIONS(465), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_SEMI] = ACTIONS(467), - [aux_sym_preproc_def_token1] = ACTIONS(465), - [anon_sym_PLUS] = ACTIONS(465), - [anon_sym_auto] = ACTIONS(465), - [anon_sym_inline] = ACTIONS(465), + [sym_identifier] = ACTIONS(2408), + [aux_sym_preproc_def_token1] = ACTIONS(2408), + [aux_sym_preproc_if_token1] = ACTIONS(2408), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2408), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2408), + [sym_preproc_directive] = ACTIONS(2408), + [anon_sym_extern] = ACTIONS(2408), + [anon_sym___attribute__] = ACTIONS(2408), + [anon_sym_RBRACE] = ACTIONS(2437), + [anon_sym_static] = ACTIONS(2408), + [anon_sym_auto] = ACTIONS(2408), + [anon_sym_register] = ACTIONS(2408), + [anon_sym_inline] = ACTIONS(2408), + [anon_sym_const] = ACTIONS(2408), + [anon_sym_volatile] = ACTIONS(2408), + [anon_sym_restrict] = ACTIONS(2408), + [anon_sym__Atomic] = ACTIONS(2408), + [anon_sym_signed] = ACTIONS(2408), + [anon_sym_unsigned] = ACTIONS(2408), + [anon_sym_long] = ACTIONS(2408), + [anon_sym_short] = ACTIONS(2408), + [sym_primitive_type] = ACTIONS(2408), + [anon_sym_enum] = ACTIONS(2408), + [anon_sym_struct] = ACTIONS(2408), + [anon_sym_union] = ACTIONS(2408), + [sym_comment] = ACTIONS(3), }, [791] = { - [sym_if_statement] = STATE(803), - [sym_do_statement] = STATE(803), - [sym_for_statement] = STATE(803), - [sym__expression] = STATE(1093), - [sym_comma_expression] = STATE(1094), - [sym_binary_expression] = STATE(1093), - [sym_update_expression] = STATE(1093), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(803), - [sym_return_statement] = STATE(803), - [sym_break_statement] = STATE(803), - [sym_conditional_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_cast_expression] = STATE(1093), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1093), - [sym_char_literal] = STATE(1093), - [sym_labeled_statement] = STATE(803), - [sym_while_statement] = STATE(803), - [sym_continue_statement] = STATE(803), - [sym_goto_statement] = STATE(803), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1093), - [sym_sizeof_expression] = STATE(1093), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1093), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(803), - [sym_expression_statement] = STATE(803), - [anon_sym_LBRACE] = ACTIONS(994), - [sym_true] = ACTIONS(998), - [sym_null] = ACTIONS(998), - [anon_sym_do] = ACTIONS(1000), - [anon_sym_goto] = ACTIONS(1002), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(1008), - [anon_sym_for] = ACTIONS(1010), - [anon_sym_break] = ACTIONS(1012), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(1014), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(1016), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(1018), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(998), - [anon_sym_return] = ACTIONS(1020), - [anon_sym_while] = ACTIONS(1022), - [anon_sym_continue] = ACTIONS(1024), - [anon_sym_SEMI] = ACTIONS(1026), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_identifier] = ACTIONS(2408), + [aux_sym_preproc_def_token1] = ACTIONS(2408), + [aux_sym_preproc_if_token1] = ACTIONS(2408), + [aux_sym_preproc_if_token2] = ACTIONS(2408), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2408), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2408), + [sym_preproc_directive] = ACTIONS(2408), + [anon_sym_extern] = ACTIONS(2408), + [anon_sym___attribute__] = ACTIONS(2408), + [anon_sym_static] = ACTIONS(2408), + [anon_sym_auto] = ACTIONS(2408), + [anon_sym_register] = ACTIONS(2408), + [anon_sym_inline] = ACTIONS(2408), + [anon_sym_const] = ACTIONS(2408), + [anon_sym_volatile] = ACTIONS(2408), + [anon_sym_restrict] = ACTIONS(2408), + [anon_sym__Atomic] = ACTIONS(2408), + [anon_sym_signed] = ACTIONS(2408), + [anon_sym_unsigned] = ACTIONS(2408), + [anon_sym_long] = ACTIONS(2408), + [anon_sym_short] = ACTIONS(2408), + [sym_primitive_type] = ACTIONS(2408), + [anon_sym_enum] = ACTIONS(2408), + [anon_sym_struct] = ACTIONS(2408), + [anon_sym_union] = ACTIONS(2408), + [sym_comment] = ACTIONS(3), }, [792] = { - [anon_sym_LBRACE] = ACTIONS(489), - [anon_sym_case] = ACTIONS(487), - [sym_true] = ACTIONS(487), - [sym_null] = ACTIONS(487), - [anon_sym_do] = ACTIONS(487), - [anon_sym_goto] = ACTIONS(487), - [anon_sym_AMP] = ACTIONS(489), - [anon_sym_TILDE] = ACTIONS(489), - [anon_sym_L_DQUOTE] = ACTIONS(489), - [anon_sym_LPAREN2] = ACTIONS(489), - [anon_sym_RBRACE] = ACTIONS(489), - [anon_sym_DASH_DASH] = ACTIONS(489), - [anon_sym_default] = ACTIONS(487), - [anon_sym_else] = ACTIONS(487), - [sym_identifier] = ACTIONS(487), - [anon_sym_for] = ACTIONS(487), - [anon_sym_break] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(489), - [anon_sym_DASH] = ACTIONS(487), - [sym_number_literal] = ACTIONS(489), - [anon_sym_DQUOTE] = ACTIONS(489), - [anon_sym_SQUOTE] = ACTIONS(489), - [anon_sym_STAR] = ACTIONS(489), - [anon_sym_if] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(489), - [anon_sym_switch] = ACTIONS(487), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(487), - [anon_sym_return] = ACTIONS(487), - [anon_sym_while] = ACTIONS(487), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(489), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_L_SQUOTE] = ACTIONS(489), - [anon_sym_sizeof] = ACTIONS(487), + [sym_identifier] = ACTIONS(2412), + [aux_sym_preproc_def_token1] = ACTIONS(2412), + [aux_sym_preproc_if_token1] = ACTIONS(2412), + [aux_sym_preproc_if_token2] = ACTIONS(2412), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2412), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2412), + [sym_preproc_directive] = ACTIONS(2412), + [anon_sym_extern] = ACTIONS(2412), + [anon_sym___attribute__] = ACTIONS(2412), + [anon_sym_static] = ACTIONS(2412), + [anon_sym_auto] = ACTIONS(2412), + [anon_sym_register] = ACTIONS(2412), + [anon_sym_inline] = ACTIONS(2412), + [anon_sym_const] = ACTIONS(2412), + [anon_sym_volatile] = ACTIONS(2412), + [anon_sym_restrict] = ACTIONS(2412), + [anon_sym__Atomic] = ACTIONS(2412), + [anon_sym_signed] = ACTIONS(2412), + [anon_sym_unsigned] = ACTIONS(2412), + [anon_sym_long] = ACTIONS(2412), + [anon_sym_short] = ACTIONS(2412), + [sym_primitive_type] = ACTIONS(2412), + [anon_sym_enum] = ACTIONS(2412), + [anon_sym_struct] = ACTIONS(2412), + [anon_sym_union] = ACTIONS(2412), + [sym_comment] = ACTIONS(3), }, [793] = { - [sym_if_statement] = STATE(804), - [sym_do_statement] = STATE(804), - [sym_for_statement] = STATE(804), - [sym__expression] = STATE(1093), - [sym_comma_expression] = STATE(1094), - [sym_binary_expression] = STATE(1093), - [sym_update_expression] = STATE(1093), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(804), - [sym_return_statement] = STATE(804), - [sym_break_statement] = STATE(804), - [sym_conditional_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_cast_expression] = STATE(1093), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1093), - [sym_char_literal] = STATE(1093), - [sym_labeled_statement] = STATE(804), - [sym_while_statement] = STATE(804), - [sym_continue_statement] = STATE(804), - [sym_goto_statement] = STATE(804), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1093), - [sym_sizeof_expression] = STATE(1093), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1093), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(804), - [sym_expression_statement] = STATE(804), - [anon_sym_LBRACE] = ACTIONS(994), - [sym_true] = ACTIONS(998), - [sym_null] = ACTIONS(998), - [anon_sym_do] = ACTIONS(1000), - [anon_sym_goto] = ACTIONS(1002), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(1008), - [anon_sym_for] = ACTIONS(1010), - [anon_sym_break] = ACTIONS(1012), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(1014), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(1016), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(1018), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(998), - [anon_sym_return] = ACTIONS(1020), - [anon_sym_while] = ACTIONS(1022), - [anon_sym_continue] = ACTIONS(1024), - [anon_sym_SEMI] = ACTIONS(1026), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_identifier] = ACTIONS(2400), + [aux_sym_preproc_def_token1] = ACTIONS(2400), + [aux_sym_preproc_if_token1] = ACTIONS(2400), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2400), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2400), + [sym_preproc_directive] = ACTIONS(2400), + [anon_sym_extern] = ACTIONS(2400), + [anon_sym___attribute__] = ACTIONS(2400), + [anon_sym_RBRACE] = ACTIONS(2439), + [anon_sym_static] = ACTIONS(2400), + [anon_sym_auto] = ACTIONS(2400), + [anon_sym_register] = ACTIONS(2400), + [anon_sym_inline] = ACTIONS(2400), + [anon_sym_const] = ACTIONS(2400), + [anon_sym_volatile] = ACTIONS(2400), + [anon_sym_restrict] = ACTIONS(2400), + [anon_sym__Atomic] = ACTIONS(2400), + [anon_sym_signed] = ACTIONS(2400), + [anon_sym_unsigned] = ACTIONS(2400), + [anon_sym_long] = ACTIONS(2400), + [anon_sym_short] = ACTIONS(2400), + [sym_primitive_type] = ACTIONS(2400), + [anon_sym_enum] = ACTIONS(2400), + [anon_sym_struct] = ACTIONS(2400), + [anon_sym_union] = ACTIONS(2400), + [sym_comment] = ACTIONS(3), }, [794] = { - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_case] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_null] = ACTIONS(529), - [anon_sym_do] = ACTIONS(529), - [anon_sym_goto] = ACTIONS(529), - [anon_sym_AMP] = ACTIONS(531), - [anon_sym_TILDE] = ACTIONS(531), - [anon_sym_L_DQUOTE] = ACTIONS(531), - [anon_sym_LPAREN2] = ACTIONS(531), - [anon_sym_RBRACE] = ACTIONS(531), - [anon_sym_DASH_DASH] = ACTIONS(531), - [anon_sym_default] = ACTIONS(529), - [anon_sym_else] = ACTIONS(529), - [sym_identifier] = ACTIONS(529), - [anon_sym_for] = ACTIONS(529), - [anon_sym_break] = ACTIONS(529), - [anon_sym_BANG] = ACTIONS(531), - [anon_sym_DASH] = ACTIONS(529), - [sym_number_literal] = ACTIONS(531), - [anon_sym_DQUOTE] = ACTIONS(531), - [anon_sym_SQUOTE] = ACTIONS(531), - [anon_sym_STAR] = ACTIONS(531), - [anon_sym_if] = ACTIONS(529), - [anon_sym_PLUS_PLUS] = ACTIONS(531), - [anon_sym_switch] = ACTIONS(529), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(529), - [anon_sym_return] = ACTIONS(529), - [anon_sym_while] = ACTIONS(529), - [anon_sym_continue] = ACTIONS(529), - [anon_sym_SEMI] = ACTIONS(531), - [anon_sym_PLUS] = ACTIONS(529), - [anon_sym_L_SQUOTE] = ACTIONS(531), - [anon_sym_sizeof] = ACTIONS(529), + [sym_identifier] = ACTIONS(1125), + [aux_sym_preproc_def_token1] = ACTIONS(1125), + [aux_sym_preproc_if_token1] = ACTIONS(1125), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1125), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1125), + [sym_preproc_directive] = ACTIONS(1125), + [anon_sym_extern] = ACTIONS(1125), + [anon_sym___attribute__] = ACTIONS(1125), + [anon_sym_RBRACE] = ACTIONS(1127), + [anon_sym_static] = ACTIONS(1125), + [anon_sym_auto] = ACTIONS(1125), + [anon_sym_register] = ACTIONS(1125), + [anon_sym_inline] = ACTIONS(1125), + [anon_sym_const] = ACTIONS(1125), + [anon_sym_volatile] = ACTIONS(1125), + [anon_sym_restrict] = ACTIONS(1125), + [anon_sym__Atomic] = ACTIONS(1125), + [anon_sym_signed] = ACTIONS(1125), + [anon_sym_unsigned] = ACTIONS(1125), + [anon_sym_long] = ACTIONS(1125), + [anon_sym_short] = ACTIONS(1125), + [sym_primitive_type] = ACTIONS(1125), + [anon_sym_enum] = ACTIONS(1125), + [anon_sym_struct] = ACTIONS(1125), + [anon_sym_union] = ACTIONS(1125), + [sym_comment] = ACTIONS(3), }, [795] = { - [sym_if_statement] = STATE(807), - [sym_do_statement] = STATE(807), - [sym_for_statement] = STATE(807), - [sym__expression] = STATE(1093), - [sym_comma_expression] = STATE(1094), - [sym_binary_expression] = STATE(1093), - [sym_update_expression] = STATE(1093), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(807), - [sym_return_statement] = STATE(807), - [sym_break_statement] = STATE(807), - [sym_conditional_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_cast_expression] = STATE(1093), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1093), - [sym_char_literal] = STATE(1093), - [sym_labeled_statement] = STATE(807), - [sym_while_statement] = STATE(807), - [sym_continue_statement] = STATE(807), - [sym_goto_statement] = STATE(807), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1093), - [sym_sizeof_expression] = STATE(1093), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1093), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(807), - [sym_expression_statement] = STATE(807), - [anon_sym_LBRACE] = ACTIONS(994), - [sym_true] = ACTIONS(998), - [sym_null] = ACTIONS(998), - [anon_sym_do] = ACTIONS(1000), - [anon_sym_goto] = ACTIONS(1002), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(1008), - [anon_sym_for] = ACTIONS(1010), - [anon_sym_break] = ACTIONS(1012), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(1014), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(1016), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(1018), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(998), - [anon_sym_return] = ACTIONS(1020), - [anon_sym_while] = ACTIONS(1022), - [anon_sym_continue] = ACTIONS(1024), - [anon_sym_SEMI] = ACTIONS(1026), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_identifier] = ACTIONS(1141), + [aux_sym_preproc_def_token1] = ACTIONS(1141), + [aux_sym_preproc_if_token1] = ACTIONS(1141), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1141), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1141), + [sym_preproc_directive] = ACTIONS(1141), + [anon_sym_extern] = ACTIONS(1141), + [anon_sym___attribute__] = ACTIONS(1141), + [anon_sym_RBRACE] = ACTIONS(1143), + [anon_sym_static] = ACTIONS(1141), + [anon_sym_auto] = ACTIONS(1141), + [anon_sym_register] = ACTIONS(1141), + [anon_sym_inline] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_volatile] = ACTIONS(1141), + [anon_sym_restrict] = ACTIONS(1141), + [anon_sym__Atomic] = ACTIONS(1141), + [anon_sym_signed] = ACTIONS(1141), + [anon_sym_unsigned] = ACTIONS(1141), + [anon_sym_long] = ACTIONS(1141), + [anon_sym_short] = ACTIONS(1141), + [sym_primitive_type] = ACTIONS(1141), + [anon_sym_enum] = ACTIONS(1141), + [anon_sym_struct] = ACTIONS(1141), + [anon_sym_union] = ACTIONS(1141), + [sym_comment] = ACTIONS(3), }, [796] = { - [anon_sym_LBRACE] = ACTIONS(537), - [anon_sym_case] = ACTIONS(535), - [sym_true] = ACTIONS(535), - [sym_null] = ACTIONS(535), - [anon_sym_do] = ACTIONS(535), - [anon_sym_goto] = ACTIONS(535), - [anon_sym_AMP] = ACTIONS(537), - [anon_sym_TILDE] = ACTIONS(537), - [anon_sym_L_DQUOTE] = ACTIONS(537), - [anon_sym_LPAREN2] = ACTIONS(537), - [anon_sym_RBRACE] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(537), - [anon_sym_default] = ACTIONS(535), - [anon_sym_else] = ACTIONS(535), - [sym_identifier] = ACTIONS(535), - [anon_sym_for] = ACTIONS(535), - [anon_sym_break] = ACTIONS(535), - [anon_sym_BANG] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(535), - [sym_number_literal] = ACTIONS(537), - [anon_sym_DQUOTE] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(537), - [anon_sym_STAR] = ACTIONS(537), - [anon_sym_if] = ACTIONS(535), - [anon_sym_PLUS_PLUS] = ACTIONS(537), - [anon_sym_switch] = ACTIONS(535), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(535), - [anon_sym_return] = ACTIONS(535), - [anon_sym_while] = ACTIONS(535), - [anon_sym_continue] = ACTIONS(535), - [anon_sym_SEMI] = ACTIONS(537), - [anon_sym_PLUS] = ACTIONS(535), - [anon_sym_L_SQUOTE] = ACTIONS(537), - [anon_sym_sizeof] = ACTIONS(535), + [sym_identifier] = ACTIONS(2402), + [aux_sym_preproc_def_token1] = ACTIONS(2402), + [aux_sym_preproc_if_token1] = ACTIONS(2402), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2402), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2402), + [sym_preproc_directive] = ACTIONS(2402), + [anon_sym_extern] = ACTIONS(2402), + [anon_sym___attribute__] = ACTIONS(2402), + [anon_sym_RBRACE] = ACTIONS(2441), + [anon_sym_static] = ACTIONS(2402), + [anon_sym_auto] = ACTIONS(2402), + [anon_sym_register] = ACTIONS(2402), + [anon_sym_inline] = ACTIONS(2402), + [anon_sym_const] = ACTIONS(2402), + [anon_sym_volatile] = ACTIONS(2402), + [anon_sym_restrict] = ACTIONS(2402), + [anon_sym__Atomic] = ACTIONS(2402), + [anon_sym_signed] = ACTIONS(2402), + [anon_sym_unsigned] = ACTIONS(2402), + [anon_sym_long] = ACTIONS(2402), + [anon_sym_short] = ACTIONS(2402), + [sym_primitive_type] = ACTIONS(2402), + [anon_sym_enum] = ACTIONS(2402), + [anon_sym_struct] = ACTIONS(2402), + [anon_sym_union] = ACTIONS(2402), + [sym_comment] = ACTIONS(3), }, [797] = { - [anon_sym_LBRACE] = ACTIONS(607), - [anon_sym_case] = ACTIONS(605), - [sym_true] = ACTIONS(605), - [sym_null] = ACTIONS(605), - [anon_sym_do] = ACTIONS(605), - [anon_sym_goto] = ACTIONS(605), - [anon_sym_AMP] = ACTIONS(607), - [anon_sym_TILDE] = ACTIONS(607), - [anon_sym_L_DQUOTE] = ACTIONS(607), - [anon_sym_LPAREN2] = ACTIONS(607), - [anon_sym_RBRACE] = ACTIONS(607), - [anon_sym_DASH_DASH] = ACTIONS(607), - [anon_sym_default] = ACTIONS(605), - [anon_sym_else] = ACTIONS(605), - [sym_identifier] = ACTIONS(605), - [anon_sym_for] = ACTIONS(605), - [anon_sym_break] = ACTIONS(605), - [anon_sym_BANG] = ACTIONS(607), - [anon_sym_DASH] = ACTIONS(605), - [sym_number_literal] = ACTIONS(607), - [anon_sym_DQUOTE] = ACTIONS(607), - [anon_sym_SQUOTE] = ACTIONS(607), - [anon_sym_STAR] = ACTIONS(607), - [anon_sym_if] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(607), - [anon_sym_switch] = ACTIONS(605), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(605), - [anon_sym_return] = ACTIONS(605), - [anon_sym_while] = ACTIONS(605), - [anon_sym_continue] = ACTIONS(605), - [anon_sym_SEMI] = ACTIONS(607), - [anon_sym_PLUS] = ACTIONS(605), - [anon_sym_L_SQUOTE] = ACTIONS(607), - [anon_sym_sizeof] = ACTIONS(605), + [sym_identifier] = ACTIONS(2382), + [aux_sym_preproc_def_token1] = ACTIONS(2382), + [aux_sym_preproc_if_token1] = ACTIONS(2382), + [aux_sym_preproc_if_token2] = ACTIONS(2382), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2382), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2382), + [sym_preproc_directive] = ACTIONS(2382), + [anon_sym_extern] = ACTIONS(2382), + [anon_sym___attribute__] = ACTIONS(2382), + [anon_sym_static] = ACTIONS(2382), + [anon_sym_auto] = ACTIONS(2382), + [anon_sym_register] = ACTIONS(2382), + [anon_sym_inline] = ACTIONS(2382), + [anon_sym_const] = ACTIONS(2382), + [anon_sym_volatile] = ACTIONS(2382), + [anon_sym_restrict] = ACTIONS(2382), + [anon_sym__Atomic] = ACTIONS(2382), + [anon_sym_signed] = ACTIONS(2382), + [anon_sym_unsigned] = ACTIONS(2382), + [anon_sym_long] = ACTIONS(2382), + [anon_sym_short] = ACTIONS(2382), + [sym_primitive_type] = ACTIONS(2382), + [anon_sym_enum] = ACTIONS(2382), + [anon_sym_struct] = ACTIONS(2382), + [anon_sym_union] = ACTIONS(2382), + [sym_comment] = ACTIONS(3), }, [798] = { - [anon_sym_LBRACE] = ACTIONS(794), - [anon_sym_case] = ACTIONS(792), - [sym_true] = ACTIONS(792), - [sym_null] = ACTIONS(792), - [anon_sym_do] = ACTIONS(792), - [anon_sym_goto] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(794), - [anon_sym_TILDE] = ACTIONS(794), - [anon_sym_L_DQUOTE] = ACTIONS(794), - [anon_sym_LPAREN2] = ACTIONS(794), - [anon_sym_RBRACE] = ACTIONS(794), - [anon_sym_DASH_DASH] = ACTIONS(794), - [anon_sym_default] = ACTIONS(792), - [anon_sym_else] = ACTIONS(792), - [sym_identifier] = ACTIONS(792), - [anon_sym_for] = ACTIONS(792), - [anon_sym_break] = ACTIONS(792), - [anon_sym_BANG] = ACTIONS(794), - [anon_sym_DASH] = ACTIONS(792), - [sym_number_literal] = ACTIONS(794), - [anon_sym_DQUOTE] = ACTIONS(794), - [anon_sym_SQUOTE] = ACTIONS(794), - [anon_sym_STAR] = ACTIONS(794), - [anon_sym_if] = ACTIONS(792), - [anon_sym_PLUS_PLUS] = ACTIONS(794), - [anon_sym_switch] = ACTIONS(792), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(792), - [anon_sym_return] = ACTIONS(792), - [anon_sym_while] = ACTIONS(792), - [anon_sym_continue] = ACTIONS(792), - [anon_sym_SEMI] = ACTIONS(794), - [anon_sym_PLUS] = ACTIONS(792), - [anon_sym_L_SQUOTE] = ACTIONS(794), - [anon_sym_sizeof] = ACTIONS(792), + [sym_identifier] = ACTIONS(2384), + [aux_sym_preproc_def_token1] = ACTIONS(2384), + [aux_sym_preproc_if_token1] = ACTIONS(2384), + [aux_sym_preproc_if_token2] = ACTIONS(2384), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2384), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2384), + [sym_preproc_directive] = ACTIONS(2384), + [anon_sym_extern] = ACTIONS(2384), + [anon_sym___attribute__] = ACTIONS(2384), + [anon_sym_static] = ACTIONS(2384), + [anon_sym_auto] = ACTIONS(2384), + [anon_sym_register] = ACTIONS(2384), + [anon_sym_inline] = ACTIONS(2384), + [anon_sym_const] = ACTIONS(2384), + [anon_sym_volatile] = ACTIONS(2384), + [anon_sym_restrict] = ACTIONS(2384), + [anon_sym__Atomic] = ACTIONS(2384), + [anon_sym_signed] = ACTIONS(2384), + [anon_sym_unsigned] = ACTIONS(2384), + [anon_sym_long] = ACTIONS(2384), + [anon_sym_short] = ACTIONS(2384), + [sym_primitive_type] = ACTIONS(2384), + [anon_sym_enum] = ACTIONS(2384), + [anon_sym_struct] = ACTIONS(2384), + [anon_sym_union] = ACTIONS(2384), + [sym_comment] = ACTIONS(3), }, [799] = { - [anon_sym_LBRACE] = ACTIONS(824), - [anon_sym_case] = ACTIONS(822), - [sym_true] = ACTIONS(822), - [sym_null] = ACTIONS(822), - [anon_sym_do] = ACTIONS(822), - [anon_sym_goto] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(824), - [anon_sym_TILDE] = ACTIONS(824), - [anon_sym_L_DQUOTE] = ACTIONS(824), - [anon_sym_LPAREN2] = ACTIONS(824), - [anon_sym_RBRACE] = ACTIONS(824), - [anon_sym_DASH_DASH] = ACTIONS(824), - [anon_sym_default] = ACTIONS(822), - [anon_sym_else] = ACTIONS(822), - [sym_identifier] = ACTIONS(822), - [anon_sym_for] = ACTIONS(822), - [anon_sym_break] = ACTIONS(822), - [anon_sym_BANG] = ACTIONS(824), - [anon_sym_DASH] = ACTIONS(822), - [sym_number_literal] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(824), - [anon_sym_SQUOTE] = ACTIONS(824), - [anon_sym_STAR] = ACTIONS(824), - [anon_sym_if] = ACTIONS(822), - [anon_sym_PLUS_PLUS] = ACTIONS(824), - [anon_sym_switch] = ACTIONS(822), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(822), - [anon_sym_return] = ACTIONS(822), - [anon_sym_while] = ACTIONS(822), - [anon_sym_continue] = ACTIONS(822), - [anon_sym_SEMI] = ACTIONS(824), - [anon_sym_PLUS] = ACTIONS(822), - [anon_sym_L_SQUOTE] = ACTIONS(824), - [anon_sym_sizeof] = ACTIONS(822), + [sym_identifier] = ACTIONS(2386), + [aux_sym_preproc_def_token1] = ACTIONS(2386), + [aux_sym_preproc_if_token1] = ACTIONS(2386), + [aux_sym_preproc_if_token2] = ACTIONS(2386), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2386), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2386), + [sym_preproc_directive] = ACTIONS(2386), + [anon_sym_extern] = ACTIONS(2386), + [anon_sym___attribute__] = ACTIONS(2386), + [anon_sym_static] = ACTIONS(2386), + [anon_sym_auto] = ACTIONS(2386), + [anon_sym_register] = ACTIONS(2386), + [anon_sym_inline] = ACTIONS(2386), + [anon_sym_const] = ACTIONS(2386), + [anon_sym_volatile] = ACTIONS(2386), + [anon_sym_restrict] = ACTIONS(2386), + [anon_sym__Atomic] = ACTIONS(2386), + [anon_sym_signed] = ACTIONS(2386), + [anon_sym_unsigned] = ACTIONS(2386), + [anon_sym_long] = ACTIONS(2386), + [anon_sym_short] = ACTIONS(2386), + [sym_primitive_type] = ACTIONS(2386), + [anon_sym_enum] = ACTIONS(2386), + [anon_sym_struct] = ACTIONS(2386), + [anon_sym_union] = ACTIONS(2386), + [sym_comment] = ACTIONS(3), }, [800] = { - [sym_true] = ACTIONS(826), - [anon_sym_restrict] = ACTIONS(826), - [sym_null] = ACTIONS(826), - [anon_sym_goto] = ACTIONS(826), - [aux_sym_preproc_if_token2] = ACTIONS(826), - [anon_sym_const] = ACTIONS(826), - [anon_sym_typedef] = ACTIONS(826), - [anon_sym_DASH_DASH] = ACTIONS(828), - [anon_sym__Atomic] = ACTIONS(826), - [sym_identifier] = ACTIONS(826), - [aux_sym_preproc_ifdef_token1] = ACTIONS(826), - [sym_number_literal] = ACTIONS(828), - [anon_sym_volatile] = ACTIONS(826), - [anon_sym_SQUOTE] = ACTIONS(828), - [anon_sym_extern] = ACTIONS(826), - [anon_sym_PLUS_PLUS] = ACTIONS(828), - [anon_sym_struct] = ACTIONS(826), - [anon_sym_signed] = ACTIONS(826), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(826), - [anon_sym_while] = ACTIONS(826), - [aux_sym_preproc_ifdef_token2] = ACTIONS(826), - [anon_sym_L_SQUOTE] = ACTIONS(828), - [anon_sym___attribute__] = ACTIONS(826), - [anon_sym_sizeof] = ACTIONS(826), - [anon_sym_LBRACE] = ACTIONS(828), - [anon_sym_union] = ACTIONS(826), - [anon_sym_unsigned] = ACTIONS(826), - [anon_sym_short] = ACTIONS(826), - [anon_sym_do] = ACTIONS(826), - [sym_preproc_directive] = ACTIONS(826), - [anon_sym_AMP] = ACTIONS(828), - [aux_sym_preproc_if_token1] = ACTIONS(826), - [anon_sym_TILDE] = ACTIONS(828), - [anon_sym_L_DQUOTE] = ACTIONS(828), - [anon_sym_LPAREN2] = ACTIONS(828), - [sym_primitive_type] = ACTIONS(826), - [anon_sym_for] = ACTIONS(826), - [anon_sym_break] = ACTIONS(826), - [anon_sym_BANG] = ACTIONS(828), - [aux_sym_preproc_include_token1] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_static] = ACTIONS(826), - [anon_sym_DQUOTE] = ACTIONS(828), - [anon_sym_register] = ACTIONS(826), - [anon_sym_STAR] = ACTIONS(828), - [anon_sym_if] = ACTIONS(826), - [anon_sym_switch] = ACTIONS(826), - [anon_sym_enum] = ACTIONS(826), - [sym_false] = ACTIONS(826), - [anon_sym_return] = ACTIONS(826), - [anon_sym_continue] = ACTIONS(826), - [anon_sym_SEMI] = ACTIONS(828), - [aux_sym_preproc_def_token1] = ACTIONS(826), - [anon_sym_PLUS] = ACTIONS(826), - [anon_sym_auto] = ACTIONS(826), - [anon_sym_inline] = ACTIONS(826), + [sym_identifier] = ACTIONS(2404), + [aux_sym_preproc_def_token1] = ACTIONS(2404), + [aux_sym_preproc_if_token1] = ACTIONS(2404), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2404), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2404), + [sym_preproc_directive] = ACTIONS(2404), + [anon_sym_extern] = ACTIONS(2404), + [anon_sym___attribute__] = ACTIONS(2404), + [anon_sym_RBRACE] = ACTIONS(2443), + [anon_sym_static] = ACTIONS(2404), + [anon_sym_auto] = ACTIONS(2404), + [anon_sym_register] = ACTIONS(2404), + [anon_sym_inline] = ACTIONS(2404), + [anon_sym_const] = ACTIONS(2404), + [anon_sym_volatile] = ACTIONS(2404), + [anon_sym_restrict] = ACTIONS(2404), + [anon_sym__Atomic] = ACTIONS(2404), + [anon_sym_signed] = ACTIONS(2404), + [anon_sym_unsigned] = ACTIONS(2404), + [anon_sym_long] = ACTIONS(2404), + [anon_sym_short] = ACTIONS(2404), + [sym_primitive_type] = ACTIONS(2404), + [anon_sym_enum] = ACTIONS(2404), + [anon_sym_struct] = ACTIONS(2404), + [anon_sym_union] = ACTIONS(2404), + [sym_comment] = ACTIONS(3), }, [801] = { - [sym_true] = ACTIONS(892), - [anon_sym_restrict] = ACTIONS(892), - [sym_null] = ACTIONS(892), - [anon_sym_goto] = ACTIONS(892), - [aux_sym_preproc_if_token2] = ACTIONS(892), - [anon_sym_const] = ACTIONS(892), - [anon_sym_typedef] = ACTIONS(892), - [anon_sym_DASH_DASH] = ACTIONS(894), - [anon_sym__Atomic] = ACTIONS(892), - [sym_identifier] = ACTIONS(892), - [aux_sym_preproc_ifdef_token1] = ACTIONS(892), - [sym_number_literal] = ACTIONS(894), - [anon_sym_volatile] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(894), - [anon_sym_extern] = ACTIONS(892), - [anon_sym_PLUS_PLUS] = ACTIONS(894), - [anon_sym_struct] = ACTIONS(892), - [anon_sym_signed] = ACTIONS(892), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(892), - [anon_sym_while] = ACTIONS(892), - [aux_sym_preproc_ifdef_token2] = ACTIONS(892), - [aux_sym_preproc_elif_token1] = ACTIONS(892), - [anon_sym_L_SQUOTE] = ACTIONS(894), - [anon_sym___attribute__] = ACTIONS(892), - [anon_sym_sizeof] = ACTIONS(892), - [anon_sym_LBRACE] = ACTIONS(894), - [anon_sym_union] = ACTIONS(892), - [anon_sym_unsigned] = ACTIONS(892), - [anon_sym_short] = ACTIONS(892), - [anon_sym_do] = ACTIONS(892), - [aux_sym_preproc_else_token1] = ACTIONS(892), - [sym_preproc_directive] = ACTIONS(892), - [anon_sym_AMP] = ACTIONS(894), - [aux_sym_preproc_if_token1] = ACTIONS(892), - [anon_sym_TILDE] = ACTIONS(894), - [anon_sym_L_DQUOTE] = ACTIONS(894), - [anon_sym_LPAREN2] = ACTIONS(894), - [anon_sym_else] = ACTIONS(892), - [sym_primitive_type] = ACTIONS(892), - [anon_sym_for] = ACTIONS(892), - [anon_sym_break] = ACTIONS(892), - [anon_sym_BANG] = ACTIONS(894), - [aux_sym_preproc_include_token1] = ACTIONS(892), - [anon_sym_DASH] = ACTIONS(892), - [anon_sym_static] = ACTIONS(892), - [anon_sym_DQUOTE] = ACTIONS(894), - [anon_sym_register] = ACTIONS(892), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_if] = ACTIONS(892), - [anon_sym_switch] = ACTIONS(892), - [anon_sym_enum] = ACTIONS(892), - [sym_false] = ACTIONS(892), - [anon_sym_return] = ACTIONS(892), - [anon_sym_continue] = ACTIONS(892), - [anon_sym_SEMI] = ACTIONS(894), - [aux_sym_preproc_def_token1] = ACTIONS(892), - [anon_sym_PLUS] = ACTIONS(892), - [anon_sym_auto] = ACTIONS(892), - [anon_sym_inline] = ACTIONS(892), + [sym_identifier] = ACTIONS(2382), + [aux_sym_preproc_def_token1] = ACTIONS(2382), + [aux_sym_preproc_if_token1] = ACTIONS(2382), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2382), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2382), + [sym_preproc_directive] = ACTIONS(2382), + [anon_sym_extern] = ACTIONS(2382), + [anon_sym___attribute__] = ACTIONS(2382), + [anon_sym_RBRACE] = ACTIONS(2445), + [anon_sym_static] = ACTIONS(2382), + [anon_sym_auto] = ACTIONS(2382), + [anon_sym_register] = ACTIONS(2382), + [anon_sym_inline] = ACTIONS(2382), + [anon_sym_const] = ACTIONS(2382), + [anon_sym_volatile] = ACTIONS(2382), + [anon_sym_restrict] = ACTIONS(2382), + [anon_sym__Atomic] = ACTIONS(2382), + [anon_sym_signed] = ACTIONS(2382), + [anon_sym_unsigned] = ACTIONS(2382), + [anon_sym_long] = ACTIONS(2382), + [anon_sym_short] = ACTIONS(2382), + [sym_primitive_type] = ACTIONS(2382), + [anon_sym_enum] = ACTIONS(2382), + [anon_sym_struct] = ACTIONS(2382), + [anon_sym_union] = ACTIONS(2382), + [sym_comment] = ACTIONS(3), }, [802] = { - [sym_true] = ACTIONS(937), - [anon_sym_restrict] = ACTIONS(937), - [sym_null] = ACTIONS(937), - [anon_sym_goto] = ACTIONS(937), - [aux_sym_preproc_if_token2] = ACTIONS(937), - [anon_sym_const] = ACTIONS(937), - [anon_sym_typedef] = ACTIONS(937), - [anon_sym_DASH_DASH] = ACTIONS(939), - [anon_sym__Atomic] = ACTIONS(937), - [sym_identifier] = ACTIONS(937), - [aux_sym_preproc_ifdef_token1] = ACTIONS(937), - [sym_number_literal] = ACTIONS(939), - [anon_sym_volatile] = ACTIONS(937), - [anon_sym_SQUOTE] = ACTIONS(939), - [anon_sym_extern] = ACTIONS(937), - [anon_sym_PLUS_PLUS] = ACTIONS(939), - [anon_sym_struct] = ACTIONS(937), - [anon_sym_signed] = ACTIONS(937), + [sym_identifier] = ACTIONS(2390), + [aux_sym_preproc_def_token1] = ACTIONS(2390), + [aux_sym_preproc_if_token1] = ACTIONS(2390), + [aux_sym_preproc_if_token2] = ACTIONS(2390), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2390), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2390), + [sym_preproc_directive] = ACTIONS(2390), + [anon_sym_extern] = ACTIONS(2390), + [anon_sym___attribute__] = ACTIONS(2390), + [anon_sym_static] = ACTIONS(2390), + [anon_sym_auto] = ACTIONS(2390), + [anon_sym_register] = ACTIONS(2390), + [anon_sym_inline] = ACTIONS(2390), + [anon_sym_const] = ACTIONS(2390), + [anon_sym_volatile] = ACTIONS(2390), + [anon_sym_restrict] = ACTIONS(2390), + [anon_sym__Atomic] = ACTIONS(2390), + [anon_sym_signed] = ACTIONS(2390), + [anon_sym_unsigned] = ACTIONS(2390), + [anon_sym_long] = ACTIONS(2390), + [anon_sym_short] = ACTIONS(2390), + [sym_primitive_type] = ACTIONS(2390), + [anon_sym_enum] = ACTIONS(2390), + [anon_sym_struct] = ACTIONS(2390), + [anon_sym_union] = ACTIONS(2390), [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(937), - [anon_sym_while] = ACTIONS(937), - [aux_sym_preproc_ifdef_token2] = ACTIONS(937), - [anon_sym_L_SQUOTE] = ACTIONS(939), - [anon_sym___attribute__] = ACTIONS(937), - [anon_sym_sizeof] = ACTIONS(937), - [anon_sym_LBRACE] = ACTIONS(939), - [anon_sym_union] = ACTIONS(937), - [anon_sym_unsigned] = ACTIONS(937), - [anon_sym_short] = ACTIONS(937), - [anon_sym_do] = ACTIONS(937), - [sym_preproc_directive] = ACTIONS(937), - [anon_sym_AMP] = ACTIONS(939), - [aux_sym_preproc_if_token1] = ACTIONS(937), - [anon_sym_TILDE] = ACTIONS(939), - [anon_sym_L_DQUOTE] = ACTIONS(939), - [anon_sym_LPAREN2] = ACTIONS(939), - [sym_primitive_type] = ACTIONS(937), - [anon_sym_for] = ACTIONS(937), - [anon_sym_break] = ACTIONS(937), - [anon_sym_BANG] = ACTIONS(939), - [aux_sym_preproc_include_token1] = ACTIONS(937), - [anon_sym_DASH] = ACTIONS(937), - [anon_sym_static] = ACTIONS(937), - [anon_sym_DQUOTE] = ACTIONS(939), - [anon_sym_register] = ACTIONS(937), - [anon_sym_STAR] = ACTIONS(939), - [anon_sym_if] = ACTIONS(937), - [anon_sym_switch] = ACTIONS(937), - [anon_sym_enum] = ACTIONS(937), - [sym_false] = ACTIONS(937), - [anon_sym_return] = ACTIONS(937), - [anon_sym_continue] = ACTIONS(937), - [anon_sym_SEMI] = ACTIONS(939), - [aux_sym_preproc_def_token1] = ACTIONS(937), - [anon_sym_PLUS] = ACTIONS(937), - [anon_sym_auto] = ACTIONS(937), - [anon_sym_inline] = ACTIONS(937), }, [803] = { - [anon_sym_LBRACE] = ACTIONS(952), - [anon_sym_case] = ACTIONS(950), - [sym_true] = ACTIONS(950), - [sym_null] = ACTIONS(950), - [anon_sym_do] = ACTIONS(950), - [anon_sym_goto] = ACTIONS(950), - [anon_sym_AMP] = ACTIONS(952), - [anon_sym_TILDE] = ACTIONS(952), - [anon_sym_L_DQUOTE] = ACTIONS(952), - [anon_sym_LPAREN2] = ACTIONS(952), - [anon_sym_RBRACE] = ACTIONS(952), - [anon_sym_DASH_DASH] = ACTIONS(952), - [anon_sym_default] = ACTIONS(950), - [anon_sym_else] = ACTIONS(950), - [sym_identifier] = ACTIONS(950), - [anon_sym_for] = ACTIONS(950), - [anon_sym_break] = ACTIONS(950), - [anon_sym_BANG] = ACTIONS(952), - [anon_sym_DASH] = ACTIONS(950), - [sym_number_literal] = ACTIONS(952), - [anon_sym_DQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(952), - [anon_sym_STAR] = ACTIONS(952), - [anon_sym_if] = ACTIONS(950), - [anon_sym_PLUS_PLUS] = ACTIONS(952), - [anon_sym_switch] = ACTIONS(950), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(950), - [anon_sym_return] = ACTIONS(950), - [anon_sym_while] = ACTIONS(950), - [anon_sym_continue] = ACTIONS(950), - [anon_sym_SEMI] = ACTIONS(952), - [anon_sym_PLUS] = ACTIONS(950), - [anon_sym_L_SQUOTE] = ACTIONS(952), - [anon_sym_sizeof] = ACTIONS(950), + [sym_identifier] = ACTIONS(2410), + [aux_sym_preproc_def_token1] = ACTIONS(2410), + [aux_sym_preproc_if_token1] = ACTIONS(2410), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2410), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2410), + [sym_preproc_directive] = ACTIONS(2410), + [anon_sym_extern] = ACTIONS(2410), + [anon_sym___attribute__] = ACTIONS(2410), + [anon_sym_RBRACE] = ACTIONS(2447), + [anon_sym_static] = ACTIONS(2410), + [anon_sym_auto] = ACTIONS(2410), + [anon_sym_register] = ACTIONS(2410), + [anon_sym_inline] = ACTIONS(2410), + [anon_sym_const] = ACTIONS(2410), + [anon_sym_volatile] = ACTIONS(2410), + [anon_sym_restrict] = ACTIONS(2410), + [anon_sym__Atomic] = ACTIONS(2410), + [anon_sym_signed] = ACTIONS(2410), + [anon_sym_unsigned] = ACTIONS(2410), + [anon_sym_long] = ACTIONS(2410), + [anon_sym_short] = ACTIONS(2410), + [sym_primitive_type] = ACTIONS(2410), + [anon_sym_enum] = ACTIONS(2410), + [anon_sym_struct] = ACTIONS(2410), + [anon_sym_union] = ACTIONS(2410), + [sym_comment] = ACTIONS(3), }, [804] = { - [anon_sym_LBRACE] = ACTIONS(986), - [anon_sym_case] = ACTIONS(984), - [sym_true] = ACTIONS(984), - [sym_null] = ACTIONS(984), - [anon_sym_do] = ACTIONS(984), - [anon_sym_goto] = ACTIONS(984), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_TILDE] = ACTIONS(986), - [anon_sym_L_DQUOTE] = ACTIONS(986), - [anon_sym_LPAREN2] = ACTIONS(986), - [anon_sym_RBRACE] = ACTIONS(986), - [anon_sym_DASH_DASH] = ACTIONS(986), - [anon_sym_default] = ACTIONS(984), - [anon_sym_else] = ACTIONS(2445), - [sym_identifier] = ACTIONS(984), - [anon_sym_for] = ACTIONS(984), - [anon_sym_break] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(986), - [anon_sym_DASH] = ACTIONS(984), - [sym_number_literal] = ACTIONS(986), - [anon_sym_DQUOTE] = ACTIONS(986), - [anon_sym_SQUOTE] = ACTIONS(986), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_if] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(986), - [anon_sym_switch] = ACTIONS(984), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(984), - [anon_sym_return] = ACTIONS(984), - [anon_sym_while] = ACTIONS(984), - [anon_sym_continue] = ACTIONS(984), - [anon_sym_SEMI] = ACTIONS(986), - [anon_sym_PLUS] = ACTIONS(984), - [anon_sym_L_SQUOTE] = ACTIONS(986), - [anon_sym_sizeof] = ACTIONS(984), + [sym_identifier] = ACTIONS(1173), + [aux_sym_preproc_def_token1] = ACTIONS(1173), + [aux_sym_preproc_if_token1] = ACTIONS(1173), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1173), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1173), + [sym_preproc_directive] = ACTIONS(1173), + [anon_sym_extern] = ACTIONS(1173), + [anon_sym___attribute__] = ACTIONS(1173), + [anon_sym_RBRACE] = ACTIONS(1175), + [anon_sym_static] = ACTIONS(1173), + [anon_sym_auto] = ACTIONS(1173), + [anon_sym_register] = ACTIONS(1173), + [anon_sym_inline] = ACTIONS(1173), + [anon_sym_const] = ACTIONS(1173), + [anon_sym_volatile] = ACTIONS(1173), + [anon_sym_restrict] = ACTIONS(1173), + [anon_sym__Atomic] = ACTIONS(1173), + [anon_sym_signed] = ACTIONS(1173), + [anon_sym_unsigned] = ACTIONS(1173), + [anon_sym_long] = ACTIONS(1173), + [anon_sym_short] = ACTIONS(1173), + [sym_primitive_type] = ACTIONS(1173), + [anon_sym_enum] = ACTIONS(1173), + [anon_sym_struct] = ACTIONS(1173), + [anon_sym_union] = ACTIONS(1173), + [sym_comment] = ACTIONS(3), }, [805] = { - [anon_sym_LBRACE] = ACTIONS(1030), - [anon_sym_case] = ACTIONS(1028), - [sym_true] = ACTIONS(1028), - [sym_null] = ACTIONS(1028), - [anon_sym_do] = ACTIONS(1028), - [anon_sym_goto] = ACTIONS(1028), - [anon_sym_AMP] = ACTIONS(1030), - [anon_sym_TILDE] = ACTIONS(1030), - [anon_sym_L_DQUOTE] = ACTIONS(1030), - [anon_sym_LPAREN2] = ACTIONS(1030), - [anon_sym_RBRACE] = ACTIONS(1030), - [anon_sym_DASH_DASH] = ACTIONS(1030), - [anon_sym_default] = ACTIONS(1028), - [anon_sym_else] = ACTIONS(1028), - [sym_identifier] = ACTIONS(1028), - [anon_sym_for] = ACTIONS(1028), - [anon_sym_break] = ACTIONS(1028), - [anon_sym_BANG] = ACTIONS(1030), - [anon_sym_DASH] = ACTIONS(1028), - [sym_number_literal] = ACTIONS(1030), - [anon_sym_DQUOTE] = ACTIONS(1030), - [anon_sym_SQUOTE] = ACTIONS(1030), - [anon_sym_STAR] = ACTIONS(1030), - [anon_sym_if] = ACTIONS(1028), - [anon_sym_PLUS_PLUS] = ACTIONS(1030), - [anon_sym_switch] = ACTIONS(1028), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(1028), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_while] = ACTIONS(1028), - [anon_sym_continue] = ACTIONS(1028), - [anon_sym_SEMI] = ACTIONS(1030), - [anon_sym_PLUS] = ACTIONS(1028), - [anon_sym_L_SQUOTE] = ACTIONS(1030), - [anon_sym_sizeof] = ACTIONS(1028), + [sym_identifier] = ACTIONS(1125), + [aux_sym_preproc_def_token1] = ACTIONS(1125), + [aux_sym_preproc_if_token1] = ACTIONS(1125), + [aux_sym_preproc_if_token2] = ACTIONS(1125), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1125), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1125), + [sym_preproc_directive] = ACTIONS(1125), + [anon_sym_extern] = ACTIONS(1125), + [anon_sym___attribute__] = ACTIONS(1125), + [anon_sym_static] = ACTIONS(1125), + [anon_sym_auto] = ACTIONS(1125), + [anon_sym_register] = ACTIONS(1125), + [anon_sym_inline] = ACTIONS(1125), + [anon_sym_const] = ACTIONS(1125), + [anon_sym_volatile] = ACTIONS(1125), + [anon_sym_restrict] = ACTIONS(1125), + [anon_sym__Atomic] = ACTIONS(1125), + [anon_sym_signed] = ACTIONS(1125), + [anon_sym_unsigned] = ACTIONS(1125), + [anon_sym_long] = ACTIONS(1125), + [anon_sym_short] = ACTIONS(1125), + [sym_primitive_type] = ACTIONS(1125), + [anon_sym_enum] = ACTIONS(1125), + [anon_sym_struct] = ACTIONS(1125), + [anon_sym_union] = ACTIONS(1125), + [sym_comment] = ACTIONS(3), }, [806] = { - [anon_sym_LBRACE] = ACTIONS(1054), - [anon_sym_case] = ACTIONS(1052), - [sym_true] = ACTIONS(1052), - [sym_null] = ACTIONS(1052), - [anon_sym_do] = ACTIONS(1052), - [anon_sym_goto] = ACTIONS(1052), - [anon_sym_AMP] = ACTIONS(1054), - [anon_sym_TILDE] = ACTIONS(1054), - [anon_sym_L_DQUOTE] = ACTIONS(1054), - [anon_sym_LPAREN2] = ACTIONS(1054), - [anon_sym_RBRACE] = ACTIONS(1054), - [anon_sym_DASH_DASH] = ACTIONS(1054), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_else] = ACTIONS(1052), - [sym_identifier] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1052), - [anon_sym_break] = ACTIONS(1052), - [anon_sym_BANG] = ACTIONS(1054), - [anon_sym_DASH] = ACTIONS(1052), - [sym_number_literal] = ACTIONS(1054), - [anon_sym_DQUOTE] = ACTIONS(1054), - [anon_sym_SQUOTE] = ACTIONS(1054), - [anon_sym_STAR] = ACTIONS(1054), - [anon_sym_if] = ACTIONS(1052), - [anon_sym_PLUS_PLUS] = ACTIONS(1054), - [anon_sym_switch] = ACTIONS(1052), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(1052), - [anon_sym_return] = ACTIONS(1052), - [anon_sym_while] = ACTIONS(1052), - [anon_sym_continue] = ACTIONS(1052), - [anon_sym_SEMI] = ACTIONS(1054), - [anon_sym_PLUS] = ACTIONS(1052), - [anon_sym_L_SQUOTE] = ACTIONS(1054), - [anon_sym_sizeof] = ACTIONS(1052), + [sym_identifier] = 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_extern] = ACTIONS(1169), + [anon_sym___attribute__] = ACTIONS(1169), + [anon_sym_static] = ACTIONS(1169), + [anon_sym_auto] = ACTIONS(1169), + [anon_sym_register] = ACTIONS(1169), + [anon_sym_inline] = ACTIONS(1169), + [anon_sym_const] = ACTIONS(1169), + [anon_sym_volatile] = ACTIONS(1169), + [anon_sym_restrict] = ACTIONS(1169), + [anon_sym__Atomic] = ACTIONS(1169), + [anon_sym_signed] = ACTIONS(1169), + [anon_sym_unsigned] = ACTIONS(1169), + [anon_sym_long] = ACTIONS(1169), + [anon_sym_short] = ACTIONS(1169), + [sym_primitive_type] = ACTIONS(1169), + [anon_sym_enum] = ACTIONS(1169), + [anon_sym_struct] = ACTIONS(1169), + [anon_sym_union] = ACTIONS(1169), + [sym_comment] = ACTIONS(3), }, [807] = { - [anon_sym_LBRACE] = ACTIONS(1058), - [anon_sym_case] = ACTIONS(1056), - [sym_true] = ACTIONS(1056), - [sym_null] = ACTIONS(1056), - [anon_sym_do] = ACTIONS(1056), - [anon_sym_goto] = ACTIONS(1056), - [anon_sym_AMP] = ACTIONS(1058), - [anon_sym_TILDE] = ACTIONS(1058), - [anon_sym_L_DQUOTE] = ACTIONS(1058), - [anon_sym_LPAREN2] = ACTIONS(1058), - [anon_sym_RBRACE] = ACTIONS(1058), - [anon_sym_DASH_DASH] = ACTIONS(1058), - [anon_sym_default] = ACTIONS(1056), - [anon_sym_else] = ACTIONS(1056), - [sym_identifier] = ACTIONS(1056), - [anon_sym_for] = ACTIONS(1056), - [anon_sym_break] = ACTIONS(1056), - [anon_sym_BANG] = ACTIONS(1058), - [anon_sym_DASH] = ACTIONS(1056), - [sym_number_literal] = ACTIONS(1058), - [anon_sym_DQUOTE] = ACTIONS(1058), - [anon_sym_SQUOTE] = ACTIONS(1058), - [anon_sym_STAR] = ACTIONS(1058), - [anon_sym_if] = ACTIONS(1056), - [anon_sym_PLUS_PLUS] = ACTIONS(1058), - [anon_sym_switch] = ACTIONS(1056), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(1056), - [anon_sym_return] = ACTIONS(1056), - [anon_sym_while] = ACTIONS(1056), - [anon_sym_continue] = ACTIONS(1056), - [anon_sym_SEMI] = ACTIONS(1058), - [anon_sym_PLUS] = ACTIONS(1056), - [anon_sym_L_SQUOTE] = ACTIONS(1058), - [anon_sym_sizeof] = ACTIONS(1056), + [sym_identifier] = ACTIONS(2406), + [aux_sym_preproc_def_token1] = ACTIONS(2406), + [aux_sym_preproc_if_token1] = ACTIONS(2406), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2406), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2406), + [sym_preproc_directive] = ACTIONS(2406), + [anon_sym_extern] = ACTIONS(2406), + [anon_sym___attribute__] = ACTIONS(2406), + [anon_sym_RBRACE] = ACTIONS(2449), + [anon_sym_static] = ACTIONS(2406), + [anon_sym_auto] = ACTIONS(2406), + [anon_sym_register] = ACTIONS(2406), + [anon_sym_inline] = ACTIONS(2406), + [anon_sym_const] = ACTIONS(2406), + [anon_sym_volatile] = ACTIONS(2406), + [anon_sym_restrict] = ACTIONS(2406), + [anon_sym__Atomic] = ACTIONS(2406), + [anon_sym_signed] = ACTIONS(2406), + [anon_sym_unsigned] = ACTIONS(2406), + [anon_sym_long] = ACTIONS(2406), + [anon_sym_short] = ACTIONS(2406), + [sym_primitive_type] = ACTIONS(2406), + [anon_sym_enum] = ACTIONS(2406), + [anon_sym_struct] = ACTIONS(2406), + [anon_sym_union] = ACTIONS(2406), + [sym_comment] = ACTIONS(3), }, [808] = { - [sym_true] = ACTIONS(1062), - [anon_sym_restrict] = ACTIONS(1062), - [sym_null] = ACTIONS(1062), - [anon_sym_goto] = ACTIONS(1062), - [aux_sym_preproc_if_token2] = ACTIONS(1062), - [anon_sym_const] = ACTIONS(1062), - [anon_sym_typedef] = ACTIONS(1062), - [anon_sym_DASH_DASH] = ACTIONS(1064), - [anon_sym__Atomic] = ACTIONS(1062), - [sym_identifier] = ACTIONS(1062), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1062), - [sym_number_literal] = ACTIONS(1064), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_SQUOTE] = ACTIONS(1064), - [anon_sym_extern] = ACTIONS(1062), - [anon_sym_PLUS_PLUS] = ACTIONS(1064), - [anon_sym_struct] = ACTIONS(1062), - [anon_sym_signed] = ACTIONS(1062), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1062), - [anon_sym_while] = ACTIONS(1062), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1062), - [anon_sym_L_SQUOTE] = ACTIONS(1064), - [anon_sym___attribute__] = ACTIONS(1062), - [anon_sym_sizeof] = ACTIONS(1062), - [anon_sym_LBRACE] = ACTIONS(1064), - [anon_sym_union] = ACTIONS(1062), - [anon_sym_unsigned] = ACTIONS(1062), - [anon_sym_short] = ACTIONS(1062), - [anon_sym_do] = ACTIONS(1062), - [sym_preproc_directive] = ACTIONS(1062), - [anon_sym_AMP] = ACTIONS(1064), - [aux_sym_preproc_if_token1] = ACTIONS(1062), - [anon_sym_TILDE] = ACTIONS(1064), - [anon_sym_L_DQUOTE] = ACTIONS(1064), - [anon_sym_LPAREN2] = ACTIONS(1064), - [sym_primitive_type] = ACTIONS(1062), - [anon_sym_for] = ACTIONS(1062), - [anon_sym_break] = ACTIONS(1062), - [anon_sym_BANG] = ACTIONS(1064), - [aux_sym_preproc_include_token1] = ACTIONS(1062), - [anon_sym_DASH] = ACTIONS(1062), - [anon_sym_static] = ACTIONS(1062), - [anon_sym_DQUOTE] = ACTIONS(1064), - [anon_sym_register] = ACTIONS(1062), - [anon_sym_STAR] = ACTIONS(1064), - [anon_sym_if] = ACTIONS(1062), - [anon_sym_switch] = ACTIONS(1062), - [anon_sym_enum] = ACTIONS(1062), - [sym_false] = ACTIONS(1062), - [anon_sym_return] = ACTIONS(1062), - [anon_sym_continue] = ACTIONS(1062), - [anon_sym_SEMI] = ACTIONS(1064), - [aux_sym_preproc_def_token1] = ACTIONS(1062), - [anon_sym_PLUS] = ACTIONS(1062), - [anon_sym_auto] = ACTIONS(1062), - [anon_sym_inline] = ACTIONS(1062), + [sym_identifier] = ACTIONS(1133), + [aux_sym_preproc_def_token1] = ACTIONS(1133), + [aux_sym_preproc_if_token1] = ACTIONS(1133), + [aux_sym_preproc_if_token2] = ACTIONS(1133), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1133), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1133), + [sym_preproc_directive] = ACTIONS(1133), + [anon_sym_extern] = ACTIONS(1133), + [anon_sym___attribute__] = ACTIONS(1133), + [anon_sym_static] = ACTIONS(1133), + [anon_sym_auto] = ACTIONS(1133), + [anon_sym_register] = ACTIONS(1133), + [anon_sym_inline] = ACTIONS(1133), + [anon_sym_const] = ACTIONS(1133), + [anon_sym_volatile] = ACTIONS(1133), + [anon_sym_restrict] = ACTIONS(1133), + [anon_sym__Atomic] = ACTIONS(1133), + [anon_sym_signed] = ACTIONS(1133), + [anon_sym_unsigned] = ACTIONS(1133), + [anon_sym_long] = ACTIONS(1133), + [anon_sym_short] = ACTIONS(1133), + [sym_primitive_type] = ACTIONS(1133), + [anon_sym_enum] = ACTIONS(1133), + [anon_sym_struct] = ACTIONS(1133), + [anon_sym_union] = ACTIONS(1133), + [sym_comment] = ACTIONS(3), }, [809] = { - [anon_sym_LBRACE] = ACTIONS(1228), - [anon_sym_case] = ACTIONS(1226), - [sym_true] = ACTIONS(1226), - [sym_null] = ACTIONS(1226), - [anon_sym_do] = ACTIONS(1226), - [anon_sym_goto] = ACTIONS(1226), - [anon_sym_AMP] = ACTIONS(1228), - [anon_sym_TILDE] = ACTIONS(1228), - [anon_sym_L_DQUOTE] = ACTIONS(1228), - [anon_sym_LPAREN2] = ACTIONS(1228), - [anon_sym_RBRACE] = ACTIONS(1228), - [anon_sym_DASH_DASH] = ACTIONS(1228), - [anon_sym_default] = ACTIONS(1226), - [anon_sym_else] = ACTIONS(1226), - [sym_identifier] = ACTIONS(1226), - [anon_sym_for] = ACTIONS(1226), - [anon_sym_break] = ACTIONS(1226), - [anon_sym_BANG] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(1226), - [sym_number_literal] = ACTIONS(1228), - [anon_sym_DQUOTE] = ACTIONS(1228), - [anon_sym_SQUOTE] = ACTIONS(1228), - [anon_sym_STAR] = ACTIONS(1228), - [anon_sym_if] = ACTIONS(1226), - [anon_sym_PLUS_PLUS] = ACTIONS(1228), - [anon_sym_switch] = ACTIONS(1226), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(1226), - [anon_sym_return] = ACTIONS(1226), - [anon_sym_while] = ACTIONS(1226), - [anon_sym_continue] = ACTIONS(1226), - [anon_sym_SEMI] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(1226), - [anon_sym_L_SQUOTE] = ACTIONS(1228), - [anon_sym_sizeof] = ACTIONS(1226), + [sym_identifier] = ACTIONS(1141), + [aux_sym_preproc_def_token1] = ACTIONS(1141), + [aux_sym_preproc_if_token1] = ACTIONS(1141), + [aux_sym_preproc_if_token2] = ACTIONS(1141), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1141), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1141), + [sym_preproc_directive] = ACTIONS(1141), + [anon_sym_extern] = ACTIONS(1141), + [anon_sym___attribute__] = ACTIONS(1141), + [anon_sym_static] = ACTIONS(1141), + [anon_sym_auto] = ACTIONS(1141), + [anon_sym_register] = ACTIONS(1141), + [anon_sym_inline] = ACTIONS(1141), + [anon_sym_const] = ACTIONS(1141), + [anon_sym_volatile] = ACTIONS(1141), + [anon_sym_restrict] = ACTIONS(1141), + [anon_sym__Atomic] = ACTIONS(1141), + [anon_sym_signed] = ACTIONS(1141), + [anon_sym_unsigned] = ACTIONS(1141), + [anon_sym_long] = ACTIONS(1141), + [anon_sym_short] = ACTIONS(1141), + [sym_primitive_type] = ACTIONS(1141), + [anon_sym_enum] = ACTIONS(1141), + [anon_sym_struct] = ACTIONS(1141), + [anon_sym_union] = ACTIONS(1141), + [sym_comment] = ACTIONS(3), }, [810] = { - [sym_if_statement] = STATE(816), - [sym_do_statement] = STATE(816), - [sym_for_statement] = STATE(816), - [sym__expression] = STATE(1093), - [sym_comma_expression] = STATE(1094), - [sym_binary_expression] = STATE(1093), - [sym_update_expression] = STATE(1093), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(816), - [sym_return_statement] = STATE(816), - [sym_break_statement] = STATE(816), - [sym_conditional_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_cast_expression] = STATE(1093), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1093), - [sym_char_literal] = STATE(1093), - [sym_labeled_statement] = STATE(816), - [sym_while_statement] = STATE(816), - [sym_continue_statement] = STATE(816), - [sym_goto_statement] = STATE(816), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1093), - [sym_sizeof_expression] = STATE(1093), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1093), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(816), - [sym_expression_statement] = STATE(816), - [anon_sym_LBRACE] = ACTIONS(994), - [sym_true] = ACTIONS(998), - [sym_null] = ACTIONS(998), - [anon_sym_do] = ACTIONS(1000), - [anon_sym_goto] = ACTIONS(1002), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(1008), - [anon_sym_for] = ACTIONS(1010), - [anon_sym_break] = ACTIONS(1012), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(1014), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(1016), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(1018), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(998), - [anon_sym_return] = ACTIONS(1020), - [anon_sym_while] = ACTIONS(1022), - [anon_sym_continue] = ACTIONS(1024), - [anon_sym_SEMI] = ACTIONS(1026), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_identifier] = ACTIONS(1093), + [aux_sym_preproc_def_token1] = ACTIONS(1093), + [aux_sym_preproc_if_token1] = ACTIONS(1093), + [aux_sym_preproc_if_token2] = ACTIONS(1093), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1093), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1093), + [sym_preproc_directive] = ACTIONS(1093), + [anon_sym_extern] = ACTIONS(1093), + [anon_sym___attribute__] = ACTIONS(1093), + [anon_sym_static] = ACTIONS(1093), + [anon_sym_auto] = ACTIONS(1093), + [anon_sym_register] = ACTIONS(1093), + [anon_sym_inline] = ACTIONS(1093), + [anon_sym_const] = ACTIONS(1093), + [anon_sym_volatile] = ACTIONS(1093), + [anon_sym_restrict] = ACTIONS(1093), + [anon_sym__Atomic] = ACTIONS(1093), + [anon_sym_signed] = ACTIONS(1093), + [anon_sym_unsigned] = ACTIONS(1093), + [anon_sym_long] = ACTIONS(1093), + [anon_sym_short] = ACTIONS(1093), + [sym_primitive_type] = ACTIONS(1093), + [anon_sym_enum] = ACTIONS(1093), + [anon_sym_struct] = ACTIONS(1093), + [anon_sym_union] = ACTIONS(1093), + [sym_comment] = ACTIONS(3), }, [811] = { - [anon_sym_LBRACE] = ACTIONS(1382), - [anon_sym_case] = ACTIONS(1380), - [sym_true] = ACTIONS(1380), - [sym_null] = ACTIONS(1380), - [anon_sym_do] = ACTIONS(1380), - [anon_sym_goto] = ACTIONS(1380), - [anon_sym_AMP] = ACTIONS(1382), - [anon_sym_TILDE] = ACTIONS(1382), - [anon_sym_L_DQUOTE] = ACTIONS(1382), - [anon_sym_LPAREN2] = ACTIONS(1382), - [anon_sym_RBRACE] = ACTIONS(1382), - [anon_sym_DASH_DASH] = ACTIONS(1382), - [anon_sym_default] = ACTIONS(1380), - [anon_sym_else] = ACTIONS(1380), - [sym_identifier] = ACTIONS(1380), - [anon_sym_for] = ACTIONS(1380), - [anon_sym_break] = ACTIONS(1380), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_DASH] = ACTIONS(1380), - [sym_number_literal] = ACTIONS(1382), - [anon_sym_DQUOTE] = ACTIONS(1382), - [anon_sym_SQUOTE] = ACTIONS(1382), - [anon_sym_STAR] = ACTIONS(1382), - [anon_sym_if] = ACTIONS(1380), - [anon_sym_PLUS_PLUS] = ACTIONS(1382), - [anon_sym_switch] = ACTIONS(1380), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(1380), - [anon_sym_return] = ACTIONS(1380), - [anon_sym_while] = ACTIONS(1380), - [anon_sym_continue] = ACTIONS(1380), - [anon_sym_SEMI] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1380), - [anon_sym_L_SQUOTE] = ACTIONS(1382), - [anon_sym_sizeof] = ACTIONS(1380), + [sym_identifier] = ACTIONS(2388), + [aux_sym_preproc_def_token1] = ACTIONS(2388), + [aux_sym_preproc_if_token1] = ACTIONS(2388), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2388), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2388), + [sym_preproc_directive] = ACTIONS(2388), + [anon_sym_extern] = ACTIONS(2388), + [anon_sym___attribute__] = ACTIONS(2388), + [anon_sym_RBRACE] = ACTIONS(2451), + [anon_sym_static] = ACTIONS(2388), + [anon_sym_auto] = ACTIONS(2388), + [anon_sym_register] = ACTIONS(2388), + [anon_sym_inline] = ACTIONS(2388), + [anon_sym_const] = ACTIONS(2388), + [anon_sym_volatile] = ACTIONS(2388), + [anon_sym_restrict] = ACTIONS(2388), + [anon_sym__Atomic] = ACTIONS(2388), + [anon_sym_signed] = ACTIONS(2388), + [anon_sym_unsigned] = ACTIONS(2388), + [anon_sym_long] = ACTIONS(2388), + [anon_sym_short] = ACTIONS(2388), + [sym_primitive_type] = ACTIONS(2388), + [anon_sym_enum] = ACTIONS(2388), + [anon_sym_struct] = ACTIONS(2388), + [anon_sym_union] = ACTIONS(2388), + [sym_comment] = ACTIONS(3), }, [812] = { - [sym_true] = ACTIONS(1400), - [anon_sym_restrict] = ACTIONS(1400), - [sym_null] = ACTIONS(1400), - [anon_sym_goto] = ACTIONS(1400), - [aux_sym_preproc_if_token2] = ACTIONS(1400), - [anon_sym_const] = ACTIONS(1400), - [anon_sym_typedef] = ACTIONS(1400), - [anon_sym_DASH_DASH] = ACTIONS(1402), - [anon_sym__Atomic] = ACTIONS(1400), - [sym_identifier] = ACTIONS(1400), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1400), - [sym_number_literal] = ACTIONS(1402), - [anon_sym_volatile] = ACTIONS(1400), - [anon_sym_SQUOTE] = ACTIONS(1402), - [anon_sym_extern] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1402), - [anon_sym_struct] = ACTIONS(1400), - [anon_sym_signed] = ACTIONS(1400), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1400), - [anon_sym_while] = ACTIONS(1400), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1400), - [anon_sym_L_SQUOTE] = ACTIONS(1402), - [anon_sym___attribute__] = ACTIONS(1400), - [anon_sym_sizeof] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1402), - [anon_sym_union] = ACTIONS(1400), - [anon_sym_unsigned] = ACTIONS(1400), - [anon_sym_short] = ACTIONS(1400), - [anon_sym_do] = ACTIONS(1400), - [sym_preproc_directive] = ACTIONS(1400), - [anon_sym_AMP] = ACTIONS(1402), - [aux_sym_preproc_if_token1] = ACTIONS(1400), - [anon_sym_TILDE] = ACTIONS(1402), - [anon_sym_L_DQUOTE] = ACTIONS(1402), - [anon_sym_LPAREN2] = ACTIONS(1402), - [sym_primitive_type] = ACTIONS(1400), - [anon_sym_for] = ACTIONS(1400), - [anon_sym_break] = ACTIONS(1400), - [anon_sym_BANG] = ACTIONS(1402), - [aux_sym_preproc_include_token1] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_static] = ACTIONS(1400), - [anon_sym_DQUOTE] = ACTIONS(1402), - [anon_sym_register] = ACTIONS(1400), - [anon_sym_STAR] = ACTIONS(1402), - [anon_sym_if] = ACTIONS(1400), - [anon_sym_switch] = ACTIONS(1400), - [anon_sym_enum] = ACTIONS(1400), - [sym_false] = ACTIONS(1400), - [anon_sym_return] = ACTIONS(1400), - [anon_sym_continue] = ACTIONS(1400), - [anon_sym_SEMI] = ACTIONS(1402), - [aux_sym_preproc_def_token1] = ACTIONS(1400), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_auto] = ACTIONS(1400), - [anon_sym_inline] = ACTIONS(1400), + [sym_identifier] = 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_extern] = ACTIONS(1169), + [anon_sym___attribute__] = ACTIONS(1169), + [anon_sym_RBRACE] = ACTIONS(1171), + [anon_sym_static] = ACTIONS(1169), + [anon_sym_auto] = ACTIONS(1169), + [anon_sym_register] = ACTIONS(1169), + [anon_sym_inline] = ACTIONS(1169), + [anon_sym_const] = ACTIONS(1169), + [anon_sym_volatile] = ACTIONS(1169), + [anon_sym_restrict] = ACTIONS(1169), + [anon_sym__Atomic] = ACTIONS(1169), + [anon_sym_signed] = ACTIONS(1169), + [anon_sym_unsigned] = ACTIONS(1169), + [anon_sym_long] = ACTIONS(1169), + [anon_sym_short] = ACTIONS(1169), + [sym_primitive_type] = ACTIONS(1169), + [anon_sym_enum] = ACTIONS(1169), + [anon_sym_struct] = ACTIONS(1169), + [anon_sym_union] = ACTIONS(1169), + [sym_comment] = ACTIONS(3), }, [813] = { - [sym_true] = ACTIONS(1410), - [anon_sym_restrict] = ACTIONS(1410), - [sym_null] = ACTIONS(1410), - [anon_sym_goto] = ACTIONS(1410), - [aux_sym_preproc_if_token2] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1410), - [anon_sym_typedef] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1412), - [anon_sym__Atomic] = ACTIONS(1410), - [sym_identifier] = ACTIONS(1410), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1410), - [sym_number_literal] = ACTIONS(1412), - [anon_sym_volatile] = ACTIONS(1410), - [anon_sym_SQUOTE] = ACTIONS(1412), - [anon_sym_extern] = ACTIONS(1410), - [anon_sym_PLUS_PLUS] = ACTIONS(1412), - [anon_sym_struct] = ACTIONS(1410), - [anon_sym_signed] = ACTIONS(1410), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1410), - [anon_sym_while] = ACTIONS(1410), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1410), - [anon_sym_L_SQUOTE] = ACTIONS(1412), - [anon_sym___attribute__] = ACTIONS(1410), - [anon_sym_sizeof] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_union] = ACTIONS(1410), - [anon_sym_unsigned] = ACTIONS(1410), - [anon_sym_short] = ACTIONS(1410), - [anon_sym_do] = ACTIONS(1410), - [sym_preproc_directive] = ACTIONS(1410), - [anon_sym_AMP] = ACTIONS(1412), - [aux_sym_preproc_if_token1] = ACTIONS(1410), - [anon_sym_TILDE] = ACTIONS(1412), - [anon_sym_L_DQUOTE] = ACTIONS(1412), - [anon_sym_LPAREN2] = ACTIONS(1412), - [sym_primitive_type] = ACTIONS(1410), - [anon_sym_for] = ACTIONS(1410), - [anon_sym_break] = ACTIONS(1410), - [anon_sym_BANG] = ACTIONS(1412), - [aux_sym_preproc_include_token1] = ACTIONS(1410), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_static] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_register] = ACTIONS(1410), - [anon_sym_STAR] = ACTIONS(1412), - [anon_sym_if] = ACTIONS(1410), - [anon_sym_switch] = ACTIONS(1410), - [anon_sym_enum] = ACTIONS(1410), - [sym_false] = ACTIONS(1410), - [anon_sym_return] = ACTIONS(1410), - [anon_sym_continue] = ACTIONS(1410), - [anon_sym_SEMI] = ACTIONS(1412), - [aux_sym_preproc_def_token1] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_auto] = ACTIONS(1410), - [anon_sym_inline] = ACTIONS(1410), + [sym_identifier] = ACTIONS(2400), + [aux_sym_preproc_def_token1] = ACTIONS(2400), + [aux_sym_preproc_if_token1] = ACTIONS(2400), + [aux_sym_preproc_if_token2] = ACTIONS(2400), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2400), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2400), + [sym_preproc_directive] = ACTIONS(2400), + [anon_sym_extern] = ACTIONS(2400), + [anon_sym___attribute__] = ACTIONS(2400), + [anon_sym_static] = ACTIONS(2400), + [anon_sym_auto] = ACTIONS(2400), + [anon_sym_register] = ACTIONS(2400), + [anon_sym_inline] = ACTIONS(2400), + [anon_sym_const] = ACTIONS(2400), + [anon_sym_volatile] = ACTIONS(2400), + [anon_sym_restrict] = ACTIONS(2400), + [anon_sym__Atomic] = ACTIONS(2400), + [anon_sym_signed] = ACTIONS(2400), + [anon_sym_unsigned] = ACTIONS(2400), + [anon_sym_long] = ACTIONS(2400), + [anon_sym_short] = ACTIONS(2400), + [sym_primitive_type] = ACTIONS(2400), + [anon_sym_enum] = ACTIONS(2400), + [anon_sym_struct] = ACTIONS(2400), + [anon_sym_union] = ACTIONS(2400), + [sym_comment] = ACTIONS(3), }, [814] = { - [sym_if_statement] = STATE(819), - [sym_do_statement] = STATE(819), - [sym_for_statement] = STATE(819), - [sym__expression] = STATE(1093), - [sym_comma_expression] = STATE(1094), - [sym_binary_expression] = STATE(1093), - [sym_update_expression] = STATE(1093), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(819), - [sym_return_statement] = STATE(819), - [sym_break_statement] = STATE(819), - [sym_conditional_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_cast_expression] = STATE(1093), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1093), - [sym_char_literal] = STATE(1093), - [sym_labeled_statement] = STATE(819), - [sym_while_statement] = STATE(819), - [sym_continue_statement] = STATE(819), - [sym_goto_statement] = STATE(819), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1093), - [sym_sizeof_expression] = STATE(1093), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1093), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(819), - [sym_expression_statement] = STATE(819), - [anon_sym_LBRACE] = ACTIONS(994), - [sym_true] = ACTIONS(998), - [sym_null] = ACTIONS(998), - [anon_sym_do] = ACTIONS(1000), - [anon_sym_goto] = ACTIONS(1002), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(1008), - [anon_sym_for] = ACTIONS(1010), - [anon_sym_break] = ACTIONS(1012), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(1014), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(1016), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(1018), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(998), - [anon_sym_return] = ACTIONS(1020), - [anon_sym_while] = ACTIONS(1022), - [anon_sym_continue] = ACTIONS(1024), - [anon_sym_SEMI] = ACTIONS(1026), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_identifier] = ACTIONS(1133), + [aux_sym_preproc_def_token1] = ACTIONS(1133), + [aux_sym_preproc_if_token1] = ACTIONS(1133), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1133), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1133), + [sym_preproc_directive] = ACTIONS(1133), + [anon_sym_extern] = ACTIONS(1133), + [anon_sym___attribute__] = ACTIONS(1133), + [anon_sym_RBRACE] = ACTIONS(1135), + [anon_sym_static] = ACTIONS(1133), + [anon_sym_auto] = ACTIONS(1133), + [anon_sym_register] = ACTIONS(1133), + [anon_sym_inline] = ACTIONS(1133), + [anon_sym_const] = ACTIONS(1133), + [anon_sym_volatile] = ACTIONS(1133), + [anon_sym_restrict] = ACTIONS(1133), + [anon_sym__Atomic] = ACTIONS(1133), + [anon_sym_signed] = ACTIONS(1133), + [anon_sym_unsigned] = ACTIONS(1133), + [anon_sym_long] = ACTIONS(1133), + [anon_sym_short] = ACTIONS(1133), + [sym_primitive_type] = ACTIONS(1133), + [anon_sym_enum] = ACTIONS(1133), + [anon_sym_struct] = ACTIONS(1133), + [anon_sym_union] = ACTIONS(1133), + [sym_comment] = ACTIONS(3), }, [815] = { - [sym_if_statement] = STATE(823), - [sym_do_statement] = STATE(823), - [sym_for_statement] = STATE(823), - [sym__expression] = STATE(1093), - [sym_comma_expression] = STATE(1094), - [sym_binary_expression] = STATE(1093), - [sym_update_expression] = STATE(1093), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(823), - [sym_return_statement] = STATE(823), - [sym_break_statement] = STATE(823), - [sym_conditional_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_cast_expression] = STATE(1093), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1093), - [sym_char_literal] = STATE(1093), - [sym_labeled_statement] = STATE(823), - [sym_while_statement] = STATE(823), - [sym_continue_statement] = STATE(823), - [sym_goto_statement] = STATE(823), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1093), - [sym_sizeof_expression] = STATE(1093), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1093), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(823), - [sym_expression_statement] = STATE(823), - [anon_sym_LBRACE] = ACTIONS(994), - [sym_true] = ACTIONS(998), - [sym_null] = ACTIONS(998), - [anon_sym_do] = ACTIONS(1000), - [anon_sym_goto] = ACTIONS(1002), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(1008), - [anon_sym_for] = ACTIONS(1010), - [anon_sym_break] = ACTIONS(1012), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(1014), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(1016), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(1018), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(998), - [anon_sym_return] = ACTIONS(1020), - [anon_sym_while] = ACTIONS(1022), - [anon_sym_continue] = ACTIONS(1024), - [anon_sym_SEMI] = ACTIONS(1026), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_identifier] = ACTIONS(2404), + [aux_sym_preproc_def_token1] = ACTIONS(2404), + [aux_sym_preproc_if_token1] = ACTIONS(2404), + [aux_sym_preproc_if_token2] = ACTIONS(2404), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2404), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2404), + [sym_preproc_directive] = ACTIONS(2404), + [anon_sym_extern] = ACTIONS(2404), + [anon_sym___attribute__] = ACTIONS(2404), + [anon_sym_static] = ACTIONS(2404), + [anon_sym_auto] = ACTIONS(2404), + [anon_sym_register] = ACTIONS(2404), + [anon_sym_inline] = ACTIONS(2404), + [anon_sym_const] = ACTIONS(2404), + [anon_sym_volatile] = ACTIONS(2404), + [anon_sym_restrict] = ACTIONS(2404), + [anon_sym__Atomic] = ACTIONS(2404), + [anon_sym_signed] = ACTIONS(2404), + [anon_sym_unsigned] = ACTIONS(2404), + [anon_sym_long] = ACTIONS(2404), + [anon_sym_short] = ACTIONS(2404), + [sym_primitive_type] = ACTIONS(2404), + [anon_sym_enum] = ACTIONS(2404), + [anon_sym_struct] = ACTIONS(2404), + [anon_sym_union] = ACTIONS(2404), + [sym_comment] = ACTIONS(3), }, [816] = { - [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_case] = ACTIONS(1654), - [sym_true] = ACTIONS(1654), - [sym_null] = ACTIONS(1654), - [anon_sym_do] = ACTIONS(1654), - [anon_sym_goto] = ACTIONS(1654), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_TILDE] = ACTIONS(1656), - [anon_sym_L_DQUOTE] = ACTIONS(1656), - [anon_sym_LPAREN2] = ACTIONS(1656), - [anon_sym_RBRACE] = ACTIONS(1656), - [anon_sym_DASH_DASH] = ACTIONS(1656), - [anon_sym_default] = ACTIONS(1654), - [anon_sym_else] = ACTIONS(1654), - [sym_identifier] = ACTIONS(1654), - [anon_sym_for] = ACTIONS(1654), - [anon_sym_break] = ACTIONS(1654), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_DASH] = ACTIONS(1654), - [sym_number_literal] = ACTIONS(1656), - [anon_sym_DQUOTE] = ACTIONS(1656), - [anon_sym_SQUOTE] = ACTIONS(1656), - [anon_sym_STAR] = ACTIONS(1656), - [anon_sym_if] = ACTIONS(1654), - [anon_sym_PLUS_PLUS] = ACTIONS(1656), - [anon_sym_switch] = ACTIONS(1654), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(1654), - [anon_sym_return] = ACTIONS(1654), - [anon_sym_while] = ACTIONS(1654), - [anon_sym_continue] = ACTIONS(1654), - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_PLUS] = ACTIONS(1654), - [anon_sym_L_SQUOTE] = ACTIONS(1656), - [anon_sym_sizeof] = ACTIONS(1654), + [sym_identifier] = ACTIONS(2386), + [aux_sym_preproc_def_token1] = ACTIONS(2386), + [aux_sym_preproc_if_token1] = ACTIONS(2386), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2386), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2386), + [sym_preproc_directive] = ACTIONS(2386), + [anon_sym_extern] = ACTIONS(2386), + [anon_sym___attribute__] = ACTIONS(2386), + [anon_sym_RBRACE] = ACTIONS(2453), + [anon_sym_static] = ACTIONS(2386), + [anon_sym_auto] = ACTIONS(2386), + [anon_sym_register] = ACTIONS(2386), + [anon_sym_inline] = ACTIONS(2386), + [anon_sym_const] = ACTIONS(2386), + [anon_sym_volatile] = ACTIONS(2386), + [anon_sym_restrict] = ACTIONS(2386), + [anon_sym__Atomic] = ACTIONS(2386), + [anon_sym_signed] = ACTIONS(2386), + [anon_sym_unsigned] = ACTIONS(2386), + [anon_sym_long] = ACTIONS(2386), + [anon_sym_short] = ACTIONS(2386), + [sym_primitive_type] = ACTIONS(2386), + [anon_sym_enum] = ACTIONS(2386), + [anon_sym_struct] = ACTIONS(2386), + [anon_sym_union] = ACTIONS(2386), + [sym_comment] = ACTIONS(3), }, [817] = { - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_case] = ACTIONS(1666), - [sym_true] = ACTIONS(1666), - [sym_null] = ACTIONS(1666), - [anon_sym_do] = ACTIONS(1666), - [anon_sym_goto] = ACTIONS(1666), - [anon_sym_AMP] = ACTIONS(1668), - [anon_sym_TILDE] = ACTIONS(1668), - [anon_sym_L_DQUOTE] = ACTIONS(1668), - [anon_sym_LPAREN2] = ACTIONS(1668), - [anon_sym_RBRACE] = ACTIONS(1668), - [anon_sym_DASH_DASH] = ACTIONS(1668), - [anon_sym_default] = ACTIONS(1666), - [anon_sym_else] = ACTIONS(1666), - [sym_identifier] = ACTIONS(1666), - [anon_sym_for] = ACTIONS(1666), - [anon_sym_break] = ACTIONS(1666), - [anon_sym_BANG] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1666), - [sym_number_literal] = ACTIONS(1668), - [anon_sym_DQUOTE] = ACTIONS(1668), - [anon_sym_SQUOTE] = ACTIONS(1668), - [anon_sym_STAR] = ACTIONS(1668), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_PLUS_PLUS] = ACTIONS(1668), - [anon_sym_switch] = ACTIONS(1666), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1666), - [anon_sym_while] = ACTIONS(1666), - [anon_sym_continue] = ACTIONS(1666), - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_PLUS] = ACTIONS(1666), - [anon_sym_L_SQUOTE] = ACTIONS(1668), - [anon_sym_sizeof] = ACTIONS(1666), + [sym_identifier] = ACTIONS(2384), + [aux_sym_preproc_def_token1] = ACTIONS(2384), + [aux_sym_preproc_if_token1] = ACTIONS(2384), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2384), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2384), + [sym_preproc_directive] = ACTIONS(2384), + [anon_sym_extern] = ACTIONS(2384), + [anon_sym___attribute__] = ACTIONS(2384), + [anon_sym_RBRACE] = ACTIONS(2455), + [anon_sym_static] = ACTIONS(2384), + [anon_sym_auto] = ACTIONS(2384), + [anon_sym_register] = ACTIONS(2384), + [anon_sym_inline] = ACTIONS(2384), + [anon_sym_const] = ACTIONS(2384), + [anon_sym_volatile] = ACTIONS(2384), + [anon_sym_restrict] = ACTIONS(2384), + [anon_sym__Atomic] = ACTIONS(2384), + [anon_sym_signed] = ACTIONS(2384), + [anon_sym_unsigned] = ACTIONS(2384), + [anon_sym_long] = ACTIONS(2384), + [anon_sym_short] = ACTIONS(2384), + [sym_primitive_type] = ACTIONS(2384), + [anon_sym_enum] = ACTIONS(2384), + [anon_sym_struct] = ACTIONS(2384), + [anon_sym_union] = ACTIONS(2384), + [sym_comment] = ACTIONS(3), }, [818] = { - [sym_true] = ACTIONS(1763), - [anon_sym_restrict] = ACTIONS(1763), - [sym_null] = ACTIONS(1763), - [anon_sym_goto] = ACTIONS(1763), - [aux_sym_preproc_if_token2] = ACTIONS(1763), - [anon_sym_const] = ACTIONS(1763), - [anon_sym_typedef] = ACTIONS(1763), - [anon_sym_DASH_DASH] = ACTIONS(1765), - [anon_sym__Atomic] = ACTIONS(1763), - [sym_identifier] = ACTIONS(1763), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1763), - [sym_number_literal] = ACTIONS(1765), - [anon_sym_volatile] = ACTIONS(1763), - [anon_sym_SQUOTE] = ACTIONS(1765), - [anon_sym_extern] = ACTIONS(1763), - [anon_sym_PLUS_PLUS] = ACTIONS(1765), - [anon_sym_struct] = ACTIONS(1763), - [anon_sym_signed] = ACTIONS(1763), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(1763), - [anon_sym_while] = ACTIONS(1763), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1763), - [anon_sym_L_SQUOTE] = ACTIONS(1765), - [anon_sym___attribute__] = ACTIONS(1763), - [anon_sym_sizeof] = ACTIONS(1763), - [anon_sym_LBRACE] = ACTIONS(1765), - [anon_sym_union] = ACTIONS(1763), - [anon_sym_unsigned] = ACTIONS(1763), - [anon_sym_short] = ACTIONS(1763), - [anon_sym_do] = ACTIONS(1763), - [sym_preproc_directive] = ACTIONS(1763), - [anon_sym_AMP] = ACTIONS(1765), - [aux_sym_preproc_if_token1] = ACTIONS(1763), - [anon_sym_TILDE] = ACTIONS(1765), - [anon_sym_L_DQUOTE] = ACTIONS(1765), - [anon_sym_LPAREN2] = ACTIONS(1765), - [sym_primitive_type] = ACTIONS(1763), - [anon_sym_for] = ACTIONS(1763), - [anon_sym_break] = ACTIONS(1763), - [anon_sym_BANG] = ACTIONS(1765), - [aux_sym_preproc_include_token1] = ACTIONS(1763), - [anon_sym_DASH] = ACTIONS(1763), - [anon_sym_static] = ACTIONS(1763), - [anon_sym_DQUOTE] = ACTIONS(1765), - [anon_sym_register] = ACTIONS(1763), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_switch] = ACTIONS(1763), - [anon_sym_enum] = ACTIONS(1763), - [sym_false] = ACTIONS(1763), - [anon_sym_return] = ACTIONS(1763), - [anon_sym_continue] = ACTIONS(1763), - [anon_sym_SEMI] = ACTIONS(1765), - [aux_sym_preproc_def_token1] = ACTIONS(1763), - [anon_sym_PLUS] = ACTIONS(1763), - [anon_sym_auto] = ACTIONS(1763), - [anon_sym_inline] = ACTIONS(1763), + [sym_identifier] = ACTIONS(2406), + [aux_sym_preproc_def_token1] = ACTIONS(2406), + [aux_sym_preproc_if_token1] = ACTIONS(2406), + [aux_sym_preproc_if_token2] = ACTIONS(2406), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2406), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2406), + [sym_preproc_directive] = ACTIONS(2406), + [anon_sym_extern] = ACTIONS(2406), + [anon_sym___attribute__] = ACTIONS(2406), + [anon_sym_static] = ACTIONS(2406), + [anon_sym_auto] = ACTIONS(2406), + [anon_sym_register] = ACTIONS(2406), + [anon_sym_inline] = ACTIONS(2406), + [anon_sym_const] = ACTIONS(2406), + [anon_sym_volatile] = ACTIONS(2406), + [anon_sym_restrict] = ACTIONS(2406), + [anon_sym__Atomic] = ACTIONS(2406), + [anon_sym_signed] = ACTIONS(2406), + [anon_sym_unsigned] = ACTIONS(2406), + [anon_sym_long] = ACTIONS(2406), + [anon_sym_short] = ACTIONS(2406), + [sym_primitive_type] = ACTIONS(2406), + [anon_sym_enum] = ACTIONS(2406), + [anon_sym_struct] = ACTIONS(2406), + [anon_sym_union] = ACTIONS(2406), + [sym_comment] = ACTIONS(3), }, [819] = { - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_case] = ACTIONS(1904), - [sym_true] = ACTIONS(1904), - [sym_null] = ACTIONS(1904), - [anon_sym_do] = ACTIONS(1904), - [anon_sym_goto] = ACTIONS(1904), - [anon_sym_AMP] = ACTIONS(1906), - [anon_sym_TILDE] = ACTIONS(1906), - [anon_sym_L_DQUOTE] = ACTIONS(1906), - [anon_sym_LPAREN2] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(1906), - [anon_sym_DASH_DASH] = ACTIONS(1906), - [anon_sym_default] = ACTIONS(1904), - [anon_sym_else] = ACTIONS(1904), - [sym_identifier] = ACTIONS(1904), - [anon_sym_for] = ACTIONS(1904), - [anon_sym_break] = ACTIONS(1904), - [anon_sym_BANG] = ACTIONS(1906), - [anon_sym_DASH] = ACTIONS(1904), - [sym_number_literal] = ACTIONS(1906), - [anon_sym_DQUOTE] = ACTIONS(1906), - [anon_sym_SQUOTE] = ACTIONS(1906), - [anon_sym_STAR] = ACTIONS(1906), - [anon_sym_if] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1906), - [anon_sym_switch] = ACTIONS(1904), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(1904), - [anon_sym_return] = ACTIONS(1904), - [anon_sym_while] = ACTIONS(1904), - [anon_sym_continue] = ACTIONS(1904), - [anon_sym_SEMI] = ACTIONS(1906), - [anon_sym_PLUS] = ACTIONS(1904), - [anon_sym_L_SQUOTE] = ACTIONS(1906), - [anon_sym_sizeof] = ACTIONS(1904), + [sym_identifier] = ACTIONS(2410), + [aux_sym_preproc_def_token1] = ACTIONS(2410), + [aux_sym_preproc_if_token1] = ACTIONS(2410), + [aux_sym_preproc_if_token2] = ACTIONS(2410), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2410), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2410), + [sym_preproc_directive] = ACTIONS(2410), + [anon_sym_extern] = ACTIONS(2410), + [anon_sym___attribute__] = ACTIONS(2410), + [anon_sym_static] = ACTIONS(2410), + [anon_sym_auto] = ACTIONS(2410), + [anon_sym_register] = ACTIONS(2410), + [anon_sym_inline] = ACTIONS(2410), + [anon_sym_const] = ACTIONS(2410), + [anon_sym_volatile] = ACTIONS(2410), + [anon_sym_restrict] = ACTIONS(2410), + [anon_sym__Atomic] = ACTIONS(2410), + [anon_sym_signed] = ACTIONS(2410), + [anon_sym_unsigned] = ACTIONS(2410), + [anon_sym_long] = ACTIONS(2410), + [anon_sym_short] = ACTIONS(2410), + [sym_primitive_type] = ACTIONS(2410), + [anon_sym_enum] = ACTIONS(2410), + [anon_sym_struct] = ACTIONS(2410), + [anon_sym_union] = ACTIONS(2410), + [sym_comment] = ACTIONS(3), }, [820] = { - [sym_if_statement] = STATE(826), - [sym_do_statement] = STATE(826), - [sym_for_statement] = STATE(826), - [sym__expression] = STATE(1093), - [sym_comma_expression] = STATE(1094), - [sym_binary_expression] = STATE(1093), - [sym_update_expression] = STATE(1093), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(826), - [sym_return_statement] = STATE(826), - [sym_break_statement] = STATE(826), - [sym_conditional_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_cast_expression] = STATE(1093), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1093), - [sym_char_literal] = STATE(1093), - [sym_labeled_statement] = STATE(826), - [sym_while_statement] = STATE(826), - [sym_continue_statement] = STATE(826), - [sym_goto_statement] = STATE(826), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1093), - [sym_sizeof_expression] = STATE(1093), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1093), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(826), - [sym_expression_statement] = STATE(826), - [anon_sym_LBRACE] = ACTIONS(994), - [sym_true] = ACTIONS(998), - [sym_null] = ACTIONS(998), - [anon_sym_do] = ACTIONS(1000), - [anon_sym_goto] = ACTIONS(1002), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(1008), - [anon_sym_for] = ACTIONS(1010), - [anon_sym_break] = ACTIONS(1012), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(1014), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(1016), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(1018), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(998), - [anon_sym_return] = ACTIONS(1020), - [anon_sym_while] = ACTIONS(1022), - [anon_sym_continue] = ACTIONS(1024), - [anon_sym_SEMI] = ACTIONS(1026), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_identifier] = ACTIONS(2402), + [aux_sym_preproc_def_token1] = ACTIONS(2402), + [aux_sym_preproc_if_token1] = ACTIONS(2402), + [aux_sym_preproc_if_token2] = ACTIONS(2402), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2402), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2402), + [sym_preproc_directive] = ACTIONS(2402), + [anon_sym_extern] = ACTIONS(2402), + [anon_sym___attribute__] = ACTIONS(2402), + [anon_sym_static] = ACTIONS(2402), + [anon_sym_auto] = ACTIONS(2402), + [anon_sym_register] = ACTIONS(2402), + [anon_sym_inline] = ACTIONS(2402), + [anon_sym_const] = ACTIONS(2402), + [anon_sym_volatile] = ACTIONS(2402), + [anon_sym_restrict] = ACTIONS(2402), + [anon_sym__Atomic] = ACTIONS(2402), + [anon_sym_signed] = ACTIONS(2402), + [anon_sym_unsigned] = ACTIONS(2402), + [anon_sym_long] = ACTIONS(2402), + [anon_sym_short] = ACTIONS(2402), + [sym_primitive_type] = ACTIONS(2402), + [anon_sym_enum] = ACTIONS(2402), + [anon_sym_struct] = ACTIONS(2402), + [anon_sym_union] = ACTIONS(2402), + [sym_comment] = ACTIONS(3), }, [821] = { - [sym_if_statement] = STATE(827), - [sym_do_statement] = STATE(827), - [sym_for_statement] = STATE(827), - [sym__expression] = STATE(1093), - [sym_comma_expression] = STATE(1094), - [sym_binary_expression] = STATE(1093), - [sym_update_expression] = STATE(1093), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(827), - [sym_return_statement] = STATE(827), - [sym_break_statement] = STATE(827), - [sym_conditional_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_cast_expression] = STATE(1093), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1093), - [sym_char_literal] = STATE(1093), - [sym_labeled_statement] = STATE(827), - [sym_while_statement] = STATE(827), - [sym_continue_statement] = STATE(827), - [sym_goto_statement] = STATE(827), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1093), - [sym_sizeof_expression] = STATE(1093), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1093), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(827), - [sym_expression_statement] = STATE(827), - [anon_sym_LBRACE] = ACTIONS(994), - [sym_true] = ACTIONS(998), - [sym_null] = ACTIONS(998), - [anon_sym_do] = ACTIONS(1000), - [anon_sym_goto] = ACTIONS(1002), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(1008), - [anon_sym_for] = ACTIONS(1010), - [anon_sym_break] = ACTIONS(1012), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(1014), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(1016), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(1018), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(998), - [anon_sym_return] = ACTIONS(1020), - [anon_sym_while] = ACTIONS(1022), - [anon_sym_continue] = ACTIONS(1024), - [anon_sym_SEMI] = ACTIONS(1026), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_identifier] = ACTIONS(1093), + [aux_sym_preproc_def_token1] = ACTIONS(1093), + [aux_sym_preproc_if_token1] = ACTIONS(1093), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1093), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1093), + [sym_preproc_directive] = ACTIONS(1093), + [anon_sym_extern] = ACTIONS(1093), + [anon_sym___attribute__] = ACTIONS(1093), + [anon_sym_RBRACE] = ACTIONS(1095), + [anon_sym_static] = ACTIONS(1093), + [anon_sym_auto] = ACTIONS(1093), + [anon_sym_register] = ACTIONS(1093), + [anon_sym_inline] = ACTIONS(1093), + [anon_sym_const] = ACTIONS(1093), + [anon_sym_volatile] = ACTIONS(1093), + [anon_sym_restrict] = ACTIONS(1093), + [anon_sym__Atomic] = ACTIONS(1093), + [anon_sym_signed] = ACTIONS(1093), + [anon_sym_unsigned] = ACTIONS(1093), + [anon_sym_long] = ACTIONS(1093), + [anon_sym_short] = ACTIONS(1093), + [sym_primitive_type] = ACTIONS(1093), + [anon_sym_enum] = ACTIONS(1093), + [anon_sym_struct] = ACTIONS(1093), + [anon_sym_union] = ACTIONS(1093), + [sym_comment] = ACTIONS(3), }, [822] = { - [sym_if_statement] = STATE(829), - [sym_do_statement] = STATE(829), - [sym_for_statement] = STATE(829), - [sym__expression] = STATE(1093), - [sym_comma_expression] = STATE(1094), - [sym_binary_expression] = STATE(1093), - [sym_update_expression] = STATE(1093), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(829), - [sym_return_statement] = STATE(829), - [sym_break_statement] = STATE(829), - [sym_conditional_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_cast_expression] = STATE(1093), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1093), - [sym_char_literal] = STATE(1093), - [sym_labeled_statement] = STATE(829), - [sym_while_statement] = STATE(829), - [sym_continue_statement] = STATE(829), - [sym_goto_statement] = STATE(829), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1093), - [sym_sizeof_expression] = STATE(1093), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1093), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(829), - [sym_expression_statement] = STATE(829), - [anon_sym_LBRACE] = ACTIONS(994), - [sym_true] = ACTIONS(998), - [sym_null] = ACTIONS(998), - [anon_sym_do] = ACTIONS(1000), - [anon_sym_goto] = ACTIONS(1002), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(1008), - [anon_sym_for] = ACTIONS(1010), - [anon_sym_break] = ACTIONS(1012), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(1014), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(1016), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(1018), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(998), - [anon_sym_return] = ACTIONS(1020), - [anon_sym_while] = ACTIONS(1022), - [anon_sym_continue] = ACTIONS(1024), - [anon_sym_SEMI] = ACTIONS(1026), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_identifier] = ACTIONS(2416), + [aux_sym_preproc_def_token1] = ACTIONS(2416), + [aux_sym_preproc_if_token1] = ACTIONS(2416), + [aux_sym_preproc_if_token2] = ACTIONS(2416), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2416), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2416), + [sym_preproc_directive] = ACTIONS(2416), + [anon_sym_extern] = ACTIONS(2416), + [anon_sym___attribute__] = ACTIONS(2416), + [anon_sym_static] = ACTIONS(2416), + [anon_sym_auto] = ACTIONS(2416), + [anon_sym_register] = ACTIONS(2416), + [anon_sym_inline] = ACTIONS(2416), + [anon_sym_const] = ACTIONS(2416), + [anon_sym_volatile] = ACTIONS(2416), + [anon_sym_restrict] = ACTIONS(2416), + [anon_sym__Atomic] = ACTIONS(2416), + [anon_sym_signed] = ACTIONS(2416), + [anon_sym_unsigned] = ACTIONS(2416), + [anon_sym_long] = ACTIONS(2416), + [anon_sym_short] = ACTIONS(2416), + [sym_primitive_type] = ACTIONS(2416), + [anon_sym_enum] = ACTIONS(2416), + [anon_sym_struct] = ACTIONS(2416), + [anon_sym_union] = ACTIONS(2416), + [sym_comment] = ACTIONS(3), }, [823] = { - [anon_sym_LBRACE] = ACTIONS(1920), - [anon_sym_case] = ACTIONS(1918), - [sym_true] = ACTIONS(1918), - [sym_null] = ACTIONS(1918), - [anon_sym_do] = ACTIONS(1918), - [anon_sym_goto] = ACTIONS(1918), - [anon_sym_AMP] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_L_DQUOTE] = ACTIONS(1920), - [anon_sym_LPAREN2] = ACTIONS(1920), - [anon_sym_RBRACE] = ACTIONS(1920), - [anon_sym_DASH_DASH] = ACTIONS(1920), - [anon_sym_default] = ACTIONS(1918), - [anon_sym_else] = ACTIONS(1918), - [sym_identifier] = ACTIONS(1918), - [anon_sym_for] = ACTIONS(1918), - [anon_sym_break] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1918), - [sym_number_literal] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [anon_sym_SQUOTE] = ACTIONS(1920), - [anon_sym_STAR] = ACTIONS(1920), - [anon_sym_if] = ACTIONS(1918), - [anon_sym_PLUS_PLUS] = ACTIONS(1920), - [anon_sym_switch] = ACTIONS(1918), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(1918), - [anon_sym_return] = ACTIONS(1918), - [anon_sym_while] = ACTIONS(1918), - [anon_sym_continue] = ACTIONS(1918), - [anon_sym_SEMI] = ACTIONS(1920), - [anon_sym_PLUS] = ACTIONS(1918), - [anon_sym_L_SQUOTE] = ACTIONS(1920), - [anon_sym_sizeof] = ACTIONS(1918), + [sym_identifier] = ACTIONS(2416), + [aux_sym_preproc_def_token1] = ACTIONS(2416), + [aux_sym_preproc_if_token1] = ACTIONS(2416), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2416), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2416), + [sym_preproc_directive] = ACTIONS(2416), + [anon_sym_extern] = ACTIONS(2416), + [anon_sym___attribute__] = ACTIONS(2416), + [anon_sym_RBRACE] = ACTIONS(2457), + [anon_sym_static] = ACTIONS(2416), + [anon_sym_auto] = ACTIONS(2416), + [anon_sym_register] = ACTIONS(2416), + [anon_sym_inline] = ACTIONS(2416), + [anon_sym_const] = ACTIONS(2416), + [anon_sym_volatile] = ACTIONS(2416), + [anon_sym_restrict] = ACTIONS(2416), + [anon_sym__Atomic] = ACTIONS(2416), + [anon_sym_signed] = ACTIONS(2416), + [anon_sym_unsigned] = ACTIONS(2416), + [anon_sym_long] = ACTIONS(2416), + [anon_sym_short] = ACTIONS(2416), + [sym_primitive_type] = ACTIONS(2416), + [anon_sym_enum] = ACTIONS(2416), + [anon_sym_struct] = ACTIONS(2416), + [anon_sym_union] = ACTIONS(2416), + [sym_comment] = ACTIONS(3), }, [824] = { - [sym_if_statement] = STATE(832), - [sym_do_statement] = STATE(832), - [sym_for_statement] = STATE(832), - [sym__expression] = STATE(1093), - [sym_comma_expression] = STATE(1094), - [sym_binary_expression] = STATE(1093), - [sym_update_expression] = STATE(1093), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(832), - [sym_return_statement] = STATE(832), - [sym_break_statement] = STATE(832), - [sym_conditional_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_cast_expression] = STATE(1093), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1093), - [sym_char_literal] = STATE(1093), - [sym_labeled_statement] = STATE(832), - [sym_while_statement] = STATE(832), - [sym_continue_statement] = STATE(832), - [sym_goto_statement] = STATE(832), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1093), - [sym_sizeof_expression] = STATE(1093), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1093), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(832), - [sym_expression_statement] = STATE(832), - [anon_sym_LBRACE] = ACTIONS(994), - [sym_true] = ACTIONS(998), - [sym_null] = ACTIONS(998), - [anon_sym_do] = ACTIONS(1000), - [anon_sym_goto] = ACTIONS(1002), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(1008), - [anon_sym_for] = ACTIONS(1010), - [anon_sym_break] = ACTIONS(1012), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(1014), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(1016), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(1018), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(998), - [anon_sym_return] = ACTIONS(1020), - [anon_sym_while] = ACTIONS(1022), - [anon_sym_continue] = ACTIONS(1024), - [anon_sym_SEMI] = ACTIONS(1026), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [aux_sym_sized_type_specifier_repeat1] = STATE(824), + [sym_identifier] = ACTIONS(2459), + [anon_sym_COMMA] = ACTIONS(2461), + [anon_sym_RPAREN] = ACTIONS(2461), + [anon_sym_SEMI] = ACTIONS(2461), + [anon_sym_extern] = ACTIONS(2459), + [anon_sym___attribute__] = ACTIONS(2459), + [anon_sym_LPAREN2] = ACTIONS(2461), + [anon_sym_STAR] = ACTIONS(2461), + [anon_sym_LBRACK] = ACTIONS(2461), + [anon_sym_static] = ACTIONS(2459), + [anon_sym_auto] = ACTIONS(2459), + [anon_sym_register] = ACTIONS(2459), + [anon_sym_inline] = ACTIONS(2459), + [anon_sym_const] = ACTIONS(2459), + [anon_sym_volatile] = ACTIONS(2459), + [anon_sym_restrict] = ACTIONS(2459), + [anon_sym__Atomic] = ACTIONS(2459), + [anon_sym_signed] = ACTIONS(2463), + [anon_sym_unsigned] = ACTIONS(2463), + [anon_sym_long] = ACTIONS(2463), + [anon_sym_short] = ACTIONS(2463), + [sym_primitive_type] = ACTIONS(2459), + [anon_sym_COLON] = ACTIONS(2461), + [sym_comment] = ACTIONS(3), }, [825] = { - [sym_if_statement] = STATE(833), - [sym_do_statement] = STATE(833), - [sym_for_statement] = STATE(833), - [sym__expression] = STATE(1093), - [sym_comma_expression] = STATE(1094), - [sym_binary_expression] = STATE(1093), - [sym_update_expression] = STATE(1093), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(833), - [sym_return_statement] = STATE(833), - [sym_break_statement] = STATE(833), - [sym_conditional_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_cast_expression] = STATE(1093), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1093), - [sym_char_literal] = STATE(1093), - [sym_labeled_statement] = STATE(833), - [sym_while_statement] = STATE(833), - [sym_continue_statement] = STATE(833), - [sym_goto_statement] = STATE(833), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1093), - [sym_sizeof_expression] = STATE(1093), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1093), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(833), - [sym_expression_statement] = STATE(833), - [anon_sym_LBRACE] = ACTIONS(994), - [sym_true] = ACTIONS(998), - [sym_null] = ACTIONS(998), - [anon_sym_do] = ACTIONS(1000), - [anon_sym_goto] = ACTIONS(1002), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(1008), - [anon_sym_for] = ACTIONS(1010), - [anon_sym_break] = ACTIONS(1012), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(1014), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(1016), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(1018), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(998), - [anon_sym_return] = ACTIONS(1020), - [anon_sym_while] = ACTIONS(1022), - [anon_sym_continue] = ACTIONS(1024), - [anon_sym_SEMI] = ACTIONS(1026), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_identifier] = ACTIONS(2418), + [anon_sym_LPAREN2] = ACTIONS(2420), + [anon_sym_STAR] = ACTIONS(2420), + [anon_sym_RBRACK] = ACTIONS(2420), + [anon_sym_const] = ACTIONS(2418), + [anon_sym_volatile] = ACTIONS(2418), + [anon_sym_restrict] = ACTIONS(2418), + [anon_sym__Atomic] = ACTIONS(2418), + [anon_sym_AMP] = ACTIONS(2420), + [anon_sym_BANG] = ACTIONS(2420), + [anon_sym_TILDE] = ACTIONS(2420), + [anon_sym_DASH] = ACTIONS(2418), + [anon_sym_PLUS] = ACTIONS(2418), + [anon_sym_DASH_DASH] = ACTIONS(2420), + [anon_sym_PLUS_PLUS] = ACTIONS(2420), + [anon_sym_sizeof] = ACTIONS(2418), + [sym_number_literal] = ACTIONS(2420), + [anon_sym_L_SQUOTE] = ACTIONS(2420), + [anon_sym_SQUOTE] = ACTIONS(2420), + [anon_sym_L_DQUOTE] = ACTIONS(2420), + [anon_sym_DQUOTE] = ACTIONS(2420), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [sym_null] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), }, [826] = { - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_case] = ACTIONS(1986), - [sym_true] = ACTIONS(1986), - [sym_null] = ACTIONS(1986), - [anon_sym_do] = ACTIONS(1986), - [anon_sym_goto] = ACTIONS(1986), - [anon_sym_AMP] = ACTIONS(1988), - [anon_sym_TILDE] = ACTIONS(1988), - [anon_sym_L_DQUOTE] = ACTIONS(1988), - [anon_sym_LPAREN2] = ACTIONS(1988), - [anon_sym_RBRACE] = ACTIONS(1988), - [anon_sym_DASH_DASH] = ACTIONS(1988), - [anon_sym_default] = ACTIONS(1986), - [anon_sym_else] = ACTIONS(1986), - [sym_identifier] = ACTIONS(1986), - [anon_sym_for] = ACTIONS(1986), - [anon_sym_break] = ACTIONS(1986), - [anon_sym_BANG] = ACTIONS(1988), - [anon_sym_DASH] = ACTIONS(1986), - [sym_number_literal] = ACTIONS(1988), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_SQUOTE] = ACTIONS(1988), - [anon_sym_STAR] = ACTIONS(1988), - [anon_sym_if] = ACTIONS(1986), - [anon_sym_PLUS_PLUS] = ACTIONS(1988), - [anon_sym_switch] = ACTIONS(1986), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(1986), - [anon_sym_return] = ACTIONS(1986), - [anon_sym_while] = ACTIONS(1986), - [anon_sym_continue] = ACTIONS(1986), - [anon_sym_SEMI] = ACTIONS(1988), - [anon_sym_PLUS] = ACTIONS(1986), - [anon_sym_L_SQUOTE] = ACTIONS(1988), - [anon_sym_sizeof] = ACTIONS(1986), + [aux_sym_sized_type_specifier_repeat1] = STATE(824), + [sym_identifier] = ACTIONS(2466), + [anon_sym_COMMA] = ACTIONS(2469), + [anon_sym_RPAREN] = ACTIONS(2469), + [anon_sym_SEMI] = ACTIONS(2469), + [anon_sym_extern] = ACTIONS(2471), + [anon_sym___attribute__] = ACTIONS(2471), + [anon_sym_LPAREN2] = ACTIONS(2469), + [anon_sym_STAR] = ACTIONS(2469), + [anon_sym_LBRACK] = ACTIONS(2469), + [anon_sym_static] = ACTIONS(2471), + [anon_sym_auto] = ACTIONS(2471), + [anon_sym_register] = ACTIONS(2471), + [anon_sym_inline] = ACTIONS(2471), + [anon_sym_const] = ACTIONS(2471), + [anon_sym_volatile] = ACTIONS(2471), + [anon_sym_restrict] = ACTIONS(2471), + [anon_sym__Atomic] = ACTIONS(2471), + [anon_sym_signed] = ACTIONS(2473), + [anon_sym_unsigned] = ACTIONS(2473), + [anon_sym_long] = ACTIONS(2473), + [anon_sym_short] = ACTIONS(2473), + [sym_primitive_type] = ACTIONS(2475), + [anon_sym_COLON] = ACTIONS(2469), + [sym_comment] = ACTIONS(3), }, [827] = { - [anon_sym_LBRACE] = ACTIONS(1992), - [anon_sym_case] = ACTIONS(1990), - [sym_true] = ACTIONS(1990), - [sym_null] = ACTIONS(1990), - [anon_sym_do] = ACTIONS(1990), - [anon_sym_goto] = ACTIONS(1990), - [anon_sym_AMP] = ACTIONS(1992), - [anon_sym_TILDE] = ACTIONS(1992), - [anon_sym_L_DQUOTE] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(1992), - [anon_sym_RBRACE] = ACTIONS(1992), - [anon_sym_DASH_DASH] = ACTIONS(1992), - [anon_sym_default] = ACTIONS(1990), - [anon_sym_else] = ACTIONS(1990), - [sym_identifier] = ACTIONS(1990), - [anon_sym_for] = ACTIONS(1990), - [anon_sym_break] = ACTIONS(1990), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_DASH] = ACTIONS(1990), - [sym_number_literal] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1992), - [anon_sym_SQUOTE] = ACTIONS(1992), - [anon_sym_STAR] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1990), - [anon_sym_PLUS_PLUS] = ACTIONS(1992), - [anon_sym_switch] = ACTIONS(1990), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(1990), - [anon_sym_return] = ACTIONS(1990), - [anon_sym_while] = ACTIONS(1990), - [anon_sym_continue] = ACTIONS(1990), - [anon_sym_SEMI] = ACTIONS(1992), - [anon_sym_PLUS] = ACTIONS(1990), - [anon_sym_L_SQUOTE] = ACTIONS(1992), - [anon_sym_sizeof] = ACTIONS(1990), + [sym__declarator] = STATE(918), + [sym__abstract_declarator] = STATE(958), + [sym_parenthesized_declarator] = STATE(918), + [sym_abstract_parenthesized_declarator] = STATE(958), + [sym_pointer_declarator] = STATE(918), + [sym_abstract_pointer_declarator] = STATE(958), + [sym_function_declarator] = STATE(918), + [sym_abstract_function_declarator] = STATE(958), + [sym_array_declarator] = STATE(918), + [sym_abstract_array_declarator] = STATE(958), + [sym_type_qualifier] = STATE(847), + [sym_parameter_list] = STATE(994), + [aux_sym_type_definition_repeat1] = STATE(847), + [sym_identifier] = ACTIONS(2477), + [anon_sym_COMMA] = ACTIONS(2479), + [anon_sym_RPAREN] = ACTIONS(2479), + [anon_sym_LPAREN2] = ACTIONS(1257), + [anon_sym_STAR] = ACTIONS(1259), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [sym_comment] = ACTIONS(3), }, [828] = { - [sym_if_statement] = STATE(835), - [sym_do_statement] = STATE(835), - [sym_for_statement] = STATE(835), - [sym__expression] = STATE(1093), - [sym_comma_expression] = STATE(1094), - [sym_binary_expression] = STATE(1093), - [sym_update_expression] = STATE(1093), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(835), - [sym_return_statement] = STATE(835), - [sym_break_statement] = STATE(835), - [sym_conditional_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_cast_expression] = STATE(1093), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1093), - [sym_char_literal] = STATE(1093), - [sym_labeled_statement] = STATE(835), - [sym_while_statement] = STATE(835), - [sym_continue_statement] = STATE(835), - [sym_goto_statement] = STATE(835), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1093), - [sym_sizeof_expression] = STATE(1093), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1093), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(835), - [sym_expression_statement] = STATE(835), - [anon_sym_LBRACE] = ACTIONS(994), - [sym_true] = ACTIONS(998), - [sym_null] = ACTIONS(998), - [anon_sym_do] = ACTIONS(1000), - [anon_sym_goto] = ACTIONS(1002), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(1008), - [anon_sym_for] = ACTIONS(1010), - [anon_sym_break] = ACTIONS(1012), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(1014), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(1016), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(1018), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(998), - [anon_sym_return] = ACTIONS(1020), - [anon_sym_while] = ACTIONS(1022), - [anon_sym_continue] = ACTIONS(1024), - [anon_sym_SEMI] = ACTIONS(1026), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_type_qualifier] = STATE(846), + [sym__type_specifier] = STATE(878), + [sym_sized_type_specifier] = STATE(878), + [sym_enum_specifier] = STATE(878), + [sym_struct_specifier] = STATE(878), + [sym_union_specifier] = STATE(878), + [sym_type_descriptor] = STATE(1166), + [sym_macro_type_specifier] = STATE(878), + [aux_sym_type_definition_repeat1] = STATE(846), + [aux_sym_sized_type_specifier_repeat1] = STATE(881), + [sym_identifier] = ACTIONS(1209), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(1055), + [anon_sym_unsigned] = ACTIONS(1055), + [anon_sym_long] = ACTIONS(1055), + [anon_sym_short] = ACTIONS(1055), + [sym_primitive_type] = ACTIONS(1057), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [sym_comment] = ACTIONS(3), }, [829] = { - [anon_sym_LBRACE] = ACTIONS(1996), - [anon_sym_case] = ACTIONS(1994), - [sym_true] = ACTIONS(1994), - [sym_null] = ACTIONS(1994), - [anon_sym_do] = ACTIONS(1994), - [anon_sym_goto] = ACTIONS(1994), - [anon_sym_AMP] = ACTIONS(1996), - [anon_sym_TILDE] = ACTIONS(1996), - [anon_sym_L_DQUOTE] = ACTIONS(1996), - [anon_sym_LPAREN2] = ACTIONS(1996), - [anon_sym_RBRACE] = ACTIONS(1996), - [anon_sym_DASH_DASH] = ACTIONS(1996), - [anon_sym_default] = ACTIONS(1994), - [anon_sym_else] = ACTIONS(1994), - [sym_identifier] = ACTIONS(1994), - [anon_sym_for] = ACTIONS(1994), - [anon_sym_break] = ACTIONS(1994), - [anon_sym_BANG] = ACTIONS(1996), - [anon_sym_DASH] = ACTIONS(1994), - [sym_number_literal] = ACTIONS(1996), - [anon_sym_DQUOTE] = ACTIONS(1996), - [anon_sym_SQUOTE] = ACTIONS(1996), - [anon_sym_STAR] = ACTIONS(1996), - [anon_sym_if] = ACTIONS(1994), - [anon_sym_PLUS_PLUS] = ACTIONS(1996), - [anon_sym_switch] = ACTIONS(1994), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1994), - [anon_sym_while] = ACTIONS(1994), - [anon_sym_continue] = ACTIONS(1994), - [anon_sym_SEMI] = ACTIONS(1996), - [anon_sym_PLUS] = ACTIONS(1994), - [anon_sym_L_SQUOTE] = ACTIONS(1996), - [anon_sym_sizeof] = ACTIONS(1994), + [sym__declarator] = STATE(907), + [sym__abstract_declarator] = STATE(967), + [sym_parenthesized_declarator] = STATE(907), + [sym_abstract_parenthesized_declarator] = STATE(967), + [sym_pointer_declarator] = STATE(907), + [sym_abstract_pointer_declarator] = STATE(967), + [sym_function_declarator] = STATE(907), + [sym_abstract_function_declarator] = STATE(967), + [sym_array_declarator] = STATE(907), + [sym_abstract_array_declarator] = STATE(967), + [sym_type_qualifier] = STATE(827), + [sym_parameter_list] = STATE(994), + [aux_sym_type_definition_repeat1] = STATE(827), + [sym_identifier] = ACTIONS(2481), + [anon_sym_COMMA] = ACTIONS(2483), + [anon_sym_RPAREN] = ACTIONS(2483), + [anon_sym_LPAREN2] = ACTIONS(1257), + [anon_sym_STAR] = ACTIONS(1259), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [sym_comment] = ACTIONS(3), }, [830] = { - [sym_if_statement] = STATE(836), - [sym_do_statement] = STATE(836), - [sym_for_statement] = STATE(836), - [sym__expression] = STATE(1093), - [sym_comma_expression] = STATE(1094), - [sym_binary_expression] = STATE(1093), - [sym_update_expression] = STATE(1093), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(836), - [sym_return_statement] = STATE(836), - [sym_break_statement] = STATE(836), - [sym_conditional_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_cast_expression] = STATE(1093), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1093), - [sym_char_literal] = STATE(1093), - [sym_labeled_statement] = STATE(836), - [sym_while_statement] = STATE(836), - [sym_continue_statement] = STATE(836), - [sym_goto_statement] = STATE(836), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1093), - [sym_sizeof_expression] = STATE(1093), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1093), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(836), - [sym_expression_statement] = STATE(836), - [anon_sym_LBRACE] = ACTIONS(994), - [sym_true] = ACTIONS(998), - [sym_null] = ACTIONS(998), - [anon_sym_do] = ACTIONS(1000), - [anon_sym_goto] = ACTIONS(1002), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(1008), - [anon_sym_for] = ACTIONS(1010), - [anon_sym_break] = ACTIONS(1012), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(1014), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(1016), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(1018), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(998), - [anon_sym_return] = ACTIONS(1020), - [anon_sym_while] = ACTIONS(1022), - [anon_sym_continue] = ACTIONS(1024), - [anon_sym_SEMI] = ACTIONS(1026), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_attribute_specifier] = STATE(662), + [sym_storage_class_specifier] = STATE(662), + [sym_type_qualifier] = STATE(662), + [aux_sym__declaration_specifiers_repeat1] = STATE(662), + [sym_identifier] = ACTIONS(2485), + [anon_sym_COMMA] = ACTIONS(2487), + [anon_sym_RPAREN] = ACTIONS(2487), + [anon_sym_SEMI] = ACTIONS(2487), + [anon_sym_extern] = ACTIONS(33), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(2487), + [anon_sym_STAR] = ACTIONS(2487), + [anon_sym_LBRACK] = ACTIONS(2487), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_COLON] = ACTIONS(2487), + [sym_comment] = ACTIONS(3), }, [831] = { - [sym_if_statement] = STATE(837), - [sym_do_statement] = STATE(837), - [sym_for_statement] = STATE(837), - [sym__expression] = STATE(1093), - [sym_comma_expression] = STATE(1094), - [sym_binary_expression] = STATE(1093), - [sym_update_expression] = STATE(1093), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(837), - [sym_return_statement] = STATE(837), - [sym_break_statement] = STATE(837), - [sym_conditional_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_cast_expression] = STATE(1093), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1093), - [sym_char_literal] = STATE(1093), - [sym_labeled_statement] = STATE(837), - [sym_while_statement] = STATE(837), - [sym_continue_statement] = STATE(837), - [sym_goto_statement] = STATE(837), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1093), - [sym_sizeof_expression] = STATE(1093), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1093), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(837), - [sym_expression_statement] = STATE(837), - [anon_sym_LBRACE] = ACTIONS(994), - [sym_true] = ACTIONS(998), - [sym_null] = ACTIONS(998), - [anon_sym_do] = ACTIONS(1000), - [anon_sym_goto] = ACTIONS(1002), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(1008), - [anon_sym_for] = ACTIONS(1010), - [anon_sym_break] = ACTIONS(1012), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(1014), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(1016), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(1018), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(998), - [anon_sym_return] = ACTIONS(1020), - [anon_sym_while] = ACTIONS(1022), - [anon_sym_continue] = ACTIONS(1024), - [anon_sym_SEMI] = ACTIONS(1026), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_type_qualifier] = STATE(847), + [sym__type_specifier] = STATE(919), + [sym_sized_type_specifier] = STATE(919), + [sym_enum_specifier] = STATE(919), + [sym_struct_specifier] = STATE(919), + [sym_union_specifier] = STATE(919), + [sym_macro_type_specifier] = STATE(919), + [aux_sym_type_definition_repeat1] = STATE(847), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(1209), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(2489), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [sym_comment] = ACTIONS(3), }, [832] = { - [anon_sym_LBRACE] = ACTIONS(2002), - [anon_sym_case] = ACTIONS(2000), - [sym_true] = ACTIONS(2000), - [sym_null] = ACTIONS(2000), - [anon_sym_do] = ACTIONS(2000), - [anon_sym_goto] = ACTIONS(2000), - [anon_sym_AMP] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_L_DQUOTE] = ACTIONS(2002), - [anon_sym_LPAREN2] = ACTIONS(2002), - [anon_sym_RBRACE] = ACTIONS(2002), - [anon_sym_DASH_DASH] = ACTIONS(2002), - [anon_sym_default] = ACTIONS(2000), - [anon_sym_else] = ACTIONS(2000), - [sym_identifier] = ACTIONS(2000), - [anon_sym_for] = ACTIONS(2000), - [anon_sym_break] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2000), - [sym_number_literal] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [anon_sym_SQUOTE] = ACTIONS(2002), - [anon_sym_STAR] = ACTIONS(2002), - [anon_sym_if] = ACTIONS(2000), - [anon_sym_PLUS_PLUS] = ACTIONS(2002), - [anon_sym_switch] = ACTIONS(2000), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2000), - [anon_sym_return] = ACTIONS(2000), - [anon_sym_while] = ACTIONS(2000), - [anon_sym_continue] = ACTIONS(2000), - [anon_sym_SEMI] = ACTIONS(2002), - [anon_sym_PLUS] = ACTIONS(2000), - [anon_sym_L_SQUOTE] = ACTIONS(2002), - [anon_sym_sizeof] = ACTIONS(2000), + [sym_string_literal] = STATE(616), + [sym_identifier] = ACTIONS(2422), + [anon_sym_extern] = ACTIONS(2422), + [anon_sym___attribute__] = ACTIONS(2422), + [anon_sym_static] = ACTIONS(2422), + [anon_sym_auto] = ACTIONS(2422), + [anon_sym_register] = ACTIONS(2422), + [anon_sym_inline] = ACTIONS(2422), + [anon_sym_const] = ACTIONS(2422), + [anon_sym_volatile] = ACTIONS(2422), + [anon_sym_restrict] = ACTIONS(2422), + [anon_sym__Atomic] = ACTIONS(2422), + [anon_sym_signed] = ACTIONS(2422), + [anon_sym_unsigned] = ACTIONS(2422), + [anon_sym_long] = ACTIONS(2422), + [anon_sym_short] = ACTIONS(2422), + [sym_primitive_type] = ACTIONS(2422), + [anon_sym_enum] = ACTIONS(2422), + [anon_sym_struct] = ACTIONS(2422), + [anon_sym_union] = ACTIONS(2422), + [anon_sym_L_DQUOTE] = ACTIONS(2491), + [anon_sym_DQUOTE] = ACTIONS(2491), + [sym_comment] = ACTIONS(3), }, [833] = { - [anon_sym_LBRACE] = ACTIONS(2006), - [anon_sym_case] = ACTIONS(2004), - [sym_true] = ACTIONS(2004), - [sym_null] = ACTIONS(2004), - [anon_sym_do] = ACTIONS(2004), - [anon_sym_goto] = ACTIONS(2004), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_TILDE] = ACTIONS(2006), - [anon_sym_L_DQUOTE] = ACTIONS(2006), - [anon_sym_LPAREN2] = ACTIONS(2006), - [anon_sym_RBRACE] = ACTIONS(2006), - [anon_sym_DASH_DASH] = ACTIONS(2006), - [anon_sym_default] = ACTIONS(2004), - [anon_sym_else] = ACTIONS(2004), - [sym_identifier] = ACTIONS(2004), - [anon_sym_for] = ACTIONS(2004), - [anon_sym_break] = ACTIONS(2004), - [anon_sym_BANG] = ACTIONS(2006), - [anon_sym_DASH] = ACTIONS(2004), - [sym_number_literal] = ACTIONS(2006), - [anon_sym_DQUOTE] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_if] = ACTIONS(2004), - [anon_sym_PLUS_PLUS] = ACTIONS(2006), - [anon_sym_switch] = ACTIONS(2004), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2004), - [anon_sym_return] = ACTIONS(2004), - [anon_sym_while] = ACTIONS(2004), - [anon_sym_continue] = ACTIONS(2004), - [anon_sym_SEMI] = ACTIONS(2006), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2006), - [anon_sym_sizeof] = ACTIONS(2004), + [sym_string_literal] = STATE(615), + [sym_identifier] = ACTIONS(2422), + [anon_sym_extern] = ACTIONS(2422), + [anon_sym___attribute__] = ACTIONS(2422), + [anon_sym_static] = ACTIONS(2422), + [anon_sym_auto] = ACTIONS(2422), + [anon_sym_register] = ACTIONS(2422), + [anon_sym_inline] = ACTIONS(2422), + [anon_sym_const] = ACTIONS(2422), + [anon_sym_volatile] = ACTIONS(2422), + [anon_sym_restrict] = ACTIONS(2422), + [anon_sym__Atomic] = ACTIONS(2422), + [anon_sym_signed] = ACTIONS(2422), + [anon_sym_unsigned] = ACTIONS(2422), + [anon_sym_long] = ACTIONS(2422), + [anon_sym_short] = ACTIONS(2422), + [sym_primitive_type] = ACTIONS(2422), + [anon_sym_enum] = ACTIONS(2422), + [anon_sym_struct] = ACTIONS(2422), + [anon_sym_union] = ACTIONS(2422), + [anon_sym_L_DQUOTE] = ACTIONS(2491), + [anon_sym_DQUOTE] = ACTIONS(2491), + [sym_comment] = ACTIONS(3), }, [834] = { - [sym_if_statement] = STATE(839), - [sym_do_statement] = STATE(839), - [sym_for_statement] = STATE(839), - [sym__expression] = STATE(1093), - [sym_comma_expression] = STATE(1094), - [sym_binary_expression] = STATE(1093), - [sym_update_expression] = STATE(1093), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(839), - [sym_return_statement] = STATE(839), - [sym_break_statement] = STATE(839), - [sym_conditional_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_cast_expression] = STATE(1093), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1093), - [sym_char_literal] = STATE(1093), - [sym_labeled_statement] = STATE(839), - [sym_while_statement] = STATE(839), - [sym_continue_statement] = STATE(839), - [sym_goto_statement] = STATE(839), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1093), - [sym_sizeof_expression] = STATE(1093), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1093), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(839), - [sym_expression_statement] = STATE(839), - [anon_sym_LBRACE] = ACTIONS(994), - [sym_true] = ACTIONS(998), - [sym_null] = ACTIONS(998), - [anon_sym_do] = ACTIONS(1000), - [anon_sym_goto] = ACTIONS(1002), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(1008), - [anon_sym_for] = ACTIONS(1010), - [anon_sym_break] = ACTIONS(1012), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(1014), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(1016), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(1018), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(998), - [anon_sym_return] = ACTIONS(1020), - [anon_sym_while] = ACTIONS(1022), - [anon_sym_continue] = ACTIONS(1024), - [anon_sym_SEMI] = ACTIONS(1026), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_type_qualifier] = STATE(831), + [sym__type_specifier] = STATE(920), + [sym_sized_type_specifier] = STATE(920), + [sym_enum_specifier] = STATE(920), + [sym_struct_specifier] = STATE(920), + [sym_union_specifier] = STATE(920), + [sym_macro_type_specifier] = STATE(920), + [aux_sym_type_definition_repeat1] = STATE(831), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(1209), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(2493), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [sym_comment] = ACTIONS(3), }, [835] = { - [anon_sym_LBRACE] = ACTIONS(2119), - [anon_sym_case] = ACTIONS(2117), - [sym_true] = ACTIONS(2117), - [sym_null] = ACTIONS(2117), - [anon_sym_do] = ACTIONS(2117), - [anon_sym_goto] = ACTIONS(2117), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_L_DQUOTE] = ACTIONS(2119), - [anon_sym_LPAREN2] = ACTIONS(2119), - [anon_sym_RBRACE] = ACTIONS(2119), - [anon_sym_DASH_DASH] = ACTIONS(2119), - [anon_sym_default] = ACTIONS(2117), - [anon_sym_else] = ACTIONS(2117), - [sym_identifier] = ACTIONS(2117), - [anon_sym_for] = ACTIONS(2117), - [anon_sym_break] = ACTIONS(2117), - [anon_sym_BANG] = ACTIONS(2119), - [anon_sym_DASH] = ACTIONS(2117), - [sym_number_literal] = ACTIONS(2119), - [anon_sym_DQUOTE] = ACTIONS(2119), - [anon_sym_SQUOTE] = ACTIONS(2119), - [anon_sym_STAR] = ACTIONS(2119), - [anon_sym_if] = ACTIONS(2117), - [anon_sym_PLUS_PLUS] = ACTIONS(2119), - [anon_sym_switch] = ACTIONS(2117), + [sym_attribute_specifier] = STATE(845), + [sym_storage_class_specifier] = STATE(845), + [sym_type_qualifier] = STATE(845), + [aux_sym__declaration_specifiers_repeat1] = STATE(845), + [sym_identifier] = ACTIONS(2495), + [anon_sym_COMMA] = ACTIONS(2497), + [anon_sym_RPAREN] = ACTIONS(2497), + [anon_sym_SEMI] = ACTIONS(2497), + [anon_sym_extern] = ACTIONS(33), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(2497), + [anon_sym_STAR] = ACTIONS(2497), + [anon_sym_LBRACK] = ACTIONS(2497), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_COLON] = ACTIONS(2497), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2117), - [anon_sym_return] = ACTIONS(2117), - [anon_sym_while] = ACTIONS(2117), - [anon_sym_continue] = ACTIONS(2117), - [anon_sym_SEMI] = ACTIONS(2119), - [anon_sym_PLUS] = ACTIONS(2117), - [anon_sym_L_SQUOTE] = ACTIONS(2119), - [anon_sym_sizeof] = ACTIONS(2117), }, [836] = { - [anon_sym_LBRACE] = ACTIONS(2123), - [anon_sym_case] = ACTIONS(2121), - [sym_true] = ACTIONS(2121), - [sym_null] = ACTIONS(2121), - [anon_sym_do] = ACTIONS(2121), - [anon_sym_goto] = ACTIONS(2121), - [anon_sym_AMP] = ACTIONS(2123), - [anon_sym_TILDE] = ACTIONS(2123), - [anon_sym_L_DQUOTE] = ACTIONS(2123), - [anon_sym_LPAREN2] = ACTIONS(2123), - [anon_sym_RBRACE] = ACTIONS(2123), - [anon_sym_DASH_DASH] = ACTIONS(2123), - [anon_sym_default] = ACTIONS(2121), - [anon_sym_else] = ACTIONS(2121), - [sym_identifier] = ACTIONS(2121), - [anon_sym_for] = ACTIONS(2121), - [anon_sym_break] = ACTIONS(2121), - [anon_sym_BANG] = ACTIONS(2123), - [anon_sym_DASH] = ACTIONS(2121), - [sym_number_literal] = ACTIONS(2123), - [anon_sym_DQUOTE] = ACTIONS(2123), - [anon_sym_SQUOTE] = ACTIONS(2123), - [anon_sym_STAR] = ACTIONS(2123), - [anon_sym_if] = ACTIONS(2121), - [anon_sym_PLUS_PLUS] = ACTIONS(2123), - [anon_sym_switch] = ACTIONS(2121), + [sym_type_qualifier] = STATE(840), + [sym__type_specifier] = STATE(921), + [sym_sized_type_specifier] = STATE(921), + [sym_enum_specifier] = STATE(921), + [sym_struct_specifier] = STATE(921), + [sym_union_specifier] = STATE(921), + [sym_macro_type_specifier] = STATE(921), + [aux_sym_type_definition_repeat1] = STATE(840), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(1209), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(2499), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2121), - [anon_sym_return] = ACTIONS(2121), - [anon_sym_while] = ACTIONS(2121), - [anon_sym_continue] = ACTIONS(2121), - [anon_sym_SEMI] = ACTIONS(2123), - [anon_sym_PLUS] = ACTIONS(2121), - [anon_sym_L_SQUOTE] = ACTIONS(2123), - [anon_sym_sizeof] = ACTIONS(2121), }, [837] = { - [anon_sym_LBRACE] = ACTIONS(2127), - [anon_sym_case] = ACTIONS(2125), - [sym_true] = ACTIONS(2125), - [sym_null] = ACTIONS(2125), - [anon_sym_do] = ACTIONS(2125), - [anon_sym_goto] = ACTIONS(2125), - [anon_sym_AMP] = ACTIONS(2127), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_L_DQUOTE] = ACTIONS(2127), - [anon_sym_LPAREN2] = ACTIONS(2127), - [anon_sym_RBRACE] = ACTIONS(2127), - [anon_sym_DASH_DASH] = ACTIONS(2127), - [anon_sym_default] = ACTIONS(2125), - [anon_sym_else] = ACTIONS(2125), - [sym_identifier] = ACTIONS(2125), - [anon_sym_for] = ACTIONS(2125), - [anon_sym_break] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_DASH] = ACTIONS(2125), - [sym_number_literal] = ACTIONS(2127), - [anon_sym_DQUOTE] = ACTIONS(2127), - [anon_sym_SQUOTE] = ACTIONS(2127), - [anon_sym_STAR] = ACTIONS(2127), - [anon_sym_if] = ACTIONS(2125), - [anon_sym_PLUS_PLUS] = ACTIONS(2127), - [anon_sym_switch] = ACTIONS(2125), + [sym_type_qualifier] = STATE(843), + [sym__type_specifier] = STATE(924), + [sym_sized_type_specifier] = STATE(924), + [sym_enum_specifier] = STATE(924), + [sym_struct_specifier] = STATE(924), + [sym_union_specifier] = STATE(924), + [sym_macro_type_specifier] = STATE(924), + [aux_sym_type_definition_repeat1] = STATE(843), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(1209), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(2501), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2125), - [anon_sym_return] = ACTIONS(2125), - [anon_sym_while] = ACTIONS(2125), - [anon_sym_continue] = ACTIONS(2125), - [anon_sym_SEMI] = ACTIONS(2127), - [anon_sym_PLUS] = ACTIONS(2125), - [anon_sym_L_SQUOTE] = ACTIONS(2127), - [anon_sym_sizeof] = ACTIONS(2125), }, [838] = { - [sym_if_statement] = STATE(840), - [sym_do_statement] = STATE(840), - [sym_for_statement] = STATE(840), - [sym__expression] = STATE(1093), - [sym_comma_expression] = STATE(1094), - [sym_binary_expression] = STATE(1093), - [sym_update_expression] = STATE(1093), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(840), - [sym_return_statement] = STATE(840), - [sym_break_statement] = STATE(840), - [sym_conditional_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_cast_expression] = STATE(1093), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1093), - [sym_char_literal] = STATE(1093), - [sym_labeled_statement] = STATE(840), - [sym_while_statement] = STATE(840), - [sym_continue_statement] = STATE(840), - [sym_goto_statement] = STATE(840), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1093), - [sym_sizeof_expression] = STATE(1093), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1093), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(840), - [sym_expression_statement] = STATE(840), - [anon_sym_LBRACE] = ACTIONS(994), - [sym_true] = ACTIONS(998), - [sym_null] = ACTIONS(998), - [anon_sym_do] = ACTIONS(1000), - [anon_sym_goto] = ACTIONS(1002), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(1008), - [anon_sym_for] = ACTIONS(1010), - [anon_sym_break] = ACTIONS(1012), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(1014), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(1016), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(1018), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(998), - [anon_sym_return] = ACTIONS(1020), - [anon_sym_while] = ACTIONS(1022), - [anon_sym_continue] = ACTIONS(1024), - [anon_sym_SEMI] = ACTIONS(1026), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_attribute_specifier] = STATE(830), + [sym_storage_class_specifier] = STATE(830), + [sym_type_qualifier] = STATE(830), + [aux_sym__declaration_specifiers_repeat1] = STATE(830), + [sym_identifier] = ACTIONS(2503), + [anon_sym_COMMA] = ACTIONS(2505), + [anon_sym_RPAREN] = ACTIONS(2505), + [anon_sym_SEMI] = ACTIONS(2505), + [anon_sym_extern] = ACTIONS(33), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(2505), + [anon_sym_STAR] = ACTIONS(2505), + [anon_sym_LBRACK] = ACTIONS(2505), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_COLON] = ACTIONS(2505), + [sym_comment] = ACTIONS(3), }, [839] = { - [anon_sym_LBRACE] = ACTIONS(2131), - [anon_sym_case] = ACTIONS(2129), - [sym_true] = ACTIONS(2129), - [sym_null] = ACTIONS(2129), - [anon_sym_do] = ACTIONS(2129), - [anon_sym_goto] = ACTIONS(2129), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_TILDE] = ACTIONS(2131), - [anon_sym_L_DQUOTE] = ACTIONS(2131), - [anon_sym_LPAREN2] = ACTIONS(2131), - [anon_sym_RBRACE] = ACTIONS(2131), - [anon_sym_DASH_DASH] = ACTIONS(2131), - [anon_sym_default] = ACTIONS(2129), - [anon_sym_else] = ACTIONS(2129), - [sym_identifier] = ACTIONS(2129), - [anon_sym_for] = ACTIONS(2129), - [anon_sym_break] = ACTIONS(2129), - [anon_sym_BANG] = ACTIONS(2131), - [anon_sym_DASH] = ACTIONS(2129), - [sym_number_literal] = ACTIONS(2131), - [anon_sym_DQUOTE] = ACTIONS(2131), - [anon_sym_SQUOTE] = ACTIONS(2131), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_if] = ACTIONS(2129), - [anon_sym_PLUS_PLUS] = ACTIONS(2131), - [anon_sym_switch] = ACTIONS(2129), + [sym_type_qualifier] = STATE(847), + [sym__type_specifier] = STATE(914), + [sym_sized_type_specifier] = STATE(914), + [sym_enum_specifier] = STATE(914), + [sym_struct_specifier] = STATE(914), + [sym_union_specifier] = STATE(914), + [sym_macro_type_specifier] = STATE(914), + [aux_sym_type_definition_repeat1] = STATE(847), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(1209), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(2507), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2129), - [anon_sym_return] = ACTIONS(2129), - [anon_sym_while] = ACTIONS(2129), - [anon_sym_continue] = ACTIONS(2129), - [anon_sym_SEMI] = ACTIONS(2131), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_L_SQUOTE] = ACTIONS(2131), - [anon_sym_sizeof] = ACTIONS(2129), }, [840] = { - [anon_sym_LBRACE] = ACTIONS(2135), - [anon_sym_case] = ACTIONS(2133), - [sym_true] = ACTIONS(2133), - [sym_null] = ACTIONS(2133), - [anon_sym_do] = ACTIONS(2133), - [anon_sym_goto] = ACTIONS(2133), - [anon_sym_AMP] = ACTIONS(2135), - [anon_sym_TILDE] = ACTIONS(2135), - [anon_sym_L_DQUOTE] = ACTIONS(2135), - [anon_sym_LPAREN2] = ACTIONS(2135), - [anon_sym_RBRACE] = ACTIONS(2135), - [anon_sym_DASH_DASH] = ACTIONS(2135), - [anon_sym_default] = ACTIONS(2133), - [anon_sym_else] = ACTIONS(2133), - [sym_identifier] = ACTIONS(2133), - [anon_sym_for] = ACTIONS(2133), - [anon_sym_break] = ACTIONS(2133), - [anon_sym_BANG] = ACTIONS(2135), - [anon_sym_DASH] = ACTIONS(2133), - [sym_number_literal] = ACTIONS(2135), - [anon_sym_DQUOTE] = ACTIONS(2135), - [anon_sym_SQUOTE] = ACTIONS(2135), - [anon_sym_STAR] = ACTIONS(2135), - [anon_sym_if] = ACTIONS(2133), - [anon_sym_PLUS_PLUS] = ACTIONS(2135), - [anon_sym_switch] = ACTIONS(2133), + [sym_type_qualifier] = STATE(847), + [sym__type_specifier] = STATE(923), + [sym_sized_type_specifier] = STATE(923), + [sym_enum_specifier] = STATE(923), + [sym_struct_specifier] = STATE(923), + [sym_union_specifier] = STATE(923), + [sym_macro_type_specifier] = STATE(923), + [aux_sym_type_definition_repeat1] = STATE(847), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(1209), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(2509), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2133), - [anon_sym_return] = ACTIONS(2133), - [anon_sym_while] = ACTIONS(2133), - [anon_sym_continue] = ACTIONS(2133), - [anon_sym_SEMI] = ACTIONS(2135), - [anon_sym_PLUS] = ACTIONS(2133), - [anon_sym_L_SQUOTE] = ACTIONS(2135), - [anon_sym_sizeof] = ACTIONS(2133), }, [841] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(368), - [anon_sym_union] = ACTIONS(368), - [anon_sym_unsigned] = ACTIONS(368), - [anon_sym_restrict] = ACTIONS(368), - [anon_sym_short] = ACTIONS(368), - [anon_sym_static] = ACTIONS(368), - [anon_sym_volatile] = ACTIONS(368), - [anon_sym_register] = ACTIONS(368), - [anon_sym_extern] = ACTIONS(368), - [aux_sym_preproc_else_token1] = ACTIONS(368), - [aux_sym_preproc_if_token2] = ACTIONS(368), - [sym_preproc_directive] = ACTIONS(368), - [anon_sym_signed] = ACTIONS(368), - [aux_sym_preproc_if_token1] = ACTIONS(368), - [anon_sym_long] = ACTIONS(368), - [anon_sym_enum] = ACTIONS(368), - [anon_sym_const] = ACTIONS(368), - [anon_sym_struct] = ACTIONS(368), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(368), - [aux_sym_preproc_elif_token1] = ACTIONS(368), - [aux_sym_preproc_def_token1] = ACTIONS(368), - [anon_sym__Atomic] = ACTIONS(368), - [anon_sym_auto] = ACTIONS(368), - [sym_primitive_type] = ACTIONS(368), - [anon_sym_inline] = ACTIONS(368), - [anon_sym___attribute__] = ACTIONS(368), - [sym_identifier] = ACTIONS(368), + [sym_string_literal] = STATE(613), + [sym_identifier] = ACTIONS(2422), + [anon_sym_extern] = ACTIONS(2422), + [anon_sym___attribute__] = ACTIONS(2422), + [anon_sym_static] = ACTIONS(2422), + [anon_sym_auto] = ACTIONS(2422), + [anon_sym_register] = ACTIONS(2422), + [anon_sym_inline] = ACTIONS(2422), + [anon_sym_const] = ACTIONS(2422), + [anon_sym_volatile] = ACTIONS(2422), + [anon_sym_restrict] = ACTIONS(2422), + [anon_sym__Atomic] = ACTIONS(2422), + [anon_sym_signed] = ACTIONS(2422), + [anon_sym_unsigned] = ACTIONS(2422), + [anon_sym_long] = ACTIONS(2422), + [anon_sym_short] = ACTIONS(2422), + [sym_primitive_type] = ACTIONS(2422), + [anon_sym_enum] = ACTIONS(2422), + [anon_sym_struct] = ACTIONS(2422), + [anon_sym_union] = ACTIONS(2422), + [anon_sym_L_DQUOTE] = ACTIONS(2491), + [anon_sym_DQUOTE] = ACTIONS(2491), + [sym_comment] = ACTIONS(3), }, [842] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(826), - [anon_sym_union] = ACTIONS(826), - [anon_sym_unsigned] = ACTIONS(826), - [anon_sym_restrict] = ACTIONS(826), - [anon_sym_short] = ACTIONS(826), - [anon_sym_static] = ACTIONS(826), - [anon_sym_volatile] = ACTIONS(826), - [anon_sym_register] = ACTIONS(826), - [anon_sym_extern] = ACTIONS(826), - [aux_sym_preproc_else_token1] = ACTIONS(826), - [aux_sym_preproc_if_token2] = ACTIONS(826), - [sym_preproc_directive] = ACTIONS(826), - [anon_sym_signed] = ACTIONS(826), - [aux_sym_preproc_if_token1] = ACTIONS(826), - [anon_sym_long] = ACTIONS(826), - [anon_sym_enum] = ACTIONS(826), - [anon_sym_const] = ACTIONS(826), - [anon_sym_struct] = ACTIONS(826), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(826), - [aux_sym_preproc_elif_token1] = ACTIONS(826), - [aux_sym_preproc_def_token1] = ACTIONS(826), - [anon_sym__Atomic] = ACTIONS(826), - [anon_sym_auto] = ACTIONS(826), - [sym_primitive_type] = ACTIONS(826), - [anon_sym_inline] = ACTIONS(826), - [anon_sym___attribute__] = ACTIONS(826), - [sym_identifier] = ACTIONS(826), + [sym_string_literal] = STATE(614), + [sym_identifier] = ACTIONS(2422), + [anon_sym_extern] = ACTIONS(2422), + [anon_sym___attribute__] = ACTIONS(2422), + [anon_sym_static] = ACTIONS(2422), + [anon_sym_auto] = ACTIONS(2422), + [anon_sym_register] = ACTIONS(2422), + [anon_sym_inline] = ACTIONS(2422), + [anon_sym_const] = ACTIONS(2422), + [anon_sym_volatile] = ACTIONS(2422), + [anon_sym_restrict] = ACTIONS(2422), + [anon_sym__Atomic] = ACTIONS(2422), + [anon_sym_signed] = ACTIONS(2422), + [anon_sym_unsigned] = ACTIONS(2422), + [anon_sym_long] = ACTIONS(2422), + [anon_sym_short] = ACTIONS(2422), + [sym_primitive_type] = ACTIONS(2422), + [anon_sym_enum] = ACTIONS(2422), + [anon_sym_struct] = ACTIONS(2422), + [anon_sym_union] = ACTIONS(2422), + [anon_sym_L_DQUOTE] = ACTIONS(2491), + [anon_sym_DQUOTE] = ACTIONS(2491), + [sym_comment] = ACTIONS(3), }, [843] = { - [sym_true] = ACTIONS(892), - [anon_sym_restrict] = ACTIONS(892), - [sym_null] = ACTIONS(892), - [anon_sym_goto] = ACTIONS(892), - [aux_sym_preproc_if_token2] = ACTIONS(892), - [anon_sym_const] = ACTIONS(892), - [anon_sym_typedef] = ACTIONS(892), - [anon_sym_DASH_DASH] = ACTIONS(894), - [anon_sym__Atomic] = ACTIONS(892), - [sym_identifier] = ACTIONS(892), - [aux_sym_preproc_ifdef_token1] = ACTIONS(892), - [sym_number_literal] = ACTIONS(894), - [anon_sym_volatile] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(894), - [anon_sym_extern] = ACTIONS(892), - [anon_sym_PLUS_PLUS] = ACTIONS(894), - [anon_sym_struct] = ACTIONS(892), - [anon_sym_signed] = ACTIONS(892), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(892), - [anon_sym_while] = ACTIONS(892), - [aux_sym_preproc_ifdef_token2] = ACTIONS(892), - [anon_sym_L_SQUOTE] = ACTIONS(894), - [anon_sym___attribute__] = ACTIONS(892), - [anon_sym_sizeof] = ACTIONS(892), - [anon_sym_LBRACE] = ACTIONS(894), - [anon_sym_union] = ACTIONS(892), - [anon_sym_unsigned] = ACTIONS(892), - [anon_sym_short] = ACTIONS(892), - [anon_sym_do] = ACTIONS(892), - [sym_preproc_directive] = ACTIONS(892), - [anon_sym_AMP] = ACTIONS(894), - [aux_sym_preproc_if_token1] = ACTIONS(892), - [anon_sym_TILDE] = ACTIONS(894), - [anon_sym_L_DQUOTE] = ACTIONS(894), - [anon_sym_LPAREN2] = ACTIONS(894), - [anon_sym_else] = ACTIONS(892), - [sym_primitive_type] = ACTIONS(892), - [anon_sym_for] = ACTIONS(892), - [anon_sym_break] = ACTIONS(892), - [anon_sym_BANG] = ACTIONS(894), - [aux_sym_preproc_include_token1] = ACTIONS(892), - [anon_sym_DASH] = ACTIONS(892), - [anon_sym_static] = ACTIONS(892), - [anon_sym_DQUOTE] = ACTIONS(894), - [anon_sym_register] = ACTIONS(892), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_if] = ACTIONS(892), - [anon_sym_switch] = ACTIONS(892), - [anon_sym_enum] = ACTIONS(892), - [sym_false] = ACTIONS(892), - [anon_sym_return] = ACTIONS(892), - [anon_sym_continue] = ACTIONS(892), - [anon_sym_SEMI] = ACTIONS(894), - [aux_sym_preproc_def_token1] = ACTIONS(892), - [anon_sym_PLUS] = ACTIONS(892), - [anon_sym_auto] = ACTIONS(892), - [anon_sym_inline] = ACTIONS(892), + [sym_type_qualifier] = STATE(847), + [sym__type_specifier] = STATE(912), + [sym_sized_type_specifier] = STATE(912), + [sym_enum_specifier] = STATE(912), + [sym_struct_specifier] = STATE(912), + [sym_union_specifier] = STATE(912), + [sym_macro_type_specifier] = STATE(912), + [aux_sym_type_definition_repeat1] = STATE(847), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(1209), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [sym_comment] = ACTIONS(3), }, [844] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1062), - [anon_sym_union] = ACTIONS(1062), - [anon_sym_unsigned] = ACTIONS(1062), - [anon_sym_restrict] = ACTIONS(1062), - [anon_sym_short] = ACTIONS(1062), - [anon_sym_static] = ACTIONS(1062), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_register] = ACTIONS(1062), - [anon_sym_extern] = ACTIONS(1062), - [aux_sym_preproc_else_token1] = ACTIONS(1062), - [aux_sym_preproc_if_token2] = ACTIONS(1062), - [sym_preproc_directive] = ACTIONS(1062), - [anon_sym_signed] = ACTIONS(1062), - [aux_sym_preproc_if_token1] = ACTIONS(1062), - [anon_sym_long] = ACTIONS(1062), - [anon_sym_enum] = ACTIONS(1062), - [anon_sym_const] = ACTIONS(1062), - [anon_sym_struct] = ACTIONS(1062), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1062), - [aux_sym_preproc_elif_token1] = ACTIONS(1062), - [aux_sym_preproc_def_token1] = ACTIONS(1062), - [anon_sym__Atomic] = ACTIONS(1062), - [anon_sym_auto] = ACTIONS(1062), - [sym_primitive_type] = ACTIONS(1062), - [anon_sym_inline] = ACTIONS(1062), - [anon_sym___attribute__] = ACTIONS(1062), - [sym_identifier] = ACTIONS(1062), + [sym_type_qualifier] = STATE(839), + [sym__type_specifier] = STATE(909), + [sym_sized_type_specifier] = STATE(909), + [sym_enum_specifier] = STATE(909), + [sym_struct_specifier] = STATE(909), + [sym_union_specifier] = STATE(909), + [sym_macro_type_specifier] = STATE(909), + [aux_sym_type_definition_repeat1] = STATE(839), + [aux_sym_sized_type_specifier_repeat1] = STATE(826), + [sym_identifier] = ACTIONS(1209), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(37), + [anon_sym_long] = ACTIONS(37), + [anon_sym_short] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(2513), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [sym_comment] = ACTIONS(3), }, [845] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1400), - [anon_sym_union] = ACTIONS(1400), - [anon_sym_unsigned] = ACTIONS(1400), - [anon_sym_restrict] = ACTIONS(1400), - [anon_sym_short] = ACTIONS(1400), - [anon_sym_static] = ACTIONS(1400), - [anon_sym_volatile] = ACTIONS(1400), - [anon_sym_register] = ACTIONS(1400), - [anon_sym_extern] = ACTIONS(1400), - [aux_sym_preproc_else_token1] = ACTIONS(1400), - [aux_sym_preproc_if_token2] = ACTIONS(1400), - [sym_preproc_directive] = ACTIONS(1400), - [anon_sym_signed] = ACTIONS(1400), - [aux_sym_preproc_if_token1] = ACTIONS(1400), - [anon_sym_long] = ACTIONS(1400), - [anon_sym_enum] = ACTIONS(1400), - [anon_sym_const] = ACTIONS(1400), - [anon_sym_struct] = ACTIONS(1400), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1400), - [aux_sym_preproc_elif_token1] = ACTIONS(1400), - [aux_sym_preproc_def_token1] = ACTIONS(1400), - [anon_sym__Atomic] = ACTIONS(1400), - [anon_sym_auto] = ACTIONS(1400), - [sym_primitive_type] = ACTIONS(1400), - [anon_sym_inline] = ACTIONS(1400), - [anon_sym___attribute__] = ACTIONS(1400), - [sym_identifier] = ACTIONS(1400), + [sym_attribute_specifier] = STATE(662), + [sym_storage_class_specifier] = STATE(662), + [sym_type_qualifier] = STATE(662), + [aux_sym__declaration_specifiers_repeat1] = STATE(662), + [sym_identifier] = ACTIONS(2515), + [anon_sym_COMMA] = ACTIONS(2517), + [anon_sym_RPAREN] = ACTIONS(2517), + [anon_sym_SEMI] = ACTIONS(2517), + [anon_sym_extern] = ACTIONS(33), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(2517), + [anon_sym_STAR] = ACTIONS(2517), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_COLON] = ACTIONS(2517), + [sym_comment] = ACTIONS(3), }, [846] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1410), - [anon_sym_union] = ACTIONS(1410), - [anon_sym_unsigned] = ACTIONS(1410), - [anon_sym_restrict] = ACTIONS(1410), - [anon_sym_short] = ACTIONS(1410), - [anon_sym_static] = ACTIONS(1410), - [anon_sym_volatile] = ACTIONS(1410), - [anon_sym_register] = ACTIONS(1410), - [anon_sym_extern] = ACTIONS(1410), - [aux_sym_preproc_else_token1] = ACTIONS(1410), - [aux_sym_preproc_if_token2] = ACTIONS(1410), - [sym_preproc_directive] = ACTIONS(1410), - [anon_sym_signed] = ACTIONS(1410), - [aux_sym_preproc_if_token1] = ACTIONS(1410), - [anon_sym_long] = ACTIONS(1410), - [anon_sym_enum] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1410), - [anon_sym_struct] = ACTIONS(1410), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1410), - [aux_sym_preproc_elif_token1] = ACTIONS(1410), - [aux_sym_preproc_def_token1] = ACTIONS(1410), - [anon_sym__Atomic] = ACTIONS(1410), - [anon_sym_auto] = ACTIONS(1410), - [sym_primitive_type] = ACTIONS(1410), - [anon_sym_inline] = ACTIONS(1410), - [anon_sym___attribute__] = ACTIONS(1410), - [sym_identifier] = ACTIONS(1410), + [sym_type_qualifier] = STATE(847), + [sym__type_specifier] = STATE(877), + [sym_sized_type_specifier] = STATE(877), + [sym_enum_specifier] = STATE(877), + [sym_struct_specifier] = STATE(877), + [sym_union_specifier] = STATE(877), + [sym_macro_type_specifier] = STATE(877), + [aux_sym_type_definition_repeat1] = STATE(847), + [aux_sym_sized_type_specifier_repeat1] = STATE(881), + [sym_identifier] = ACTIONS(1209), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [anon_sym_signed] = ACTIONS(1055), + [anon_sym_unsigned] = ACTIONS(1055), + [anon_sym_long] = ACTIONS(1055), + [anon_sym_short] = ACTIONS(1055), + [sym_primitive_type] = ACTIONS(2519), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(43), + [anon_sym_union] = ACTIONS(45), + [sym_comment] = ACTIONS(3), }, [847] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1763), - [anon_sym_union] = ACTIONS(1763), - [anon_sym_unsigned] = ACTIONS(1763), - [anon_sym_restrict] = ACTIONS(1763), - [anon_sym_short] = ACTIONS(1763), - [anon_sym_static] = ACTIONS(1763), - [anon_sym_volatile] = ACTIONS(1763), - [anon_sym_register] = ACTIONS(1763), - [anon_sym_extern] = ACTIONS(1763), - [aux_sym_preproc_else_token1] = ACTIONS(1763), - [aux_sym_preproc_if_token2] = ACTIONS(1763), - [sym_preproc_directive] = ACTIONS(1763), - [anon_sym_signed] = ACTIONS(1763), - [aux_sym_preproc_if_token1] = ACTIONS(1763), - [anon_sym_long] = ACTIONS(1763), - [anon_sym_enum] = ACTIONS(1763), - [anon_sym_const] = ACTIONS(1763), - [anon_sym_struct] = ACTIONS(1763), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1763), - [aux_sym_preproc_elif_token1] = ACTIONS(1763), - [aux_sym_preproc_def_token1] = ACTIONS(1763), - [anon_sym__Atomic] = ACTIONS(1763), - [anon_sym_auto] = ACTIONS(1763), - [sym_primitive_type] = ACTIONS(1763), - [anon_sym_inline] = ACTIONS(1763), - [anon_sym___attribute__] = ACTIONS(1763), - [sym_identifier] = ACTIONS(1763), + [sym_type_qualifier] = STATE(847), + [aux_sym_type_definition_repeat1] = STATE(847), + [sym_identifier] = ACTIONS(2426), + [anon_sym_COMMA] = ACTIONS(2428), + [anon_sym_RPAREN] = ACTIONS(2428), + [anon_sym_LPAREN2] = ACTIONS(2428), + [anon_sym_STAR] = ACTIONS(2428), + [anon_sym_LBRACK] = ACTIONS(2428), + [anon_sym_const] = ACTIONS(2521), + [anon_sym_volatile] = ACTIONS(2521), + [anon_sym_restrict] = ACTIONS(2521), + [anon_sym__Atomic] = ACTIONS(2521), + [anon_sym_signed] = ACTIONS(2426), + [anon_sym_unsigned] = ACTIONS(2426), + [anon_sym_long] = ACTIONS(2426), + [anon_sym_short] = ACTIONS(2426), + [sym_primitive_type] = ACTIONS(2426), + [anon_sym_enum] = ACTIONS(2426), + [anon_sym_struct] = ACTIONS(2426), + [anon_sym_union] = ACTIONS(2426), + [sym_comment] = ACTIONS(3), }, [848] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(368), - [anon_sym_union] = ACTIONS(368), - [anon_sym_unsigned] = ACTIONS(368), - [anon_sym_restrict] = ACTIONS(368), - [anon_sym_short] = ACTIONS(368), - [anon_sym_static] = ACTIONS(368), - [anon_sym_volatile] = ACTIONS(368), - [anon_sym_register] = ACTIONS(368), - [anon_sym_extern] = ACTIONS(368), - [aux_sym_preproc_if_token2] = ACTIONS(368), - [sym_preproc_directive] = ACTIONS(368), - [anon_sym_signed] = ACTIONS(368), - [aux_sym_preproc_if_token1] = ACTIONS(368), - [anon_sym_long] = ACTIONS(368), - [anon_sym_enum] = ACTIONS(368), - [anon_sym_const] = ACTIONS(368), - [anon_sym_struct] = ACTIONS(368), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(368), - [aux_sym_preproc_def_token1] = ACTIONS(368), - [anon_sym__Atomic] = ACTIONS(368), - [anon_sym_auto] = ACTIONS(368), - [sym_primitive_type] = ACTIONS(368), - [anon_sym_inline] = ACTIONS(368), - [anon_sym___attribute__] = ACTIONS(368), - [sym_identifier] = ACTIONS(368), + [sym_enumerator_list] = STATE(853), + [sym_identifier] = ACTIONS(2524), + [anon_sym_COMMA] = ACTIONS(2526), + [anon_sym_RPAREN] = ACTIONS(2526), + [anon_sym_SEMI] = ACTIONS(2526), + [anon_sym_extern] = ACTIONS(2524), + [anon_sym___attribute__] = ACTIONS(2524), + [anon_sym_LPAREN2] = ACTIONS(2526), + [anon_sym_LBRACE] = ACTIONS(2528), + [anon_sym_STAR] = ACTIONS(2526), + [anon_sym_LBRACK] = ACTIONS(2526), + [anon_sym_static] = ACTIONS(2524), + [anon_sym_auto] = ACTIONS(2524), + [anon_sym_register] = ACTIONS(2524), + [anon_sym_inline] = ACTIONS(2524), + [anon_sym_const] = ACTIONS(2524), + [anon_sym_volatile] = ACTIONS(2524), + [anon_sym_restrict] = ACTIONS(2524), + [anon_sym__Atomic] = ACTIONS(2524), + [anon_sym_COLON] = ACTIONS(2526), + [sym_comment] = ACTIONS(3), }, [849] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(826), - [anon_sym_union] = ACTIONS(826), - [anon_sym_unsigned] = ACTIONS(826), - [anon_sym_restrict] = ACTIONS(826), - [anon_sym_short] = ACTIONS(826), - [anon_sym_static] = ACTIONS(826), - [anon_sym_volatile] = ACTIONS(826), - [anon_sym_register] = ACTIONS(826), - [anon_sym_extern] = ACTIONS(826), - [aux_sym_preproc_if_token2] = ACTIONS(826), - [sym_preproc_directive] = ACTIONS(826), - [anon_sym_signed] = ACTIONS(826), - [aux_sym_preproc_if_token1] = ACTIONS(826), - [anon_sym_long] = ACTIONS(826), - [anon_sym_enum] = ACTIONS(826), - [anon_sym_const] = ACTIONS(826), - [anon_sym_struct] = ACTIONS(826), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(826), - [aux_sym_preproc_def_token1] = ACTIONS(826), - [anon_sym__Atomic] = ACTIONS(826), - [anon_sym_auto] = ACTIONS(826), - [sym_primitive_type] = ACTIONS(826), - [anon_sym_inline] = ACTIONS(826), - [anon_sym___attribute__] = ACTIONS(826), - [sym_identifier] = ACTIONS(826), + [sym_field_declaration_list] = STATE(867), + [sym_identifier] = ACTIONS(2530), + [anon_sym_COMMA] = ACTIONS(2532), + [anon_sym_RPAREN] = ACTIONS(2532), + [anon_sym_SEMI] = ACTIONS(2532), + [anon_sym_extern] = ACTIONS(2530), + [anon_sym___attribute__] = ACTIONS(2530), + [anon_sym_LPAREN2] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2534), + [anon_sym_STAR] = ACTIONS(2532), + [anon_sym_LBRACK] = ACTIONS(2532), + [anon_sym_static] = ACTIONS(2530), + [anon_sym_auto] = ACTIONS(2530), + [anon_sym_register] = ACTIONS(2530), + [anon_sym_inline] = ACTIONS(2530), + [anon_sym_const] = ACTIONS(2530), + [anon_sym_volatile] = ACTIONS(2530), + [anon_sym_restrict] = ACTIONS(2530), + [anon_sym__Atomic] = ACTIONS(2530), + [anon_sym_COLON] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), }, [850] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1062), - [anon_sym_union] = ACTIONS(1062), - [anon_sym_unsigned] = ACTIONS(1062), - [anon_sym_restrict] = ACTIONS(1062), - [anon_sym_short] = ACTIONS(1062), - [anon_sym_static] = ACTIONS(1062), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym_register] = ACTIONS(1062), - [anon_sym_extern] = ACTIONS(1062), - [aux_sym_preproc_if_token2] = ACTIONS(1062), - [sym_preproc_directive] = ACTIONS(1062), - [anon_sym_signed] = ACTIONS(1062), - [aux_sym_preproc_if_token1] = ACTIONS(1062), - [anon_sym_long] = ACTIONS(1062), - [anon_sym_enum] = ACTIONS(1062), - [anon_sym_const] = ACTIONS(1062), - [anon_sym_struct] = ACTIONS(1062), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1062), - [aux_sym_preproc_def_token1] = ACTIONS(1062), - [anon_sym__Atomic] = ACTIONS(1062), - [anon_sym_auto] = ACTIONS(1062), - [sym_primitive_type] = ACTIONS(1062), - [anon_sym_inline] = ACTIONS(1062), - [anon_sym___attribute__] = ACTIONS(1062), - [sym_identifier] = ACTIONS(1062), + [sym_identifier] = ACTIONS(1109), + [anon_sym_extern] = ACTIONS(1109), + [anon_sym___attribute__] = ACTIONS(1109), + [anon_sym_LBRACE] = ACTIONS(1111), + [anon_sym_static] = ACTIONS(1109), + [anon_sym_auto] = ACTIONS(1109), + [anon_sym_register] = ACTIONS(1109), + [anon_sym_inline] = ACTIONS(1109), + [anon_sym_const] = ACTIONS(1109), + [anon_sym_volatile] = ACTIONS(1109), + [anon_sym_restrict] = ACTIONS(1109), + [anon_sym__Atomic] = ACTIONS(1109), + [anon_sym_signed] = ACTIONS(1109), + [anon_sym_unsigned] = ACTIONS(1109), + [anon_sym_long] = ACTIONS(1109), + [anon_sym_short] = ACTIONS(1109), + [sym_primitive_type] = ACTIONS(1109), + [anon_sym_enum] = ACTIONS(1109), + [anon_sym_struct] = ACTIONS(1109), + [anon_sym_union] = ACTIONS(1109), + [sym_comment] = ACTIONS(3), }, [851] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1400), - [anon_sym_union] = ACTIONS(1400), - [anon_sym_unsigned] = ACTIONS(1400), - [anon_sym_restrict] = ACTIONS(1400), - [anon_sym_short] = ACTIONS(1400), - [anon_sym_static] = ACTIONS(1400), - [anon_sym_volatile] = ACTIONS(1400), - [anon_sym_register] = ACTIONS(1400), - [anon_sym_extern] = ACTIONS(1400), - [aux_sym_preproc_if_token2] = ACTIONS(1400), - [sym_preproc_directive] = ACTIONS(1400), - [anon_sym_signed] = ACTIONS(1400), - [aux_sym_preproc_if_token1] = ACTIONS(1400), - [anon_sym_long] = ACTIONS(1400), - [anon_sym_enum] = ACTIONS(1400), - [anon_sym_const] = ACTIONS(1400), - [anon_sym_struct] = ACTIONS(1400), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1400), - [aux_sym_preproc_def_token1] = ACTIONS(1400), - [anon_sym__Atomic] = ACTIONS(1400), - [anon_sym_auto] = ACTIONS(1400), - [sym_primitive_type] = ACTIONS(1400), - [anon_sym_inline] = ACTIONS(1400), - [anon_sym___attribute__] = ACTIONS(1400), - [sym_identifier] = ACTIONS(1400), + [sym_identifier] = ACTIONS(1121), + [anon_sym_extern] = ACTIONS(1121), + [anon_sym___attribute__] = ACTIONS(1121), + [anon_sym_LBRACE] = ACTIONS(1123), + [anon_sym_static] = ACTIONS(1121), + [anon_sym_auto] = ACTIONS(1121), + [anon_sym_register] = ACTIONS(1121), + [anon_sym_inline] = ACTIONS(1121), + [anon_sym_const] = ACTIONS(1121), + [anon_sym_volatile] = ACTIONS(1121), + [anon_sym_restrict] = ACTIONS(1121), + [anon_sym__Atomic] = ACTIONS(1121), + [anon_sym_signed] = ACTIONS(1121), + [anon_sym_unsigned] = ACTIONS(1121), + [anon_sym_long] = ACTIONS(1121), + [anon_sym_short] = ACTIONS(1121), + [sym_primitive_type] = ACTIONS(1121), + [anon_sym_enum] = ACTIONS(1121), + [anon_sym_struct] = ACTIONS(1121), + [anon_sym_union] = ACTIONS(1121), + [sym_comment] = ACTIONS(3), }, [852] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1410), - [anon_sym_union] = ACTIONS(1410), - [anon_sym_unsigned] = ACTIONS(1410), - [anon_sym_restrict] = ACTIONS(1410), - [anon_sym_short] = ACTIONS(1410), - [anon_sym_static] = ACTIONS(1410), - [anon_sym_volatile] = ACTIONS(1410), - [anon_sym_register] = ACTIONS(1410), - [anon_sym_extern] = ACTIONS(1410), - [aux_sym_preproc_if_token2] = ACTIONS(1410), - [sym_preproc_directive] = ACTIONS(1410), - [anon_sym_signed] = ACTIONS(1410), - [aux_sym_preproc_if_token1] = ACTIONS(1410), - [anon_sym_long] = ACTIONS(1410), - [anon_sym_enum] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1410), - [anon_sym_struct] = ACTIONS(1410), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1410), - [aux_sym_preproc_def_token1] = ACTIONS(1410), - [anon_sym__Atomic] = ACTIONS(1410), - [anon_sym_auto] = ACTIONS(1410), - [sym_primitive_type] = ACTIONS(1410), - [anon_sym_inline] = ACTIONS(1410), - [anon_sym___attribute__] = ACTIONS(1410), - [sym_identifier] = ACTIONS(1410), + [sym_field_declaration_list] = STATE(866), + [sym_identifier] = ACTIONS(2536), + [anon_sym_COMMA] = ACTIONS(2538), + [anon_sym_RPAREN] = ACTIONS(2538), + [anon_sym_SEMI] = ACTIONS(2538), + [anon_sym_extern] = ACTIONS(2536), + [anon_sym___attribute__] = ACTIONS(2536), + [anon_sym_LPAREN2] = ACTIONS(2538), + [anon_sym_LBRACE] = ACTIONS(2534), + [anon_sym_STAR] = ACTIONS(2538), + [anon_sym_LBRACK] = ACTIONS(2538), + [anon_sym_static] = ACTIONS(2536), + [anon_sym_auto] = ACTIONS(2536), + [anon_sym_register] = ACTIONS(2536), + [anon_sym_inline] = ACTIONS(2536), + [anon_sym_const] = ACTIONS(2536), + [anon_sym_volatile] = ACTIONS(2536), + [anon_sym_restrict] = ACTIONS(2536), + [anon_sym__Atomic] = ACTIONS(2536), + [anon_sym_COLON] = ACTIONS(2538), + [sym_comment] = ACTIONS(3), }, [853] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1763), - [anon_sym_union] = ACTIONS(1763), - [anon_sym_unsigned] = ACTIONS(1763), - [anon_sym_restrict] = ACTIONS(1763), - [anon_sym_short] = ACTIONS(1763), - [anon_sym_static] = ACTIONS(1763), - [anon_sym_volatile] = ACTIONS(1763), - [anon_sym_register] = ACTIONS(1763), - [anon_sym_extern] = ACTIONS(1763), - [aux_sym_preproc_if_token2] = ACTIONS(1763), - [sym_preproc_directive] = ACTIONS(1763), - [anon_sym_signed] = ACTIONS(1763), - [aux_sym_preproc_if_token1] = ACTIONS(1763), - [anon_sym_long] = ACTIONS(1763), - [anon_sym_enum] = ACTIONS(1763), - [anon_sym_const] = ACTIONS(1763), - [anon_sym_struct] = ACTIONS(1763), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1763), - [aux_sym_preproc_def_token1] = ACTIONS(1763), - [anon_sym__Atomic] = ACTIONS(1763), - [anon_sym_auto] = ACTIONS(1763), - [sym_primitive_type] = ACTIONS(1763), - [anon_sym_inline] = ACTIONS(1763), - [anon_sym___attribute__] = ACTIONS(1763), - [sym_identifier] = ACTIONS(1763), + [sym_identifier] = ACTIONS(2540), + [anon_sym_COMMA] = ACTIONS(2542), + [anon_sym_RPAREN] = ACTIONS(2542), + [anon_sym_SEMI] = ACTIONS(2542), + [anon_sym_extern] = ACTIONS(2540), + [anon_sym___attribute__] = ACTIONS(2540), + [anon_sym_LPAREN2] = ACTIONS(2542), + [anon_sym_STAR] = ACTIONS(2542), + [anon_sym_LBRACK] = ACTIONS(2542), + [anon_sym_static] = ACTIONS(2540), + [anon_sym_auto] = ACTIONS(2540), + [anon_sym_register] = ACTIONS(2540), + [anon_sym_inline] = ACTIONS(2540), + [anon_sym_const] = ACTIONS(2540), + [anon_sym_volatile] = ACTIONS(2540), + [anon_sym_restrict] = ACTIONS(2540), + [anon_sym__Atomic] = ACTIONS(2540), + [anon_sym_COLON] = ACTIONS(2542), + [sym_comment] = ACTIONS(3), }, [854] = { - [sym_do_statement] = STATE(870), - [sym_preproc_function_def] = STATE(870), - [sym__expression] = STATE(867), - [sym_binary_expression] = STATE(867), - [sym_declaration] = STATE(870), - [sym_call_expression] = STATE(36), - [sym__type_specifier] = STATE(869), - [sym_break_statement] = STATE(870), - [sym_assignment_expression] = STATE(867), - [sym_type_definition] = STATE(870), - [sym_compound_literal_expression] = STATE(867), - [sym_char_literal] = STATE(867), - [sym__empty_declaration] = STATE(870), - [sym_sized_type_specifier] = STATE(869), - [sym_preproc_include] = STATE(870), - [sym_continue_statement] = STATE(870), - [sym_preproc_ifdef] = STATE(870), - [sym_pointer_expression] = STATE(36), - [sym_sizeof_expression] = STATE(867), - [sym_attribute_specifier] = STATE(43), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(867), - [sym_macro_type_specifier] = STATE(869), - [sym_storage_class_specifier] = STATE(43), - [sym_struct_specifier] = STATE(869), - [sym_if_statement] = STATE(870), - [sym_preproc_def] = STATE(870), - [sym_for_statement] = STATE(870), - [sym_comma_expression] = STATE(868), - [sym_function_definition] = STATE(870), - [sym_update_expression] = STATE(867), - [sym_type_qualifier] = STATE(43), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_union_specifier] = STATE(869), - [sym_switch_statement] = STATE(870), - [sym_return_statement] = STATE(870), - [sym_preproc_call] = STATE(870), - [sym_conditional_expression] = STATE(867), - [sym_cast_expression] = STATE(867), - [sym__declaration_specifiers] = STATE(1151), - [sym_field_expression] = STATE(36), - [sym_enum_specifier] = STATE(869), - [sym_labeled_statement] = STATE(870), - [sym_while_statement] = STATE(870), - [sym_preproc_if] = STATE(870), - [sym_goto_statement] = STATE(870), - [sym_unary_expression] = STATE(867), - [sym_linkage_specification] = STATE(870), - [sym_subscript_expression] = STATE(36), - [sym_string_literal] = STATE(41), - [aux_sym_translation_unit_repeat1] = STATE(870), - [sym_compound_statement] = STATE(870), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_expression_statement] = STATE(870), - [sym_true] = ACTIONS(81), - [anon_sym_restrict] = ACTIONS(7), - [sym_null] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_const] = ACTIONS(7), - [anon_sym_typedef] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(7), - [sym_identifier] = ACTIONS(87), - [aux_sym_preproc_ifdef_token1] = ACTIONS(89), - [sym_number_literal] = ACTIONS(91), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_extern] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_struct] = ACTIONS(25), - [anon_sym_signed] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(27), - [anon_sym_while] = ACTIONS(95), - [aux_sym_preproc_ifdef_token2] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_sizeof] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(97), - [anon_sym_union] = ACTIONS(37), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_short] = ACTIONS(27), - [anon_sym_do] = ACTIONS(99), - [sym_preproc_directive] = ACTIONS(101), - [anon_sym_AMP] = ACTIONS(43), - [aux_sym_preproc_if_token1] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(2447), - [sym_primitive_type] = ACTIONS(107), - [anon_sym_for] = ACTIONS(109), - [anon_sym_break] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(47), - [aux_sym_preproc_include_token1] = ACTIONS(113), - [anon_sym_DASH] = ACTIONS(61), - [anon_sym_static] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_register] = ACTIONS(63), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(115), - [anon_sym_switch] = ACTIONS(117), - [anon_sym_enum] = ACTIONS(69), - [sym_false] = ACTIONS(81), - [anon_sym_return] = ACTIONS(119), - [anon_sym_continue] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(123), - [aux_sym_preproc_def_token1] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_auto] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), + [sym_identifier] = ACTIONS(2544), + [anon_sym_COMMA] = ACTIONS(2546), + [anon_sym_RPAREN] = ACTIONS(2546), + [anon_sym_SEMI] = ACTIONS(2546), + [anon_sym_extern] = ACTIONS(2544), + [anon_sym___attribute__] = ACTIONS(2544), + [anon_sym_LPAREN2] = ACTIONS(2546), + [anon_sym_STAR] = ACTIONS(2546), + [anon_sym_LBRACK] = ACTIONS(2546), + [anon_sym_static] = ACTIONS(2544), + [anon_sym_auto] = ACTIONS(2544), + [anon_sym_register] = ACTIONS(2544), + [anon_sym_inline] = ACTIONS(2544), + [anon_sym_const] = ACTIONS(2544), + [anon_sym_volatile] = ACTIONS(2544), + [anon_sym_restrict] = ACTIONS(2544), + [anon_sym__Atomic] = ACTIONS(2544), + [anon_sym_COLON] = ACTIONS(2546), + [sym_comment] = ACTIONS(3), }, [855] = { - [sym_comment] = ACTIONS(147), - [anon_sym_LF] = ACTIONS(2449), - [sym_preproc_arg] = ACTIONS(2451), + [sym_attribute_specifier] = STATE(845), + [sym_storage_class_specifier] = STATE(845), + [sym_type_qualifier] = STATE(845), + [aux_sym__declaration_specifiers_repeat1] = STATE(845), + [sym_identifier] = ACTIONS(2495), + [anon_sym_SEMI] = ACTIONS(2548), + [anon_sym_extern] = ACTIONS(33), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(2497), + [anon_sym_STAR] = ACTIONS(2497), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [sym_comment] = ACTIONS(3), }, [856] = { - [sym_char_literal] = STATE(56), - [sym__expression] = STATE(56), - [sym_binary_expression] = STATE(56), - [sym_update_expression] = STATE(56), - [sym_call_expression] = STATE(56), - [sym_pointer_expression] = STATE(56), - [sym_unary_expression] = STATE(56), - [sym_sizeof_expression] = STATE(56), - [sym_subscript_expression] = STATE(56), - [sym_parenthesized_expression] = STATE(56), - [sym_concatenated_string] = STATE(56), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(56), - [sym_assignment_expression] = STATE(56), - [sym_cast_expression] = STATE(56), - [sym_field_expression] = STATE(56), - [sym_compound_literal_expression] = STATE(56), - [sym_true] = ACTIONS(169), - [sym_null] = ACTIONS(169), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(155), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(159), - [sym_identifier] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(155), - [anon_sym_DASH] = ACTIONS(161), - [sym_number_literal] = ACTIONS(173), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(159), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(165), + [sym_identifier] = ACTIONS(2550), + [anon_sym_COMMA] = ACTIONS(2552), + [anon_sym_RPAREN] = ACTIONS(2552), + [anon_sym_SEMI] = ACTIONS(2552), + [anon_sym_extern] = ACTIONS(2550), + [anon_sym___attribute__] = ACTIONS(2550), + [anon_sym_LPAREN2] = ACTIONS(2552), + [anon_sym_STAR] = ACTIONS(2552), + [anon_sym_LBRACK] = ACTIONS(2552), + [anon_sym_static] = ACTIONS(2550), + [anon_sym_auto] = ACTIONS(2550), + [anon_sym_register] = ACTIONS(2550), + [anon_sym_inline] = ACTIONS(2550), + [anon_sym_const] = ACTIONS(2550), + [anon_sym_volatile] = ACTIONS(2550), + [anon_sym_restrict] = ACTIONS(2550), + [anon_sym__Atomic] = ACTIONS(2550), + [anon_sym_COLON] = ACTIONS(2552), + [sym_comment] = ACTIONS(3), }, [857] = { - [sym_char_literal] = STATE(66), - [sym__expression] = STATE(66), - [sym_binary_expression] = STATE(66), - [sym_update_expression] = STATE(66), - [sym_call_expression] = STATE(66), - [sym_pointer_expression] = STATE(66), - [sym_unary_expression] = STATE(66), - [sym_sizeof_expression] = STATE(66), - [sym_subscript_expression] = STATE(66), - [sym_parenthesized_expression] = STATE(66), - [sym_concatenated_string] = STATE(66), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(66), - [sym_assignment_expression] = STATE(66), - [sym_cast_expression] = STATE(66), - [sym_field_expression] = STATE(66), - [sym_compound_literal_expression] = STATE(66), - [sym_true] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(155), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(159), - [sym_identifier] = ACTIONS(189), - [anon_sym_BANG] = ACTIONS(155), - [anon_sym_DASH] = ACTIONS(161), - [sym_number_literal] = ACTIONS(191), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(159), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(189), - [anon_sym_PLUS] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(165), + [sym_identifier] = ACTIONS(2554), + [anon_sym_COMMA] = ACTIONS(2556), + [anon_sym_RPAREN] = ACTIONS(2556), + [anon_sym_SEMI] = ACTIONS(2556), + [anon_sym_extern] = ACTIONS(2554), + [anon_sym___attribute__] = ACTIONS(2554), + [anon_sym_LPAREN2] = ACTIONS(2556), + [anon_sym_STAR] = ACTIONS(2556), + [anon_sym_LBRACK] = ACTIONS(2556), + [anon_sym_static] = ACTIONS(2554), + [anon_sym_auto] = ACTIONS(2554), + [anon_sym_register] = ACTIONS(2554), + [anon_sym_inline] = ACTIONS(2554), + [anon_sym_const] = ACTIONS(2554), + [anon_sym_volatile] = ACTIONS(2554), + [anon_sym_restrict] = ACTIONS(2554), + [anon_sym__Atomic] = ACTIONS(2554), + [anon_sym_COLON] = ACTIONS(2556), + [sym_comment] = ACTIONS(3), }, [858] = { - [aux_sym_string_literal_repeat1] = STATE(878), - [sym_comment] = ACTIONS(147), - [sym_escape_sequence] = ACTIONS(2453), - [aux_sym_string_literal_token1] = ACTIONS(2453), - [anon_sym_DQUOTE] = ACTIONS(2455), + [sym_identifier] = ACTIONS(2558), + [anon_sym_COMMA] = ACTIONS(2560), + [anon_sym_RPAREN] = ACTIONS(2560), + [anon_sym_SEMI] = ACTIONS(2560), + [anon_sym_extern] = ACTIONS(2558), + [anon_sym___attribute__] = ACTIONS(2558), + [anon_sym_LPAREN2] = ACTIONS(2560), + [anon_sym_STAR] = ACTIONS(2560), + [anon_sym_LBRACK] = ACTIONS(2560), + [anon_sym_static] = ACTIONS(2558), + [anon_sym_auto] = ACTIONS(2558), + [anon_sym_register] = ACTIONS(2558), + [anon_sym_inline] = ACTIONS(2558), + [anon_sym_const] = ACTIONS(2558), + [anon_sym_volatile] = ACTIONS(2558), + [anon_sym_restrict] = ACTIONS(2558), + [anon_sym__Atomic] = ACTIONS(2558), + [anon_sym_COLON] = ACTIONS(2560), + [sym_comment] = ACTIONS(3), }, [859] = { - [anon_sym_LT] = ACTIONS(197), - [anon_sym_GT_GT] = ACTIONS(197), - [anon_sym_PIPE_EQ] = ACTIONS(199), - [anon_sym_restrict] = ACTIONS(201), - [anon_sym_PERCENT_EQ] = ACTIONS(199), - [anon_sym_AMP_EQ] = ACTIONS(199), - [anon_sym_DASH_EQ] = ACTIONS(199), - [anon_sym_PIPE] = ACTIONS(197), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_EQ_EQ] = ACTIONS(203), - [anon_sym_AMP] = ACTIONS(197), - [anon_sym_SLASH] = ACTIONS(197), - [anon_sym_DASH_GT] = ACTIONS(203), - [anon_sym_const] = ACTIONS(201), - [anon_sym_LPAREN2] = ACTIONS(205), - [anon_sym_GT_EQ] = ACTIONS(203), - [anon_sym_LT_LT] = ACTIONS(197), - [anon_sym_DASH_DASH] = ACTIONS(203), - [anon_sym_EQ] = ACTIONS(209), - [anon_sym_COLON] = ACTIONS(2457), - [anon_sym__Atomic] = ACTIONS(201), - [sym_identifier] = ACTIONS(201), - [anon_sym_PLUS_EQ] = ACTIONS(199), - [anon_sym_STAR_EQ] = ACTIONS(199), - [anon_sym_LT_LT_EQ] = ACTIONS(199), - [anon_sym_QMARK] = ACTIONS(203), - [anon_sym_PIPE_PIPE] = ACTIONS(203), - [anon_sym_BANG_EQ] = ACTIONS(203), - [anon_sym_CARET_EQ] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(203), - [anon_sym_static] = ACTIONS(201), - [anon_sym_volatile] = ACTIONS(201), - [anon_sym_register] = ACTIONS(201), - [anon_sym_extern] = ACTIONS(201), - [anon_sym_STAR] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_LT_EQ] = ACTIONS(203), - [anon_sym_PLUS_PLUS] = ACTIONS(203), - [sym_comment] = ACTIONS(3), - [anon_sym_SLASH_EQ] = ACTIONS(199), - [anon_sym_GT_GT_EQ] = ACTIONS(199), - [anon_sym_AMP_AMP] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(216), - [anon_sym_CARET] = ACTIONS(197), - [anon_sym_GT] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_auto] = ACTIONS(201), - [anon_sym_DOT] = ACTIONS(203), - [anon_sym_inline] = ACTIONS(201), - [anon_sym___attribute__] = ACTIONS(201), - [anon_sym_LBRACK] = ACTIONS(203), + [sym_attribute_specifier] = STATE(845), + [sym_storage_class_specifier] = STATE(845), + [sym_type_qualifier] = STATE(845), + [aux_sym__declaration_specifiers_repeat1] = STATE(845), + [sym_identifier] = ACTIONS(2495), + [anon_sym_SEMI] = ACTIONS(2562), + [anon_sym_extern] = ACTIONS(33), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(2497), + [anon_sym_STAR] = ACTIONS(2497), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [sym_comment] = ACTIONS(3), }, [860] = { + [sym_identifier] = ACTIONS(2564), + [anon_sym_COMMA] = ACTIONS(2566), + [anon_sym_RPAREN] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym___attribute__] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_auto] = ACTIONS(2564), + [anon_sym_register] = ACTIONS(2564), + [anon_sym_inline] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_volatile] = ACTIONS(2564), + [anon_sym_restrict] = ACTIONS(2564), + [anon_sym__Atomic] = ACTIONS(2564), + [anon_sym_COLON] = ACTIONS(2566), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2459), }, [861] = { - [sym_string_literal] = STATE(516), + [sym_identifier] = ACTIONS(2568), + [anon_sym_COMMA] = ACTIONS(2570), + [anon_sym_RPAREN] = ACTIONS(2570), + [anon_sym_SEMI] = ACTIONS(2570), + [anon_sym_extern] = ACTIONS(2568), + [anon_sym___attribute__] = ACTIONS(2568), + [anon_sym_LPAREN2] = ACTIONS(2570), + [anon_sym_STAR] = ACTIONS(2570), + [anon_sym_LBRACK] = ACTIONS(2570), + [anon_sym_static] = ACTIONS(2568), + [anon_sym_auto] = ACTIONS(2568), + [anon_sym_register] = ACTIONS(2568), + [anon_sym_inline] = ACTIONS(2568), + [anon_sym_const] = ACTIONS(2568), + [anon_sym_volatile] = ACTIONS(2568), + [anon_sym_restrict] = ACTIONS(2568), + [anon_sym__Atomic] = ACTIONS(2568), + [anon_sym_COLON] = ACTIONS(2570), [sym_comment] = ACTIONS(3), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [sym_system_lib_string] = ACTIONS(2463), - [anon_sym_DQUOTE] = ACTIONS(2461), }, [862] = { - [sym_parenthesized_expression] = STATE(517), + [sym_identifier] = ACTIONS(2572), + [anon_sym_COMMA] = ACTIONS(2574), + [anon_sym_RPAREN] = ACTIONS(2574), + [anon_sym_SEMI] = ACTIONS(2574), + [anon_sym_extern] = ACTIONS(2572), + [anon_sym___attribute__] = ACTIONS(2572), + [anon_sym_LPAREN2] = ACTIONS(2574), + [anon_sym_STAR] = ACTIONS(2574), + [anon_sym_LBRACK] = ACTIONS(2574), + [anon_sym_static] = ACTIONS(2572), + [anon_sym_auto] = ACTIONS(2572), + [anon_sym_register] = ACTIONS(2572), + [anon_sym_inline] = ACTIONS(2572), + [anon_sym_const] = ACTIONS(2572), + [anon_sym_volatile] = ACTIONS(2572), + [anon_sym_restrict] = ACTIONS(2572), + [anon_sym__Atomic] = ACTIONS(2572), + [anon_sym_COLON] = ACTIONS(2574), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(233), }, [863] = { - [sym_char_literal] = STATE(883), - [sym__expression] = STATE(883), - [sym_binary_expression] = STATE(883), - [sym_update_expression] = STATE(883), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(883), - [sym_sizeof_expression] = STATE(883), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(883), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(883), - [sym_assignment_expression] = STATE(883), - [sym_cast_expression] = STATE(883), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(883), - [sym_true] = ACTIONS(2465), - [sym_null] = ACTIONS(2465), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(2467), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2465), - [anon_sym_SEMI] = ACTIONS(2469), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_identifier] = ACTIONS(2576), + [anon_sym_COMMA] = ACTIONS(2578), + [anon_sym_RPAREN] = ACTIONS(2578), + [anon_sym_SEMI] = ACTIONS(2578), + [anon_sym_extern] = ACTIONS(2576), + [anon_sym___attribute__] = ACTIONS(2576), + [anon_sym_LPAREN2] = ACTIONS(2578), + [anon_sym_STAR] = ACTIONS(2578), + [anon_sym_LBRACK] = ACTIONS(2578), + [anon_sym_static] = ACTIONS(2576), + [anon_sym_auto] = ACTIONS(2576), + [anon_sym_register] = ACTIONS(2576), + [anon_sym_inline] = ACTIONS(2576), + [anon_sym_const] = ACTIONS(2576), + [anon_sym_volatile] = ACTIONS(2576), + [anon_sym_restrict] = ACTIONS(2576), + [anon_sym__Atomic] = ACTIONS(2576), + [anon_sym_COLON] = ACTIONS(2578), + [sym_comment] = ACTIONS(3), }, [864] = { - [sym_parenthesized_expression] = STATE(519), + [sym_identifier] = ACTIONS(2580), + [anon_sym_COMMA] = ACTIONS(2582), + [anon_sym_RPAREN] = ACTIONS(2582), + [anon_sym_SEMI] = ACTIONS(2582), + [anon_sym_extern] = ACTIONS(2580), + [anon_sym___attribute__] = ACTIONS(2580), + [anon_sym_LPAREN2] = ACTIONS(2582), + [anon_sym_STAR] = ACTIONS(2582), + [anon_sym_LBRACK] = ACTIONS(2582), + [anon_sym_static] = ACTIONS(2580), + [anon_sym_auto] = ACTIONS(2580), + [anon_sym_register] = ACTIONS(2580), + [anon_sym_inline] = ACTIONS(2580), + [anon_sym_const] = ACTIONS(2580), + [anon_sym_volatile] = ACTIONS(2580), + [anon_sym_restrict] = ACTIONS(2580), + [anon_sym__Atomic] = ACTIONS(2580), + [anon_sym_COLON] = ACTIONS(2582), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(233), }, [865] = { + [sym_identifier] = ACTIONS(2584), + [anon_sym_COMMA] = ACTIONS(2586), + [anon_sym_RPAREN] = ACTIONS(2586), + [anon_sym_SEMI] = ACTIONS(2586), + [anon_sym_extern] = ACTIONS(2584), + [anon_sym___attribute__] = ACTIONS(2584), + [anon_sym_LPAREN2] = ACTIONS(2586), + [anon_sym_STAR] = ACTIONS(2586), + [anon_sym_LBRACK] = ACTIONS(2586), + [anon_sym_static] = ACTIONS(2584), + [anon_sym_auto] = ACTIONS(2584), + [anon_sym_register] = ACTIONS(2584), + [anon_sym_inline] = ACTIONS(2584), + [anon_sym_const] = ACTIONS(2584), + [anon_sym_volatile] = ACTIONS(2584), + [anon_sym_restrict] = ACTIONS(2584), + [anon_sym__Atomic] = ACTIONS(2584), + [anon_sym_COLON] = ACTIONS(2586), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2471), }, [866] = { - [sym_char_literal] = STATE(885), - [sym__expression] = STATE(885), - [sym_binary_expression] = STATE(885), - [sym_update_expression] = STATE(885), - [sym_call_expression] = STATE(885), - [sym_pointer_expression] = STATE(885), - [sym_unary_expression] = STATE(885), - [sym_sizeof_expression] = STATE(885), - [sym_subscript_expression] = STATE(885), - [sym_parenthesized_expression] = STATE(885), - [sym_concatenated_string] = STATE(885), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(885), - [sym_assignment_expression] = STATE(885), - [sym_cast_expression] = STATE(885), - [sym_field_expression] = STATE(885), - [sym_compound_literal_expression] = STATE(885), - [sym_true] = ACTIONS(2473), - [sym_null] = ACTIONS(2473), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(155), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(2475), - [anon_sym_DASH_DASH] = ACTIONS(159), - [sym_identifier] = ACTIONS(2473), - [anon_sym_BANG] = ACTIONS(155), - [anon_sym_DASH] = ACTIONS(161), - [sym_number_literal] = ACTIONS(2477), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(159), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2473), - [anon_sym_PLUS] = ACTIONS(161), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(165), + [sym_identifier] = ACTIONS(2588), + [anon_sym_COMMA] = ACTIONS(2590), + [anon_sym_RPAREN] = ACTIONS(2590), + [anon_sym_SEMI] = ACTIONS(2590), + [anon_sym_extern] = ACTIONS(2588), + [anon_sym___attribute__] = ACTIONS(2588), + [anon_sym_LPAREN2] = ACTIONS(2590), + [anon_sym_STAR] = ACTIONS(2590), + [anon_sym_LBRACK] = ACTIONS(2590), + [anon_sym_static] = ACTIONS(2588), + [anon_sym_auto] = ACTIONS(2588), + [anon_sym_register] = ACTIONS(2588), + [anon_sym_inline] = ACTIONS(2588), + [anon_sym_const] = ACTIONS(2588), + [anon_sym_volatile] = ACTIONS(2588), + [anon_sym_restrict] = ACTIONS(2588), + [anon_sym__Atomic] = ACTIONS(2588), + [anon_sym_COLON] = ACTIONS(2590), + [sym_comment] = ACTIONS(3), }, [867] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_COMMA] = ACTIONS(293), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_SEMI] = ACTIONS(2479), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [sym_identifier] = ACTIONS(2592), + [anon_sym_COMMA] = ACTIONS(2594), + [anon_sym_RPAREN] = ACTIONS(2594), + [anon_sym_SEMI] = ACTIONS(2594), + [anon_sym_extern] = ACTIONS(2592), + [anon_sym___attribute__] = ACTIONS(2592), + [anon_sym_LPAREN2] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(2594), + [anon_sym_LBRACK] = ACTIONS(2594), + [anon_sym_static] = ACTIONS(2592), + [anon_sym_auto] = ACTIONS(2592), + [anon_sym_register] = ACTIONS(2592), + [anon_sym_inline] = ACTIONS(2592), + [anon_sym_const] = ACTIONS(2592), + [anon_sym_volatile] = ACTIONS(2592), + [anon_sym_restrict] = ACTIONS(2592), + [anon_sym__Atomic] = ACTIONS(2592), + [anon_sym_COLON] = ACTIONS(2594), + [sym_comment] = ACTIONS(3), }, [868] = { + [sym_identifier] = ACTIONS(2596), + [anon_sym_COMMA] = ACTIONS(2598), + [anon_sym_RPAREN] = ACTIONS(2598), + [anon_sym_SEMI] = ACTIONS(2598), + [anon_sym_extern] = ACTIONS(2596), + [anon_sym___attribute__] = ACTIONS(2596), + [anon_sym_LPAREN2] = ACTIONS(2598), + [anon_sym_STAR] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(2598), + [anon_sym_static] = ACTIONS(2596), + [anon_sym_auto] = ACTIONS(2596), + [anon_sym_register] = ACTIONS(2596), + [anon_sym_inline] = ACTIONS(2596), + [anon_sym_const] = ACTIONS(2596), + [anon_sym_volatile] = ACTIONS(2596), + [anon_sym_restrict] = ACTIONS(2596), + [anon_sym__Atomic] = ACTIONS(2596), + [anon_sym_COLON] = ACTIONS(2598), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2479), }, [869] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(113), - [sym_attribute_specifier] = STATE(113), - [sym_storage_class_specifier] = STATE(113), - [sym_type_qualifier] = STATE(113), - [anon_sym_restrict] = ACTIONS(7), - [anon_sym_static] = ACTIONS(63), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_register] = ACTIONS(63), - [anon_sym_extern] = ACTIONS(63), - [anon_sym_STAR] = ACTIONS(307), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(7), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_SEMI] = ACTIONS(2481), - [anon_sym__Atomic] = ACTIONS(7), - [sym_identifier] = ACTIONS(311), - [anon_sym_auto] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(31), + [sym_identifier] = ACTIONS(1181), + [anon_sym_COMMA] = ACTIONS(1547), + [anon_sym_RPAREN] = ACTIONS(1547), + [anon_sym_SEMI] = ACTIONS(1547), + [anon_sym_extern] = ACTIONS(1181), + [anon_sym___attribute__] = ACTIONS(1181), + [anon_sym_LPAREN2] = ACTIONS(2600), + [anon_sym_STAR] = ACTIONS(1547), + [anon_sym_LBRACK] = ACTIONS(1547), + [anon_sym_static] = ACTIONS(1181), + [anon_sym_auto] = ACTIONS(1181), + [anon_sym_register] = ACTIONS(1181), + [anon_sym_inline] = ACTIONS(1181), + [anon_sym_const] = ACTIONS(1181), + [anon_sym_volatile] = ACTIONS(1181), + [anon_sym_restrict] = ACTIONS(1181), + [anon_sym__Atomic] = ACTIONS(1181), + [anon_sym_COLON] = ACTIONS(1547), + [sym_comment] = ACTIONS(3), }, [870] = { - [sym_do_statement] = STATE(533), - [sym_preproc_function_def] = STATE(533), - [sym__expression] = STATE(867), - [sym_binary_expression] = STATE(867), - [sym_declaration] = STATE(533), - [sym_call_expression] = STATE(36), - [sym__type_specifier] = STATE(869), - [sym_break_statement] = STATE(533), - [sym_assignment_expression] = STATE(867), - [sym_type_definition] = STATE(533), - [sym_compound_literal_expression] = STATE(867), - [sym_char_literal] = STATE(867), - [sym__empty_declaration] = STATE(533), - [sym_sized_type_specifier] = STATE(869), - [sym_preproc_include] = STATE(533), - [sym_continue_statement] = STATE(533), - [sym_preproc_ifdef] = STATE(533), - [sym_pointer_expression] = STATE(36), - [sym_sizeof_expression] = STATE(867), - [sym_attribute_specifier] = STATE(43), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(867), - [sym_macro_type_specifier] = STATE(869), - [sym_storage_class_specifier] = STATE(43), - [sym_struct_specifier] = STATE(869), - [sym_if_statement] = STATE(533), - [sym_preproc_def] = STATE(533), - [sym_for_statement] = STATE(533), - [sym_comma_expression] = STATE(868), - [sym_function_definition] = STATE(533), - [sym_update_expression] = STATE(867), - [sym_type_qualifier] = STATE(43), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_union_specifier] = STATE(869), - [sym_switch_statement] = STATE(533), - [sym_return_statement] = STATE(533), - [sym_preproc_call] = STATE(533), - [sym_conditional_expression] = STATE(867), - [sym_cast_expression] = STATE(867), - [sym__declaration_specifiers] = STATE(1151), - [sym_field_expression] = STATE(36), - [sym_enum_specifier] = STATE(869), - [sym_labeled_statement] = STATE(533), - [sym_while_statement] = STATE(533), - [sym_preproc_if] = STATE(533), - [sym_goto_statement] = STATE(533), - [sym_unary_expression] = STATE(867), - [sym_linkage_specification] = STATE(533), - [sym_subscript_expression] = STATE(36), - [sym_string_literal] = STATE(41), - [aux_sym_translation_unit_repeat1] = STATE(533), - [sym_compound_statement] = STATE(533), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_expression_statement] = STATE(533), - [sym_true] = ACTIONS(81), - [anon_sym_restrict] = ACTIONS(7), - [sym_null] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_const] = ACTIONS(7), - [anon_sym_typedef] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(7), - [sym_identifier] = ACTIONS(87), - [aux_sym_preproc_ifdef_token1] = ACTIONS(89), - [sym_number_literal] = ACTIONS(91), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_extern] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_struct] = ACTIONS(25), - [anon_sym_signed] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(27), - [anon_sym_while] = ACTIONS(95), - [aux_sym_preproc_ifdef_token2] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_sizeof] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(97), - [anon_sym_union] = ACTIONS(37), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_short] = ACTIONS(27), - [anon_sym_do] = ACTIONS(99), - [sym_preproc_directive] = ACTIONS(101), - [anon_sym_AMP] = ACTIONS(43), - [aux_sym_preproc_if_token1] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(2483), - [sym_primitive_type] = ACTIONS(107), - [anon_sym_for] = ACTIONS(109), - [anon_sym_break] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(47), - [aux_sym_preproc_include_token1] = ACTIONS(113), - [anon_sym_DASH] = ACTIONS(61), - [anon_sym_static] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_register] = ACTIONS(63), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(115), - [anon_sym_switch] = ACTIONS(117), - [anon_sym_enum] = ACTIONS(69), - [sym_false] = ACTIONS(81), - [anon_sym_return] = ACTIONS(119), - [anon_sym_continue] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(123), - [aux_sym_preproc_def_token1] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_auto] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), + [sym_attribute_specifier] = STATE(845), + [sym_storage_class_specifier] = STATE(845), + [sym_type_qualifier] = STATE(845), + [aux_sym__declaration_specifiers_repeat1] = STATE(845), + [sym_identifier] = ACTIONS(2495), + [anon_sym_SEMI] = ACTIONS(2603), + [anon_sym_extern] = ACTIONS(33), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(2497), + [anon_sym_STAR] = ACTIONS(2497), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [sym_comment] = ACTIONS(3), }, [871] = { - [anon_sym_GT_GT] = ACTIONS(197), - [anon_sym_PERCENT_EQ] = ACTIONS(199), - [anon_sym_DASH_EQ] = ACTIONS(199), - [anon_sym_PIPE] = ACTIONS(197), - [anon_sym_EQ_EQ] = ACTIONS(203), - [anon_sym_SLASH] = ACTIONS(197), - [anon_sym_DASH_GT] = ACTIONS(203), - [anon_sym_LT_LT] = ACTIONS(197), - [anon_sym_DASH_DASH] = ACTIONS(203), - [anon_sym_PLUS_EQ] = ACTIONS(199), - [anon_sym_LT_LT_EQ] = ACTIONS(199), - [anon_sym_QMARK] = ACTIONS(203), - [anon_sym_BANG_EQ] = ACTIONS(203), - [anon_sym_CARET_EQ] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(203), - [anon_sym_PLUS_PLUS] = ACTIONS(203), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT_EQ] = ACTIONS(199), - [anon_sym_GT] = ACTIONS(197), - [anon_sym_PIPE_EQ] = ACTIONS(199), - [anon_sym_AMP_EQ] = ACTIONS(199), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_AMP] = ACTIONS(197), - [anon_sym_EQ] = ACTIONS(209), - [anon_sym_LPAREN2] = ACTIONS(203), - [anon_sym_GT_EQ] = ACTIONS(203), - [anon_sym_COLON] = ACTIONS(2457), - [anon_sym_STAR_EQ] = ACTIONS(199), - [anon_sym_PIPE_PIPE] = ACTIONS(203), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_LT_EQ] = ACTIONS(203), - [anon_sym_STAR] = ACTIONS(197), - [anon_sym_SLASH_EQ] = ACTIONS(199), - [anon_sym_AMP_AMP] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(203), - [anon_sym_CARET] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_DOT] = ACTIONS(203), - [anon_sym_LT] = ACTIONS(197), - [anon_sym_LBRACK] = ACTIONS(203), + [sym_attribute_specifier] = STATE(845), + [sym_storage_class_specifier] = STATE(845), + [sym_type_qualifier] = STATE(845), + [aux_sym__declaration_specifiers_repeat1] = STATE(845), + [sym_identifier] = ACTIONS(2495), + [anon_sym_SEMI] = ACTIONS(2605), + [anon_sym_extern] = ACTIONS(33), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_LPAREN2] = ACTIONS(2497), + [anon_sym_STAR] = ACTIONS(2497), + [anon_sym_static] = ACTIONS(33), + [anon_sym_auto] = ACTIONS(33), + [anon_sym_register] = ACTIONS(33), + [anon_sym_inline] = ACTIONS(33), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [sym_comment] = ACTIONS(3), }, [872] = { + [sym_identifier] = ACTIONS(2607), + [anon_sym_COMMA] = ACTIONS(2609), + [anon_sym_RPAREN] = ACTIONS(2609), + [anon_sym_SEMI] = ACTIONS(2609), + [anon_sym_extern] = ACTIONS(2607), + [anon_sym___attribute__] = ACTIONS(2607), + [anon_sym_LPAREN2] = ACTIONS(2609), + [anon_sym_STAR] = ACTIONS(2609), + [anon_sym_LBRACK] = ACTIONS(2609), + [anon_sym_static] = ACTIONS(2607), + [anon_sym_auto] = ACTIONS(2607), + [anon_sym_register] = ACTIONS(2607), + [anon_sym_inline] = ACTIONS(2607), + [anon_sym_const] = ACTIONS(2607), + [anon_sym_volatile] = ACTIONS(2607), + [anon_sym_restrict] = ACTIONS(2607), + [anon_sym__Atomic] = ACTIONS(2607), + [anon_sym_COLON] = ACTIONS(2609), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2485), }, [873] = { - [anon_sym_LF] = ACTIONS(2487), - [sym_comment] = ACTIONS(147), + [sym__declarator] = STATE(964), + [sym__abstract_declarator] = STATE(960), + [sym_parenthesized_declarator] = STATE(964), + [sym_abstract_parenthesized_declarator] = STATE(960), + [sym_pointer_declarator] = STATE(964), + [sym_abstract_pointer_declarator] = STATE(960), + [sym_function_declarator] = STATE(964), + [sym_abstract_function_declarator] = STATE(960), + [sym_array_declarator] = STATE(964), + [sym_abstract_array_declarator] = STATE(960), + [sym_parameter_list] = STATE(994), + [sym_identifier] = ACTIONS(2611), + [anon_sym_COMMA] = ACTIONS(2613), + [anon_sym_RPAREN] = ACTIONS(2613), + [anon_sym_LPAREN2] = ACTIONS(1257), + [anon_sym_STAR] = ACTIONS(1259), + [anon_sym_LBRACK] = ACTIONS(1261), + [sym_comment] = ACTIONS(3), }, [874] = { - [sym_if_statement] = STATE(891), - [sym_preproc_def] = STATE(891), - [sym_preproc_function_def] = STATE(891), - [sym__expression] = STATE(951), - [sym_comma_expression] = STATE(952), - [sym_binary_expression] = STATE(951), - [sym_update_expression] = STATE(951), - [sym_call_expression] = STATE(36), - [sym_function_definition] = STATE(891), - [sym_declaration] = STATE(891), - [sym_do_statement] = STATE(891), - [sym_for_statement] = STATE(891), - [sym_preproc_else] = STATE(890), - [sym_preproc_elif] = STATE(890), - [aux_sym_translation_unit_repeat1] = STATE(891), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(953), - [sym_union_specifier] = STATE(953), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_expression_statement] = STATE(891), - [sym_switch_statement] = STATE(891), - [sym_return_statement] = STATE(891), - [sym_preproc_call] = STATE(891), - [sym_conditional_expression] = STATE(951), - [sym_assignment_expression] = STATE(951), - [sym_cast_expression] = STATE(951), - [sym__declaration_specifiers] = STATE(1172), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(951), - [sym_type_definition] = STATE(891), - [sym_char_literal] = STATE(951), - [sym_break_statement] = STATE(891), - [sym__empty_declaration] = STATE(891), - [sym_sized_type_specifier] = STATE(953), - [sym_enum_specifier] = STATE(953), - [sym_labeled_statement] = STATE(891), - [sym_preproc_include] = STATE(891), - [sym_preproc_if] = STATE(891), - [sym_preproc_ifdef] = STATE(891), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(951), - [sym_sizeof_expression] = STATE(951), - [sym_attribute_specifier] = STATE(43), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_linkage_specification] = STATE(891), - [sym_concatenated_string] = STATE(951), - [sym_string_literal] = STATE(41), - [sym_macro_type_specifier] = STATE(953), - [sym_while_statement] = STATE(891), - [sym_storage_class_specifier] = STATE(43), - [sym_compound_statement] = STATE(891), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_continue_statement] = STATE(891), - [sym_struct_specifier] = STATE(953), - [sym_goto_statement] = STATE(891), - [sym_true] = ACTIONS(378), - [anon_sym_restrict] = ACTIONS(7), - [sym_null] = ACTIONS(378), - [anon_sym_goto] = ACTIONS(380), - [aux_sym_preproc_if_token2] = ACTIONS(2489), - [anon_sym_const] = ACTIONS(7), - [anon_sym_typedef] = ACTIONS(384), - [anon_sym_DASH_DASH] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(7), - [sym_identifier] = ACTIONS(386), - [aux_sym_preproc_ifdef_token1] = ACTIONS(388), - [sym_number_literal] = ACTIONS(390), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_extern] = ACTIONS(392), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_struct] = ACTIONS(25), - [anon_sym_signed] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(27), - [anon_sym_while] = ACTIONS(394), - [aux_sym_preproc_ifdef_token2] = ACTIONS(388), - [aux_sym_preproc_elif_token1] = ACTIONS(396), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_sizeof] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(398), - [anon_sym_union] = ACTIONS(37), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_short] = ACTIONS(27), - [anon_sym_do] = ACTIONS(400), - [aux_sym_preproc_else_token1] = ACTIONS(402), - [sym_preproc_directive] = ACTIONS(404), - [anon_sym_AMP] = ACTIONS(43), - [aux_sym_preproc_if_token1] = ACTIONS(406), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(408), - [anon_sym_for] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_BANG] = ACTIONS(47), - [aux_sym_preproc_include_token1] = ACTIONS(414), - [anon_sym_DASH] = ACTIONS(61), - [anon_sym_static] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_register] = ACTIONS(63), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(416), - [anon_sym_switch] = ACTIONS(418), - [anon_sym_enum] = ACTIONS(69), - [sym_false] = ACTIONS(378), - [anon_sym_return] = ACTIONS(420), - [anon_sym_continue] = ACTIONS(422), - [anon_sym_SEMI] = ACTIONS(424), - [aux_sym_preproc_def_token1] = ACTIONS(426), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_auto] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), + [sym__abstract_declarator] = STATE(1013), + [sym_abstract_parenthesized_declarator] = STATE(1013), + [sym_abstract_pointer_declarator] = STATE(1013), + [sym_abstract_function_declarator] = STATE(1013), + [sym_abstract_array_declarator] = STATE(1013), + [sym_type_qualifier] = STATE(847), + [sym_parameter_list] = STATE(994), + [aux_sym_type_definition_repeat1] = STATE(847), + [anon_sym_RPAREN] = ACTIONS(2615), + [anon_sym_LPAREN2] = ACTIONS(1519), + [anon_sym_STAR] = ACTIONS(1521), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_const] = ACTIONS(2617), + [anon_sym_volatile] = ACTIONS(2617), + [anon_sym_restrict] = ACTIONS(2617), + [anon_sym__Atomic] = ACTIONS(2617), + [sym_comment] = ACTIONS(3), }, [875] = { - [anon_sym_RPAREN] = ACTIONS(2491), + [sym__abstract_declarator] = STATE(958), + [sym_abstract_parenthesized_declarator] = STATE(958), + [sym_abstract_pointer_declarator] = STATE(958), + [sym_abstract_function_declarator] = STATE(958), + [sym_abstract_array_declarator] = STATE(958), + [sym_type_qualifier] = STATE(847), + [sym_parameter_list] = STATE(994), + [aux_sym_type_definition_repeat1] = STATE(847), + [anon_sym_RPAREN] = ACTIONS(2479), + [anon_sym_LPAREN2] = ACTIONS(1519), + [anon_sym_STAR] = ACTIONS(1521), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_const] = ACTIONS(2617), + [anon_sym_volatile] = ACTIONS(2617), + [anon_sym_restrict] = ACTIONS(2617), + [anon_sym__Atomic] = ACTIONS(2617), [sym_comment] = ACTIONS(3), }, [876] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_COMMA] = ACTIONS(293), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_RPAREN] = ACTIONS(2493), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [sym_identifier] = ACTIONS(1181), + [anon_sym_COMMA] = ACTIONS(1547), + [anon_sym_RPAREN] = ACTIONS(2619), + [anon_sym_extern] = ACTIONS(1181), + [anon_sym___attribute__] = ACTIONS(1181), + [anon_sym_LPAREN2] = ACTIONS(2622), + [anon_sym_STAR] = ACTIONS(1547), + [anon_sym_LBRACK] = ACTIONS(2619), + [anon_sym_static] = ACTIONS(1181), + [anon_sym_auto] = ACTIONS(1181), + [anon_sym_register] = ACTIONS(1181), + [anon_sym_inline] = ACTIONS(1181), + [anon_sym_const] = ACTIONS(1181), + [anon_sym_volatile] = ACTIONS(1181), + [anon_sym_restrict] = ACTIONS(1181), + [anon_sym__Atomic] = ACTIONS(1181), + [sym_comment] = ACTIONS(3), }, [877] = { - [anon_sym_RPAREN] = ACTIONS(2493), + [sym__abstract_declarator] = STATE(1012), + [sym_abstract_parenthesized_declarator] = STATE(1012), + [sym_abstract_pointer_declarator] = STATE(1012), + [sym_abstract_function_declarator] = STATE(1012), + [sym_abstract_array_declarator] = STATE(1012), + [sym_type_qualifier] = STATE(880), + [sym_parameter_list] = STATE(994), + [aux_sym_type_definition_repeat1] = STATE(880), + [anon_sym_RPAREN] = ACTIONS(2626), + [anon_sym_LPAREN2] = ACTIONS(1519), + [anon_sym_STAR] = ACTIONS(1521), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_const] = ACTIONS(2617), + [anon_sym_volatile] = ACTIONS(2617), + [anon_sym_restrict] = ACTIONS(2617), + [anon_sym__Atomic] = ACTIONS(2617), [sym_comment] = ACTIONS(3), }, [878] = { - [aux_sym_string_literal_repeat1] = STATE(157), - [sym_comment] = ACTIONS(147), - [sym_escape_sequence] = ACTIONS(469), - [aux_sym_string_literal_token1] = ACTIONS(469), - [anon_sym_DQUOTE] = ACTIONS(2495), + [sym__abstract_declarator] = STATE(970), + [sym_abstract_parenthesized_declarator] = STATE(970), + [sym_abstract_pointer_declarator] = STATE(970), + [sym_abstract_function_declarator] = STATE(970), + [sym_abstract_array_declarator] = STATE(970), + [sym_type_qualifier] = STATE(874), + [sym_parameter_list] = STATE(994), + [aux_sym_type_definition_repeat1] = STATE(874), + [anon_sym_RPAREN] = ACTIONS(2628), + [anon_sym_LPAREN2] = ACTIONS(1519), + [anon_sym_STAR] = ACTIONS(1521), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_const] = ACTIONS(2617), + [anon_sym_volatile] = ACTIONS(2617), + [anon_sym_restrict] = ACTIONS(2617), + [anon_sym__Atomic] = ACTIONS(2617), + [sym_comment] = ACTIONS(3), }, [879] = { - [sym_if_statement] = STATE(894), - [sym_preproc_def] = STATE(894), - [sym_preproc_function_def] = STATE(894), - [sym__expression] = STATE(951), - [sym_comma_expression] = STATE(952), - [sym_binary_expression] = STATE(951), - [sym_update_expression] = STATE(951), - [sym_call_expression] = STATE(36), - [sym_function_definition] = STATE(894), - [sym_declaration] = STATE(894), - [sym_do_statement] = STATE(894), - [sym_for_statement] = STATE(894), - [sym_preproc_else] = STATE(893), - [sym_preproc_elif] = STATE(893), - [aux_sym_translation_unit_repeat1] = STATE(894), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(953), - [sym_union_specifier] = STATE(953), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_expression_statement] = STATE(894), - [sym_switch_statement] = STATE(894), - [sym_return_statement] = STATE(894), - [sym_preproc_call] = STATE(894), - [sym_conditional_expression] = STATE(951), - [sym_assignment_expression] = STATE(951), - [sym_cast_expression] = STATE(951), - [sym__declaration_specifiers] = STATE(1172), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(951), - [sym_type_definition] = STATE(894), - [sym_char_literal] = STATE(951), - [sym_break_statement] = STATE(894), - [sym__empty_declaration] = STATE(894), - [sym_sized_type_specifier] = STATE(953), - [sym_enum_specifier] = STATE(953), - [sym_labeled_statement] = STATE(894), - [sym_preproc_include] = STATE(894), - [sym_preproc_if] = STATE(894), - [sym_preproc_ifdef] = STATE(894), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(951), - [sym_sizeof_expression] = STATE(951), - [sym_attribute_specifier] = STATE(43), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_linkage_specification] = STATE(894), - [sym_concatenated_string] = STATE(951), - [sym_string_literal] = STATE(41), - [sym_macro_type_specifier] = STATE(953), - [sym_while_statement] = STATE(894), - [sym_storage_class_specifier] = STATE(43), - [sym_compound_statement] = STATE(894), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_continue_statement] = STATE(894), - [sym_struct_specifier] = STATE(953), - [sym_goto_statement] = STATE(894), - [sym_true] = ACTIONS(378), - [anon_sym_restrict] = ACTIONS(7), - [sym_null] = ACTIONS(378), - [anon_sym_goto] = ACTIONS(380), - [aux_sym_preproc_if_token2] = ACTIONS(2497), - [anon_sym_const] = ACTIONS(7), - [anon_sym_typedef] = ACTIONS(384), - [anon_sym_DASH_DASH] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(7), - [sym_identifier] = ACTIONS(386), - [aux_sym_preproc_ifdef_token1] = ACTIONS(388), - [sym_number_literal] = ACTIONS(390), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_extern] = ACTIONS(392), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_struct] = ACTIONS(25), - [anon_sym_signed] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(27), - [anon_sym_while] = ACTIONS(394), - [aux_sym_preproc_ifdef_token2] = ACTIONS(388), - [aux_sym_preproc_elif_token1] = ACTIONS(396), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_sizeof] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(398), - [anon_sym_union] = ACTIONS(37), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_short] = ACTIONS(27), - [anon_sym_do] = ACTIONS(400), - [aux_sym_preproc_else_token1] = ACTIONS(402), - [sym_preproc_directive] = ACTIONS(404), - [anon_sym_AMP] = ACTIONS(43), - [aux_sym_preproc_if_token1] = ACTIONS(406), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(408), - [anon_sym_for] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_BANG] = ACTIONS(47), - [aux_sym_preproc_include_token1] = ACTIONS(414), - [anon_sym_DASH] = ACTIONS(61), - [anon_sym_static] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_register] = ACTIONS(63), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(416), - [anon_sym_switch] = ACTIONS(418), - [anon_sym_enum] = ACTIONS(69), - [sym_false] = ACTIONS(378), - [anon_sym_return] = ACTIONS(420), - [anon_sym_continue] = ACTIONS(422), - [anon_sym_SEMI] = ACTIONS(424), - [aux_sym_preproc_def_token1] = ACTIONS(426), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_auto] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), + [sym__abstract_declarator] = STATE(967), + [sym_abstract_parenthesized_declarator] = STATE(967), + [sym_abstract_pointer_declarator] = STATE(967), + [sym_abstract_function_declarator] = STATE(967), + [sym_abstract_array_declarator] = STATE(967), + [sym_type_qualifier] = STATE(875), + [sym_parameter_list] = STATE(994), + [aux_sym_type_definition_repeat1] = STATE(875), + [anon_sym_RPAREN] = ACTIONS(2483), + [anon_sym_LPAREN2] = ACTIONS(1519), + [anon_sym_STAR] = ACTIONS(1521), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_const] = ACTIONS(2617), + [anon_sym_volatile] = ACTIONS(2617), + [anon_sym_restrict] = ACTIONS(2617), + [anon_sym__Atomic] = ACTIONS(2617), + [sym_comment] = ACTIONS(3), }, [880] = { - [sym_sized_type_specifier] = STATE(130), - [sym_declaration] = STATE(544), - [sym_declaration_list] = STATE(544), - [sym_enum_specifier] = STATE(130), - [sym_function_definition] = STATE(544), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(130), - [sym_union_specifier] = STATE(130), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_attribute_specifier] = STATE(43), - [sym_macro_type_specifier] = STATE(130), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_storage_class_specifier] = STATE(43), - [sym__declaration_specifiers] = STATE(1151), - [sym_struct_specifier] = STATE(130), - [anon_sym_LBRACE] = ACTIONS(2499), - [anon_sym_union] = ACTIONS(37), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(7), - [anon_sym_short] = ACTIONS(27), - [anon_sym_static] = ACTIONS(63), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_register] = ACTIONS(63), - [anon_sym_extern] = ACTIONS(63), - [anon_sym_struct] = ACTIONS(25), - [anon_sym_signed] = ACTIONS(27), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_long] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(7), - [anon_sym__Atomic] = ACTIONS(7), - [sym_primitive_type] = ACTIONS(348), - [anon_sym_auto] = ACTIONS(63), - [sym_identifier] = ACTIONS(187), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(31), + [sym__abstract_declarator] = STATE(996), + [sym_abstract_parenthesized_declarator] = STATE(996), + [sym_abstract_pointer_declarator] = STATE(996), + [sym_abstract_function_declarator] = STATE(996), + [sym_abstract_array_declarator] = STATE(996), + [sym_type_qualifier] = STATE(847), + [sym_parameter_list] = STATE(994), + [aux_sym_type_definition_repeat1] = STATE(847), + [anon_sym_RPAREN] = ACTIONS(2630), + [anon_sym_LPAREN2] = ACTIONS(1519), + [anon_sym_STAR] = ACTIONS(1521), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_const] = ACTIONS(2617), + [anon_sym_volatile] = ACTIONS(2617), + [anon_sym_restrict] = ACTIONS(2617), + [anon_sym__Atomic] = ACTIONS(2617), + [sym_comment] = ACTIONS(3), }, [881] = { - [sym_char_literal] = STATE(59), - [sym__expression] = STATE(59), - [sym_comma_expression] = STATE(61), - [sym_binary_expression] = STATE(59), - [sym_update_expression] = STATE(59), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(59), - [sym_sizeof_expression] = STATE(59), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(59), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(59), - [sym_assignment_expression] = STATE(59), - [sym_cast_expression] = STATE(59), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(59), - [sym_true] = ACTIONS(175), - [sym_null] = ACTIONS(175), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(183), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [aux_sym_sized_type_specifier_repeat1] = STATE(824), + [sym_identifier] = ACTIONS(2632), + [anon_sym_RPAREN] = ACTIONS(2469), + [anon_sym_LPAREN2] = ACTIONS(2469), + [anon_sym_STAR] = ACTIONS(2469), + [anon_sym_LBRACK] = ACTIONS(2469), + [anon_sym_const] = ACTIONS(2471), + [anon_sym_volatile] = ACTIONS(2471), + [anon_sym_restrict] = ACTIONS(2471), + [anon_sym__Atomic] = ACTIONS(2471), + [anon_sym_signed] = ACTIONS(2473), + [anon_sym_unsigned] = ACTIONS(2473), + [anon_sym_long] = ACTIONS(2473), + [anon_sym_short] = ACTIONS(2473), + [sym_primitive_type] = ACTIONS(2475), + [sym_comment] = ACTIONS(3), }, [882] = { - [sym_switch_body] = STATE(546), - [anon_sym_LBRACE] = ACTIONS(2501), + [sym__declarator] = STATE(907), + [sym_parenthesized_declarator] = STATE(907), + [sym_pointer_declarator] = STATE(907), + [sym_function_declarator] = STATE(907), + [sym_array_declarator] = STATE(907), + [sym_type_qualifier] = STATE(885), + [aux_sym_type_definition_repeat1] = STATE(885), + [sym_identifier] = ACTIONS(2481), + [anon_sym_LPAREN2] = ACTIONS(2634), + [anon_sym_STAR] = ACTIONS(2636), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), [sym_comment] = ACTIONS(3), }, [883] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_SEMI] = ACTIONS(2503), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [sym__field_declarator] = STATE(930), + [sym_parenthesized_field_declarator] = STATE(930), + [sym_pointer_field_declarator] = STATE(930), + [sym_function_field_declarator] = STATE(930), + [sym_array_field_declarator] = STATE(930), + [sym_type_qualifier] = STATE(847), + [aux_sym_type_definition_repeat1] = STATE(847), + [sym_identifier] = ACTIONS(2638), + [anon_sym_LPAREN2] = ACTIONS(2640), + [anon_sym_STAR] = ACTIONS(2642), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [sym_comment] = ACTIONS(3), }, [884] = { - [sym_preproc_params] = STATE(898), - [sym_preproc_arg] = ACTIONS(2505), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_LF] = ACTIONS(2507), - [sym_comment] = ACTIONS(147), + [sym__type_declarator] = STATE(950), + [sym_parenthesized_type_declarator] = STATE(950), + [sym_pointer_type_declarator] = STATE(950), + [sym_function_type_declarator] = STATE(950), + [sym_array_type_declarator] = STATE(950), + [sym_type_qualifier] = STATE(887), + [aux_sym_type_definition_repeat1] = STATE(887), + [sym_identifier] = ACTIONS(2644), + [anon_sym_LPAREN2] = ACTIONS(2646), + [anon_sym_STAR] = ACTIONS(2648), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [sym_comment] = ACTIONS(3), }, [885] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(2243), - [anon_sym_PERCENT_EQ] = ACTIONS(547), - [anon_sym_DASH_EQ] = ACTIONS(547), - [anon_sym_PIPE] = ACTIONS(545), - [anon_sym_EQ_EQ] = ACTIONS(547), - [anon_sym_SLASH] = ACTIONS(2249), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LT_LT] = ACTIONS(2243), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_PLUS_EQ] = ACTIONS(547), - [anon_sym_LT_LT_EQ] = ACTIONS(547), - [anon_sym_QMARK] = ACTIONS(547), - [anon_sym_BANG_EQ] = ACTIONS(547), - [anon_sym_CARET_EQ] = ACTIONS(547), - [anon_sym_COMMA] = ACTIONS(547), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT_EQ] = ACTIONS(547), - [anon_sym_GT] = ACTIONS(545), - [anon_sym_PIPE_EQ] = ACTIONS(547), - [anon_sym_RPAREN] = ACTIONS(547), - [anon_sym_RBRACK] = ACTIONS(547), - [anon_sym_AMP_EQ] = ACTIONS(547), - [anon_sym_PERCENT] = ACTIONS(2249), - [anon_sym_AMP] = ACTIONS(545), - [anon_sym_EQ] = ACTIONS(545), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(547), - [anon_sym_RBRACE] = ACTIONS(547), - [anon_sym_COLON] = ACTIONS(547), - [anon_sym_STAR_EQ] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_DASH] = ACTIONS(2261), - [anon_sym_LT_EQ] = ACTIONS(547), - [anon_sym_STAR] = ACTIONS(2249), - [anon_sym_SLASH_EQ] = ACTIONS(547), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_SEMI] = ACTIONS(547), - [anon_sym_CARET] = ACTIONS(545), - [anon_sym_PLUS] = ACTIONS(2261), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(545), - [anon_sym_LBRACK] = ACTIONS(305), + [sym__declarator] = STATE(918), + [sym_parenthesized_declarator] = STATE(918), + [sym_pointer_declarator] = STATE(918), + [sym_function_declarator] = STATE(918), + [sym_array_declarator] = STATE(918), + [sym_type_qualifier] = STATE(847), + [aux_sym_type_definition_repeat1] = STATE(847), + [sym_identifier] = ACTIONS(2477), + [anon_sym_LPAREN2] = ACTIONS(2634), + [anon_sym_STAR] = ACTIONS(2636), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), + [sym_comment] = ACTIONS(3), }, [886] = { - [aux_sym_declaration_repeat1] = STATE(901), - [sym_compound_statement] = STATE(560), - [sym_parameter_list] = STATE(214), - [anon_sym_LBRACE] = ACTIONS(97), - [anon_sym_EQ] = ACTIONS(648), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN2] = ACTIONS(652), + [sym__field_declarator] = STATE(925), + [sym_parenthesized_field_declarator] = STATE(925), + [sym_pointer_field_declarator] = STATE(925), + [sym_function_field_declarator] = STATE(925), + [sym_array_field_declarator] = STATE(925), + [sym_type_qualifier] = STATE(883), + [aux_sym_type_definition_repeat1] = STATE(883), + [sym_identifier] = ACTIONS(2638), + [anon_sym_LPAREN2] = ACTIONS(2640), + [anon_sym_STAR] = ACTIONS(2642), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(654), - [anon_sym_SEMI] = ACTIONS(2509), }, [887] = { - [aux_sym_declaration_repeat1] = STATE(901), + [sym__type_declarator] = STATE(944), + [sym_parenthesized_type_declarator] = STATE(944), + [sym_pointer_type_declarator] = STATE(944), + [sym_function_type_declarator] = STATE(944), + [sym_array_type_declarator] = STATE(944), + [sym_type_qualifier] = STATE(847), + [aux_sym_type_definition_repeat1] = STATE(847), + [sym_identifier] = ACTIONS(2644), + [anon_sym_LPAREN2] = ACTIONS(2646), + [anon_sym_STAR] = ACTIONS(2648), + [anon_sym_const] = ACTIONS(35), + [anon_sym_volatile] = ACTIONS(35), + [anon_sym_restrict] = ACTIONS(35), + [anon_sym__Atomic] = ACTIONS(35), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(654), - [anon_sym_SEMI] = ACTIONS(2509), }, [888] = { - [sym__field_declarator] = STATE(905), - [sym_parenthesized_field_declarator] = STATE(905), - [sym_function_field_declarator] = STATE(905), - [sym_bitfield_clause] = STATE(904), - [sym_pointer_field_declarator] = STATE(905), - [sym_array_field_declarator] = STATE(905), - [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(806), - [anon_sym_LPAREN2] = ACTIONS(808), - [sym_identifier] = ACTIONS(810), - [anon_sym_COLON] = ACTIONS(812), - [anon_sym_SEMI] = ACTIONS(2511), + [sym__field_declarator] = STATE(916), + [sym_parenthesized_field_declarator] = STATE(916), + [sym_pointer_field_declarator] = STATE(916), + [sym_function_field_declarator] = STATE(916), + [sym_array_field_declarator] = STATE(916), + [sym_bitfield_clause] = STATE(1128), + [sym_identifier] = ACTIONS(2650), + [anon_sym_SEMI] = ACTIONS(2652), + [anon_sym_LPAREN2] = ACTIONS(2640), + [anon_sym_STAR] = ACTIONS(2642), + [anon_sym_COLON] = ACTIONS(2654), + [sym_comment] = ACTIONS(3), }, [889] = { - [sym_parenthesized_expression] = STATE(563), + [sym__field_declarator] = STATE(913), + [sym_parenthesized_field_declarator] = STATE(913), + [sym_pointer_field_declarator] = STATE(913), + [sym_function_field_declarator] = STATE(913), + [sym_array_field_declarator] = STATE(913), + [sym_bitfield_clause] = STATE(1229), + [sym_identifier] = ACTIONS(2650), + [anon_sym_SEMI] = ACTIONS(2656), + [anon_sym_LPAREN2] = ACTIONS(2640), + [anon_sym_STAR] = ACTIONS(2642), + [anon_sym_COLON] = ACTIONS(2654), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(2513), }, [890] = { - [aux_sym_preproc_if_token2] = ACTIONS(2515), + [sym__field_declarator] = STATE(917), + [sym_parenthesized_field_declarator] = STATE(917), + [sym_pointer_field_declarator] = STATE(917), + [sym_function_field_declarator] = STATE(917), + [sym_array_field_declarator] = STATE(917), + [sym_bitfield_clause] = STATE(1195), + [sym_identifier] = ACTIONS(2650), + [anon_sym_SEMI] = ACTIONS(2658), + [anon_sym_LPAREN2] = ACTIONS(2640), + [anon_sym_STAR] = ACTIONS(2642), + [anon_sym_COLON] = ACTIONS(2654), [sym_comment] = ACTIONS(3), }, [891] = { - [sym_if_statement] = STATE(636), - [sym_preproc_def] = STATE(636), - [sym_preproc_function_def] = STATE(636), - [sym__expression] = STATE(951), - [sym_comma_expression] = STATE(952), - [sym_binary_expression] = STATE(951), - [sym_update_expression] = STATE(951), - [sym_call_expression] = STATE(36), - [sym_function_definition] = STATE(636), - [sym_declaration] = STATE(636), - [sym_do_statement] = STATE(636), - [sym_for_statement] = STATE(636), - [sym_preproc_else] = STATE(906), - [sym_preproc_elif] = STATE(906), - [aux_sym_translation_unit_repeat1] = STATE(636), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(953), - [sym_union_specifier] = STATE(953), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_expression_statement] = STATE(636), - [sym_switch_statement] = STATE(636), - [sym_return_statement] = STATE(636), - [sym_preproc_call] = STATE(636), - [sym_conditional_expression] = STATE(951), - [sym_assignment_expression] = STATE(951), - [sym_cast_expression] = STATE(951), - [sym__declaration_specifiers] = STATE(1172), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(951), - [sym_type_definition] = STATE(636), - [sym_char_literal] = STATE(951), - [sym_break_statement] = STATE(636), - [sym__empty_declaration] = STATE(636), - [sym_sized_type_specifier] = STATE(953), - [sym_enum_specifier] = STATE(953), - [sym_labeled_statement] = STATE(636), - [sym_preproc_include] = STATE(636), - [sym_preproc_if] = STATE(636), - [sym_preproc_ifdef] = STATE(636), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(951), - [sym_sizeof_expression] = STATE(951), - [sym_attribute_specifier] = STATE(43), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_linkage_specification] = STATE(636), - [sym_concatenated_string] = STATE(951), - [sym_string_literal] = STATE(41), - [sym_macro_type_specifier] = STATE(953), - [sym_while_statement] = STATE(636), - [sym_storage_class_specifier] = STATE(43), - [sym_compound_statement] = STATE(636), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_continue_statement] = STATE(636), - [sym_struct_specifier] = STATE(953), - [sym_goto_statement] = STATE(636), - [sym_true] = ACTIONS(378), - [anon_sym_restrict] = ACTIONS(7), - [sym_null] = ACTIONS(378), - [anon_sym_goto] = ACTIONS(380), - [aux_sym_preproc_if_token2] = ACTIONS(2517), - [anon_sym_const] = ACTIONS(7), - [anon_sym_typedef] = ACTIONS(384), - [anon_sym_DASH_DASH] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(7), - [sym_identifier] = ACTIONS(386), - [aux_sym_preproc_ifdef_token1] = ACTIONS(388), - [sym_number_literal] = ACTIONS(390), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_extern] = ACTIONS(392), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_struct] = ACTIONS(25), - [anon_sym_signed] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(27), - [anon_sym_while] = ACTIONS(394), - [aux_sym_preproc_ifdef_token2] = ACTIONS(388), - [aux_sym_preproc_elif_token1] = ACTIONS(396), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_sizeof] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(398), - [anon_sym_union] = ACTIONS(37), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_short] = ACTIONS(27), - [anon_sym_do] = ACTIONS(400), - [aux_sym_preproc_else_token1] = ACTIONS(402), - [sym_preproc_directive] = ACTIONS(404), - [anon_sym_AMP] = ACTIONS(43), - [aux_sym_preproc_if_token1] = ACTIONS(406), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(408), - [anon_sym_for] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_BANG] = ACTIONS(47), - [aux_sym_preproc_include_token1] = ACTIONS(414), - [anon_sym_DASH] = ACTIONS(61), - [anon_sym_static] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_register] = ACTIONS(63), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(416), - [anon_sym_switch] = ACTIONS(418), - [anon_sym_enum] = ACTIONS(69), - [sym_false] = ACTIONS(378), - [anon_sym_return] = ACTIONS(420), - [anon_sym_continue] = ACTIONS(422), - [anon_sym_SEMI] = ACTIONS(424), - [aux_sym_preproc_def_token1] = ACTIONS(426), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_auto] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), + [sym_attribute_specifier] = STATE(891), + [aux_sym_function_declarator_repeat1] = STATE(891), + [anon_sym_COMMA] = ACTIONS(2660), + [anon_sym_RPAREN] = ACTIONS(2660), + [anon_sym_SEMI] = ACTIONS(2660), + [anon_sym___attribute__] = ACTIONS(2662), + [anon_sym_LPAREN2] = ACTIONS(2660), + [anon_sym_LBRACE] = ACTIONS(2660), + [anon_sym_LBRACK] = ACTIONS(2660), + [anon_sym_EQ] = ACTIONS(2660), + [sym_comment] = ACTIONS(3), }, [892] = { - [aux_sym_type_definition_repeat2] = STATE(907), - [sym_parameter_list] = STATE(261), - [anon_sym_LBRACK] = ACTIONS(935), + [sym_attribute_specifier] = STATE(891), + [aux_sym_function_declarator_repeat1] = STATE(891), + [anon_sym_COMMA] = ACTIONS(2665), + [anon_sym_RPAREN] = ACTIONS(2665), + [anon_sym_SEMI] = ACTIONS(2665), + [anon_sym___attribute__] = ACTIONS(2667), + [anon_sym_LPAREN2] = ACTIONS(2665), + [anon_sym_LBRACE] = ACTIONS(2665), + [anon_sym_LBRACK] = ACTIONS(2665), + [anon_sym_EQ] = ACTIONS(2665), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(652), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_SEMI] = ACTIONS(2519), }, [893] = { - [aux_sym_preproc_if_token2] = ACTIONS(2521), + [sym_attribute_specifier] = STATE(892), + [aux_sym_function_declarator_repeat1] = STATE(892), + [anon_sym_COMMA] = ACTIONS(2669), + [anon_sym_RPAREN] = ACTIONS(2669), + [anon_sym_SEMI] = ACTIONS(2669), + [anon_sym___attribute__] = ACTIONS(2667), + [anon_sym_LPAREN2] = ACTIONS(2669), + [anon_sym_LBRACE] = ACTIONS(2669), + [anon_sym_LBRACK] = ACTIONS(2669), + [anon_sym_EQ] = ACTIONS(2669), [sym_comment] = ACTIONS(3), }, [894] = { - [sym_if_statement] = STATE(636), - [sym_preproc_def] = STATE(636), - [sym_preproc_function_def] = STATE(636), - [sym__expression] = STATE(951), - [sym_comma_expression] = STATE(952), - [sym_binary_expression] = STATE(951), - [sym_update_expression] = STATE(951), - [sym_call_expression] = STATE(36), - [sym_function_definition] = STATE(636), - [sym_declaration] = STATE(636), - [sym_do_statement] = STATE(636), - [sym_for_statement] = STATE(636), - [sym_preproc_else] = STATE(911), - [sym_preproc_elif] = STATE(911), - [aux_sym_translation_unit_repeat1] = STATE(636), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(953), - [sym_union_specifier] = STATE(953), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_expression_statement] = STATE(636), - [sym_switch_statement] = STATE(636), - [sym_return_statement] = STATE(636), - [sym_preproc_call] = STATE(636), - [sym_conditional_expression] = STATE(951), - [sym_assignment_expression] = STATE(951), - [sym_cast_expression] = STATE(951), - [sym__declaration_specifiers] = STATE(1172), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(951), - [sym_type_definition] = STATE(636), - [sym_char_literal] = STATE(951), - [sym_break_statement] = STATE(636), - [sym__empty_declaration] = STATE(636), - [sym_sized_type_specifier] = STATE(953), - [sym_enum_specifier] = STATE(953), - [sym_labeled_statement] = STATE(636), - [sym_preproc_include] = STATE(636), - [sym_preproc_if] = STATE(636), - [sym_preproc_ifdef] = STATE(636), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(951), - [sym_sizeof_expression] = STATE(951), - [sym_attribute_specifier] = STATE(43), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_linkage_specification] = STATE(636), - [sym_concatenated_string] = STATE(951), - [sym_string_literal] = STATE(41), - [sym_macro_type_specifier] = STATE(953), - [sym_while_statement] = STATE(636), - [sym_storage_class_specifier] = STATE(43), - [sym_compound_statement] = STATE(636), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_continue_statement] = STATE(636), - [sym_struct_specifier] = STATE(953), - [sym_goto_statement] = STATE(636), - [sym_true] = ACTIONS(378), - [anon_sym_restrict] = ACTIONS(7), - [sym_null] = ACTIONS(378), - [anon_sym_goto] = ACTIONS(380), - [aux_sym_preproc_if_token2] = ACTIONS(2523), - [anon_sym_const] = ACTIONS(7), - [anon_sym_typedef] = ACTIONS(384), - [anon_sym_DASH_DASH] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(7), - [sym_identifier] = ACTIONS(386), - [aux_sym_preproc_ifdef_token1] = ACTIONS(388), - [sym_number_literal] = ACTIONS(390), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_extern] = ACTIONS(392), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_struct] = ACTIONS(25), - [anon_sym_signed] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(27), - [anon_sym_while] = ACTIONS(394), - [aux_sym_preproc_ifdef_token2] = ACTIONS(388), - [aux_sym_preproc_elif_token1] = ACTIONS(396), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_sizeof] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(398), - [anon_sym_union] = ACTIONS(37), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_short] = ACTIONS(27), - [anon_sym_do] = ACTIONS(400), - [aux_sym_preproc_else_token1] = ACTIONS(402), - [sym_preproc_directive] = ACTIONS(404), - [anon_sym_AMP] = ACTIONS(43), - [aux_sym_preproc_if_token1] = ACTIONS(406), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(408), - [anon_sym_for] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_BANG] = ACTIONS(47), - [aux_sym_preproc_include_token1] = ACTIONS(414), - [anon_sym_DASH] = ACTIONS(61), - [anon_sym_static] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_register] = ACTIONS(63), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(416), - [anon_sym_switch] = ACTIONS(418), - [anon_sym_enum] = ACTIONS(69), - [sym_false] = ACTIONS(378), - [anon_sym_return] = ACTIONS(420), - [anon_sym_continue] = ACTIONS(422), - [anon_sym_SEMI] = ACTIONS(424), - [aux_sym_preproc_def_token1] = ACTIONS(426), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_auto] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), + [anon_sym_COMMA] = ACTIONS(2671), + [anon_sym_RPAREN] = ACTIONS(2671), + [anon_sym_SEMI] = ACTIONS(2671), + [anon_sym___attribute__] = ACTIONS(2671), + [anon_sym_LPAREN2] = ACTIONS(2671), + [anon_sym_LBRACE] = ACTIONS(2671), + [anon_sym_LBRACK] = ACTIONS(2671), + [anon_sym_EQ] = ACTIONS(2671), + [anon_sym_COLON] = ACTIONS(2671), + [sym_comment] = ACTIONS(3), }, [895] = { - [sym_if_statement] = STATE(912), - [sym_preproc_def] = STATE(912), - [sym_preproc_function_def] = STATE(912), - [sym__expression] = STATE(867), - [sym_comma_expression] = STATE(868), - [sym_binary_expression] = STATE(867), - [sym_update_expression] = STATE(867), - [sym_call_expression] = STATE(36), - [sym_function_definition] = STATE(912), - [sym_declaration] = STATE(912), - [sym_do_statement] = STATE(912), - [sym_for_statement] = STATE(912), - [aux_sym_translation_unit_repeat1] = STATE(912), - [sym_expression_statement] = STATE(912), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(869), - [sym_union_specifier] = STATE(869), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_switch_statement] = STATE(912), - [sym_return_statement] = STATE(912), - [sym_preproc_call] = STATE(912), - [sym_conditional_expression] = STATE(867), - [sym_assignment_expression] = STATE(867), - [sym_type_definition] = STATE(912), - [sym_cast_expression] = STATE(867), - [sym__declaration_specifiers] = STATE(1151), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(867), - [sym_char_literal] = STATE(867), - [sym_break_statement] = STATE(912), - [sym__empty_declaration] = STATE(912), - [sym_sized_type_specifier] = STATE(869), - [sym_enum_specifier] = STATE(869), - [sym_labeled_statement] = STATE(912), - [sym_preproc_include] = STATE(912), - [sym_preproc_if] = STATE(912), - [sym_preproc_ifdef] = STATE(912), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(867), - [sym_sizeof_expression] = STATE(867), - [sym_attribute_specifier] = STATE(43), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_linkage_specification] = STATE(912), - [sym_concatenated_string] = STATE(867), - [sym_string_literal] = STATE(41), - [sym_macro_type_specifier] = STATE(869), - [sym_while_statement] = STATE(912), - [sym_storage_class_specifier] = STATE(43), - [sym_compound_statement] = STATE(912), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_continue_statement] = STATE(912), - [sym_struct_specifier] = STATE(869), - [sym_goto_statement] = STATE(912), - [sym_true] = ACTIONS(81), - [anon_sym_restrict] = ACTIONS(7), - [sym_null] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_const] = ACTIONS(7), - [anon_sym_typedef] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(7), - [sym_identifier] = ACTIONS(87), - [aux_sym_preproc_ifdef_token1] = ACTIONS(89), - [sym_number_literal] = ACTIONS(91), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_extern] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_struct] = ACTIONS(25), - [anon_sym_signed] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(27), - [anon_sym_while] = ACTIONS(95), - [aux_sym_preproc_ifdef_token2] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_sizeof] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(97), - [anon_sym_union] = ACTIONS(37), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_short] = ACTIONS(27), - [anon_sym_do] = ACTIONS(99), - [sym_preproc_directive] = ACTIONS(101), - [anon_sym_AMP] = ACTIONS(43), - [aux_sym_preproc_if_token1] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(2525), - [sym_primitive_type] = ACTIONS(107), - [anon_sym_for] = ACTIONS(109), - [anon_sym_break] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(47), - [aux_sym_preproc_include_token1] = ACTIONS(113), - [anon_sym_DASH] = ACTIONS(61), - [anon_sym_static] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_register] = ACTIONS(63), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(115), - [anon_sym_switch] = ACTIONS(117), - [anon_sym_enum] = ACTIONS(69), - [sym_false] = ACTIONS(81), - [anon_sym_return] = ACTIONS(119), - [anon_sym_continue] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(123), - [aux_sym_preproc_def_token1] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_auto] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), + [sym__declarator] = STATE(897), + [sym_parenthesized_declarator] = STATE(897), + [sym_pointer_declarator] = STATE(897), + [sym_function_declarator] = STATE(897), + [sym_array_declarator] = STATE(897), + [sym_init_declarator] = STATE(1053), + [sym_identifier] = ACTIONS(2673), + [anon_sym_LPAREN2] = ACTIONS(2634), + [anon_sym_STAR] = ACTIONS(2636), + [sym_comment] = ACTIONS(3), }, [896] = { - [sym_if_statement] = STATE(913), - [sym_do_statement] = STATE(913), - [sym_for_statement] = STATE(913), - [sym__expression] = STATE(1093), - [sym_comma_expression] = STATE(1094), - [sym_binary_expression] = STATE(1093), - [sym_update_expression] = STATE(1093), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(913), - [sym_return_statement] = STATE(913), - [sym_break_statement] = STATE(913), - [sym_conditional_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_cast_expression] = STATE(1093), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1093), - [sym_char_literal] = STATE(1093), - [sym_labeled_statement] = STATE(913), - [sym_case_statement] = STATE(913), - [sym_while_statement] = STATE(913), - [sym_continue_statement] = STATE(913), - [sym_goto_statement] = STATE(913), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1093), - [sym_sizeof_expression] = STATE(1093), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1093), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(913), - [aux_sym_switch_body_repeat1] = STATE(913), - [sym_expression_statement] = STATE(913), - [anon_sym_LBRACE] = ACTIONS(994), - [anon_sym_case] = ACTIONS(996), - [sym_true] = ACTIONS(998), - [sym_null] = ACTIONS(998), - [anon_sym_do] = ACTIONS(1000), - [anon_sym_goto] = ACTIONS(1002), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(2527), - [anon_sym_default] = ACTIONS(1006), - [sym_identifier] = ACTIONS(1008), - [anon_sym_for] = ACTIONS(1010), - [anon_sym_break] = ACTIONS(1012), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(1014), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(1016), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(1018), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(998), - [anon_sym_return] = ACTIONS(1020), - [anon_sym_while] = ACTIONS(1022), - [anon_sym_continue] = ACTIONS(1024), - [anon_sym_SEMI] = ACTIONS(1026), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_compound_statement] = STATE(376), + [sym_parameter_list] = STATE(893), + [aux_sym_declaration_repeat1] = STATE(1049), + [anon_sym_COMMA] = ACTIONS(2675), + [anon_sym_SEMI] = ACTIONS(2677), + [anon_sym_LPAREN2] = ACTIONS(2679), + [anon_sym_LBRACE] = ACTIONS(364), + [anon_sym_LBRACK] = ACTIONS(2681), + [anon_sym_EQ] = ACTIONS(2683), + [sym_comment] = ACTIONS(3), }, [897] = { - [anon_sym_LF] = ACTIONS(2529), - [sym_comment] = ACTIONS(147), + [sym_compound_statement] = STATE(256), + [sym_parameter_list] = STATE(893), + [aux_sym_declaration_repeat1] = STATE(1042), + [anon_sym_COMMA] = ACTIONS(2675), + [anon_sym_SEMI] = ACTIONS(2685), + [anon_sym_LPAREN2] = ACTIONS(2679), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(2681), + [anon_sym_EQ] = ACTIONS(2683), + [sym_comment] = ACTIONS(3), }, [898] = { - [sym_comment] = ACTIONS(147), - [anon_sym_LF] = ACTIONS(2531), - [sym_preproc_arg] = ACTIONS(2533), + [anon_sym_COMMA] = ACTIONS(2687), + [anon_sym_RPAREN] = ACTIONS(2687), + [anon_sym_SEMI] = ACTIONS(2687), + [anon_sym___attribute__] = ACTIONS(2687), + [anon_sym_LPAREN2] = ACTIONS(2687), + [anon_sym_LBRACE] = ACTIONS(2687), + [anon_sym_LBRACK] = ACTIONS(2687), + [anon_sym_EQ] = ACTIONS(2687), + [anon_sym_COLON] = ACTIONS(2687), + [sym_comment] = ACTIONS(3), }, [899] = { - [anon_sym_RPAREN] = ACTIONS(2535), + [sym__declarator] = STATE(902), + [sym_parenthesized_declarator] = STATE(902), + [sym_pointer_declarator] = STATE(902), + [sym_function_declarator] = STATE(902), + [sym_array_declarator] = STATE(902), + [sym_init_declarator] = STATE(1041), + [sym_identifier] = ACTIONS(2689), + [anon_sym_LPAREN2] = ACTIONS(2634), + [anon_sym_STAR] = ACTIONS(2636), [sym_comment] = ACTIONS(3), }, [900] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_COLON] = ACTIONS(2537), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [anon_sym_COMMA] = ACTIONS(2691), + [anon_sym_RPAREN] = ACTIONS(2691), + [anon_sym_SEMI] = ACTIONS(2691), + [anon_sym___attribute__] = ACTIONS(2691), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_LBRACE] = ACTIONS(2691), + [anon_sym_LBRACK] = ACTIONS(2691), + [anon_sym_EQ] = ACTIONS(2691), + [anon_sym_COLON] = ACTIONS(2691), + [sym_comment] = ACTIONS(3), }, [901] = { - [aux_sym_declaration_repeat1] = STATE(308), + [sym__declarator] = STATE(931), + [sym_parenthesized_declarator] = STATE(931), + [sym_pointer_declarator] = STATE(931), + [sym_function_declarator] = STATE(931), + [sym_array_declarator] = STATE(931), + [sym_init_declarator] = STATE(1041), + [sym_identifier] = ACTIONS(2693), + [anon_sym_LPAREN2] = ACTIONS(2634), + [anon_sym_STAR] = ACTIONS(2636), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(654), - [anon_sym_SEMI] = ACTIONS(2539), }, [902] = { - [sym_preproc_def] = STATE(915), - [sym_preproc_function_def] = STATE(915), - [sym_sized_type_specifier] = STATE(130), - [sym_enum_specifier] = STATE(130), - [sym__field_declaration_list_item] = STATE(915), - [sym_field_declaration] = STATE(915), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(915), - [sym_preproc_else_in_field_declaration_list] = STATE(916), - [sym__type_specifier] = STATE(130), - [sym_union_specifier] = STATE(130), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_attribute_specifier] = STATE(43), - [sym_preproc_elif_in_field_declaration_list] = STATE(916), - [sym_type_qualifier] = STATE(43), - [sym_macro_type_specifier] = STATE(130), - [sym_preproc_call] = STATE(915), - [sym_preproc_if_in_field_declaration_list] = STATE(915), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(915), - [sym_struct_specifier] = STATE(130), - [sym__declaration_specifiers] = STATE(888), - [sym_storage_class_specifier] = STATE(43), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1145), - [anon_sym_union] = ACTIONS(37), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(7), - [anon_sym_short] = ACTIONS(27), - [anon_sym_static] = ACTIONS(63), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_register] = ACTIONS(63), - [anon_sym_extern] = ACTIONS(63), - [aux_sym_preproc_else_token1] = ACTIONS(1147), - [anon_sym_struct] = ACTIONS(25), - [sym_preproc_directive] = ACTIONS(1149), - [anon_sym_signed] = ACTIONS(27), - [aux_sym_preproc_if_token1] = ACTIONS(1151), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_long] = ACTIONS(27), - [anon_sym_const] = ACTIONS(7), - [aux_sym_preproc_if_token2] = ACTIONS(2541), + [sym_compound_statement] = STATE(365), + [sym_parameter_list] = STATE(893), + [aux_sym_declaration_repeat1] = STATE(1021), + [anon_sym_COMMA] = ACTIONS(2675), + [anon_sym_SEMI] = ACTIONS(2695), + [anon_sym_LPAREN2] = ACTIONS(2679), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(2681), + [anon_sym_EQ] = ACTIONS(2683), [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1145), - [aux_sym_preproc_elif_token1] = ACTIONS(1155), - [aux_sym_preproc_def_token1] = ACTIONS(1157), - [anon_sym__Atomic] = ACTIONS(7), - [anon_sym_auto] = ACTIONS(63), - [sym_primitive_type] = ACTIONS(348), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(31), - [sym_identifier] = ACTIONS(187), }, [903] = { - [sym_preproc_def] = STATE(917), - [sym_preproc_function_def] = STATE(917), - [sym_sized_type_specifier] = STATE(130), - [sym_enum_specifier] = STATE(130), - [sym__field_declaration_list_item] = STATE(917), - [sym_field_declaration] = STATE(917), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(917), - [sym_preproc_else_in_field_declaration_list] = STATE(918), - [sym__type_specifier] = STATE(130), - [sym_union_specifier] = STATE(130), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_attribute_specifier] = STATE(43), - [sym_preproc_elif_in_field_declaration_list] = STATE(918), - [sym_type_qualifier] = STATE(43), - [sym_macro_type_specifier] = STATE(130), - [sym_preproc_call] = STATE(917), - [sym_preproc_if_in_field_declaration_list] = STATE(917), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(917), - [sym_struct_specifier] = STATE(130), - [sym__declaration_specifiers] = STATE(888), - [sym_storage_class_specifier] = STATE(43), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1145), - [anon_sym_union] = ACTIONS(37), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(7), - [anon_sym_short] = ACTIONS(27), - [anon_sym_static] = ACTIONS(63), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_register] = ACTIONS(63), - [anon_sym_extern] = ACTIONS(63), - [aux_sym_preproc_else_token1] = ACTIONS(1147), - [anon_sym_struct] = ACTIONS(25), - [sym_preproc_directive] = ACTIONS(1149), - [anon_sym_signed] = ACTIONS(27), - [aux_sym_preproc_if_token1] = ACTIONS(1151), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_long] = ACTIONS(27), - [anon_sym_const] = ACTIONS(7), - [aux_sym_preproc_if_token2] = ACTIONS(2543), + [sym__declarator] = STATE(904), + [sym_parenthesized_declarator] = STATE(904), + [sym_pointer_declarator] = STATE(904), + [sym_function_declarator] = STATE(904), + [sym_array_declarator] = STATE(904), + [sym_init_declarator] = STATE(1017), + [sym_identifier] = ACTIONS(2697), + [anon_sym_LPAREN2] = ACTIONS(2634), + [anon_sym_STAR] = ACTIONS(2636), [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1145), - [aux_sym_preproc_elif_token1] = ACTIONS(1155), - [aux_sym_preproc_def_token1] = ACTIONS(1157), - [anon_sym__Atomic] = ACTIONS(7), - [anon_sym_auto] = ACTIONS(63), - [sym_primitive_type] = ACTIONS(348), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(31), - [sym_identifier] = ACTIONS(187), }, [904] = { + [sym_compound_statement] = STATE(367), + [sym_parameter_list] = STATE(893), + [aux_sym_declaration_repeat1] = STATE(1046), + [anon_sym_COMMA] = ACTIONS(2675), + [anon_sym_SEMI] = ACTIONS(2699), + [anon_sym_LPAREN2] = ACTIONS(2679), + [anon_sym_LBRACE] = ACTIONS(416), + [anon_sym_LBRACK] = ACTIONS(2681), + [anon_sym_EQ] = ACTIONS(2683), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2545), }, [905] = { - [sym_bitfield_clause] = STATE(919), - [aux_sym_field_declaration_repeat1] = STATE(920), - [sym_parameter_list] = STATE(327), - [anon_sym_LBRACK] = ACTIONS(1220), + [sym__declarator] = STATE(947), + [sym_parenthesized_declarator] = STATE(947), + [sym_pointer_declarator] = STATE(947), + [sym_function_declarator] = STATE(947), + [sym_array_declarator] = STATE(947), + [sym_init_declarator] = STATE(1088), + [sym_identifier] = ACTIONS(2701), + [anon_sym_LPAREN2] = ACTIONS(2634), + [anon_sym_STAR] = ACTIONS(2636), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(652), - [anon_sym_COMMA] = ACTIONS(1222), - [anon_sym_COLON] = ACTIONS(812), - [anon_sym_SEMI] = ACTIONS(2547), }, [906] = { - [aux_sym_preproc_if_token2] = ACTIONS(2549), + [sym__declarator] = STATE(896), + [sym_parenthesized_declarator] = STATE(896), + [sym_pointer_declarator] = STATE(896), + [sym_function_declarator] = STATE(896), + [sym_array_declarator] = STATE(896), + [sym_init_declarator] = STATE(1052), + [sym_identifier] = ACTIONS(2703), + [anon_sym_LPAREN2] = ACTIONS(2634), + [anon_sym_STAR] = ACTIONS(2636), [sym_comment] = ACTIONS(3), }, [907] = { - [aux_sym_type_definition_repeat2] = STATE(364), + [sym_parameter_list] = STATE(893), + [anon_sym_COMMA] = ACTIONS(2705), + [anon_sym_RPAREN] = ACTIONS(2705), + [anon_sym_SEMI] = ACTIONS(2705), + [anon_sym_LPAREN2] = ACTIONS(2679), + [anon_sym_LBRACE] = ACTIONS(2705), + [anon_sym_LBRACK] = ACTIONS(2681), + [anon_sym_EQ] = ACTIONS(2705), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_SEMI] = ACTIONS(2551), }, [908] = { - [aux_sym_type_definition_repeat2] = STATE(921), - [sym_parameter_list] = STATE(261), - [anon_sym_LBRACK] = ACTIONS(935), + [sym__field_declarator] = STATE(988), + [sym_parenthesized_field_declarator] = STATE(988), + [sym_pointer_field_declarator] = STATE(988), + [sym_function_field_declarator] = STATE(988), + [sym_array_field_declarator] = STATE(988), + [sym_identifier] = ACTIONS(2650), + [anon_sym_LPAREN2] = ACTIONS(2640), + [anon_sym_STAR] = ACTIONS(2642), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(652), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_SEMI] = ACTIONS(2553), }, [909] = { - [sym_char_literal] = STATE(922), - [sym__expression] = STATE(922), - [sym_comma_expression] = STATE(923), - [sym_binary_expression] = STATE(922), - [sym_update_expression] = STATE(922), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(922), - [sym_sizeof_expression] = STATE(922), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(922), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(922), - [sym_assignment_expression] = STATE(922), - [sym_cast_expression] = STATE(922), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(922), - [sym_true] = ACTIONS(2555), - [sym_null] = ACTIONS(2555), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(2557), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2555), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_RPAREN] = ACTIONS(2559), - [anon_sym_sizeof] = ACTIONS(33), + [sym__type_declarator] = STATE(938), + [sym_parenthesized_type_declarator] = STATE(938), + [sym_pointer_type_declarator] = STATE(938), + [sym_function_type_declarator] = STATE(938), + [sym_array_type_declarator] = STATE(938), + [sym_identifier] = ACTIONS(2707), + [anon_sym_LPAREN2] = ACTIONS(2646), + [anon_sym_STAR] = ACTIONS(2648), + [sym_comment] = ACTIONS(3), }, [910] = { - [sym_char_literal] = STATE(926), - [sym__expression] = STATE(926), - [sym_comma_expression] = STATE(927), - [sym_binary_expression] = STATE(926), - [sym_update_expression] = STATE(926), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(926), - [sym_sizeof_expression] = STATE(926), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(926), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(926), - [sym_assignment_expression] = STATE(926), - [sym_cast_expression] = STATE(926), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(926), - [sym_true] = ACTIONS(2561), - [sym_null] = ACTIONS(2561), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(2563), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2561), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_RPAREN] = ACTIONS(2565), - [anon_sym_sizeof] = ACTIONS(33), + [sym__type_declarator] = STATE(1009), + [sym_parenthesized_type_declarator] = STATE(1009), + [sym_pointer_type_declarator] = STATE(1009), + [sym_function_type_declarator] = STATE(1009), + [sym_array_type_declarator] = STATE(1009), + [sym_identifier] = ACTIONS(2707), + [anon_sym_LPAREN2] = ACTIONS(2646), + [anon_sym_STAR] = ACTIONS(2648), + [sym_comment] = ACTIONS(3), }, [911] = { - [aux_sym_preproc_if_token2] = ACTIONS(2567), + [sym__type_declarator] = STATE(955), + [sym_parenthesized_type_declarator] = STATE(955), + [sym_pointer_type_declarator] = STATE(955), + [sym_function_type_declarator] = STATE(955), + [sym_array_type_declarator] = STATE(955), + [sym_identifier] = ACTIONS(2707), + [anon_sym_LPAREN2] = ACTIONS(2646), + [anon_sym_STAR] = ACTIONS(2648), [sym_comment] = ACTIONS(3), }, [912] = { - [sym_if_statement] = STATE(533), - [sym_preproc_def] = STATE(533), - [sym_preproc_function_def] = STATE(533), - [sym__expression] = STATE(867), - [sym_comma_expression] = STATE(868), - [sym_binary_expression] = STATE(867), - [sym_update_expression] = STATE(867), - [sym_call_expression] = STATE(36), - [sym_function_definition] = STATE(533), - [sym_declaration] = STATE(533), - [sym_do_statement] = STATE(533), - [sym_for_statement] = STATE(533), - [aux_sym_translation_unit_repeat1] = STATE(533), - [sym_expression_statement] = STATE(533), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(869), - [sym_union_specifier] = STATE(869), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_switch_statement] = STATE(533), - [sym_return_statement] = STATE(533), - [sym_preproc_call] = STATE(533), - [sym_conditional_expression] = STATE(867), - [sym_assignment_expression] = STATE(867), - [sym_type_definition] = STATE(533), - [sym_cast_expression] = STATE(867), - [sym__declaration_specifiers] = STATE(1151), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(867), - [sym_char_literal] = STATE(867), - [sym_break_statement] = STATE(533), - [sym__empty_declaration] = STATE(533), - [sym_sized_type_specifier] = STATE(869), - [sym_enum_specifier] = STATE(869), - [sym_labeled_statement] = STATE(533), - [sym_preproc_include] = STATE(533), - [sym_preproc_if] = STATE(533), - [sym_preproc_ifdef] = STATE(533), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(867), - [sym_sizeof_expression] = STATE(867), - [sym_attribute_specifier] = STATE(43), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_linkage_specification] = STATE(533), - [sym_concatenated_string] = STATE(867), - [sym_string_literal] = STATE(41), - [sym_macro_type_specifier] = STATE(869), - [sym_while_statement] = STATE(533), - [sym_storage_class_specifier] = STATE(43), - [sym_compound_statement] = STATE(533), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_continue_statement] = STATE(533), - [sym_struct_specifier] = STATE(869), - [sym_goto_statement] = STATE(533), - [sym_true] = ACTIONS(81), - [anon_sym_restrict] = ACTIONS(7), - [sym_null] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_const] = ACTIONS(7), - [anon_sym_typedef] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(7), - [sym_identifier] = ACTIONS(87), - [aux_sym_preproc_ifdef_token1] = ACTIONS(89), - [sym_number_literal] = ACTIONS(91), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_extern] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_struct] = ACTIONS(25), - [anon_sym_signed] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(27), - [anon_sym_while] = ACTIONS(95), - [aux_sym_preproc_ifdef_token2] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_sizeof] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(97), - [anon_sym_union] = ACTIONS(37), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_short] = ACTIONS(27), - [anon_sym_do] = ACTIONS(99), - [sym_preproc_directive] = ACTIONS(101), - [anon_sym_AMP] = ACTIONS(43), - [aux_sym_preproc_if_token1] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(2569), - [sym_primitive_type] = ACTIONS(107), - [anon_sym_for] = ACTIONS(109), - [anon_sym_break] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(47), - [aux_sym_preproc_include_token1] = ACTIONS(113), - [anon_sym_DASH] = ACTIONS(61), - [anon_sym_static] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_register] = ACTIONS(63), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(115), - [anon_sym_switch] = ACTIONS(117), - [anon_sym_enum] = ACTIONS(69), - [sym_false] = ACTIONS(81), - [anon_sym_return] = ACTIONS(119), - [anon_sym_continue] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(123), - [aux_sym_preproc_def_token1] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_auto] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), + [sym__type_declarator] = STATE(935), + [sym_parenthesized_type_declarator] = STATE(935), + [sym_pointer_type_declarator] = STATE(935), + [sym_function_type_declarator] = STATE(935), + [sym_array_type_declarator] = STATE(935), + [sym_identifier] = ACTIONS(2707), + [anon_sym_LPAREN2] = ACTIONS(2646), + [anon_sym_STAR] = ACTIONS(2648), + [sym_comment] = ACTIONS(3), }, [913] = { - [sym_if_statement] = STATE(383), - [sym_do_statement] = STATE(383), - [sym_for_statement] = STATE(383), - [sym__expression] = STATE(1093), - [sym_comma_expression] = STATE(1094), - [sym_binary_expression] = STATE(1093), - [sym_update_expression] = STATE(1093), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(383), - [sym_return_statement] = STATE(383), - [sym_break_statement] = STATE(383), - [sym_conditional_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_cast_expression] = STATE(1093), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1093), - [sym_char_literal] = STATE(1093), - [sym_labeled_statement] = STATE(383), - [sym_case_statement] = STATE(383), - [sym_while_statement] = STATE(383), - [sym_continue_statement] = STATE(383), - [sym_goto_statement] = STATE(383), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1093), - [sym_sizeof_expression] = STATE(1093), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1093), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(383), - [aux_sym_switch_body_repeat1] = STATE(383), - [sym_expression_statement] = STATE(383), - [anon_sym_LBRACE] = ACTIONS(994), - [anon_sym_case] = ACTIONS(996), - [sym_true] = ACTIONS(998), - [sym_null] = ACTIONS(998), - [anon_sym_do] = ACTIONS(1000), - [anon_sym_goto] = ACTIONS(1002), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(2571), - [anon_sym_default] = ACTIONS(1006), - [sym_identifier] = ACTIONS(1008), - [anon_sym_for] = ACTIONS(1010), - [anon_sym_break] = ACTIONS(1012), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(1014), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(1016), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(1018), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(998), - [anon_sym_return] = ACTIONS(1020), - [anon_sym_while] = ACTIONS(1022), - [anon_sym_continue] = ACTIONS(1024), - [anon_sym_SEMI] = ACTIONS(1026), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_bitfield_clause] = STATE(1216), + [sym_parameter_list] = STATE(939), + [aux_sym_field_declaration_repeat1] = STATE(959), + [anon_sym_COMMA] = ACTIONS(2709), + [anon_sym_SEMI] = ACTIONS(2711), + [anon_sym_LPAREN2] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2713), + [anon_sym_COLON] = ACTIONS(2654), + [sym_comment] = ACTIONS(3), }, [914] = { - [anon_sym_LF] = ACTIONS(2573), - [sym_comment] = ACTIONS(147), + [sym__type_declarator] = STATE(951), + [sym_parenthesized_type_declarator] = STATE(951), + [sym_pointer_type_declarator] = STATE(951), + [sym_function_type_declarator] = STATE(951), + [sym_array_type_declarator] = STATE(951), + [sym_identifier] = ACTIONS(2707), + [anon_sym_LPAREN2] = ACTIONS(2646), + [anon_sym_STAR] = ACTIONS(2648), + [sym_comment] = ACTIONS(3), }, [915] = { - [sym_preproc_def] = STATE(561), - [sym_preproc_function_def] = STATE(561), - [sym_sized_type_specifier] = STATE(130), - [sym_enum_specifier] = STATE(130), - [sym__field_declaration_list_item] = STATE(561), - [sym_field_declaration] = STATE(561), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(561), - [sym_preproc_else_in_field_declaration_list] = STATE(929), - [sym__type_specifier] = STATE(130), - [sym_union_specifier] = STATE(130), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_attribute_specifier] = STATE(43), - [sym_preproc_elif_in_field_declaration_list] = STATE(929), - [sym_type_qualifier] = STATE(43), - [sym_macro_type_specifier] = STATE(130), - [sym_preproc_call] = STATE(561), - [sym_preproc_if_in_field_declaration_list] = STATE(561), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(561), - [sym_struct_specifier] = STATE(130), - [sym__declaration_specifiers] = STATE(888), - [sym_storage_class_specifier] = STATE(43), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1145), - [anon_sym_union] = ACTIONS(37), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(7), - [anon_sym_short] = ACTIONS(27), - [anon_sym_static] = ACTIONS(63), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_register] = ACTIONS(63), - [anon_sym_extern] = ACTIONS(63), - [aux_sym_preproc_else_token1] = ACTIONS(1147), - [anon_sym_struct] = ACTIONS(25), - [sym_preproc_directive] = ACTIONS(1149), - [anon_sym_signed] = ACTIONS(27), - [aux_sym_preproc_if_token1] = ACTIONS(1151), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_long] = ACTIONS(27), - [anon_sym_const] = ACTIONS(7), - [aux_sym_preproc_if_token2] = ACTIONS(2575), + [sym__field_declarator] = STATE(945), + [sym_parenthesized_field_declarator] = STATE(945), + [sym_pointer_field_declarator] = STATE(945), + [sym_function_field_declarator] = STATE(945), + [sym_array_field_declarator] = STATE(945), + [sym_identifier] = ACTIONS(2650), + [anon_sym_LPAREN2] = ACTIONS(2640), + [anon_sym_STAR] = ACTIONS(2642), [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1145), - [aux_sym_preproc_elif_token1] = ACTIONS(1155), - [aux_sym_preproc_def_token1] = ACTIONS(1157), - [anon_sym__Atomic] = ACTIONS(7), - [anon_sym_auto] = ACTIONS(63), - [sym_primitive_type] = ACTIONS(348), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(31), - [sym_identifier] = ACTIONS(187), }, [916] = { - [aux_sym_preproc_if_token2] = ACTIONS(2577), + [sym_bitfield_clause] = STATE(1170), + [sym_parameter_list] = STATE(939), + [aux_sym_field_declaration_repeat1] = STATE(963), + [anon_sym_COMMA] = ACTIONS(2709), + [anon_sym_SEMI] = ACTIONS(2715), + [anon_sym_LPAREN2] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2713), + [anon_sym_COLON] = ACTIONS(2654), [sym_comment] = ACTIONS(3), }, [917] = { - [sym_preproc_def] = STATE(561), - [sym_preproc_function_def] = STATE(561), - [sym_sized_type_specifier] = STATE(130), - [sym_enum_specifier] = STATE(130), - [sym__field_declaration_list_item] = STATE(561), - [sym_field_declaration] = STATE(561), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(561), - [sym_preproc_else_in_field_declaration_list] = STATE(930), - [sym__type_specifier] = STATE(130), - [sym_union_specifier] = STATE(130), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_attribute_specifier] = STATE(43), - [sym_preproc_elif_in_field_declaration_list] = STATE(930), - [sym_type_qualifier] = STATE(43), - [sym_macro_type_specifier] = STATE(130), - [sym_preproc_call] = STATE(561), - [sym_preproc_if_in_field_declaration_list] = STATE(561), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(561), - [sym_struct_specifier] = STATE(130), - [sym__declaration_specifiers] = STATE(888), - [sym_storage_class_specifier] = STATE(43), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1145), - [anon_sym_union] = ACTIONS(37), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(7), - [anon_sym_short] = ACTIONS(27), - [anon_sym_static] = ACTIONS(63), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_register] = ACTIONS(63), - [anon_sym_extern] = ACTIONS(63), - [aux_sym_preproc_else_token1] = ACTIONS(1147), - [anon_sym_struct] = ACTIONS(25), - [sym_preproc_directive] = ACTIONS(1149), - [anon_sym_signed] = ACTIONS(27), - [aux_sym_preproc_if_token1] = ACTIONS(1151), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_long] = ACTIONS(27), - [anon_sym_const] = ACTIONS(7), - [aux_sym_preproc_if_token2] = ACTIONS(2579), + [sym_bitfield_clause] = STATE(1249), + [sym_parameter_list] = STATE(939), + [aux_sym_field_declaration_repeat1] = STATE(961), + [anon_sym_COMMA] = ACTIONS(2709), + [anon_sym_SEMI] = ACTIONS(2717), + [anon_sym_LPAREN2] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2713), + [anon_sym_COLON] = ACTIONS(2654), [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1145), - [aux_sym_preproc_elif_token1] = ACTIONS(1155), - [aux_sym_preproc_def_token1] = ACTIONS(1157), - [anon_sym__Atomic] = ACTIONS(7), - [anon_sym_auto] = ACTIONS(63), - [sym_primitive_type] = ACTIONS(348), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(31), - [sym_identifier] = ACTIONS(187), }, [918] = { - [aux_sym_preproc_if_token2] = ACTIONS(2581), + [sym_parameter_list] = STATE(893), + [anon_sym_COMMA] = ACTIONS(2719), + [anon_sym_RPAREN] = ACTIONS(2719), + [anon_sym_SEMI] = ACTIONS(2719), + [anon_sym_LPAREN2] = ACTIONS(2679), + [anon_sym_LBRACE] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2681), + [anon_sym_EQ] = ACTIONS(2719), [sym_comment] = ACTIONS(3), }, [919] = { + [sym__type_declarator] = STATE(940), + [sym_parenthesized_type_declarator] = STATE(940), + [sym_pointer_type_declarator] = STATE(940), + [sym_function_type_declarator] = STATE(940), + [sym_array_type_declarator] = STATE(940), + [sym_identifier] = ACTIONS(2707), + [anon_sym_LPAREN2] = ACTIONS(2646), + [anon_sym_STAR] = ACTIONS(2648), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2583), }, [920] = { - [sym_bitfield_clause] = STATE(931), - [aux_sym_field_declaration_repeat1] = STATE(419), + [sym__type_declarator] = STATE(952), + [sym_parenthesized_type_declarator] = STATE(952), + [sym_pointer_type_declarator] = STATE(952), + [sym_function_type_declarator] = STATE(952), + [sym_array_type_declarator] = STATE(952), + [sym_identifier] = ACTIONS(2707), + [anon_sym_LPAREN2] = ACTIONS(2646), + [anon_sym_STAR] = ACTIONS(2648), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1222), - [anon_sym_COLON] = ACTIONS(812), - [anon_sym_SEMI] = ACTIONS(2583), }, [921] = { - [aux_sym_type_definition_repeat2] = STATE(364), + [sym__type_declarator] = STATE(941), + [sym_parenthesized_type_declarator] = STATE(941), + [sym_pointer_type_declarator] = STATE(941), + [sym_function_type_declarator] = STATE(941), + [sym_array_type_declarator] = STATE(941), + [sym_identifier] = ACTIONS(2707), + [anon_sym_LPAREN2] = ACTIONS(2646), + [anon_sym_STAR] = ACTIONS(2648), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_SEMI] = ACTIONS(2585), }, [922] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_COMMA] = ACTIONS(293), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_RPAREN] = ACTIONS(2587), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [sym__declarator] = STATE(1008), + [sym_parenthesized_declarator] = STATE(1008), + [sym_pointer_declarator] = STATE(1008), + [sym_function_declarator] = STATE(1008), + [sym_array_declarator] = STATE(1008), + [sym_identifier] = ACTIONS(2721), + [anon_sym_LPAREN2] = ACTIONS(2634), + [anon_sym_STAR] = ACTIONS(2636), + [sym_comment] = ACTIONS(3), }, [923] = { - [anon_sym_RPAREN] = ACTIONS(2587), + [sym__type_declarator] = STATE(953), + [sym_parenthesized_type_declarator] = STATE(953), + [sym_pointer_type_declarator] = STATE(953), + [sym_function_type_declarator] = STATE(953), + [sym_array_type_declarator] = STATE(953), + [sym_identifier] = ACTIONS(2707), + [anon_sym_LPAREN2] = ACTIONS(2646), + [anon_sym_STAR] = ACTIONS(2648), [sym_comment] = ACTIONS(3), }, [924] = { - [sym_char_literal] = STATE(932), - [sym__expression] = STATE(932), - [sym_comma_expression] = STATE(933), - [sym_binary_expression] = STATE(932), - [sym_update_expression] = STATE(932), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(932), - [sym_sizeof_expression] = STATE(932), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(932), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(932), - [sym_assignment_expression] = STATE(932), - [sym_cast_expression] = STATE(932), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(932), - [sym_true] = ACTIONS(2589), - [sym_null] = ACTIONS(2589), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(2591), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2589), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_RPAREN] = ACTIONS(2593), - [anon_sym_sizeof] = ACTIONS(33), + [sym__type_declarator] = STATE(936), + [sym_parenthesized_type_declarator] = STATE(936), + [sym_pointer_type_declarator] = STATE(936), + [sym_function_type_declarator] = STATE(936), + [sym_array_type_declarator] = STATE(936), + [sym_identifier] = ACTIONS(2707), + [anon_sym_LPAREN2] = ACTIONS(2646), + [anon_sym_STAR] = ACTIONS(2648), + [sym_comment] = ACTIONS(3), }, [925] = { - [sym_char_literal] = STATE(934), - [sym__expression] = STATE(934), - [sym_comma_expression] = STATE(935), - [sym_binary_expression] = STATE(934), - [sym_update_expression] = STATE(934), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(934), - [sym_sizeof_expression] = STATE(934), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(934), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(934), - [sym_assignment_expression] = STATE(934), - [sym_cast_expression] = STATE(934), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(934), - [sym_true] = ACTIONS(2595), - [sym_null] = ACTIONS(2595), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(2597), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2595), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_RPAREN] = ACTIONS(2599), - [anon_sym_sizeof] = ACTIONS(33), + [sym_parameter_list] = STATE(939), + [anon_sym_COMMA] = ACTIONS(2723), + [anon_sym_RPAREN] = ACTIONS(2723), + [anon_sym_SEMI] = ACTIONS(2723), + [anon_sym_LPAREN2] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2713), + [anon_sym_COLON] = ACTIONS(2723), + [sym_comment] = ACTIONS(3), }, [926] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_COMMA] = ACTIONS(293), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_RPAREN] = ACTIONS(2601), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [anon_sym_COMMA] = ACTIONS(2725), + [anon_sym_RPAREN] = ACTIONS(2725), + [anon_sym_SEMI] = ACTIONS(2725), + [anon_sym_LPAREN2] = ACTIONS(2725), + [anon_sym_LBRACE] = ACTIONS(2725), + [anon_sym_LBRACK] = ACTIONS(2725), + [anon_sym_EQ] = ACTIONS(2725), + [sym_comment] = ACTIONS(3), }, [927] = { - [anon_sym_RPAREN] = ACTIONS(2601), + [anon_sym_COMMA] = ACTIONS(2727), + [anon_sym_RPAREN] = ACTIONS(2727), + [anon_sym_SEMI] = ACTIONS(2727), + [anon_sym_LPAREN2] = ACTIONS(2727), + [anon_sym_LBRACE] = ACTIONS(2727), + [anon_sym_LBRACK] = ACTIONS(2727), + [anon_sym_EQ] = ACTIONS(2727), [sym_comment] = ACTIONS(3), }, [928] = { - [sym_char_literal] = STATE(937), - [sym__expression] = STATE(937), - [sym_comma_expression] = STATE(938), - [sym_binary_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(937), - [sym_sizeof_expression] = STATE(937), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(937), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(937), - [sym_assignment_expression] = STATE(937), - [sym_cast_expression] = STATE(937), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(937), - [sym_true] = ACTIONS(2603), - [sym_null] = ACTIONS(2603), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(2605), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2603), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_RPAREN] = ACTIONS(2607), - [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_COMMA] = ACTIONS(2729), + [anon_sym_RPAREN] = ACTIONS(2729), + [anon_sym_SEMI] = ACTIONS(2729), + [anon_sym_LPAREN2] = ACTIONS(2729), + [anon_sym_LBRACE] = ACTIONS(2729), + [anon_sym_LBRACK] = ACTIONS(2729), + [anon_sym_EQ] = ACTIONS(2729), + [sym_comment] = ACTIONS(3), }, [929] = { - [aux_sym_preproc_if_token2] = ACTIONS(2609), + [anon_sym_COMMA] = ACTIONS(2731), + [anon_sym_RPAREN] = ACTIONS(2731), + [anon_sym_SEMI] = ACTIONS(2731), + [anon_sym_LPAREN2] = ACTIONS(2731), + [anon_sym_LBRACE] = ACTIONS(2731), + [anon_sym_LBRACK] = ACTIONS(2731), + [anon_sym_EQ] = ACTIONS(2731), [sym_comment] = ACTIONS(3), }, [930] = { - [aux_sym_preproc_if_token2] = ACTIONS(2611), + [sym_parameter_list] = STATE(939), + [anon_sym_COMMA] = ACTIONS(2733), + [anon_sym_RPAREN] = ACTIONS(2733), + [anon_sym_SEMI] = ACTIONS(2733), + [anon_sym_LPAREN2] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2713), + [anon_sym_COLON] = ACTIONS(2733), [sym_comment] = ACTIONS(3), }, [931] = { + [sym_parameter_list] = STATE(893), + [aux_sym_declaration_repeat1] = STATE(1021), + [anon_sym_COMMA] = ACTIONS(2675), + [anon_sym_SEMI] = ACTIONS(2695), + [anon_sym_LPAREN2] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2681), + [anon_sym_EQ] = ACTIONS(2683), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2613), }, [932] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_COMMA] = ACTIONS(293), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_RPAREN] = ACTIONS(2615), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [anon_sym_COMMA] = ACTIONS(2735), + [anon_sym_RPAREN] = ACTIONS(2735), + [anon_sym_SEMI] = ACTIONS(2735), + [anon_sym_LPAREN2] = ACTIONS(2735), + [anon_sym_LBRACE] = ACTIONS(2735), + [anon_sym_LBRACK] = ACTIONS(2735), + [anon_sym_EQ] = ACTIONS(2735), + [sym_comment] = ACTIONS(3), }, [933] = { - [anon_sym_RPAREN] = ACTIONS(2615), + [anon_sym_COMMA] = ACTIONS(2737), + [anon_sym_RPAREN] = ACTIONS(2737), + [anon_sym_SEMI] = ACTIONS(2737), + [anon_sym_LPAREN2] = ACTIONS(2737), + [anon_sym_LBRACK] = ACTIONS(2737), + [anon_sym_COLON] = ACTIONS(2737), [sym_comment] = ACTIONS(3), }, [934] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_COMMA] = ACTIONS(293), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_RPAREN] = ACTIONS(2617), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [sym_subscript_designator] = STATE(937), + [sym_field_designator] = STATE(937), + [aux_sym_initializer_pair_repeat1] = STATE(937), + [anon_sym_LBRACK] = ACTIONS(1315), + [anon_sym_EQ] = ACTIONS(2739), + [anon_sym_DOT] = ACTIONS(2741), + [sym_comment] = ACTIONS(3), }, [935] = { - [anon_sym_RPAREN] = ACTIONS(2617), + [sym_parameter_list] = STATE(962), + [aux_sym_type_definition_repeat2] = STATE(1048), + [anon_sym_COMMA] = ACTIONS(2743), + [anon_sym_SEMI] = ACTIONS(2745), + [anon_sym_LPAREN2] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2747), [sym_comment] = ACTIONS(3), }, [936] = { - [sym_char_literal] = STATE(939), - [sym__expression] = STATE(939), - [sym_comma_expression] = STATE(940), - [sym_binary_expression] = STATE(939), - [sym_update_expression] = STATE(939), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(939), - [sym_sizeof_expression] = STATE(939), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(939), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(939), - [sym_assignment_expression] = STATE(939), - [sym_cast_expression] = STATE(939), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(939), - [sym_true] = ACTIONS(2619), - [sym_null] = ACTIONS(2619), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(2621), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2619), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_RPAREN] = ACTIONS(2623), - [anon_sym_sizeof] = ACTIONS(33), + [sym_parameter_list] = STATE(962), + [aux_sym_type_definition_repeat2] = STATE(1054), + [anon_sym_COMMA] = ACTIONS(2743), + [anon_sym_SEMI] = ACTIONS(2749), + [anon_sym_LPAREN2] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2747), + [sym_comment] = ACTIONS(3), }, [937] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_COMMA] = ACTIONS(293), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_RPAREN] = ACTIONS(2625), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [sym_subscript_designator] = STATE(937), + [sym_field_designator] = STATE(937), + [aux_sym_initializer_pair_repeat1] = STATE(937), + [anon_sym_LBRACK] = ACTIONS(2751), + [anon_sym_EQ] = ACTIONS(2754), + [anon_sym_DOT] = ACTIONS(2756), + [sym_comment] = ACTIONS(3), }, [938] = { - [anon_sym_RPAREN] = ACTIONS(2625), + [sym_parameter_list] = STATE(962), + [aux_sym_type_definition_repeat2] = STATE(1038), + [anon_sym_COMMA] = ACTIONS(2743), + [anon_sym_SEMI] = ACTIONS(2759), + [anon_sym_LPAREN2] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2747), [sym_comment] = ACTIONS(3), }, [939] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_COMMA] = ACTIONS(293), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_RPAREN] = ACTIONS(2627), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [anon_sym_COMMA] = ACTIONS(2761), + [anon_sym_RPAREN] = ACTIONS(2761), + [anon_sym_SEMI] = ACTIONS(2761), + [anon_sym_LPAREN2] = ACTIONS(2761), + [anon_sym_LBRACK] = ACTIONS(2761), + [anon_sym_COLON] = ACTIONS(2761), + [sym_comment] = ACTIONS(3), }, [940] = { - [anon_sym_RPAREN] = ACTIONS(2627), + [sym_parameter_list] = STATE(962), + [aux_sym_type_definition_repeat2] = STATE(1025), + [anon_sym_COMMA] = ACTIONS(2743), + [anon_sym_SEMI] = ACTIONS(2763), + [anon_sym_LPAREN2] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2747), [sym_comment] = ACTIONS(3), }, [941] = { - [sym_do_statement] = STATE(954), - [sym_preproc_function_def] = STATE(954), - [sym__expression] = STATE(867), - [sym_binary_expression] = STATE(867), - [sym_declaration] = STATE(954), - [sym_call_expression] = STATE(36), - [sym__type_specifier] = STATE(869), - [sym_break_statement] = STATE(954), - [sym_assignment_expression] = STATE(867), - [sym_type_definition] = STATE(954), - [sym_compound_literal_expression] = STATE(867), - [sym_char_literal] = STATE(867), - [sym__empty_declaration] = STATE(954), - [sym_sized_type_specifier] = STATE(869), - [sym_preproc_include] = STATE(954), - [sym_continue_statement] = STATE(954), - [sym_preproc_ifdef] = STATE(954), - [sym_pointer_expression] = STATE(36), - [sym_sizeof_expression] = STATE(867), - [sym_attribute_specifier] = STATE(43), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(867), - [sym_macro_type_specifier] = STATE(869), - [sym_storage_class_specifier] = STATE(43), - [sym_struct_specifier] = STATE(869), - [sym_if_statement] = STATE(954), - [sym_preproc_def] = STATE(954), - [sym_for_statement] = STATE(954), - [sym_comma_expression] = STATE(868), - [sym_function_definition] = STATE(954), - [sym_update_expression] = STATE(867), - [sym_type_qualifier] = STATE(43), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_union_specifier] = STATE(869), - [sym_switch_statement] = STATE(954), - [sym_return_statement] = STATE(954), - [sym_preproc_call] = STATE(954), - [sym_conditional_expression] = STATE(867), - [sym_cast_expression] = STATE(867), - [sym__declaration_specifiers] = STATE(1151), - [sym_field_expression] = STATE(36), - [sym_enum_specifier] = STATE(869), - [sym_labeled_statement] = STATE(954), - [sym_while_statement] = STATE(954), - [sym_preproc_if] = STATE(954), - [sym_goto_statement] = STATE(954), - [sym_unary_expression] = STATE(867), - [sym_linkage_specification] = STATE(954), - [sym_subscript_expression] = STATE(36), - [sym_string_literal] = STATE(41), - [aux_sym_translation_unit_repeat1] = STATE(954), - [sym_compound_statement] = STATE(954), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_expression_statement] = STATE(954), - [sym_true] = ACTIONS(81), - [anon_sym_restrict] = ACTIONS(7), - [sym_null] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_const] = ACTIONS(7), - [anon_sym_typedef] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(7), - [sym_identifier] = ACTIONS(87), - [aux_sym_preproc_ifdef_token1] = ACTIONS(89), - [sym_number_literal] = ACTIONS(91), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_extern] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_struct] = ACTIONS(25), - [anon_sym_signed] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(27), - [anon_sym_while] = ACTIONS(95), - [aux_sym_preproc_ifdef_token2] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_sizeof] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(97), - [anon_sym_union] = ACTIONS(37), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_short] = ACTIONS(27), - [anon_sym_do] = ACTIONS(99), - [sym_preproc_directive] = ACTIONS(101), - [anon_sym_AMP] = ACTIONS(43), - [aux_sym_preproc_if_token1] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(2629), - [sym_primitive_type] = ACTIONS(107), - [anon_sym_for] = ACTIONS(109), - [anon_sym_break] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(47), - [aux_sym_preproc_include_token1] = ACTIONS(113), - [anon_sym_DASH] = ACTIONS(61), - [anon_sym_static] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_register] = ACTIONS(63), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(115), - [anon_sym_switch] = ACTIONS(117), - [anon_sym_enum] = ACTIONS(69), - [sym_false] = ACTIONS(81), - [anon_sym_return] = ACTIONS(119), - [anon_sym_continue] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(123), - [aux_sym_preproc_def_token1] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_auto] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), + [sym_parameter_list] = STATE(962), + [aux_sym_type_definition_repeat2] = STATE(1036), + [anon_sym_COMMA] = ACTIONS(2743), + [anon_sym_SEMI] = ACTIONS(2765), + [anon_sym_LPAREN2] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2747), + [sym_comment] = ACTIONS(3), }, [942] = { - [sym_comment] = ACTIONS(147), - [anon_sym_LF] = ACTIONS(2631), - [sym_preproc_arg] = ACTIONS(2633), + [anon_sym_COMMA] = ACTIONS(2767), + [anon_sym_RPAREN] = ACTIONS(2767), + [anon_sym_SEMI] = ACTIONS(2767), + [anon_sym_LPAREN2] = ACTIONS(2767), + [anon_sym_LBRACK] = ACTIONS(2767), + [anon_sym_COLON] = ACTIONS(2767), + [sym_comment] = ACTIONS(3), }, [943] = { - [aux_sym_string_literal_repeat1] = STATE(961), - [sym_comment] = ACTIONS(147), - [sym_escape_sequence] = ACTIONS(2635), - [aux_sym_string_literal_token1] = ACTIONS(2635), - [anon_sym_DQUOTE] = ACTIONS(2637), + [anon_sym_COMMA] = ACTIONS(2769), + [anon_sym_RPAREN] = ACTIONS(2769), + [anon_sym_SEMI] = ACTIONS(2769), + [anon_sym_LPAREN2] = ACTIONS(2769), + [anon_sym_LBRACK] = ACTIONS(2769), + [anon_sym_COLON] = ACTIONS(2769), + [sym_comment] = ACTIONS(3), }, [944] = { - [anon_sym_LT] = ACTIONS(197), - [anon_sym_GT_GT] = ACTIONS(197), - [anon_sym_PIPE_EQ] = ACTIONS(199), - [anon_sym_restrict] = ACTIONS(201), - [anon_sym_PERCENT_EQ] = ACTIONS(199), - [anon_sym_AMP_EQ] = ACTIONS(199), - [anon_sym_DASH_EQ] = ACTIONS(199), - [anon_sym_PIPE] = ACTIONS(197), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_EQ_EQ] = ACTIONS(203), - [anon_sym_AMP] = ACTIONS(197), - [anon_sym_SLASH] = ACTIONS(197), - [anon_sym_DASH_GT] = ACTIONS(203), - [anon_sym_const] = ACTIONS(201), - [anon_sym_LPAREN2] = ACTIONS(205), - [anon_sym_GT_EQ] = ACTIONS(203), - [anon_sym_LT_LT] = ACTIONS(197), - [anon_sym_DASH_DASH] = ACTIONS(203), - [anon_sym_EQ] = ACTIONS(209), - [anon_sym_COLON] = ACTIONS(2639), - [anon_sym__Atomic] = ACTIONS(201), - [sym_identifier] = ACTIONS(201), - [anon_sym_PLUS_EQ] = ACTIONS(199), - [anon_sym_STAR_EQ] = ACTIONS(199), - [anon_sym_LT_LT_EQ] = ACTIONS(199), - [anon_sym_QMARK] = ACTIONS(203), - [anon_sym_PIPE_PIPE] = ACTIONS(203), - [anon_sym_BANG_EQ] = ACTIONS(203), - [anon_sym_CARET_EQ] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(203), - [anon_sym_static] = ACTIONS(201), - [anon_sym_volatile] = ACTIONS(201), - [anon_sym_register] = ACTIONS(201), - [anon_sym_extern] = ACTIONS(201), - [anon_sym_STAR] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_LT_EQ] = ACTIONS(203), - [anon_sym_PLUS_PLUS] = ACTIONS(203), - [sym_comment] = ACTIONS(3), - [anon_sym_SLASH_EQ] = ACTIONS(199), - [anon_sym_GT_GT_EQ] = ACTIONS(199), - [anon_sym_AMP_AMP] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(216), - [anon_sym_CARET] = ACTIONS(197), - [anon_sym_GT] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_auto] = ACTIONS(201), - [anon_sym_DOT] = ACTIONS(203), - [anon_sym_inline] = ACTIONS(201), - [anon_sym___attribute__] = ACTIONS(201), - [anon_sym_LBRACK] = ACTIONS(203), + [sym_parameter_list] = STATE(962), + [anon_sym_COMMA] = ACTIONS(2771), + [anon_sym_RPAREN] = ACTIONS(2771), + [anon_sym_SEMI] = ACTIONS(2771), + [anon_sym_LPAREN2] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2747), + [sym_comment] = ACTIONS(3), }, [945] = { + [sym_parameter_list] = STATE(939), + [anon_sym_COMMA] = ACTIONS(2773), + [anon_sym_SEMI] = ACTIONS(2773), + [anon_sym_LPAREN2] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2713), + [anon_sym_COLON] = ACTIONS(2773), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2641), }, [946] = { - [sym_string_literal] = STATE(629), + [anon_sym_COMMA] = ACTIONS(2775), + [anon_sym_RPAREN] = ACTIONS(2775), + [anon_sym_SEMI] = ACTIONS(2775), + [anon_sym_LPAREN2] = ACTIONS(2775), + [anon_sym_LBRACK] = ACTIONS(2775), + [anon_sym_COLON] = ACTIONS(2775), [sym_comment] = ACTIONS(3), - [anon_sym_L_DQUOTE] = ACTIONS(2643), - [sym_system_lib_string] = ACTIONS(2645), - [anon_sym_DQUOTE] = ACTIONS(2643), }, [947] = { - [sym_parenthesized_expression] = STATE(630), + [sym_parameter_list] = STATE(893), + [anon_sym_COMMA] = ACTIONS(2777), + [anon_sym_SEMI] = ACTIONS(2777), + [anon_sym_LPAREN2] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2681), + [anon_sym_EQ] = ACTIONS(2683), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(233), }, [948] = { - [sym_char_literal] = STATE(965), - [sym__expression] = STATE(965), - [sym_binary_expression] = STATE(965), - [sym_update_expression] = STATE(965), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(965), - [sym_sizeof_expression] = STATE(965), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(965), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(965), - [sym_assignment_expression] = STATE(965), - [sym_cast_expression] = STATE(965), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(965), - [sym_true] = ACTIONS(2647), - [sym_null] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(2649), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2647), - [anon_sym_SEMI] = ACTIONS(2651), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_COMMA] = ACTIONS(2779), + [anon_sym_RPAREN] = ACTIONS(2779), + [anon_sym_SEMI] = ACTIONS(2779), + [anon_sym_LPAREN2] = ACTIONS(2779), + [anon_sym_LBRACK] = ACTIONS(2779), + [anon_sym_COLON] = ACTIONS(2779), + [sym_comment] = ACTIONS(3), }, [949] = { - [sym_parenthesized_expression] = STATE(632), + [anon_sym_COMMA] = ACTIONS(2781), + [anon_sym_RPAREN] = ACTIONS(2781), + [anon_sym_SEMI] = ACTIONS(2781), + [anon_sym_LPAREN2] = ACTIONS(2781), + [anon_sym_LBRACK] = ACTIONS(2781), + [anon_sym_COLON] = ACTIONS(2781), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(233), }, [950] = { + [sym_parameter_list] = STATE(962), + [anon_sym_COMMA] = ACTIONS(2783), + [anon_sym_RPAREN] = ACTIONS(2783), + [anon_sym_SEMI] = ACTIONS(2783), + [anon_sym_LPAREN2] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2747), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2653), }, [951] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_COMMA] = ACTIONS(293), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_SEMI] = ACTIONS(2655), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [sym_parameter_list] = STATE(962), + [aux_sym_type_definition_repeat2] = STATE(1032), + [anon_sym_COMMA] = ACTIONS(2743), + [anon_sym_SEMI] = ACTIONS(2785), + [anon_sym_LPAREN2] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2747), + [sym_comment] = ACTIONS(3), }, [952] = { + [sym_parameter_list] = STATE(962), + [aux_sym_type_definition_repeat2] = STATE(1020), + [anon_sym_COMMA] = ACTIONS(2743), + [anon_sym_SEMI] = ACTIONS(2787), + [anon_sym_LPAREN2] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2747), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2655), }, [953] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(113), - [sym_attribute_specifier] = STATE(113), - [sym_storage_class_specifier] = STATE(113), - [sym_type_qualifier] = STATE(113), - [anon_sym_restrict] = ACTIONS(7), - [anon_sym_static] = ACTIONS(63), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_register] = ACTIONS(63), - [anon_sym_extern] = ACTIONS(63), - [anon_sym_STAR] = ACTIONS(307), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(7), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_SEMI] = ACTIONS(2657), - [anon_sym__Atomic] = ACTIONS(7), - [sym_identifier] = ACTIONS(311), - [anon_sym_auto] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(31), + [sym_parameter_list] = STATE(962), + [aux_sym_type_definition_repeat2] = STATE(1027), + [anon_sym_COMMA] = ACTIONS(2743), + [anon_sym_SEMI] = ACTIONS(2789), + [anon_sym_LPAREN2] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2747), + [sym_comment] = ACTIONS(3), }, [954] = { - [sym_do_statement] = STATE(533), - [sym_preproc_function_def] = STATE(533), - [sym__expression] = STATE(867), - [sym_binary_expression] = STATE(867), - [sym_declaration] = STATE(533), - [sym_call_expression] = STATE(36), - [sym__type_specifier] = STATE(869), - [sym_break_statement] = STATE(533), - [sym_assignment_expression] = STATE(867), - [sym_type_definition] = STATE(533), - [sym_compound_literal_expression] = STATE(867), - [sym_char_literal] = STATE(867), - [sym__empty_declaration] = STATE(533), - [sym_sized_type_specifier] = STATE(869), - [sym_preproc_include] = STATE(533), - [sym_continue_statement] = STATE(533), - [sym_preproc_ifdef] = STATE(533), - [sym_pointer_expression] = STATE(36), - [sym_sizeof_expression] = STATE(867), - [sym_attribute_specifier] = STATE(43), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(867), - [sym_macro_type_specifier] = STATE(869), - [sym_storage_class_specifier] = STATE(43), - [sym_struct_specifier] = STATE(869), - [sym_if_statement] = STATE(533), - [sym_preproc_def] = STATE(533), - [sym_for_statement] = STATE(533), - [sym_comma_expression] = STATE(868), - [sym_function_definition] = STATE(533), - [sym_update_expression] = STATE(867), - [sym_type_qualifier] = STATE(43), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_union_specifier] = STATE(869), - [sym_switch_statement] = STATE(533), - [sym_return_statement] = STATE(533), - [sym_preproc_call] = STATE(533), - [sym_conditional_expression] = STATE(867), - [sym_cast_expression] = STATE(867), - [sym__declaration_specifiers] = STATE(1151), - [sym_field_expression] = STATE(36), - [sym_enum_specifier] = STATE(869), - [sym_labeled_statement] = STATE(533), - [sym_while_statement] = STATE(533), - [sym_preproc_if] = STATE(533), - [sym_goto_statement] = STATE(533), - [sym_unary_expression] = STATE(867), - [sym_linkage_specification] = STATE(533), - [sym_subscript_expression] = STATE(36), - [sym_string_literal] = STATE(41), - [aux_sym_translation_unit_repeat1] = STATE(533), - [sym_compound_statement] = STATE(533), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_expression_statement] = STATE(533), - [sym_true] = ACTIONS(81), - [anon_sym_restrict] = ACTIONS(7), - [sym_null] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_const] = ACTIONS(7), - [anon_sym_typedef] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(7), - [sym_identifier] = ACTIONS(87), - [aux_sym_preproc_ifdef_token1] = ACTIONS(89), - [sym_number_literal] = ACTIONS(91), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_extern] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_struct] = ACTIONS(25), - [anon_sym_signed] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(27), - [anon_sym_while] = ACTIONS(95), - [aux_sym_preproc_ifdef_token2] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_sizeof] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(97), - [anon_sym_union] = ACTIONS(37), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_short] = ACTIONS(27), - [anon_sym_do] = ACTIONS(99), - [sym_preproc_directive] = ACTIONS(101), - [anon_sym_AMP] = ACTIONS(43), - [aux_sym_preproc_if_token1] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(2659), - [sym_primitive_type] = ACTIONS(107), - [anon_sym_for] = ACTIONS(109), - [anon_sym_break] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(47), - [aux_sym_preproc_include_token1] = ACTIONS(113), - [anon_sym_DASH] = ACTIONS(61), - [anon_sym_static] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_register] = ACTIONS(63), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(115), - [anon_sym_switch] = ACTIONS(117), - [anon_sym_enum] = ACTIONS(69), - [sym_false] = ACTIONS(81), - [anon_sym_return] = ACTIONS(119), - [anon_sym_continue] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(123), - [aux_sym_preproc_def_token1] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_auto] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), + [anon_sym_COMMA] = ACTIONS(2791), + [anon_sym_RPAREN] = ACTIONS(2791), + [anon_sym_SEMI] = ACTIONS(2791), + [anon_sym_LPAREN2] = ACTIONS(2791), + [anon_sym_LBRACK] = ACTIONS(2791), + [sym_comment] = ACTIONS(3), }, [955] = { - [anon_sym_GT_GT] = ACTIONS(197), - [anon_sym_PERCENT_EQ] = ACTIONS(199), - [anon_sym_DASH_EQ] = ACTIONS(199), - [anon_sym_PIPE] = ACTIONS(197), - [anon_sym_EQ_EQ] = ACTIONS(203), - [anon_sym_SLASH] = ACTIONS(197), - [anon_sym_DASH_GT] = ACTIONS(203), - [anon_sym_LT_LT] = ACTIONS(197), - [anon_sym_DASH_DASH] = ACTIONS(203), - [anon_sym_PLUS_EQ] = ACTIONS(199), - [anon_sym_LT_LT_EQ] = ACTIONS(199), - [anon_sym_QMARK] = ACTIONS(203), - [anon_sym_BANG_EQ] = ACTIONS(203), - [anon_sym_CARET_EQ] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(203), - [anon_sym_PLUS_PLUS] = ACTIONS(203), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT_EQ] = ACTIONS(199), - [anon_sym_GT] = ACTIONS(197), - [anon_sym_PIPE_EQ] = ACTIONS(199), - [anon_sym_AMP_EQ] = ACTIONS(199), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_AMP] = ACTIONS(197), - [anon_sym_EQ] = ACTIONS(209), - [anon_sym_LPAREN2] = ACTIONS(203), - [anon_sym_GT_EQ] = ACTIONS(203), - [anon_sym_COLON] = ACTIONS(2661), - [anon_sym_STAR_EQ] = ACTIONS(199), - [anon_sym_PIPE_PIPE] = ACTIONS(203), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_LT_EQ] = ACTIONS(203), - [anon_sym_STAR] = ACTIONS(197), - [anon_sym_SLASH_EQ] = ACTIONS(199), - [anon_sym_AMP_AMP] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(203), - [anon_sym_CARET] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_DOT] = ACTIONS(203), - [anon_sym_LT] = ACTIONS(197), - [anon_sym_LBRACK] = ACTIONS(203), + [sym_parameter_list] = STATE(962), + [anon_sym_COMMA] = ACTIONS(2793), + [anon_sym_SEMI] = ACTIONS(2793), + [anon_sym_LPAREN2] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2747), + [sym_comment] = ACTIONS(3), }, [956] = { + [anon_sym_COMMA] = ACTIONS(2795), + [anon_sym_RPAREN] = ACTIONS(2795), + [anon_sym_SEMI] = ACTIONS(2795), + [anon_sym_LPAREN2] = ACTIONS(2795), + [anon_sym_LBRACK] = ACTIONS(2795), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2663), }, [957] = { - [anon_sym_LF] = ACTIONS(2665), - [sym_comment] = ACTIONS(147), + [anon_sym_COMMA] = ACTIONS(2797), + [anon_sym_RPAREN] = ACTIONS(2797), + [anon_sym_SEMI] = ACTIONS(2797), + [anon_sym_LPAREN2] = ACTIONS(2797), + [anon_sym_LBRACK] = ACTIONS(2797), + [sym_comment] = ACTIONS(3), }, [958] = { - [sym_if_statement] = STATE(972), - [sym_preproc_def] = STATE(972), - [sym_preproc_function_def] = STATE(972), - [sym__expression] = STATE(951), - [sym_comma_expression] = STATE(952), - [sym_binary_expression] = STATE(951), - [sym_update_expression] = STATE(951), - [sym_call_expression] = STATE(36), - [sym_function_definition] = STATE(972), - [sym_declaration] = STATE(972), - [sym_do_statement] = STATE(972), - [sym_for_statement] = STATE(972), - [sym_preproc_else] = STATE(971), - [sym_preproc_elif] = STATE(971), - [aux_sym_translation_unit_repeat1] = STATE(972), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(953), - [sym_union_specifier] = STATE(953), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_expression_statement] = STATE(972), - [sym_switch_statement] = STATE(972), - [sym_return_statement] = STATE(972), - [sym_preproc_call] = STATE(972), - [sym_conditional_expression] = STATE(951), - [sym_assignment_expression] = STATE(951), - [sym_cast_expression] = STATE(951), - [sym__declaration_specifiers] = STATE(1172), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(951), - [sym_type_definition] = STATE(972), - [sym_char_literal] = STATE(951), - [sym_break_statement] = STATE(972), - [sym__empty_declaration] = STATE(972), - [sym_sized_type_specifier] = STATE(953), - [sym_enum_specifier] = STATE(953), - [sym_labeled_statement] = STATE(972), - [sym_preproc_include] = STATE(972), - [sym_preproc_if] = STATE(972), - [sym_preproc_ifdef] = STATE(972), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(951), - [sym_sizeof_expression] = STATE(951), - [sym_attribute_specifier] = STATE(43), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_linkage_specification] = STATE(972), - [sym_concatenated_string] = STATE(951), - [sym_string_literal] = STATE(41), - [sym_macro_type_specifier] = STATE(953), - [sym_while_statement] = STATE(972), - [sym_storage_class_specifier] = STATE(43), - [sym_compound_statement] = STATE(972), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_continue_statement] = STATE(972), - [sym_struct_specifier] = STATE(953), - [sym_goto_statement] = STATE(972), - [sym_true] = ACTIONS(378), - [anon_sym_restrict] = ACTIONS(7), - [sym_null] = ACTIONS(378), - [anon_sym_goto] = ACTIONS(380), - [aux_sym_preproc_if_token2] = ACTIONS(2667), - [anon_sym_const] = ACTIONS(7), - [anon_sym_typedef] = ACTIONS(384), - [anon_sym_DASH_DASH] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(7), - [sym_identifier] = ACTIONS(386), - [aux_sym_preproc_ifdef_token1] = ACTIONS(388), - [sym_number_literal] = ACTIONS(390), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_extern] = ACTIONS(392), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_struct] = ACTIONS(25), - [anon_sym_signed] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(27), - [anon_sym_while] = ACTIONS(394), - [aux_sym_preproc_ifdef_token2] = ACTIONS(388), - [aux_sym_preproc_elif_token1] = ACTIONS(396), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_sizeof] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(398), - [anon_sym_union] = ACTIONS(37), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_short] = ACTIONS(27), - [anon_sym_do] = ACTIONS(400), - [aux_sym_preproc_else_token1] = ACTIONS(402), - [sym_preproc_directive] = ACTIONS(404), - [anon_sym_AMP] = ACTIONS(43), - [aux_sym_preproc_if_token1] = ACTIONS(406), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(408), - [anon_sym_for] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_BANG] = ACTIONS(47), - [aux_sym_preproc_include_token1] = ACTIONS(414), - [anon_sym_DASH] = ACTIONS(61), - [anon_sym_static] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_register] = ACTIONS(63), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(416), - [anon_sym_switch] = ACTIONS(418), - [anon_sym_enum] = ACTIONS(69), - [sym_false] = ACTIONS(378), - [anon_sym_return] = ACTIONS(420), - [anon_sym_continue] = ACTIONS(422), - [anon_sym_SEMI] = ACTIONS(424), - [aux_sym_preproc_def_token1] = ACTIONS(426), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_auto] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), + [sym_parameter_list] = STATE(992), + [anon_sym_COMMA] = ACTIONS(2799), + [anon_sym_RPAREN] = ACTIONS(2799), + [anon_sym_LPAREN2] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2801), + [sym_comment] = ACTIONS(3), }, [959] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_COMMA] = ACTIONS(293), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_RPAREN] = ACTIONS(2669), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [sym_bitfield_clause] = STATE(1187), + [aux_sym_field_declaration_repeat1] = STATE(980), + [anon_sym_COMMA] = ACTIONS(2709), + [anon_sym_SEMI] = ACTIONS(2803), + [anon_sym_COLON] = ACTIONS(2654), + [sym_comment] = ACTIONS(3), }, [960] = { - [anon_sym_RPAREN] = ACTIONS(2669), + [sym_parameter_list] = STATE(992), + [anon_sym_COMMA] = ACTIONS(2805), + [anon_sym_RPAREN] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2801), [sym_comment] = ACTIONS(3), }, [961] = { - [aux_sym_string_literal_repeat1] = STATE(157), - [sym_comment] = ACTIONS(147), - [sym_escape_sequence] = ACTIONS(469), - [aux_sym_string_literal_token1] = ACTIONS(469), - [anon_sym_DQUOTE] = ACTIONS(2671), + [sym_bitfield_clause] = STATE(1284), + [aux_sym_field_declaration_repeat1] = STATE(980), + [anon_sym_COMMA] = ACTIONS(2709), + [anon_sym_SEMI] = ACTIONS(2807), + [anon_sym_COLON] = ACTIONS(2654), + [sym_comment] = ACTIONS(3), }, [962] = { - [sym_if_statement] = STATE(975), - [sym_preproc_def] = STATE(975), - [sym_preproc_function_def] = STATE(975), - [sym__expression] = STATE(951), - [sym_comma_expression] = STATE(952), - [sym_binary_expression] = STATE(951), - [sym_update_expression] = STATE(951), - [sym_call_expression] = STATE(36), - [sym_function_definition] = STATE(975), - [sym_declaration] = STATE(975), - [sym_do_statement] = STATE(975), - [sym_for_statement] = STATE(975), - [sym_preproc_else] = STATE(974), - [sym_preproc_elif] = STATE(974), - [aux_sym_translation_unit_repeat1] = STATE(975), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(953), - [sym_union_specifier] = STATE(953), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_expression_statement] = STATE(975), - [sym_switch_statement] = STATE(975), - [sym_return_statement] = STATE(975), - [sym_preproc_call] = STATE(975), - [sym_conditional_expression] = STATE(951), - [sym_assignment_expression] = STATE(951), - [sym_cast_expression] = STATE(951), - [sym__declaration_specifiers] = STATE(1172), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(951), - [sym_type_definition] = STATE(975), - [sym_char_literal] = STATE(951), - [sym_break_statement] = STATE(975), - [sym__empty_declaration] = STATE(975), - [sym_sized_type_specifier] = STATE(953), - [sym_enum_specifier] = STATE(953), - [sym_labeled_statement] = STATE(975), - [sym_preproc_include] = STATE(975), - [sym_preproc_if] = STATE(975), - [sym_preproc_ifdef] = STATE(975), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(951), - [sym_sizeof_expression] = STATE(951), - [sym_attribute_specifier] = STATE(43), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_linkage_specification] = STATE(975), - [sym_concatenated_string] = STATE(951), - [sym_string_literal] = STATE(41), - [sym_macro_type_specifier] = STATE(953), - [sym_while_statement] = STATE(975), - [sym_storage_class_specifier] = STATE(43), - [sym_compound_statement] = STATE(975), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_continue_statement] = STATE(975), - [sym_struct_specifier] = STATE(953), - [sym_goto_statement] = STATE(975), - [sym_true] = ACTIONS(378), - [anon_sym_restrict] = ACTIONS(7), - [sym_null] = ACTIONS(378), - [anon_sym_goto] = ACTIONS(380), - [aux_sym_preproc_if_token2] = ACTIONS(2673), - [anon_sym_const] = ACTIONS(7), - [anon_sym_typedef] = ACTIONS(384), - [anon_sym_DASH_DASH] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(7), - [sym_identifier] = ACTIONS(386), - [aux_sym_preproc_ifdef_token1] = ACTIONS(388), - [sym_number_literal] = ACTIONS(390), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_extern] = ACTIONS(392), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_struct] = ACTIONS(25), - [anon_sym_signed] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(27), - [anon_sym_while] = ACTIONS(394), - [aux_sym_preproc_ifdef_token2] = ACTIONS(388), - [aux_sym_preproc_elif_token1] = ACTIONS(396), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_sizeof] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(398), - [anon_sym_union] = ACTIONS(37), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_short] = ACTIONS(27), - [anon_sym_do] = ACTIONS(400), - [aux_sym_preproc_else_token1] = ACTIONS(402), - [sym_preproc_directive] = ACTIONS(404), - [anon_sym_AMP] = ACTIONS(43), - [aux_sym_preproc_if_token1] = ACTIONS(406), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(408), - [anon_sym_for] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_BANG] = ACTIONS(47), - [aux_sym_preproc_include_token1] = ACTIONS(414), - [anon_sym_DASH] = ACTIONS(61), - [anon_sym_static] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_register] = ACTIONS(63), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(416), - [anon_sym_switch] = ACTIONS(418), - [anon_sym_enum] = ACTIONS(69), - [sym_false] = ACTIONS(378), - [anon_sym_return] = ACTIONS(420), - [anon_sym_continue] = ACTIONS(422), - [anon_sym_SEMI] = ACTIONS(424), - [aux_sym_preproc_def_token1] = ACTIONS(426), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_auto] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), + [anon_sym_COMMA] = ACTIONS(2809), + [anon_sym_RPAREN] = ACTIONS(2809), + [anon_sym_SEMI] = ACTIONS(2809), + [anon_sym_LPAREN2] = ACTIONS(2809), + [anon_sym_LBRACK] = ACTIONS(2809), + [sym_comment] = ACTIONS(3), }, [963] = { - [sym_sized_type_specifier] = STATE(130), - [sym_declaration] = STATE(645), - [sym_declaration_list] = STATE(645), - [sym_enum_specifier] = STATE(130), - [sym_function_definition] = STATE(645), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(130), - [sym_union_specifier] = STATE(130), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_attribute_specifier] = STATE(43), - [sym_macro_type_specifier] = STATE(130), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_storage_class_specifier] = STATE(43), - [sym__declaration_specifiers] = STATE(1172), - [sym_struct_specifier] = STATE(130), - [anon_sym_LBRACE] = ACTIONS(2675), - [anon_sym_union] = ACTIONS(37), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(7), - [anon_sym_short] = ACTIONS(27), - [anon_sym_static] = ACTIONS(63), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_register] = ACTIONS(63), - [anon_sym_extern] = ACTIONS(63), - [anon_sym_struct] = ACTIONS(25), - [anon_sym_signed] = ACTIONS(27), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_long] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(7), - [anon_sym__Atomic] = ACTIONS(7), - [sym_primitive_type] = ACTIONS(348), - [anon_sym_auto] = ACTIONS(63), - [sym_identifier] = ACTIONS(187), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(31), + [sym_bitfield_clause] = STATE(1204), + [aux_sym_field_declaration_repeat1] = STATE(980), + [anon_sym_COMMA] = ACTIONS(2709), + [anon_sym_SEMI] = ACTIONS(2811), + [anon_sym_COLON] = ACTIONS(2654), + [sym_comment] = ACTIONS(3), }, [964] = { - [sym_switch_body] = STATE(647), - [anon_sym_LBRACE] = ACTIONS(2677), + [sym_parameter_list] = STATE(893), + [anon_sym_COMMA] = ACTIONS(2805), + [anon_sym_RPAREN] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2681), [sym_comment] = ACTIONS(3), }, [965] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_SEMI] = ACTIONS(2679), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [anon_sym_COMMA] = ACTIONS(2813), + [anon_sym_RPAREN] = ACTIONS(2813), + [anon_sym_SEMI] = ACTIONS(2813), + [anon_sym_LPAREN2] = ACTIONS(2813), + [anon_sym_LBRACK] = ACTIONS(2813), + [sym_comment] = ACTIONS(3), }, [966] = { - [sym_preproc_params] = STATE(979), - [sym_preproc_arg] = ACTIONS(2681), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_LF] = ACTIONS(2683), - [sym_comment] = ACTIONS(147), + [anon_sym_COMMA] = ACTIONS(2815), + [anon_sym_RPAREN] = ACTIONS(2815), + [anon_sym_SEMI] = ACTIONS(2815), + [anon_sym_LPAREN2] = ACTIONS(2815), + [anon_sym_LBRACK] = ACTIONS(2815), + [sym_comment] = ACTIONS(3), }, [967] = { - [aux_sym_declaration_repeat1] = STATE(980), - [sym_compound_statement] = STATE(652), - [sym_parameter_list] = STATE(214), - [anon_sym_LBRACE] = ACTIONS(398), - [anon_sym_EQ] = ACTIONS(648), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN2] = ACTIONS(652), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(654), - [anon_sym_SEMI] = ACTIONS(2685), + [sym_parameter_list] = STATE(992), + [anon_sym_COMMA] = ACTIONS(2817), + [anon_sym_RPAREN] = ACTIONS(2817), + [anon_sym_LPAREN2] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2801), + [sym_comment] = ACTIONS(3), }, [968] = { - [aux_sym_declaration_repeat1] = STATE(980), + [anon_sym_COMMA] = ACTIONS(2819), + [anon_sym_RPAREN] = ACTIONS(2819), + [anon_sym_SEMI] = ACTIONS(2819), + [anon_sym_LPAREN2] = ACTIONS(2819), + [anon_sym_LBRACK] = ACTIONS(2819), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(654), - [anon_sym_SEMI] = ACTIONS(2685), }, [969] = { - [sym__field_declarator] = STATE(984), - [sym_parenthesized_field_declarator] = STATE(984), - [sym_function_field_declarator] = STATE(984), - [sym_bitfield_clause] = STATE(983), - [sym_pointer_field_declarator] = STATE(984), - [sym_array_field_declarator] = STATE(984), - [sym_comment] = ACTIONS(3), - [anon_sym_STAR] = ACTIONS(806), - [anon_sym_LPAREN2] = ACTIONS(808), - [sym_identifier] = ACTIONS(810), - [anon_sym_COLON] = ACTIONS(812), - [anon_sym_SEMI] = ACTIONS(2687), + [sym_preproc_params] = STATE(1076), + [anon_sym_LF] = ACTIONS(2821), + [anon_sym_LPAREN] = ACTIONS(2823), + [sym_preproc_arg] = ACTIONS(2825), + [sym_comment] = ACTIONS(2827), }, [970] = { - [sym_parenthesized_expression] = STATE(230), + [sym_parameter_list] = STATE(992), + [anon_sym_RPAREN] = ACTIONS(2829), + [anon_sym_LPAREN2] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2801), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(237), }, [971] = { - [aux_sym_preproc_if_token2] = ACTIONS(2689), - [sym_comment] = ACTIONS(3), + [aux_sym_string_literal_repeat1] = STATE(1007), + [anon_sym_DQUOTE] = ACTIONS(2831), + [aux_sym_string_literal_token1] = ACTIONS(2833), + [sym_escape_sequence] = ACTIONS(2833), + [sym_comment] = ACTIONS(2827), }, [972] = { - [sym_if_statement] = STATE(636), - [sym_preproc_def] = STATE(636), - [sym_preproc_function_def] = STATE(636), - [sym__expression] = STATE(951), - [sym_comma_expression] = STATE(952), - [sym_binary_expression] = STATE(951), - [sym_update_expression] = STATE(951), - [sym_call_expression] = STATE(36), - [sym_function_definition] = STATE(636), - [sym_declaration] = STATE(636), - [sym_do_statement] = STATE(636), - [sym_for_statement] = STATE(636), - [sym_preproc_else] = STATE(985), - [sym_preproc_elif] = STATE(985), - [aux_sym_translation_unit_repeat1] = STATE(636), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(953), - [sym_union_specifier] = STATE(953), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_expression_statement] = STATE(636), - [sym_switch_statement] = STATE(636), - [sym_return_statement] = STATE(636), - [sym_preproc_call] = STATE(636), - [sym_conditional_expression] = STATE(951), - [sym_assignment_expression] = STATE(951), - [sym_cast_expression] = STATE(951), - [sym__declaration_specifiers] = STATE(1172), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(951), - [sym_type_definition] = STATE(636), - [sym_char_literal] = STATE(951), - [sym_break_statement] = STATE(636), - [sym__empty_declaration] = STATE(636), - [sym_sized_type_specifier] = STATE(953), - [sym_enum_specifier] = STATE(953), - [sym_labeled_statement] = STATE(636), - [sym_preproc_include] = STATE(636), - [sym_preproc_if] = STATE(636), - [sym_preproc_ifdef] = STATE(636), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(951), - [sym_sizeof_expression] = STATE(951), - [sym_attribute_specifier] = STATE(43), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_linkage_specification] = STATE(636), - [sym_concatenated_string] = STATE(951), - [sym_string_literal] = STATE(41), - [sym_macro_type_specifier] = STATE(953), - [sym_while_statement] = STATE(636), - [sym_storage_class_specifier] = STATE(43), - [sym_compound_statement] = STATE(636), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_continue_statement] = STATE(636), - [sym_struct_specifier] = STATE(953), - [sym_goto_statement] = STATE(636), - [sym_true] = ACTIONS(378), - [anon_sym_restrict] = ACTIONS(7), - [sym_null] = ACTIONS(378), - [anon_sym_goto] = ACTIONS(380), - [aux_sym_preproc_if_token2] = ACTIONS(2691), - [anon_sym_const] = ACTIONS(7), - [anon_sym_typedef] = ACTIONS(384), - [anon_sym_DASH_DASH] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(7), - [sym_identifier] = ACTIONS(386), - [aux_sym_preproc_ifdef_token1] = ACTIONS(388), - [sym_number_literal] = ACTIONS(390), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_extern] = ACTIONS(392), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_struct] = ACTIONS(25), - [anon_sym_signed] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(27), - [anon_sym_while] = ACTIONS(394), - [aux_sym_preproc_ifdef_token2] = ACTIONS(388), - [aux_sym_preproc_elif_token1] = ACTIONS(396), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_sizeof] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(398), - [anon_sym_union] = ACTIONS(37), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_short] = ACTIONS(27), - [anon_sym_do] = ACTIONS(400), - [aux_sym_preproc_else_token1] = ACTIONS(402), - [sym_preproc_directive] = ACTIONS(404), - [anon_sym_AMP] = ACTIONS(43), - [aux_sym_preproc_if_token1] = ACTIONS(406), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(408), - [anon_sym_for] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_BANG] = ACTIONS(47), - [aux_sym_preproc_include_token1] = ACTIONS(414), - [anon_sym_DASH] = ACTIONS(61), - [anon_sym_static] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_register] = ACTIONS(63), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(416), - [anon_sym_switch] = ACTIONS(418), - [anon_sym_enum] = ACTIONS(69), - [sym_false] = ACTIONS(378), - [anon_sym_return] = ACTIONS(420), - [anon_sym_continue] = ACTIONS(422), - [anon_sym_SEMI] = ACTIONS(424), - [aux_sym_preproc_def_token1] = ACTIONS(426), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_auto] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), + [anon_sym_COMMA] = ACTIONS(2835), + [anon_sym_RPAREN] = ACTIONS(2835), + [anon_sym_LPAREN2] = ACTIONS(2835), + [anon_sym_LBRACK] = ACTIONS(2835), + [sym_comment] = ACTIONS(3), }, [973] = { - [aux_sym_type_definition_repeat2] = STATE(986), - [sym_parameter_list] = STATE(261), - [anon_sym_LBRACK] = ACTIONS(935), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(652), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_SEMI] = ACTIONS(2693), + [aux_sym_string_literal_repeat1] = STATE(1007), + [anon_sym_DQUOTE] = ACTIONS(2837), + [aux_sym_string_literal_token1] = ACTIONS(2833), + [sym_escape_sequence] = ACTIONS(2833), + [sym_comment] = ACTIONS(2827), }, [974] = { - [aux_sym_preproc_if_token2] = ACTIONS(2695), - [sym_comment] = ACTIONS(3), + [sym_preproc_params] = STATE(1057), + [anon_sym_LF] = ACTIONS(2839), + [anon_sym_LPAREN] = ACTIONS(2823), + [sym_preproc_arg] = ACTIONS(2841), + [sym_comment] = ACTIONS(2827), }, [975] = { - [sym_if_statement] = STATE(636), - [sym_preproc_def] = STATE(636), - [sym_preproc_function_def] = STATE(636), - [sym__expression] = STATE(951), - [sym_comma_expression] = STATE(952), - [sym_binary_expression] = STATE(951), - [sym_update_expression] = STATE(951), - [sym_call_expression] = STATE(36), - [sym_function_definition] = STATE(636), - [sym_declaration] = STATE(636), - [sym_do_statement] = STATE(636), - [sym_for_statement] = STATE(636), - [sym_preproc_else] = STATE(990), - [sym_preproc_elif] = STATE(990), - [aux_sym_translation_unit_repeat1] = STATE(636), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(953), - [sym_union_specifier] = STATE(953), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_expression_statement] = STATE(636), - [sym_switch_statement] = STATE(636), - [sym_return_statement] = STATE(636), - [sym_preproc_call] = STATE(636), - [sym_conditional_expression] = STATE(951), - [sym_assignment_expression] = STATE(951), - [sym_cast_expression] = STATE(951), - [sym__declaration_specifiers] = STATE(1172), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(951), - [sym_type_definition] = STATE(636), - [sym_char_literal] = STATE(951), - [sym_break_statement] = STATE(636), - [sym__empty_declaration] = STATE(636), - [sym_sized_type_specifier] = STATE(953), - [sym_enum_specifier] = STATE(953), - [sym_labeled_statement] = STATE(636), - [sym_preproc_include] = STATE(636), - [sym_preproc_if] = STATE(636), - [sym_preproc_ifdef] = STATE(636), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(951), - [sym_sizeof_expression] = STATE(951), - [sym_attribute_specifier] = STATE(43), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_linkage_specification] = STATE(636), - [sym_concatenated_string] = STATE(951), - [sym_string_literal] = STATE(41), - [sym_macro_type_specifier] = STATE(953), - [sym_while_statement] = STATE(636), - [sym_storage_class_specifier] = STATE(43), - [sym_compound_statement] = STATE(636), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_continue_statement] = STATE(636), - [sym_struct_specifier] = STATE(953), - [sym_goto_statement] = STATE(636), - [sym_true] = ACTIONS(378), - [anon_sym_restrict] = ACTIONS(7), - [sym_null] = ACTIONS(378), - [anon_sym_goto] = ACTIONS(380), - [aux_sym_preproc_if_token2] = ACTIONS(2697), - [anon_sym_const] = ACTIONS(7), - [anon_sym_typedef] = ACTIONS(384), - [anon_sym_DASH_DASH] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(7), - [sym_identifier] = ACTIONS(386), - [aux_sym_preproc_ifdef_token1] = ACTIONS(388), - [sym_number_literal] = ACTIONS(390), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_extern] = ACTIONS(392), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_struct] = ACTIONS(25), - [anon_sym_signed] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(27), - [anon_sym_while] = ACTIONS(394), - [aux_sym_preproc_ifdef_token2] = ACTIONS(388), - [aux_sym_preproc_elif_token1] = ACTIONS(396), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_sizeof] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(398), - [anon_sym_union] = ACTIONS(37), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_short] = ACTIONS(27), - [anon_sym_do] = ACTIONS(400), - [aux_sym_preproc_else_token1] = ACTIONS(402), - [sym_preproc_directive] = ACTIONS(404), - [anon_sym_AMP] = ACTIONS(43), - [aux_sym_preproc_if_token1] = ACTIONS(406), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(408), - [anon_sym_for] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_BANG] = ACTIONS(47), - [aux_sym_preproc_include_token1] = ACTIONS(414), - [anon_sym_DASH] = ACTIONS(61), - [anon_sym_static] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_register] = ACTIONS(63), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(416), - [anon_sym_switch] = ACTIONS(418), - [anon_sym_enum] = ACTIONS(69), - [sym_false] = ACTIONS(378), - [anon_sym_return] = ACTIONS(420), - [anon_sym_continue] = ACTIONS(422), - [anon_sym_SEMI] = ACTIONS(424), - [aux_sym_preproc_def_token1] = ACTIONS(426), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_auto] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), + [aux_sym_string_literal_repeat1] = STATE(1007), + [anon_sym_DQUOTE] = ACTIONS(2843), + [aux_sym_string_literal_token1] = ACTIONS(2833), + [sym_escape_sequence] = ACTIONS(2833), + [sym_comment] = ACTIONS(2827), }, [976] = { - [sym_if_statement] = STATE(991), - [sym_preproc_def] = STATE(991), - [sym_preproc_function_def] = STATE(991), - [sym__expression] = STATE(867), - [sym_comma_expression] = STATE(868), - [sym_binary_expression] = STATE(867), - [sym_update_expression] = STATE(867), - [sym_call_expression] = STATE(36), - [sym_function_definition] = STATE(991), - [sym_declaration] = STATE(991), - [sym_do_statement] = STATE(991), - [sym_for_statement] = STATE(991), - [aux_sym_translation_unit_repeat1] = STATE(991), - [sym_expression_statement] = STATE(991), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(869), - [sym_union_specifier] = STATE(869), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_switch_statement] = STATE(991), - [sym_return_statement] = STATE(991), - [sym_preproc_call] = STATE(991), - [sym_conditional_expression] = STATE(867), - [sym_assignment_expression] = STATE(867), - [sym_type_definition] = STATE(991), - [sym_cast_expression] = STATE(867), - [sym__declaration_specifiers] = STATE(1151), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(867), - [sym_char_literal] = STATE(867), - [sym_break_statement] = STATE(991), - [sym__empty_declaration] = STATE(991), - [sym_sized_type_specifier] = STATE(869), - [sym_enum_specifier] = STATE(869), - [sym_labeled_statement] = STATE(991), - [sym_preproc_include] = STATE(991), - [sym_preproc_if] = STATE(991), - [sym_preproc_ifdef] = STATE(991), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(867), - [sym_sizeof_expression] = STATE(867), - [sym_attribute_specifier] = STATE(43), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_linkage_specification] = STATE(991), - [sym_concatenated_string] = STATE(867), - [sym_string_literal] = STATE(41), - [sym_macro_type_specifier] = STATE(869), - [sym_while_statement] = STATE(991), - [sym_storage_class_specifier] = STATE(43), - [sym_compound_statement] = STATE(991), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_continue_statement] = STATE(991), - [sym_struct_specifier] = STATE(869), - [sym_goto_statement] = STATE(991), - [sym_true] = ACTIONS(81), - [anon_sym_restrict] = ACTIONS(7), - [sym_null] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_const] = ACTIONS(7), - [anon_sym_typedef] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(7), - [sym_identifier] = ACTIONS(87), - [aux_sym_preproc_ifdef_token1] = ACTIONS(89), - [sym_number_literal] = ACTIONS(91), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_extern] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_struct] = ACTIONS(25), - [anon_sym_signed] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(27), - [anon_sym_while] = ACTIONS(95), - [aux_sym_preproc_ifdef_token2] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_sizeof] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(97), - [anon_sym_union] = ACTIONS(37), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_short] = ACTIONS(27), - [anon_sym_do] = ACTIONS(99), - [sym_preproc_directive] = ACTIONS(101), - [anon_sym_AMP] = ACTIONS(43), - [aux_sym_preproc_if_token1] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(2699), - [sym_primitive_type] = ACTIONS(107), - [anon_sym_for] = ACTIONS(109), - [anon_sym_break] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(47), - [aux_sym_preproc_include_token1] = ACTIONS(113), - [anon_sym_DASH] = ACTIONS(61), - [anon_sym_static] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_register] = ACTIONS(63), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(115), - [anon_sym_switch] = ACTIONS(117), - [anon_sym_enum] = ACTIONS(69), - [sym_false] = ACTIONS(81), - [anon_sym_return] = ACTIONS(119), - [anon_sym_continue] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(123), - [aux_sym_preproc_def_token1] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_auto] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), + [anon_sym_COMMA] = ACTIONS(2845), + [anon_sym_RPAREN] = ACTIONS(2845), + [anon_sym_LPAREN2] = ACTIONS(2845), + [anon_sym_LBRACK] = ACTIONS(2845), + [sym_comment] = ACTIONS(3), }, [977] = { - [sym_if_statement] = STATE(992), - [sym_do_statement] = STATE(992), - [sym_for_statement] = STATE(992), - [sym__expression] = STATE(1093), - [sym_comma_expression] = STATE(1094), - [sym_binary_expression] = STATE(1093), - [sym_update_expression] = STATE(1093), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(992), - [sym_return_statement] = STATE(992), - [sym_break_statement] = STATE(992), - [sym_conditional_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_cast_expression] = STATE(1093), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1093), - [sym_char_literal] = STATE(1093), - [sym_labeled_statement] = STATE(992), - [sym_case_statement] = STATE(992), - [sym_while_statement] = STATE(992), - [sym_continue_statement] = STATE(992), - [sym_goto_statement] = STATE(992), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1093), - [sym_sizeof_expression] = STATE(1093), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1093), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(992), - [aux_sym_switch_body_repeat1] = STATE(992), - [sym_expression_statement] = STATE(992), - [anon_sym_LBRACE] = ACTIONS(994), - [anon_sym_case] = ACTIONS(996), - [sym_true] = ACTIONS(998), - [sym_null] = ACTIONS(998), - [anon_sym_do] = ACTIONS(1000), - [anon_sym_goto] = ACTIONS(1002), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(2701), - [anon_sym_default] = ACTIONS(1006), - [sym_identifier] = ACTIONS(1008), - [anon_sym_for] = ACTIONS(1010), - [anon_sym_break] = ACTIONS(1012), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(1014), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(1016), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(1018), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(998), - [anon_sym_return] = ACTIONS(1020), - [anon_sym_while] = ACTIONS(1022), - [anon_sym_continue] = ACTIONS(1024), - [anon_sym_SEMI] = ACTIONS(1026), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_COMMA] = ACTIONS(2847), + [anon_sym_RPAREN] = ACTIONS(2847), + [anon_sym_LPAREN2] = ACTIONS(2847), + [anon_sym_LBRACK] = ACTIONS(2847), + [sym_comment] = ACTIONS(3), }, [978] = { - [anon_sym_LF] = ACTIONS(2703), - [sym_comment] = ACTIONS(147), + [aux_sym_string_literal_repeat1] = STATE(982), + [anon_sym_DQUOTE] = ACTIONS(2849), + [aux_sym_string_literal_token1] = ACTIONS(2851), + [sym_escape_sequence] = ACTIONS(2851), + [sym_comment] = ACTIONS(2827), }, [979] = { - [sym_comment] = ACTIONS(147), - [anon_sym_LF] = ACTIONS(2705), - [sym_preproc_arg] = ACTIONS(2707), + [aux_sym_string_literal_repeat1] = STATE(975), + [anon_sym_DQUOTE] = ACTIONS(2853), + [aux_sym_string_literal_token1] = ACTIONS(2855), + [sym_escape_sequence] = ACTIONS(2855), + [sym_comment] = ACTIONS(2827), }, [980] = { - [aux_sym_declaration_repeat1] = STATE(308), + [aux_sym_field_declaration_repeat1] = STATE(980), + [anon_sym_COMMA] = ACTIONS(2857), + [anon_sym_SEMI] = ACTIONS(2860), + [anon_sym_COLON] = ACTIONS(2860), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(654), - [anon_sym_SEMI] = ACTIONS(2709), }, [981] = { - [sym_preproc_def] = STATE(994), - [sym_preproc_function_def] = STATE(994), - [sym_sized_type_specifier] = STATE(130), - [sym_enum_specifier] = STATE(130), - [sym__field_declaration_list_item] = STATE(994), - [sym_field_declaration] = STATE(994), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(994), - [sym_preproc_else_in_field_declaration_list] = STATE(995), - [sym__type_specifier] = STATE(130), - [sym_union_specifier] = STATE(130), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_attribute_specifier] = STATE(43), - [sym_preproc_elif_in_field_declaration_list] = STATE(995), - [sym_type_qualifier] = STATE(43), - [sym_macro_type_specifier] = STATE(130), - [sym_preproc_call] = STATE(994), - [sym_preproc_if_in_field_declaration_list] = STATE(994), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(994), - [sym_struct_specifier] = STATE(130), - [sym__declaration_specifiers] = STATE(888), - [sym_storage_class_specifier] = STATE(43), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1145), - [anon_sym_union] = ACTIONS(37), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(7), - [anon_sym_short] = ACTIONS(27), - [anon_sym_static] = ACTIONS(63), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_register] = ACTIONS(63), - [anon_sym_extern] = ACTIONS(63), - [aux_sym_preproc_else_token1] = ACTIONS(1147), - [anon_sym_struct] = ACTIONS(25), - [sym_preproc_directive] = ACTIONS(1149), - [anon_sym_signed] = ACTIONS(27), - [aux_sym_preproc_if_token1] = ACTIONS(1151), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_long] = ACTIONS(27), - [anon_sym_const] = ACTIONS(7), - [aux_sym_preproc_if_token2] = ACTIONS(2711), + [anon_sym_COMMA] = ACTIONS(2862), + [anon_sym_RPAREN] = ACTIONS(2862), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_LBRACK] = ACTIONS(2862), [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1145), - [aux_sym_preproc_elif_token1] = ACTIONS(1155), - [aux_sym_preproc_def_token1] = ACTIONS(1157), - [anon_sym__Atomic] = ACTIONS(7), - [anon_sym_auto] = ACTIONS(63), - [sym_primitive_type] = ACTIONS(348), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(31), - [sym_identifier] = ACTIONS(187), }, [982] = { - [sym_preproc_def] = STATE(996), - [sym_preproc_function_def] = STATE(996), - [sym_sized_type_specifier] = STATE(130), - [sym_enum_specifier] = STATE(130), - [sym__field_declaration_list_item] = STATE(996), - [sym_field_declaration] = STATE(996), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(996), - [sym_preproc_else_in_field_declaration_list] = STATE(997), - [sym__type_specifier] = STATE(130), - [sym_union_specifier] = STATE(130), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_attribute_specifier] = STATE(43), - [sym_preproc_elif_in_field_declaration_list] = STATE(997), - [sym_type_qualifier] = STATE(43), - [sym_macro_type_specifier] = STATE(130), - [sym_preproc_call] = STATE(996), - [sym_preproc_if_in_field_declaration_list] = STATE(996), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(996), - [sym_struct_specifier] = STATE(130), - [sym__declaration_specifiers] = STATE(888), - [sym_storage_class_specifier] = STATE(43), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1145), - [anon_sym_union] = ACTIONS(37), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(7), - [anon_sym_short] = ACTIONS(27), - [anon_sym_static] = ACTIONS(63), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_register] = ACTIONS(63), - [anon_sym_extern] = ACTIONS(63), - [aux_sym_preproc_else_token1] = ACTIONS(1147), - [anon_sym_struct] = ACTIONS(25), - [sym_preproc_directive] = ACTIONS(1149), - [anon_sym_signed] = ACTIONS(27), - [aux_sym_preproc_if_token1] = ACTIONS(1151), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_long] = ACTIONS(27), - [anon_sym_const] = ACTIONS(7), - [aux_sym_preproc_if_token2] = ACTIONS(2713), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1145), - [aux_sym_preproc_elif_token1] = ACTIONS(1155), - [aux_sym_preproc_def_token1] = ACTIONS(1157), - [anon_sym__Atomic] = ACTIONS(7), - [anon_sym_auto] = ACTIONS(63), - [sym_primitive_type] = ACTIONS(348), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(31), - [sym_identifier] = ACTIONS(187), + [aux_sym_string_literal_repeat1] = STATE(1007), + [anon_sym_DQUOTE] = ACTIONS(2864), + [aux_sym_string_literal_token1] = ACTIONS(2833), + [sym_escape_sequence] = ACTIONS(2833), + [sym_comment] = ACTIONS(2827), }, [983] = { + [sym_string_literal] = STATE(346), + [anon_sym_L_DQUOTE] = ACTIONS(2866), + [anon_sym_DQUOTE] = ACTIONS(2866), + [sym_system_lib_string] = ACTIONS(2868), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2715), }, [984] = { - [sym_bitfield_clause] = STATE(998), - [aux_sym_field_declaration_repeat1] = STATE(999), - [sym_parameter_list] = STATE(327), - [anon_sym_LBRACK] = ACTIONS(1220), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(652), - [anon_sym_COMMA] = ACTIONS(1222), - [anon_sym_COLON] = ACTIONS(812), - [anon_sym_SEMI] = ACTIONS(2717), + [sym_preproc_params] = STATE(1102), + [anon_sym_LF] = ACTIONS(2870), + [anon_sym_LPAREN] = ACTIONS(2823), + [sym_preproc_arg] = ACTIONS(2872), + [sym_comment] = ACTIONS(2827), }, [985] = { - [aux_sym_preproc_if_token2] = ACTIONS(2719), - [sym_comment] = ACTIONS(3), + [aux_sym_string_literal_repeat1] = STATE(973), + [anon_sym_DQUOTE] = ACTIONS(2874), + [aux_sym_string_literal_token1] = ACTIONS(2876), + [sym_escape_sequence] = ACTIONS(2876), + [sym_comment] = ACTIONS(2827), }, [986] = { - [aux_sym_type_definition_repeat2] = STATE(364), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_SEMI] = ACTIONS(2721), + [aux_sym_string_literal_repeat1] = STATE(990), + [anon_sym_DQUOTE] = ACTIONS(2878), + [aux_sym_string_literal_token1] = ACTIONS(2880), + [sym_escape_sequence] = ACTIONS(2880), + [sym_comment] = ACTIONS(2827), }, [987] = { - [aux_sym_type_definition_repeat2] = STATE(1000), - [sym_parameter_list] = STATE(261), - [anon_sym_LBRACK] = ACTIONS(935), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(652), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_SEMI] = ACTIONS(2723), + [sym_preproc_params] = STATE(1065), + [anon_sym_LF] = ACTIONS(2882), + [anon_sym_LPAREN] = ACTIONS(2823), + [sym_preproc_arg] = ACTIONS(2884), + [sym_comment] = ACTIONS(2827), }, [988] = { - [sym_char_literal] = STATE(1001), - [sym__expression] = STATE(1001), - [sym_comma_expression] = STATE(1002), - [sym_binary_expression] = STATE(1001), - [sym_update_expression] = STATE(1001), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1001), - [sym_sizeof_expression] = STATE(1001), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1001), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(1001), - [sym_assignment_expression] = STATE(1001), - [sym_cast_expression] = STATE(1001), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1001), - [sym_true] = ACTIONS(2725), - [sym_null] = ACTIONS(2725), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(2727), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2725), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_RPAREN] = ACTIONS(2729), - [anon_sym_sizeof] = ACTIONS(33), + [sym_parameter_list] = STATE(939), + [anon_sym_RPAREN] = ACTIONS(2886), + [anon_sym_LPAREN2] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2713), + [sym_comment] = ACTIONS(3), }, [989] = { - [sym_char_literal] = STATE(1005), - [sym__expression] = STATE(1005), - [sym_comma_expression] = STATE(1006), - [sym_binary_expression] = STATE(1005), - [sym_update_expression] = STATE(1005), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1005), - [sym_sizeof_expression] = STATE(1005), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1005), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(1005), - [sym_assignment_expression] = STATE(1005), - [sym_cast_expression] = STATE(1005), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1005), - [sym_true] = ACTIONS(2731), - [sym_null] = ACTIONS(2731), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(2733), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2731), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_RPAREN] = ACTIONS(2735), - [anon_sym_sizeof] = ACTIONS(33), + [sym_preproc_params] = STATE(1092), + [anon_sym_LF] = ACTIONS(2888), + [anon_sym_LPAREN] = ACTIONS(2823), + [sym_preproc_arg] = ACTIONS(2890), + [sym_comment] = ACTIONS(2827), }, [990] = { - [aux_sym_preproc_if_token2] = ACTIONS(2737), - [sym_comment] = ACTIONS(3), + [aux_sym_string_literal_repeat1] = STATE(1007), + [anon_sym_DQUOTE] = ACTIONS(2892), + [aux_sym_string_literal_token1] = ACTIONS(2833), + [sym_escape_sequence] = ACTIONS(2833), + [sym_comment] = ACTIONS(2827), }, [991] = { - [sym_if_statement] = STATE(533), - [sym_preproc_def] = STATE(533), - [sym_preproc_function_def] = STATE(533), - [sym__expression] = STATE(867), - [sym_comma_expression] = STATE(868), - [sym_binary_expression] = STATE(867), - [sym_update_expression] = STATE(867), - [sym_call_expression] = STATE(36), - [sym_function_definition] = STATE(533), - [sym_declaration] = STATE(533), - [sym_do_statement] = STATE(533), - [sym_for_statement] = STATE(533), - [aux_sym_translation_unit_repeat1] = STATE(533), - [sym_expression_statement] = STATE(533), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(869), - [sym_union_specifier] = STATE(869), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_switch_statement] = STATE(533), - [sym_return_statement] = STATE(533), - [sym_preproc_call] = STATE(533), - [sym_conditional_expression] = STATE(867), - [sym_assignment_expression] = STATE(867), - [sym_type_definition] = STATE(533), - [sym_cast_expression] = STATE(867), - [sym__declaration_specifiers] = STATE(1151), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(867), - [sym_char_literal] = STATE(867), - [sym_break_statement] = STATE(533), - [sym__empty_declaration] = STATE(533), - [sym_sized_type_specifier] = STATE(869), - [sym_enum_specifier] = STATE(869), - [sym_labeled_statement] = STATE(533), - [sym_preproc_include] = STATE(533), - [sym_preproc_if] = STATE(533), - [sym_preproc_ifdef] = STATE(533), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(867), - [sym_sizeof_expression] = STATE(867), - [sym_attribute_specifier] = STATE(43), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_linkage_specification] = STATE(533), - [sym_concatenated_string] = STATE(867), - [sym_string_literal] = STATE(41), - [sym_macro_type_specifier] = STATE(869), - [sym_while_statement] = STATE(533), - [sym_storage_class_specifier] = STATE(43), - [sym_compound_statement] = STATE(533), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_continue_statement] = STATE(533), - [sym_struct_specifier] = STATE(869), - [sym_goto_statement] = STATE(533), - [sym_true] = ACTIONS(81), - [anon_sym_restrict] = ACTIONS(7), - [sym_null] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_const] = ACTIONS(7), - [anon_sym_typedef] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(7), - [sym_identifier] = ACTIONS(87), - [aux_sym_preproc_ifdef_token1] = ACTIONS(89), - [sym_number_literal] = ACTIONS(91), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_extern] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_struct] = ACTIONS(25), - [anon_sym_signed] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(27), - [anon_sym_while] = ACTIONS(95), - [aux_sym_preproc_ifdef_token2] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_sizeof] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(97), - [anon_sym_union] = ACTIONS(37), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_short] = ACTIONS(27), - [anon_sym_do] = ACTIONS(99), - [sym_preproc_directive] = ACTIONS(101), - [anon_sym_AMP] = ACTIONS(43), - [aux_sym_preproc_if_token1] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(2739), - [sym_primitive_type] = ACTIONS(107), - [anon_sym_for] = ACTIONS(109), - [anon_sym_break] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(47), - [aux_sym_preproc_include_token1] = ACTIONS(113), - [anon_sym_DASH] = ACTIONS(61), - [anon_sym_static] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_register] = ACTIONS(63), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(115), - [anon_sym_switch] = ACTIONS(117), - [anon_sym_enum] = ACTIONS(69), - [sym_false] = ACTIONS(81), - [anon_sym_return] = ACTIONS(119), - [anon_sym_continue] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(123), - [aux_sym_preproc_def_token1] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_auto] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), + [aux_sym_string_literal_repeat1] = STATE(971), + [anon_sym_DQUOTE] = ACTIONS(2894), + [aux_sym_string_literal_token1] = ACTIONS(2896), + [sym_escape_sequence] = ACTIONS(2896), + [sym_comment] = ACTIONS(2827), }, [992] = { - [sym_if_statement] = STATE(383), - [sym_do_statement] = STATE(383), - [sym_for_statement] = STATE(383), - [sym__expression] = STATE(1093), - [sym_comma_expression] = STATE(1094), - [sym_binary_expression] = STATE(1093), - [sym_update_expression] = STATE(1093), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(383), - [sym_return_statement] = STATE(383), - [sym_break_statement] = STATE(383), - [sym_conditional_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_cast_expression] = STATE(1093), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1093), - [sym_char_literal] = STATE(1093), - [sym_labeled_statement] = STATE(383), - [sym_case_statement] = STATE(383), - [sym_while_statement] = STATE(383), - [sym_continue_statement] = STATE(383), - [sym_goto_statement] = STATE(383), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1093), - [sym_sizeof_expression] = STATE(1093), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1093), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(383), - [aux_sym_switch_body_repeat1] = STATE(383), - [sym_expression_statement] = STATE(383), - [anon_sym_LBRACE] = ACTIONS(994), - [anon_sym_case] = ACTIONS(996), - [sym_true] = ACTIONS(998), - [sym_null] = ACTIONS(998), - [anon_sym_do] = ACTIONS(1000), - [anon_sym_goto] = ACTIONS(1002), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(2741), - [anon_sym_default] = ACTIONS(1006), - [sym_identifier] = ACTIONS(1008), - [anon_sym_for] = ACTIONS(1010), - [anon_sym_break] = ACTIONS(1012), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(1014), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(1016), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(1018), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(998), - [anon_sym_return] = ACTIONS(1020), - [anon_sym_while] = ACTIONS(1022), - [anon_sym_continue] = ACTIONS(1024), - [anon_sym_SEMI] = ACTIONS(1026), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_COMMA] = ACTIONS(2898), + [anon_sym_RPAREN] = ACTIONS(2898), + [anon_sym_LPAREN2] = ACTIONS(2898), + [anon_sym_LBRACK] = ACTIONS(2898), + [sym_comment] = ACTIONS(3), }, [993] = { - [anon_sym_LF] = ACTIONS(2743), - [sym_comment] = ACTIONS(147), + [sym_enumerator] = STATE(1029), + [sym_identifier] = ACTIONS(2900), + [anon_sym_COMMA] = ACTIONS(2902), + [anon_sym_RBRACE] = ACTIONS(2904), + [sym_comment] = ACTIONS(3), }, [994] = { - [sym_preproc_def] = STATE(561), - [sym_preproc_function_def] = STATE(561), - [sym_sized_type_specifier] = STATE(130), - [sym_enum_specifier] = STATE(130), - [sym__field_declaration_list_item] = STATE(561), - [sym_field_declaration] = STATE(561), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(561), - [sym_preproc_else_in_field_declaration_list] = STATE(1008), - [sym__type_specifier] = STATE(130), - [sym_union_specifier] = STATE(130), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_attribute_specifier] = STATE(43), - [sym_preproc_elif_in_field_declaration_list] = STATE(1008), - [sym_type_qualifier] = STATE(43), - [sym_macro_type_specifier] = STATE(130), - [sym_preproc_call] = STATE(561), - [sym_preproc_if_in_field_declaration_list] = STATE(561), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(561), - [sym_struct_specifier] = STATE(130), - [sym__declaration_specifiers] = STATE(888), - [sym_storage_class_specifier] = STATE(43), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1145), - [anon_sym_union] = ACTIONS(37), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(7), - [anon_sym_short] = ACTIONS(27), - [anon_sym_static] = ACTIONS(63), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_register] = ACTIONS(63), - [anon_sym_extern] = ACTIONS(63), - [aux_sym_preproc_else_token1] = ACTIONS(1147), - [anon_sym_struct] = ACTIONS(25), - [sym_preproc_directive] = ACTIONS(1149), - [anon_sym_signed] = ACTIONS(27), - [aux_sym_preproc_if_token1] = ACTIONS(1151), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_long] = ACTIONS(27), - [anon_sym_const] = ACTIONS(7), - [aux_sym_preproc_if_token2] = ACTIONS(2745), + [anon_sym_COMMA] = ACTIONS(2906), + [anon_sym_RPAREN] = ACTIONS(2906), + [anon_sym_LPAREN2] = ACTIONS(2906), + [anon_sym_LBRACK] = ACTIONS(2906), [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1145), - [aux_sym_preproc_elif_token1] = ACTIONS(1155), - [aux_sym_preproc_def_token1] = ACTIONS(1157), - [anon_sym__Atomic] = ACTIONS(7), - [anon_sym_auto] = ACTIONS(63), - [sym_primitive_type] = ACTIONS(348), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(31), - [sym_identifier] = ACTIONS(187), }, [995] = { - [aux_sym_preproc_if_token2] = ACTIONS(2747), - [sym_comment] = ACTIONS(3), + [aux_sym_string_literal_repeat1] = STATE(1005), + [anon_sym_DQUOTE] = ACTIONS(2908), + [aux_sym_string_literal_token1] = ACTIONS(2910), + [sym_escape_sequence] = ACTIONS(2910), + [sym_comment] = ACTIONS(2827), }, [996] = { - [sym_preproc_def] = STATE(561), - [sym_preproc_function_def] = STATE(561), - [sym_sized_type_specifier] = STATE(130), - [sym_enum_specifier] = STATE(130), - [sym__field_declaration_list_item] = STATE(561), - [sym_field_declaration] = STATE(561), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(561), - [sym_preproc_else_in_field_declaration_list] = STATE(1009), - [sym__type_specifier] = STATE(130), - [sym_union_specifier] = STATE(130), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_attribute_specifier] = STATE(43), - [sym_preproc_elif_in_field_declaration_list] = STATE(1009), - [sym_type_qualifier] = STATE(43), - [sym_macro_type_specifier] = STATE(130), - [sym_preproc_call] = STATE(561), - [sym_preproc_if_in_field_declaration_list] = STATE(561), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(561), - [sym_struct_specifier] = STATE(130), - [sym__declaration_specifiers] = STATE(888), - [sym_storage_class_specifier] = STATE(43), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1145), - [anon_sym_union] = ACTIONS(37), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(7), - [anon_sym_short] = ACTIONS(27), - [anon_sym_static] = ACTIONS(63), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_register] = ACTIONS(63), - [anon_sym_extern] = ACTIONS(63), - [aux_sym_preproc_else_token1] = ACTIONS(1147), - [anon_sym_struct] = ACTIONS(25), - [sym_preproc_directive] = ACTIONS(1149), - [anon_sym_signed] = ACTIONS(27), - [aux_sym_preproc_if_token1] = ACTIONS(1151), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_long] = ACTIONS(27), - [anon_sym_const] = ACTIONS(7), - [aux_sym_preproc_if_token2] = ACTIONS(2749), + [sym_parameter_list] = STATE(992), + [anon_sym_RPAREN] = ACTIONS(2912), + [anon_sym_LPAREN2] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2801), [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1145), - [aux_sym_preproc_elif_token1] = ACTIONS(1155), - [aux_sym_preproc_def_token1] = ACTIONS(1157), - [anon_sym__Atomic] = ACTIONS(7), - [anon_sym_auto] = ACTIONS(63), - [sym_primitive_type] = ACTIONS(348), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(31), - [sym_identifier] = ACTIONS(187), }, [997] = { - [aux_sym_preproc_if_token2] = ACTIONS(2751), + [sym_string_literal] = STATE(348), + [anon_sym_L_DQUOTE] = ACTIONS(2914), + [anon_sym_DQUOTE] = ACTIONS(2914), + [sym_system_lib_string] = ACTIONS(2916), [sym_comment] = ACTIONS(3), }, [998] = { + [sym_string_literal] = STATE(347), + [anon_sym_L_DQUOTE] = ACTIONS(2918), + [anon_sym_DQUOTE] = ACTIONS(2918), + [sym_system_lib_string] = ACTIONS(2920), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2753), }, [999] = { - [sym_bitfield_clause] = STATE(1010), - [aux_sym_field_declaration_repeat1] = STATE(419), + [anon_sym_COMMA] = ACTIONS(2922), + [anon_sym_RPAREN] = ACTIONS(2922), + [anon_sym_LPAREN2] = ACTIONS(2922), + [anon_sym_LBRACK] = ACTIONS(2922), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1222), - [anon_sym_COLON] = ACTIONS(812), - [anon_sym_SEMI] = ACTIONS(2753), }, [1000] = { - [aux_sym_type_definition_repeat2] = STATE(364), + [sym_string_literal] = STATE(254), + [anon_sym_L_DQUOTE] = ACTIONS(2924), + [anon_sym_DQUOTE] = ACTIONS(2924), + [sym_system_lib_string] = ACTIONS(2926), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_SEMI] = ACTIONS(2755), }, [1001] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_COMMA] = ACTIONS(293), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_RPAREN] = ACTIONS(2757), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [sym_preproc_params] = STATE(1109), + [anon_sym_LF] = ACTIONS(2928), + [anon_sym_LPAREN] = ACTIONS(2823), + [sym_preproc_arg] = ACTIONS(2930), + [sym_comment] = ACTIONS(2827), }, [1002] = { - [anon_sym_RPAREN] = ACTIONS(2757), + [anon_sym_COMMA] = ACTIONS(2932), + [anon_sym_RPAREN] = ACTIONS(2932), + [anon_sym_LPAREN2] = ACTIONS(2932), + [anon_sym_LBRACK] = ACTIONS(2932), [sym_comment] = ACTIONS(3), }, [1003] = { - [sym_char_literal] = STATE(1011), - [sym__expression] = STATE(1011), - [sym_comma_expression] = STATE(1012), - [sym_binary_expression] = STATE(1011), - [sym_update_expression] = STATE(1011), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1011), - [sym_sizeof_expression] = STATE(1011), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1011), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(1011), - [sym_assignment_expression] = STATE(1011), - [sym_cast_expression] = STATE(1011), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1011), - [sym_true] = ACTIONS(2759), - [sym_null] = ACTIONS(2759), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(2761), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2759), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_RPAREN] = ACTIONS(2763), - [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_COMMA] = ACTIONS(2934), + [anon_sym_RPAREN] = ACTIONS(2934), + [anon_sym_LPAREN2] = ACTIONS(2934), + [anon_sym_LBRACK] = ACTIONS(2934), + [sym_comment] = ACTIONS(3), }, [1004] = { - [sym_char_literal] = STATE(1013), - [sym__expression] = STATE(1013), - [sym_comma_expression] = STATE(1014), - [sym_binary_expression] = STATE(1013), - [sym_update_expression] = STATE(1013), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1013), - [sym_sizeof_expression] = STATE(1013), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1013), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(1013), - [sym_assignment_expression] = STATE(1013), - [sym_cast_expression] = STATE(1013), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1013), - [sym_true] = ACTIONS(2765), - [sym_null] = ACTIONS(2765), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(2767), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2765), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_RPAREN] = ACTIONS(2769), - [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_COMMA] = ACTIONS(2936), + [anon_sym_RPAREN] = ACTIONS(2936), + [anon_sym_LPAREN2] = ACTIONS(2936), + [anon_sym_LBRACK] = ACTIONS(2936), + [sym_comment] = ACTIONS(3), }, [1005] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_COMMA] = ACTIONS(293), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_RPAREN] = ACTIONS(2771), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [aux_sym_string_literal_repeat1] = STATE(1007), + [anon_sym_DQUOTE] = ACTIONS(2938), + [aux_sym_string_literal_token1] = ACTIONS(2833), + [sym_escape_sequence] = ACTIONS(2833), + [sym_comment] = ACTIONS(2827), }, [1006] = { - [anon_sym_RPAREN] = ACTIONS(2771), - [sym_comment] = ACTIONS(3), + [sym_preproc_params] = STATE(1106), + [anon_sym_LF] = ACTIONS(2940), + [anon_sym_LPAREN] = ACTIONS(2823), + [sym_preproc_arg] = ACTIONS(2942), + [sym_comment] = ACTIONS(2827), }, [1007] = { - [sym_char_literal] = STATE(1016), - [sym__expression] = STATE(1016), - [sym_comma_expression] = STATE(1017), - [sym_binary_expression] = STATE(1016), - [sym_update_expression] = STATE(1016), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1016), - [sym_sizeof_expression] = STATE(1016), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1016), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(1016), - [sym_assignment_expression] = STATE(1016), - [sym_cast_expression] = STATE(1016), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1016), - [sym_true] = ACTIONS(2773), - [sym_null] = ACTIONS(2773), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(2775), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2773), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_RPAREN] = ACTIONS(2777), - [anon_sym_sizeof] = ACTIONS(33), + [aux_sym_string_literal_repeat1] = STATE(1007), + [anon_sym_DQUOTE] = ACTIONS(2944), + [aux_sym_string_literal_token1] = ACTIONS(2946), + [sym_escape_sequence] = ACTIONS(2946), + [sym_comment] = ACTIONS(2827), }, [1008] = { - [aux_sym_preproc_if_token2] = ACTIONS(2779), + [sym_parameter_list] = STATE(893), + [anon_sym_RPAREN] = ACTIONS(2949), + [anon_sym_LPAREN2] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2681), [sym_comment] = ACTIONS(3), }, [1009] = { - [aux_sym_preproc_if_token2] = ACTIONS(2781), + [sym_parameter_list] = STATE(962), + [anon_sym_RPAREN] = ACTIONS(2951), + [anon_sym_LPAREN2] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2747), [sym_comment] = ACTIONS(3), }, [1010] = { + [sym_parameter_list] = STATE(992), + [anon_sym_RPAREN] = ACTIONS(2953), + [anon_sym_LPAREN2] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2801), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2783), }, [1011] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_COMMA] = ACTIONS(293), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_RPAREN] = ACTIONS(2785), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [anon_sym_COMMA] = ACTIONS(2955), + [anon_sym_RPAREN] = ACTIONS(2955), + [anon_sym_LPAREN2] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(2955), + [sym_comment] = ACTIONS(3), }, [1012] = { - [anon_sym_RPAREN] = ACTIONS(2785), + [sym_parameter_list] = STATE(992), + [anon_sym_RPAREN] = ACTIONS(2957), + [anon_sym_LPAREN2] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2801), [sym_comment] = ACTIONS(3), }, [1013] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_COMMA] = ACTIONS(293), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_RPAREN] = ACTIONS(2787), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [sym_parameter_list] = STATE(992), + [anon_sym_RPAREN] = ACTIONS(2959), + [anon_sym_LPAREN2] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2801), + [sym_comment] = ACTIONS(3), }, [1014] = { - [anon_sym_RPAREN] = ACTIONS(2787), + [aux_sym_enumerator_list_repeat1] = STATE(1033), + [anon_sym_COMMA] = ACTIONS(2961), + [anon_sym_RBRACE] = ACTIONS(2963), [sym_comment] = ACTIONS(3), }, [1015] = { - [sym_char_literal] = STATE(1018), - [sym__expression] = STATE(1018), - [sym_comma_expression] = STATE(1019), - [sym_binary_expression] = STATE(1018), - [sym_update_expression] = STATE(1018), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1018), - [sym_sizeof_expression] = STATE(1018), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1018), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(1018), - [sym_assignment_expression] = STATE(1018), - [sym_cast_expression] = STATE(1018), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1018), - [sym_true] = ACTIONS(2789), - [sym_null] = ACTIONS(2789), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(2791), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2789), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_RPAREN] = ACTIONS(2793), - [anon_sym_sizeof] = ACTIONS(33), + [sym_enumerator] = STATE(1080), + [sym_identifier] = ACTIONS(2900), + [anon_sym_RBRACE] = ACTIONS(2963), + [sym_comment] = ACTIONS(3), }, [1016] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_COMMA] = ACTIONS(293), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_RPAREN] = ACTIONS(2795), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [aux_sym_parameter_list_repeat1] = STATE(1016), + [anon_sym_COMMA] = ACTIONS(2965), + [anon_sym_RPAREN] = ACTIONS(2968), + [sym_comment] = ACTIONS(3), }, [1017] = { - [anon_sym_RPAREN] = ACTIONS(2795), + [aux_sym_declaration_repeat1] = STATE(1046), + [anon_sym_COMMA] = ACTIONS(2675), + [anon_sym_SEMI] = ACTIONS(2699), [sym_comment] = ACTIONS(3), }, [1018] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_COMMA] = ACTIONS(293), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_RPAREN] = ACTIONS(2797), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [aux_sym_parameter_list_repeat1] = STATE(1026), + [anon_sym_COMMA] = ACTIONS(2970), + [anon_sym_RPAREN] = ACTIONS(2972), + [sym_comment] = ACTIONS(3), }, [1019] = { - [anon_sym_RPAREN] = ACTIONS(2797), + [aux_sym_declaration_repeat1] = STATE(1019), + [anon_sym_COMMA] = ACTIONS(2974), + [anon_sym_SEMI] = ACTIONS(2977), [sym_comment] = ACTIONS(3), }, [1020] = { - [sym_do_statement] = STATE(1033), - [sym_preproc_function_def] = STATE(1033), - [sym__expression] = STATE(867), - [sym_binary_expression] = STATE(867), - [sym_declaration] = STATE(1033), - [sym_call_expression] = STATE(36), - [sym__type_specifier] = STATE(869), - [sym_break_statement] = STATE(1033), - [sym_assignment_expression] = STATE(867), - [sym_type_definition] = STATE(1033), - [sym_compound_literal_expression] = STATE(867), - [sym_char_literal] = STATE(867), - [sym__empty_declaration] = STATE(1033), - [sym_sized_type_specifier] = STATE(869), - [sym_preproc_include] = STATE(1033), - [sym_continue_statement] = STATE(1033), - [sym_preproc_ifdef] = STATE(1033), - [sym_pointer_expression] = STATE(36), - [sym_sizeof_expression] = STATE(867), - [sym_attribute_specifier] = STATE(43), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(867), - [sym_macro_type_specifier] = STATE(869), - [sym_storage_class_specifier] = STATE(43), - [sym_struct_specifier] = STATE(869), - [sym_if_statement] = STATE(1033), - [sym_preproc_def] = STATE(1033), - [sym_for_statement] = STATE(1033), - [sym_comma_expression] = STATE(868), - [sym_function_definition] = STATE(1033), - [sym_update_expression] = STATE(867), - [sym_type_qualifier] = STATE(43), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_union_specifier] = STATE(869), - [sym_switch_statement] = STATE(1033), - [sym_return_statement] = STATE(1033), - [sym_preproc_call] = STATE(1033), - [sym_conditional_expression] = STATE(867), - [sym_cast_expression] = STATE(867), - [sym__declaration_specifiers] = STATE(1151), - [sym_field_expression] = STATE(36), - [sym_enum_specifier] = STATE(869), - [sym_labeled_statement] = STATE(1033), - [sym_while_statement] = STATE(1033), - [sym_preproc_if] = STATE(1033), - [sym_goto_statement] = STATE(1033), - [sym_unary_expression] = STATE(867), - [sym_linkage_specification] = STATE(1033), - [sym_subscript_expression] = STATE(36), - [sym_string_literal] = STATE(41), - [aux_sym_translation_unit_repeat1] = STATE(1033), - [sym_compound_statement] = STATE(1033), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_expression_statement] = STATE(1033), - [sym_true] = ACTIONS(81), - [anon_sym_restrict] = ACTIONS(7), - [sym_null] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_const] = ACTIONS(7), - [anon_sym_typedef] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(7), - [sym_identifier] = ACTIONS(87), - [aux_sym_preproc_ifdef_token1] = ACTIONS(89), - [sym_number_literal] = ACTIONS(91), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_extern] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_struct] = ACTIONS(25), - [anon_sym_signed] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(27), - [anon_sym_while] = ACTIONS(95), - [aux_sym_preproc_ifdef_token2] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_sizeof] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(97), - [anon_sym_union] = ACTIONS(37), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_short] = ACTIONS(27), - [anon_sym_do] = ACTIONS(99), - [sym_preproc_directive] = ACTIONS(101), - [anon_sym_AMP] = ACTIONS(43), - [aux_sym_preproc_if_token1] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(2799), - [sym_primitive_type] = ACTIONS(107), - [anon_sym_for] = ACTIONS(109), - [anon_sym_break] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(47), - [aux_sym_preproc_include_token1] = ACTIONS(113), - [anon_sym_DASH] = ACTIONS(61), - [anon_sym_static] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_register] = ACTIONS(63), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(115), - [anon_sym_switch] = ACTIONS(117), - [anon_sym_enum] = ACTIONS(69), - [sym_false] = ACTIONS(81), - [anon_sym_return] = ACTIONS(119), - [anon_sym_continue] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(123), - [aux_sym_preproc_def_token1] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_auto] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), + [aux_sym_type_definition_repeat2] = STATE(1024), + [anon_sym_COMMA] = ACTIONS(2743), + [anon_sym_SEMI] = ACTIONS(2979), + [sym_comment] = ACTIONS(3), }, [1021] = { - [sym_comment] = ACTIONS(147), - [anon_sym_LF] = ACTIONS(2801), - [sym_preproc_arg] = ACTIONS(2803), + [aux_sym_declaration_repeat1] = STATE(1019), + [anon_sym_COMMA] = ACTIONS(2675), + [anon_sym_SEMI] = ACTIONS(2981), + [sym_comment] = ACTIONS(3), }, [1022] = { - [aux_sym_string_literal_repeat1] = STATE(1040), - [sym_comment] = ACTIONS(147), - [sym_escape_sequence] = ACTIONS(2805), - [aux_sym_string_literal_token1] = ACTIONS(2805), - [anon_sym_DQUOTE] = ACTIONS(2807), + [aux_sym_argument_list_repeat1] = STATE(1043), + [anon_sym_COMMA] = ACTIONS(2206), + [anon_sym_RPAREN] = ACTIONS(2983), + [sym_comment] = ACTIONS(3), }, [1023] = { - [anon_sym_LT] = ACTIONS(197), - [anon_sym_GT_GT] = ACTIONS(197), - [anon_sym_PIPE_EQ] = ACTIONS(199), - [anon_sym_restrict] = ACTIONS(201), - [anon_sym_PERCENT_EQ] = ACTIONS(199), - [anon_sym_AMP_EQ] = ACTIONS(199), - [anon_sym_DASH_EQ] = ACTIONS(199), - [anon_sym_PIPE] = ACTIONS(197), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_EQ_EQ] = ACTIONS(203), - [anon_sym_AMP] = ACTIONS(197), - [anon_sym_SLASH] = ACTIONS(197), - [anon_sym_DASH_GT] = ACTIONS(203), - [anon_sym_const] = ACTIONS(201), - [anon_sym_LPAREN2] = ACTIONS(205), - [anon_sym_GT_EQ] = ACTIONS(203), - [anon_sym_LT_LT] = ACTIONS(197), - [anon_sym_DASH_DASH] = ACTIONS(203), - [anon_sym_EQ] = ACTIONS(209), - [anon_sym_COLON] = ACTIONS(2809), - [anon_sym__Atomic] = ACTIONS(201), - [sym_identifier] = ACTIONS(201), - [anon_sym_PLUS_EQ] = ACTIONS(199), - [anon_sym_STAR_EQ] = ACTIONS(199), - [anon_sym_LT_LT_EQ] = ACTIONS(199), - [anon_sym_QMARK] = ACTIONS(203), - [anon_sym_PIPE_PIPE] = ACTIONS(203), - [anon_sym_BANG_EQ] = ACTIONS(203), - [anon_sym_CARET_EQ] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(203), - [anon_sym_static] = ACTIONS(201), - [anon_sym_volatile] = ACTIONS(201), - [anon_sym_register] = ACTIONS(201), - [anon_sym_extern] = ACTIONS(201), - [anon_sym_STAR] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_LT_EQ] = ACTIONS(203), - [anon_sym_PLUS_PLUS] = ACTIONS(203), - [sym_comment] = ACTIONS(3), - [anon_sym_SLASH_EQ] = ACTIONS(199), - [anon_sym_GT_GT_EQ] = ACTIONS(199), - [anon_sym_AMP_AMP] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(216), - [anon_sym_CARET] = ACTIONS(197), - [anon_sym_GT] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_auto] = ACTIONS(201), - [anon_sym_DOT] = ACTIONS(203), - [anon_sym_inline] = ACTIONS(201), - [anon_sym___attribute__] = ACTIONS(201), - [anon_sym_LBRACK] = ACTIONS(203), + [aux_sym_preproc_params_repeat1] = STATE(1044), + [anon_sym_COMMA] = ACTIONS(2985), + [anon_sym_RPAREN] = ACTIONS(2987), + [sym_comment] = ACTIONS(3), }, [1024] = { + [aux_sym_type_definition_repeat2] = STATE(1024), + [anon_sym_COMMA] = ACTIONS(2989), + [anon_sym_SEMI] = ACTIONS(2992), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2811), }, [1025] = { - [sym_string_literal] = STATE(718), + [aux_sym_type_definition_repeat2] = STATE(1024), + [anon_sym_COMMA] = ACTIONS(2743), + [anon_sym_SEMI] = ACTIONS(2994), [sym_comment] = ACTIONS(3), - [anon_sym_L_DQUOTE] = ACTIONS(2813), - [sym_system_lib_string] = ACTIONS(2815), - [anon_sym_DQUOTE] = ACTIONS(2813), }, [1026] = { - [sym_parenthesized_expression] = STATE(719), + [aux_sym_parameter_list_repeat1] = STATE(1016), + [anon_sym_COMMA] = ACTIONS(2970), + [anon_sym_RPAREN] = ACTIONS(2996), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(233), }, [1027] = { - [sym_char_literal] = STATE(1044), - [sym__expression] = STATE(1044), - [sym_binary_expression] = STATE(1044), - [sym_update_expression] = STATE(1044), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1044), - [sym_sizeof_expression] = STATE(1044), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1044), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(1044), - [sym_assignment_expression] = STATE(1044), - [sym_cast_expression] = STATE(1044), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1044), - [sym_true] = ACTIONS(2817), - [sym_null] = ACTIONS(2817), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(2819), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2817), - [anon_sym_SEMI] = ACTIONS(2821), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [aux_sym_type_definition_repeat2] = STATE(1024), + [anon_sym_COMMA] = ACTIONS(2743), + [anon_sym_SEMI] = ACTIONS(2998), + [sym_comment] = ACTIONS(3), }, [1028] = { - [sym_parenthesized_expression] = STATE(721), + [aux_sym_initializer_list_repeat1] = STATE(1050), + [anon_sym_COMMA] = ACTIONS(2202), + [anon_sym_RBRACE] = ACTIONS(2204), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(233), }, [1029] = { + [aux_sym_enumerator_list_repeat1] = STATE(1014), + [anon_sym_COMMA] = ACTIONS(3000), + [anon_sym_RBRACE] = ACTIONS(3002), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2823), }, [1030] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_COMMA] = ACTIONS(293), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_SEMI] = ACTIONS(2825), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [anon_sym_COMMA] = ACTIONS(3004), + [anon_sym_RBRACE] = ACTIONS(3004), + [anon_sym_EQ] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), }, [1031] = { + [sym_enumerator] = STATE(1080), + [sym_identifier] = ACTIONS(2900), + [anon_sym_RBRACE] = ACTIONS(3008), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2825), }, [1032] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(113), - [sym_attribute_specifier] = STATE(113), - [sym_storage_class_specifier] = STATE(113), - [sym_type_qualifier] = STATE(113), - [anon_sym_restrict] = ACTIONS(7), - [anon_sym_static] = ACTIONS(63), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_register] = ACTIONS(63), - [anon_sym_extern] = ACTIONS(63), - [anon_sym_STAR] = ACTIONS(307), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(7), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_SEMI] = ACTIONS(2827), - [anon_sym__Atomic] = ACTIONS(7), - [sym_identifier] = ACTIONS(311), - [anon_sym_auto] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(31), + [aux_sym_type_definition_repeat2] = STATE(1024), + [anon_sym_COMMA] = ACTIONS(2743), + [anon_sym_SEMI] = ACTIONS(3010), + [sym_comment] = ACTIONS(3), }, [1033] = { - [sym_do_statement] = STATE(533), - [sym_preproc_function_def] = STATE(533), - [sym__expression] = STATE(867), - [sym_binary_expression] = STATE(867), - [sym_declaration] = STATE(533), - [sym_call_expression] = STATE(36), - [sym__type_specifier] = STATE(869), - [sym_break_statement] = STATE(533), - [sym_assignment_expression] = STATE(867), - [sym_type_definition] = STATE(533), - [sym_compound_literal_expression] = STATE(867), - [sym_char_literal] = STATE(867), - [sym__empty_declaration] = STATE(533), - [sym_sized_type_specifier] = STATE(869), - [sym_preproc_include] = STATE(533), - [sym_continue_statement] = STATE(533), - [sym_preproc_ifdef] = STATE(533), - [sym_pointer_expression] = STATE(36), - [sym_sizeof_expression] = STATE(867), - [sym_attribute_specifier] = STATE(43), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(867), - [sym_macro_type_specifier] = STATE(869), - [sym_storage_class_specifier] = STATE(43), - [sym_struct_specifier] = STATE(869), - [sym_if_statement] = STATE(533), - [sym_preproc_def] = STATE(533), - [sym_for_statement] = STATE(533), - [sym_comma_expression] = STATE(868), - [sym_function_definition] = STATE(533), - [sym_update_expression] = STATE(867), - [sym_type_qualifier] = STATE(43), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_union_specifier] = STATE(869), - [sym_switch_statement] = STATE(533), - [sym_return_statement] = STATE(533), - [sym_preproc_call] = STATE(533), - [sym_conditional_expression] = STATE(867), - [sym_cast_expression] = STATE(867), - [sym__declaration_specifiers] = STATE(1151), - [sym_field_expression] = STATE(36), - [sym_enum_specifier] = STATE(869), - [sym_labeled_statement] = STATE(533), - [sym_while_statement] = STATE(533), - [sym_preproc_if] = STATE(533), - [sym_goto_statement] = STATE(533), - [sym_unary_expression] = STATE(867), - [sym_linkage_specification] = STATE(533), - [sym_subscript_expression] = STATE(36), - [sym_string_literal] = STATE(41), - [aux_sym_translation_unit_repeat1] = STATE(533), - [sym_compound_statement] = STATE(533), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_expression_statement] = STATE(533), - [sym_true] = ACTIONS(81), - [anon_sym_restrict] = ACTIONS(7), - [sym_null] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_const] = ACTIONS(7), - [anon_sym_typedef] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(7), - [sym_identifier] = ACTIONS(87), - [aux_sym_preproc_ifdef_token1] = ACTIONS(89), - [sym_number_literal] = ACTIONS(91), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_extern] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_struct] = ACTIONS(25), - [anon_sym_signed] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(27), - [anon_sym_while] = ACTIONS(95), - [aux_sym_preproc_ifdef_token2] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_sizeof] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(97), - [anon_sym_union] = ACTIONS(37), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_short] = ACTIONS(27), - [anon_sym_do] = ACTIONS(99), - [sym_preproc_directive] = ACTIONS(101), - [anon_sym_AMP] = ACTIONS(43), - [aux_sym_preproc_if_token1] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(2829), - [sym_primitive_type] = ACTIONS(107), - [anon_sym_for] = ACTIONS(109), - [anon_sym_break] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(47), - [aux_sym_preproc_include_token1] = ACTIONS(113), - [anon_sym_DASH] = ACTIONS(61), - [anon_sym_static] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_register] = ACTIONS(63), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(115), - [anon_sym_switch] = ACTIONS(117), - [anon_sym_enum] = ACTIONS(69), - [sym_false] = ACTIONS(81), - [anon_sym_return] = ACTIONS(119), - [anon_sym_continue] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(123), - [aux_sym_preproc_def_token1] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_auto] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), + [aux_sym_enumerator_list_repeat1] = STATE(1033), + [anon_sym_COMMA] = ACTIONS(3012), + [anon_sym_RBRACE] = ACTIONS(3015), + [sym_comment] = ACTIONS(3), }, [1034] = { - [anon_sym_GT_GT] = ACTIONS(197), - [anon_sym_PERCENT_EQ] = ACTIONS(199), - [anon_sym_DASH_EQ] = ACTIONS(199), - [anon_sym_PIPE] = ACTIONS(197), - [anon_sym_EQ_EQ] = ACTIONS(203), - [anon_sym_SLASH] = ACTIONS(197), - [anon_sym_DASH_GT] = ACTIONS(203), - [anon_sym_LT_LT] = ACTIONS(197), - [anon_sym_DASH_DASH] = ACTIONS(203), - [anon_sym_PLUS_EQ] = ACTIONS(199), - [anon_sym_LT_LT_EQ] = ACTIONS(199), - [anon_sym_QMARK] = ACTIONS(203), - [anon_sym_BANG_EQ] = ACTIONS(203), - [anon_sym_CARET_EQ] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(203), - [anon_sym_PLUS_PLUS] = ACTIONS(203), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT_EQ] = ACTIONS(199), - [anon_sym_GT] = ACTIONS(197), - [anon_sym_PIPE_EQ] = ACTIONS(199), - [anon_sym_AMP_EQ] = ACTIONS(199), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_AMP] = ACTIONS(197), - [anon_sym_EQ] = ACTIONS(209), - [anon_sym_LPAREN2] = ACTIONS(203), - [anon_sym_GT_EQ] = ACTIONS(203), - [anon_sym_COLON] = ACTIONS(2639), - [anon_sym_STAR_EQ] = ACTIONS(199), - [anon_sym_PIPE_PIPE] = ACTIONS(203), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_LT_EQ] = ACTIONS(203), - [anon_sym_STAR] = ACTIONS(197), - [anon_sym_SLASH_EQ] = ACTIONS(199), - [anon_sym_AMP_AMP] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(203), - [anon_sym_CARET] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_DOT] = ACTIONS(203), - [anon_sym_LT] = ACTIONS(197), - [anon_sym_LBRACK] = ACTIONS(203), + [sym_identifier] = ACTIONS(3017), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3017), + [anon_sym_RPAREN] = ACTIONS(3019), + [sym_comment] = ACTIONS(3), }, [1035] = { + [sym_field_declaration_list] = STATE(860), + [sym_identifier] = ACTIONS(3021), + [anon_sym_LBRACE] = ACTIONS(2534), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2831), }, [1036] = { - [anon_sym_LF] = ACTIONS(2833), - [sym_comment] = ACTIONS(147), + [aux_sym_type_definition_repeat2] = STATE(1024), + [anon_sym_COMMA] = ACTIONS(2743), + [anon_sym_SEMI] = ACTIONS(3023), + [sym_comment] = ACTIONS(3), }, [1037] = { - [sym_if_statement] = STATE(1050), - [sym_preproc_def] = STATE(1050), - [sym_preproc_function_def] = STATE(1050), - [sym__expression] = STATE(951), - [sym_comma_expression] = STATE(952), - [sym_binary_expression] = STATE(951), - [sym_update_expression] = STATE(951), - [sym_call_expression] = STATE(36), - [sym_function_definition] = STATE(1050), - [sym_declaration] = STATE(1050), - [sym_do_statement] = STATE(1050), - [sym_for_statement] = STATE(1050), - [sym_preproc_else] = STATE(1049), - [sym_preproc_elif] = STATE(1049), - [aux_sym_translation_unit_repeat1] = STATE(1050), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(953), - [sym_union_specifier] = STATE(953), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_expression_statement] = STATE(1050), - [sym_switch_statement] = STATE(1050), - [sym_return_statement] = STATE(1050), - [sym_preproc_call] = STATE(1050), - [sym_conditional_expression] = STATE(951), - [sym_assignment_expression] = STATE(951), - [sym_cast_expression] = STATE(951), - [sym__declaration_specifiers] = STATE(1172), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(951), - [sym_type_definition] = STATE(1050), - [sym_char_literal] = STATE(951), - [sym_break_statement] = STATE(1050), - [sym__empty_declaration] = STATE(1050), - [sym_sized_type_specifier] = STATE(953), - [sym_enum_specifier] = STATE(953), - [sym_labeled_statement] = STATE(1050), - [sym_preproc_include] = STATE(1050), - [sym_preproc_if] = STATE(1050), - [sym_preproc_ifdef] = STATE(1050), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(951), - [sym_sizeof_expression] = STATE(951), - [sym_attribute_specifier] = STATE(43), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_linkage_specification] = STATE(1050), - [sym_concatenated_string] = STATE(951), - [sym_string_literal] = STATE(41), - [sym_macro_type_specifier] = STATE(953), - [sym_while_statement] = STATE(1050), - [sym_storage_class_specifier] = STATE(43), - [sym_compound_statement] = STATE(1050), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_continue_statement] = STATE(1050), - [sym_struct_specifier] = STATE(953), - [sym_goto_statement] = STATE(1050), - [sym_true] = ACTIONS(378), - [anon_sym_restrict] = ACTIONS(7), - [sym_null] = ACTIONS(378), - [anon_sym_goto] = ACTIONS(380), - [aux_sym_preproc_if_token2] = ACTIONS(2835), - [anon_sym_const] = ACTIONS(7), - [anon_sym_typedef] = ACTIONS(384), - [anon_sym_DASH_DASH] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(7), - [sym_identifier] = ACTIONS(386), - [aux_sym_preproc_ifdef_token1] = ACTIONS(388), - [sym_number_literal] = ACTIONS(390), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_extern] = ACTIONS(392), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_struct] = ACTIONS(25), - [anon_sym_signed] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(27), - [anon_sym_while] = ACTIONS(394), - [aux_sym_preproc_ifdef_token2] = ACTIONS(388), - [aux_sym_preproc_elif_token1] = ACTIONS(396), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_sizeof] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(398), - [anon_sym_union] = ACTIONS(37), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_short] = ACTIONS(27), - [anon_sym_do] = ACTIONS(400), - [aux_sym_preproc_else_token1] = ACTIONS(402), - [sym_preproc_directive] = ACTIONS(404), - [anon_sym_AMP] = ACTIONS(43), - [aux_sym_preproc_if_token1] = ACTIONS(406), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(408), - [anon_sym_for] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_BANG] = ACTIONS(47), - [aux_sym_preproc_include_token1] = ACTIONS(414), - [anon_sym_DASH] = ACTIONS(61), - [anon_sym_static] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_register] = ACTIONS(63), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(416), - [anon_sym_switch] = ACTIONS(418), - [anon_sym_enum] = ACTIONS(69), - [sym_false] = ACTIONS(378), - [anon_sym_return] = ACTIONS(420), - [anon_sym_continue] = ACTIONS(422), - [anon_sym_SEMI] = ACTIONS(424), - [aux_sym_preproc_def_token1] = ACTIONS(426), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_auto] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), + [aux_sym_preproc_params_repeat1] = STATE(1023), + [anon_sym_COMMA] = ACTIONS(2985), + [anon_sym_RPAREN] = ACTIONS(3025), + [sym_comment] = ACTIONS(3), }, [1038] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_COMMA] = ACTIONS(293), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_RPAREN] = ACTIONS(2837), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [aux_sym_type_definition_repeat2] = STATE(1024), + [anon_sym_COMMA] = ACTIONS(2743), + [anon_sym_SEMI] = ACTIONS(3027), + [sym_comment] = ACTIONS(3), }, [1039] = { - [anon_sym_RPAREN] = ACTIONS(2837), + [sym_field_declaration_list] = STATE(861), + [sym_identifier] = ACTIONS(3029), + [anon_sym_LBRACE] = ACTIONS(2534), [sym_comment] = ACTIONS(3), }, [1040] = { - [aux_sym_string_literal_repeat1] = STATE(157), - [sym_comment] = ACTIONS(147), - [sym_escape_sequence] = ACTIONS(469), - [aux_sym_string_literal_token1] = ACTIONS(469), - [anon_sym_DQUOTE] = ACTIONS(2839), + [sym_enumerator_list] = STATE(865), + [sym_identifier] = ACTIONS(3031), + [anon_sym_LBRACE] = ACTIONS(2528), + [sym_comment] = ACTIONS(3), }, [1041] = { - [sym_if_statement] = STATE(1053), - [sym_preproc_def] = STATE(1053), - [sym_preproc_function_def] = STATE(1053), - [sym__expression] = STATE(951), - [sym_comma_expression] = STATE(952), - [sym_binary_expression] = STATE(951), - [sym_update_expression] = STATE(951), - [sym_call_expression] = STATE(36), - [sym_function_definition] = STATE(1053), - [sym_declaration] = STATE(1053), - [sym_do_statement] = STATE(1053), - [sym_for_statement] = STATE(1053), - [sym_preproc_else] = STATE(1052), - [sym_preproc_elif] = STATE(1052), - [aux_sym_translation_unit_repeat1] = STATE(1053), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(953), - [sym_union_specifier] = STATE(953), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_expression_statement] = STATE(1053), - [sym_switch_statement] = STATE(1053), - [sym_return_statement] = STATE(1053), - [sym_preproc_call] = STATE(1053), - [sym_conditional_expression] = STATE(951), - [sym_assignment_expression] = STATE(951), - [sym_cast_expression] = STATE(951), - [sym__declaration_specifiers] = STATE(1172), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(951), - [sym_type_definition] = STATE(1053), - [sym_char_literal] = STATE(951), - [sym_break_statement] = STATE(1053), - [sym__empty_declaration] = STATE(1053), - [sym_sized_type_specifier] = STATE(953), - [sym_enum_specifier] = STATE(953), - [sym_labeled_statement] = STATE(1053), - [sym_preproc_include] = STATE(1053), - [sym_preproc_if] = STATE(1053), - [sym_preproc_ifdef] = STATE(1053), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(951), - [sym_sizeof_expression] = STATE(951), - [sym_attribute_specifier] = STATE(43), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_linkage_specification] = STATE(1053), - [sym_concatenated_string] = STATE(951), - [sym_string_literal] = STATE(41), - [sym_macro_type_specifier] = STATE(953), - [sym_while_statement] = STATE(1053), - [sym_storage_class_specifier] = STATE(43), - [sym_compound_statement] = STATE(1053), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_continue_statement] = STATE(1053), - [sym_struct_specifier] = STATE(953), - [sym_goto_statement] = STATE(1053), - [sym_true] = ACTIONS(378), - [anon_sym_restrict] = ACTIONS(7), - [sym_null] = ACTIONS(378), - [anon_sym_goto] = ACTIONS(380), - [aux_sym_preproc_if_token2] = ACTIONS(2841), - [anon_sym_const] = ACTIONS(7), - [anon_sym_typedef] = ACTIONS(384), - [anon_sym_DASH_DASH] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(7), - [sym_identifier] = ACTIONS(386), - [aux_sym_preproc_ifdef_token1] = ACTIONS(388), - [sym_number_literal] = ACTIONS(390), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_extern] = ACTIONS(392), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_struct] = ACTIONS(25), - [anon_sym_signed] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(27), - [anon_sym_while] = ACTIONS(394), - [aux_sym_preproc_ifdef_token2] = ACTIONS(388), - [aux_sym_preproc_elif_token1] = ACTIONS(396), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_sizeof] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(398), - [anon_sym_union] = ACTIONS(37), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_short] = ACTIONS(27), - [anon_sym_do] = ACTIONS(400), - [aux_sym_preproc_else_token1] = ACTIONS(402), - [sym_preproc_directive] = ACTIONS(404), - [anon_sym_AMP] = ACTIONS(43), - [aux_sym_preproc_if_token1] = ACTIONS(406), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(408), - [anon_sym_for] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_BANG] = ACTIONS(47), - [aux_sym_preproc_include_token1] = ACTIONS(414), - [anon_sym_DASH] = ACTIONS(61), - [anon_sym_static] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_register] = ACTIONS(63), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(416), - [anon_sym_switch] = ACTIONS(418), - [anon_sym_enum] = ACTIONS(69), - [sym_false] = ACTIONS(378), - [anon_sym_return] = ACTIONS(420), - [anon_sym_continue] = ACTIONS(422), - [anon_sym_SEMI] = ACTIONS(424), - [aux_sym_preproc_def_token1] = ACTIONS(426), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_auto] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), + [aux_sym_declaration_repeat1] = STATE(1021), + [anon_sym_COMMA] = ACTIONS(2675), + [anon_sym_SEMI] = ACTIONS(2695), + [sym_comment] = ACTIONS(3), }, [1042] = { - [sym_sized_type_specifier] = STATE(130), - [sym_declaration] = STATE(734), - [sym_declaration_list] = STATE(734), - [sym_enum_specifier] = STATE(130), - [sym_function_definition] = STATE(734), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(130), - [sym_union_specifier] = STATE(130), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_attribute_specifier] = STATE(43), - [sym_macro_type_specifier] = STATE(130), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_storage_class_specifier] = STATE(43), - [sym__declaration_specifiers] = STATE(1191), - [sym_struct_specifier] = STATE(130), - [anon_sym_LBRACE] = ACTIONS(2843), - [anon_sym_union] = ACTIONS(37), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(7), - [anon_sym_short] = ACTIONS(27), - [anon_sym_static] = ACTIONS(63), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_register] = ACTIONS(63), - [anon_sym_extern] = ACTIONS(63), - [anon_sym_struct] = ACTIONS(25), - [anon_sym_signed] = ACTIONS(27), - [anon_sym_enum] = ACTIONS(69), - [anon_sym_long] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(7), - [anon_sym__Atomic] = ACTIONS(7), - [sym_primitive_type] = ACTIONS(348), - [anon_sym_auto] = ACTIONS(63), - [sym_identifier] = ACTIONS(187), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(31), + [aux_sym_declaration_repeat1] = STATE(1019), + [anon_sym_COMMA] = ACTIONS(2675), + [anon_sym_SEMI] = ACTIONS(3033), + [sym_comment] = ACTIONS(3), }, [1043] = { - [sym_switch_body] = STATE(736), - [anon_sym_LBRACE] = ACTIONS(2845), + [aux_sym_argument_list_repeat1] = STATE(1043), + [anon_sym_COMMA] = ACTIONS(3035), + [anon_sym_RPAREN] = ACTIONS(2316), [sym_comment] = ACTIONS(3), }, [1044] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_SEMI] = ACTIONS(2847), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [aux_sym_preproc_params_repeat1] = STATE(1044), + [anon_sym_COMMA] = ACTIONS(3038), + [anon_sym_RPAREN] = ACTIONS(3041), + [sym_comment] = ACTIONS(3), }, [1045] = { - [sym_preproc_params] = STATE(1057), - [sym_preproc_arg] = ACTIONS(2849), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_LF] = ACTIONS(2851), - [sym_comment] = ACTIONS(147), + [aux_sym_initializer_list_repeat1] = STATE(1045), + [anon_sym_COMMA] = ACTIONS(3043), + [anon_sym_RBRACE] = ACTIONS(2282), + [sym_comment] = ACTIONS(3), }, [1046] = { - [aux_sym_declaration_repeat1] = STATE(1058), - [sym_compound_statement] = STATE(741), - [sym_parameter_list] = STATE(214), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_EQ] = ACTIONS(648), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_LPAREN2] = ACTIONS(652), + [aux_sym_declaration_repeat1] = STATE(1019), + [anon_sym_COMMA] = ACTIONS(2675), + [anon_sym_SEMI] = ACTIONS(3046), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(654), - [anon_sym_SEMI] = ACTIONS(2853), }, [1047] = { - [aux_sym_declaration_repeat1] = STATE(1058), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_EQ] = ACTIONS(3048), + [anon_sym_DOT] = ACTIONS(3048), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(654), - [anon_sym_SEMI] = ACTIONS(2853), }, [1048] = { - [sym_parenthesized_expression] = STATE(655), + [aux_sym_type_definition_repeat2] = STATE(1024), + [anon_sym_COMMA] = ACTIONS(2743), + [anon_sym_SEMI] = ACTIONS(3050), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(2855), }, [1049] = { - [aux_sym_preproc_if_token2] = ACTIONS(2857), + [aux_sym_declaration_repeat1] = STATE(1019), + [anon_sym_COMMA] = ACTIONS(2675), + [anon_sym_SEMI] = ACTIONS(3052), [sym_comment] = ACTIONS(3), }, [1050] = { - [sym_if_statement] = STATE(636), - [sym_preproc_def] = STATE(636), - [sym_preproc_function_def] = STATE(636), - [sym__expression] = STATE(951), - [sym_comma_expression] = STATE(952), - [sym_binary_expression] = STATE(951), - [sym_update_expression] = STATE(951), - [sym_call_expression] = STATE(36), - [sym_function_definition] = STATE(636), - [sym_declaration] = STATE(636), - [sym_do_statement] = STATE(636), - [sym_for_statement] = STATE(636), - [sym_preproc_else] = STATE(1059), - [sym_preproc_elif] = STATE(1059), - [aux_sym_translation_unit_repeat1] = STATE(636), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(953), - [sym_union_specifier] = STATE(953), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_expression_statement] = STATE(636), - [sym_switch_statement] = STATE(636), - [sym_return_statement] = STATE(636), - [sym_preproc_call] = STATE(636), - [sym_conditional_expression] = STATE(951), - [sym_assignment_expression] = STATE(951), - [sym_cast_expression] = STATE(951), - [sym__declaration_specifiers] = STATE(1172), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(951), - [sym_type_definition] = STATE(636), - [sym_char_literal] = STATE(951), - [sym_break_statement] = STATE(636), - [sym__empty_declaration] = STATE(636), - [sym_sized_type_specifier] = STATE(953), - [sym_enum_specifier] = STATE(953), - [sym_labeled_statement] = STATE(636), - [sym_preproc_include] = STATE(636), - [sym_preproc_if] = STATE(636), - [sym_preproc_ifdef] = STATE(636), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(951), - [sym_sizeof_expression] = STATE(951), - [sym_attribute_specifier] = STATE(43), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_linkage_specification] = STATE(636), - [sym_concatenated_string] = STATE(951), - [sym_string_literal] = STATE(41), - [sym_macro_type_specifier] = STATE(953), - [sym_while_statement] = STATE(636), - [sym_storage_class_specifier] = STATE(43), - [sym_compound_statement] = STATE(636), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_continue_statement] = STATE(636), - [sym_struct_specifier] = STATE(953), - [sym_goto_statement] = STATE(636), - [sym_true] = ACTIONS(378), - [anon_sym_restrict] = ACTIONS(7), - [sym_null] = ACTIONS(378), - [anon_sym_goto] = ACTIONS(380), - [aux_sym_preproc_if_token2] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(7), - [anon_sym_typedef] = ACTIONS(384), - [anon_sym_DASH_DASH] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(7), - [sym_identifier] = ACTIONS(386), - [aux_sym_preproc_ifdef_token1] = ACTIONS(388), - [sym_number_literal] = ACTIONS(390), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_extern] = ACTIONS(392), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_struct] = ACTIONS(25), - [anon_sym_signed] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(27), - [anon_sym_while] = ACTIONS(394), - [aux_sym_preproc_ifdef_token2] = ACTIONS(388), - [aux_sym_preproc_elif_token1] = ACTIONS(396), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_sizeof] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(398), - [anon_sym_union] = ACTIONS(37), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_short] = ACTIONS(27), - [anon_sym_do] = ACTIONS(400), - [aux_sym_preproc_else_token1] = ACTIONS(402), - [sym_preproc_directive] = ACTIONS(404), - [anon_sym_AMP] = ACTIONS(43), - [aux_sym_preproc_if_token1] = ACTIONS(406), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(408), - [anon_sym_for] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_BANG] = ACTIONS(47), - [aux_sym_preproc_include_token1] = ACTIONS(414), - [anon_sym_DASH] = ACTIONS(61), - [anon_sym_static] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_register] = ACTIONS(63), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(416), - [anon_sym_switch] = ACTIONS(418), - [anon_sym_enum] = ACTIONS(69), - [sym_false] = ACTIONS(378), - [anon_sym_return] = ACTIONS(420), - [anon_sym_continue] = ACTIONS(422), - [anon_sym_SEMI] = ACTIONS(424), - [aux_sym_preproc_def_token1] = ACTIONS(426), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_auto] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), + [aux_sym_initializer_list_repeat1] = STATE(1045), + [anon_sym_COMMA] = ACTIONS(3054), + [anon_sym_RBRACE] = ACTIONS(1359), + [sym_comment] = ACTIONS(3), }, [1051] = { - [aux_sym_type_definition_repeat2] = STATE(1060), - [sym_parameter_list] = STATE(261), - [anon_sym_LBRACK] = ACTIONS(935), + [anon_sym_LBRACK] = ACTIONS(3056), + [anon_sym_EQ] = ACTIONS(3056), + [anon_sym_DOT] = ACTIONS(3056), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(652), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_SEMI] = ACTIONS(2861), }, [1052] = { - [aux_sym_preproc_if_token2] = ACTIONS(2863), + [aux_sym_declaration_repeat1] = STATE(1049), + [anon_sym_COMMA] = ACTIONS(2675), + [anon_sym_SEMI] = ACTIONS(2677), [sym_comment] = ACTIONS(3), }, [1053] = { - [sym_if_statement] = STATE(636), - [sym_preproc_def] = STATE(636), - [sym_preproc_function_def] = STATE(636), - [sym__expression] = STATE(951), - [sym_comma_expression] = STATE(952), - [sym_binary_expression] = STATE(951), - [sym_update_expression] = STATE(951), - [sym_call_expression] = STATE(36), - [sym_function_definition] = STATE(636), - [sym_declaration] = STATE(636), - [sym_do_statement] = STATE(636), - [sym_for_statement] = STATE(636), - [sym_preproc_else] = STATE(1064), - [sym_preproc_elif] = STATE(1064), - [aux_sym_translation_unit_repeat1] = STATE(636), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(953), - [sym_union_specifier] = STATE(953), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_expression_statement] = STATE(636), - [sym_switch_statement] = STATE(636), - [sym_return_statement] = STATE(636), - [sym_preproc_call] = STATE(636), - [sym_conditional_expression] = STATE(951), - [sym_assignment_expression] = STATE(951), - [sym_cast_expression] = STATE(951), - [sym__declaration_specifiers] = STATE(1172), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(951), - [sym_type_definition] = STATE(636), - [sym_char_literal] = STATE(951), - [sym_break_statement] = STATE(636), - [sym__empty_declaration] = STATE(636), - [sym_sized_type_specifier] = STATE(953), - [sym_enum_specifier] = STATE(953), - [sym_labeled_statement] = STATE(636), - [sym_preproc_include] = STATE(636), - [sym_preproc_if] = STATE(636), - [sym_preproc_ifdef] = STATE(636), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(951), - [sym_sizeof_expression] = STATE(951), - [sym_attribute_specifier] = STATE(43), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_linkage_specification] = STATE(636), - [sym_concatenated_string] = STATE(951), - [sym_string_literal] = STATE(41), - [sym_macro_type_specifier] = STATE(953), - [sym_while_statement] = STATE(636), - [sym_storage_class_specifier] = STATE(43), - [sym_compound_statement] = STATE(636), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_continue_statement] = STATE(636), - [sym_struct_specifier] = STATE(953), - [sym_goto_statement] = STATE(636), - [sym_true] = ACTIONS(378), - [anon_sym_restrict] = ACTIONS(7), - [sym_null] = ACTIONS(378), - [anon_sym_goto] = ACTIONS(380), - [aux_sym_preproc_if_token2] = ACTIONS(2865), - [anon_sym_const] = ACTIONS(7), - [anon_sym_typedef] = ACTIONS(384), - [anon_sym_DASH_DASH] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(7), - [sym_identifier] = ACTIONS(386), - [aux_sym_preproc_ifdef_token1] = ACTIONS(388), - [sym_number_literal] = ACTIONS(390), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_extern] = ACTIONS(392), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_struct] = ACTIONS(25), - [anon_sym_signed] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(27), - [anon_sym_while] = ACTIONS(394), - [aux_sym_preproc_ifdef_token2] = ACTIONS(388), - [aux_sym_preproc_elif_token1] = ACTIONS(396), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_sizeof] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(398), - [anon_sym_union] = ACTIONS(37), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_short] = ACTIONS(27), - [anon_sym_do] = ACTIONS(400), - [aux_sym_preproc_else_token1] = ACTIONS(402), - [sym_preproc_directive] = ACTIONS(404), - [anon_sym_AMP] = ACTIONS(43), - [aux_sym_preproc_if_token1] = ACTIONS(406), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(408), - [anon_sym_for] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_BANG] = ACTIONS(47), - [aux_sym_preproc_include_token1] = ACTIONS(414), - [anon_sym_DASH] = ACTIONS(61), - [anon_sym_static] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_register] = ACTIONS(63), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(416), - [anon_sym_switch] = ACTIONS(418), - [anon_sym_enum] = ACTIONS(69), - [sym_false] = ACTIONS(378), - [anon_sym_return] = ACTIONS(420), - [anon_sym_continue] = ACTIONS(422), - [anon_sym_SEMI] = ACTIONS(424), - [aux_sym_preproc_def_token1] = ACTIONS(426), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_auto] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), + [aux_sym_declaration_repeat1] = STATE(1042), + [anon_sym_COMMA] = ACTIONS(2675), + [anon_sym_SEMI] = ACTIONS(2685), + [sym_comment] = ACTIONS(3), }, [1054] = { - [sym_if_statement] = STATE(1065), - [sym_preproc_def] = STATE(1065), - [sym_preproc_function_def] = STATE(1065), - [sym__expression] = STATE(867), - [sym_comma_expression] = STATE(868), - [sym_binary_expression] = STATE(867), - [sym_update_expression] = STATE(867), - [sym_call_expression] = STATE(36), - [sym_function_definition] = STATE(1065), - [sym_declaration] = STATE(1065), - [sym_do_statement] = STATE(1065), - [sym_for_statement] = STATE(1065), - [aux_sym_translation_unit_repeat1] = STATE(1065), - [sym_expression_statement] = STATE(1065), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(869), - [sym_union_specifier] = STATE(869), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_switch_statement] = STATE(1065), - [sym_return_statement] = STATE(1065), - [sym_preproc_call] = STATE(1065), - [sym_conditional_expression] = STATE(867), - [sym_assignment_expression] = STATE(867), - [sym_type_definition] = STATE(1065), - [sym_cast_expression] = STATE(867), - [sym__declaration_specifiers] = STATE(1151), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(867), - [sym_char_literal] = STATE(867), - [sym_break_statement] = STATE(1065), - [sym__empty_declaration] = STATE(1065), - [sym_sized_type_specifier] = STATE(869), - [sym_enum_specifier] = STATE(869), - [sym_labeled_statement] = STATE(1065), - [sym_preproc_include] = STATE(1065), - [sym_preproc_if] = STATE(1065), - [sym_preproc_ifdef] = STATE(1065), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(867), - [sym_sizeof_expression] = STATE(867), - [sym_attribute_specifier] = STATE(43), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_linkage_specification] = STATE(1065), - [sym_concatenated_string] = STATE(867), - [sym_string_literal] = STATE(41), - [sym_macro_type_specifier] = STATE(869), - [sym_while_statement] = STATE(1065), - [sym_storage_class_specifier] = STATE(43), - [sym_compound_statement] = STATE(1065), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_continue_statement] = STATE(1065), - [sym_struct_specifier] = STATE(869), - [sym_goto_statement] = STATE(1065), - [sym_true] = ACTIONS(81), - [anon_sym_restrict] = ACTIONS(7), - [sym_null] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_const] = ACTIONS(7), - [anon_sym_typedef] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(7), - [sym_identifier] = ACTIONS(87), - [aux_sym_preproc_ifdef_token1] = ACTIONS(89), - [sym_number_literal] = ACTIONS(91), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_extern] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_struct] = ACTIONS(25), - [anon_sym_signed] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(27), - [anon_sym_while] = ACTIONS(95), - [aux_sym_preproc_ifdef_token2] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_sizeof] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(97), - [anon_sym_union] = ACTIONS(37), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_short] = ACTIONS(27), - [anon_sym_do] = ACTIONS(99), - [sym_preproc_directive] = ACTIONS(101), - [anon_sym_AMP] = ACTIONS(43), - [aux_sym_preproc_if_token1] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(2867), - [sym_primitive_type] = ACTIONS(107), - [anon_sym_for] = ACTIONS(109), - [anon_sym_break] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(47), - [aux_sym_preproc_include_token1] = ACTIONS(113), - [anon_sym_DASH] = ACTIONS(61), - [anon_sym_static] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_register] = ACTIONS(63), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(115), - [anon_sym_switch] = ACTIONS(117), - [anon_sym_enum] = ACTIONS(69), - [sym_false] = ACTIONS(81), - [anon_sym_return] = ACTIONS(119), - [anon_sym_continue] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(123), - [aux_sym_preproc_def_token1] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_auto] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), + [aux_sym_type_definition_repeat2] = STATE(1024), + [anon_sym_COMMA] = ACTIONS(2743), + [anon_sym_SEMI] = ACTIONS(3058), + [sym_comment] = ACTIONS(3), }, [1055] = { - [sym_if_statement] = STATE(1066), - [sym_do_statement] = STATE(1066), - [sym_for_statement] = STATE(1066), - [sym__expression] = STATE(1093), - [sym_comma_expression] = STATE(1094), - [sym_binary_expression] = STATE(1093), - [sym_update_expression] = STATE(1093), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(1066), - [sym_return_statement] = STATE(1066), - [sym_break_statement] = STATE(1066), - [sym_conditional_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_cast_expression] = STATE(1093), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1093), - [sym_char_literal] = STATE(1093), - [sym_labeled_statement] = STATE(1066), - [sym_case_statement] = STATE(1066), - [sym_while_statement] = STATE(1066), - [sym_continue_statement] = STATE(1066), - [sym_goto_statement] = STATE(1066), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1093), - [sym_sizeof_expression] = STATE(1093), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1093), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(1066), - [aux_sym_switch_body_repeat1] = STATE(1066), - [sym_expression_statement] = STATE(1066), - [anon_sym_LBRACE] = ACTIONS(994), - [anon_sym_case] = ACTIONS(996), - [sym_true] = ACTIONS(998), - [sym_null] = ACTIONS(998), - [anon_sym_do] = ACTIONS(1000), - [anon_sym_goto] = ACTIONS(1002), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(2869), - [anon_sym_default] = ACTIONS(1006), - [sym_identifier] = ACTIONS(1008), - [anon_sym_for] = ACTIONS(1010), - [anon_sym_break] = ACTIONS(1012), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(1014), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(1016), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(1018), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(998), - [anon_sym_return] = ACTIONS(1020), - [anon_sym_while] = ACTIONS(1022), - [anon_sym_continue] = ACTIONS(1024), - [anon_sym_SEMI] = ACTIONS(1026), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_parenthesized_expression] = STATE(304), + [anon_sym_LPAREN2] = ACTIONS(3060), + [sym_comment] = ACTIONS(3), }, [1056] = { - [anon_sym_LF] = ACTIONS(2871), - [sym_comment] = ACTIONS(147), + [anon_sym_LF] = ACTIONS(3062), + [sym_preproc_arg] = ACTIONS(3064), + [sym_comment] = ACTIONS(2827), }, [1057] = { - [sym_comment] = ACTIONS(147), - [anon_sym_LF] = ACTIONS(2873), - [sym_preproc_arg] = ACTIONS(2875), + [anon_sym_LF] = ACTIONS(3066), + [sym_preproc_arg] = ACTIONS(3068), + [sym_comment] = ACTIONS(2827), }, [1058] = { - [aux_sym_declaration_repeat1] = STATE(308), + [sym_switch_body] = STATE(205), + [anon_sym_LBRACE] = ACTIONS(3070), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(654), - [anon_sym_SEMI] = ACTIONS(2877), }, [1059] = { - [aux_sym_preproc_if_token2] = ACTIONS(2879), + [sym_switch_body] = STATE(299), + [anon_sym_LBRACE] = ACTIONS(3072), [sym_comment] = ACTIONS(3), }, [1060] = { - [aux_sym_type_definition_repeat2] = STATE(364), + [sym_enumerator] = STATE(1080), + [sym_identifier] = ACTIONS(2900), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_SEMI] = ACTIONS(2881), }, [1061] = { - [aux_sym_type_definition_repeat2] = STATE(1068), - [sym_parameter_list] = STATE(261), - [anon_sym_LBRACK] = ACTIONS(935), + [anon_sym_COMMA] = ACTIONS(2282), + [anon_sym_RBRACE] = ACTIONS(2282), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(652), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_SEMI] = ACTIONS(2883), }, [1062] = { - [sym_char_literal] = STATE(1069), - [sym__expression] = STATE(1069), - [sym_comma_expression] = STATE(1070), - [sym_binary_expression] = STATE(1069), - [sym_update_expression] = STATE(1069), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1069), - [sym_sizeof_expression] = STATE(1069), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1069), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(1069), - [sym_assignment_expression] = STATE(1069), - [sym_cast_expression] = STATE(1069), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1069), - [sym_true] = ACTIONS(2885), - [sym_null] = ACTIONS(2885), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(2887), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2885), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_RPAREN] = ACTIONS(2889), - [anon_sym_sizeof] = ACTIONS(33), + [sym_switch_body] = STATE(173), + [anon_sym_LBRACE] = ACTIONS(3074), + [sym_comment] = ACTIONS(3), }, [1063] = { - [sym_char_literal] = STATE(1073), - [sym__expression] = STATE(1073), - [sym_comma_expression] = STATE(1074), - [sym_binary_expression] = STATE(1073), - [sym_update_expression] = STATE(1073), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1073), - [sym_sizeof_expression] = STATE(1073), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1073), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(1073), - [sym_assignment_expression] = STATE(1073), - [sym_cast_expression] = STATE(1073), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1073), - [sym_true] = ACTIONS(2891), - [sym_null] = ACTIONS(2891), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(2893), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2891), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_RPAREN] = ACTIONS(2895), - [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_COMMA] = ACTIONS(2284), + [anon_sym_RBRACE] = ACTIONS(2284), + [sym_comment] = ACTIONS(3), }, [1064] = { - [aux_sym_preproc_if_token2] = ACTIONS(2897), + [anon_sym_else] = ACTIONS(3076), + [anon_sym_while] = ACTIONS(1019), [sym_comment] = ACTIONS(3), }, [1065] = { - [sym_if_statement] = STATE(533), - [sym_preproc_def] = STATE(533), - [sym_preproc_function_def] = STATE(533), - [sym__expression] = STATE(867), - [sym_comma_expression] = STATE(868), - [sym_binary_expression] = STATE(867), - [sym_update_expression] = STATE(867), - [sym_call_expression] = STATE(36), - [sym_function_definition] = STATE(533), - [sym_declaration] = STATE(533), - [sym_do_statement] = STATE(533), - [sym_for_statement] = STATE(533), - [aux_sym_translation_unit_repeat1] = STATE(533), - [sym_expression_statement] = STATE(533), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(869), - [sym_union_specifier] = STATE(869), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_switch_statement] = STATE(533), - [sym_return_statement] = STATE(533), - [sym_preproc_call] = STATE(533), - [sym_conditional_expression] = STATE(867), - [sym_assignment_expression] = STATE(867), - [sym_type_definition] = STATE(533), - [sym_cast_expression] = STATE(867), - [sym__declaration_specifiers] = STATE(1151), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(867), - [sym_char_literal] = STATE(867), - [sym_break_statement] = STATE(533), - [sym__empty_declaration] = STATE(533), - [sym_sized_type_specifier] = STATE(869), - [sym_enum_specifier] = STATE(869), - [sym_labeled_statement] = STATE(533), - [sym_preproc_include] = STATE(533), - [sym_preproc_if] = STATE(533), - [sym_preproc_ifdef] = STATE(533), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(867), - [sym_sizeof_expression] = STATE(867), - [sym_attribute_specifier] = STATE(43), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_linkage_specification] = STATE(533), - [sym_concatenated_string] = STATE(867), - [sym_string_literal] = STATE(41), - [sym_macro_type_specifier] = STATE(869), - [sym_while_statement] = STATE(533), - [sym_storage_class_specifier] = STATE(43), - [sym_compound_statement] = STATE(533), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_continue_statement] = STATE(533), - [sym_struct_specifier] = STATE(869), - [sym_goto_statement] = STATE(533), - [sym_true] = ACTIONS(81), - [anon_sym_restrict] = ACTIONS(7), - [sym_null] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_const] = ACTIONS(7), - [anon_sym_typedef] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(7), - [sym_identifier] = ACTIONS(87), - [aux_sym_preproc_ifdef_token1] = ACTIONS(89), - [sym_number_literal] = ACTIONS(91), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_extern] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_struct] = ACTIONS(25), - [anon_sym_signed] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(27), - [anon_sym_while] = ACTIONS(95), - [aux_sym_preproc_ifdef_token2] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_sizeof] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(97), - [anon_sym_union] = ACTIONS(37), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_short] = ACTIONS(27), - [anon_sym_do] = ACTIONS(99), - [sym_preproc_directive] = ACTIONS(101), - [anon_sym_AMP] = ACTIONS(43), - [aux_sym_preproc_if_token1] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(2899), - [sym_primitive_type] = ACTIONS(107), - [anon_sym_for] = ACTIONS(109), - [anon_sym_break] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(47), - [aux_sym_preproc_include_token1] = ACTIONS(113), - [anon_sym_DASH] = ACTIONS(61), - [anon_sym_static] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_register] = ACTIONS(63), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(115), - [anon_sym_switch] = ACTIONS(117), - [anon_sym_enum] = ACTIONS(69), - [sym_false] = ACTIONS(81), - [anon_sym_return] = ACTIONS(119), - [anon_sym_continue] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(123), - [aux_sym_preproc_def_token1] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_auto] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), + [anon_sym_LF] = ACTIONS(3078), + [sym_preproc_arg] = ACTIONS(3080), + [sym_comment] = ACTIONS(2827), }, [1066] = { - [sym_if_statement] = STATE(383), - [sym_do_statement] = STATE(383), - [sym_for_statement] = STATE(383), - [sym__expression] = STATE(1093), - [sym_comma_expression] = STATE(1094), - [sym_binary_expression] = STATE(1093), - [sym_update_expression] = STATE(1093), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(383), - [sym_return_statement] = STATE(383), - [sym_break_statement] = STATE(383), - [sym_conditional_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_cast_expression] = STATE(1093), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1093), - [sym_char_literal] = STATE(1093), - [sym_labeled_statement] = STATE(383), - [sym_case_statement] = STATE(383), - [sym_while_statement] = STATE(383), - [sym_continue_statement] = STATE(383), - [sym_goto_statement] = STATE(383), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1093), - [sym_sizeof_expression] = STATE(1093), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1093), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(383), - [aux_sym_switch_body_repeat1] = STATE(383), - [sym_expression_statement] = STATE(383), - [anon_sym_LBRACE] = ACTIONS(994), - [anon_sym_case] = ACTIONS(996), - [sym_true] = ACTIONS(998), - [sym_null] = ACTIONS(998), - [anon_sym_do] = ACTIONS(1000), - [anon_sym_goto] = ACTIONS(1002), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(2901), - [anon_sym_default] = ACTIONS(1006), - [sym_identifier] = ACTIONS(1008), - [anon_sym_for] = ACTIONS(1010), - [anon_sym_break] = ACTIONS(1012), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(1014), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(1016), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(1018), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(998), - [anon_sym_return] = ACTIONS(1020), - [anon_sym_while] = ACTIONS(1022), - [anon_sym_continue] = ACTIONS(1024), - [anon_sym_SEMI] = ACTIONS(1026), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_parenthesized_expression] = STATE(75), + [anon_sym_LPAREN2] = ACTIONS(3082), + [sym_comment] = ACTIONS(3), }, [1067] = { - [anon_sym_LF] = ACTIONS(2903), - [sym_comment] = ACTIONS(147), + [sym_parenthesized_expression] = STATE(76), + [anon_sym_LPAREN2] = ACTIONS(3082), + [sym_comment] = ACTIONS(3), }, [1068] = { - [aux_sym_type_definition_repeat2] = STATE(364), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_SEMI] = ACTIONS(2905), + [anon_sym_LF] = ACTIONS(3084), + [sym_preproc_arg] = ACTIONS(3086), + [sym_comment] = ACTIONS(2827), }, [1069] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_COMMA] = ACTIONS(293), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_RPAREN] = ACTIONS(2907), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [sym_parenthesized_expression] = STATE(169), + [anon_sym_LPAREN2] = ACTIONS(3088), + [sym_comment] = ACTIONS(3), }, [1070] = { - [anon_sym_RPAREN] = ACTIONS(2907), - [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(3090), + [sym_preproc_arg] = ACTIONS(3090), + [sym_comment] = ACTIONS(2827), }, [1071] = { - [sym_char_literal] = STATE(1076), - [sym__expression] = STATE(1076), - [sym_comma_expression] = STATE(1077), - [sym_binary_expression] = STATE(1076), - [sym_update_expression] = STATE(1076), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1076), - [sym_sizeof_expression] = STATE(1076), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1076), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_cast_expression] = STATE(1076), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1076), - [sym_true] = ACTIONS(2909), - [sym_null] = ACTIONS(2909), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(2911), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2909), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_RPAREN] = ACTIONS(2913), - [anon_sym_sizeof] = ACTIONS(33), + [sym_parenthesized_expression] = STATE(213), + [anon_sym_LPAREN2] = ACTIONS(3092), + [sym_comment] = ACTIONS(3), }, [1072] = { - [sym_char_literal] = STATE(1078), - [sym__expression] = STATE(1078), - [sym_comma_expression] = STATE(1079), - [sym_binary_expression] = STATE(1078), - [sym_update_expression] = STATE(1078), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1078), - [sym_sizeof_expression] = STATE(1078), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1078), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(1078), - [sym_assignment_expression] = STATE(1078), - [sym_cast_expression] = STATE(1078), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1078), - [sym_true] = ACTIONS(2915), - [sym_null] = ACTIONS(2915), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(2917), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2915), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_RPAREN] = ACTIONS(2919), - [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_COMMA] = ACTIONS(3041), + [anon_sym_RPAREN] = ACTIONS(3041), + [sym_comment] = ACTIONS(3), }, [1073] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_COMMA] = ACTIONS(293), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_RPAREN] = ACTIONS(2921), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [sym_parenthesized_expression] = STATE(91), + [anon_sym_LPAREN2] = ACTIONS(3082), + [sym_comment] = ACTIONS(3), }, [1074] = { - [anon_sym_RPAREN] = ACTIONS(2921), + [sym_parenthesized_expression] = STATE(1062), + [anon_sym_LPAREN2] = ACTIONS(3088), [sym_comment] = ACTIONS(3), }, [1075] = { - [sym_char_literal] = STATE(1081), - [sym__expression] = STATE(1081), - [sym_comma_expression] = STATE(1082), - [sym_binary_expression] = STATE(1081), - [sym_update_expression] = STATE(1081), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1081), - [sym_sizeof_expression] = STATE(1081), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1081), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(1081), - [sym_assignment_expression] = STATE(1081), - [sym_cast_expression] = STATE(1081), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1081), - [sym_true] = ACTIONS(2923), - [sym_null] = ACTIONS(2923), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(2925), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2923), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_RPAREN] = ACTIONS(2927), - [anon_sym_sizeof] = ACTIONS(33), + [sym_parenthesized_expression] = STATE(92), + [anon_sym_LPAREN2] = ACTIONS(3082), + [sym_comment] = ACTIONS(3), }, [1076] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_COMMA] = ACTIONS(293), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_RPAREN] = ACTIONS(2929), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [anon_sym_LF] = ACTIONS(3094), + [sym_preproc_arg] = ACTIONS(3096), + [sym_comment] = ACTIONS(2827), }, [1077] = { - [anon_sym_RPAREN] = ACTIONS(2929), + [anon_sym_COMMA] = ACTIONS(2968), + [anon_sym_RPAREN] = ACTIONS(2968), [sym_comment] = ACTIONS(3), }, [1078] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_COMMA] = ACTIONS(293), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_RPAREN] = ACTIONS(2931), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [sym_parenthesized_expression] = STATE(186), + [anon_sym_LPAREN2] = ACTIONS(3082), + [sym_comment] = ACTIONS(3), }, [1079] = { - [anon_sym_RPAREN] = ACTIONS(2931), + [sym_parenthesized_expression] = STATE(185), + [anon_sym_LPAREN2] = ACTIONS(3082), [sym_comment] = ACTIONS(3), }, [1080] = { - [sym_char_literal] = STATE(1083), - [sym__expression] = STATE(1083), - [sym_comma_expression] = STATE(1084), - [sym_binary_expression] = STATE(1083), - [sym_update_expression] = STATE(1083), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1083), - [sym_sizeof_expression] = STATE(1083), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1083), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(1083), - [sym_assignment_expression] = STATE(1083), - [sym_cast_expression] = STATE(1083), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1083), - [sym_true] = ACTIONS(2933), - [sym_null] = ACTIONS(2933), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(2935), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2933), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_RPAREN] = ACTIONS(2937), - [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_COMMA] = ACTIONS(3015), + [anon_sym_RBRACE] = ACTIONS(3015), + [sym_comment] = ACTIONS(3), }, [1081] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_COMMA] = ACTIONS(293), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_RPAREN] = ACTIONS(2939), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [sym_switch_body] = STATE(285), + [anon_sym_LBRACE] = ACTIONS(3098), + [sym_comment] = ACTIONS(3), }, [1082] = { - [anon_sym_RPAREN] = ACTIONS(2939), - [sym_comment] = ACTIONS(3), + [aux_sym_char_literal_token1] = ACTIONS(3100), + [sym_escape_sequence] = ACTIONS(3102), + [sym_comment] = ACTIONS(2827), }, [1083] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_COMMA] = ACTIONS(293), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_RPAREN] = ACTIONS(2941), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [anon_sym_LF] = ACTIONS(3104), + [sym_preproc_arg] = ACTIONS(3106), + [sym_comment] = ACTIONS(2827), }, [1084] = { - [anon_sym_RPAREN] = ACTIONS(2941), + [sym_parenthesized_expression] = STATE(1108), + [anon_sym_LPAREN2] = ACTIONS(3088), [sym_comment] = ACTIONS(3), }, [1085] = { - [sym_do_statement] = STATE(1095), - [sym_preproc_function_def] = STATE(1095), - [sym__expression] = STATE(867), - [sym_binary_expression] = STATE(867), - [sym_declaration] = STATE(1095), - [sym_call_expression] = STATE(36), - [sym__type_specifier] = STATE(869), - [sym_break_statement] = STATE(1095), - [sym_assignment_expression] = STATE(867), - [sym_type_definition] = STATE(1095), - [sym_compound_literal_expression] = STATE(867), - [sym_char_literal] = STATE(867), - [sym__empty_declaration] = STATE(1095), - [sym_sized_type_specifier] = STATE(869), - [sym_preproc_include] = STATE(1095), - [sym_continue_statement] = STATE(1095), - [sym_preproc_ifdef] = STATE(1095), - [sym_pointer_expression] = STATE(36), - [sym_sizeof_expression] = STATE(867), - [sym_attribute_specifier] = STATE(43), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(867), - [sym_macro_type_specifier] = STATE(869), - [sym_storage_class_specifier] = STATE(43), - [sym_struct_specifier] = STATE(869), - [sym_if_statement] = STATE(1095), - [sym_preproc_def] = STATE(1095), - [sym_for_statement] = STATE(1095), - [sym_comma_expression] = STATE(868), - [sym_function_definition] = STATE(1095), - [sym_update_expression] = STATE(867), - [sym_type_qualifier] = STATE(43), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_union_specifier] = STATE(869), - [sym_switch_statement] = STATE(1095), - [sym_return_statement] = STATE(1095), - [sym_preproc_call] = STATE(1095), - [sym_conditional_expression] = STATE(867), - [sym_cast_expression] = STATE(867), - [sym__declaration_specifiers] = STATE(1151), - [sym_field_expression] = STATE(36), - [sym_enum_specifier] = STATE(869), - [sym_labeled_statement] = STATE(1095), - [sym_while_statement] = STATE(1095), - [sym_preproc_if] = STATE(1095), - [sym_goto_statement] = STATE(1095), - [sym_unary_expression] = STATE(867), - [sym_linkage_specification] = STATE(1095), - [sym_subscript_expression] = STATE(36), - [sym_string_literal] = STATE(41), - [aux_sym_translation_unit_repeat1] = STATE(1095), - [sym_compound_statement] = STATE(1095), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_expression_statement] = STATE(1095), - [sym_true] = ACTIONS(81), - [anon_sym_restrict] = ACTIONS(7), - [sym_null] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_const] = ACTIONS(7), - [anon_sym_typedef] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(7), - [sym_identifier] = ACTIONS(87), - [aux_sym_preproc_ifdef_token1] = ACTIONS(89), - [sym_number_literal] = ACTIONS(91), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_extern] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_struct] = ACTIONS(25), - [anon_sym_signed] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(27), - [anon_sym_while] = ACTIONS(95), - [aux_sym_preproc_ifdef_token2] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_sizeof] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(97), - [anon_sym_union] = ACTIONS(37), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_short] = ACTIONS(27), - [anon_sym_do] = ACTIONS(99), - [sym_preproc_directive] = ACTIONS(101), - [anon_sym_AMP] = ACTIONS(43), - [aux_sym_preproc_if_token1] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(2943), - [sym_primitive_type] = ACTIONS(107), - [anon_sym_for] = ACTIONS(109), - [anon_sym_break] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(47), - [aux_sym_preproc_include_token1] = ACTIONS(113), - [anon_sym_DASH] = ACTIONS(61), - [anon_sym_static] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_register] = ACTIONS(63), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(115), - [anon_sym_switch] = ACTIONS(117), - [anon_sym_enum] = ACTIONS(69), - [sym_false] = ACTIONS(81), - [anon_sym_return] = ACTIONS(119), - [anon_sym_continue] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(123), - [aux_sym_preproc_def_token1] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_auto] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), + [anon_sym_LF] = ACTIONS(3108), + [sym_preproc_arg] = ACTIONS(3108), + [sym_comment] = ACTIONS(2827), }, [1086] = { - [sym_comment] = ACTIONS(147), - [anon_sym_LF] = ACTIONS(2945), - [sym_preproc_arg] = ACTIONS(2947), + [sym_identifier] = ACTIONS(3110), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3110), + [sym_comment] = ACTIONS(3), }, [1087] = { - [aux_sym_string_literal_repeat1] = STATE(1101), - [sym_comment] = ACTIONS(147), - [sym_escape_sequence] = ACTIONS(2949), - [aux_sym_string_literal_token1] = ACTIONS(2949), - [anon_sym_DQUOTE] = ACTIONS(2951), + [anon_sym_COMMA] = ACTIONS(2332), + [anon_sym_SEMI] = ACTIONS(2332), + [sym_comment] = ACTIONS(3), }, [1088] = { + [anon_sym_COMMA] = ACTIONS(2777), + [anon_sym_SEMI] = ACTIONS(2777), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2953), }, [1089] = { - [sym_parenthesized_expression] = STATE(793), + [sym_parenthesized_expression] = STATE(1059), + [anon_sym_LPAREN2] = ACTIONS(3088), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(233), }, [1090] = { - [sym_char_literal] = STATE(1103), - [sym__expression] = STATE(1103), - [sym_binary_expression] = STATE(1103), - [sym_update_expression] = STATE(1103), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1103), - [sym_sizeof_expression] = STATE(1103), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1103), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1103), - [sym_cast_expression] = STATE(1103), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1103), - [sym_true] = ACTIONS(2955), - [sym_null] = ACTIONS(2955), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(2957), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2955), - [anon_sym_SEMI] = ACTIONS(2959), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_parenthesized_expression] = STATE(1058), + [anon_sym_LPAREN2] = ACTIONS(3088), + [sym_comment] = ACTIONS(3), }, [1091] = { - [sym_parenthesized_expression] = STATE(795), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(233), + [anon_sym_LF] = ACTIONS(3112), + [sym_preproc_arg] = ACTIONS(3114), + [sym_comment] = ACTIONS(2827), }, [1092] = { - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2961), + [anon_sym_LF] = ACTIONS(3116), + [sym_preproc_arg] = ACTIONS(3118), + [sym_comment] = ACTIONS(2827), }, [1093] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_COMMA] = ACTIONS(293), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_SEMI] = ACTIONS(2963), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [anon_sym_LF] = ACTIONS(3120), + [sym_preproc_arg] = ACTIONS(3122), + [sym_comment] = ACTIONS(2827), }, [1094] = { + [sym_parenthesized_expression] = STATE(145), + [anon_sym_LPAREN2] = ACTIONS(3082), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2963), }, [1095] = { - [sym_do_statement] = STATE(533), - [sym_preproc_function_def] = STATE(533), - [sym__expression] = STATE(867), - [sym_binary_expression] = STATE(867), - [sym_declaration] = STATE(533), - [sym_call_expression] = STATE(36), - [sym__type_specifier] = STATE(869), - [sym_break_statement] = STATE(533), - [sym_assignment_expression] = STATE(867), - [sym_type_definition] = STATE(533), - [sym_compound_literal_expression] = STATE(867), - [sym_char_literal] = STATE(867), - [sym__empty_declaration] = STATE(533), - [sym_sized_type_specifier] = STATE(869), - [sym_preproc_include] = STATE(533), - [sym_continue_statement] = STATE(533), - [sym_preproc_ifdef] = STATE(533), - [sym_pointer_expression] = STATE(36), - [sym_sizeof_expression] = STATE(867), - [sym_attribute_specifier] = STATE(43), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(867), - [sym_macro_type_specifier] = STATE(869), - [sym_storage_class_specifier] = STATE(43), - [sym_struct_specifier] = STATE(869), - [sym_if_statement] = STATE(533), - [sym_preproc_def] = STATE(533), - [sym_for_statement] = STATE(533), - [sym_comma_expression] = STATE(868), - [sym_function_definition] = STATE(533), - [sym_update_expression] = STATE(867), - [sym_type_qualifier] = STATE(43), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_union_specifier] = STATE(869), - [sym_switch_statement] = STATE(533), - [sym_return_statement] = STATE(533), - [sym_preproc_call] = STATE(533), - [sym_conditional_expression] = STATE(867), - [sym_cast_expression] = STATE(867), - [sym__declaration_specifiers] = STATE(1151), - [sym_field_expression] = STATE(36), - [sym_enum_specifier] = STATE(869), - [sym_labeled_statement] = STATE(533), - [sym_while_statement] = STATE(533), - [sym_preproc_if] = STATE(533), - [sym_goto_statement] = STATE(533), - [sym_unary_expression] = STATE(867), - [sym_linkage_specification] = STATE(533), - [sym_subscript_expression] = STATE(36), - [sym_string_literal] = STATE(41), - [aux_sym_translation_unit_repeat1] = STATE(533), - [sym_compound_statement] = STATE(533), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_expression_statement] = STATE(533), - [sym_true] = ACTIONS(81), - [anon_sym_restrict] = ACTIONS(7), - [sym_null] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_const] = ACTIONS(7), - [anon_sym_typedef] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(7), - [sym_identifier] = ACTIONS(87), - [aux_sym_preproc_ifdef_token1] = ACTIONS(89), - [sym_number_literal] = ACTIONS(91), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_extern] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_struct] = ACTIONS(25), - [anon_sym_signed] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(27), - [anon_sym_while] = ACTIONS(95), - [aux_sym_preproc_ifdef_token2] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_sizeof] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(97), - [anon_sym_union] = ACTIONS(37), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_short] = ACTIONS(27), - [anon_sym_do] = ACTIONS(99), - [sym_preproc_directive] = ACTIONS(101), - [anon_sym_AMP] = ACTIONS(43), - [aux_sym_preproc_if_token1] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(2965), - [sym_primitive_type] = ACTIONS(107), - [anon_sym_for] = ACTIONS(109), - [anon_sym_break] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(47), - [aux_sym_preproc_include_token1] = ACTIONS(113), - [anon_sym_DASH] = ACTIONS(61), - [anon_sym_static] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_register] = ACTIONS(63), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(115), - [anon_sym_switch] = ACTIONS(117), - [anon_sym_enum] = ACTIONS(69), - [sym_false] = ACTIONS(81), - [anon_sym_return] = ACTIONS(119), - [anon_sym_continue] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(123), - [aux_sym_preproc_def_token1] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_auto] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), + [sym_parenthesized_expression] = STATE(131), + [anon_sym_LPAREN2] = ACTIONS(3082), + [sym_comment] = ACTIONS(3), }, [1096] = { - [anon_sym_GT_GT] = ACTIONS(197), - [anon_sym_PERCENT_EQ] = ACTIONS(199), - [anon_sym_DASH_EQ] = ACTIONS(199), - [anon_sym_PIPE] = ACTIONS(197), - [anon_sym_EQ_EQ] = ACTIONS(203), - [anon_sym_SLASH] = ACTIONS(197), - [anon_sym_DASH_GT] = ACTIONS(203), - [anon_sym_LT_LT] = ACTIONS(197), - [anon_sym_DASH_DASH] = ACTIONS(203), - [anon_sym_PLUS_EQ] = ACTIONS(199), - [anon_sym_LT_LT_EQ] = ACTIONS(199), - [anon_sym_QMARK] = ACTIONS(203), - [anon_sym_BANG_EQ] = ACTIONS(203), - [anon_sym_CARET_EQ] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(203), - [anon_sym_PLUS_PLUS] = ACTIONS(203), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT_EQ] = ACTIONS(199), - [anon_sym_GT] = ACTIONS(197), - [anon_sym_PIPE_EQ] = ACTIONS(199), - [anon_sym_AMP_EQ] = ACTIONS(199), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_AMP] = ACTIONS(197), - [anon_sym_EQ] = ACTIONS(209), - [anon_sym_LPAREN2] = ACTIONS(203), - [anon_sym_GT_EQ] = ACTIONS(203), - [anon_sym_COLON] = ACTIONS(2809), - [anon_sym_STAR_EQ] = ACTIONS(199), - [anon_sym_PIPE_PIPE] = ACTIONS(203), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_LT_EQ] = ACTIONS(203), - [anon_sym_STAR] = ACTIONS(197), - [anon_sym_SLASH_EQ] = ACTIONS(199), - [anon_sym_AMP_AMP] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(203), - [anon_sym_CARET] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_DOT] = ACTIONS(203), - [anon_sym_LT] = ACTIONS(197), - [anon_sym_LBRACK] = ACTIONS(203), + [sym_parenthesized_expression] = STATE(130), + [anon_sym_LPAREN2] = ACTIONS(3082), + [sym_comment] = ACTIONS(3), }, [1097] = { + [sym_parenthesized_expression] = STATE(128), + [anon_sym_LPAREN2] = ACTIONS(3082), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2967), }, [1098] = { - [anon_sym_LF] = ACTIONS(2969), - [sym_comment] = ACTIONS(147), + [anon_sym_LF] = ACTIONS(3124), + [sym_preproc_arg] = ACTIONS(3124), + [sym_comment] = ACTIONS(2827), }, [1099] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_COMMA] = ACTIONS(293), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_RPAREN] = ACTIONS(2971), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [sym_parenthesized_expression] = STATE(319), + [anon_sym_LPAREN2] = ACTIONS(3126), + [sym_comment] = ACTIONS(3), }, [1100] = { - [anon_sym_RPAREN] = ACTIONS(2971), + [sym_parenthesized_expression] = STATE(1081), + [anon_sym_LPAREN2] = ACTIONS(3088), [sym_comment] = ACTIONS(3), }, [1101] = { - [aux_sym_string_literal_repeat1] = STATE(157), - [sym_comment] = ACTIONS(147), - [sym_escape_sequence] = ACTIONS(469), - [aux_sym_string_literal_token1] = ACTIONS(469), - [anon_sym_DQUOTE] = ACTIONS(2973), + [anon_sym_RPAREN] = ACTIONS(2212), + [anon_sym_SEMI] = ACTIONS(2212), + [sym_comment] = ACTIONS(3), }, [1102] = { - [sym_switch_body] = STATE(805), - [anon_sym_LBRACE] = ACTIONS(2975), - [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(3128), + [sym_preproc_arg] = ACTIONS(3130), + [sym_comment] = ACTIONS(2827), }, [1103] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_SEMI] = ACTIONS(2977), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [sym_argument_list] = STATE(1139), + [anon_sym_LPAREN2] = ACTIONS(1405), + [sym_comment] = ACTIONS(3), }, [1104] = { - [sym_preproc_params] = STATE(1108), - [sym_preproc_arg] = ACTIONS(2979), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_LF] = ACTIONS(2981), - [sym_comment] = ACTIONS(147), + [sym_parenthesized_expression] = STATE(194), + [anon_sym_LPAREN2] = ACTIONS(3082), + [sym_comment] = ACTIONS(3), }, [1105] = { - [sym_parenthesized_expression] = STATE(742), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(2983), + [anon_sym_LF] = ACTIONS(3132), + [sym_preproc_arg] = ACTIONS(3134), + [sym_comment] = ACTIONS(2827), }, [1106] = { - [sym_if_statement] = STATE(1111), - [sym_do_statement] = STATE(1111), - [sym_for_statement] = STATE(1111), - [sym__expression] = STATE(1093), - [sym_comma_expression] = STATE(1094), - [sym_binary_expression] = STATE(1093), - [sym_update_expression] = STATE(1093), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(1111), - [sym_return_statement] = STATE(1111), - [sym_break_statement] = STATE(1111), - [sym_conditional_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_cast_expression] = STATE(1093), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1093), - [sym_char_literal] = STATE(1093), - [sym_labeled_statement] = STATE(1111), - [sym_case_statement] = STATE(1111), - [sym_while_statement] = STATE(1111), - [sym_continue_statement] = STATE(1111), - [sym_goto_statement] = STATE(1111), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1093), - [sym_sizeof_expression] = STATE(1093), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1093), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(1111), - [aux_sym_switch_body_repeat1] = STATE(1111), - [sym_expression_statement] = STATE(1111), - [anon_sym_LBRACE] = ACTIONS(994), - [anon_sym_case] = ACTIONS(996), - [sym_true] = ACTIONS(998), - [sym_null] = ACTIONS(998), - [anon_sym_do] = ACTIONS(1000), - [anon_sym_goto] = ACTIONS(1002), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(2985), - [anon_sym_default] = ACTIONS(1006), - [sym_identifier] = ACTIONS(1008), - [anon_sym_for] = ACTIONS(1010), - [anon_sym_break] = ACTIONS(1012), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(1014), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(1016), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(1018), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(998), - [anon_sym_return] = ACTIONS(1020), - [anon_sym_while] = ACTIONS(1022), - [anon_sym_continue] = ACTIONS(1024), - [anon_sym_SEMI] = ACTIONS(1026), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_LF] = ACTIONS(3136), + [sym_preproc_arg] = ACTIONS(3138), + [sym_comment] = ACTIONS(2827), }, [1107] = { - [anon_sym_LF] = ACTIONS(2987), - [sym_comment] = ACTIONS(147), + [sym_parenthesized_expression] = STATE(193), + [anon_sym_LPAREN2] = ACTIONS(3082), + [sym_comment] = ACTIONS(3), }, [1108] = { - [sym_comment] = ACTIONS(147), - [anon_sym_LF] = ACTIONS(2989), - [sym_preproc_arg] = ACTIONS(2991), + [sym_switch_body] = STATE(633), + [anon_sym_LBRACE] = ACTIONS(3140), + [sym_comment] = ACTIONS(3), }, [1109] = { - [sym_char_literal] = STATE(1113), - [sym__expression] = STATE(1113), - [sym_comma_expression] = STATE(1114), - [sym_binary_expression] = STATE(1113), - [sym_update_expression] = STATE(1113), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1113), - [sym_sizeof_expression] = STATE(1113), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1113), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(1113), - [sym_assignment_expression] = STATE(1113), - [sym_cast_expression] = STATE(1113), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1113), - [sym_true] = ACTIONS(2993), - [sym_null] = ACTIONS(2993), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(2995), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2993), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_RPAREN] = ACTIONS(2997), - [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_LF] = ACTIONS(3142), + [sym_preproc_arg] = ACTIONS(3144), + [sym_comment] = ACTIONS(2827), }, [1110] = { - [sym_char_literal] = STATE(1117), - [sym__expression] = STATE(1117), - [sym_comma_expression] = STATE(1118), - [sym_binary_expression] = STATE(1117), - [sym_update_expression] = STATE(1117), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1117), - [sym_sizeof_expression] = STATE(1117), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1117), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(1117), - [sym_assignment_expression] = STATE(1117), - [sym_cast_expression] = STATE(1117), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1117), - [sym_true] = ACTIONS(2999), - [sym_null] = ACTIONS(2999), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(3001), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(2999), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_RPAREN] = ACTIONS(3003), - [anon_sym_sizeof] = ACTIONS(33), + [sym_parenthesized_expression] = STATE(626), + [anon_sym_LPAREN2] = ACTIONS(3082), + [sym_comment] = ACTIONS(3), }, [1111] = { - [sym_if_statement] = STATE(383), - [sym_do_statement] = STATE(383), - [sym_for_statement] = STATE(383), - [sym__expression] = STATE(1093), - [sym_comma_expression] = STATE(1094), - [sym_binary_expression] = STATE(1093), - [sym_update_expression] = STATE(1093), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(383), - [sym_return_statement] = STATE(383), - [sym_break_statement] = STATE(383), - [sym_conditional_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_cast_expression] = STATE(1093), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1093), - [sym_char_literal] = STATE(1093), - [sym_labeled_statement] = STATE(383), - [sym_case_statement] = STATE(383), - [sym_while_statement] = STATE(383), - [sym_continue_statement] = STATE(383), - [sym_goto_statement] = STATE(383), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1093), - [sym_sizeof_expression] = STATE(1093), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1093), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(383), - [aux_sym_switch_body_repeat1] = STATE(383), - [sym_expression_statement] = STATE(383), - [anon_sym_LBRACE] = ACTIONS(994), - [anon_sym_case] = ACTIONS(996), - [sym_true] = ACTIONS(998), - [sym_null] = ACTIONS(998), - [anon_sym_do] = ACTIONS(1000), - [anon_sym_goto] = ACTIONS(1002), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(3005), - [anon_sym_default] = ACTIONS(1006), - [sym_identifier] = ACTIONS(1008), - [anon_sym_for] = ACTIONS(1010), - [anon_sym_break] = ACTIONS(1012), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(1014), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(1016), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(1018), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(998), - [anon_sym_return] = ACTIONS(1020), - [anon_sym_while] = ACTIONS(1022), - [anon_sym_continue] = ACTIONS(1024), - [anon_sym_SEMI] = ACTIONS(1026), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_LF] = ACTIONS(3146), + [sym_preproc_arg] = ACTIONS(3148), + [sym_comment] = ACTIONS(2827), }, [1112] = { - [anon_sym_LF] = ACTIONS(3007), - [sym_comment] = ACTIONS(147), + [sym_parenthesized_expression] = STATE(169), + [anon_sym_LPAREN2] = ACTIONS(3150), + [sym_comment] = ACTIONS(3), }, [1113] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_COMMA] = ACTIONS(293), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_RPAREN] = ACTIONS(3009), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [sym_preproc_arg] = ACTIONS(3152), + [sym_comment] = ACTIONS(2827), }, [1114] = { - [anon_sym_RPAREN] = ACTIONS(3009), + [anon_sym_RPAREN] = ACTIONS(2296), [sym_comment] = ACTIONS(3), }, [1115] = { - [sym_char_literal] = STATE(1120), - [sym__expression] = STATE(1120), - [sym_comma_expression] = STATE(1121), - [sym_binary_expression] = STATE(1120), - [sym_update_expression] = STATE(1120), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1120), - [sym_sizeof_expression] = STATE(1120), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1120), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(1120), - [sym_assignment_expression] = STATE(1120), - [sym_cast_expression] = STATE(1120), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1120), - [sym_true] = ACTIONS(3011), - [sym_null] = ACTIONS(3011), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(3013), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(3011), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_RPAREN] = ACTIONS(3015), - [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_RPAREN] = ACTIONS(2306), + [sym_comment] = ACTIONS(3), }, [1116] = { - [sym_char_literal] = STATE(1122), - [sym__expression] = STATE(1122), - [sym_comma_expression] = STATE(1123), - [sym_binary_expression] = STATE(1122), - [sym_update_expression] = STATE(1122), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1122), - [sym_sizeof_expression] = STATE(1122), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1122), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(1122), - [sym_assignment_expression] = STATE(1122), - [sym_cast_expression] = STATE(1122), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1122), - [sym_true] = ACTIONS(3017), - [sym_null] = ACTIONS(3017), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(3019), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(3017), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_RPAREN] = ACTIONS(3021), - [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(3154), + [sym_comment] = ACTIONS(3), }, [1117] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_COMMA] = ACTIONS(293), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_RPAREN] = ACTIONS(3023), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [anon_sym_SEMI] = ACTIONS(3156), + [sym_comment] = ACTIONS(3), }, [1118] = { - [anon_sym_RPAREN] = ACTIONS(3023), + [anon_sym_RPAREN] = ACTIONS(2248), [sym_comment] = ACTIONS(3), }, [1119] = { - [sym_char_literal] = STATE(1125), - [sym__expression] = STATE(1125), - [sym_comma_expression] = STATE(1126), - [sym_binary_expression] = STATE(1125), - [sym_update_expression] = STATE(1125), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1125), - [sym_sizeof_expression] = STATE(1125), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1125), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(1125), - [sym_assignment_expression] = STATE(1125), - [sym_cast_expression] = STATE(1125), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1125), - [sym_true] = ACTIONS(3025), - [sym_null] = ACTIONS(3025), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(3027), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(3025), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_RPAREN] = ACTIONS(3029), - [anon_sym_sizeof] = ACTIONS(33), + [aux_sym_preproc_if_token2] = ACTIONS(3158), + [sym_comment] = ACTIONS(3), }, [1120] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_COMMA] = ACTIONS(293), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_RPAREN] = ACTIONS(3031), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [anon_sym_SEMI] = ACTIONS(2310), + [sym_comment] = ACTIONS(3), }, [1121] = { - [anon_sym_RPAREN] = ACTIONS(3031), - [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(3160), + [sym_comment] = ACTIONS(2827), }, [1122] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_COMMA] = ACTIONS(293), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_RPAREN] = ACTIONS(3033), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [anon_sym_RPAREN] = ACTIONS(2312), + [sym_comment] = ACTIONS(3), }, [1123] = { - [anon_sym_RPAREN] = ACTIONS(3033), + [anon_sym_SEMI] = ACTIONS(2326), [sym_comment] = ACTIONS(3), }, [1124] = { - [sym_char_literal] = STATE(1127), - [sym__expression] = STATE(1127), - [sym_comma_expression] = STATE(1128), - [sym_binary_expression] = STATE(1127), - [sym_update_expression] = STATE(1127), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1127), - [sym_sizeof_expression] = STATE(1127), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1127), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(1127), - [sym_assignment_expression] = STATE(1127), - [sym_cast_expression] = STATE(1127), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1127), - [sym_true] = ACTIONS(3035), - [sym_null] = ACTIONS(3035), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(3035), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_RPAREN] = ACTIONS(3039), - [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(2258), + [sym_comment] = ACTIONS(3), }, [1125] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_COMMA] = ACTIONS(293), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_RPAREN] = ACTIONS(3041), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [sym_identifier] = ACTIONS(3162), + [sym_comment] = ACTIONS(3), }, [1126] = { - [anon_sym_RPAREN] = ACTIONS(3041), + [anon_sym_SEMI] = ACTIONS(2324), [sym_comment] = ACTIONS(3), }, [1127] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_COMMA] = ACTIONS(293), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_RPAREN] = ACTIONS(3043), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [anon_sym_SEMI] = ACTIONS(3164), + [sym_comment] = ACTIONS(3), }, [1128] = { - [anon_sym_RPAREN] = ACTIONS(3043), + [anon_sym_SEMI] = ACTIONS(3166), [sym_comment] = ACTIONS(3), }, [1129] = { - [sym_comment] = ACTIONS(147), - [anon_sym_LF] = ACTIONS(3045), - [sym_preproc_arg] = ACTIONS(3047), + [anon_sym_LF] = ACTIONS(3168), + [sym_comment] = ACTIONS(2827), }, [1130] = { - [anon_sym_LF] = ACTIONS(3049), - [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(2252), + [sym_comment] = ACTIONS(3), }, [1131] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_COMMA] = ACTIONS(293), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_RPAREN] = ACTIONS(3051), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [anon_sym_LF] = ACTIONS(3170), + [sym_comment] = ACTIONS(2827), }, [1132] = { - [anon_sym_RPAREN] = ACTIONS(3051), - [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(3172), + [sym_comment] = ACTIONS(2827), }, [1133] = { - [sym_preproc_params] = STATE(1136), - [sym_preproc_arg] = ACTIONS(3053), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_LF] = ACTIONS(3055), - [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(3174), + [sym_comment] = ACTIONS(3), }, [1134] = { - [sym_parenthesized_expression] = STATE(809), + [aux_sym_preproc_if_token2] = ACTIONS(3176), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(233), }, [1135] = { - [anon_sym_LF] = ACTIONS(3057), - [sym_comment] = ACTIONS(147), + [anon_sym_RPAREN] = ACTIONS(2336), + [sym_comment] = ACTIONS(3), }, [1136] = { - [sym_comment] = ACTIONS(147), - [anon_sym_LF] = ACTIONS(3059), - [sym_preproc_arg] = ACTIONS(3061), + [aux_sym_preproc_if_token2] = ACTIONS(3178), + [sym_comment] = ACTIONS(3), }, [1137] = { - [anon_sym_LF] = ACTIONS(3063), - [sym_comment] = ACTIONS(147), + [sym_preproc_arg] = ACTIONS(3180), + [sym_comment] = ACTIONS(2827), }, [1138] = { - [sym_comment] = ACTIONS(147), - [anon_sym_LF] = ACTIONS(3065), - [sym_preproc_arg] = ACTIONS(3067), + [anon_sym_RPAREN] = ACTIONS(2216), + [sym_comment] = ACTIONS(3), }, [1139] = { - [anon_sym_LF] = ACTIONS(3069), - [sym_comment] = ACTIONS(147), + [anon_sym_RPAREN] = ACTIONS(3182), + [sym_comment] = ACTIONS(3), }, [1140] = { - [sym_preproc_params] = STATE(1142), - [sym_preproc_arg] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_LF] = ACTIONS(3073), - [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(3184), + [sym_comment] = ACTIONS(3), }, [1141] = { - [anon_sym_LF] = ACTIONS(3075), - [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(3186), + [sym_comment] = ACTIONS(3), }, [1142] = { - [sym_comment] = ACTIONS(147), - [anon_sym_LF] = ACTIONS(3077), - [sym_preproc_arg] = ACTIONS(3079), + [anon_sym_RPAREN] = ACTIONS(2340), + [sym_comment] = ACTIONS(3), }, [1143] = { - [anon_sym_LF] = ACTIONS(3081), - [sym_comment] = ACTIONS(147), + [anon_sym_RBRACE] = ACTIONS(3002), + [sym_comment] = ACTIONS(3), }, [1144] = { - [sym_identifier] = ACTIONS(3083), + [anon_sym_RPAREN] = ACTIONS(2334), [sym_comment] = ACTIONS(3), }, [1145] = { - [sym_preproc_arg] = ACTIONS(3085), - [sym_comment] = ACTIONS(147), + [anon_sym_RPAREN] = ACTIONS(2328), + [sym_comment] = ACTIONS(3), }, [1146] = { - [sym__expression] = STATE(59), - [sym_comma_expression] = STATE(61), - [sym_binary_expression] = STATE(59), - [sym_update_expression] = STATE(59), - [sym_call_expression] = STATE(36), - [sym_type_qualifier] = STATE(60), - [sym__type_specifier] = STATE(62), - [aux_sym_sized_type_specifier_repeat1] = STATE(509), - [sym_union_specifier] = STATE(62), - [sym_conditional_expression] = STATE(59), - [sym_assignment_expression] = STATE(59), - [sym_cast_expression] = STATE(59), - [sym_type_descriptor] = STATE(875), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(59), - [sym_char_literal] = STATE(59), - [aux_sym_type_definition_repeat1] = STATE(60), - [sym_sized_type_specifier] = STATE(62), - [sym_enum_specifier] = STATE(62), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(59), - [sym_sizeof_expression] = STATE(59), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(59), - [sym_string_literal] = STATE(41), - [sym_macro_type_specifier] = STATE(62), - [sym_struct_specifier] = STATE(62), - [anon_sym_union] = ACTIONS(37), - [sym_true] = ACTIONS(175), - [anon_sym_restrict] = ACTIONS(7), - [sym_null] = ACTIONS(175), - [anon_sym_unsigned] = ACTIONS(177), - [anon_sym_short] = ACTIONS(177), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_const] = ACTIONS(7), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_DASH_DASH] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(7), - [sym_primitive_type] = ACTIONS(179), - [sym_identifier] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(183), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_struct] = ACTIONS(25), - [anon_sym_signed] = ACTIONS(177), - [anon_sym_enum] = ACTIONS(69), - [sym_false] = ACTIONS(175), - [anon_sym_long] = ACTIONS(177), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_preproc_arg] = ACTIONS(3188), + [sym_comment] = ACTIONS(2827), }, [1147] = { - [sym_identifier] = ACTIONS(3087), + [anon_sym_RPAREN] = ACTIONS(2338), [sym_comment] = ACTIONS(3), }, [1148] = { - [sym_string_literal] = STATE(880), - [anon_sym_union] = ACTIONS(229), - [anon_sym_unsigned] = ACTIONS(229), - [anon_sym_restrict] = ACTIONS(229), - [anon_sym_short] = ACTIONS(229), - [anon_sym_static] = ACTIONS(229), - [anon_sym_volatile] = ACTIONS(229), - [anon_sym_register] = ACTIONS(229), - [anon_sym_extern] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(229), - [anon_sym_signed] = ACTIONS(229), - [anon_sym_enum] = ACTIONS(229), - [anon_sym_long] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(229), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(229), - [sym_primitive_type] = ACTIONS(229), - [anon_sym_auto] = ACTIONS(229), - [sym_identifier] = ACTIONS(229), - [anon_sym_inline] = ACTIONS(229), - [anon_sym___attribute__] = ACTIONS(229), + [aux_sym_preproc_if_token2] = ACTIONS(3190), + [sym_comment] = ACTIONS(3), }, [1149] = { - [sym_parenthesized_expression] = STATE(882), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(237), + [anon_sym_LF] = ACTIONS(3192), + [sym_comment] = ACTIONS(2827), }, [1150] = { - [sym_identifier] = ACTIONS(3089), + [sym_identifier] = ACTIONS(3194), [sym_comment] = ACTIONS(3), }, [1151] = { - [sym_pointer_declarator] = STATE(886), - [sym_array_declarator] = STATE(886), - [sym__declarator] = STATE(886), - [sym_parenthesized_declarator] = STATE(886), - [sym_function_declarator] = STATE(886), - [sym_init_declarator] = STATE(887), - [anon_sym_STAR] = ACTIONS(326), - [anon_sym_LPAREN2] = ACTIONS(328), - [sym_identifier] = ACTIONS(3091), + [anon_sym_RPAREN] = ACTIONS(2342), [sym_comment] = ACTIONS(3), }, [1152] = { - [anon_sym_while] = ACTIONS(3093), + [anon_sym_RPAREN] = ACTIONS(2254), [sym_comment] = ACTIONS(3), }, [1153] = { - [sym_array_type_declarator] = STATE(892), - [sym_parenthesized_type_declarator] = STATE(892), - [sym_function_type_declarator] = STATE(892), - [sym__type_declarator] = STATE(892), - [sym_pointer_type_declarator] = STATE(892), - [anon_sym_STAR] = ACTIONS(453), - [anon_sym_LPAREN2] = ACTIONS(455), - [sym_identifier] = ACTIONS(457), - [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(3196), + [sym_comment] = ACTIONS(2827), }, [1154] = { - [sym_char_literal] = STATE(959), - [sym__expression] = STATE(959), - [sym_comma_expression] = STATE(960), - [sym_binary_expression] = STATE(959), - [sym_update_expression] = STATE(959), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(959), - [sym_sizeof_expression] = STATE(959), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(959), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(959), - [sym_assignment_expression] = STATE(959), - [sym_cast_expression] = STATE(959), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(959), - [sym_true] = ACTIONS(3095), - [sym_null] = ACTIONS(3095), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(3097), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(3095), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_LF] = ACTIONS(3198), + [sym_comment] = ACTIONS(2827), }, [1155] = { - [sym__expression] = STATE(59), - [sym_comma_expression] = STATE(61), - [sym_binary_expression] = STATE(59), - [sym_update_expression] = STATE(59), - [sym_call_expression] = STATE(36), - [sym_type_qualifier] = STATE(60), - [sym__type_specifier] = STATE(62), - [aux_sym_sized_type_specifier_repeat1] = STATE(509), - [sym_union_specifier] = STATE(62), - [sym_conditional_expression] = STATE(59), - [sym_assignment_expression] = STATE(59), - [sym_cast_expression] = STATE(59), - [sym_type_descriptor] = STATE(899), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(59), - [sym_char_literal] = STATE(59), - [aux_sym_type_definition_repeat1] = STATE(60), - [sym_sized_type_specifier] = STATE(62), - [sym_enum_specifier] = STATE(62), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(59), - [sym_sizeof_expression] = STATE(59), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(59), - [sym_string_literal] = STATE(41), - [sym_macro_type_specifier] = STATE(62), - [sym_struct_specifier] = STATE(62), - [anon_sym_union] = ACTIONS(37), - [sym_true] = ACTIONS(175), - [anon_sym_restrict] = ACTIONS(7), - [sym_null] = ACTIONS(175), - [anon_sym_unsigned] = ACTIONS(177), - [anon_sym_short] = ACTIONS(177), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_const] = ACTIONS(7), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_DASH_DASH] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(7), - [sym_primitive_type] = ACTIONS(179), - [sym_identifier] = ACTIONS(181), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(183), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_struct] = ACTIONS(25), - [anon_sym_signed] = ACTIONS(177), - [anon_sym_enum] = ACTIONS(69), - [sym_false] = ACTIONS(175), - [anon_sym_long] = ACTIONS(177), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [aux_sym_preproc_if_token2] = ACTIONS(3200), + [sym_comment] = ACTIONS(3), }, [1156] = { - [sym_char_literal] = STATE(900), - [sym__expression] = STATE(900), - [sym_binary_expression] = STATE(900), - [sym_update_expression] = STATE(900), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(900), - [sym_sizeof_expression] = STATE(900), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(900), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(900), - [sym_assignment_expression] = STATE(900), - [sym_cast_expression] = STATE(900), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(900), - [sym_true] = ACTIONS(3099), - [sym_null] = ACTIONS(3099), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(3101), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(3099), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_LF] = ACTIONS(3202), + [sym_comment] = ACTIONS(2827), }, [1157] = { - [sym_identifier] = ACTIONS(3103), - [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(3204), + [sym_comment] = ACTIONS(2827), }, [1158] = { - [sym_preproc_arg] = ACTIONS(3105), - [sym_comment] = ACTIONS(147), + [anon_sym_LF] = ACTIONS(3206), + [sym_comment] = ACTIONS(2827), }, [1159] = { - [sym_array_type_declarator] = STATE(908), - [sym_parenthesized_type_declarator] = STATE(908), - [sym_function_type_declarator] = STATE(908), - [sym__type_declarator] = STATE(908), - [sym_pointer_type_declarator] = STATE(908), - [anon_sym_STAR] = ACTIONS(453), - [anon_sym_LPAREN2] = ACTIONS(455), - [sym_identifier] = ACTIONS(457), + [sym_identifier] = ACTIONS(3208), [sym_comment] = ACTIONS(3), }, [1160] = { - [sym_char_literal] = STATE(1162), - [sym__expression] = STATE(1162), - [sym_binary_expression] = STATE(1162), - [sym_update_expression] = STATE(1162), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1162), - [sym_sizeof_expression] = STATE(1162), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1162), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(1162), - [sym_assignment_expression] = STATE(1162), - [sym_cast_expression] = STATE(1162), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1162), - [sym_true] = ACTIONS(3107), - [sym_null] = ACTIONS(3107), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(3109), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(3107), - [anon_sym_SEMI] = ACTIONS(3111), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_preproc_arg] = ACTIONS(3210), + [sym_comment] = ACTIONS(2827), }, [1161] = { - [sym_char_literal] = STATE(1164), - [sym__expression] = STATE(1164), - [sym_binary_expression] = STATE(1164), - [sym_update_expression] = STATE(1164), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1164), - [sym_sizeof_expression] = STATE(1164), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1164), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(1164), - [sym_assignment_expression] = STATE(1164), - [sym_cast_expression] = STATE(1164), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1164), - [sym_true] = ACTIONS(3113), - [sym_null] = ACTIONS(3113), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(3115), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(3113), - [anon_sym_SEMI] = ACTIONS(3117), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_identifier] = ACTIONS(3212), + [sym_comment] = ACTIONS(3), }, [1162] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_SEMI] = ACTIONS(3119), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [anon_sym_SEMI] = ACTIONS(2330), + [sym_comment] = ACTIONS(3), }, [1163] = { - [sym_char_literal] = STATE(1165), - [sym__expression] = STATE(1165), - [sym_binary_expression] = STATE(1165), - [sym_update_expression] = STATE(1165), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1165), - [sym_sizeof_expression] = STATE(1165), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1165), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(1165), - [sym_assignment_expression] = STATE(1165), - [sym_cast_expression] = STATE(1165), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1165), - [sym_true] = ACTIONS(3121), - [sym_null] = ACTIONS(3121), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(3123), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(3121), - [anon_sym_SEMI] = ACTIONS(3125), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_identifier] = ACTIONS(3214), + [sym_comment] = ACTIONS(3), }, [1164] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_SEMI] = ACTIONS(3127), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [anon_sym_RPAREN] = ACTIONS(3216), + [sym_comment] = ACTIONS(3), }, [1165] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_SEMI] = ACTIONS(3129), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [anon_sym_while] = ACTIONS(3218), + [sym_comment] = ACTIONS(3), }, [1166] = { - [sym_identifier] = ACTIONS(3131), + [anon_sym_RPAREN] = ACTIONS(3220), [sym_comment] = ACTIONS(3), }, [1167] = { - [sym_preproc_arg] = ACTIONS(3133), - [sym_comment] = ACTIONS(147), + [anon_sym_while] = ACTIONS(3222), + [sym_comment] = ACTIONS(3), }, [1168] = { - [sym_identifier] = ACTIONS(3135), + [ts_builtin_sym_end] = ACTIONS(3224), [sym_comment] = ACTIONS(3), }, [1169] = { - [sym_string_literal] = STATE(963), - [anon_sym_union] = ACTIONS(229), - [anon_sym_unsigned] = ACTIONS(229), - [anon_sym_restrict] = ACTIONS(229), - [anon_sym_short] = ACTIONS(229), - [anon_sym_static] = ACTIONS(229), - [anon_sym_volatile] = ACTIONS(229), - [anon_sym_register] = ACTIONS(229), - [anon_sym_extern] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(229), - [anon_sym_signed] = ACTIONS(229), - [anon_sym_enum] = ACTIONS(229), - [anon_sym_long] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(229), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(229), - [sym_primitive_type] = ACTIONS(229), - [anon_sym_auto] = ACTIONS(229), - [sym_identifier] = ACTIONS(229), - [anon_sym_inline] = ACTIONS(229), - [anon_sym___attribute__] = ACTIONS(229), + [anon_sym_RPAREN] = ACTIONS(2250), + [sym_comment] = ACTIONS(3), }, [1170] = { - [sym_parenthesized_expression] = STATE(964), + [anon_sym_SEMI] = ACTIONS(2811), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(237), }, [1171] = { - [sym_identifier] = ACTIONS(3137), - [sym_comment] = ACTIONS(3), + [sym_preproc_arg] = ACTIONS(3226), + [sym_comment] = ACTIONS(2827), }, [1172] = { - [sym_pointer_declarator] = STATE(967), - [sym_array_declarator] = STATE(967), - [sym__declarator] = STATE(967), - [sym_parenthesized_declarator] = STATE(967), - [sym_function_declarator] = STATE(967), - [sym_init_declarator] = STATE(968), - [anon_sym_STAR] = ACTIONS(326), - [anon_sym_LPAREN2] = ACTIONS(328), - [sym_identifier] = ACTIONS(3139), + [sym_identifier] = ACTIONS(3228), [sym_comment] = ACTIONS(3), }, [1173] = { - [anon_sym_while] = ACTIONS(3141), + [anon_sym_SEMI] = ACTIONS(2218), [sym_comment] = ACTIONS(3), }, [1174] = { - [sym_array_type_declarator] = STATE(973), - [sym_parenthesized_type_declarator] = STATE(973), - [sym_function_type_declarator] = STATE(973), - [sym__type_declarator] = STATE(973), - [sym_pointer_type_declarator] = STATE(973), - [anon_sym_STAR] = ACTIONS(453), - [anon_sym_LPAREN2] = ACTIONS(455), - [sym_identifier] = ACTIONS(457), - [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(3230), + [sym_comment] = ACTIONS(2827), }, [1175] = { - [sym_char_literal] = STATE(1038), - [sym__expression] = STATE(1038), - [sym_comma_expression] = STATE(1039), - [sym_binary_expression] = STATE(1038), - [sym_update_expression] = STATE(1038), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1038), - [sym_sizeof_expression] = STATE(1038), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1038), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_cast_expression] = STATE(1038), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1038), - [sym_true] = ACTIONS(3143), - [sym_null] = ACTIONS(3143), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(3145), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(3143), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [aux_sym_preproc_if_token2] = ACTIONS(3232), + [sym_comment] = ACTIONS(3), }, [1176] = { - [sym_identifier] = ACTIONS(3147), + [aux_sym_preproc_if_token2] = ACTIONS(3234), [sym_comment] = ACTIONS(3), }, [1177] = { - [sym_preproc_arg] = ACTIONS(3149), - [sym_comment] = ACTIONS(147), + [sym_identifier] = ACTIONS(3236), + [sym_comment] = ACTIONS(3), }, [1178] = { - [sym_array_type_declarator] = STATE(987), - [sym_parenthesized_type_declarator] = STATE(987), - [sym_function_type_declarator] = STATE(987), - [sym__type_declarator] = STATE(987), - [sym_pointer_type_declarator] = STATE(987), - [anon_sym_STAR] = ACTIONS(453), - [anon_sym_LPAREN2] = ACTIONS(455), - [sym_identifier] = ACTIONS(457), - [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(3238), + [sym_comment] = ACTIONS(2827), }, [1179] = { - [sym_char_literal] = STATE(1181), - [sym__expression] = STATE(1181), - [sym_binary_expression] = STATE(1181), - [sym_update_expression] = STATE(1181), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1181), - [sym_sizeof_expression] = STATE(1181), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1181), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(1181), - [sym_assignment_expression] = STATE(1181), - [sym_cast_expression] = STATE(1181), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1181), - [sym_true] = ACTIONS(3151), - [sym_null] = ACTIONS(3151), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(3153), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(3151), - [anon_sym_SEMI] = ACTIONS(3155), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_identifier] = ACTIONS(3240), + [sym_comment] = ACTIONS(3), }, [1180] = { - [sym_char_literal] = STATE(1183), - [sym__expression] = STATE(1183), - [sym_binary_expression] = STATE(1183), - [sym_update_expression] = STATE(1183), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1183), - [sym_sizeof_expression] = STATE(1183), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1183), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1183), - [sym_cast_expression] = STATE(1183), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1183), - [sym_true] = ACTIONS(3157), - [sym_null] = ACTIONS(3157), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(3159), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(3157), - [anon_sym_SEMI] = ACTIONS(3161), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_RPAREN] = ACTIONS(2246), + [sym_comment] = ACTIONS(3), }, [1181] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_SEMI] = ACTIONS(3163), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [anon_sym_LF] = ACTIONS(3242), + [sym_comment] = ACTIONS(2827), }, [1182] = { - [sym_char_literal] = STATE(1184), - [sym__expression] = STATE(1184), - [sym_binary_expression] = STATE(1184), - [sym_update_expression] = STATE(1184), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1184), - [sym_sizeof_expression] = STATE(1184), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1184), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(1184), - [sym_assignment_expression] = STATE(1184), - [sym_cast_expression] = STATE(1184), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1184), - [sym_true] = ACTIONS(3165), - [sym_null] = ACTIONS(3165), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(3165), - [anon_sym_SEMI] = ACTIONS(3169), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_identifier] = ACTIONS(3244), + [sym_comment] = ACTIONS(3), }, [1183] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_SEMI] = ACTIONS(3171), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [aux_sym_preproc_if_token2] = ACTIONS(3246), + [sym_comment] = ACTIONS(3), }, [1184] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_SEMI] = ACTIONS(3173), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [anon_sym_RPAREN] = ACTIONS(2244), + [sym_comment] = ACTIONS(3), }, [1185] = { - [sym_identifier] = ACTIONS(3175), + [anon_sym_RPAREN] = ACTIONS(2242), [sym_comment] = ACTIONS(3), }, [1186] = { - [sym_preproc_arg] = ACTIONS(3177), - [sym_comment] = ACTIONS(147), + [anon_sym_while] = ACTIONS(3248), + [sym_comment] = ACTIONS(3), }, [1187] = { - [sym_identifier] = ACTIONS(3179), + [anon_sym_SEMI] = ACTIONS(3250), [sym_comment] = ACTIONS(3), }, [1188] = { - [sym_string_literal] = STATE(1042), - [anon_sym_union] = ACTIONS(229), - [anon_sym_unsigned] = ACTIONS(229), - [anon_sym_restrict] = ACTIONS(229), - [anon_sym_short] = ACTIONS(229), - [anon_sym_static] = ACTIONS(229), - [anon_sym_volatile] = ACTIONS(229), - [anon_sym_register] = ACTIONS(229), - [anon_sym_extern] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(229), - [anon_sym_signed] = ACTIONS(229), - [anon_sym_enum] = ACTIONS(229), - [anon_sym_long] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(229), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(229), - [sym_primitive_type] = ACTIONS(229), - [anon_sym_auto] = ACTIONS(229), - [sym_identifier] = ACTIONS(229), - [anon_sym_inline] = ACTIONS(229), - [anon_sym___attribute__] = ACTIONS(229), + [sym_preproc_arg] = ACTIONS(3252), + [sym_comment] = ACTIONS(2827), }, [1189] = { - [sym_parenthesized_expression] = STATE(1043), + [sym_identifier] = ACTIONS(3254), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(237), }, [1190] = { - [sym_identifier] = ACTIONS(3181), + [aux_sym_preproc_if_token2] = ACTIONS(3256), [sym_comment] = ACTIONS(3), }, [1191] = { - [sym_pointer_declarator] = STATE(1046), - [sym_array_declarator] = STATE(1046), - [sym__declarator] = STATE(1046), - [sym_parenthesized_declarator] = STATE(1046), - [sym_function_declarator] = STATE(1046), - [sym_init_declarator] = STATE(1047), - [anon_sym_STAR] = ACTIONS(326), - [anon_sym_LPAREN2] = ACTIONS(328), - [sym_identifier] = ACTIONS(3183), + [aux_sym_preproc_if_token2] = ACTIONS(3258), [sym_comment] = ACTIONS(3), }, [1192] = { - [anon_sym_while] = ACTIONS(3185), + [aux_sym_preproc_if_token2] = ACTIONS(3260), [sym_comment] = ACTIONS(3), }, [1193] = { - [sym_array_type_declarator] = STATE(1051), - [sym_parenthesized_type_declarator] = STATE(1051), - [sym_function_type_declarator] = STATE(1051), - [sym__type_declarator] = STATE(1051), - [sym_pointer_type_declarator] = STATE(1051), - [anon_sym_STAR] = ACTIONS(453), - [anon_sym_LPAREN2] = ACTIONS(455), - [sym_identifier] = ACTIONS(457), + [aux_sym_preproc_if_token2] = ACTIONS(3262), [sym_comment] = ACTIONS(3), }, [1194] = { - [sym_char_literal] = STATE(1099), - [sym__expression] = STATE(1099), - [sym_comma_expression] = STATE(1100), - [sym_binary_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1099), - [sym_sizeof_expression] = STATE(1099), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1099), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1099), - [sym_cast_expression] = STATE(1099), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1099), - [sym_true] = ACTIONS(3187), - [sym_null] = ACTIONS(3187), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(3189), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(3187), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_RPAREN] = ACTIONS(2238), + [sym_comment] = ACTIONS(3), }, [1195] = { - [sym_array_type_declarator] = STATE(1061), - [sym_parenthesized_type_declarator] = STATE(1061), - [sym_function_type_declarator] = STATE(1061), - [sym__type_declarator] = STATE(1061), - [sym_pointer_type_declarator] = STATE(1061), - [anon_sym_STAR] = ACTIONS(453), - [anon_sym_LPAREN2] = ACTIONS(455), - [sym_identifier] = ACTIONS(457), + [anon_sym_SEMI] = ACTIONS(3264), [sym_comment] = ACTIONS(3), }, [1196] = { - [sym_char_literal] = STATE(1198), - [sym__expression] = STATE(1198), - [sym_binary_expression] = STATE(1198), - [sym_update_expression] = STATE(1198), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1198), - [sym_sizeof_expression] = STATE(1198), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1198), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(1198), - [sym_assignment_expression] = STATE(1198), - [sym_cast_expression] = STATE(1198), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1198), - [sym_true] = ACTIONS(3191), - [sym_null] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(3193), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(3191), - [anon_sym_SEMI] = ACTIONS(3195), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_identifier] = ACTIONS(3266), + [sym_comment] = ACTIONS(3), }, [1197] = { - [sym_char_literal] = STATE(1200), - [sym__expression] = STATE(1200), - [sym_binary_expression] = STATE(1200), - [sym_update_expression] = STATE(1200), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1200), - [sym_sizeof_expression] = STATE(1200), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1200), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1200), - [sym_cast_expression] = STATE(1200), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1200), - [sym_true] = ACTIONS(3197), - [sym_null] = ACTIONS(3197), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(3199), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(3197), - [anon_sym_SEMI] = ACTIONS(3201), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_preproc_arg] = ACTIONS(3268), + [sym_comment] = ACTIONS(2827), }, [1198] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_SEMI] = ACTIONS(3203), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [sym_identifier] = ACTIONS(3270), + [sym_comment] = ACTIONS(3), }, [1199] = { - [sym_char_literal] = STATE(1201), - [sym__expression] = STATE(1201), - [sym_binary_expression] = STATE(1201), - [sym_update_expression] = STATE(1201), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1201), - [sym_sizeof_expression] = STATE(1201), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1201), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(1201), - [sym_assignment_expression] = STATE(1201), - [sym_cast_expression] = STATE(1201), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1201), - [sym_true] = ACTIONS(3205), - [sym_null] = ACTIONS(3205), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(3207), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(3205), - [anon_sym_SEMI] = ACTIONS(3209), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_COLON] = ACTIONS(3272), + [sym_comment] = ACTIONS(3), }, [1200] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_SEMI] = ACTIONS(3211), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [anon_sym_SEMI] = ACTIONS(3274), + [sym_comment] = ACTIONS(3), }, [1201] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_SEMI] = ACTIONS(3213), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [sym_identifier] = ACTIONS(3276), + [sym_comment] = ACTIONS(3), }, [1202] = { - [sym_identifier] = ACTIONS(3215), + [anon_sym_RPAREN] = ACTIONS(2302), [sym_comment] = ACTIONS(3), }, [1203] = { - [sym_parenthesized_expression] = STATE(1102), + [anon_sym_RPAREN] = ACTIONS(2300), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(237), }, [1204] = { - [sym_identifier] = ACTIONS(3217), + [anon_sym_SEMI] = ACTIONS(3278), [sym_comment] = ACTIONS(3), }, [1205] = { - [anon_sym_while] = ACTIONS(3219), + [anon_sym_while] = ACTIONS(3280), [sym_comment] = ACTIONS(3), }, [1206] = { - [sym_char_literal] = STATE(1131), - [sym__expression] = STATE(1131), - [sym_comma_expression] = STATE(1132), - [sym_binary_expression] = STATE(1131), - [sym_update_expression] = STATE(1131), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1131), - [sym_sizeof_expression] = STATE(1131), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1131), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1131), - [sym_cast_expression] = STATE(1131), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1131), - [sym_true] = ACTIONS(3221), - [sym_null] = ACTIONS(3221), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(3223), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(3221), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_RPAREN] = ACTIONS(2236), + [sym_comment] = ACTIONS(3), }, [1207] = { - [sym_char_literal] = STATE(1209), - [sym__expression] = STATE(1209), - [sym_binary_expression] = STATE(1209), - [sym_update_expression] = STATE(1209), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1209), - [sym_sizeof_expression] = STATE(1209), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1209), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(1209), - [sym_assignment_expression] = STATE(1209), - [sym_cast_expression] = STATE(1209), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1209), - [sym_true] = ACTIONS(3225), - [sym_null] = ACTIONS(3225), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(3227), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(3225), - [anon_sym_SEMI] = ACTIONS(3229), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(2298), + [sym_comment] = ACTIONS(3), }, [1208] = { - [sym_char_literal] = STATE(1211), - [sym__expression] = STATE(1211), - [sym_binary_expression] = STATE(1211), - [sym_update_expression] = STATE(1211), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1211), - [sym_sizeof_expression] = STATE(1211), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1211), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(1211), - [sym_assignment_expression] = STATE(1211), - [sym_cast_expression] = STATE(1211), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1211), - [sym_true] = ACTIONS(3231), - [sym_null] = ACTIONS(3231), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(3233), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(3231), - [anon_sym_SEMI] = ACTIONS(3235), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(3282), + [sym_comment] = ACTIONS(3), }, [1209] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_SEMI] = ACTIONS(3237), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [anon_sym_RPAREN] = ACTIONS(2234), + [sym_comment] = ACTIONS(3), }, [1210] = { - [sym_char_literal] = STATE(1212), - [sym__expression] = STATE(1212), - [sym_binary_expression] = STATE(1212), - [sym_update_expression] = STATE(1212), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1212), - [sym_sizeof_expression] = STATE(1212), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1212), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(1212), - [sym_assignment_expression] = STATE(1212), - [sym_cast_expression] = STATE(1212), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1212), - [sym_true] = ACTIONS(3239), - [sym_null] = ACTIONS(3239), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(3241), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(3239), - [anon_sym_SEMI] = ACTIONS(3243), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [aux_sym_preproc_if_token2] = ACTIONS(3284), + [sym_comment] = ACTIONS(3), }, [1211] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_SEMI] = ACTIONS(3245), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [anon_sym_RPAREN] = ACTIONS(2232), + [sym_comment] = ACTIONS(3), }, [1212] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_SEMI] = ACTIONS(3247), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [anon_sym_RPAREN] = ACTIONS(2230), + [sym_comment] = ACTIONS(3), }, [1213] = { - [sym_identifier] = ACTIONS(3249), + [sym_identifier] = ACTIONS(3286), [sym_comment] = ACTIONS(3), }, [1214] = { - [anon_sym_while] = ACTIONS(3251), - [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(3288), + [sym_comment] = ACTIONS(2827), }, [1215] = { - [sym_identifier] = ACTIONS(3253), + [sym_identifier] = ACTIONS(3290), [sym_comment] = ACTIONS(3), }, [1216] = { - [sym_if_statement] = STATE(1152), - [sym_do_statement] = STATE(1152), - [sym_for_statement] = STATE(1152), - [sym__expression] = STATE(34), - [sym_comma_expression] = STATE(35), - [sym_binary_expression] = STATE(34), - [sym_update_expression] = STATE(34), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(1152), - [sym_return_statement] = STATE(1152), - [sym_break_statement] = STATE(1152), - [sym_conditional_expression] = STATE(34), - [sym_assignment_expression] = STATE(34), - [sym_cast_expression] = STATE(34), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(34), - [sym_char_literal] = STATE(34), - [sym_labeled_statement] = STATE(1152), - [sym_while_statement] = STATE(1152), - [sym_continue_statement] = STATE(1152), - [sym_goto_statement] = STATE(1152), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(34), - [sym_sizeof_expression] = STATE(34), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(34), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(1152), - [sym_expression_statement] = STATE(1152), - [anon_sym_LBRACE] = ACTIONS(35), - [sym_true] = ACTIONS(5), - [sym_null] = ACTIONS(5), - [anon_sym_do] = ACTIONS(135), - [anon_sym_goto] = ACTIONS(9), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(137), - [anon_sym_for] = ACTIONS(139), - [anon_sym_break] = ACTIONS(57), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(141), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(67), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(5), - [anon_sym_return] = ACTIONS(73), - [anon_sym_while] = ACTIONS(143), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_SEMI] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(2803), + [sym_comment] = ACTIONS(3), }, [1217] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_union_specifier] = STATE(1153), - [sym__type_specifier] = STATE(1153), - [aux_sym_type_definition_repeat1] = STATE(1218), - [sym_sized_type_specifier] = STATE(1153), - [sym_enum_specifier] = STATE(1153), - [sym_macro_type_specifier] = STATE(1153), - [sym_struct_specifier] = STATE(1153), - [sym_type_qualifier] = STATE(1218), - [anon_sym_long] = ACTIONS(27), - [anon_sym_union] = ACTIONS(37), - [anon_sym_const] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(7), - [anon_sym_short] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym__Atomic] = ACTIONS(7), - [sym_primitive_type] = ACTIONS(3255), - [sym_identifier] = ACTIONS(187), - [anon_sym_struct] = ACTIONS(25), - [anon_sym_signed] = ACTIONS(27), - [anon_sym_enum] = ACTIONS(69), + [anon_sym_while] = ACTIONS(3292), + [sym_comment] = ACTIONS(3), }, [1218] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_union_specifier] = STATE(1159), - [sym__type_specifier] = STATE(1159), - [aux_sym_type_definition_repeat1] = STATE(144), - [sym_sized_type_specifier] = STATE(1159), - [sym_enum_specifier] = STATE(1159), - [sym_macro_type_specifier] = STATE(1159), - [sym_struct_specifier] = STATE(1159), - [sym_type_qualifier] = STATE(144), - [anon_sym_long] = ACTIONS(27), - [anon_sym_union] = ACTIONS(37), - [anon_sym_const] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(7), - [anon_sym_short] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym__Atomic] = ACTIONS(7), - [sym_primitive_type] = ACTIONS(3257), - [sym_identifier] = ACTIONS(187), - [anon_sym_struct] = ACTIONS(25), - [anon_sym_signed] = ACTIONS(27), - [anon_sym_enum] = ACTIONS(69), + [anon_sym_RPAREN] = ACTIONS(2226), + [sym_comment] = ACTIONS(3), }, [1219] = { - [sym_if_statement] = STATE(160), - [sym_do_statement] = STATE(160), - [sym_for_statement] = STATE(160), - [sym__expression] = STATE(34), - [sym_comma_expression] = STATE(35), - [sym_binary_expression] = STATE(34), - [sym_update_expression] = STATE(34), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(160), - [sym_return_statement] = STATE(160), - [sym_break_statement] = STATE(160), - [sym_conditional_expression] = STATE(34), - [sym_assignment_expression] = STATE(34), - [sym_cast_expression] = STATE(34), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(34), - [sym_char_literal] = STATE(34), - [sym_labeled_statement] = STATE(160), - [sym_while_statement] = STATE(160), - [sym_continue_statement] = STATE(160), - [sym_goto_statement] = STATE(160), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(34), - [sym_sizeof_expression] = STATE(34), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(34), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(160), - [sym_expression_statement] = STATE(160), - [anon_sym_LBRACE] = ACTIONS(35), - [sym_true] = ACTIONS(5), - [sym_null] = ACTIONS(5), - [anon_sym_do] = ACTIONS(135), - [anon_sym_goto] = ACTIONS(9), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(137), - [anon_sym_for] = ACTIONS(139), - [anon_sym_break] = ACTIONS(57), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(141), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(67), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(5), - [anon_sym_return] = ACTIONS(73), - [anon_sym_while] = ACTIONS(143), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_SEMI] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [aux_sym_preproc_if_token2] = ACTIONS(3294), + [sym_comment] = ACTIONS(3), }, [1220] = { - [sym__expression] = STATE(1223), - [sym_comma_expression] = STATE(1224), - [sym_binary_expression] = STATE(1223), - [sym_declaration] = STATE(1161), - [sym_update_expression] = STATE(1223), - [sym_call_expression] = STATE(36), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(130), - [sym_union_specifier] = STATE(130), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_conditional_expression] = STATE(1223), - [sym_assignment_expression] = STATE(1223), - [sym_cast_expression] = STATE(1223), - [sym__declaration_specifiers] = STATE(165), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1223), - [sym_char_literal] = STATE(1223), - [sym_sized_type_specifier] = STATE(130), - [sym_enum_specifier] = STATE(130), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1223), - [sym_sizeof_expression] = STATE(1223), - [sym_attribute_specifier] = STATE(43), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1223), - [sym_string_literal] = STATE(41), - [sym_macro_type_specifier] = STATE(130), - [sym_storage_class_specifier] = STATE(43), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_struct_specifier] = STATE(130), - [sym_true] = ACTIONS(3259), - [anon_sym_restrict] = ACTIONS(7), - [sym_null] = ACTIONS(3259), - [anon_sym_const] = ACTIONS(7), - [anon_sym_DASH_DASH] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(7), - [sym_identifier] = ACTIONS(481), - [sym_number_literal] = ACTIONS(3261), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_extern] = ACTIONS(63), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_struct] = ACTIONS(25), - [anon_sym_signed] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(27), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_sizeof] = ACTIONS(33), - [anon_sym_union] = ACTIONS(37), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_short] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(348), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [anon_sym_static] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_register] = ACTIONS(63), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_enum] = ACTIONS(69), - [sym_false] = ACTIONS(3259), - [anon_sym_SEMI] = ACTIONS(3263), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_auto] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), + [anon_sym_RPAREN] = ACTIONS(2228), + [sym_comment] = ACTIONS(3), }, [1221] = { - [sym_if_statement] = STATE(1259), - [sym_do_statement] = STATE(1259), - [sym_for_statement] = STATE(1259), - [sym__expression] = STATE(34), - [sym_comma_expression] = STATE(35), - [sym_binary_expression] = STATE(34), - [sym_update_expression] = STATE(34), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(1259), - [sym_return_statement] = STATE(1259), - [sym_break_statement] = STATE(1259), - [sym_conditional_expression] = STATE(34), - [sym_assignment_expression] = STATE(34), - [sym_cast_expression] = STATE(34), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(34), - [sym_char_literal] = STATE(34), - [sym_labeled_statement] = STATE(1259), - [sym_while_statement] = STATE(1259), - [sym_continue_statement] = STATE(1259), - [sym_goto_statement] = STATE(1259), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(34), - [sym_sizeof_expression] = STATE(34), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(34), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(1259), - [sym_expression_statement] = STATE(1259), - [anon_sym_LBRACE] = ACTIONS(35), - [sym_true] = ACTIONS(5), - [sym_null] = ACTIONS(5), - [anon_sym_do] = ACTIONS(135), - [anon_sym_goto] = ACTIONS(9), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(137), - [anon_sym_for] = ACTIONS(139), - [anon_sym_break] = ACTIONS(57), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(141), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(67), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(5), - [anon_sym_return] = ACTIONS(73), - [anon_sym_while] = ACTIONS(143), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_SEMI] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [aux_sym_preproc_if_token2] = ACTIONS(3296), + [sym_comment] = ACTIONS(3), }, [1222] = { - [sym_if_statement] = STATE(182), - [sym_do_statement] = STATE(182), - [sym_for_statement] = STATE(182), - [sym__expression] = STATE(34), - [sym_comma_expression] = STATE(35), - [sym_binary_expression] = STATE(34), - [sym_update_expression] = STATE(34), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(182), - [sym_return_statement] = STATE(182), - [sym_break_statement] = STATE(182), - [sym_conditional_expression] = STATE(34), - [sym_assignment_expression] = STATE(34), - [sym_cast_expression] = STATE(34), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(34), - [sym_char_literal] = STATE(34), - [sym_labeled_statement] = STATE(182), - [sym_while_statement] = STATE(182), - [sym_continue_statement] = STATE(182), - [sym_goto_statement] = STATE(182), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(34), - [sym_sizeof_expression] = STATE(34), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(34), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(182), - [sym_expression_statement] = STATE(182), - [anon_sym_LBRACE] = ACTIONS(35), - [sym_true] = ACTIONS(5), - [sym_null] = ACTIONS(5), - [anon_sym_do] = ACTIONS(135), - [anon_sym_goto] = ACTIONS(9), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(137), - [anon_sym_for] = ACTIONS(139), - [anon_sym_break] = ACTIONS(57), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(141), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(67), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(5), - [anon_sym_return] = ACTIONS(73), - [anon_sym_while] = ACTIONS(143), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_SEMI] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_RBRACE] = ACTIONS(2204), + [sym_comment] = ACTIONS(3), }, [1223] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_COMMA] = ACTIONS(293), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_SEMI] = ACTIONS(3265), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [sym_identifier] = ACTIONS(3298), + [sym_comment] = ACTIONS(3), }, [1224] = { + [sym_identifier] = ACTIONS(3300), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(3265), }, [1225] = { - [sym_if_statement] = STATE(379), - [sym_do_statement] = STATE(379), - [sym_for_statement] = STATE(379), - [sym__expression] = STATE(34), - [sym_comma_expression] = STATE(35), - [sym_binary_expression] = STATE(34), - [sym_update_expression] = STATE(34), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(379), - [sym_return_statement] = STATE(379), - [sym_break_statement] = STATE(379), - [sym_conditional_expression] = STATE(34), - [sym_assignment_expression] = STATE(34), - [sym_cast_expression] = STATE(34), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(34), - [sym_char_literal] = STATE(34), - [sym_labeled_statement] = STATE(379), - [sym_while_statement] = STATE(379), - [sym_continue_statement] = STATE(379), - [sym_goto_statement] = STATE(379), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(34), - [sym_sizeof_expression] = STATE(34), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(34), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(379), - [sym_expression_statement] = STATE(379), - [anon_sym_LBRACE] = ACTIONS(35), - [sym_true] = ACTIONS(5), - [sym_null] = ACTIONS(5), - [anon_sym_do] = ACTIONS(135), - [anon_sym_goto] = ACTIONS(9), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(137), - [anon_sym_for] = ACTIONS(139), - [anon_sym_break] = ACTIONS(57), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(141), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(67), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(5), - [anon_sym_return] = ACTIONS(73), - [anon_sym_while] = ACTIONS(143), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_SEMI] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_while] = ACTIONS(3302), + [sym_comment] = ACTIONS(3), }, [1226] = { - [sym_if_statement] = STATE(443), - [sym_do_statement] = STATE(443), - [sym_for_statement] = STATE(443), - [sym__expression] = STATE(34), - [sym_comma_expression] = STATE(35), - [sym_binary_expression] = STATE(34), - [sym_update_expression] = STATE(34), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(443), - [sym_return_statement] = STATE(443), - [sym_break_statement] = STATE(443), - [sym_conditional_expression] = STATE(34), - [sym_assignment_expression] = STATE(34), - [sym_cast_expression] = STATE(34), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(34), - [sym_char_literal] = STATE(34), - [sym_labeled_statement] = STATE(443), - [sym_while_statement] = STATE(443), - [sym_continue_statement] = STATE(443), - [sym_goto_statement] = STATE(443), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(34), - [sym_sizeof_expression] = STATE(34), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(34), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(443), - [sym_expression_statement] = STATE(443), - [anon_sym_LBRACE] = ACTIONS(35), - [sym_true] = ACTIONS(5), - [sym_null] = ACTIONS(5), - [anon_sym_do] = ACTIONS(135), - [anon_sym_goto] = ACTIONS(9), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(137), - [anon_sym_for] = ACTIONS(139), - [anon_sym_break] = ACTIONS(57), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(141), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(67), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(5), - [anon_sym_return] = ACTIONS(73), - [anon_sym_while] = ACTIONS(143), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_SEMI] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_identifier] = ACTIONS(3304), + [sym_comment] = ACTIONS(3), }, [1227] = { - [sym_if_statement] = STATE(452), - [sym_do_statement] = STATE(452), - [sym_for_statement] = STATE(452), - [sym__expression] = STATE(34), - [sym_comma_expression] = STATE(35), - [sym_binary_expression] = STATE(34), - [sym_update_expression] = STATE(34), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(452), - [sym_return_statement] = STATE(452), - [sym_break_statement] = STATE(452), - [sym_conditional_expression] = STATE(34), - [sym_assignment_expression] = STATE(34), - [sym_cast_expression] = STATE(34), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(34), - [sym_char_literal] = STATE(34), - [sym_labeled_statement] = STATE(452), - [sym_while_statement] = STATE(452), - [sym_continue_statement] = STATE(452), - [sym_goto_statement] = STATE(452), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(34), - [sym_sizeof_expression] = STATE(34), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(34), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(452), - [sym_expression_statement] = STATE(452), - [anon_sym_LBRACE] = ACTIONS(35), - [sym_true] = ACTIONS(5), - [sym_null] = ACTIONS(5), - [anon_sym_do] = ACTIONS(135), - [anon_sym_goto] = ACTIONS(9), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(137), - [anon_sym_for] = ACTIONS(139), - [anon_sym_break] = ACTIONS(57), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(141), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(67), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(5), - [anon_sym_return] = ACTIONS(73), - [anon_sym_while] = ACTIONS(143), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_SEMI] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_RPAREN] = ACTIONS(2294), + [sym_comment] = ACTIONS(3), }, [1228] = { - [sym_if_statement] = STATE(484), - [sym_do_statement] = STATE(484), - [sym_for_statement] = STATE(484), - [sym__expression] = STATE(34), - [sym_comma_expression] = STATE(35), - [sym_binary_expression] = STATE(34), - [sym_update_expression] = STATE(34), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(484), - [sym_return_statement] = STATE(484), - [sym_break_statement] = STATE(484), - [sym_conditional_expression] = STATE(34), - [sym_assignment_expression] = STATE(34), - [sym_cast_expression] = STATE(34), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(34), - [sym_char_literal] = STATE(34), - [sym_labeled_statement] = STATE(484), - [sym_while_statement] = STATE(484), - [sym_continue_statement] = STATE(484), - [sym_goto_statement] = STATE(484), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(34), - [sym_sizeof_expression] = STATE(34), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(34), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(484), - [sym_expression_statement] = STATE(484), - [anon_sym_LBRACE] = ACTIONS(35), - [sym_true] = ACTIONS(5), - [sym_null] = ACTIONS(5), - [anon_sym_do] = ACTIONS(135), - [anon_sym_goto] = ACTIONS(9), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(137), - [anon_sym_for] = ACTIONS(139), - [anon_sym_break] = ACTIONS(57), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(141), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(67), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(5), - [anon_sym_return] = ACTIONS(73), - [anon_sym_while] = ACTIONS(143), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_SEMI] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_RPAREN] = ACTIONS(3306), + [sym_comment] = ACTIONS(3), }, [1229] = { - [sym_if_statement] = STATE(485), - [sym_do_statement] = STATE(485), - [sym_for_statement] = STATE(485), - [sym__expression] = STATE(34), - [sym_comma_expression] = STATE(35), - [sym_binary_expression] = STATE(34), - [sym_update_expression] = STATE(34), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(485), - [sym_return_statement] = STATE(485), - [sym_break_statement] = STATE(485), - [sym_conditional_expression] = STATE(34), - [sym_assignment_expression] = STATE(34), - [sym_cast_expression] = STATE(34), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(34), - [sym_char_literal] = STATE(34), - [sym_labeled_statement] = STATE(485), - [sym_while_statement] = STATE(485), - [sym_continue_statement] = STATE(485), - [sym_goto_statement] = STATE(485), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(34), - [sym_sizeof_expression] = STATE(34), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(34), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(485), - [sym_expression_statement] = STATE(485), - [anon_sym_LBRACE] = ACTIONS(35), - [sym_true] = ACTIONS(5), - [sym_null] = ACTIONS(5), - [anon_sym_do] = ACTIONS(135), - [anon_sym_goto] = ACTIONS(9), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(137), - [anon_sym_for] = ACTIONS(139), - [anon_sym_break] = ACTIONS(57), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(141), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(67), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(5), - [anon_sym_return] = ACTIONS(73), - [anon_sym_while] = ACTIONS(143), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_SEMI] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(3308), + [sym_comment] = ACTIONS(3), }, [1230] = { - [sym_if_statement] = STATE(487), - [sym_do_statement] = STATE(487), - [sym_for_statement] = STATE(487), - [sym__expression] = STATE(34), - [sym_comma_expression] = STATE(35), - [sym_binary_expression] = STATE(34), - [sym_update_expression] = STATE(34), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(487), - [sym_return_statement] = STATE(487), - [sym_break_statement] = STATE(487), - [sym_conditional_expression] = STATE(34), - [sym_assignment_expression] = STATE(34), - [sym_cast_expression] = STATE(34), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(34), - [sym_char_literal] = STATE(34), - [sym_labeled_statement] = STATE(487), - [sym_while_statement] = STATE(487), - [sym_continue_statement] = STATE(487), - [sym_goto_statement] = STATE(487), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(34), - [sym_sizeof_expression] = STATE(34), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(34), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(487), - [sym_expression_statement] = STATE(487), - [anon_sym_LBRACE] = ACTIONS(35), - [sym_true] = ACTIONS(5), - [sym_null] = ACTIONS(5), - [anon_sym_do] = ACTIONS(135), - [anon_sym_goto] = ACTIONS(9), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(137), - [anon_sym_for] = ACTIONS(139), - [anon_sym_break] = ACTIONS(57), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(141), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(67), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(5), - [anon_sym_return] = ACTIONS(73), - [anon_sym_while] = ACTIONS(143), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_SEMI] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_RPAREN] = ACTIONS(3310), + [sym_comment] = ACTIONS(3), }, [1231] = { - [sym_if_statement] = STATE(492), - [sym_do_statement] = STATE(492), - [sym_for_statement] = STATE(492), - [sym__expression] = STATE(34), - [sym_comma_expression] = STATE(35), - [sym_binary_expression] = STATE(34), - [sym_update_expression] = STATE(34), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(492), - [sym_return_statement] = STATE(492), - [sym_break_statement] = STATE(492), - [sym_conditional_expression] = STATE(34), - [sym_assignment_expression] = STATE(34), - [sym_cast_expression] = STATE(34), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(34), - [sym_char_literal] = STATE(34), - [sym_labeled_statement] = STATE(492), - [sym_while_statement] = STATE(492), - [sym_continue_statement] = STATE(492), - [sym_goto_statement] = STATE(492), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(34), - [sym_sizeof_expression] = STATE(34), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(34), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(492), - [sym_expression_statement] = STATE(492), - [anon_sym_LBRACE] = ACTIONS(35), - [sym_true] = ACTIONS(5), - [sym_null] = ACTIONS(5), - [anon_sym_do] = ACTIONS(135), - [anon_sym_goto] = ACTIONS(9), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(137), - [anon_sym_for] = ACTIONS(139), - [anon_sym_break] = ACTIONS(57), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(141), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(67), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(5), - [anon_sym_return] = ACTIONS(73), - [anon_sym_while] = ACTIONS(143), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_SEMI] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_RPAREN] = ACTIONS(2286), + [sym_comment] = ACTIONS(3), }, [1232] = { - [sym_if_statement] = STATE(493), - [sym_do_statement] = STATE(493), - [sym_for_statement] = STATE(493), - [sym__expression] = STATE(34), - [sym_comma_expression] = STATE(35), - [sym_binary_expression] = STATE(34), - [sym_update_expression] = STATE(34), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(493), - [sym_return_statement] = STATE(493), - [sym_break_statement] = STATE(493), - [sym_conditional_expression] = STATE(34), - [sym_assignment_expression] = STATE(34), - [sym_cast_expression] = STATE(34), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(34), - [sym_char_literal] = STATE(34), - [sym_labeled_statement] = STATE(493), - [sym_while_statement] = STATE(493), - [sym_continue_statement] = STATE(493), - [sym_goto_statement] = STATE(493), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(34), - [sym_sizeof_expression] = STATE(34), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(34), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(493), - [sym_expression_statement] = STATE(493), - [anon_sym_LBRACE] = ACTIONS(35), - [sym_true] = ACTIONS(5), - [sym_null] = ACTIONS(5), - [anon_sym_do] = ACTIONS(135), - [anon_sym_goto] = ACTIONS(9), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(137), - [anon_sym_for] = ACTIONS(139), - [anon_sym_break] = ACTIONS(57), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(141), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(67), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(5), - [anon_sym_return] = ACTIONS(73), - [anon_sym_while] = ACTIONS(143), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_SEMI] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), }, [1233] = { - [sym_if_statement] = STATE(501), - [sym_do_statement] = STATE(501), - [sym_for_statement] = STATE(501), - [sym__expression] = STATE(34), - [sym_comma_expression] = STATE(35), - [sym_binary_expression] = STATE(34), - [sym_update_expression] = STATE(34), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(501), - [sym_return_statement] = STATE(501), - [sym_break_statement] = STATE(501), - [sym_conditional_expression] = STATE(34), - [sym_assignment_expression] = STATE(34), - [sym_cast_expression] = STATE(34), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(34), - [sym_char_literal] = STATE(34), - [sym_labeled_statement] = STATE(501), - [sym_while_statement] = STATE(501), - [sym_continue_statement] = STATE(501), - [sym_goto_statement] = STATE(501), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(34), - [sym_sizeof_expression] = STATE(34), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(34), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(501), - [sym_expression_statement] = STATE(501), - [anon_sym_LBRACE] = ACTIONS(35), - [sym_true] = ACTIONS(5), - [sym_null] = ACTIONS(5), - [anon_sym_do] = ACTIONS(135), - [anon_sym_goto] = ACTIONS(9), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(137), - [anon_sym_for] = ACTIONS(139), - [anon_sym_break] = ACTIONS(57), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(141), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(67), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(5), - [anon_sym_return] = ACTIONS(73), - [anon_sym_while] = ACTIONS(143), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_SEMI] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_RPAREN] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), }, [1234] = { - [sym_if_statement] = STATE(502), - [sym_do_statement] = STATE(502), - [sym_for_statement] = STATE(502), - [sym__expression] = STATE(34), - [sym_comma_expression] = STATE(35), - [sym_binary_expression] = STATE(34), - [sym_update_expression] = STATE(34), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(502), - [sym_return_statement] = STATE(502), - [sym_break_statement] = STATE(502), - [sym_conditional_expression] = STATE(34), - [sym_assignment_expression] = STATE(34), - [sym_cast_expression] = STATE(34), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(34), - [sym_char_literal] = STATE(34), - [sym_labeled_statement] = STATE(502), - [sym_while_statement] = STATE(502), - [sym_continue_statement] = STATE(502), - [sym_goto_statement] = STATE(502), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(34), - [sym_sizeof_expression] = STATE(34), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(34), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(502), - [sym_expression_statement] = STATE(502), - [anon_sym_LBRACE] = ACTIONS(35), - [sym_true] = ACTIONS(5), - [sym_null] = ACTIONS(5), - [anon_sym_do] = ACTIONS(135), - [anon_sym_goto] = ACTIONS(9), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(137), - [anon_sym_for] = ACTIONS(139), - [anon_sym_break] = ACTIONS(57), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(141), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(67), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(5), - [anon_sym_return] = ACTIONS(73), - [anon_sym_while] = ACTIONS(143), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_SEMI] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_preproc_arg] = ACTIONS(3312), + [sym_comment] = ACTIONS(2827), }, [1235] = { - [sym_if_statement] = STATE(503), - [sym_do_statement] = STATE(503), - [sym_for_statement] = STATE(503), - [sym__expression] = STATE(34), - [sym_comma_expression] = STATE(35), - [sym_binary_expression] = STATE(34), - [sym_update_expression] = STATE(34), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(503), - [sym_return_statement] = STATE(503), - [sym_break_statement] = STATE(503), - [sym_conditional_expression] = STATE(34), - [sym_assignment_expression] = STATE(34), - [sym_cast_expression] = STATE(34), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(34), - [sym_char_literal] = STATE(34), - [sym_labeled_statement] = STATE(503), - [sym_while_statement] = STATE(503), - [sym_continue_statement] = STATE(503), - [sym_goto_statement] = STATE(503), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(34), - [sym_sizeof_expression] = STATE(34), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(34), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(503), - [sym_expression_statement] = STATE(503), - [anon_sym_LBRACE] = ACTIONS(35), - [sym_true] = ACTIONS(5), - [sym_null] = ACTIONS(5), - [anon_sym_do] = ACTIONS(135), - [anon_sym_goto] = ACTIONS(9), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(137), - [anon_sym_for] = ACTIONS(139), - [anon_sym_break] = ACTIONS(57), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(141), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(67), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(5), - [anon_sym_return] = ACTIONS(73), - [anon_sym_while] = ACTIONS(143), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_SEMI] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(2214), + [sym_comment] = ACTIONS(3), }, [1236] = { - [sym_if_statement] = STATE(505), - [sym_do_statement] = STATE(505), - [sym_for_statement] = STATE(505), - [sym__expression] = STATE(34), - [sym_comma_expression] = STATE(35), - [sym_binary_expression] = STATE(34), - [sym_update_expression] = STATE(34), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(505), - [sym_return_statement] = STATE(505), - [sym_break_statement] = STATE(505), - [sym_conditional_expression] = STATE(34), - [sym_assignment_expression] = STATE(34), - [sym_cast_expression] = STATE(34), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(34), - [sym_char_literal] = STATE(34), - [sym_labeled_statement] = STATE(505), - [sym_while_statement] = STATE(505), - [sym_continue_statement] = STATE(505), - [sym_goto_statement] = STATE(505), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(34), - [sym_sizeof_expression] = STATE(34), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(34), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(505), - [sym_expression_statement] = STATE(505), - [anon_sym_LBRACE] = ACTIONS(35), - [sym_true] = ACTIONS(5), - [sym_null] = ACTIONS(5), - [anon_sym_do] = ACTIONS(135), - [anon_sym_goto] = ACTIONS(9), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(137), - [anon_sym_for] = ACTIONS(139), - [anon_sym_break] = ACTIONS(57), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(141), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(67), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(5), - [anon_sym_return] = ACTIONS(73), - [anon_sym_while] = ACTIONS(143), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_SEMI] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [sym_identifier] = ACTIONS(3314), + [sym_comment] = ACTIONS(3), }, [1237] = { - [sym_if_statement] = STATE(506), - [sym_do_statement] = STATE(506), - [sym_for_statement] = STATE(506), - [sym__expression] = STATE(34), - [sym_comma_expression] = STATE(35), - [sym_binary_expression] = STATE(34), - [sym_update_expression] = STATE(34), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(506), - [sym_return_statement] = STATE(506), - [sym_break_statement] = STATE(506), - [sym_conditional_expression] = STATE(34), - [sym_assignment_expression] = STATE(34), - [sym_cast_expression] = STATE(34), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(34), - [sym_char_literal] = STATE(34), - [sym_labeled_statement] = STATE(506), - [sym_while_statement] = STATE(506), - [sym_continue_statement] = STATE(506), - [sym_goto_statement] = STATE(506), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(34), - [sym_sizeof_expression] = STATE(34), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(34), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(506), - [sym_expression_statement] = STATE(506), - [anon_sym_LBRACE] = ACTIONS(35), - [sym_true] = ACTIONS(5), - [sym_null] = ACTIONS(5), - [anon_sym_do] = ACTIONS(135), - [anon_sym_goto] = ACTIONS(9), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(137), - [anon_sym_for] = ACTIONS(139), - [anon_sym_break] = ACTIONS(57), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(141), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(67), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(5), - [anon_sym_return] = ACTIONS(73), - [anon_sym_while] = ACTIONS(143), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_SEMI] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(3316), + [sym_comment] = ACTIONS(3), }, [1238] = { - [sym_if_statement] = STATE(1173), - [sym_do_statement] = STATE(1173), - [sym_for_statement] = STATE(1173), - [sym__expression] = STATE(34), - [sym_comma_expression] = STATE(35), - [sym_binary_expression] = STATE(34), - [sym_update_expression] = STATE(34), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(1173), - [sym_return_statement] = STATE(1173), - [sym_break_statement] = STATE(1173), - [sym_conditional_expression] = STATE(34), - [sym_assignment_expression] = STATE(34), - [sym_cast_expression] = STATE(34), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(34), - [sym_char_literal] = STATE(34), - [sym_labeled_statement] = STATE(1173), - [sym_while_statement] = STATE(1173), - [sym_continue_statement] = STATE(1173), - [sym_goto_statement] = STATE(1173), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(34), - [sym_sizeof_expression] = STATE(34), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(34), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(1173), - [sym_expression_statement] = STATE(1173), - [anon_sym_LBRACE] = ACTIONS(35), - [sym_true] = ACTIONS(5), - [sym_null] = ACTIONS(5), - [anon_sym_do] = ACTIONS(135), - [anon_sym_goto] = ACTIONS(9), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(137), - [anon_sym_for] = ACTIONS(139), - [anon_sym_break] = ACTIONS(57), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(141), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(67), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(5), - [anon_sym_return] = ACTIONS(73), - [anon_sym_while] = ACTIONS(143), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_SEMI] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(3318), + [sym_comment] = ACTIONS(3), }, [1239] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_union_specifier] = STATE(1174), - [sym__type_specifier] = STATE(1174), - [aux_sym_type_definition_repeat1] = STATE(1240), - [sym_sized_type_specifier] = STATE(1174), - [sym_enum_specifier] = STATE(1174), - [sym_macro_type_specifier] = STATE(1174), - [sym_struct_specifier] = STATE(1174), - [sym_type_qualifier] = STATE(1240), - [anon_sym_long] = ACTIONS(27), - [anon_sym_union] = ACTIONS(37), - [anon_sym_const] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(7), - [anon_sym_short] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym__Atomic] = ACTIONS(7), - [sym_primitive_type] = ACTIONS(3267), - [sym_identifier] = ACTIONS(187), - [anon_sym_struct] = ACTIONS(25), - [anon_sym_signed] = ACTIONS(27), - [anon_sym_enum] = ACTIONS(69), + [anon_sym_SEMI] = ACTIONS(3320), + [sym_comment] = ACTIONS(3), }, [1240] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_union_specifier] = STATE(1178), - [sym__type_specifier] = STATE(1178), - [aux_sym_type_definition_repeat1] = STATE(144), - [sym_sized_type_specifier] = STATE(1178), - [sym_enum_specifier] = STATE(1178), - [sym_macro_type_specifier] = STATE(1178), - [sym_struct_specifier] = STATE(1178), - [sym_type_qualifier] = STATE(144), - [anon_sym_long] = ACTIONS(27), - [anon_sym_union] = ACTIONS(37), - [anon_sym_const] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(7), - [anon_sym_short] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym__Atomic] = ACTIONS(7), - [sym_primitive_type] = ACTIONS(3269), - [sym_identifier] = ACTIONS(187), - [anon_sym_struct] = ACTIONS(25), - [anon_sym_signed] = ACTIONS(27), - [anon_sym_enum] = ACTIONS(69), + [anon_sym_LPAREN2] = ACTIONS(3322), + [sym_comment] = ACTIONS(3), }, [1241] = { - [sym__expression] = STATE(1242), - [sym_comma_expression] = STATE(1243), - [sym_binary_expression] = STATE(1242), - [sym_declaration] = STATE(1180), - [sym_update_expression] = STATE(1242), - [sym_call_expression] = STATE(36), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(130), - [sym_union_specifier] = STATE(130), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_conditional_expression] = STATE(1242), - [sym_assignment_expression] = STATE(1242), - [sym_cast_expression] = STATE(1242), - [sym__declaration_specifiers] = STATE(165), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1242), - [sym_char_literal] = STATE(1242), - [sym_sized_type_specifier] = STATE(130), - [sym_enum_specifier] = STATE(130), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1242), - [sym_sizeof_expression] = STATE(1242), - [sym_attribute_specifier] = STATE(43), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1242), - [sym_string_literal] = STATE(41), - [sym_macro_type_specifier] = STATE(130), - [sym_storage_class_specifier] = STATE(43), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_struct_specifier] = STATE(130), - [sym_true] = ACTIONS(3271), - [anon_sym_restrict] = ACTIONS(7), - [sym_null] = ACTIONS(3271), - [anon_sym_const] = ACTIONS(7), - [anon_sym_DASH_DASH] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(7), - [sym_identifier] = ACTIONS(481), - [sym_number_literal] = ACTIONS(3273), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_extern] = ACTIONS(63), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_struct] = ACTIONS(25), - [anon_sym_signed] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(27), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_sizeof] = ACTIONS(33), - [anon_sym_union] = ACTIONS(37), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_short] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(348), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [anon_sym_static] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_register] = ACTIONS(63), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_enum] = ACTIONS(69), - [sym_false] = ACTIONS(3271), - [anon_sym_SEMI] = ACTIONS(3275), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_auto] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), + [anon_sym_LF] = ACTIONS(3324), + [sym_comment] = ACTIONS(2827), }, [1242] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_COMMA] = ACTIONS(293), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_SEMI] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [aux_sym_preproc_if_token2] = ACTIONS(3326), + [sym_comment] = ACTIONS(3), }, [1243] = { + [aux_sym_preproc_if_token2] = ACTIONS(3328), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(3277), }, [1244] = { - [sym_if_statement] = STATE(1192), - [sym_do_statement] = STATE(1192), - [sym_for_statement] = STATE(1192), - [sym__expression] = STATE(34), - [sym_comma_expression] = STATE(35), - [sym_binary_expression] = STATE(34), - [sym_update_expression] = STATE(34), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(1192), - [sym_return_statement] = STATE(1192), - [sym_break_statement] = STATE(1192), - [sym_conditional_expression] = STATE(34), - [sym_assignment_expression] = STATE(34), - [sym_cast_expression] = STATE(34), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(34), - [sym_char_literal] = STATE(34), - [sym_labeled_statement] = STATE(1192), - [sym_while_statement] = STATE(1192), - [sym_continue_statement] = STATE(1192), - [sym_goto_statement] = STATE(1192), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(34), - [sym_sizeof_expression] = STATE(34), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(34), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(1192), - [sym_expression_statement] = STATE(1192), - [anon_sym_LBRACE] = ACTIONS(35), - [sym_true] = ACTIONS(5), - [sym_null] = ACTIONS(5), - [anon_sym_do] = ACTIONS(135), - [anon_sym_goto] = ACTIONS(9), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(137), - [anon_sym_for] = ACTIONS(139), - [anon_sym_break] = ACTIONS(57), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(141), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(67), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(5), - [anon_sym_return] = ACTIONS(73), - [anon_sym_while] = ACTIONS(143), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_SEMI] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(3330), + [sym_comment] = ACTIONS(3), }, [1245] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_union_specifier] = STATE(1193), - [sym__type_specifier] = STATE(1193), - [aux_sym_type_definition_repeat1] = STATE(1246), - [sym_sized_type_specifier] = STATE(1193), - [sym_enum_specifier] = STATE(1193), - [sym_macro_type_specifier] = STATE(1193), - [sym_struct_specifier] = STATE(1193), - [sym_type_qualifier] = STATE(1246), - [anon_sym_long] = ACTIONS(27), - [anon_sym_union] = ACTIONS(37), - [anon_sym_const] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(7), - [anon_sym_short] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym__Atomic] = ACTIONS(7), - [sym_primitive_type] = ACTIONS(3279), - [sym_identifier] = ACTIONS(187), - [anon_sym_struct] = ACTIONS(25), - [anon_sym_signed] = ACTIONS(27), - [anon_sym_enum] = ACTIONS(69), + [anon_sym_SEMI] = ACTIONS(3332), + [sym_comment] = ACTIONS(3), }, [1246] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_union_specifier] = STATE(1195), - [sym__type_specifier] = STATE(1195), - [aux_sym_type_definition_repeat1] = STATE(144), - [sym_sized_type_specifier] = STATE(1195), - [sym_enum_specifier] = STATE(1195), - [sym_macro_type_specifier] = STATE(1195), - [sym_struct_specifier] = STATE(1195), - [sym_type_qualifier] = STATE(144), - [anon_sym_long] = ACTIONS(27), - [anon_sym_union] = ACTIONS(37), - [anon_sym_const] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_restrict] = ACTIONS(7), - [anon_sym_short] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym__Atomic] = ACTIONS(7), - [sym_primitive_type] = ACTIONS(3281), - [sym_identifier] = ACTIONS(187), - [anon_sym_struct] = ACTIONS(25), - [anon_sym_signed] = ACTIONS(27), - [anon_sym_enum] = ACTIONS(69), + [aux_sym_preproc_if_token2] = ACTIONS(3334), + [sym_comment] = ACTIONS(3), }, [1247] = { - [sym__expression] = STATE(1248), - [sym_comma_expression] = STATE(1249), - [sym_binary_expression] = STATE(1248), - [sym_declaration] = STATE(1197), - [sym_update_expression] = STATE(1248), - [sym_call_expression] = STATE(36), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(130), - [sym_union_specifier] = STATE(130), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_conditional_expression] = STATE(1248), - [sym_assignment_expression] = STATE(1248), - [sym_cast_expression] = STATE(1248), - [sym__declaration_specifiers] = STATE(165), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1248), - [sym_char_literal] = STATE(1248), - [sym_sized_type_specifier] = STATE(130), - [sym_enum_specifier] = STATE(130), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1248), - [sym_sizeof_expression] = STATE(1248), - [sym_attribute_specifier] = STATE(43), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1248), - [sym_string_literal] = STATE(41), - [sym_macro_type_specifier] = STATE(130), - [sym_storage_class_specifier] = STATE(43), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_struct_specifier] = STATE(130), - [sym_true] = ACTIONS(3283), - [anon_sym_restrict] = ACTIONS(7), - [sym_null] = ACTIONS(3283), - [anon_sym_const] = ACTIONS(7), - [anon_sym_DASH_DASH] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(7), - [sym_identifier] = ACTIONS(481), - [sym_number_literal] = ACTIONS(3285), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_extern] = ACTIONS(63), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_struct] = ACTIONS(25), - [anon_sym_signed] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(27), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_sizeof] = ACTIONS(33), - [anon_sym_union] = ACTIONS(37), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_short] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(348), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [anon_sym_static] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_register] = ACTIONS(63), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_enum] = ACTIONS(69), - [sym_false] = ACTIONS(3283), - [anon_sym_SEMI] = ACTIONS(3287), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_auto] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), + [aux_sym_preproc_if_token2] = ACTIONS(3336), + [sym_comment] = ACTIONS(3), }, [1248] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_COMMA] = ACTIONS(293), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_SEMI] = ACTIONS(3289), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [aux_sym_preproc_if_token2] = ACTIONS(3338), + [sym_comment] = ACTIONS(3), }, [1249] = { + [anon_sym_SEMI] = ACTIONS(2807), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(3289), }, [1250] = { - [sym_if_statement] = STATE(1205), - [sym_do_statement] = STATE(1205), - [sym_for_statement] = STATE(1205), - [sym__expression] = STATE(34), - [sym_comma_expression] = STATE(35), - [sym_binary_expression] = STATE(34), - [sym_update_expression] = STATE(34), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(1205), - [sym_return_statement] = STATE(1205), - [sym_break_statement] = STATE(1205), - [sym_conditional_expression] = STATE(34), - [sym_assignment_expression] = STATE(34), - [sym_cast_expression] = STATE(34), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(34), - [sym_char_literal] = STATE(34), - [sym_labeled_statement] = STATE(1205), - [sym_while_statement] = STATE(1205), - [sym_continue_statement] = STATE(1205), - [sym_goto_statement] = STATE(1205), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(34), - [sym_sizeof_expression] = STATE(34), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(34), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(1205), - [sym_expression_statement] = STATE(1205), - [anon_sym_LBRACE] = ACTIONS(35), - [sym_true] = ACTIONS(5), - [sym_null] = ACTIONS(5), - [anon_sym_do] = ACTIONS(135), - [anon_sym_goto] = ACTIONS(9), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(137), - [anon_sym_for] = ACTIONS(139), - [anon_sym_break] = ACTIONS(57), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(141), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(67), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(5), - [anon_sym_return] = ACTIONS(73), - [anon_sym_while] = ACTIONS(143), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_SEMI] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_RPAREN] = ACTIONS(2318), + [sym_comment] = ACTIONS(3), }, [1251] = { - [sym__expression] = STATE(1252), - [sym_comma_expression] = STATE(1253), - [sym_binary_expression] = STATE(1252), - [sym_declaration] = STATE(1208), - [sym_update_expression] = STATE(1252), - [sym_call_expression] = STATE(36), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(130), - [sym_union_specifier] = STATE(130), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_conditional_expression] = STATE(1252), - [sym_assignment_expression] = STATE(1252), - [sym_cast_expression] = STATE(1252), - [sym__declaration_specifiers] = STATE(165), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1252), - [sym_char_literal] = STATE(1252), - [sym_sized_type_specifier] = STATE(130), - [sym_enum_specifier] = STATE(130), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1252), - [sym_sizeof_expression] = STATE(1252), - [sym_attribute_specifier] = STATE(43), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1252), - [sym_string_literal] = STATE(41), - [sym_macro_type_specifier] = STATE(130), - [sym_storage_class_specifier] = STATE(43), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_struct_specifier] = STATE(130), - [sym_true] = ACTIONS(3291), - [anon_sym_restrict] = ACTIONS(7), - [sym_null] = ACTIONS(3291), - [anon_sym_const] = ACTIONS(7), - [anon_sym_DASH_DASH] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(7), - [sym_identifier] = ACTIONS(481), - [sym_number_literal] = ACTIONS(3293), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_extern] = ACTIONS(63), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_struct] = ACTIONS(25), - [anon_sym_signed] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(27), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_sizeof] = ACTIONS(33), - [anon_sym_union] = ACTIONS(37), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_short] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(348), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [anon_sym_static] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_register] = ACTIONS(63), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_enum] = ACTIONS(69), - [sym_false] = ACTIONS(3291), - [anon_sym_SEMI] = ACTIONS(3295), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_auto] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), + [anon_sym_RPAREN] = ACTIONS(2320), + [sym_comment] = ACTIONS(3), }, [1252] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_COMMA] = ACTIONS(293), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_SEMI] = ACTIONS(3297), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [anon_sym_LPAREN2] = ACTIONS(3340), + [sym_comment] = ACTIONS(3), }, [1253] = { - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(3297), + [anon_sym_LF] = ACTIONS(3342), + [sym_comment] = ACTIONS(2827), }, [1254] = { - [sym_if_statement] = STATE(1214), - [sym_do_statement] = STATE(1214), - [sym_for_statement] = STATE(1214), - [sym__expression] = STATE(34), - [sym_comma_expression] = STATE(35), - [sym_binary_expression] = STATE(34), - [sym_update_expression] = STATE(34), - [sym_call_expression] = STATE(36), - [sym_switch_statement] = STATE(1214), - [sym_return_statement] = STATE(1214), - [sym_break_statement] = STATE(1214), - [sym_conditional_expression] = STATE(34), - [sym_assignment_expression] = STATE(34), - [sym_cast_expression] = STATE(34), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(34), - [sym_char_literal] = STATE(34), - [sym_labeled_statement] = STATE(1214), - [sym_while_statement] = STATE(1214), - [sym_continue_statement] = STATE(1214), - [sym_goto_statement] = STATE(1214), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(34), - [sym_sizeof_expression] = STATE(34), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(34), - [sym_string_literal] = STATE(41), - [sym_compound_statement] = STATE(1214), - [sym_expression_statement] = STATE(1214), - [anon_sym_LBRACE] = ACTIONS(35), - [sym_true] = ACTIONS(5), - [sym_null] = ACTIONS(5), - [anon_sym_do] = ACTIONS(135), - [anon_sym_goto] = ACTIONS(9), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(137), - [anon_sym_for] = ACTIONS(139), - [anon_sym_break] = ACTIONS(57), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_if] = ACTIONS(141), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_switch] = ACTIONS(67), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(5), - [anon_sym_return] = ACTIONS(73), - [anon_sym_while] = ACTIONS(143), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_SEMI] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(2314), + [sym_comment] = ACTIONS(3), }, [1255] = { + [aux_sym_preproc_if_token2] = ACTIONS(3344), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(3299), }, [1256] = { - [sym_parenthesized_expression] = STATE(1221), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(233), + [anon_sym_LF] = ACTIONS(3346), + [sym_comment] = ACTIONS(2827), }, [1257] = { - [sym_parenthesized_expression] = STATE(1222), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(233), + [anon_sym_LF] = ACTIONS(3348), + [sym_comment] = ACTIONS(2827), }, [1258] = { - [anon_sym_GT_GT] = ACTIONS(197), - [anon_sym_PERCENT_EQ] = ACTIONS(199), - [anon_sym_DASH_EQ] = ACTIONS(199), - [anon_sym_PIPE] = ACTIONS(197), - [anon_sym_EQ_EQ] = ACTIONS(203), - [anon_sym_SLASH] = ACTIONS(197), - [anon_sym_DASH_GT] = ACTIONS(203), - [anon_sym_LT_LT] = ACTIONS(197), - [anon_sym_DASH_DASH] = ACTIONS(203), - [anon_sym_PLUS_EQ] = ACTIONS(199), - [anon_sym_LT_LT_EQ] = ACTIONS(199), - [anon_sym_QMARK] = ACTIONS(203), - [anon_sym_BANG_EQ] = ACTIONS(203), - [anon_sym_CARET_EQ] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(203), - [anon_sym_PLUS_PLUS] = ACTIONS(203), - [sym_comment] = ACTIONS(3), - [anon_sym_GT_GT_EQ] = ACTIONS(199), - [anon_sym_GT] = ACTIONS(197), - [anon_sym_PIPE_EQ] = ACTIONS(199), - [anon_sym_AMP_EQ] = ACTIONS(199), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_AMP] = ACTIONS(197), - [anon_sym_EQ] = ACTIONS(209), - [anon_sym_LPAREN2] = ACTIONS(203), - [anon_sym_GT_EQ] = ACTIONS(203), - [anon_sym_COLON] = ACTIONS(211), - [anon_sym_STAR_EQ] = ACTIONS(199), - [anon_sym_PIPE_PIPE] = ACTIONS(203), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_LT_EQ] = ACTIONS(203), - [anon_sym_STAR] = ACTIONS(197), - [anon_sym_SLASH_EQ] = ACTIONS(199), - [anon_sym_AMP_AMP] = ACTIONS(203), - [anon_sym_SEMI] = ACTIONS(203), - [anon_sym_CARET] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_DOT] = ACTIONS(203), - [anon_sym_LT] = ACTIONS(197), - [anon_sym_LBRACK] = ACTIONS(203), + [aux_sym_preproc_if_token2] = ACTIONS(3350), + [sym_comment] = ACTIONS(3), }, [1259] = { - [anon_sym_else] = ACTIONS(3301), - [anon_sym_while] = ACTIONS(986), + [aux_sym_preproc_if_token2] = ACTIONS(3352), [sym_comment] = ACTIONS(3), }, [1260] = { - [sym_char_literal] = STATE(1262), - [sym__expression] = STATE(1262), - [sym_comma_expression] = STATE(1263), - [sym_binary_expression] = STATE(1262), - [sym_update_expression] = STATE(1262), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1262), - [sym_sizeof_expression] = STATE(1262), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1262), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1262), - [sym_cast_expression] = STATE(1262), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1262), - [sym_true] = ACTIONS(3303), - [sym_null] = ACTIONS(3303), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(3305), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(3303), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_RPAREN] = ACTIONS(3307), - [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(2308), + [sym_comment] = ACTIONS(3), }, [1261] = { - [sym_char_literal] = STATE(1266), - [sym__expression] = STATE(1266), - [sym_comma_expression] = STATE(1267), - [sym_binary_expression] = STATE(1266), - [sym_update_expression] = STATE(1266), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1266), - [sym_sizeof_expression] = STATE(1266), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1266), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(1266), - [sym_assignment_expression] = STATE(1266), - [sym_cast_expression] = STATE(1266), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1266), - [sym_true] = ACTIONS(3309), - [sym_null] = ACTIONS(3309), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(3309), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_RPAREN] = ACTIONS(3313), - [anon_sym_sizeof] = ACTIONS(33), + [aux_sym_preproc_if_token2] = ACTIONS(3354), + [sym_comment] = ACTIONS(3), }, [1262] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_COMMA] = ACTIONS(293), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_RPAREN] = ACTIONS(3315), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [sym_identifier] = ACTIONS(3356), + [sym_comment] = ACTIONS(3), }, [1263] = { - [anon_sym_RPAREN] = ACTIONS(3315), + [anon_sym_RPAREN] = ACTIONS(2304), [sym_comment] = ACTIONS(3), }, [1264] = { - [sym_char_literal] = STATE(1269), - [sym__expression] = STATE(1269), - [sym_comma_expression] = STATE(1270), - [sym_binary_expression] = STATE(1269), - [sym_update_expression] = STATE(1269), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1269), - [sym_sizeof_expression] = STATE(1269), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1269), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(1269), - [sym_assignment_expression] = STATE(1269), - [sym_cast_expression] = STATE(1269), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1269), - [sym_true] = ACTIONS(3317), - [sym_null] = ACTIONS(3317), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(3319), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(3317), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_RPAREN] = ACTIONS(3321), - [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(2288), + [sym_comment] = ACTIONS(3), }, [1265] = { - [sym_char_literal] = STATE(1271), - [sym__expression] = STATE(1271), - [sym_comma_expression] = STATE(1272), - [sym_binary_expression] = STATE(1271), - [sym_update_expression] = STATE(1271), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1271), - [sym_sizeof_expression] = STATE(1271), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1271), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1271), - [sym_cast_expression] = STATE(1271), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1271), - [sym_true] = ACTIONS(3323), - [sym_null] = ACTIONS(3323), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(3325), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(3323), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_RPAREN] = ACTIONS(3327), - [anon_sym_sizeof] = ACTIONS(33), + [sym_preproc_arg] = ACTIONS(3358), + [sym_comment] = ACTIONS(2827), }, [1266] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_COMMA] = ACTIONS(293), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_RPAREN] = ACTIONS(3329), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [aux_sym_preproc_if_token2] = ACTIONS(3360), + [sym_comment] = ACTIONS(3), }, [1267] = { - [anon_sym_RPAREN] = ACTIONS(3329), + [anon_sym_SQUOTE] = ACTIONS(3362), [sym_comment] = ACTIONS(3), }, [1268] = { - [sym_char_literal] = STATE(1274), - [sym__expression] = STATE(1274), - [sym_comma_expression] = STATE(1275), - [sym_binary_expression] = STATE(1274), - [sym_update_expression] = STATE(1274), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1274), - [sym_sizeof_expression] = STATE(1274), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1274), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(1274), - [sym_assignment_expression] = STATE(1274), - [sym_cast_expression] = STATE(1274), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1274), - [sym_true] = ACTIONS(3331), - [sym_null] = ACTIONS(3331), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(3333), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(3331), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_RPAREN] = ACTIONS(3335), - [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_LPAREN2] = ACTIONS(3364), + [sym_comment] = ACTIONS(3), }, [1269] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_COMMA] = ACTIONS(293), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_RPAREN] = ACTIONS(3337), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [aux_sym_preproc_if_token2] = ACTIONS(3366), + [sym_comment] = ACTIONS(3), }, [1270] = { - [anon_sym_RPAREN] = ACTIONS(3337), + [aux_sym_preproc_if_token2] = ACTIONS(3368), [sym_comment] = ACTIONS(3), }, [1271] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_COMMA] = ACTIONS(293), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_RPAREN] = ACTIONS(3339), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [anon_sym_LF] = ACTIONS(3370), + [sym_comment] = ACTIONS(2827), }, [1272] = { - [anon_sym_RPAREN] = ACTIONS(3339), + [anon_sym_RPAREN] = ACTIONS(2222), [sym_comment] = ACTIONS(3), }, [1273] = { - [sym_char_literal] = STATE(1276), - [sym__expression] = STATE(1276), - [sym_comma_expression] = STATE(1277), - [sym_binary_expression] = STATE(1276), - [sym_update_expression] = STATE(1276), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1276), - [sym_sizeof_expression] = STATE(1276), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1276), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(1276), - [sym_assignment_expression] = STATE(1276), - [sym_cast_expression] = STATE(1276), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1276), - [sym_true] = ACTIONS(3341), - [sym_null] = ACTIONS(3341), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(3343), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(3341), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_RPAREN] = ACTIONS(3345), - [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(3372), + [sym_comment] = ACTIONS(3), }, [1274] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_COMMA] = ACTIONS(293), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_RPAREN] = ACTIONS(3347), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [anon_sym_RPAREN] = ACTIONS(2280), + [sym_comment] = ACTIONS(3), }, [1275] = { - [anon_sym_RPAREN] = ACTIONS(3347), + [anon_sym_SEMI] = ACTIONS(2224), [sym_comment] = ACTIONS(3), }, [1276] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_COMMA] = ACTIONS(293), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_RPAREN] = ACTIONS(3349), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [aux_sym_preproc_if_token2] = ACTIONS(3374), + [sym_comment] = ACTIONS(3), }, [1277] = { - [anon_sym_RPAREN] = ACTIONS(3349), + [anon_sym_RPAREN] = ACTIONS(2274), [sym_comment] = ACTIONS(3), }, [1278] = { + [anon_sym_RPAREN] = ACTIONS(2272), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(3351), }, [1279] = { + [anon_sym_RPAREN] = ACTIONS(2270), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(3353), }, [1280] = { + [anon_sym_RPAREN] = ACTIONS(2268), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(3355), }, [1281] = { - [sym_char_literal] = STATE(1283), - [sym__expression] = STATE(1283), - [sym_binary_expression] = STATE(1283), - [sym_update_expression] = STATE(1283), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1283), - [sym_sizeof_expression] = STATE(1283), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1283), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(1283), - [sym_assignment_expression] = STATE(1283), - [sym_cast_expression] = STATE(1283), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1283), - [sym_true] = ACTIONS(3357), - [sym_null] = ACTIONS(3357), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(3357), - [anon_sym_SEMI] = ACTIONS(3361), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_RPAREN] = ACTIONS(2264), + [sym_comment] = ACTIONS(3), }, [1282] = { - [sym_char_literal] = STATE(1285), - [sym__expression] = STATE(1285), - [sym_binary_expression] = STATE(1285), - [sym_update_expression] = STATE(1285), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1285), - [sym_sizeof_expression] = STATE(1285), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1285), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(1285), - [sym_assignment_expression] = STATE(1285), - [sym_cast_expression] = STATE(1285), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1285), - [sym_true] = ACTIONS(3363), - [sym_null] = ACTIONS(3363), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(3365), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(3363), - [anon_sym_SEMI] = ACTIONS(3367), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_LF] = ACTIONS(3376), + [sym_comment] = ACTIONS(2827), }, [1283] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_SEMI] = ACTIONS(3369), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [anon_sym_RPAREN] = ACTIONS(2260), + [sym_comment] = ACTIONS(3), }, [1284] = { - [sym_char_literal] = STATE(1286), - [sym__expression] = STATE(1286), - [sym_binary_expression] = STATE(1286), - [sym_update_expression] = STATE(1286), - [sym_call_expression] = STATE(36), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1286), - [sym_sizeof_expression] = STATE(1286), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1286), - [sym_string_literal] = STATE(41), - [sym_conditional_expression] = STATE(1286), - [sym_assignment_expression] = STATE(1286), - [sym_cast_expression] = STATE(1286), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1286), - [sym_true] = ACTIONS(3371), - [sym_null] = ACTIONS(3371), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [anon_sym_DASH_DASH] = ACTIONS(13), - [sym_identifier] = ACTIONS(171), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [sym_number_literal] = ACTIONS(3373), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_false] = ACTIONS(3371), - [anon_sym_SEMI] = ACTIONS(3375), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(3378), + [sym_comment] = ACTIONS(3), }, [1285] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_SEMI] = ACTIONS(3377), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [anon_sym_RPAREN] = ACTIONS(2256), + [sym_comment] = ACTIONS(3), }, [1286] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_SEMI] = ACTIONS(3379), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [aux_sym_preproc_if_token2] = ACTIONS(3380), + [sym_comment] = ACTIONS(3), }, [1287] = { - [sym__expression] = STATE(1288), - [sym_comma_expression] = STATE(1289), - [sym_binary_expression] = STATE(1288), - [sym_declaration] = STATE(1282), - [sym_update_expression] = STATE(1288), - [sym_call_expression] = STATE(36), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(130), - [sym_union_specifier] = STATE(130), - [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_conditional_expression] = STATE(1288), - [sym_assignment_expression] = STATE(1288), - [sym_cast_expression] = STATE(1288), - [sym__declaration_specifiers] = STATE(165), - [sym_field_expression] = STATE(36), - [sym_compound_literal_expression] = STATE(1288), - [sym_char_literal] = STATE(1288), - [sym_sized_type_specifier] = STATE(130), - [sym_enum_specifier] = STATE(130), - [sym_pointer_expression] = STATE(36), - [sym_unary_expression] = STATE(1288), - [sym_sizeof_expression] = STATE(1288), - [sym_attribute_specifier] = STATE(43), - [sym_subscript_expression] = STATE(36), - [sym_parenthesized_expression] = STATE(36), - [sym_concatenated_string] = STATE(1288), - [sym_string_literal] = STATE(41), - [sym_macro_type_specifier] = STATE(130), - [sym_storage_class_specifier] = STATE(43), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [sym_struct_specifier] = STATE(130), - [sym_true] = ACTIONS(3381), - [anon_sym_restrict] = ACTIONS(7), - [sym_null] = ACTIONS(3381), - [anon_sym_const] = ACTIONS(7), - [anon_sym_DASH_DASH] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(7), - [sym_identifier] = ACTIONS(481), - [sym_number_literal] = ACTIONS(3383), - [anon_sym_volatile] = ACTIONS(7), - [anon_sym_SQUOTE] = ACTIONS(21), - [anon_sym_extern] = ACTIONS(63), - [anon_sym_PLUS_PLUS] = ACTIONS(13), - [anon_sym_struct] = ACTIONS(25), - [anon_sym_signed] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_long] = ACTIONS(27), - [anon_sym_L_SQUOTE] = ACTIONS(21), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_sizeof] = ACTIONS(33), - [anon_sym_union] = ACTIONS(37), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_short] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_L_DQUOTE] = ACTIONS(49), - [anon_sym_LPAREN2] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(348), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(61), - [anon_sym_static] = ACTIONS(63), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_register] = ACTIONS(63), - [anon_sym_STAR] = ACTIONS(43), - [anon_sym_enum] = ACTIONS(69), - [sym_false] = ACTIONS(3381), - [anon_sym_SEMI] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_auto] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), + [aux_sym_preproc_if_token2] = ACTIONS(3382), + [sym_comment] = ACTIONS(3), }, [1288] = { - [sym_argument_list] = STATE(111), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(273), - [anon_sym_EQ_EQ] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_DASH_GT] = ACTIONS(281), - [anon_sym_LPAREN2] = ACTIONS(283), - [anon_sym_GT_EQ] = ACTIONS(285), - [anon_sym_LT_LT] = ACTIONS(269), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_BANG_EQ] = ACTIONS(275), - [anon_sym_COMMA] = ACTIONS(293), - [anon_sym_DASH] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(273), - [sym_comment] = ACTIONS(3), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(303), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_SEMI] = ACTIONS(3387), - [anon_sym_PLUS] = ACTIONS(295), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LT] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(305), + [anon_sym_RPAREN] = ACTIONS(2240), + [sym_comment] = ACTIONS(3), }, [1289] = { + [anon_sym_LPAREN2] = ACTIONS(3384), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(3387), }, [1290] = { + [anon_sym_LPAREN2] = ACTIONS(3386), + [sym_comment] = ACTIONS(3), + }, + [1291] = { + [anon_sym_LPAREN2] = ACTIONS(3388), + [sym_comment] = ACTIONS(3), + }, + [1292] = { + [anon_sym_SEMI] = ACTIONS(2266), + [sym_comment] = ACTIONS(3), + }, + [1293] = { + [aux_sym_preproc_if_token2] = ACTIONS(3390), + [sym_comment] = ACTIONS(3), + }, + [1294] = { + [anon_sym_RPAREN] = ACTIONS(3392), + [sym_comment] = ACTIONS(3), + }, + [1295] = { + [aux_sym_preproc_if_token2] = ACTIONS(3394), + [sym_comment] = ACTIONS(3), + }, + [1296] = { + [anon_sym_RPAREN] = ACTIONS(2262), + [sym_comment] = ACTIONS(3), + }, + [1297] = { + [anon_sym_LF] = ACTIONS(3396), + [sym_comment] = ACTIONS(2827), + }, + [1298] = { + [sym_identifier] = ACTIONS(3398), + [sym_comment] = ACTIONS(3), + }, + [1299] = { + [anon_sym_SEMI] = ACTIONS(3400), + [sym_comment] = ACTIONS(3), + }, + [1300] = { + [anon_sym_SEMI] = ACTIONS(2220), + [sym_comment] = ACTIONS(3), + }, + [1301] = { + [anon_sym_LPAREN2] = ACTIONS(3402), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(3389), }, }; @@ -52344,1596 +52463,1602 @@ static TSParseActionEntry ts_parse_actions[] = { [0] = {.count = 0, .reusable = false}, [1] = {.count = 1, .reusable = false}, RECOVER(), [3] = {.count = 1, .reusable = true}, SHIFT_EXTRA(), - [5] = {.count = 1, .reusable = false}, SHIFT(34), - [7] = {.count = 1, .reusable = false}, SHIFT(4), - [9] = {.count = 1, .reusable = false}, SHIFT(6), - [11] = {.count = 1, .reusable = false}, SHIFT(12), - [13] = {.count = 1, .reusable = true}, SHIFT(13), - [15] = {.count = 1, .reusable = false}, SHIFT(15), - [17] = {.count = 1, .reusable = false}, SHIFT(18), - [19] = {.count = 1, .reusable = true}, SHIFT(34), - [21] = {.count = 1, .reusable = true}, SHIFT(26), - [23] = {.count = 1, .reusable = false}, SHIFT(21), - [25] = {.count = 1, .reusable = false}, SHIFT(23), - [27] = {.count = 1, .reusable = false}, SHIFT(38), - [29] = {.count = 1, .reusable = false}, SHIFT(28), - [31] = {.count = 1, .reusable = false}, SHIFT(32), - [33] = {.count = 1, .reusable = false}, SHIFT(33), - [35] = {.count = 1, .reusable = true}, SHIFT(2), - [37] = {.count = 1, .reusable = false}, SHIFT(3), - [39] = {.count = 1, .reusable = false}, SHIFT(5), - [41] = {.count = 1, .reusable = false}, SHIFT(7), - [43] = {.count = 1, .reusable = true}, SHIFT(8), - [45] = {.count = 1, .reusable = false}, SHIFT(9), - [47] = {.count = 1, .reusable = true}, SHIFT(10), - [49] = {.count = 1, .reusable = true}, SHIFT(14), - [51] = {.count = 1, .reusable = true}, SHIFT(11), - [53] = {.count = 1, .reusable = false}, SHIFT(37), - [55] = {.count = 1, .reusable = false}, SHIFT(16), - [57] = {.count = 1, .reusable = false}, SHIFT(17), - [59] = {.count = 1, .reusable = false}, SHIFT(19), - [61] = {.count = 1, .reusable = false}, SHIFT(10), - [63] = {.count = 1, .reusable = false}, SHIFT(20), - [65] = {.count = 1, .reusable = false}, SHIFT(22), - [67] = {.count = 1, .reusable = false}, SHIFT(24), - [69] = {.count = 1, .reusable = false}, SHIFT(25), - [71] = {.count = 1, .reusable = true}, REDUCE(sym_translation_unit, 0), - [73] = {.count = 1, .reusable = false}, SHIFT(27), - [75] = {.count = 1, .reusable = false}, SHIFT(29), - [77] = {.count = 1, .reusable = true}, SHIFT(30), - [79] = {.count = 1, .reusable = false}, SHIFT(31), - [81] = {.count = 1, .reusable = false}, SHIFT(867), - [83] = {.count = 1, .reusable = false}, SHIFT(1144), - [85] = {.count = 1, .reusable = false}, SHIFT(1217), - [87] = {.count = 1, .reusable = false}, SHIFT(859), - [89] = {.count = 1, .reusable = false}, SHIFT(1147), - [91] = {.count = 1, .reusable = true}, SHIFT(867), - [93] = {.count = 1, .reusable = false}, SHIFT(1148), - [95] = {.count = 1, .reusable = false}, SHIFT(864), - [97] = {.count = 1, .reusable = true}, SHIFT(854), - [99] = {.count = 1, .reusable = false}, SHIFT(1216), - [101] = {.count = 1, .reusable = false}, SHIFT(855), - [103] = {.count = 1, .reusable = false}, SHIFT(1145), - [105] = {.count = 1, .reusable = true}, SHIFT(44), - [107] = {.count = 1, .reusable = false}, SHIFT(869), - [109] = {.count = 1, .reusable = false}, SHIFT(1255), - [111] = {.count = 1, .reusable = false}, SHIFT(860), - [113] = {.count = 1, .reusable = false}, SHIFT(861), - [115] = {.count = 1, .reusable = false}, SHIFT(862), - [117] = {.count = 1, .reusable = false}, SHIFT(1149), - [119] = {.count = 1, .reusable = false}, SHIFT(863), - [121] = {.count = 1, .reusable = false}, SHIFT(865), - [123] = {.count = 1, .reusable = true}, SHIFT(508), - [125] = {.count = 1, .reusable = false}, SHIFT(1150), - [127] = {.count = 1, .reusable = true}, SHIFT(46), - [129] = {.count = 1, .reusable = true}, SHIFT(47), - [131] = {.count = 1, .reusable = true}, REDUCE(sym_type_qualifier, 1), - [133] = {.count = 1, .reusable = false}, REDUCE(sym_type_qualifier, 1), - [135] = {.count = 1, .reusable = false}, SHIFT(1238), - [137] = {.count = 1, .reusable = false}, SHIFT(49), - [139] = {.count = 1, .reusable = false}, SHIFT(1290), - [141] = {.count = 1, .reusable = false}, SHIFT(1256), - [143] = {.count = 1, .reusable = false}, SHIFT(1257), - [145] = {.count = 1, .reusable = true}, SHIFT(51), - [147] = {.count = 1, .reusable = false}, SHIFT_EXTRA(), - [149] = {.count = 1, .reusable = false}, SHIFT(52), - [151] = {.count = 1, .reusable = false}, SHIFT(53), - [153] = {.count = 1, .reusable = false}, SHIFT(54), - [155] = {.count = 1, .reusable = true}, SHIFT(856), - [157] = {.count = 1, .reusable = true}, SHIFT(1146), - [159] = {.count = 1, .reusable = true}, SHIFT(857), - [161] = {.count = 1, .reusable = false}, SHIFT(856), - [163] = {.count = 1, .reusable = true}, SHIFT(54), - [165] = {.count = 1, .reusable = false}, SHIFT(866), - [167] = {.count = 1, .reusable = false}, SHIFT(55), - [169] = {.count = 1, .reusable = false}, SHIFT(56), - [171] = {.count = 1, .reusable = false}, SHIFT(36), - [173] = {.count = 1, .reusable = true}, SHIFT(56), - [175] = {.count = 1, .reusable = false}, SHIFT(59), - [177] = {.count = 1, .reusable = false}, SHIFT(509), - [179] = {.count = 1, .reusable = false}, SHIFT(62), - [181] = {.count = 1, .reusable = false}, SHIFT(57), - [183] = {.count = 1, .reusable = true}, SHIFT(59), - [185] = {.count = 1, .reusable = false}, SHIFT(64), - [187] = {.count = 1, .reusable = false}, SHIFT(63), - [189] = {.count = 1, .reusable = false}, SHIFT(66), - [191] = {.count = 1, .reusable = true}, SHIFT(66), - [193] = {.count = 1, .reusable = true}, SHIFT(68), - [195] = {.count = 1, .reusable = false}, SHIFT(67), - [197] = {.count = 1, .reusable = false}, REDUCE(sym__expression, 1), - [199] = {.count = 1, .reusable = true}, SHIFT(69), - [201] = {.count = 1, .reusable = false}, REDUCE(sym__type_specifier, 1, .production_id = 1), - [203] = {.count = 1, .reusable = true}, REDUCE(sym__expression, 1), - [205] = {.count = 3, .reusable = true}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), SHIFT(70), - [209] = {.count = 1, .reusable = false}, SHIFT(69), - [211] = {.count = 1, .reusable = true}, SHIFT(71), - [213] = {.count = 2, .reusable = false}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), - [216] = {.count = 2, .reusable = true}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), - [219] = {.count = 1, .reusable = true}, SHIFT(72), - [221] = {.count = 1, .reusable = true}, SHIFT(73), - [223] = {.count = 1, .reusable = true}, SHIFT(74), - [225] = {.count = 1, .reusable = true}, SHIFT(858), - [227] = {.count = 1, .reusable = true}, SHIFT(75), - [229] = {.count = 1, .reusable = false}, REDUCE(sym_storage_class_specifier, 1), - [231] = {.count = 1, .reusable = true}, REDUCE(sym_storage_class_specifier, 1), - [233] = {.count = 1, .reusable = true}, SHIFT(77), - [235] = {.count = 1, .reusable = true}, SHIFT(79), - [237] = {.count = 1, .reusable = true}, SHIFT(881), - [239] = {.count = 1, .reusable = true}, SHIFT(82), - [241] = {.count = 1, .reusable = true}, SHIFT(83), - [243] = {.count = 1, .reusable = true}, SHIFT(85), - [245] = {.count = 1, .reusable = false}, SHIFT(85), - [247] = {.count = 1, .reusable = false}, SHIFT(87), - [249] = {.count = 1, .reusable = true}, SHIFT(87), - [251] = {.count = 1, .reusable = true}, SHIFT(86), - [253] = {.count = 1, .reusable = true}, SHIFT(89), - [255] = {.count = 1, .reusable = false}, REDUCE(sym_expression_statement, 1), - [257] = {.count = 1, .reusable = true}, REDUCE(sym_expression_statement, 1), - [259] = {.count = 1, .reusable = true}, SHIFT(90), - [261] = {.count = 1, .reusable = true}, SHIFT(91), - [263] = {.count = 1, .reusable = false}, SHIFT(93), - [265] = {.count = 1, .reusable = true}, SHIFT(92), - [267] = {.count = 1, .reusable = true}, SHIFT(93), - [269] = {.count = 1, .reusable = true}, SHIFT(94), - [271] = {.count = 1, .reusable = false}, SHIFT(102), - [273] = {.count = 1, .reusable = true}, SHIFT(101), - [275] = {.count = 1, .reusable = true}, SHIFT(96), - [277] = {.count = 1, .reusable = false}, SHIFT(103), - [279] = {.count = 1, .reusable = false}, SHIFT(101), - [281] = {.count = 1, .reusable = true}, SHIFT(105), - [283] = {.count = 1, .reusable = true}, SHIFT(106), - [285] = {.count = 1, .reusable = true}, SHIFT(100), - [287] = {.count = 1, .reusable = true}, SHIFT(104), - [289] = {.count = 1, .reusable = true}, SHIFT(110), - [291] = {.count = 1, .reusable = true}, SHIFT(95), - [293] = {.count = 1, .reusable = true}, SHIFT(98), - [295] = {.count = 1, .reusable = false}, SHIFT(99), - [297] = {.count = 1, .reusable = true}, SHIFT(107), - [299] = {.count = 1, .reusable = true}, SHIFT(108), - [301] = {.count = 1, .reusable = true}, SHIFT(109), - [303] = {.count = 1, .reusable = false}, SHIFT(100), - [305] = {.count = 1, .reusable = true}, SHIFT(97), - [307] = {.count = 1, .reusable = true}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), - [309] = {.count = 1, .reusable = true}, SHIFT(112), - [311] = {.count = 1, .reusable = false}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), - [313] = {.count = 1, .reusable = false}, SHIFT(116), - [315] = {.count = 1, .reusable = false}, REDUCE(sym_sized_type_specifier, 1), - [317] = {.count = 1, .reusable = true}, REDUCE(sym_sized_type_specifier, 1), - [319] = {.count = 2, .reusable = false}, REDUCE(sym_sized_type_specifier, 1), SHIFT(114), - [322] = {.count = 1, .reusable = false}, SHIFT(115), - [324] = {.count = 1, .reusable = true}, ACCEPT_INPUT(), - [326] = {.count = 1, .reusable = true}, SHIFT(117), - [328] = {.count = 1, .reusable = true}, SHIFT(118), - [330] = {.count = 1, .reusable = true}, SHIFT(119), - [332] = {.count = 1, .reusable = true}, REDUCE(sym_translation_unit, 1), - [334] = {.count = 1, .reusable = false}, SHIFT(123), - [336] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 2), - [338] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 2), - [340] = {.count = 1, .reusable = true}, SHIFT(125), - [342] = {.count = 1, .reusable = false}, SHIFT(942), - [344] = {.count = 1, .reusable = false}, SHIFT(127), - [346] = {.count = 1, .reusable = true}, SHIFT(128), - [348] = {.count = 1, .reusable = false}, SHIFT(130), - [350] = {.count = 1, .reusable = false}, SHIFT(126), - [352] = {.count = 1, .reusable = false}, SHIFT(1171), - [354] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 2, .production_id = 3), - [356] = {.count = 1, .reusable = true}, REDUCE(sym_union_specifier, 2, .production_id = 3), - [358] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 2, .production_id = 4), - [360] = {.count = 1, .reusable = true}, REDUCE(sym_union_specifier, 2, .production_id = 4), - [362] = {.count = 1, .reusable = true}, SHIFT(1219), - [364] = {.count = 1, .reusable = true}, SHIFT(133), - [366] = {.count = 1, .reusable = true}, SHIFT(134), - [368] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_call, 2, .production_id = 5), - [370] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_call, 2, .production_id = 5), - [372] = {.count = 1, .reusable = true}, SHIFT(135), - [374] = {.count = 1, .reusable = false}, REDUCE(sym_pointer_expression, 2, .production_id = 6), - [376] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_expression, 2, .production_id = 6), - [378] = {.count = 1, .reusable = false}, SHIFT(951), - [380] = {.count = 1, .reusable = false}, SHIFT(1166), - [382] = {.count = 1, .reusable = false}, SHIFT(136), - [384] = {.count = 1, .reusable = false}, SHIFT(1239), - [386] = {.count = 1, .reusable = false}, SHIFT(944), - [388] = {.count = 1, .reusable = false}, SHIFT(1168), - [390] = {.count = 1, .reusable = true}, SHIFT(951), - [392] = {.count = 1, .reusable = false}, SHIFT(1169), - [394] = {.count = 1, .reusable = false}, SHIFT(949), - [396] = {.count = 1, .reusable = false}, SHIFT(137), - [398] = {.count = 1, .reusable = true}, SHIFT(941), - [400] = {.count = 1, .reusable = false}, SHIFT(1244), - [402] = {.count = 1, .reusable = false}, SHIFT(138), - [404] = {.count = 1, .reusable = false}, SHIFT(1021), - [406] = {.count = 1, .reusable = false}, SHIFT(1167), - [408] = {.count = 1, .reusable = false}, SHIFT(953), - [410] = {.count = 1, .reusable = false}, SHIFT(1278), - [412] = {.count = 1, .reusable = false}, SHIFT(945), - [414] = {.count = 1, .reusable = false}, SHIFT(946), - [416] = {.count = 1, .reusable = false}, SHIFT(947), - [418] = {.count = 1, .reusable = false}, SHIFT(1170), - [420] = {.count = 1, .reusable = false}, SHIFT(948), - [422] = {.count = 1, .reusable = false}, SHIFT(950), - [424] = {.count = 1, .reusable = true}, SHIFT(623), - [426] = {.count = 1, .reusable = false}, SHIFT(1190), - [428] = {.count = 1, .reusable = false}, REDUCE(sym_unary_expression, 2, .production_id = 6), - [430] = {.count = 1, .reusable = true}, REDUCE(sym_unary_expression, 2, .production_id = 6), - [432] = {.count = 1, .reusable = true}, REDUCE(sym__type_specifier, 1, .production_id = 1), - [434] = {.count = 1, .reusable = true}, SHIFT(141), - [436] = {.count = 1, .reusable = true}, SHIFT(142), - [438] = {.count = 1, .reusable = false}, SHIFT(143), - [440] = {.count = 1, .reusable = true}, SHIFT(4), - [442] = {.count = 1, .reusable = true}, SHIFT(146), - [444] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 1, .production_id = 2), - [446] = {.count = 1, .reusable = true}, SHIFT(145), - [448] = {.count = 1, .reusable = true}, SHIFT(147), - [450] = {.count = 2, .reusable = true}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(70), - [453] = {.count = 1, .reusable = true}, SHIFT(151), - [455] = {.count = 1, .reusable = true}, SHIFT(153), - [457] = {.count = 1, .reusable = true}, SHIFT(152), - [459] = {.count = 1, .reusable = false}, SHIFT(155), - [461] = {.count = 1, .reusable = false}, REDUCE(sym_update_expression, 2, .production_id = 6), - [463] = {.count = 1, .reusable = true}, REDUCE(sym_update_expression, 2, .production_id = 6), - [465] = {.count = 1, .reusable = false}, REDUCE(sym_string_literal, 2), - [467] = {.count = 1, .reusable = true}, REDUCE(sym_string_literal, 2), - [469] = {.count = 1, .reusable = true}, SHIFT(157), - [471] = {.count = 1, .reusable = false}, SHIFT(156), - [473] = {.count = 1, .reusable = false}, SHIFT(158), - [475] = {.count = 1, .reusable = true}, SHIFT(158), - [477] = {.count = 1, .reusable = false}, SHIFT(1258), - [479] = {.count = 1, .reusable = false}, SHIFT(162), - [481] = {.count = 1, .reusable = false}, SHIFT(512), - [483] = {.count = 1, .reusable = true}, SHIFT(162), - [485] = {.count = 1, .reusable = true}, SHIFT(161), - [487] = {.count = 1, .reusable = false}, REDUCE(sym_break_statement, 2), - [489] = {.count = 1, .reusable = true}, REDUCE(sym_break_statement, 2), - [491] = {.count = 1, .reusable = false}, SHIFT(166), - [493] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_include, 2, .production_id = 7), - [495] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_include, 2, .production_id = 7), - [497] = {.count = 1, .reusable = true}, SHIFT(169), - [499] = {.count = 1, .reusable = false}, SHIFT(876), - [501] = {.count = 1, .reusable = true}, SHIFT(876), - [503] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 2, .production_id = 3), - [505] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 2, .production_id = 3), - [507] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 2, .production_id = 4), - [509] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 2, .production_id = 4), - [511] = {.count = 1, .reusable = true}, SHIFT(173), - [513] = {.count = 1, .reusable = true}, SHIFT(176), - [515] = {.count = 1, .reusable = true}, SHIFT(175), - [517] = {.count = 1, .reusable = true}, SHIFT(177), - [519] = {.count = 1, .reusable = false}, REDUCE(sym_enum_specifier, 2, .production_id = 3), - [521] = {.count = 1, .reusable = true}, REDUCE(sym_enum_specifier, 2, .production_id = 3), - [523] = {.count = 1, .reusable = false}, REDUCE(sym_enum_specifier, 2, .production_id = 4), - [525] = {.count = 1, .reusable = true}, REDUCE(sym_enum_specifier, 2, .production_id = 4), - [527] = {.count = 1, .reusable = true}, SHIFT(180), - [529] = {.count = 1, .reusable = false}, REDUCE(sym_return_statement, 2), - [531] = {.count = 1, .reusable = true}, REDUCE(sym_return_statement, 2), - [533] = {.count = 1, .reusable = true}, SHIFT(181), - [535] = {.count = 1, .reusable = false}, REDUCE(sym_continue_statement, 2), - [537] = {.count = 1, .reusable = true}, REDUCE(sym_continue_statement, 2), - [539] = {.count = 1, .reusable = false}, SHIFT(183), - [541] = {.count = 1, .reusable = true}, SHIFT(185), - [543] = {.count = 1, .reusable = false}, SHIFT(184), - [545] = {.count = 1, .reusable = false}, REDUCE(sym_sizeof_expression, 2, .production_id = 8), - [547] = {.count = 1, .reusable = true}, REDUCE(sym_sizeof_expression, 2, .production_id = 8), - [549] = {.count = 1, .reusable = false}, SHIFT(189), - [551] = {.count = 1, .reusable = true}, SHIFT(189), - [553] = {.count = 1, .reusable = false}, SHIFT(190), - [555] = {.count = 1, .reusable = true}, SHIFT(190), - [557] = {.count = 1, .reusable = false}, SHIFT(191), - [559] = {.count = 1, .reusable = true}, SHIFT(191), - [561] = {.count = 1, .reusable = false}, SHIFT(192), - [563] = {.count = 1, .reusable = true}, SHIFT(192), - [565] = {.count = 1, .reusable = false}, SHIFT(193), - [567] = {.count = 1, .reusable = true}, SHIFT(193), - [569] = {.count = 1, .reusable = false}, SHIFT(195), - [571] = {.count = 1, .reusable = true}, SHIFT(195), - [573] = {.count = 1, .reusable = false}, SHIFT(196), - [575] = {.count = 1, .reusable = true}, SHIFT(196), - [577] = {.count = 1, .reusable = false}, SHIFT(197), - [579] = {.count = 1, .reusable = true}, SHIFT(197), - [581] = {.count = 1, .reusable = false}, SHIFT(198), - [583] = {.count = 1, .reusable = true}, SHIFT(198), - [585] = {.count = 1, .reusable = false}, SHIFT(199), - [587] = {.count = 1, .reusable = true}, SHIFT(199), - [589] = {.count = 1, .reusable = false}, REDUCE(sym_update_expression, 2, .production_id = 9), - [591] = {.count = 1, .reusable = true}, REDUCE(sym_update_expression, 2, .production_id = 9), - [593] = {.count = 1, .reusable = true}, SHIFT(200), - [595] = {.count = 1, .reusable = false}, SHIFT(202), - [597] = {.count = 1, .reusable = true}, SHIFT(202), - [599] = {.count = 1, .reusable = true}, SHIFT(201), - [601] = {.count = 1, .reusable = false}, SHIFT(203), - [603] = {.count = 1, .reusable = true}, SHIFT(203), - [605] = {.count = 1, .reusable = false}, REDUCE(sym_expression_statement, 2), - [607] = {.count = 1, .reusable = true}, REDUCE(sym_expression_statement, 2), - [609] = {.count = 1, .reusable = false}, SHIFT(204), - [611] = {.count = 1, .reusable = true}, SHIFT(204), - [613] = {.count = 1, .reusable = false}, SHIFT(205), - [615] = {.count = 1, .reusable = true}, SHIFT(205), - [617] = {.count = 1, .reusable = false}, REDUCE(sym_call_expression, 2, .production_id = 10), - [619] = {.count = 1, .reusable = true}, REDUCE(sym_call_expression, 2, .production_id = 10), - [621] = {.count = 1, .reusable = false}, REDUCE(sym__empty_declaration, 2), - [623] = {.count = 1, .reusable = true}, REDUCE(sym__empty_declaration, 2), - [625] = {.count = 1, .reusable = true}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), - [627] = {.count = 1, .reusable = false}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), - [629] = {.count = 1, .reusable = false}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 11), - [631] = {.count = 1, .reusable = true}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 11), - [633] = {.count = 1, .reusable = false}, REDUCE(sym_sized_type_specifier, 2, .production_id = 12), - [635] = {.count = 1, .reusable = true}, REDUCE(sym_sized_type_specifier, 2, .production_id = 12), - [637] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(116), - [640] = {.count = 1, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [642] = {.count = 1, .reusable = true}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [644] = {.count = 1, .reusable = false}, SHIFT(206), - [646] = {.count = 1, .reusable = true}, SHIFT(208), - [648] = {.count = 1, .reusable = true}, SHIFT(209), - [650] = {.count = 1, .reusable = true}, SHIFT(213), - [652] = {.count = 1, .reusable = true}, SHIFT(211), - [654] = {.count = 1, .reusable = true}, SHIFT(212), - [656] = {.count = 1, .reusable = true}, SHIFT(210), - [658] = {.count = 1, .reusable = false}, REDUCE(sym_concatenated_string, 2), - [660] = {.count = 1, .reusable = true}, REDUCE(sym_concatenated_string, 2), - [662] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(34), - [665] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4), - [668] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6), - [671] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(12), - [674] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(13), - [677] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(15), - [680] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(18), - [683] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(34), - [686] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(26), - [689] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(21), - [692] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(23), - [695] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(38), - [698] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(28), - [701] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(32), - [704] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(33), - [707] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2), - [710] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3), - [713] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5), - [716] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7), - [719] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(8), - [722] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(9), - [725] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(10), - [728] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(14), - [731] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(11), - [734] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(37), - [737] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(16), - [740] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(17), - [743] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(19), - [746] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(10), - [749] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(20), - [752] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(22), - [755] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(24), - [758] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(25), - [761] = {.count = 1, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), - [763] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(27), - [766] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(29), - [769] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(30), - [772] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(31), - [775] = {.count = 1, .reusable = true}, REDUCE(sym__declaration_specifiers, 2, .production_id = 12), - [777] = {.count = 1, .reusable = false}, REDUCE(sym__declaration_specifiers, 2, .production_id = 12), - [779] = {.count = 1, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [781] = {.count = 2, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(4), - [784] = {.count = 1, .reusable = true}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [786] = {.count = 2, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(20), - [789] = {.count = 2, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(32), - [792] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 3), - [794] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 3), - [796] = {.count = 1, .reusable = true}, SHIFT(219), - [798] = {.count = 1, .reusable = false}, SHIFT(220), - [800] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration_list, 2), - [802] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration_list, 2), - [804] = {.count = 1, .reusable = true}, SHIFT(221), - [806] = {.count = 1, .reusable = true}, SHIFT(223), - [808] = {.count = 1, .reusable = true}, SHIFT(225), - [810] = {.count = 1, .reusable = true}, SHIFT(224), - [812] = {.count = 1, .reusable = true}, SHIFT(226), - [814] = {.count = 1, .reusable = true}, SHIFT(227), - [816] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 3, .production_id = 13), - [818] = {.count = 1, .reusable = true}, REDUCE(sym_union_specifier, 3, .production_id = 13), - [820] = {.count = 1, .reusable = true}, SHIFT(1154), - [822] = {.count = 1, .reusable = false}, REDUCE(sym_goto_statement, 3, .production_id = 14), - [824] = {.count = 1, .reusable = true}, REDUCE(sym_goto_statement, 3, .production_id = 14), - [826] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_call, 3, .production_id = 15), - [828] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_call, 3, .production_id = 15), - [830] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 3, .production_id = 16), - [832] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 3, .production_id = 16), - [834] = {.count = 1, .reusable = false}, SHIFT(231), - [836] = {.count = 1, .reusable = false}, SHIFT(1030), - [838] = {.count = 1, .reusable = false}, SHIFT(1185), - [840] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else, 1), - [842] = {.count = 1, .reusable = false}, SHIFT(1245), - [844] = {.count = 1, .reusable = false}, SHIFT(1023), - [846] = {.count = 1, .reusable = false}, SHIFT(1187), - [848] = {.count = 1, .reusable = true}, SHIFT(1030), - [850] = {.count = 1, .reusable = false}, SHIFT(1188), - [852] = {.count = 1, .reusable = false}, SHIFT(1028), - [854] = {.count = 1, .reusable = true}, SHIFT(1020), - [856] = {.count = 1, .reusable = false}, SHIFT(1250), - [858] = {.count = 1, .reusable = false}, SHIFT(1086), - [860] = {.count = 1, .reusable = false}, SHIFT(1186), - [862] = {.count = 1, .reusable = false}, SHIFT(1032), - [864] = {.count = 1, .reusable = false}, SHIFT(1279), - [866] = {.count = 1, .reusable = false}, SHIFT(1024), - [868] = {.count = 1, .reusable = false}, SHIFT(1025), - [870] = {.count = 1, .reusable = false}, SHIFT(1026), - [872] = {.count = 1, .reusable = false}, SHIFT(1189), - [874] = {.count = 1, .reusable = false}, SHIFT(1027), - [876] = {.count = 1, .reusable = false}, SHIFT(1029), - [878] = {.count = 1, .reusable = true}, SHIFT(712), - [880] = {.count = 1, .reusable = false}, SHIFT(1204), - [882] = {.count = 1, .reusable = true}, SHIFT(233), - [884] = {.count = 1, .reusable = false}, SHIFT(234), - [886] = {.count = 1, .reusable = true}, SHIFT(236), - [888] = {.count = 1, .reusable = false}, SHIFT(237), - [890] = {.count = 1, .reusable = true}, SHIFT(237), - [892] = {.count = 1, .reusable = false}, REDUCE(sym_parenthesized_expression, 3), - [894] = {.count = 1, .reusable = true}, REDUCE(sym_parenthesized_expression, 3), - [896] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 2, .production_id = 12), - [898] = {.count = 1, .reusable = false}, REDUCE(aux_sym_type_definition_repeat1, 2), - [900] = {.count = 2, .reusable = false}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(4), - [903] = {.count = 1, .reusable = true}, REDUCE(aux_sym_type_definition_repeat1, 2), - [905] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 1, .dynamic_precedence = 1), - [907] = {.count = 1, .reusable = true}, SHIFT(244), - [909] = {.count = 1, .reusable = true}, SHIFT(243), - [911] = {.count = 1, .reusable = false}, SHIFT(249), - [913] = {.count = 1, .reusable = true}, SHIFT(249), - [915] = {.count = 1, .reusable = true}, SHIFT(247), - [917] = {.count = 1, .reusable = true}, SHIFT(248), - [919] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_function_declarator, 1, .production_id = 17), - [921] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 2, .production_id = 18), - [923] = {.count = 1, .reusable = true}, SHIFT(251), - [925] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 2, .production_id = 2), - [927] = {.count = 1, .reusable = false}, SHIFT(152), - [929] = {.count = 1, .reusable = true}, REDUCE(sym__type_declarator, 1, .production_id = 1), - [931] = {.count = 1, .reusable = true}, SHIFT(258), - [933] = {.count = 1, .reusable = true}, SHIFT(257), - [935] = {.count = 1, .reusable = true}, SHIFT(259), - [937] = {.count = 1, .reusable = false}, REDUCE(sym_string_literal, 3), - [939] = {.count = 1, .reusable = true}, REDUCE(sym_string_literal, 3), - [941] = {.count = 2, .reusable = true}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(157), - [944] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_literal_repeat1, 2), - [946] = {.count = 1, .reusable = true}, REDUCE(sym_assignment_expression, 3, .production_id = 19), - [948] = {.count = 1, .reusable = true}, SHIFT(263), - [950] = {.count = 1, .reusable = false}, REDUCE(sym_labeled_statement, 3, .production_id = 20), - [952] = {.count = 1, .reusable = true}, REDUCE(sym_labeled_statement, 3, .production_id = 20), - [954] = {.count = 1, .reusable = false}, SHIFT(265), - [956] = {.count = 1, .reusable = true}, SHIFT(265), - [958] = {.count = 1, .reusable = true}, SHIFT(264), - [960] = {.count = 1, .reusable = true}, SHIFT(266), - [962] = {.count = 1, .reusable = false}, SHIFT(268), - [964] = {.count = 1, .reusable = true}, SHIFT(268), - [966] = {.count = 1, .reusable = true}, SHIFT(267), - [968] = {.count = 1, .reusable = true}, SHIFT(269), - [970] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 3, .production_id = 21), - [972] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 3, .production_id = 21), - [974] = {.count = 1, .reusable = true}, SHIFT(270), - [976] = {.count = 1, .reusable = false}, SHIFT(271), - [978] = {.count = 1, .reusable = true}, SHIFT(273), - [980] = {.count = 1, .reusable = false}, REDUCE(sym_linkage_specification, 3, .production_id = 22), - [982] = {.count = 1, .reusable = true}, REDUCE(sym_linkage_specification, 3, .production_id = 22), - [984] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 3, .production_id = 23), - [986] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 3, .production_id = 23), - [988] = {.count = 1, .reusable = false}, SHIFT(275), - [990] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 3, .production_id = 13), - [992] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 3, .production_id = 13), - [994] = {.count = 1, .reusable = true}, SHIFT(1085), - [996] = {.count = 1, .reusable = false}, SHIFT(276), - [998] = {.count = 1, .reusable = false}, SHIFT(1093), - [1000] = {.count = 1, .reusable = false}, SHIFT(1254), - [1002] = {.count = 1, .reusable = false}, SHIFT(1202), - [1004] = {.count = 1, .reusable = true}, SHIFT(277), - [1006] = {.count = 1, .reusable = false}, SHIFT(278), - [1008] = {.count = 1, .reusable = false}, SHIFT(955), - [1010] = {.count = 1, .reusable = false}, SHIFT(1280), - [1012] = {.count = 1, .reusable = false}, SHIFT(1088), - [1014] = {.count = 1, .reusable = true}, SHIFT(1093), - [1016] = {.count = 1, .reusable = false}, SHIFT(1089), - [1018] = {.count = 1, .reusable = false}, SHIFT(1203), - [1020] = {.count = 1, .reusable = false}, SHIFT(1090), - [1022] = {.count = 1, .reusable = false}, SHIFT(1091), - [1024] = {.count = 1, .reusable = false}, SHIFT(1092), - [1026] = {.count = 1, .reusable = true}, SHIFT(787), - [1028] = {.count = 1, .reusable = false}, REDUCE(sym_switch_statement, 3, .production_id = 24), - [1030] = {.count = 1, .reusable = true}, REDUCE(sym_switch_statement, 3, .production_id = 24), - [1032] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 2), - [1034] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 2), - [1036] = {.count = 1, .reusable = true}, SHIFT(280), - [1038] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator, 1, .production_id = 25), - [1040] = {.count = 1, .reusable = true}, SHIFT(281), - [1042] = {.count = 1, .reusable = true}, SHIFT(282), - [1044] = {.count = 1, .reusable = false}, REDUCE(sym_enum_specifier, 3, .production_id = 13), - [1046] = {.count = 1, .reusable = true}, REDUCE(sym_enum_specifier, 3, .production_id = 13), - [1048] = {.count = 1, .reusable = false}, REDUCE(sym_char_literal, 3), - [1050] = {.count = 1, .reusable = true}, REDUCE(sym_char_literal, 3), - [1052] = {.count = 1, .reusable = false}, REDUCE(sym_return_statement, 3), - [1054] = {.count = 1, .reusable = true}, REDUCE(sym_return_statement, 3), - [1056] = {.count = 1, .reusable = false}, REDUCE(sym_while_statement, 3, .production_id = 24), - [1058] = {.count = 1, .reusable = true}, REDUCE(sym_while_statement, 3, .production_id = 24), - [1060] = {.count = 1, .reusable = true}, SHIFT(284), - [1062] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_def, 3, .production_id = 21), - [1064] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_def, 3, .production_id = 21), - [1066] = {.count = 1, .reusable = true}, SHIFT(285), - [1068] = {.count = 1, .reusable = true}, SHIFT(286), - [1070] = {.count = 1, .reusable = false}, SHIFT(287), - [1072] = {.count = 1, .reusable = false}, SHIFT(288), - [1074] = {.count = 1, .reusable = true}, SHIFT(289), - [1076] = {.count = 1, .reusable = true}, SHIFT(290), - [1078] = {.count = 1, .reusable = true}, REDUCE(sym_binary_expression, 3, .production_id = 26), - [1080] = {.count = 1, .reusable = false}, REDUCE(sym_binary_expression, 3, .production_id = 26), - [1082] = {.count = 1, .reusable = true}, SHIFT(291), - [1084] = {.count = 1, .reusable = true}, REDUCE(sym_comma_expression, 3, .production_id = 19), - [1086] = {.count = 1, .reusable = false}, REDUCE(sym_field_expression, 3, .production_id = 27), - [1088] = {.count = 1, .reusable = true}, REDUCE(sym_field_expression, 3, .production_id = 27), - [1090] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 2), - [1092] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 2), - [1094] = {.count = 1, .reusable = true}, SHIFT(292), - [1096] = {.count = 1, .reusable = true}, SHIFT(293), - [1098] = {.count = 1, .reusable = true}, SHIFT(295), - [1100] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 28), - [1102] = {.count = 1, .reusable = false}, SHIFT(296), - [1104] = {.count = 1, .reusable = true}, SHIFT(297), - [1106] = {.count = 1, .reusable = false}, SHIFT(298), - [1108] = {.count = 1, .reusable = true}, SHIFT(298), - [1110] = {.count = 1, .reusable = false}, REDUCE(sym_declaration, 3, .production_id = 29), - [1112] = {.count = 1, .reusable = true}, REDUCE(sym_declaration, 3, .production_id = 29), - [1114] = {.count = 1, .reusable = true}, SHIFT(300), - [1116] = {.count = 1, .reusable = false}, SHIFT(304), - [1118] = {.count = 1, .reusable = true}, SHIFT(304), - [1120] = {.count = 1, .reusable = true}, SHIFT(302), - [1122] = {.count = 1, .reusable = true}, SHIFT(303), - [1124] = {.count = 1, .reusable = true}, REDUCE(sym_function_declarator, 2, .production_id = 30), - [1126] = {.count = 1, .reusable = true}, SHIFT(32), - [1128] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 3, .production_id = 31), - [1130] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 3, .production_id = 31), - [1132] = {.count = 1, .reusable = true}, SHIFT(307), - [1134] = {.count = 1, .reusable = false}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [1136] = {.count = 1, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [1138] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(14), - [1141] = {.count = 1, .reusable = true}, REDUCE(sym__declaration_specifiers, 3, .production_id = 12), - [1143] = {.count = 1, .reusable = false}, REDUCE(sym__declaration_specifiers, 3, .production_id = 12), - [1145] = {.count = 1, .reusable = false}, SHIFT(1157), - [1147] = {.count = 1, .reusable = false}, SHIFT(309), - [1149] = {.count = 1, .reusable = false}, SHIFT(1129), - [1151] = {.count = 1, .reusable = false}, SHIFT(1158), - [1153] = {.count = 1, .reusable = false}, SHIFT(310), - [1155] = {.count = 1, .reusable = false}, SHIFT(311), - [1157] = {.count = 1, .reusable = false}, SHIFT(1213), - [1159] = {.count = 1, .reusable = false}, SHIFT(314), - [1161] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration_list, 3), - [1163] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration_list, 3), - [1165] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(126), - [1168] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3), - [1171] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(38), - [1174] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4), - [1177] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(20), - [1180] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(23), - [1183] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(942), - [1186] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(127), - [1189] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(25), - [1192] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), - [1194] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1171), - [1197] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(130), - [1200] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(32), - [1203] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(63), - [1206] = {.count = 1, .reusable = false}, SHIFT(224), - [1208] = {.count = 1, .reusable = true}, REDUCE(sym__field_declarator, 1, .production_id = 32), - [1210] = {.count = 1, .reusable = false}, SHIFT(320), - [1212] = {.count = 1, .reusable = true}, SHIFT(320), - [1214] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 2, .production_id = 33), - [1216] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 2, .production_id = 33), - [1218] = {.count = 1, .reusable = true}, SHIFT(321), - [1220] = {.count = 1, .reusable = true}, SHIFT(324), - [1222] = {.count = 1, .reusable = true}, SHIFT(323), - [1224] = {.count = 1, .reusable = true}, SHIFT(322), - [1226] = {.count = 1, .reusable = false}, REDUCE(sym_do_statement, 4, .production_id = 34), - [1228] = {.count = 1, .reusable = true}, REDUCE(sym_do_statement, 4, .production_id = 34), - [1230] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif, 2, .production_id = 16), - [1232] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else, 2), - [1234] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 4, .production_id = 35), - [1236] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 4, .production_id = 35), - [1238] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 4, .production_id = 16), - [1240] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 4, .production_id = 16), - [1242] = {.count = 1, .reusable = true}, SHIFT(330), - [1244] = {.count = 1, .reusable = true}, SHIFT(331), - [1246] = {.count = 1, .reusable = false}, SHIFT(335), - [1248] = {.count = 1, .reusable = true}, SHIFT(333), - [1250] = {.count = 1, .reusable = true}, SHIFT(335), - [1252] = {.count = 1, .reusable = true}, SHIFT(332), - [1254] = {.count = 1, .reusable = false}, SHIFT(334), - [1256] = {.count = 1, .reusable = false}, REDUCE(sym_cast_expression, 4, .production_id = 36), - [1258] = {.count = 1, .reusable = true}, REDUCE(sym_cast_expression, 4, .production_id = 36), - [1260] = {.count = 1, .reusable = false}, REDUCE(sym_compound_literal_expression, 4, .production_id = 36), - [1262] = {.count = 1, .reusable = true}, REDUCE(sym_compound_literal_expression, 4, .production_id = 36), - [1264] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 3, .production_id = 37), - [1266] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 3, .production_id = 12), - [1268] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 28), - [1270] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1), - [1272] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_list, 2), - [1274] = {.count = 1, .reusable = true}, SHIFT(341), - [1276] = {.count = 1, .reusable = true}, SHIFT(340), - [1278] = {.count = 1, .reusable = true}, SHIFT(343), - [1280] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_declaration, 1, .production_id = 33), - [1282] = {.count = 1, .reusable = true}, SHIFT(344), - [1284] = {.count = 1, .reusable = true}, SHIFT(347), - [1286] = {.count = 1, .reusable = true}, SHIFT(345), - [1288] = {.count = 1, .reusable = true}, SHIFT(348), - [1290] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 2), - [1292] = {.count = 1, .reusable = false}, SHIFT(351), - [1294] = {.count = 1, .reusable = true}, SHIFT(351), - [1296] = {.count = 1, .reusable = true}, SHIFT(349), - [1298] = {.count = 1, .reusable = true}, SHIFT(350), - [1300] = {.count = 1, .reusable = false}, SHIFT(354), - [1302] = {.count = 1, .reusable = true}, SHIFT(354), - [1304] = {.count = 1, .reusable = true}, SHIFT(352), - [1306] = {.count = 1, .reusable = true}, SHIFT(353), - [1308] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 30), - [1310] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 3, .production_id = 38), - [1312] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_type_declarator, 2, .dynamic_precedence = 1, .production_id = 28), - [1314] = {.count = 1, .reusable = true}, SHIFT(357), - [1316] = {.count = 1, .reusable = false}, REDUCE(sym_type_definition, 4, .production_id = 37), - [1318] = {.count = 1, .reusable = true}, REDUCE(sym_type_definition, 4, .production_id = 37), - [1320] = {.count = 1, .reusable = false}, SHIFT(361), - [1322] = {.count = 1, .reusable = true}, SHIFT(361), - [1324] = {.count = 1, .reusable = true}, SHIFT(359), - [1326] = {.count = 1, .reusable = true}, SHIFT(360), - [1328] = {.count = 1, .reusable = true}, SHIFT(363), - [1330] = {.count = 1, .reusable = true}, REDUCE(sym_function_type_declarator, 2, .production_id = 30), - [1332] = {.count = 1, .reusable = true}, SHIFT(365), - [1334] = {.count = 1, .reusable = false}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 39), - [1336] = {.count = 1, .reusable = true}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 39), - [1338] = {.count = 1, .reusable = false}, SHIFT(368), - [1340] = {.count = 1, .reusable = true}, SHIFT(368), - [1342] = {.count = 1, .reusable = true}, SHIFT(367), - [1344] = {.count = 1, .reusable = true}, SHIFT(370), - [1346] = {.count = 1, .reusable = false}, SHIFT(372), - [1348] = {.count = 1, .reusable = true}, SHIFT(372), - [1350] = {.count = 1, .reusable = true}, SHIFT(371), - [1352] = {.count = 1, .reusable = false}, SHIFT(374), - [1354] = {.count = 1, .reusable = true}, SHIFT(374), - [1356] = {.count = 1, .reusable = true}, SHIFT(373), - [1358] = {.count = 1, .reusable = true}, SHIFT(376), - [1360] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 4, .production_id = 40), - [1362] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 4, .production_id = 40), - [1364] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 4, .production_id = 21), - [1366] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 4, .production_id = 21), - [1368] = {.count = 1, .reusable = true}, SHIFT(377), - [1370] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_list, 2), - [1372] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_list, 2), - [1374] = {.count = 1, .reusable = true}, SHIFT(378), - [1376] = {.count = 1, .reusable = false}, SHIFT(380), - [1378] = {.count = 1, .reusable = true}, SHIFT(380), - [1380] = {.count = 1, .reusable = false}, REDUCE(sym_switch_body, 2), - [1382] = {.count = 1, .reusable = true}, REDUCE(sym_switch_body, 2), - [1384] = {.count = 1, .reusable = true}, SHIFT(381), - [1386] = {.count = 1, .reusable = true}, SHIFT(382), - [1388] = {.count = 1, .reusable = false}, SHIFT(384), - [1390] = {.count = 1, .reusable = true}, SHIFT(384), - [1392] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 3), - [1394] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 3), - [1396] = {.count = 1, .reusable = true}, SHIFT(385), - [1398] = {.count = 1, .reusable = true}, SHIFT(387), - [1400] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_def, 4, .production_id = 41), - [1402] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_def, 4, .production_id = 41), - [1404] = {.count = 1, .reusable = true}, SHIFT(389), - [1406] = {.count = 1, .reusable = true}, SHIFT(390), - [1408] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 2), - [1410] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_function_def, 4, .production_id = 42), - [1412] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_function_def, 4, .production_id = 42), - [1414] = {.count = 1, .reusable = true}, SHIFT(392), - [1416] = {.count = 1, .reusable = true}, REDUCE(sym_attribute_specifier, 4), - [1418] = {.count = 1, .reusable = false}, REDUCE(sym_attribute_specifier, 4), - [1420] = {.count = 1, .reusable = true}, REDUCE(sym_sizeof_expression, 4, .production_id = 43), - [1422] = {.count = 1, .reusable = false}, REDUCE(sym_sizeof_expression, 4, .production_id = 43), - [1424] = {.count = 1, .reusable = false}, SHIFT(8), - [1426] = {.count = 1, .reusable = false}, REDUCE(sym_subscript_expression, 4, .production_id = 44), - [1428] = {.count = 1, .reusable = true}, REDUCE(sym_subscript_expression, 4, .production_id = 44), - [1430] = {.count = 1, .reusable = false}, SHIFT(393), - [1432] = {.count = 1, .reusable = true}, SHIFT(393), - [1434] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 3), - [1436] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 3), - [1438] = {.count = 1, .reusable = true}, SHIFT(394), - [1440] = {.count = 1, .reusable = false}, SHIFT(396), - [1442] = {.count = 1, .reusable = true}, SHIFT(396), - [1444] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 45), - [1446] = {.count = 1, .reusable = true}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), - [1448] = {.count = 1, .reusable = true}, REDUCE(sym_init_declarator, 3, .production_id = 46), - [1450] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 28), - [1452] = {.count = 1, .reusable = true}, SHIFT(397), - [1454] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 3, .production_id = 47), - [1456] = {.count = 1, .reusable = false}, SHIFT(400), - [1458] = {.count = 1, .reusable = true}, SHIFT(400), - [1460] = {.count = 1, .reusable = true}, SHIFT(398), - [1462] = {.count = 1, .reusable = true}, SHIFT(399), - [1464] = {.count = 1, .reusable = true}, REDUCE(sym_function_declarator, 3, .production_id = 30), - [1466] = {.count = 1, .reusable = false}, REDUCE(sym_declaration, 4, .production_id = 48), - [1468] = {.count = 1, .reusable = true}, REDUCE(sym_declaration, 4, .production_id = 48), - [1470] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 49), SHIFT_REPEAT(212), - [1473] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 49), - [1475] = {.count = 1, .reusable = false}, SHIFT(1176), - [1477] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else_in_field_declaration_list, 1), - [1479] = {.count = 1, .reusable = false}, SHIFT(1138), - [1481] = {.count = 1, .reusable = false}, SHIFT(1177), - [1483] = {.count = 1, .reusable = false}, SHIFT(1215), - [1485] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 21), - [1487] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 21), - [1489] = {.count = 1, .reusable = false}, SHIFT(403), - [1491] = {.count = 1, .reusable = false}, SHIFT(404), - [1493] = {.count = 1, .reusable = true}, SHIFT(406), - [1495] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 3, .production_id = 16), - [1497] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 3, .production_id = 16), - [1499] = {.count = 1, .reusable = false}, SHIFT(407), - [1501] = {.count = 1, .reusable = true}, SHIFT(409), - [1503] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_field_declarator, 2, .dynamic_precedence = 1, .production_id = 28), - [1505] = {.count = 1, .reusable = true}, SHIFT(411), - [1507] = {.count = 1, .reusable = true}, REDUCE(sym_bitfield_clause, 2), - [1509] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 3, .production_id = 33), - [1511] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 3, .production_id = 33), - [1513] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 3, .production_id = 29), - [1515] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 3, .production_id = 29), - [1517] = {.count = 1, .reusable = false}, SHIFT(415), - [1519] = {.count = 1, .reusable = true}, SHIFT(415), - [1521] = {.count = 1, .reusable = true}, SHIFT(413), - [1523] = {.count = 1, .reusable = true}, SHIFT(414), - [1525] = {.count = 1, .reusable = true}, SHIFT(417), - [1527] = {.count = 1, .reusable = true}, REDUCE(sym_function_field_declarator, 2, .production_id = 30), - [1529] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif, 3, .production_id = 35), - [1531] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif, 3, .production_id = 16), - [1533] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 5, .production_id = 50), - [1535] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 5, .production_id = 50), - [1537] = {.count = 1, .reusable = false}, SHIFT(421), - [1539] = {.count = 1, .reusable = true}, SHIFT(421), - [1541] = {.count = 1, .reusable = true}, SHIFT(422), - [1543] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 2), - [1545] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 2), - [1547] = {.count = 1, .reusable = true}, SHIFT(423), - [1549] = {.count = 1, .reusable = true}, SHIFT(424), - [1551] = {.count = 1, .reusable = true}, SHIFT(426), - [1553] = {.count = 1, .reusable = true}, SHIFT(334), - [1555] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 4, .production_id = 51), - [1557] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 45), - [1559] = {.count = 1, .reusable = true}, SHIFT(428), - [1561] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_list, 3), - [1563] = {.count = 1, .reusable = true}, SHIFT(429), - [1565] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_parenthesized_declarator, 3), - [1567] = {.count = 1, .reusable = false}, SHIFT(432), - [1569] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_declaration, 2, .production_id = 29), - [1571] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 52), - [1573] = {.count = 1, .reusable = true}, SHIFT(433), - [1575] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 3), - [1577] = {.count = 1, .reusable = true}, SHIFT(434), - [1579] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 47), - [1581] = {.count = 1, .reusable = false}, SHIFT(437), - [1583] = {.count = 1, .reusable = true}, SHIFT(437), - [1585] = {.count = 1, .reusable = true}, SHIFT(435), - [1587] = {.count = 1, .reusable = true}, SHIFT(436), - [1589] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_type_declarator, 3, .dynamic_precedence = 1, .production_id = 45), - [1591] = {.count = 1, .reusable = true}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), - [1593] = {.count = 1, .reusable = true}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 28), - [1595] = {.count = 1, .reusable = true}, SHIFT(438), - [1597] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 3, .production_id = 47), - [1599] = {.count = 1, .reusable = false}, SHIFT(441), - [1601] = {.count = 1, .reusable = true}, SHIFT(441), - [1603] = {.count = 1, .reusable = true}, SHIFT(439), - [1605] = {.count = 1, .reusable = true}, SHIFT(440), - [1607] = {.count = 1, .reusable = false}, REDUCE(sym_type_definition, 5, .production_id = 53), - [1609] = {.count = 1, .reusable = true}, REDUCE(sym_type_definition, 5, .production_id = 53), - [1611] = {.count = 2, .reusable = true}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 49), SHIFT_REPEAT(258), - [1614] = {.count = 1, .reusable = true}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 49), - [1616] = {.count = 1, .reusable = false}, REDUCE(sym_type_definition, 5, .production_id = 54), - [1618] = {.count = 1, .reusable = true}, REDUCE(sym_type_definition, 5, .production_id = 54), - [1620] = {.count = 1, .reusable = true}, SHIFT(442), - [1622] = {.count = 1, .reusable = true}, SHIFT(444), - [1624] = {.count = 1, .reusable = false}, SHIFT(446), - [1626] = {.count = 1, .reusable = true}, SHIFT(446), - [1628] = {.count = 1, .reusable = true}, SHIFT(445), - [1630] = {.count = 1, .reusable = false}, SHIFT(449), - [1632] = {.count = 1, .reusable = true}, SHIFT(449), - [1634] = {.count = 1, .reusable = true}, SHIFT(448), - [1636] = {.count = 1, .reusable = true}, SHIFT(451), - [1638] = {.count = 1, .reusable = true}, SHIFT(453), - [1640] = {.count = 1, .reusable = false}, SHIFT(455), - [1642] = {.count = 1, .reusable = true}, SHIFT(455), - [1644] = {.count = 1, .reusable = true}, SHIFT(454), - [1646] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 5, .production_id = 55), - [1648] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 5, .production_id = 55), - [1650] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_list, 3), - [1652] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_list, 3), - [1654] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 5, .production_id = 56), - [1656] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 5, .production_id = 56), - [1658] = {.count = 1, .reusable = true}, SHIFT(457), - [1660] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 2), - [1662] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 2), - [1664] = {.count = 1, .reusable = false}, SHIFT(507), - [1666] = {.count = 1, .reusable = false}, REDUCE(sym_switch_body, 3), - [1668] = {.count = 1, .reusable = true}, REDUCE(sym_switch_body, 3), - [1670] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1085), - [1673] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(276), - [1676] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1093), - [1679] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1254), - [1682] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1202), - [1685] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(8), - [1688] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(10), - [1691] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(14), - [1694] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(11), - [1697] = {.count = 1, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), - [1699] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(13), - [1702] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(278), - [1705] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(955), - [1708] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1280), - [1711] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1088), - [1714] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(10), - [1717] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1093), - [1720] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(26), - [1723] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1089), - [1726] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1203), - [1729] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1090), - [1732] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1091), - [1735] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1092), - [1738] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(787), - [1741] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(33), - [1744] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator, 3, .production_id = 57), - [1746] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 4), - [1748] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 4), - [1750] = {.count = 1, .reusable = true}, REDUCE(aux_sym_enumerator_list_repeat1, 2), - [1752] = {.count = 1, .reusable = true}, SHIFT(459), - [1754] = {.count = 2, .reusable = true}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(460), - [1757] = {.count = 1, .reusable = true}, SHIFT(461), - [1759] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 3), - [1761] = {.count = 1, .reusable = true}, SHIFT(462), - [1763] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_function_def, 5, .production_id = 58), - [1765] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_function_def, 5, .production_id = 58), - [1767] = {.count = 1, .reusable = true}, REDUCE(aux_sym_argument_list_repeat1, 2), - [1769] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 4), - [1771] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 4), - [1773] = {.count = 2, .reusable = true}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(292), - [1776] = {.count = 1, .reusable = true}, REDUCE(sym_conditional_expression, 5, .production_id = 59), - [1778] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 4, .production_id = 60), - [1780] = {.count = 1, .reusable = true}, SHIFT(464), - [1782] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 4, .production_id = 47), - [1784] = {.count = 1, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), - [1786] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(32), - [1789] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else_in_field_declaration_list, 2), - [1791] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif_in_field_declaration_list, 2, .production_id = 16), - [1793] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 21), - [1795] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 21), - [1797] = {.count = 1, .reusable = true}, SHIFT(467), - [1799] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 40), - [1801] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 40), - [1803] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 16), - [1805] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 16), - [1807] = {.count = 1, .reusable = true}, SHIFT(468), - [1809] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 35), - [1811] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 35), - [1813] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_field_declarator, 3, .dynamic_precedence = 1, .production_id = 45), - [1815] = {.count = 1, .reusable = true}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), - [1817] = {.count = 1, .reusable = true}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 28), - [1819] = {.count = 1, .reusable = true}, SHIFT(469), - [1821] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 3, .production_id = 47), - [1823] = {.count = 1, .reusable = false}, SHIFT(472), - [1825] = {.count = 1, .reusable = true}, SHIFT(472), - [1827] = {.count = 1, .reusable = true}, SHIFT(470), - [1829] = {.count = 1, .reusable = true}, SHIFT(471), - [1831] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 4, .production_id = 29), - [1833] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 4, .production_id = 29), - [1835] = {.count = 1, .reusable = true}, SHIFT(473), - [1837] = {.count = 2, .reusable = true}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 49), SHIFT_REPEAT(323), - [1840] = {.count = 1, .reusable = true}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 49), - [1842] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif, 4, .production_id = 50), - [1844] = {.count = 1, .reusable = true}, SHIFT(474), - [1846] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 3), - [1848] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 3), - [1850] = {.count = 1, .reusable = true}, REDUCE(sym_field_designator, 2, .production_id = 61), - [1852] = {.count = 1, .reusable = false}, SHIFT(476), - [1854] = {.count = 1, .reusable = true}, SHIFT(475), - [1856] = {.count = 1, .reusable = true}, SHIFT(476), - [1858] = {.count = 1, .reusable = true}, SHIFT(478), - [1860] = {.count = 1, .reusable = false}, SHIFT(480), - [1862] = {.count = 1, .reusable = true}, SHIFT(480), - [1864] = {.count = 1, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), - [1866] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(334), - [1869] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(331), - [1872] = {.count = 1, .reusable = true}, REDUCE(aux_sym_parameter_list_repeat1, 2), - [1874] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_list, 4), - [1876] = {.count = 2, .reusable = true}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(340), - [1879] = {.count = 3, .reusable = true}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(70), - [1883] = {.count = 2, .reusable = true}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), - [1886] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 62), - [1888] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 60), - [1890] = {.count = 1, .reusable = true}, SHIFT(482), - [1892] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 47), - [1894] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 4, .production_id = 60), - [1896] = {.count = 1, .reusable = true}, SHIFT(483), - [1898] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 4, .production_id = 47), - [1900] = {.count = 1, .reusable = false}, REDUCE(sym_type_definition, 6, .production_id = 63), - [1902] = {.count = 1, .reusable = true}, REDUCE(sym_type_definition, 6, .production_id = 63), - [1904] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 6), - [1906] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 6), - [1908] = {.count = 1, .reusable = true}, SHIFT(486), - [1910] = {.count = 1, .reusable = true}, SHIFT(488), - [1912] = {.count = 1, .reusable = false}, SHIFT(490), - [1914] = {.count = 1, .reusable = true}, SHIFT(490), - [1916] = {.count = 1, .reusable = true}, SHIFT(489), - [1918] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 6, .production_id = 64), - [1920] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 6, .production_id = 64), - [1922] = {.count = 1, .reusable = true}, SHIFT(494), - [1924] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 3, .production_id = 8), - [1926] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 3, .production_id = 8), - [1928] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 3), - [1930] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 3), - [1932] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 5), - [1934] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 5), - [1936] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_params_repeat1, 2), - [1938] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 4), - [1940] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(389), - [1943] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 5, .production_id = 65), - [1945] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .production_id = 16), - [1947] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .production_id = 35), - [1949] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 55), - [1951] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 55), - [1953] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 50), - [1955] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 50), - [1957] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 4, .production_id = 60), - [1959] = {.count = 1, .reusable = true}, SHIFT(498), - [1961] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 4, .production_id = 47), - [1963] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 5, .production_id = 48), - [1965] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 5, .production_id = 48), - [1967] = {.count = 1, .reusable = true}, REDUCE(sym_subscript_designator, 3), - [1969] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 4), - [1971] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 4), - [1973] = {.count = 1, .reusable = true}, REDUCE(aux_sym_initializer_list_repeat1, 2), - [1975] = {.count = 1, .reusable = true}, SHIFT(499), - [1977] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(500), - [1980] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_pair, 3, .production_id = 66), - [1982] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 5, .production_id = 65), - [1984] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 5, .production_id = 65), - [1986] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 7, .production_id = 67), - [1988] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 7, .production_id = 67), - [1990] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 7, .production_id = 68), - [1992] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 7, .production_id = 68), - [1994] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 7, .production_id = 64), - [1996] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 7, .production_id = 64), - [1998] = {.count = 1, .reusable = true}, SHIFT(504), - [2000] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 7, .production_id = 69), - [2002] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 7, .production_id = 69), - [2004] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 7, .production_id = 70), - [2006] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 7, .production_id = 70), - [2008] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 4, .production_id = 8), - [2010] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 4, .production_id = 8), - [2012] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2), - [2015] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3), - [2018] = {.count = 1, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), - [2020] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(38), - [2023] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4), - [2026] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(34), - [2029] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5), - [2032] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6), - [2035] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8), - [2038] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(10), - [2041] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(11), - [2044] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(12), - [2047] = {.count = 1, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), - [2049] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(13), - [2052] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(14), - [2055] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(130), - [2058] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(507), - [2061] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(16), - [2064] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(17), - [2067] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(10), - [2070] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(20), - [2073] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(22), - [2076] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(23), - [2079] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(24), - [2082] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(25), - [2085] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(34), - [2088] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(27), - [2091] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(28), - [2094] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(29), - [2097] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(26), - [2100] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(30), - [2103] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(32), - [2106] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(33), - [2109] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 50), - [2111] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 5, .production_id = 65), - [2113] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 5), - [2115] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 5), - [2117] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 8, .production_id = 71), - [2119] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 8, .production_id = 71), - [2121] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 8, .production_id = 72), - [2123] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 8, .production_id = 72), - [2125] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 8, .production_id = 73), - [2127] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 8, .production_id = 73), - [2129] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 8, .production_id = 74), - [2131] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 8, .production_id = 74), - [2133] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 9, .production_id = 75), - [2135] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 9, .production_id = 75), - [2137] = {.count = 1, .reusable = false}, SHIFT(114), - [2139] = {.count = 1, .reusable = false}, SHIFT(871), - [2141] = {.count = 1, .reusable = false}, SHIFT(550), - [2143] = {.count = 1, .reusable = true}, SHIFT(550), - [2145] = {.count = 1, .reusable = false}, SHIFT(551), - [2147] = {.count = 1, .reusable = true}, SHIFT(551), - [2149] = {.count = 1, .reusable = false}, SHIFT(552), - [2151] = {.count = 1, .reusable = true}, SHIFT(552), - [2153] = {.count = 1, .reusable = false}, SHIFT(553), - [2155] = {.count = 1, .reusable = true}, SHIFT(553), - [2157] = {.count = 1, .reusable = false}, SHIFT(554), - [2159] = {.count = 1, .reusable = true}, SHIFT(554), - [2161] = {.count = 1, .reusable = false}, SHIFT(555), - [2163] = {.count = 1, .reusable = true}, SHIFT(555), - [2165] = {.count = 1, .reusable = false}, SHIFT(556), - [2167] = {.count = 1, .reusable = true}, SHIFT(556), - [2169] = {.count = 1, .reusable = false}, SHIFT(557), - [2171] = {.count = 1, .reusable = true}, SHIFT(557), - [2173] = {.count = 1, .reusable = false}, SHIFT(558), - [2175] = {.count = 1, .reusable = true}, SHIFT(558), - [2177] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(867), - [2180] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1144), - [2183] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1217), - [2186] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(859), - [2189] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1147), - [2192] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(867), - [2195] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1148), - [2198] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(864), - [2201] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(854), - [2204] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1216), - [2207] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(855), - [2210] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1145), - [2213] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(869), - [2216] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1255), - [2219] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(860), - [2222] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(861), - [2225] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(862), - [2228] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1149), - [2231] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(863), - [2234] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(865), - [2237] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(508), - [2240] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1150), - [2243] = {.count = 1, .reusable = false}, SHIFT(521), - [2245] = {.count = 1, .reusable = false}, SHIFT(527), - [2247] = {.count = 1, .reusable = true}, SHIFT(523), - [2249] = {.count = 1, .reusable = false}, SHIFT(526), - [2251] = {.count = 1, .reusable = false}, SHIFT(525), - [2253] = {.count = 1, .reusable = false}, SHIFT(528), - [2255] = {.count = 1, .reusable = false}, REDUCE(sym_assignment_expression, 3, .production_id = 19), - [2257] = {.count = 1, .reusable = true}, SHIFT(525), - [2259] = {.count = 1, .reusable = true}, SHIFT(522), - [2261] = {.count = 1, .reusable = false}, SHIFT(524), - [2263] = {.count = 1, .reusable = true}, SHIFT(529), - [2265] = {.count = 1, .reusable = false}, SHIFT(531), - [2267] = {.count = 1, .reusable = false}, SHIFT(570), - [2269] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1157), - [2272] = {.count = 1, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), - [2274] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1129), - [2277] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1158), - [2280] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1213), - [2283] = {.count = 1, .reusable = false}, SHIFT(591), - [2285] = {.count = 1, .reusable = true}, SHIFT(591), - [2287] = {.count = 1, .reusable = true}, SHIFT(1156), - [2289] = {.count = 1, .reusable = false}, REDUCE(sym_conditional_expression, 5, .production_id = 59), - [2291] = {.count = 1, .reusable = false}, SHIFT(1034), - [2293] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(951), - [2296] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1166), - [2299] = {.count = 1, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), - [2301] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1239), - [2304] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(944), - [2307] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1168), - [2310] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(951), - [2313] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1169), - [2316] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(949), - [2319] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(941), - [2322] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1244), - [2325] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1021), - [2328] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1167), - [2331] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(953), - [2334] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1278), - [2337] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(945), - [2340] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(946), - [2343] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(947), - [2346] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1170), - [2349] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(948), - [2352] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(950), - [2355] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(623), - [2358] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1190), - [2361] = {.count = 1, .reusable = false}, SHIFT(662), - [2363] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1176), - [2366] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1138), - [2369] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1177), - [2372] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1215), - [2375] = {.count = 1, .reusable = false}, SHIFT(1096), - [2377] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1030), - [2380] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1185), - [2383] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1245), - [2386] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1023), - [2389] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1187), - [2392] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1030), - [2395] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1188), - [2398] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1028), - [2401] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1020), - [2404] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1250), - [2407] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1086), - [2410] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1186), - [2413] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1032), - [2416] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1279), - [2419] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1024), - [2422] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1025), - [2425] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1026), - [2428] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1189), - [2431] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1027), - [2434] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1029), - [2437] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(712), - [2440] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1204), - [2443] = {.count = 1, .reusable = false}, SHIFT(749), - [2445] = {.count = 1, .reusable = false}, SHIFT(810), - [2447] = {.count = 1, .reusable = true}, SHIFT(510), - [2449] = {.count = 1, .reusable = false}, SHIFT(511), - [2451] = {.count = 1, .reusable = false}, SHIFT(873), - [2453] = {.count = 1, .reusable = true}, SHIFT(878), - [2455] = {.count = 1, .reusable = false}, SHIFT(513), - [2457] = {.count = 1, .reusable = true}, SHIFT(514), - [2459] = {.count = 1, .reusable = true}, SHIFT(515), - [2461] = {.count = 1, .reusable = true}, SHIFT(943), - [2463] = {.count = 1, .reusable = true}, SHIFT(516), - [2465] = {.count = 1, .reusable = false}, SHIFT(883), - [2467] = {.count = 1, .reusable = true}, SHIFT(883), - [2469] = {.count = 1, .reusable = true}, SHIFT(518), - [2471] = {.count = 1, .reusable = true}, SHIFT(520), - [2473] = {.count = 1, .reusable = false}, SHIFT(885), - [2475] = {.count = 1, .reusable = true}, SHIFT(1155), - [2477] = {.count = 1, .reusable = true}, SHIFT(885), - [2479] = {.count = 1, .reusable = true}, SHIFT(530), - [2481] = {.count = 1, .reusable = true}, SHIFT(532), - [2483] = {.count = 1, .reusable = true}, SHIFT(534), - [2485] = {.count = 1, .reusable = true}, SHIFT(535), - [2487] = {.count = 1, .reusable = true}, SHIFT(536), - [2489] = {.count = 1, .reusable = false}, SHIFT(537), - [2491] = {.count = 1, .reusable = true}, SHIFT(538), - [2493] = {.count = 1, .reusable = true}, SHIFT(539), - [2495] = {.count = 1, .reusable = false}, SHIFT(540), - [2497] = {.count = 1, .reusable = false}, SHIFT(543), - [2499] = {.count = 1, .reusable = true}, SHIFT(895), - [2501] = {.count = 1, .reusable = true}, SHIFT(896), - [2503] = {.count = 1, .reusable = true}, SHIFT(547), - [2505] = {.count = 1, .reusable = false}, SHIFT(897), - [2507] = {.count = 1, .reusable = false}, SHIFT(549), - [2509] = {.count = 1, .reusable = true}, SHIFT(559), - [2511] = {.count = 1, .reusable = true}, SHIFT(562), - [2513] = {.count = 1, .reusable = true}, SHIFT(1175), - [2515] = {.count = 1, .reusable = true}, SHIFT(564), - [2517] = {.count = 1, .reusable = false}, SHIFT(565), - [2519] = {.count = 1, .reusable = true}, SHIFT(566), - [2521] = {.count = 1, .reusable = true}, SHIFT(567), - [2523] = {.count = 1, .reusable = false}, SHIFT(568), - [2525] = {.count = 1, .reusable = true}, SHIFT(569), - [2527] = {.count = 1, .reusable = true}, SHIFT(571), - [2529] = {.count = 1, .reusable = true}, SHIFT(572), - [2531] = {.count = 1, .reusable = false}, SHIFT(573), - [2533] = {.count = 1, .reusable = false}, SHIFT(914), - [2535] = {.count = 1, .reusable = true}, SHIFT(574), - [2537] = {.count = 1, .reusable = true}, SHIFT(575), - [2539] = {.count = 1, .reusable = true}, SHIFT(576), - [2541] = {.count = 1, .reusable = false}, SHIFT(577), - [2543] = {.count = 1, .reusable = false}, SHIFT(578), - [2545] = {.count = 1, .reusable = true}, SHIFT(579), - [2547] = {.count = 1, .reusable = true}, SHIFT(580), - [2549] = {.count = 1, .reusable = true}, SHIFT(581), - [2551] = {.count = 1, .reusable = true}, SHIFT(582), - [2553] = {.count = 1, .reusable = true}, SHIFT(583), - [2555] = {.count = 1, .reusable = false}, SHIFT(922), - [2557] = {.count = 1, .reusable = true}, SHIFT(922), - [2559] = {.count = 1, .reusable = true}, SHIFT(584), - [2561] = {.count = 1, .reusable = false}, SHIFT(926), - [2563] = {.count = 1, .reusable = true}, SHIFT(926), - [2565] = {.count = 1, .reusable = true}, SHIFT(585), - [2567] = {.count = 1, .reusable = true}, SHIFT(586), - [2569] = {.count = 1, .reusable = true}, SHIFT(587), - [2571] = {.count = 1, .reusable = true}, SHIFT(589), - [2573] = {.count = 1, .reusable = true}, SHIFT(590), - [2575] = {.count = 1, .reusable = false}, SHIFT(592), - [2577] = {.count = 1, .reusable = true}, SHIFT(593), - [2579] = {.count = 1, .reusable = false}, SHIFT(594), - [2581] = {.count = 1, .reusable = true}, SHIFT(595), - [2583] = {.count = 1, .reusable = true}, SHIFT(596), - [2585] = {.count = 1, .reusable = true}, SHIFT(597), - [2587] = {.count = 1, .reusable = true}, SHIFT(599), - [2589] = {.count = 1, .reusable = false}, SHIFT(932), - [2591] = {.count = 1, .reusable = true}, SHIFT(932), - [2593] = {.count = 1, .reusable = true}, SHIFT(600), - [2595] = {.count = 1, .reusable = false}, SHIFT(934), - [2597] = {.count = 1, .reusable = true}, SHIFT(934), - [2599] = {.count = 1, .reusable = true}, SHIFT(601), - [2601] = {.count = 1, .reusable = true}, SHIFT(603), - [2603] = {.count = 1, .reusable = false}, SHIFT(937), - [2605] = {.count = 1, .reusable = true}, SHIFT(937), - [2607] = {.count = 1, .reusable = true}, SHIFT(604), - [2609] = {.count = 1, .reusable = true}, SHIFT(605), - [2611] = {.count = 1, .reusable = true}, SHIFT(606), - [2613] = {.count = 1, .reusable = true}, SHIFT(607), - [2615] = {.count = 1, .reusable = true}, SHIFT(610), - [2617] = {.count = 1, .reusable = true}, SHIFT(612), - [2619] = {.count = 1, .reusable = false}, SHIFT(939), - [2621] = {.count = 1, .reusable = true}, SHIFT(939), - [2623] = {.count = 1, .reusable = true}, SHIFT(613), - [2625] = {.count = 1, .reusable = true}, SHIFT(616), - [2627] = {.count = 1, .reusable = true}, SHIFT(620), - [2629] = {.count = 1, .reusable = true}, SHIFT(624), - [2631] = {.count = 1, .reusable = false}, SHIFT(625), - [2633] = {.count = 1, .reusable = false}, SHIFT(957), - [2635] = {.count = 1, .reusable = true}, SHIFT(961), - [2637] = {.count = 1, .reusable = false}, SHIFT(626), - [2639] = {.count = 1, .reusable = true}, SHIFT(627), - [2641] = {.count = 1, .reusable = true}, SHIFT(628), - [2643] = {.count = 1, .reusable = true}, SHIFT(1022), - [2645] = {.count = 1, .reusable = true}, SHIFT(629), - [2647] = {.count = 1, .reusable = false}, SHIFT(965), - [2649] = {.count = 1, .reusable = true}, SHIFT(965), - [2651] = {.count = 1, .reusable = true}, SHIFT(631), - [2653] = {.count = 1, .reusable = true}, SHIFT(633), - [2655] = {.count = 1, .reusable = true}, SHIFT(634), - [2657] = {.count = 1, .reusable = true}, SHIFT(635), - [2659] = {.count = 1, .reusable = true}, SHIFT(637), - [2661] = {.count = 1, .reusable = true}, SHIFT(791), - [2663] = {.count = 1, .reusable = true}, SHIFT(638), - [2665] = {.count = 1, .reusable = true}, SHIFT(639), - [2667] = {.count = 1, .reusable = false}, SHIFT(640), - [2669] = {.count = 1, .reusable = true}, SHIFT(641), - [2671] = {.count = 1, .reusable = false}, SHIFT(642), - [2673] = {.count = 1, .reusable = false}, SHIFT(644), - [2675] = {.count = 1, .reusable = true}, SHIFT(976), - [2677] = {.count = 1, .reusable = true}, SHIFT(977), - [2679] = {.count = 1, .reusable = true}, SHIFT(648), - [2681] = {.count = 1, .reusable = false}, SHIFT(978), - [2683] = {.count = 1, .reusable = false}, SHIFT(650), - [2685] = {.count = 1, .reusable = true}, SHIFT(651), - [2687] = {.count = 1, .reusable = true}, SHIFT(654), - [2689] = {.count = 1, .reusable = true}, SHIFT(656), - [2691] = {.count = 1, .reusable = false}, SHIFT(657), - [2693] = {.count = 1, .reusable = true}, SHIFT(658), - [2695] = {.count = 1, .reusable = true}, SHIFT(659), - [2697] = {.count = 1, .reusable = false}, SHIFT(660), - [2699] = {.count = 1, .reusable = true}, SHIFT(661), - [2701] = {.count = 1, .reusable = true}, SHIFT(663), - [2703] = {.count = 1, .reusable = true}, SHIFT(664), - [2705] = {.count = 1, .reusable = false}, SHIFT(665), - [2707] = {.count = 1, .reusable = false}, SHIFT(993), - [2709] = {.count = 1, .reusable = true}, SHIFT(666), - [2711] = {.count = 1, .reusable = false}, SHIFT(667), - [2713] = {.count = 1, .reusable = false}, SHIFT(668), - [2715] = {.count = 1, .reusable = true}, SHIFT(669), - [2717] = {.count = 1, .reusable = true}, SHIFT(670), - [2719] = {.count = 1, .reusable = true}, SHIFT(671), - [2721] = {.count = 1, .reusable = true}, SHIFT(672), - [2723] = {.count = 1, .reusable = true}, SHIFT(673), - [2725] = {.count = 1, .reusable = false}, SHIFT(1001), - [2727] = {.count = 1, .reusable = true}, SHIFT(1001), - [2729] = {.count = 1, .reusable = true}, SHIFT(674), - [2731] = {.count = 1, .reusable = false}, SHIFT(1005), - [2733] = {.count = 1, .reusable = true}, SHIFT(1005), - [2735] = {.count = 1, .reusable = true}, SHIFT(675), - [2737] = {.count = 1, .reusable = true}, SHIFT(676), - [2739] = {.count = 1, .reusable = true}, SHIFT(677), - [2741] = {.count = 1, .reusable = true}, SHIFT(679), - [2743] = {.count = 1, .reusable = true}, SHIFT(680), - [2745] = {.count = 1, .reusable = false}, SHIFT(681), - [2747] = {.count = 1, .reusable = true}, SHIFT(682), - [2749] = {.count = 1, .reusable = false}, SHIFT(683), - [2751] = {.count = 1, .reusable = true}, SHIFT(684), - [2753] = {.count = 1, .reusable = true}, SHIFT(685), - [2755] = {.count = 1, .reusable = true}, SHIFT(686), - [2757] = {.count = 1, .reusable = true}, SHIFT(688), - [2759] = {.count = 1, .reusable = false}, SHIFT(1011), - [2761] = {.count = 1, .reusable = true}, SHIFT(1011), - [2763] = {.count = 1, .reusable = true}, SHIFT(689), - [2765] = {.count = 1, .reusable = false}, SHIFT(1013), - [2767] = {.count = 1, .reusable = true}, SHIFT(1013), - [2769] = {.count = 1, .reusable = true}, SHIFT(690), - [2771] = {.count = 1, .reusable = true}, SHIFT(692), - [2773] = {.count = 1, .reusable = false}, SHIFT(1016), - [2775] = {.count = 1, .reusable = true}, SHIFT(1016), - [2777] = {.count = 1, .reusable = true}, SHIFT(693), - [2779] = {.count = 1, .reusable = true}, SHIFT(694), - [2781] = {.count = 1, .reusable = true}, SHIFT(695), - [2783] = {.count = 1, .reusable = true}, SHIFT(696), - [2785] = {.count = 1, .reusable = true}, SHIFT(699), - [2787] = {.count = 1, .reusable = true}, SHIFT(701), - [2789] = {.count = 1, .reusable = false}, SHIFT(1018), - [2791] = {.count = 1, .reusable = true}, SHIFT(1018), - [2793] = {.count = 1, .reusable = true}, SHIFT(702), - [2795] = {.count = 1, .reusable = true}, SHIFT(705), - [2797] = {.count = 1, .reusable = true}, SHIFT(709), - [2799] = {.count = 1, .reusable = true}, SHIFT(713), - [2801] = {.count = 1, .reusable = false}, SHIFT(714), - [2803] = {.count = 1, .reusable = false}, SHIFT(1036), - [2805] = {.count = 1, .reusable = true}, SHIFT(1040), - [2807] = {.count = 1, .reusable = false}, SHIFT(715), - [2809] = {.count = 1, .reusable = true}, SHIFT(716), - [2811] = {.count = 1, .reusable = true}, SHIFT(717), - [2813] = {.count = 1, .reusable = true}, SHIFT(1087), - [2815] = {.count = 1, .reusable = true}, SHIFT(718), - [2817] = {.count = 1, .reusable = false}, SHIFT(1044), - [2819] = {.count = 1, .reusable = true}, SHIFT(1044), - [2821] = {.count = 1, .reusable = true}, SHIFT(720), - [2823] = {.count = 1, .reusable = true}, SHIFT(722), - [2825] = {.count = 1, .reusable = true}, SHIFT(723), - [2827] = {.count = 1, .reusable = true}, SHIFT(724), - [2829] = {.count = 1, .reusable = true}, SHIFT(726), - [2831] = {.count = 1, .reusable = true}, SHIFT(727), - [2833] = {.count = 1, .reusable = true}, SHIFT(728), - [2835] = {.count = 1, .reusable = false}, SHIFT(729), - [2837] = {.count = 1, .reusable = true}, SHIFT(730), - [2839] = {.count = 1, .reusable = false}, SHIFT(731), - [2841] = {.count = 1, .reusable = false}, SHIFT(733), - [2843] = {.count = 1, .reusable = true}, SHIFT(1054), - [2845] = {.count = 1, .reusable = true}, SHIFT(1055), - [2847] = {.count = 1, .reusable = true}, SHIFT(737), - [2849] = {.count = 1, .reusable = false}, SHIFT(1056), - [2851] = {.count = 1, .reusable = false}, SHIFT(739), - [2853] = {.count = 1, .reusable = true}, SHIFT(740), - [2855] = {.count = 1, .reusable = true}, SHIFT(1194), - [2857] = {.count = 1, .reusable = true}, SHIFT(743), - [2859] = {.count = 1, .reusable = false}, SHIFT(744), - [2861] = {.count = 1, .reusable = true}, SHIFT(745), - [2863] = {.count = 1, .reusable = true}, SHIFT(746), - [2865] = {.count = 1, .reusable = false}, SHIFT(747), - [2867] = {.count = 1, .reusable = true}, SHIFT(748), - [2869] = {.count = 1, .reusable = true}, SHIFT(750), - [2871] = {.count = 1, .reusable = true}, SHIFT(751), - [2873] = {.count = 1, .reusable = false}, SHIFT(752), - [2875] = {.count = 1, .reusable = false}, SHIFT(1067), - [2877] = {.count = 1, .reusable = true}, SHIFT(753), - [2879] = {.count = 1, .reusable = true}, SHIFT(754), - [2881] = {.count = 1, .reusable = true}, SHIFT(755), - [2883] = {.count = 1, .reusable = true}, SHIFT(756), - [2885] = {.count = 1, .reusable = false}, SHIFT(1069), - [2887] = {.count = 1, .reusable = true}, SHIFT(1069), - [2889] = {.count = 1, .reusable = true}, SHIFT(757), - [2891] = {.count = 1, .reusable = false}, SHIFT(1073), - [2893] = {.count = 1, .reusable = true}, SHIFT(1073), - [2895] = {.count = 1, .reusable = true}, SHIFT(758), - [2897] = {.count = 1, .reusable = true}, SHIFT(759), - [2899] = {.count = 1, .reusable = true}, SHIFT(760), - [2901] = {.count = 1, .reusable = true}, SHIFT(762), - [2903] = {.count = 1, .reusable = true}, SHIFT(763), - [2905] = {.count = 1, .reusable = true}, SHIFT(764), - [2907] = {.count = 1, .reusable = true}, SHIFT(766), - [2909] = {.count = 1, .reusable = false}, SHIFT(1076), - [2911] = {.count = 1, .reusable = true}, SHIFT(1076), - [2913] = {.count = 1, .reusable = true}, SHIFT(767), - [2915] = {.count = 1, .reusable = false}, SHIFT(1078), - [2917] = {.count = 1, .reusable = true}, SHIFT(1078), - [2919] = {.count = 1, .reusable = true}, SHIFT(768), - [2921] = {.count = 1, .reusable = true}, SHIFT(770), - [2923] = {.count = 1, .reusable = false}, SHIFT(1081), - [2925] = {.count = 1, .reusable = true}, SHIFT(1081), - [2927] = {.count = 1, .reusable = true}, SHIFT(771), - [2929] = {.count = 1, .reusable = true}, SHIFT(774), - [2931] = {.count = 1, .reusable = true}, SHIFT(776), - [2933] = {.count = 1, .reusable = false}, SHIFT(1083), - [2935] = {.count = 1, .reusable = true}, SHIFT(1083), - [2937] = {.count = 1, .reusable = true}, SHIFT(777), - [2939] = {.count = 1, .reusable = true}, SHIFT(780), - [2941] = {.count = 1, .reusable = true}, SHIFT(784), - [2943] = {.count = 1, .reusable = true}, SHIFT(788), - [2945] = {.count = 1, .reusable = false}, SHIFT(789), - [2947] = {.count = 1, .reusable = false}, SHIFT(1098), - [2949] = {.count = 1, .reusable = true}, SHIFT(1101), - [2951] = {.count = 1, .reusable = false}, SHIFT(790), - [2953] = {.count = 1, .reusable = true}, SHIFT(792), - [2955] = {.count = 1, .reusable = false}, SHIFT(1103), - [2957] = {.count = 1, .reusable = true}, SHIFT(1103), - [2959] = {.count = 1, .reusable = true}, SHIFT(794), - [2961] = {.count = 1, .reusable = true}, SHIFT(796), - [2963] = {.count = 1, .reusable = true}, SHIFT(797), - [2965] = {.count = 1, .reusable = true}, SHIFT(798), - [2967] = {.count = 1, .reusable = true}, SHIFT(799), - [2969] = {.count = 1, .reusable = true}, SHIFT(800), - [2971] = {.count = 1, .reusable = true}, SHIFT(801), - [2973] = {.count = 1, .reusable = false}, SHIFT(802), - [2975] = {.count = 1, .reusable = true}, SHIFT(1106), - [2977] = {.count = 1, .reusable = true}, SHIFT(806), - [2979] = {.count = 1, .reusable = false}, SHIFT(1107), - [2981] = {.count = 1, .reusable = false}, SHIFT(808), - [2983] = {.count = 1, .reusable = true}, SHIFT(1206), - [2985] = {.count = 1, .reusable = true}, SHIFT(811), - [2987] = {.count = 1, .reusable = true}, SHIFT(812), - [2989] = {.count = 1, .reusable = false}, SHIFT(813), - [2991] = {.count = 1, .reusable = false}, SHIFT(1112), - [2993] = {.count = 1, .reusable = false}, SHIFT(1113), - [2995] = {.count = 1, .reusable = true}, SHIFT(1113), - [2997] = {.count = 1, .reusable = true}, SHIFT(814), - [2999] = {.count = 1, .reusable = false}, SHIFT(1117), - [3001] = {.count = 1, .reusable = true}, SHIFT(1117), - [3003] = {.count = 1, .reusable = true}, SHIFT(815), - [3005] = {.count = 1, .reusable = true}, SHIFT(817), - [3007] = {.count = 1, .reusable = true}, SHIFT(818), - [3009] = {.count = 1, .reusable = true}, SHIFT(820), - [3011] = {.count = 1, .reusable = false}, SHIFT(1120), - [3013] = {.count = 1, .reusable = true}, SHIFT(1120), - [3015] = {.count = 1, .reusable = true}, SHIFT(821), - [3017] = {.count = 1, .reusable = false}, SHIFT(1122), - [3019] = {.count = 1, .reusable = true}, SHIFT(1122), - [3021] = {.count = 1, .reusable = true}, SHIFT(822), - [3023] = {.count = 1, .reusable = true}, SHIFT(824), - [3025] = {.count = 1, .reusable = false}, SHIFT(1125), - [3027] = {.count = 1, .reusable = true}, SHIFT(1125), - [3029] = {.count = 1, .reusable = true}, SHIFT(825), - [3031] = {.count = 1, .reusable = true}, SHIFT(828), - [3033] = {.count = 1, .reusable = true}, SHIFT(830), - [3035] = {.count = 1, .reusable = false}, SHIFT(1127), - [3037] = {.count = 1, .reusable = true}, SHIFT(1127), - [3039] = {.count = 1, .reusable = true}, SHIFT(831), - [3041] = {.count = 1, .reusable = true}, SHIFT(834), - [3043] = {.count = 1, .reusable = true}, SHIFT(838), - [3045] = {.count = 1, .reusable = false}, SHIFT(841), - [3047] = {.count = 1, .reusable = false}, SHIFT(1130), - [3049] = {.count = 1, .reusable = true}, SHIFT(842), - [3051] = {.count = 1, .reusable = true}, SHIFT(843), - [3053] = {.count = 1, .reusable = false}, SHIFT(1135), - [3055] = {.count = 1, .reusable = false}, SHIFT(844), - [3057] = {.count = 1, .reusable = true}, SHIFT(845), - [3059] = {.count = 1, .reusable = false}, SHIFT(846), - [3061] = {.count = 1, .reusable = false}, SHIFT(1137), - [3063] = {.count = 1, .reusable = true}, SHIFT(847), - [3065] = {.count = 1, .reusable = false}, SHIFT(848), - [3067] = {.count = 1, .reusable = false}, SHIFT(1139), - [3069] = {.count = 1, .reusable = true}, SHIFT(849), - [3071] = {.count = 1, .reusable = false}, SHIFT(1141), - [3073] = {.count = 1, .reusable = false}, SHIFT(850), - [3075] = {.count = 1, .reusable = true}, SHIFT(851), - [3077] = {.count = 1, .reusable = false}, SHIFT(852), - [3079] = {.count = 1, .reusable = false}, SHIFT(1143), - [3081] = {.count = 1, .reusable = true}, SHIFT(853), - [3083] = {.count = 1, .reusable = true}, SHIFT(872), - [3085] = {.count = 1, .reusable = false}, SHIFT(874), - [3087] = {.count = 1, .reusable = true}, SHIFT(879), - [3089] = {.count = 1, .reusable = true}, SHIFT(884), - [3091] = {.count = 1, .reusable = true}, SHIFT(886), - [3093] = {.count = 1, .reusable = true}, SHIFT(889), - [3095] = {.count = 1, .reusable = false}, SHIFT(959), - [3097] = {.count = 1, .reusable = true}, SHIFT(959), - [3099] = {.count = 1, .reusable = false}, SHIFT(900), - [3101] = {.count = 1, .reusable = true}, SHIFT(900), - [3103] = {.count = 1, .reusable = true}, SHIFT(902), - [3105] = {.count = 1, .reusable = false}, SHIFT(903), - [3107] = {.count = 1, .reusable = false}, SHIFT(1162), - [3109] = {.count = 1, .reusable = true}, SHIFT(1162), - [3111] = {.count = 1, .reusable = true}, SHIFT(909), - [3113] = {.count = 1, .reusable = false}, SHIFT(1164), - [3115] = {.count = 1, .reusable = true}, SHIFT(1164), - [3117] = {.count = 1, .reusable = true}, SHIFT(910), - [3119] = {.count = 1, .reusable = true}, SHIFT(924), - [3121] = {.count = 1, .reusable = false}, SHIFT(1165), - [3123] = {.count = 1, .reusable = true}, SHIFT(1165), - [3125] = {.count = 1, .reusable = true}, SHIFT(925), - [3127] = {.count = 1, .reusable = true}, SHIFT(928), - [3129] = {.count = 1, .reusable = true}, SHIFT(936), - [3131] = {.count = 1, .reusable = true}, SHIFT(956), - [3133] = {.count = 1, .reusable = false}, SHIFT(958), - [3135] = {.count = 1, .reusable = true}, SHIFT(962), - [3137] = {.count = 1, .reusable = true}, SHIFT(966), - [3139] = {.count = 1, .reusable = true}, SHIFT(967), - [3141] = {.count = 1, .reusable = true}, SHIFT(970), - [3143] = {.count = 1, .reusable = false}, SHIFT(1038), - [3145] = {.count = 1, .reusable = true}, SHIFT(1038), - [3147] = {.count = 1, .reusable = true}, SHIFT(981), - [3149] = {.count = 1, .reusable = false}, SHIFT(982), - [3151] = {.count = 1, .reusable = false}, SHIFT(1181), - [3153] = {.count = 1, .reusable = true}, SHIFT(1181), - [3155] = {.count = 1, .reusable = true}, SHIFT(988), - [3157] = {.count = 1, .reusable = false}, SHIFT(1183), - [3159] = {.count = 1, .reusable = true}, SHIFT(1183), - [3161] = {.count = 1, .reusable = true}, SHIFT(989), - [3163] = {.count = 1, .reusable = true}, SHIFT(1003), - [3165] = {.count = 1, .reusable = false}, SHIFT(1184), - [3167] = {.count = 1, .reusable = true}, SHIFT(1184), - [3169] = {.count = 1, .reusable = true}, SHIFT(1004), - [3171] = {.count = 1, .reusable = true}, SHIFT(1007), - [3173] = {.count = 1, .reusable = true}, SHIFT(1015), - [3175] = {.count = 1, .reusable = true}, SHIFT(1035), - [3177] = {.count = 1, .reusable = false}, SHIFT(1037), - [3179] = {.count = 1, .reusable = true}, SHIFT(1041), - [3181] = {.count = 1, .reusable = true}, SHIFT(1045), - [3183] = {.count = 1, .reusable = true}, SHIFT(1046), - [3185] = {.count = 1, .reusable = true}, SHIFT(1048), - [3187] = {.count = 1, .reusable = false}, SHIFT(1099), - [3189] = {.count = 1, .reusable = true}, SHIFT(1099), - [3191] = {.count = 1, .reusable = false}, SHIFT(1198), - [3193] = {.count = 1, .reusable = true}, SHIFT(1198), - [3195] = {.count = 1, .reusable = true}, SHIFT(1062), - [3197] = {.count = 1, .reusable = false}, SHIFT(1200), - [3199] = {.count = 1, .reusable = true}, SHIFT(1200), - [3201] = {.count = 1, .reusable = true}, SHIFT(1063), - [3203] = {.count = 1, .reusable = true}, SHIFT(1071), - [3205] = {.count = 1, .reusable = false}, SHIFT(1201), - [3207] = {.count = 1, .reusable = true}, SHIFT(1201), - [3209] = {.count = 1, .reusable = true}, SHIFT(1072), - [3211] = {.count = 1, .reusable = true}, SHIFT(1075), - [3213] = {.count = 1, .reusable = true}, SHIFT(1080), - [3215] = {.count = 1, .reusable = true}, SHIFT(1097), - [3217] = {.count = 1, .reusable = true}, SHIFT(1104), - [3219] = {.count = 1, .reusable = true}, SHIFT(1105), - [3221] = {.count = 1, .reusable = false}, SHIFT(1131), - [3223] = {.count = 1, .reusable = true}, SHIFT(1131), - [3225] = {.count = 1, .reusable = false}, SHIFT(1209), - [3227] = {.count = 1, .reusable = true}, SHIFT(1209), - [3229] = {.count = 1, .reusable = true}, SHIFT(1109), - [3231] = {.count = 1, .reusable = false}, SHIFT(1211), - [3233] = {.count = 1, .reusable = true}, SHIFT(1211), - [3235] = {.count = 1, .reusable = true}, SHIFT(1110), - [3237] = {.count = 1, .reusable = true}, SHIFT(1115), - [3239] = {.count = 1, .reusable = false}, SHIFT(1212), - [3241] = {.count = 1, .reusable = true}, SHIFT(1212), - [3243] = {.count = 1, .reusable = true}, SHIFT(1116), - [3245] = {.count = 1, .reusable = true}, SHIFT(1119), - [3247] = {.count = 1, .reusable = true}, SHIFT(1124), - [3249] = {.count = 1, .reusable = true}, SHIFT(1133), - [3251] = {.count = 1, .reusable = true}, SHIFT(1134), - [3253] = {.count = 1, .reusable = true}, SHIFT(1140), - [3255] = {.count = 1, .reusable = false}, SHIFT(1153), - [3257] = {.count = 1, .reusable = false}, SHIFT(1159), - [3259] = {.count = 1, .reusable = false}, SHIFT(1223), - [3261] = {.count = 1, .reusable = true}, SHIFT(1223), - [3263] = {.count = 1, .reusable = true}, SHIFT(1160), - [3265] = {.count = 1, .reusable = true}, SHIFT(1163), - [3267] = {.count = 1, .reusable = false}, SHIFT(1174), - [3269] = {.count = 1, .reusable = false}, SHIFT(1178), - [3271] = {.count = 1, .reusable = false}, SHIFT(1242), - [3273] = {.count = 1, .reusable = true}, SHIFT(1242), - [3275] = {.count = 1, .reusable = true}, SHIFT(1179), - [3277] = {.count = 1, .reusable = true}, SHIFT(1182), - [3279] = {.count = 1, .reusable = false}, SHIFT(1193), - [3281] = {.count = 1, .reusable = false}, SHIFT(1195), - [3283] = {.count = 1, .reusable = false}, SHIFT(1248), - [3285] = {.count = 1, .reusable = true}, SHIFT(1248), - [3287] = {.count = 1, .reusable = true}, SHIFT(1196), - [3289] = {.count = 1, .reusable = true}, SHIFT(1199), - [3291] = {.count = 1, .reusable = false}, SHIFT(1252), - [3293] = {.count = 1, .reusable = true}, SHIFT(1252), - [3295] = {.count = 1, .reusable = true}, SHIFT(1207), - [3297] = {.count = 1, .reusable = true}, SHIFT(1210), - [3299] = {.count = 1, .reusable = true}, SHIFT(1220), - [3301] = {.count = 1, .reusable = true}, SHIFT(1225), - [3303] = {.count = 1, .reusable = false}, SHIFT(1262), - [3305] = {.count = 1, .reusable = true}, SHIFT(1262), - [3307] = {.count = 1, .reusable = true}, SHIFT(1226), - [3309] = {.count = 1, .reusable = false}, SHIFT(1266), - [3311] = {.count = 1, .reusable = true}, SHIFT(1266), - [3313] = {.count = 1, .reusable = true}, SHIFT(1227), - [3315] = {.count = 1, .reusable = true}, SHIFT(1228), - [3317] = {.count = 1, .reusable = false}, SHIFT(1269), - [3319] = {.count = 1, .reusable = true}, SHIFT(1269), - [3321] = {.count = 1, .reusable = true}, SHIFT(1229), - [3323] = {.count = 1, .reusable = false}, SHIFT(1271), - [3325] = {.count = 1, .reusable = true}, SHIFT(1271), - [3327] = {.count = 1, .reusable = true}, SHIFT(1230), - [3329] = {.count = 1, .reusable = true}, SHIFT(1231), - [3331] = {.count = 1, .reusable = false}, SHIFT(1274), - [3333] = {.count = 1, .reusable = true}, SHIFT(1274), - [3335] = {.count = 1, .reusable = true}, SHIFT(1232), - [3337] = {.count = 1, .reusable = true}, SHIFT(1233), - [3339] = {.count = 1, .reusable = true}, SHIFT(1234), - [3341] = {.count = 1, .reusable = false}, SHIFT(1276), - [3343] = {.count = 1, .reusable = true}, SHIFT(1276), - [3345] = {.count = 1, .reusable = true}, SHIFT(1235), - [3347] = {.count = 1, .reusable = true}, SHIFT(1236), - [3349] = {.count = 1, .reusable = true}, SHIFT(1237), - [3351] = {.count = 1, .reusable = true}, SHIFT(1241), - [3353] = {.count = 1, .reusable = true}, SHIFT(1247), - [3355] = {.count = 1, .reusable = true}, SHIFT(1251), - [3357] = {.count = 1, .reusable = false}, SHIFT(1283), - [3359] = {.count = 1, .reusable = true}, SHIFT(1283), - [3361] = {.count = 1, .reusable = true}, SHIFT(1260), - [3363] = {.count = 1, .reusable = false}, SHIFT(1285), - [3365] = {.count = 1, .reusable = true}, SHIFT(1285), - [3367] = {.count = 1, .reusable = true}, SHIFT(1261), - [3369] = {.count = 1, .reusable = true}, SHIFT(1264), - [3371] = {.count = 1, .reusable = false}, SHIFT(1286), - [3373] = {.count = 1, .reusable = true}, SHIFT(1286), - [3375] = {.count = 1, .reusable = true}, SHIFT(1265), - [3377] = {.count = 1, .reusable = true}, SHIFT(1268), - [3379] = {.count = 1, .reusable = true}, SHIFT(1273), - [3381] = {.count = 1, .reusable = false}, SHIFT(1288), - [3383] = {.count = 1, .reusable = true}, SHIFT(1288), - [3385] = {.count = 1, .reusable = true}, SHIFT(1281), - [3387] = {.count = 1, .reusable = true}, SHIFT(1284), - [3389] = {.count = 1, .reusable = true}, SHIFT(1287), + [5] = {.count = 1, .reusable = true}, REDUCE(sym_translation_unit, 0), + [7] = {.count = 1, .reusable = false}, SHIFT(407), + [9] = {.count = 1, .reusable = false}, SHIFT(997), + [11] = {.count = 1, .reusable = false}, SHIFT(1298), + [13] = {.count = 1, .reusable = false}, SHIFT(1265), + [15] = {.count = 1, .reusable = false}, SHIFT(1262), + [17] = {.count = 1, .reusable = false}, SHIFT(1068), + [19] = {.count = 1, .reusable = true}, SHIFT(137), + [21] = {.count = 1, .reusable = false}, SHIFT(834), + [23] = {.count = 1, .reusable = false}, SHIFT(842), + [25] = {.count = 1, .reusable = false}, SHIFT(1252), + [27] = {.count = 1, .reusable = true}, SHIFT(231), + [29] = {.count = 1, .reusable = true}, SHIFT(26), + [31] = {.count = 1, .reusable = true}, SHIFT(584), + [33] = {.count = 1, .reusable = false}, SHIFT(784), + [35] = {.count = 1, .reusable = false}, SHIFT(783), + [37] = {.count = 1, .reusable = false}, SHIFT(826), + [39] = {.count = 1, .reusable = false}, SHIFT(855), + [41] = {.count = 1, .reusable = false}, SHIFT(1040), + [43] = {.count = 1, .reusable = false}, SHIFT(1039), + [45] = {.count = 1, .reusable = false}, SHIFT(1035), + [47] = {.count = 1, .reusable = false}, SHIFT(1073), + [49] = {.count = 1, .reusable = false}, SHIFT(1074), + [51] = {.count = 1, .reusable = false}, SHIFT(1075), + [53] = {.count = 1, .reusable = false}, SHIFT(139), + [55] = {.count = 1, .reusable = false}, SHIFT(1240), + [57] = {.count = 1, .reusable = false}, SHIFT(520), + [59] = {.count = 1, .reusable = false}, SHIFT(1238), + [61] = {.count = 1, .reusable = false}, SHIFT(1237), + [63] = {.count = 1, .reusable = false}, SHIFT(1236), + [65] = {.count = 1, .reusable = true}, SHIFT(579), + [67] = {.count = 1, .reusable = false}, SHIFT(579), + [69] = {.count = 1, .reusable = true}, SHIFT(582), + [71] = {.count = 1, .reusable = false}, SHIFT(583), + [73] = {.count = 1, .reusable = true}, SHIFT(721), + [75] = {.count = 1, .reusable = true}, SHIFT(1082), + [77] = {.count = 1, .reusable = true}, SHIFT(979), + [79] = {.count = 1, .reusable = false}, SHIFT(721), + [81] = {.count = 1, .reusable = false}, SHIFT(408), + [83] = {.count = 1, .reusable = false}, SHIFT(1000), + [85] = {.count = 1, .reusable = false}, SHIFT(1177), + [87] = {.count = 1, .reusable = false}, SHIFT(1113), + [89] = {.count = 1, .reusable = false}, SHIFT(381), + [91] = {.count = 1, .reusable = false}, SHIFT(1179), + [93] = {.count = 1, .reusable = false}, SHIFT(25), + [95] = {.count = 1, .reusable = false}, SHIFT(1137), + [97] = {.count = 1, .reusable = false}, SHIFT(1083), + [99] = {.count = 1, .reusable = true}, SHIFT(238), + [101] = {.count = 1, .reusable = false}, SHIFT(836), + [103] = {.count = 1, .reusable = false}, SHIFT(832), + [105] = {.count = 1, .reusable = true}, SHIFT(42), + [107] = {.count = 1, .reusable = false}, SHIFT(870), + [109] = {.count = 1, .reusable = false}, SHIFT(1079), + [111] = {.count = 1, .reusable = false}, SHIFT(1090), + [113] = {.count = 1, .reusable = false}, SHIFT(1078), + [115] = {.count = 1, .reusable = false}, SHIFT(144), + [117] = {.count = 1, .reusable = false}, SHIFT(1289), + [119] = {.count = 1, .reusable = false}, SHIFT(498), + [121] = {.count = 1, .reusable = false}, SHIFT(1244), + [123] = {.count = 1, .reusable = false}, SHIFT(1245), + [125] = {.count = 1, .reusable = false}, SHIFT(1182), + [127] = {.count = 1, .reusable = true}, SHIFT(671), + [129] = {.count = 1, .reusable = false}, SHIFT(671), + [131] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif, 3, .production_id = 14), + [133] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif, 2, .production_id = 14), + [135] = {.count = 1, .reusable = false}, SHIFT(400), + [137] = {.count = 1, .reusable = false}, SHIFT(403), + [139] = {.count = 1, .reusable = false}, SHIFT(332), + [141] = {.count = 1, .reusable = false}, SHIFT(372), + [143] = {.count = 1, .reusable = false}, SHIFT(334), + [145] = {.count = 1, .reusable = false}, SHIFT(382), + [147] = {.count = 1, .reusable = false}, SHIFT(260), + [149] = {.count = 1, .reusable = false}, SHIFT(259), + [151] = {.count = 1, .reusable = false}, SHIFT(395), + [153] = {.count = 1, .reusable = false}, SHIFT(370), + [155] = {.count = 1, .reusable = false}, SHIFT(250), + [157] = {.count = 1, .reusable = false}, SHIFT(394), + [159] = {.count = 1, .reusable = false}, SHIFT(406), + [161] = {.count = 1, .reusable = false}, SHIFT(397), + [163] = {.count = 1, .reusable = false}, SHIFT(251), + [165] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(408), + [168] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1000), + [171] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1177), + [174] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1113), + [177] = {.count = 1, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), + [179] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1179), + [182] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1083), + [185] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(238), + [188] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(836), + [191] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(832), + [194] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1252), + [197] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(231), + [200] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(42), + [203] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(584), + [206] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(784), + [209] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(783), + [212] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(826), + [215] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(870), + [218] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1040), + [221] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1039), + [224] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1035), + [227] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1079), + [230] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1090), + [233] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1078), + [236] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(144), + [239] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1289), + [242] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(498), + [245] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1244), + [248] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1245), + [251] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1182), + [254] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(579), + [257] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(579), + [260] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(582), + [263] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(583), + [266] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(671), + [269] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1082), + [272] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(979), + [275] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(671), + [278] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(409), + [281] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(983), + [284] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1159), + [287] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1160), + [290] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1161), + [293] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1105), + [296] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(273), + [299] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(844), + [302] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(833), + [305] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(23), + [308] = {.count = 1, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), + [310] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(871), + [313] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1097), + [316] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1100), + [319] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1094), + [322] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(77), + [325] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1268), + [328] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(506), + [331] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1208), + [334] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1200), + [337] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1163), + [340] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(707), + [343] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(707), + [346] = {.count = 1, .reusable = false}, SHIFT(409), + [348] = {.count = 1, .reusable = false}, SHIFT(983), + [350] = {.count = 1, .reusable = false}, SHIFT(1159), + [352] = {.count = 1, .reusable = false}, SHIFT(1160), + [354] = {.count = 1, .reusable = false}, SHIFT(1161), + [356] = {.count = 1, .reusable = false}, SHIFT(1105), + [358] = {.count = 1, .reusable = true}, SHIFT(273), + [360] = {.count = 1, .reusable = false}, SHIFT(844), + [362] = {.count = 1, .reusable = false}, SHIFT(833), + [364] = {.count = 1, .reusable = true}, SHIFT(23), + [366] = {.count = 1, .reusable = true}, SHIFT(336), + [368] = {.count = 1, .reusable = false}, SHIFT(871), + [370] = {.count = 1, .reusable = false}, SHIFT(1097), + [372] = {.count = 1, .reusable = false}, SHIFT(1100), + [374] = {.count = 1, .reusable = false}, SHIFT(1094), + [376] = {.count = 1, .reusable = false}, SHIFT(77), + [378] = {.count = 1, .reusable = false}, SHIFT(1268), + [380] = {.count = 1, .reusable = false}, SHIFT(506), + [382] = {.count = 1, .reusable = false}, SHIFT(1208), + [384] = {.count = 1, .reusable = false}, SHIFT(1200), + [386] = {.count = 1, .reusable = false}, SHIFT(1163), + [388] = {.count = 1, .reusable = true}, SHIFT(707), + [390] = {.count = 1, .reusable = false}, SHIFT(707), + [392] = {.count = 1, .reusable = true}, SHIFT(277), + [394] = {.count = 1, .reusable = true}, SHIFT(344), + [396] = {.count = 1, .reusable = false}, SHIFT(410), + [398] = {.count = 1, .reusable = false}, SHIFT(998), + [400] = {.count = 1, .reusable = false}, SHIFT(1213), + [402] = {.count = 1, .reusable = false}, SHIFT(1197), + [404] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else, 1), + [406] = {.count = 1, .reusable = false}, SHIFT(1198), + [408] = {.count = 1, .reusable = false}, SHIFT(1093), + [410] = {.count = 1, .reusable = true}, SHIFT(276), + [412] = {.count = 1, .reusable = false}, SHIFT(837), + [414] = {.count = 1, .reusable = false}, SHIFT(841), + [416] = {.count = 1, .reusable = true}, SHIFT(28), + [418] = {.count = 1, .reusable = false}, SHIFT(859), + [420] = {.count = 1, .reusable = false}, SHIFT(1107), + [422] = {.count = 1, .reusable = false}, SHIFT(1089), + [424] = {.count = 1, .reusable = false}, SHIFT(1104), + [426] = {.count = 1, .reusable = false}, SHIFT(180), + [428] = {.count = 1, .reusable = false}, SHIFT(1290), + [430] = {.count = 1, .reusable = false}, SHIFT(514), + [432] = {.count = 1, .reusable = false}, SHIFT(1141), + [434] = {.count = 1, .reusable = false}, SHIFT(1140), + [436] = {.count = 1, .reusable = false}, SHIFT(1201), + [438] = {.count = 1, .reusable = true}, SHIFT(688), + [440] = {.count = 1, .reusable = false}, SHIFT(688), + [442] = {.count = 1, .reusable = true}, SHIFT(89), + [444] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else, 2), + [446] = {.count = 1, .reusable = true}, SHIFT(274), + [448] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(410), + [451] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(998), + [454] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1213), + [457] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1197), + [460] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1198), + [463] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1093), + [466] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(276), + [469] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(837), + [472] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(841), + [475] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(28), + [478] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(859), + [481] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1107), + [484] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1089), + [487] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1104), + [490] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(180), + [493] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1290), + [496] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(514), + [499] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1141), + [502] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1140), + [505] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1201), + [508] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(688), + [511] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(688), + [514] = {.count = 1, .reusable = true}, SHIFT(297), + [516] = {.count = 1, .reusable = true}, SHIFT(283), + [518] = {.count = 1, .reusable = true}, SHIFT(398), + [520] = {.count = 1, .reusable = true}, SHIFT(345), + [522] = {.count = 1, .reusable = true}, REDUCE(sym_translation_unit, 1), + [524] = {.count = 1, .reusable = true}, SHIFT(642), + [526] = {.count = 1, .reusable = true}, SHIFT(632), + [528] = {.count = 1, .reusable = true}, SHIFT(158), + [530] = {.count = 1, .reusable = true}, SHIFT(261), + [532] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(407), + [535] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(997), + [538] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1298), + [541] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1265), + [544] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1262), + [547] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1068), + [550] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(137), + [553] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(834), + [556] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(842), + [559] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(26), + [562] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(855), + [565] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1073), + [568] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1074), + [571] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1075), + [574] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(139), + [577] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1240), + [580] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(520), + [583] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1238), + [586] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1237), + [589] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1236), + [592] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(721), + [595] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(721), + [598] = {.count = 1, .reusable = true}, SHIFT(244), + [600] = {.count = 1, .reusable = true}, SHIFT(368), + [602] = {.count = 1, .reusable = true}, SHIFT(229), + [604] = {.count = 1, .reusable = true}, SHIFT(203), + [606] = {.count = 1, .reusable = true}, SHIFT(353), + [608] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(411), + [611] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(137), + [614] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(834), + [617] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(784), + [620] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1252), + [623] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(231), + [626] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(26), + [629] = {.count = 1, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), + [631] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(584), + [634] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(783), + [637] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(826), + [640] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(835), + [643] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1040), + [646] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1039), + [649] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1035), + [652] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1073), + [655] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1074), + [658] = {.count = 1, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), + [660] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1075), + [663] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(139), + [666] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1240), + [669] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(520), + [672] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1238), + [675] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1237), + [678] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1236), + [681] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(579), + [684] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(579), + [687] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(582), + [690] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(583), + [693] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(721), + [696] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1082), + [699] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(979), + [702] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(721), + [705] = {.count = 1, .reusable = false}, SHIFT(411), + [707] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 2), + [709] = {.count = 1, .reusable = false}, SHIFT(835), + [711] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 2), + [713] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 3, .production_id = 8), + [715] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 3, .production_id = 8), + [717] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 3), + [719] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 3), + [721] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 4, .production_id = 8), + [723] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 4, .production_id = 8), + [725] = {.count = 1, .reusable = false}, SHIFT(453), + [727] = {.count = 1, .reusable = true}, REDUCE(sym_sizeof_expression, 4, .production_id = 42), + [729] = {.count = 1, .reusable = true}, SHIFT(218), + [731] = {.count = 1, .reusable = true}, SHIFT(430), + [733] = {.count = 1, .reusable = false}, SHIFT(584), + [735] = {.count = 1, .reusable = false}, REDUCE(sym_sizeof_expression, 4, .production_id = 42), + [737] = {.count = 1, .reusable = false}, SHIFT(608), + [739] = {.count = 1, .reusable = true}, SHIFT(608), + [741] = {.count = 1, .reusable = true}, SHIFT(611), + [743] = {.count = 1, .reusable = false}, SHIFT(593), + [745] = {.count = 1, .reusable = true}, SHIFT(453), + [747] = {.count = 1, .reusable = false}, SHIFT(415), + [749] = {.count = 1, .reusable = true}, SHIFT(559), + [751] = {.count = 1, .reusable = true}, SHIFT(712), + [753] = {.count = 1, .reusable = false}, SHIFT(712), + [755] = {.count = 1, .reusable = true}, SHIFT(552), + [757] = {.count = 1, .reusable = true}, SHIFT(669), + [759] = {.count = 1, .reusable = false}, SHIFT(669), + [761] = {.count = 1, .reusable = true}, SHIFT(569), + [763] = {.count = 1, .reusable = true}, SHIFT(723), + [765] = {.count = 1, .reusable = false}, SHIFT(723), + [767] = {.count = 1, .reusable = true}, SHIFT(555), + [769] = {.count = 1, .reusable = true}, SHIFT(666), + [771] = {.count = 1, .reusable = false}, SHIFT(666), + [773] = {.count = 1, .reusable = true}, SHIFT(550), + [775] = {.count = 1, .reusable = true}, SHIFT(715), + [777] = {.count = 1, .reusable = false}, SHIFT(715), + [779] = {.count = 1, .reusable = true}, SHIFT(567), + [781] = {.count = 1, .reusable = true}, SHIFT(703), + [783] = {.count = 1, .reusable = false}, SHIFT(703), + [785] = {.count = 1, .reusable = false}, SHIFT(488), + [787] = {.count = 1, .reusable = true}, SHIFT(638), + [789] = {.count = 1, .reusable = true}, SHIFT(35), + [791] = {.count = 1, .reusable = true}, SHIFT(627), + [793] = {.count = 1, .reusable = false}, SHIFT(1095), + [795] = {.count = 1, .reusable = false}, SHIFT(1084), + [797] = {.count = 1, .reusable = false}, SHIFT(585), + [799] = {.count = 1, .reusable = false}, SHIFT(1199), + [801] = {.count = 1, .reusable = false}, SHIFT(1096), + [803] = {.count = 1, .reusable = false}, SHIFT(188), + [805] = {.count = 1, .reusable = false}, SHIFT(1291), + [807] = {.count = 1, .reusable = false}, SHIFT(508), + [809] = {.count = 1, .reusable = false}, SHIFT(1116), + [811] = {.count = 1, .reusable = false}, SHIFT(1117), + [813] = {.count = 1, .reusable = false}, SHIFT(1215), + [815] = {.count = 1, .reusable = true}, SHIFT(713), + [817] = {.count = 1, .reusable = false}, SHIFT(713), + [819] = {.count = 1, .reusable = true}, SHIFT(233), + [821] = {.count = 1, .reusable = true}, SHIFT(317), + [823] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(488), + [826] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(638), + [829] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(231), + [832] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(35), + [835] = {.count = 1, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), + [837] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(584), + [840] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1095), + [843] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1084), + [846] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(585), + [849] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1199), + [852] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1096), + [855] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(188), + [858] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1291), + [861] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(508), + [864] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1116), + [867] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1117), + [870] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1215), + [873] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(579), + [876] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(579), + [879] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(582), + [882] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(583), + [885] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(713), + [888] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1082), + [891] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(979), + [894] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(713), + [897] = {.count = 1, .reusable = true}, SHIFT(318), + [899] = {.count = 1, .reusable = true}, SHIFT(187), + [901] = {.count = 1, .reusable = true}, SHIFT(308), + [903] = {.count = 1, .reusable = true}, SHIFT(630), + [905] = {.count = 1, .reusable = true}, SHIFT(210), + [907] = {.count = 1, .reusable = true}, SHIFT(140), + [909] = {.count = 1, .reusable = true}, SHIFT(302), + [911] = {.count = 1, .reusable = false}, SHIFT(484), + [913] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 5, .production_id = 58), + [915] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 5, .production_id = 58), + [917] = {.count = 1, .reusable = false}, SHIFT(492), + [919] = {.count = 1, .reusable = false}, SHIFT(491), + [921] = {.count = 1, .reusable = false}, SHIFT(1067), + [923] = {.count = 1, .reusable = false}, SHIFT(1066), + [925] = {.count = 1, .reusable = false}, SHIFT(134), + [927] = {.count = 1, .reusable = false}, SHIFT(1301), + [929] = {.count = 1, .reusable = false}, SHIFT(489), + [931] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 9, .production_id = 75), + [933] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 9, .production_id = 75), + [935] = {.count = 1, .reusable = false}, SHIFT(493), + [937] = {.count = 1, .reusable = false}, SHIFT(490), + [939] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 7, .production_id = 70), + [941] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 7, .production_id = 70), + [943] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 7, .production_id = 69), + [945] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 7, .production_id = 69), + [947] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 7, .production_id = 68), + [949] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 7, .production_id = 68), + [951] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 2), + [953] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 2), + [955] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 7, .production_id = 67), + [957] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 7, .production_id = 67), + [959] = {.count = 1, .reusable = true}, REDUCE(sym_return_statement, 2), + [961] = {.count = 1, .reusable = false}, REDUCE(sym_return_statement, 2), + [963] = {.count = 1, .reusable = true}, REDUCE(sym_break_statement, 2), + [965] = {.count = 1, .reusable = false}, REDUCE(sym_break_statement, 2), + [967] = {.count = 1, .reusable = true}, REDUCE(sym_continue_statement, 2), + [969] = {.count = 1, .reusable = false}, REDUCE(sym_continue_statement, 2), + [971] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 6, .production_id = 64), + [973] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 6, .production_id = 64), + [975] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 8, .production_id = 74), + [977] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 8, .production_id = 74), + [979] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 8, .production_id = 73), + [981] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 8, .production_id = 73), + [983] = {.count = 1, .reusable = true}, REDUCE(sym_expression_statement, 2), + [985] = {.count = 1, .reusable = false}, REDUCE(sym_expression_statement, 2), + [987] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 6), + [989] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 6), + [991] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 8, .production_id = 72), + [993] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 8, .production_id = 72), + [995] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 8, .production_id = 71), + [997] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 8, .production_id = 71), + [999] = {.count = 1, .reusable = true}, REDUCE(sym_expression_statement, 1), + [1001] = {.count = 1, .reusable = false}, REDUCE(sym_expression_statement, 1), + [1003] = {.count = 1, .reusable = true}, REDUCE(sym_switch_body, 3), + [1005] = {.count = 1, .reusable = false}, REDUCE(sym_switch_body, 3), + [1007] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 7, .production_id = 64), + [1009] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 7, .production_id = 64), + [1011] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 3), + [1013] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 3), + [1015] = {.count = 1, .reusable = true}, REDUCE(sym_do_statement, 4, .production_id = 41), + [1017] = {.count = 1, .reusable = false}, REDUCE(sym_do_statement, 4, .production_id = 41), + [1019] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 3, .production_id = 21), + [1021] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 3, .production_id = 21), + [1023] = {.count = 1, .reusable = false}, SHIFT(192), + [1025] = {.count = 1, .reusable = true}, REDUCE(sym_switch_statement, 3, .production_id = 22), + [1027] = {.count = 1, .reusable = false}, REDUCE(sym_switch_statement, 3, .production_id = 22), + [1029] = {.count = 1, .reusable = true}, REDUCE(sym_while_statement, 3, .production_id = 22), + [1031] = {.count = 1, .reusable = false}, REDUCE(sym_while_statement, 3, .production_id = 22), + [1033] = {.count = 1, .reusable = true}, REDUCE(sym_return_statement, 3), + [1035] = {.count = 1, .reusable = false}, REDUCE(sym_return_statement, 3), + [1037] = {.count = 1, .reusable = true}, REDUCE(sym_goto_statement, 3, .production_id = 23), + [1039] = {.count = 1, .reusable = false}, REDUCE(sym_goto_statement, 3, .production_id = 23), + [1041] = {.count = 1, .reusable = true}, REDUCE(sym_switch_body, 2), + [1043] = {.count = 1, .reusable = false}, REDUCE(sym_switch_body, 2), + [1045] = {.count = 1, .reusable = true}, REDUCE(sym_labeled_statement, 3, .production_id = 25), + [1047] = {.count = 1, .reusable = false}, REDUCE(sym_labeled_statement, 3, .production_id = 25), + [1049] = {.count = 1, .reusable = true}, REDUCE(sym_parenthesized_expression, 3), + [1051] = {.count = 1, .reusable = false}, REDUCE(sym_parenthesized_expression, 3), + [1053] = {.count = 1, .reusable = false}, SHIFT(476), + [1055] = {.count = 1, .reusable = false}, SHIFT(881), + [1057] = {.count = 1, .reusable = false}, SHIFT(878), + [1059] = {.count = 1, .reusable = true}, SHIFT(673), + [1061] = {.count = 1, .reusable = false}, SHIFT(673), + [1063] = {.count = 1, .reusable = false}, SHIFT(196), + [1065] = {.count = 1, .reusable = true}, REDUCE(sym_declaration, 4, .production_id = 47), + [1067] = {.count = 1, .reusable = false}, REDUCE(sym_declaration, 4, .production_id = 47), + [1069] = {.count = 1, .reusable = true}, REDUCE(sym_declaration, 3, .production_id = 27), + [1071] = {.count = 1, .reusable = false}, REDUCE(sym_declaration, 3, .production_id = 27), + [1073] = {.count = 1, .reusable = true}, REDUCE(sym_type_definition, 6, .production_id = 61), + [1075] = {.count = 1, .reusable = false}, REDUCE(sym_type_definition, 6, .production_id = 61), + [1077] = {.count = 1, .reusable = true}, REDUCE(sym_type_definition, 5, .production_id = 54), + [1079] = {.count = 1, .reusable = false}, REDUCE(sym_type_definition, 5, .production_id = 54), + [1081] = {.count = 1, .reusable = true}, REDUCE(sym_type_definition, 4, .production_id = 36), + [1083] = {.count = 1, .reusable = false}, REDUCE(sym_type_definition, 4, .production_id = 36), + [1085] = {.count = 1, .reusable = true}, REDUCE(sym_type_definition, 5, .production_id = 53), + [1087] = {.count = 1, .reusable = false}, REDUCE(sym_type_definition, 5, .production_id = 53), + [1089] = {.count = 1, .reusable = false}, REDUCE(sym_linkage_specification, 3, .production_id = 16), + [1091] = {.count = 1, .reusable = true}, REDUCE(sym_linkage_specification, 3, .production_id = 16), + [1093] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_call, 2, .production_id = 4), + [1095] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_call, 2, .production_id = 4), + [1097] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_list, 2), + [1099] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_list, 2), + [1101] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 4, .production_id = 35), + [1103] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 4, .production_id = 35), + [1105] = {.count = 1, .reusable = false}, REDUCE(sym__empty_declaration, 2), + [1107] = {.count = 1, .reusable = true}, REDUCE(sym__empty_declaration, 2), + [1109] = {.count = 1, .reusable = false}, REDUCE(sym_string_literal, 2), + [1111] = {.count = 1, .reusable = true}, REDUCE(sym_string_literal, 2), + [1113] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 4, .production_id = 13), + [1115] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 4, .production_id = 13), + [1117] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 4, .production_id = 14), + [1119] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 4, .production_id = 14), + [1121] = {.count = 1, .reusable = false}, REDUCE(sym_string_literal, 3), + [1123] = {.count = 1, .reusable = true}, REDUCE(sym_string_literal, 3), + [1125] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_function_def, 5, .production_id = 50), + [1127] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_function_def, 5, .production_id = 50), + [1129] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_include, 2, .production_id = 3), + [1131] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_include, 2, .production_id = 3), + [1133] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_call, 3, .production_id = 15), + [1135] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_call, 3, .production_id = 15), + [1137] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 3, .production_id = 28), + [1139] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 3, .production_id = 28), + [1141] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_def, 3, .production_id = 13), + [1143] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_def, 3, .production_id = 13), + [1145] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 4, .production_id = 34), + [1147] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 4, .production_id = 34), + [1149] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 3, .production_id = 14), + [1151] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 3, .production_id = 14), + [1153] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 3, .production_id = 13), + [1155] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 3, .production_id = 13), + [1157] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_list, 3), + [1159] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_list, 3), + [1161] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 5, .production_id = 52), + [1163] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 5, .production_id = 52), + [1165] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 5, .production_id = 51), + [1167] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 5, .production_id = 51), + [1169] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_function_def, 4, .production_id = 33), + [1171] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_function_def, 4, .production_id = 33), + [1173] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_def, 4, .production_id = 32), + [1175] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_def, 4, .production_id = 32), + [1177] = {.count = 1, .reusable = false}, SHIFT(146), + [1179] = {.count = 1, .reusable = false}, SHIFT(183), + [1181] = {.count = 1, .reusable = false}, REDUCE(sym__type_specifier, 1, .production_id = 1), + [1183] = {.count = 1, .reusable = true}, REDUCE(sym__expression, 1), + [1185] = {.count = 2, .reusable = true}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), + [1188] = {.count = 3, .reusable = true}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), SHIFT(828), + [1192] = {.count = 2, .reusable = false}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), + [1195] = {.count = 1, .reusable = false}, SHIFT(612), + [1197] = {.count = 1, .reusable = true}, SHIFT(101), + [1199] = {.count = 1, .reusable = true}, SHIFT(612), + [1201] = {.count = 1, .reusable = false}, REDUCE(sym__expression, 1), + [1203] = {.count = 1, .reusable = true}, SHIFT(191), + [1205] = {.count = 1, .reusable = true}, SHIFT(132), + [1207] = {.count = 1, .reusable = true}, SHIFT(197), + [1209] = {.count = 1, .reusable = false}, SHIFT(869), + [1211] = {.count = 1, .reusable = false}, SHIFT(1224), + [1213] = {.count = 1, .reusable = false}, SHIFT(1171), + [1215] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif_in_field_declaration_list, 2, .production_id = 14), + [1217] = {.count = 1, .reusable = false}, SHIFT(1172), + [1219] = {.count = 1, .reusable = false}, SHIFT(438), + [1221] = {.count = 1, .reusable = false}, SHIFT(1234), + [1223] = {.count = 1, .reusable = false}, SHIFT(1111), + [1225] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .production_id = 14), + [1227] = {.count = 1, .reusable = false}, SHIFT(817), + [1229] = {.count = 1, .reusable = false}, SHIFT(811), + [1231] = {.count = 1, .reusable = false}, SHIFT(798), + [1233] = {.count = 1, .reusable = false}, SHIFT(786), + [1235] = {.count = 1, .reusable = false}, SHIFT(819), + [1237] = {.count = 1, .reusable = false}, SHIFT(803), + [1239] = {.count = 1, .reusable = false}, SHIFT(823), + [1241] = {.count = 1, .reusable = false}, SHIFT(781), + [1243] = {.count = 1, .reusable = false}, SHIFT(777), + [1245] = {.count = 1, .reusable = false}, SHIFT(822), + [1247] = {.count = 1, .reusable = false}, SHIFT(763), + [1249] = {.count = 1, .reusable = false}, SHIFT(761), + [1251] = {.count = 1, .reusable = false}, SHIFT(876), + [1253] = {.count = 1, .reusable = true}, SHIFT(1018), + [1255] = {.count = 1, .reusable = true}, SHIFT(898), + [1257] = {.count = 1, .reusable = true}, SHIFT(427), + [1259] = {.count = 1, .reusable = true}, SHIFT(829), + [1261] = {.count = 1, .reusable = true}, SHIFT(461), + [1263] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(869), + [1266] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1224), + [1269] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1171), + [1272] = {.count = 1, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), + [1274] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1172), + [1277] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1111), + [1280] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(784), + [1283] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1252), + [1286] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(783), + [1289] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(826), + [1292] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(835), + [1295] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1040), + [1298] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1039), + [1301] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1035), + [1304] = {.count = 1, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [1306] = {.count = 1, .reusable = false}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [1308] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(979), + [1311] = {.count = 1, .reusable = true}, SHIFT(1222), + [1313] = {.count = 1, .reusable = true}, SHIFT(474), + [1315] = {.count = 1, .reusable = true}, SHIFT(576), + [1317] = {.count = 1, .reusable = false}, SHIFT(1223), + [1319] = {.count = 1, .reusable = true}, SHIFT(663), + [1321] = {.count = 1, .reusable = false}, SHIFT(663), + [1323] = {.count = 1, .reusable = true}, REDUCE(sym_concatenated_string, 2), + [1325] = {.count = 1, .reusable = false}, REDUCE(sym_concatenated_string, 2), + [1327] = {.count = 1, .reusable = false}, SHIFT(1196), + [1329] = {.count = 1, .reusable = false}, SHIFT(1146), + [1331] = {.count = 1, .reusable = false}, SHIFT(1150), + [1333] = {.count = 1, .reusable = false}, SHIFT(1056), + [1335] = {.count = 1, .reusable = true}, SHIFT(864), + [1337] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1226), + [1340] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1188), + [1343] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1189), + [1346] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1091), + [1349] = {.count = 1, .reusable = false}, SHIFT(1226), + [1351] = {.count = 1, .reusable = false}, SHIFT(1188), + [1353] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else_in_field_declaration_list, 2), + [1355] = {.count = 1, .reusable = false}, SHIFT(1189), + [1357] = {.count = 1, .reusable = false}, SHIFT(1091), + [1359] = {.count = 1, .reusable = true}, SHIFT(487), + [1361] = {.count = 1, .reusable = true}, SHIFT(700), + [1363] = {.count = 1, .reusable = false}, SHIFT(700), + [1365] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else_in_field_declaration_list, 1), + [1367] = {.count = 1, .reusable = true}, SHIFT(482), + [1369] = {.count = 1, .reusable = true}, SHIFT(854), + [1371] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1196), + [1374] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1146), + [1377] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1150), + [1380] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1056), + [1383] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), + [1385] = {.count = 1, .reusable = true}, SHIFT(574), + [1387] = {.count = 1, .reusable = true}, SHIFT(966), + [1389] = {.count = 1, .reusable = false}, SHIFT(825), + [1391] = {.count = 1, .reusable = true}, SHIFT(764), + [1393] = {.count = 1, .reusable = false}, SHIFT(764), + [1395] = {.count = 1, .reusable = true}, SHIFT(557), + [1397] = {.count = 1, .reusable = true}, SHIFT(932), + [1399] = {.count = 1, .reusable = true}, SHIFT(732), + [1401] = {.count = 1, .reusable = false}, SHIFT(732), + [1403] = {.count = 1, .reusable = true}, REDUCE(sym_binary_expression, 3, .production_id = 30), + [1405] = {.count = 1, .reusable = true}, SHIFT(573), + [1407] = {.count = 1, .reusable = false}, SHIFT(596), + [1409] = {.count = 1, .reusable = true}, SHIFT(595), + [1411] = {.count = 1, .reusable = false}, REDUCE(sym_binary_expression, 3, .production_id = 30), + [1413] = {.count = 1, .reusable = true}, SHIFT(480), + [1415] = {.count = 1, .reusable = true}, SHIFT(1125), + [1417] = {.count = 1, .reusable = true}, SHIFT(568), + [1419] = {.count = 1, .reusable = true}, SHIFT(1002), + [1421] = {.count = 1, .reusable = true}, SHIFT(779), + [1423] = {.count = 1, .reusable = false}, SHIFT(779), + [1425] = {.count = 1, .reusable = true}, SHIFT(572), + [1427] = {.count = 1, .reusable = true}, SHIFT(999), + [1429] = {.count = 1, .reusable = true}, SHIFT(782), + [1431] = {.count = 1, .reusable = false}, SHIFT(782), + [1433] = {.count = 1, .reusable = true}, REDUCE(sym_assignment_expression, 3, .production_id = 24), + [1435] = {.count = 1, .reusable = false}, REDUCE(sym_assignment_expression, 3, .production_id = 24), + [1437] = {.count = 1, .reusable = false}, SHIFT(607), + [1439] = {.count = 1, .reusable = false}, SHIFT(606), + [1441] = {.count = 1, .reusable = true}, SHIFT(604), + [1443] = {.count = 1, .reusable = true}, SHIFT(602), + [1445] = {.count = 1, .reusable = false}, SHIFT(600), + [1447] = {.count = 1, .reusable = false}, SHIFT(594), + [1449] = {.count = 1, .reusable = true}, SHIFT(601), + [1451] = {.count = 1, .reusable = false}, SHIFT(605), + [1453] = {.count = 1, .reusable = true}, SHIFT(605), + [1455] = {.count = 1, .reusable = false}, SHIFT(578), + [1457] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_expression, 2, .production_id = 5), + [1459] = {.count = 1, .reusable = false}, REDUCE(sym_pointer_expression, 2, .production_id = 5), + [1461] = {.count = 1, .reusable = true}, REDUCE(sym_sizeof_expression, 2, .production_id = 8), + [1463] = {.count = 1, .reusable = false}, REDUCE(sym_sizeof_expression, 2, .production_id = 8), + [1465] = {.count = 1, .reusable = true}, REDUCE(sym_cast_expression, 4, .production_id = 39), + [1467] = {.count = 1, .reusable = false}, REDUCE(sym_cast_expression, 4, .production_id = 39), + [1469] = {.count = 1, .reusable = true}, REDUCE(sym_update_expression, 2, .production_id = 5), + [1471] = {.count = 1, .reusable = false}, REDUCE(sym_update_expression, 2, .production_id = 5), + [1473] = {.count = 1, .reusable = true}, SHIFT(562), + [1475] = {.count = 1, .reusable = true}, SHIFT(956), + [1477] = {.count = 1, .reusable = true}, SHIFT(749), + [1479] = {.count = 1, .reusable = false}, SHIFT(749), + [1481] = {.count = 1, .reusable = true}, SHIFT(549), + [1483] = {.count = 1, .reusable = true}, SHIFT(1011), + [1485] = {.count = 1, .reusable = true}, SHIFT(748), + [1487] = {.count = 1, .reusable = false}, SHIFT(748), + [1489] = {.count = 1, .reusable = true}, SHIFT(556), + [1491] = {.count = 1, .reusable = true}, SHIFT(948), + [1493] = {.count = 1, .reusable = true}, SHIFT(746), + [1495] = {.count = 1, .reusable = false}, SHIFT(746), + [1497] = {.count = 1, .reusable = true}, SHIFT(545), + [1499] = {.count = 1, .reusable = true}, SHIFT(977), + [1501] = {.count = 1, .reusable = true}, SHIFT(740), + [1503] = {.count = 1, .reusable = false}, SHIFT(740), + [1505] = {.count = 1, .reusable = true}, SHIFT(570), + [1507] = {.count = 1, .reusable = true}, SHIFT(949), + [1509] = {.count = 1, .reusable = true}, SHIFT(750), + [1511] = {.count = 1, .reusable = false}, SHIFT(750), + [1513] = {.count = 1, .reusable = true}, REDUCE(sym_conditional_expression, 5, .production_id = 60), + [1515] = {.count = 1, .reusable = false}, REDUCE(sym_conditional_expression, 5, .production_id = 60), + [1517] = {.count = 1, .reusable = true}, SHIFT(609), + [1519] = {.count = 1, .reusable = true}, SHIFT(470), + [1521] = {.count = 1, .reusable = true}, SHIFT(879), + [1523] = {.count = 1, .reusable = true}, REDUCE(sym_unary_expression, 2, .production_id = 5), + [1525] = {.count = 1, .reusable = false}, REDUCE(sym_unary_expression, 2, .production_id = 5), + [1527] = {.count = 1, .reusable = true}, SHIFT(546), + [1529] = {.count = 1, .reusable = true}, SHIFT(927), + [1531] = {.count = 1, .reusable = true}, SHIFT(773), + [1533] = {.count = 1, .reusable = false}, SHIFT(773), + [1535] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 3), + [1537] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 3), + [1539] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 2), + [1541] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 2), + [1543] = {.count = 1, .reusable = true}, REDUCE(sym_call_expression, 2, .production_id = 10), + [1545] = {.count = 1, .reusable = false}, REDUCE(sym_call_expression, 2, .production_id = 10), + [1547] = {.count = 1, .reusable = true}, REDUCE(sym__type_specifier, 1, .production_id = 1), + [1549] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 3), + [1551] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 3), + [1553] = {.count = 1, .reusable = true}, REDUCE(sym_subscript_expression, 4, .production_id = 49), + [1555] = {.count = 1, .reusable = false}, REDUCE(sym_subscript_expression, 4, .production_id = 49), + [1557] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 2), + [1559] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 2), + [1561] = {.count = 1, .reusable = true}, REDUCE(sym_update_expression, 2, .production_id = 9), + [1563] = {.count = 1, .reusable = false}, REDUCE(sym_update_expression, 2, .production_id = 9), + [1565] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 4), + [1567] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 4), + [1569] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 5), + [1571] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 5), + [1573] = {.count = 1, .reusable = true}, REDUCE(sym_field_expression, 3, .production_id = 31), + [1575] = {.count = 1, .reusable = false}, REDUCE(sym_field_expression, 3, .production_id = 31), + [1577] = {.count = 1, .reusable = true}, REDUCE(sym_char_literal, 3), + [1579] = {.count = 1, .reusable = false}, REDUCE(sym_char_literal, 3), + [1581] = {.count = 1, .reusable = true}, REDUCE(sym_compound_literal_expression, 4, .production_id = 39), + [1583] = {.count = 1, .reusable = false}, REDUCE(sym_compound_literal_expression, 4, .production_id = 39), + [1585] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 4), + [1587] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 4), + [1589] = {.count = 1, .reusable = true}, SHIFT(127), + [1591] = {.count = 1, .reusable = true}, SHIFT(74), + [1593] = {.count = 1, .reusable = true}, SHIFT(141), + [1595] = {.count = 1, .reusable = true}, SHIFT(691), + [1597] = {.count = 1, .reusable = false}, SHIFT(691), + [1599] = {.count = 1, .reusable = true}, SHIFT(71), + [1601] = {.count = 1, .reusable = true}, SHIFT(696), + [1603] = {.count = 1, .reusable = false}, SHIFT(696), + [1605] = {.count = 1, .reusable = true}, SHIFT(72), + [1607] = {.count = 1, .reusable = true}, SHIFT(699), + [1609] = {.count = 1, .reusable = false}, SHIFT(699), + [1611] = {.count = 1, .reusable = true}, SHIFT(156), + [1613] = {.count = 1, .reusable = true}, SHIFT(708), + [1615] = {.count = 1, .reusable = false}, SHIFT(708), + [1617] = {.count = 1, .reusable = true}, SHIFT(227), + [1619] = {.count = 1, .reusable = true}, SHIFT(668), + [1621] = {.count = 1, .reusable = false}, SHIFT(668), + [1623] = {.count = 1, .reusable = true}, SHIFT(724), + [1625] = {.count = 1, .reusable = false}, SHIFT(724), + [1627] = {.count = 1, .reusable = true}, SHIFT(154), + [1629] = {.count = 1, .reusable = true}, SHIFT(709), + [1631] = {.count = 1, .reusable = false}, SHIFT(709), + [1633] = {.count = 1, .reusable = true}, SHIFT(160), + [1635] = {.count = 1, .reusable = true}, SHIFT(706), + [1637] = {.count = 1, .reusable = false}, SHIFT(706), + [1639] = {.count = 1, .reusable = true}, SHIFT(109), + [1641] = {.count = 1, .reusable = true}, SHIFT(727), + [1643] = {.count = 1, .reusable = false}, SHIFT(727), + [1645] = {.count = 1, .reusable = true}, SHIFT(113), + [1647] = {.count = 1, .reusable = true}, SHIFT(722), + [1649] = {.count = 1, .reusable = false}, SHIFT(722), + [1651] = {.count = 1, .reusable = true}, SHIFT(83), + [1653] = {.count = 1, .reusable = true}, SHIFT(711), + [1655] = {.count = 1, .reusable = false}, SHIFT(711), + [1657] = {.count = 1, .reusable = true}, SHIFT(278), + [1659] = {.count = 1, .reusable = true}, SHIFT(698), + [1661] = {.count = 1, .reusable = false}, SHIFT(698), + [1663] = {.count = 1, .reusable = true}, SHIFT(81), + [1665] = {.count = 1, .reusable = true}, SHIFT(710), + [1667] = {.count = 1, .reusable = false}, SHIFT(710), + [1669] = {.count = 1, .reusable = true}, SHIFT(644), + [1671] = {.count = 1, .reusable = true}, SHIFT(720), + [1673] = {.count = 1, .reusable = false}, SHIFT(720), + [1675] = {.count = 1, .reusable = true}, SHIFT(164), + [1677] = {.count = 1, .reusable = true}, SHIFT(702), + [1679] = {.count = 1, .reusable = false}, SHIFT(702), + [1681] = {.count = 1, .reusable = true}, SHIFT(114), + [1683] = {.count = 1, .reusable = true}, SHIFT(725), + [1685] = {.count = 1, .reusable = false}, SHIFT(725), + [1687] = {.count = 1, .reusable = true}, SHIFT(172), + [1689] = {.count = 1, .reusable = true}, SHIFT(689), + [1691] = {.count = 1, .reusable = false}, SHIFT(689), + [1693] = {.count = 1, .reusable = true}, SHIFT(165), + [1695] = {.count = 1, .reusable = true}, SHIFT(697), + [1697] = {.count = 1, .reusable = false}, SHIFT(697), + [1699] = {.count = 1, .reusable = true}, SHIFT(175), + [1701] = {.count = 1, .reusable = true}, SHIFT(687), + [1703] = {.count = 1, .reusable = false}, SHIFT(687), + [1705] = {.count = 1, .reusable = true}, SHIFT(272), + [1707] = {.count = 1, .reusable = true}, SHIFT(692), + [1709] = {.count = 1, .reusable = false}, SHIFT(692), + [1711] = {.count = 1, .reusable = true}, SHIFT(116), + [1713] = {.count = 1, .reusable = true}, SHIFT(728), + [1715] = {.count = 1, .reusable = false}, SHIFT(728), + [1717] = {.count = 1, .reusable = true}, SHIFT(118), + [1719] = {.count = 1, .reusable = true}, SHIFT(667), + [1721] = {.count = 1, .reusable = false}, SHIFT(667), + [1723] = {.count = 1, .reusable = true}, SHIFT(119), + [1725] = {.count = 1, .reusable = true}, SHIFT(726), + [1727] = {.count = 1, .reusable = false}, SHIFT(726), + [1729] = {.count = 1, .reusable = true}, SHIFT(149), + [1731] = {.count = 1, .reusable = true}, SHIFT(682), + [1733] = {.count = 1, .reusable = false}, SHIFT(682), + [1735] = {.count = 1, .reusable = true}, SHIFT(150), + [1737] = {.count = 1, .reusable = true}, SHIFT(680), + [1739] = {.count = 1, .reusable = false}, SHIFT(680), + [1741] = {.count = 1, .reusable = true}, SHIFT(94), + [1743] = {.count = 1, .reusable = true}, SHIFT(685), + [1745] = {.count = 1, .reusable = false}, SHIFT(685), + [1747] = {.count = 1, .reusable = true}, SHIFT(178), + [1749] = {.count = 1, .reusable = true}, SHIFT(686), + [1751] = {.count = 1, .reusable = false}, SHIFT(686), + [1753] = {.count = 1, .reusable = true}, SHIFT(190), + [1755] = {.count = 1, .reusable = true}, SHIFT(679), + [1757] = {.count = 1, .reusable = false}, SHIFT(679), + [1759] = {.count = 1, .reusable = true}, SHIFT(153), + [1761] = {.count = 1, .reusable = true}, SHIFT(677), + [1763] = {.count = 1, .reusable = false}, SHIFT(677), + [1765] = {.count = 1, .reusable = true}, SHIFT(129), + [1767] = {.count = 1, .reusable = true}, SHIFT(684), + [1769] = {.count = 1, .reusable = false}, SHIFT(684), + [1771] = {.count = 1, .reusable = true}, SHIFT(159), + [1773] = {.count = 1, .reusable = true}, SHIFT(675), + [1775] = {.count = 1, .reusable = false}, SHIFT(675), + [1777] = {.count = 1, .reusable = true}, SHIFT(162), + [1779] = {.count = 1, .reusable = true}, SHIFT(674), + [1781] = {.count = 1, .reusable = false}, SHIFT(674), + [1783] = {.count = 1, .reusable = true}, SHIFT(125), + [1785] = {.count = 1, .reusable = true}, SHIFT(683), + [1787] = {.count = 1, .reusable = false}, SHIFT(683), + [1789] = {.count = 1, .reusable = true}, SHIFT(701), + [1791] = {.count = 1, .reusable = false}, SHIFT(701), + [1793] = {.count = 1, .reusable = true}, SHIFT(123), + [1795] = {.count = 1, .reusable = true}, SHIFT(681), + [1797] = {.count = 1, .reusable = false}, SHIFT(681), + [1799] = {.count = 1, .reusable = true}, SHIFT(70), + [1801] = {.count = 1, .reusable = true}, SHIFT(672), + [1803] = {.count = 1, .reusable = false}, SHIFT(672), + [1805] = {.count = 1, .reusable = true}, SHIFT(80), + [1807] = {.count = 1, .reusable = true}, SHIFT(678), + [1809] = {.count = 1, .reusable = false}, SHIFT(678), + [1811] = {.count = 1, .reusable = true}, SHIFT(105), + [1813] = {.count = 1, .reusable = true}, SHIFT(693), + [1815] = {.count = 1, .reusable = false}, SHIFT(693), + [1817] = {.count = 1, .reusable = true}, SHIFT(138), + [1819] = {.count = 1, .reusable = true}, SHIFT(718), + [1821] = {.count = 1, .reusable = false}, SHIFT(718), + [1823] = {.count = 1, .reusable = true}, SHIFT(135), + [1825] = {.count = 1, .reusable = true}, SHIFT(717), + [1827] = {.count = 1, .reusable = false}, SHIFT(717), + [1829] = {.count = 1, .reusable = true}, SHIFT(93), + [1831] = {.count = 1, .reusable = true}, SHIFT(695), + [1833] = {.count = 1, .reusable = false}, SHIFT(695), + [1835] = {.count = 1, .reusable = true}, SHIFT(98), + [1837] = {.count = 1, .reusable = true}, SHIFT(694), + [1839] = {.count = 1, .reusable = false}, SHIFT(694), + [1841] = {.count = 1, .reusable = true}, SHIFT(78), + [1843] = {.count = 1, .reusable = true}, SHIFT(676), + [1845] = {.count = 1, .reusable = false}, SHIFT(676), + [1847] = {.count = 1, .reusable = true}, SHIFT(516), + [1849] = {.count = 1, .reusable = true}, SHIFT(731), + [1851] = {.count = 1, .reusable = false}, SHIFT(731), + [1853] = {.count = 1, .reusable = true}, SHIFT(504), + [1855] = {.count = 1, .reusable = true}, SHIFT(766), + [1857] = {.count = 1, .reusable = false}, SHIFT(766), + [1859] = {.count = 1, .reusable = true}, SHIFT(705), + [1861] = {.count = 1, .reusable = false}, SHIFT(705), + [1863] = {.count = 1, .reusable = true}, SHIFT(524), + [1865] = {.count = 1, .reusable = true}, SHIFT(735), + [1867] = {.count = 1, .reusable = false}, SHIFT(735), + [1869] = {.count = 1, .reusable = true}, SHIFT(531), + [1871] = {.count = 1, .reusable = true}, SHIFT(744), + [1873] = {.count = 1, .reusable = false}, SHIFT(744), + [1875] = {.count = 1, .reusable = true}, SHIFT(513), + [1877] = {.count = 1, .reusable = true}, SHIFT(736), + [1879] = {.count = 1, .reusable = false}, SHIFT(736), + [1881] = {.count = 1, .reusable = false}, SHIFT(451), + [1883] = {.count = 1, .reusable = true}, SHIFT(981), + [1885] = {.count = 1, .reusable = true}, SHIFT(451), + [1887] = {.count = 1, .reusable = true}, SHIFT(929), + [1889] = {.count = 1, .reusable = true}, SHIFT(690), + [1891] = {.count = 1, .reusable = false}, SHIFT(690), + [1893] = {.count = 1, .reusable = true}, SHIFT(495), + [1895] = {.count = 1, .reusable = true}, SHIFT(737), + [1897] = {.count = 1, .reusable = false}, SHIFT(737), + [1899] = {.count = 1, .reusable = true}, SHIFT(1003), + [1901] = {.count = 1, .reusable = true}, SHIFT(538), + [1903] = {.count = 1, .reusable = true}, SHIFT(745), + [1905] = {.count = 1, .reusable = false}, SHIFT(745), + [1907] = {.count = 1, .reusable = true}, SHIFT(536), + [1909] = {.count = 1, .reusable = true}, SHIFT(756), + [1911] = {.count = 1, .reusable = false}, SHIFT(756), + [1913] = {.count = 1, .reusable = true}, SHIFT(496), + [1915] = {.count = 1, .reusable = true}, SHIFT(738), + [1917] = {.count = 1, .reusable = false}, SHIFT(738), + [1919] = {.count = 1, .reusable = true}, SHIFT(526), + [1921] = {.count = 1, .reusable = true}, SHIFT(751), + [1923] = {.count = 1, .reusable = false}, SHIFT(751), + [1925] = {.count = 1, .reusable = true}, SHIFT(519), + [1927] = {.count = 1, .reusable = true}, SHIFT(752), + [1929] = {.count = 1, .reusable = false}, SHIFT(752), + [1931] = {.count = 1, .reusable = true}, SHIFT(518), + [1933] = {.count = 1, .reusable = true}, SHIFT(768), + [1935] = {.count = 1, .reusable = false}, SHIFT(768), + [1937] = {.count = 1, .reusable = true}, SHIFT(946), + [1939] = {.count = 1, .reusable = true}, SHIFT(928), + [1941] = {.count = 1, .reusable = true}, SHIFT(714), + [1943] = {.count = 1, .reusable = false}, SHIFT(714), + [1945] = {.count = 1, .reusable = true}, SHIFT(512), + [1947] = {.count = 1, .reusable = true}, SHIFT(742), + [1949] = {.count = 1, .reusable = false}, SHIFT(742), + [1951] = {.count = 1, .reusable = true}, SHIFT(509), + [1953] = {.count = 1, .reusable = true}, SHIFT(730), + [1955] = {.count = 1, .reusable = false}, SHIFT(730), + [1957] = {.count = 1, .reusable = true}, SHIFT(965), + [1959] = {.count = 1, .reusable = true}, SHIFT(500), + [1961] = {.count = 1, .reusable = true}, SHIFT(757), + [1963] = {.count = 1, .reusable = false}, SHIFT(757), + [1965] = {.count = 1, .reusable = true}, SHIFT(670), + [1967] = {.count = 1, .reusable = false}, SHIFT(670), + [1969] = {.count = 1, .reusable = true}, SHIFT(729), + [1971] = {.count = 1, .reusable = false}, SHIFT(729), + [1973] = {.count = 1, .reusable = true}, SHIFT(534), + [1975] = {.count = 1, .reusable = true}, SHIFT(733), + [1977] = {.count = 1, .reusable = false}, SHIFT(733), + [1979] = {.count = 1, .reusable = true}, SHIFT(517), + [1981] = {.count = 1, .reusable = true}, SHIFT(780), + [1983] = {.count = 1, .reusable = false}, SHIFT(780), + [1985] = {.count = 1, .reusable = true}, SHIFT(972), + [1987] = {.count = 1, .reusable = true}, SHIFT(533), + [1989] = {.count = 1, .reusable = true}, SHIFT(734), + [1991] = {.count = 1, .reusable = false}, SHIFT(734), + [1993] = {.count = 1, .reusable = true}, SHIFT(933), + [1995] = {.count = 1, .reusable = true}, SHIFT(665), + [1997] = {.count = 1, .reusable = false}, SHIFT(665), + [1999] = {.count = 1, .reusable = true}, SHIFT(976), + [2001] = {.count = 1, .reusable = true}, SHIFT(479), + [2003] = {.count = 1, .reusable = true}, SHIFT(664), + [2005] = {.count = 1, .reusable = false}, SHIFT(664), + [2007] = {.count = 1, .reusable = true}, SHIFT(968), + [2009] = {.count = 1, .reusable = true}, SHIFT(660), + [2011] = {.count = 1, .reusable = false}, SHIFT(660), + [2013] = {.count = 1, .reusable = true}, SHIFT(743), + [2015] = {.count = 1, .reusable = false}, SHIFT(743), + [2017] = {.count = 1, .reusable = true}, SHIFT(739), + [2019] = {.count = 1, .reusable = false}, SHIFT(739), + [2021] = {.count = 1, .reusable = false}, SHIFT(464), + [2023] = {.count = 1, .reusable = true}, SHIFT(464), + [2025] = {.count = 1, .reusable = true}, SHIFT(471), + [2027] = {.count = 1, .reusable = false}, SHIFT(471), + [2029] = {.count = 1, .reusable = true}, SHIFT(719), + [2031] = {.count = 1, .reusable = false}, SHIFT(719), + [2033] = {.count = 1, .reusable = false}, SHIFT(469), + [2035] = {.count = 1, .reusable = true}, SHIFT(469), + [2037] = {.count = 1, .reusable = true}, SHIFT(458), + [2039] = {.count = 1, .reusable = false}, SHIFT(458), + [2041] = {.count = 1, .reusable = true}, SHIFT(201), + [2043] = {.count = 1, .reusable = true}, SHIFT(657), + [2045] = {.count = 1, .reusable = false}, SHIFT(657), + [2047] = {.count = 1, .reusable = true}, SHIFT(767), + [2049] = {.count = 1, .reusable = false}, SHIFT(767), + [2051] = {.count = 1, .reusable = true}, SHIFT(659), + [2053] = {.count = 1, .reusable = false}, SHIFT(659), + [2055] = {.count = 1, .reusable = true}, SHIFT(658), + [2057] = {.count = 1, .reusable = false}, SHIFT(658), + [2059] = {.count = 1, .reusable = true}, SHIFT(656), + [2061] = {.count = 1, .reusable = false}, SHIFT(656), + [2063] = {.count = 1, .reusable = true}, SHIFT(769), + [2065] = {.count = 1, .reusable = false}, SHIFT(769), + [2067] = {.count = 1, .reusable = true}, SHIFT(655), + [2069] = {.count = 1, .reusable = false}, SHIFT(655), + [2071] = {.count = 1, .reusable = true}, SHIFT(653), + [2073] = {.count = 1, .reusable = false}, SHIFT(653), + [2075] = {.count = 1, .reusable = true}, SHIFT(652), + [2077] = {.count = 1, .reusable = false}, SHIFT(652), + [2079] = {.count = 1, .reusable = false}, SHIFT(452), + [2081] = {.count = 1, .reusable = true}, SHIFT(235), + [2083] = {.count = 1, .reusable = true}, SHIFT(452), + [2085] = {.count = 1, .reusable = false}, SHIFT(459), + [2087] = {.count = 1, .reusable = true}, SHIFT(459), + [2089] = {.count = 1, .reusable = true}, SHIFT(741), + [2091] = {.count = 1, .reusable = false}, SHIFT(741), + [2093] = {.count = 1, .reusable = false}, SHIFT(467), + [2095] = {.count = 1, .reusable = true}, SHIFT(467), + [2097] = {.count = 1, .reusable = true}, SHIFT(651), + [2099] = {.count = 1, .reusable = false}, SHIFT(651), + [2101] = {.count = 1, .reusable = true}, SHIFT(716), + [2103] = {.count = 1, .reusable = false}, SHIFT(716), + [2105] = {.count = 1, .reusable = true}, SHIFT(650), + [2107] = {.count = 1, .reusable = false}, SHIFT(650), + [2109] = {.count = 1, .reusable = false}, SHIFT(457), + [2111] = {.count = 1, .reusable = true}, SHIFT(457), + [2113] = {.count = 1, .reusable = false}, SHIFT(462), + [2115] = {.count = 1, .reusable = true}, SHIFT(462), + [2117] = {.count = 1, .reusable = false}, SHIFT(456), + [2119] = {.count = 1, .reusable = true}, SHIFT(456), + [2121] = {.count = 1, .reusable = false}, SHIFT(455), + [2123] = {.count = 1, .reusable = true}, SHIFT(455), + [2125] = {.count = 1, .reusable = false}, SHIFT(463), + [2127] = {.count = 1, .reusable = true}, SHIFT(463), + [2129] = {.count = 1, .reusable = false}, SHIFT(447), + [2131] = {.count = 1, .reusable = true}, SHIFT(447), + [2133] = {.count = 1, .reusable = false}, SHIFT(454), + [2135] = {.count = 1, .reusable = true}, SHIFT(454), + [2137] = {.count = 1, .reusable = true}, SHIFT(747), + [2139] = {.count = 1, .reusable = false}, SHIFT(747), + [2141] = {.count = 1, .reusable = true}, SHIFT(649), + [2143] = {.count = 1, .reusable = false}, SHIFT(649), + [2145] = {.count = 1, .reusable = true}, SHIFT(654), + [2147] = {.count = 1, .reusable = false}, SHIFT(654), + [2149] = {.count = 1, .reusable = true}, SHIFT(22), + [2151] = {.count = 1, .reusable = true}, SHIFT(32), + [2153] = {.count = 1, .reusable = true}, SHIFT(41), + [2155] = {.count = 1, .reusable = true}, SHIFT(40), + [2157] = {.count = 1, .reusable = false}, SHIFT(121), + [2159] = {.count = 1, .reusable = true}, SHIFT(1077), + [2161] = {.count = 1, .reusable = true}, SHIFT(603), + [2163] = {.count = 1, .reusable = false}, SHIFT(586), + [2165] = {.count = 1, .reusable = false}, SHIFT(603), + [2167] = {.count = 1, .reusable = true}, SHIFT(592), + [2169] = {.count = 1, .reusable = false}, SHIFT(599), + [2171] = {.count = 1, .reusable = true}, SHIFT(599), + [2173] = {.count = 1, .reusable = true}, SHIFT(597), + [2175] = {.count = 1, .reusable = false}, SHIFT(610), + [2177] = {.count = 1, .reusable = true}, SHIFT(587), + [2179] = {.count = 1, .reusable = true}, SHIFT(588), + [2181] = {.count = 1, .reusable = false}, SHIFT(590), + [2183] = {.count = 1, .reusable = true}, SHIFT(591), + [2185] = {.count = 1, .reusable = true}, SHIFT(577), + [2187] = {.count = 1, .reusable = false}, SHIFT(838), + [2189] = {.count = 1, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [2191] = {.count = 1, .reusable = true}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [2193] = {.count = 2, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(784), + [2196] = {.count = 2, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1252), + [2199] = {.count = 2, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(783), + [2202] = {.count = 1, .reusable = true}, SHIFT(436), + [2204] = {.count = 1, .reusable = true}, SHIFT(473), + [2206] = {.count = 1, .reusable = true}, SHIFT(598), + [2208] = {.count = 1, .reusable = true}, SHIFT(477), + [2210] = {.count = 1, .reusable = true}, SHIFT(571), + [2212] = {.count = 1, .reusable = true}, REDUCE(sym_comma_expression, 3, .production_id = 24), + [2214] = {.count = 1, .reusable = true}, SHIFT(553), + [2216] = {.count = 1, .reusable = true}, SHIFT(115), + [2218] = {.count = 1, .reusable = true}, SHIFT(207), + [2220] = {.count = 1, .reusable = true}, SHIFT(544), + [2222] = {.count = 1, .reusable = true}, SHIFT(200), + [2224] = {.count = 1, .reusable = true}, SHIFT(217), + [2226] = {.count = 1, .reusable = true}, SHIFT(176), + [2228] = {.count = 1, .reusable = true}, SHIFT(437), + [2230] = {.count = 1, .reusable = true}, SHIFT(167), + [2232] = {.count = 1, .reusable = true}, SHIFT(166), + [2234] = {.count = 1, .reusable = true}, SHIFT(99), + [2236] = {.count = 1, .reusable = true}, SHIFT(163), + [2238] = {.count = 1, .reusable = true}, SHIFT(124), + [2240] = {.count = 1, .reusable = true}, SHIFT(179), + [2242] = {.count = 1, .reusable = true}, SHIFT(155), + [2244] = {.count = 1, .reusable = true}, SHIFT(133), + [2246] = {.count = 1, .reusable = true}, SHIFT(152), + [2248] = {.count = 1, .reusable = true}, SHIFT(170), + [2250] = {.count = 1, .reusable = true}, SHIFT(177), + [2252] = {.count = 1, .reusable = true}, SHIFT(181), + [2254] = {.count = 1, .reusable = true}, SHIFT(184), + [2256] = {.count = 1, .reusable = true}, SHIFT(198), + [2258] = {.count = 1, .reusable = true}, SHIFT(292), + [2260] = {.count = 1, .reusable = true}, SHIFT(199), + [2262] = {.count = 1, .reusable = true}, SHIFT(296), + [2264] = {.count = 1, .reusable = true}, SHIFT(195), + [2266] = {.count = 1, .reusable = true}, SHIFT(301), + [2268] = {.count = 1, .reusable = true}, SHIFT(87), + [2270] = {.count = 1, .reusable = true}, SHIFT(84), + [2272] = {.count = 1, .reusable = true}, SHIFT(82), + [2274] = {.count = 1, .reusable = true}, SHIFT(147), + [2276] = {.count = 1, .reusable = true}, SHIFT(161), + [2278] = {.count = 1, .reusable = true}, SHIFT(287), + [2280] = {.count = 1, .reusable = true}, SHIFT(168), + [2282] = {.count = 1, .reusable = true}, REDUCE(aux_sym_initializer_list_repeat1, 2), + [2284] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_pair, 3, .production_id = 66), + [2286] = {.count = 1, .reusable = true}, SHIFT(157), + [2288] = {.count = 1, .reusable = true}, SHIFT(540), + [2290] = {.count = 1, .reusable = false}, REDUCE(sym_attribute_specifier, 4), + [2292] = {.count = 1, .reusable = true}, REDUCE(sym_attribute_specifier, 4), + [2294] = {.count = 1, .reusable = true}, SHIFT(640), + [2296] = {.count = 1, .reusable = true}, SHIFT(151), + [2298] = {.count = 1, .reusable = true}, SHIFT(282), + [2300] = {.count = 1, .reusable = true}, SHIFT(148), + [2302] = {.count = 1, .reusable = true}, SHIFT(142), + [2304] = {.count = 1, .reusable = true}, SHIFT(95), + [2306] = {.count = 1, .reusable = true}, SHIFT(136), + [2308] = {.count = 1, .reusable = true}, SHIFT(563), + [2310] = {.count = 1, .reusable = true}, SHIFT(621), + [2312] = {.count = 1, .reusable = true}, SHIFT(202), + [2314] = {.count = 1, .reusable = true}, SHIFT(542), + [2316] = {.count = 1, .reusable = true}, REDUCE(aux_sym_argument_list_repeat1, 2), + [2318] = {.count = 1, .reusable = true}, SHIFT(100), + [2320] = {.count = 1, .reusable = true}, SHIFT(106), + [2322] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator, 3, .production_id = 57), + [2324] = {.count = 1, .reusable = true}, SHIFT(620), + [2326] = {.count = 1, .reusable = true}, SHIFT(107), + [2328] = {.count = 1, .reusable = true}, SHIFT(110), + [2330] = {.count = 1, .reusable = true}, SHIFT(551), + [2332] = {.count = 1, .reusable = true}, REDUCE(sym_init_declarator, 3, .production_id = 46), + [2334] = {.count = 1, .reusable = true}, SHIFT(111), + [2336] = {.count = 1, .reusable = true}, SHIFT(117), + [2338] = {.count = 1, .reusable = true}, SHIFT(108), + [2340] = {.count = 1, .reusable = true}, SHIFT(112), + [2342] = {.count = 1, .reusable = true}, SHIFT(275), + [2344] = {.count = 1, .reusable = true}, SHIFT(497), + [2346] = {.count = 1, .reusable = true}, SHIFT(510), + [2348] = {.count = 1, .reusable = true}, SHIFT(537), + [2350] = {.count = 1, .reusable = true}, SHIFT(532), + [2352] = {.count = 1, .reusable = true}, SHIFT(521), + [2354] = {.count = 1, .reusable = true}, SHIFT(522), + [2356] = {.count = 1, .reusable = true}, SHIFT(511), + [2358] = {.count = 1, .reusable = true}, SHIFT(494), + [2360] = {.count = 1, .reusable = true}, SHIFT(575), + [2362] = {.count = 1, .reusable = true}, SHIFT(478), + [2364] = {.count = 1, .reusable = true}, SHIFT(501), + [2366] = {.count = 1, .reusable = true}, SHIFT(1047), + [2368] = {.count = 1, .reusable = true}, SHIFT(527), + [2370] = {.count = 1, .reusable = true}, SHIFT(529), + [2372] = {.count = 1, .reusable = true}, SHIFT(581), + [2374] = {.count = 1, .reusable = true}, SHIFT(530), + [2376] = {.count = 1, .reusable = true}, SHIFT(525), + [2378] = {.count = 1, .reusable = true}, SHIFT(507), + [2380] = {.count = 1, .reusable = true}, SHIFT(505), + [2382] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 4, .production_id = 27), + [2384] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 13), + [2386] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 35), + [2388] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 14), + [2390] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 34), + [2392] = {.count = 1, .reusable = true}, SHIFT(502), + [2394] = {.count = 1, .reusable = true}, SHIFT(47), + [2396] = {.count = 1, .reusable = true}, SHIFT(523), + [2398] = {.count = 1, .reusable = true}, REDUCE(sym_bitfield_clause, 2), + [2400] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 3, .production_id = 37), + [2402] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 2, .production_id = 37), + [2404] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 5, .production_id = 47), + [2406] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 3, .production_id = 27), + [2408] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 52), + [2410] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 13), + [2412] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 51), + [2414] = {.count = 1, .reusable = true}, SHIFT(515), + [2416] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 3, .production_id = 14), + [2418] = {.count = 1, .reusable = false}, REDUCE(sym_type_qualifier, 1), + [2420] = {.count = 1, .reusable = true}, REDUCE(sym_type_qualifier, 1), + [2422] = {.count = 1, .reusable = false}, REDUCE(sym_storage_class_specifier, 1), + [2424] = {.count = 1, .reusable = true}, REDUCE(sym_storage_class_specifier, 1), + [2426] = {.count = 1, .reusable = false}, REDUCE(aux_sym_type_definition_repeat1, 2), + [2428] = {.count = 1, .reusable = true}, REDUCE(aux_sym_type_definition_repeat1, 2), + [2430] = {.count = 2, .reusable = false}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(825), + [2433] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 34), + [2435] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 51), + [2437] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 52), + [2439] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 3, .production_id = 37), + [2441] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 2, .production_id = 37), + [2443] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 5, .production_id = 47), + [2445] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 4, .production_id = 27), + [2447] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 13), + [2449] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 3, .production_id = 27), + [2451] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 14), + [2453] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 35), + [2455] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 13), + [2457] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 3, .production_id = 14), + [2459] = {.count = 1, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [2461] = {.count = 1, .reusable = true}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [2463] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(824), + [2466] = {.count = 2, .reusable = false}, REDUCE(sym_sized_type_specifier, 1), SHIFT(858), + [2469] = {.count = 1, .reusable = true}, REDUCE(sym_sized_type_specifier, 1), + [2471] = {.count = 1, .reusable = false}, REDUCE(sym_sized_type_specifier, 1), + [2473] = {.count = 1, .reusable = false}, SHIFT(824), + [2475] = {.count = 1, .reusable = false}, SHIFT(872), + [2477] = {.count = 1, .reusable = false}, SHIFT(918), + [2479] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1), + [2481] = {.count = 1, .reusable = false}, SHIFT(907), + [2483] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 1, .dynamic_precedence = 1), + [2485] = {.count = 1, .reusable = false}, REDUCE(sym__declaration_specifiers, 3, .production_id = 11), + [2487] = {.count = 1, .reusable = true}, REDUCE(sym__declaration_specifiers, 3, .production_id = 11), + [2489] = {.count = 1, .reusable = false}, SHIFT(919), + [2491] = {.count = 1, .reusable = true}, SHIFT(985), + [2493] = {.count = 1, .reusable = false}, SHIFT(920), + [2495] = {.count = 1, .reusable = false}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), + [2497] = {.count = 1, .reusable = true}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), + [2499] = {.count = 1, .reusable = false}, SHIFT(921), + [2501] = {.count = 1, .reusable = false}, SHIFT(924), + [2503] = {.count = 1, .reusable = false}, REDUCE(sym__declaration_specifiers, 2, .production_id = 11), + [2505] = {.count = 1, .reusable = true}, REDUCE(sym__declaration_specifiers, 2, .production_id = 11), + [2507] = {.count = 1, .reusable = false}, SHIFT(914), + [2509] = {.count = 1, .reusable = false}, SHIFT(923), + [2511] = {.count = 1, .reusable = false}, SHIFT(912), + [2513] = {.count = 1, .reusable = false}, SHIFT(909), + [2515] = {.count = 1, .reusable = false}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), + [2517] = {.count = 1, .reusable = true}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), + [2519] = {.count = 1, .reusable = false}, SHIFT(877), + [2521] = {.count = 2, .reusable = false}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(783), + [2524] = {.count = 1, .reusable = false}, REDUCE(sym_enum_specifier, 2, .production_id = 6), + [2526] = {.count = 1, .reusable = true}, REDUCE(sym_enum_specifier, 2, .production_id = 6), + [2528] = {.count = 1, .reusable = true}, SHIFT(993), + [2530] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 2, .production_id = 6), + [2532] = {.count = 1, .reusable = true}, REDUCE(sym_union_specifier, 2, .production_id = 6), + [2534] = {.count = 1, .reusable = true}, SHIFT(433), + [2536] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 2, .production_id = 6), + [2538] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 2, .production_id = 6), + [2540] = {.count = 1, .reusable = false}, REDUCE(sym_enum_specifier, 3, .production_id = 20), + [2542] = {.count = 1, .reusable = true}, REDUCE(sym_enum_specifier, 3, .production_id = 20), + [2544] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration_list, 3), + [2546] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration_list, 3), + [2548] = {.count = 1, .reusable = true}, SHIFT(360), + [2550] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 5), + [2552] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 5), + [2554] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 3), + [2556] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 3), + [2558] = {.count = 1, .reusable = false}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 12), + [2560] = {.count = 1, .reusable = true}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 12), + [2562] = {.count = 1, .reusable = true}, SHIFT(383), + [2564] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 2, .production_id = 7), + [2566] = {.count = 1, .reusable = true}, REDUCE(sym_union_specifier, 2, .production_id = 7), + [2568] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 2, .production_id = 7), + [2570] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 2, .production_id = 7), + [2572] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 2), + [2574] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 2), + [2576] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 4), + [2578] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 4), + [2580] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration_list, 2), + [2582] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration_list, 2), + [2584] = {.count = 1, .reusable = false}, REDUCE(sym_enum_specifier, 2, .production_id = 7), + [2586] = {.count = 1, .reusable = true}, REDUCE(sym_enum_specifier, 2, .production_id = 7), + [2588] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 3, .production_id = 20), + [2590] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 3, .production_id = 20), + [2592] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 3, .production_id = 20), + [2594] = {.count = 1, .reusable = true}, REDUCE(sym_union_specifier, 3, .production_id = 20), + [2596] = {.count = 1, .reusable = false}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 43), + [2598] = {.count = 1, .reusable = true}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 43), + [2600] = {.count = 2, .reusable = true}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(828), + [2603] = {.count = 1, .reusable = true}, SHIFT(247), + [2605] = {.count = 1, .reusable = true}, SHIFT(399), + [2607] = {.count = 1, .reusable = false}, REDUCE(sym_sized_type_specifier, 2, .production_id = 11), + [2609] = {.count = 1, .reusable = true}, REDUCE(sym_sized_type_specifier, 2, .production_id = 11), + [2611] = {.count = 1, .reusable = true}, SHIFT(964), + [2613] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_declaration, 1, .production_id = 37), + [2615] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 2, .production_id = 2), + [2617] = {.count = 1, .reusable = true}, SHIFT(783), + [2619] = {.count = 2, .reusable = true}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), + [2622] = {.count = 3, .reusable = true}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(828), + [2626] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 2, .production_id = 11), + [2628] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 1, .production_id = 2), + [2630] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 3, .production_id = 11), + [2632] = {.count = 1, .reusable = false}, SHIFT(858), + [2634] = {.count = 1, .reusable = true}, SHIFT(922), + [2636] = {.count = 1, .reusable = true}, SHIFT(882), + [2638] = {.count = 1, .reusable = false}, SHIFT(942), + [2640] = {.count = 1, .reusable = true}, SHIFT(908), + [2642] = {.count = 1, .reusable = true}, SHIFT(886), + [2644] = {.count = 1, .reusable = false}, SHIFT(954), + [2646] = {.count = 1, .reusable = true}, SHIFT(910), + [2648] = {.count = 1, .reusable = true}, SHIFT(884), + [2650] = {.count = 1, .reusable = true}, SHIFT(942), + [2652] = {.count = 1, .reusable = true}, SHIFT(771), + [2654] = {.count = 1, .reusable = true}, SHIFT(589), + [2656] = {.count = 1, .reusable = true}, SHIFT(820), + [2658] = {.count = 1, .reusable = true}, SHIFT(796), + [2660] = {.count = 1, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), + [2662] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(1252), + [2665] = {.count = 1, .reusable = true}, REDUCE(sym_function_declarator, 3, .production_id = 29), + [2667] = {.count = 1, .reusable = true}, SHIFT(1252), + [2669] = {.count = 1, .reusable = true}, REDUCE(sym_function_declarator, 2, .production_id = 29), + [2671] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_list, 3), + [2673] = {.count = 1, .reusable = true}, SHIFT(897), + [2675] = {.count = 1, .reusable = true}, SHIFT(905), + [2677] = {.count = 1, .reusable = true}, SHIFT(377), + [2679] = {.count = 1, .reusable = true}, SHIFT(617), + [2681] = {.count = 1, .reusable = true}, SHIFT(446), + [2683] = {.count = 1, .reusable = true}, SHIFT(499), + [2685] = {.count = 1, .reusable = true}, SHIFT(249), + [2687] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_list, 2), + [2689] = {.count = 1, .reusable = true}, SHIFT(902), + [2691] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_list, 4), + [2693] = {.count = 1, .reusable = true}, SHIFT(931), + [2695] = {.count = 1, .reusable = true}, SHIFT(216), + [2697] = {.count = 1, .reusable = true}, SHIFT(904), + [2699] = {.count = 1, .reusable = true}, SHIFT(362), + [2701] = {.count = 1, .reusable = true}, SHIFT(947), + [2703] = {.count = 1, .reusable = true}, SHIFT(896), + [2705] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 26), + [2707] = {.count = 1, .reusable = true}, SHIFT(954), + [2709] = {.count = 1, .reusable = true}, SHIFT(915), + [2711] = {.count = 1, .reusable = true}, SHIFT(818), + [2713] = {.count = 1, .reusable = true}, SHIFT(465), + [2715] = {.count = 1, .reusable = true}, SHIFT(775), + [2717] = {.count = 1, .reusable = true}, SHIFT(807), + [2719] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 44), + [2721] = {.count = 1, .reusable = true}, SHIFT(1008), + [2723] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_field_declarator, 2, .dynamic_precedence = 1, .production_id = 26), + [2725] = {.count = 1, .reusable = true}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), + [2727] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 4, .production_id = 45), + [2729] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 4, .production_id = 59), + [2731] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 5, .production_id = 65), + [2733] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_field_declarator, 3, .dynamic_precedence = 1, .production_id = 44), + [2735] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 3, .production_id = 45), + [2737] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 5, .production_id = 65), + [2739] = {.count = 1, .reusable = true}, SHIFT(528), + [2741] = {.count = 1, .reusable = true}, SHIFT(1223), + [2743] = {.count = 1, .reusable = true}, SHIFT(911), + [2745] = {.count = 1, .reusable = true}, SHIFT(343), + [2747] = {.count = 1, .reusable = true}, SHIFT(460), + [2749] = {.count = 1, .reusable = true}, SHIFT(329), + [2751] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(576), + [2754] = {.count = 1, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), + [2756] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(1223), + [2759] = {.count = 1, .reusable = true}, SHIFT(369), + [2761] = {.count = 1, .reusable = true}, REDUCE(sym_function_field_declarator, 2, .production_id = 29), + [2763] = {.count = 1, .reusable = true}, SHIFT(234), + [2765] = {.count = 1, .reusable = true}, SHIFT(242), + [2767] = {.count = 1, .reusable = true}, REDUCE(sym__field_declarator, 1, .production_id = 40), + [2769] = {.count = 1, .reusable = true}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), + [2771] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_type_declarator, 3, .dynamic_precedence = 1, .production_id = 44), + [2773] = {.count = 1, .reusable = true}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 26), + [2775] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 4, .production_id = 59), + [2777] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 26), + [2779] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 3, .production_id = 45), + [2781] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 4, .production_id = 45), + [2783] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_type_declarator, 2, .dynamic_precedence = 1, .production_id = 26), + [2785] = {.count = 1, .reusable = true}, SHIFT(354), + [2787] = {.count = 1, .reusable = true}, SHIFT(237), + [2789] = {.count = 1, .reusable = true}, SHIFT(262), + [2791] = {.count = 1, .reusable = true}, REDUCE(sym__type_declarator, 1, .production_id = 1), + [2793] = {.count = 1, .reusable = true}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 26), + [2795] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 3, .production_id = 45), + [2797] = {.count = 1, .reusable = true}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), + [2799] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 44), + [2801] = {.count = 1, .reusable = true}, SHIFT(449), + [2803] = {.count = 1, .reusable = true}, SHIFT(797), + [2805] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_declaration, 2, .production_id = 27), + [2807] = {.count = 1, .reusable = true}, SHIFT(801), + [2809] = {.count = 1, .reusable = true}, REDUCE(sym_function_type_declarator, 2, .production_id = 29), + [2811] = {.count = 1, .reusable = true}, SHIFT(760), + [2813] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 4, .production_id = 59), + [2815] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 4, .production_id = 45), + [2817] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 26), + [2819] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 5, .production_id = 65), + [2821] = {.count = 1, .reusable = false}, SHIFT(396), + [2823] = {.count = 1, .reusable = true}, SHIFT(1034), + [2825] = {.count = 1, .reusable = false}, SHIFT(1241), + [2827] = {.count = 1, .reusable = false}, SHIFT_EXTRA(), + [2829] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 2, .production_id = 17), + [2831] = {.count = 1, .reusable = false}, SHIFT(363), + [2833] = {.count = 1, .reusable = true}, SHIFT(1007), + [2835] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 62), + [2837] = {.count = 1, .reusable = false}, SHIFT(851), + [2839] = {.count = 1, .reusable = false}, SHIFT(257), + [2841] = {.count = 1, .reusable = false}, SHIFT(1297), + [2843] = {.count = 1, .reusable = false}, SHIFT(443), + [2845] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 59), + [2847] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 45), + [2849] = {.count = 1, .reusable = false}, SHIFT(401), + [2851] = {.count = 1, .reusable = true}, SHIFT(982), + [2853] = {.count = 1, .reusable = false}, SHIFT(442), + [2855] = {.count = 1, .reusable = true}, SHIFT(975), + [2857] = {.count = 2, .reusable = true}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 48), SHIFT_REPEAT(915), + [2860] = {.count = 1, .reusable = true}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 48), + [2862] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 5, .production_id = 65), + [2864] = {.count = 1, .reusable = false}, SHIFT(380), + [2866] = {.count = 1, .reusable = true}, SHIFT(991), + [2868] = {.count = 1, .reusable = true}, SHIFT(346), + [2870] = {.count = 1, .reusable = false}, SHIFT(389), + [2872] = {.count = 1, .reusable = false}, SHIFT(1132), + [2874] = {.count = 1, .reusable = false}, SHIFT(850), + [2876] = {.count = 1, .reusable = true}, SHIFT(973), + [2878] = {.count = 1, .reusable = false}, SHIFT(248), + [2880] = {.count = 1, .reusable = true}, SHIFT(990), + [2882] = {.count = 1, .reusable = false}, SHIFT(795), + [2884] = {.count = 1, .reusable = false}, SHIFT(1271), + [2886] = {.count = 1, .reusable = true}, SHIFT(943), + [2888] = {.count = 1, .reusable = false}, SHIFT(387), + [2890] = {.count = 1, .reusable = false}, SHIFT(1129), + [2892] = {.count = 1, .reusable = false}, SHIFT(252), + [2894] = {.count = 1, .reusable = false}, SHIFT(384), + [2896] = {.count = 1, .reusable = true}, SHIFT(971), + [2898] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 29), + [2900] = {.count = 1, .reusable = true}, SHIFT(1030), + [2902] = {.count = 1, .reusable = true}, SHIFT(1143), + [2904] = {.count = 1, .reusable = true}, SHIFT(862), + [2906] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_function_declarator, 1, .production_id = 18), + [2908] = {.count = 1, .reusable = false}, SHIFT(364), + [2910] = {.count = 1, .reusable = true}, SHIFT(1005), + [2912] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 4, .production_id = 56), + [2914] = {.count = 1, .reusable = true}, SHIFT(978), + [2916] = {.count = 1, .reusable = true}, SHIFT(348), + [2918] = {.count = 1, .reusable = true}, SHIFT(995), + [2920] = {.count = 1, .reusable = true}, SHIFT(347), + [2922] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 45), + [2924] = {.count = 1, .reusable = true}, SHIFT(986), + [2926] = {.count = 1, .reusable = true}, SHIFT(254), + [2928] = {.count = 1, .reusable = false}, SHIFT(758), + [2930] = {.count = 1, .reusable = false}, SHIFT(1153), + [2932] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 3), + [2934] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 55), + [2936] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_parenthesized_declarator, 3), + [2938] = {.count = 1, .reusable = false}, SHIFT(351), + [2940] = {.count = 1, .reusable = false}, SHIFT(809), + [2942] = {.count = 1, .reusable = false}, SHIFT(1157), + [2944] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_literal_repeat1, 2), + [2946] = {.count = 2, .reusable = true}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1007), + [2949] = {.count = 1, .reusable = true}, SHIFT(926), + [2951] = {.count = 1, .reusable = true}, SHIFT(957), + [2953] = {.count = 1, .reusable = true}, SHIFT(1004), + [2955] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 2), + [2957] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 3, .production_id = 36), + [2959] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 3, .production_id = 38), + [2961] = {.count = 1, .reusable = true}, SHIFT(1031), + [2963] = {.count = 1, .reusable = true}, SHIFT(863), + [2965] = {.count = 2, .reusable = true}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(648), + [2968] = {.count = 1, .reusable = true}, REDUCE(aux_sym_parameter_list_repeat1, 2), + [2970] = {.count = 1, .reusable = true}, SHIFT(648), + [2972] = {.count = 1, .reusable = true}, SHIFT(894), + [2974] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 48), SHIFT_REPEAT(905), + [2977] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 48), + [2979] = {.count = 1, .reusable = true}, SHIFT(240), + [2981] = {.count = 1, .reusable = true}, SHIFT(215), + [2983] = {.count = 1, .reusable = true}, SHIFT(481), + [2985] = {.count = 1, .reusable = true}, SHIFT(1086), + [2987] = {.count = 1, .reusable = true}, SHIFT(1070), + [2989] = {.count = 2, .reusable = true}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 48), SHIFT_REPEAT(911), + [2992] = {.count = 1, .reusable = true}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 48), + [2994] = {.count = 1, .reusable = true}, SHIFT(222), + [2996] = {.count = 1, .reusable = true}, SHIFT(900), + [2998] = {.count = 1, .reusable = true}, SHIFT(266), + [3000] = {.count = 1, .reusable = true}, SHIFT(1015), + [3002] = {.count = 1, .reusable = true}, SHIFT(857), + [3004] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator, 1, .production_id = 19), + [3006] = {.count = 1, .reusable = true}, SHIFT(580), + [3008] = {.count = 1, .reusable = true}, SHIFT(856), + [3010] = {.count = 1, .reusable = true}, SHIFT(352), + [3012] = {.count = 2, .reusable = true}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(1060), + [3015] = {.count = 1, .reusable = true}, REDUCE(aux_sym_enumerator_list_repeat1, 2), + [3017] = {.count = 1, .reusable = true}, SHIFT(1037), + [3019] = {.count = 1, .reusable = true}, SHIFT(1098), + [3021] = {.count = 1, .reusable = true}, SHIFT(849), + [3023] = {.count = 1, .reusable = true}, SHIFT(263), + [3025] = {.count = 1, .reusable = true}, SHIFT(1085), + [3027] = {.count = 1, .reusable = true}, SHIFT(355), + [3029] = {.count = 1, .reusable = true}, SHIFT(852), + [3031] = {.count = 1, .reusable = true}, SHIFT(848), + [3033] = {.count = 1, .reusable = true}, SHIFT(245), + [3035] = {.count = 2, .reusable = true}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(598), + [3038] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(1086), + [3041] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_params_repeat1, 2), + [3043] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(444), + [3046] = {.count = 1, .reusable = true}, SHIFT(339), + [3048] = {.count = 1, .reusable = true}, REDUCE(sym_subscript_designator, 3), + [3050] = {.count = 1, .reusable = true}, SHIFT(349), + [3052] = {.count = 1, .reusable = true}, SHIFT(359), + [3054] = {.count = 1, .reusable = true}, SHIFT(439), + [3056] = {.count = 1, .reusable = true}, REDUCE(sym_field_designator, 2, .production_id = 63), + [3058] = {.count = 1, .reusable = true}, SHIFT(342), + [3060] = {.count = 1, .reusable = true}, SHIFT(547), + [3062] = {.count = 1, .reusable = false}, SHIFT(821), + [3064] = {.count = 1, .reusable = false}, SHIFT(1178), + [3066] = {.count = 1, .reusable = false}, SHIFT(267), + [3068] = {.count = 1, .reusable = false}, SHIFT(1253), + [3070] = {.count = 1, .reusable = true}, SHIFT(58), + [3072] = {.count = 1, .reusable = true}, SHIFT(61), + [3074] = {.count = 1, .reusable = true}, SHIFT(62), + [3076] = {.count = 1, .reusable = true}, SHIFT(73), + [3078] = {.count = 1, .reusable = false}, SHIFT(812), + [3080] = {.count = 1, .reusable = false}, SHIFT(1256), + [3082] = {.count = 1, .reusable = true}, SHIFT(541), + [3084] = {.count = 1, .reusable = false}, SHIFT(350), + [3086] = {.count = 1, .reusable = false}, SHIFT(1257), + [3088] = {.count = 1, .reusable = true}, SHIFT(561), + [3090] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 4), + [3092] = {.count = 1, .reusable = true}, SHIFT(558), + [3094] = {.count = 1, .reusable = false}, SHIFT(374), + [3096] = {.count = 1, .reusable = false}, SHIFT(1181), + [3098] = {.count = 1, .reusable = true}, SHIFT(67), + [3100] = {.count = 1, .reusable = false}, SHIFT(1267), + [3102] = {.count = 1, .reusable = true}, SHIFT(1267), + [3104] = {.count = 1, .reusable = false}, SHIFT(243), + [3106] = {.count = 1, .reusable = false}, SHIFT(1282), + [3108] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 3), + [3110] = {.count = 1, .reusable = true}, SHIFT(1072), + [3112] = {.count = 1, .reusable = false}, SHIFT(810), + [3114] = {.count = 1, .reusable = false}, SHIFT(1156), + [3116] = {.count = 1, .reusable = false}, SHIFT(330), + [3118] = {.count = 1, .reusable = false}, SHIFT(1131), + [3120] = {.count = 1, .reusable = false}, SHIFT(405), + [3122] = {.count = 1, .reusable = false}, SHIFT(1121), + [3124] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 2), + [3126] = {.count = 1, .reusable = true}, SHIFT(565), + [3128] = {.count = 1, .reusable = false}, SHIFT(391), + [3130] = {.count = 1, .reusable = false}, SHIFT(1174), + [3132] = {.count = 1, .reusable = false}, SHIFT(390), + [3134] = {.count = 1, .reusable = false}, SHIFT(1214), + [3136] = {.count = 1, .reusable = false}, SHIFT(806), + [3138] = {.count = 1, .reusable = false}, SHIFT(1158), + [3140] = {.count = 1, .reusable = true}, SHIFT(57), + [3142] = {.count = 1, .reusable = false}, SHIFT(754), + [3144] = {.count = 1, .reusable = false}, SHIFT(1154), + [3146] = {.count = 1, .reusable = false}, SHIFT(759), + [3148] = {.count = 1, .reusable = false}, SHIFT(1149), + [3150] = {.count = 1, .reusable = true}, SHIFT(564), + [3152] = {.count = 1, .reusable = false}, SHIFT(12), + [3154] = {.count = 1, .reusable = true}, SHIFT(645), + [3156] = {.count = 1, .reusable = true}, SHIFT(647), + [3158] = {.count = 1, .reusable = true}, SHIFT(356), + [3160] = {.count = 1, .reusable = true}, SHIFT(386), + [3162] = {.count = 1, .reusable = true}, SHIFT(483), + [3164] = {.count = 1, .reusable = true}, SHIFT(619), + [3166] = {.count = 1, .reusable = true}, SHIFT(770), + [3168] = {.count = 1, .reusable = true}, SHIFT(385), + [3170] = {.count = 1, .reusable = true}, SHIFT(366), + [3172] = {.count = 1, .reusable = true}, SHIFT(361), + [3174] = {.count = 1, .reusable = true}, SHIFT(182), + [3176] = {.count = 1, .reusable = true}, SHIFT(404), + [3178] = {.count = 1, .reusable = true}, SHIFT(402), + [3180] = {.count = 1, .reusable = false}, SHIFT(4), + [3182] = {.count = 1, .reusable = true}, SHIFT(704), + [3184] = {.count = 1, .reusable = true}, SHIFT(312), + [3186] = {.count = 1, .reusable = true}, SHIFT(271), + [3188] = {.count = 1, .reusable = false}, SHIFT(421), + [3190] = {.count = 1, .reusable = true}, SHIFT(765), + [3192] = {.count = 1, .reusable = true}, SHIFT(774), + [3194] = {.count = 1, .reusable = true}, SHIFT(420), + [3196] = {.count = 1, .reusable = true}, SHIFT(755), + [3198] = {.count = 1, .reusable = true}, SHIFT(753), + [3200] = {.count = 1, .reusable = true}, SHIFT(762), + [3202] = {.count = 1, .reusable = true}, SHIFT(808), + [3204] = {.count = 1, .reusable = true}, SHIFT(787), + [3206] = {.count = 1, .reusable = true}, SHIFT(805), + [3208] = {.count = 1, .reusable = true}, SHIFT(969), + [3210] = {.count = 1, .reusable = false}, SHIFT(13), + [3212] = {.count = 1, .reusable = true}, SHIFT(16), + [3214] = {.count = 1, .reusable = true}, SHIFT(1239), + [3216] = {.count = 1, .reusable = true}, SHIFT(68), + [3218] = {.count = 1, .reusable = true}, SHIFT(1112), + [3220] = {.count = 1, .reusable = true}, SHIFT(868), + [3222] = {.count = 1, .reusable = true}, SHIFT(1055), + [3224] = {.count = 1, .reusable = true}, ACCEPT_INPUT(), + [3226] = {.count = 1, .reusable = false}, SHIFT(422), + [3228] = {.count = 1, .reusable = true}, SHIFT(423), + [3230] = {.count = 1, .reusable = true}, SHIFT(335), + [3232] = {.count = 1, .reusable = true}, SHIFT(337), + [3234] = {.count = 1, .reusable = true}, SHIFT(338), + [3236] = {.count = 1, .reusable = true}, SHIFT(974), + [3238] = {.count = 1, .reusable = true}, SHIFT(814), + [3240] = {.count = 1, .reusable = true}, SHIFT(11), + [3242] = {.count = 1, .reusable = true}, SHIFT(358), + [3244] = {.count = 1, .reusable = true}, SHIFT(1299), + [3246] = {.count = 1, .reusable = true}, SHIFT(788), + [3248] = {.count = 1, .reusable = true}, SHIFT(1069), + [3250] = {.count = 1, .reusable = true}, SHIFT(815), + [3252] = {.count = 1, .reusable = false}, SHIFT(424), + [3254] = {.count = 1, .reusable = true}, SHIFT(419), + [3256] = {.count = 1, .reusable = true}, SHIFT(791), + [3258] = {.count = 1, .reusable = true}, SHIFT(792), + [3260] = {.count = 1, .reusable = true}, SHIFT(778), + [3262] = {.count = 1, .reusable = true}, SHIFT(776), + [3264] = {.count = 1, .reusable = true}, SHIFT(793), + [3266] = {.count = 1, .reusable = true}, SHIFT(987), + [3268] = {.count = 1, .reusable = false}, SHIFT(10), + [3270] = {.count = 1, .reusable = true}, SHIFT(2), + [3272] = {.count = 1, .reusable = true}, SHIFT(46), + [3274] = {.count = 1, .reusable = true}, SHIFT(280), + [3276] = {.count = 1, .reusable = true}, SHIFT(1273), + [3278] = {.count = 1, .reusable = true}, SHIFT(772), + [3280] = {.count = 1, .reusable = true}, SHIFT(1071), + [3282] = {.count = 1, .reusable = true}, SHIFT(279), + [3284] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif, 3, .production_id = 34), + [3286] = {.count = 1, .reusable = true}, SHIFT(989), + [3288] = {.count = 1, .reusable = true}, SHIFT(393), + [3290] = {.count = 1, .reusable = true}, SHIFT(1127), + [3292] = {.count = 1, .reusable = true}, SHIFT(1099), + [3294] = {.count = 1, .reusable = true}, SHIFT(799), + [3296] = {.count = 1, .reusable = true}, SHIFT(802), + [3298] = {.count = 1, .reusable = true}, SHIFT(1051), + [3300] = {.count = 1, .reusable = true}, SHIFT(1001), + [3302] = {.count = 1, .reusable = true}, SHIFT(1110), + [3304] = {.count = 1, .reusable = true}, SHIFT(1006), + [3306] = {.count = 1, .reusable = true}, SHIFT(503), + [3308] = {.count = 1, .reusable = true}, SHIFT(813), + [3310] = {.count = 1, .reusable = true}, SHIFT(535), + [3312] = {.count = 1, .reusable = false}, SHIFT(412), + [3314] = {.count = 1, .reusable = true}, SHIFT(1133), + [3316] = {.count = 1, .reusable = true}, SHIFT(97), + [3318] = {.count = 1, .reusable = true}, SHIFT(96), + [3320] = {.count = 1, .reusable = true}, SHIFT(288), + [3322] = {.count = 1, .reusable = true}, SHIFT(53), + [3324] = {.count = 1, .reusable = true}, SHIFT(375), + [3326] = {.count = 1, .reusable = true}, SHIFT(373), + [3328] = {.count = 1, .reusable = true}, SHIFT(341), + [3330] = {.count = 1, .reusable = true}, SHIFT(226), + [3332] = {.count = 1, .reusable = true}, SHIFT(225), + [3334] = {.count = 1, .reusable = true}, SHIFT(264), + [3336] = {.count = 1, .reusable = true}, SHIFT(816), + [3338] = {.count = 1, .reusable = true}, SHIFT(265), + [3340] = {.count = 1, .reusable = true}, SHIFT(1103), + [3342] = {.count = 1, .reusable = true}, SHIFT(253), + [3344] = {.count = 1, .reusable = true}, SHIFT(340), + [3346] = {.count = 1, .reusable = true}, SHIFT(794), + [3348] = {.count = 1, .reusable = true}, SHIFT(388), + [3350] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif, 4, .production_id = 51), + [3352] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 51), + [3354] = {.count = 1, .reusable = true}, SHIFT(371), + [3356] = {.count = 1, .reusable = true}, SHIFT(18), + [3358] = {.count = 1, .reusable = false}, SHIFT(17), + [3360] = {.count = 1, .reusable = true}, SHIFT(333), + [3362] = {.count = 1, .reusable = true}, SHIFT(485), + [3364] = {.count = 1, .reusable = true}, SHIFT(54), + [3366] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .production_id = 34), + [3368] = {.count = 1, .reusable = true}, SHIFT(331), + [3370] = {.count = 1, .reusable = true}, SHIFT(804), + [3372] = {.count = 1, .reusable = true}, SHIFT(303), + [3374] = {.count = 1, .reusable = true}, SHIFT(357), + [3376] = {.count = 1, .reusable = true}, SHIFT(255), + [3378] = {.count = 1, .reusable = true}, SHIFT(800), + [3380] = {.count = 1, .reusable = true}, SHIFT(790), + [3382] = {.count = 1, .reusable = true}, SHIFT(789), + [3384] = {.count = 1, .reusable = true}, SHIFT(55), + [3386] = {.count = 1, .reusable = true}, SHIFT(51), + [3388] = {.count = 1, .reusable = true}, SHIFT(56), + [3390] = {.count = 1, .reusable = true}, SHIFT(246), + [3392] = {.count = 1, .reusable = true}, SHIFT(50), + [3394] = {.count = 1, .reusable = true}, SHIFT(258), + [3396] = {.count = 1, .reusable = true}, SHIFT(268), + [3398] = {.count = 1, .reusable = true}, SHIFT(984), + [3400] = {.count = 1, .reusable = true}, SHIFT(209), + [3402] = {.count = 1, .reusable = true}, SHIFT(52), }; #ifdef _WIN32 diff --git a/src/tree_sitter/parser.h b/src/tree_sitter/parser.h index a8ee20b..ab7d6e3 100644 --- a/src/tree_sitter/parser.h +++ b/src/tree_sitter/parser.h @@ -45,7 +45,8 @@ struct TSLexer { void (*advance)(TSLexer *, bool); void (*mark_end)(TSLexer *); uint32_t (*get_column)(TSLexer *); - bool (*is_at_included_range_start)(TSLexer *); + bool (*is_at_included_range_start)(const TSLexer *); + bool (*eof)(const TSLexer *); }; typedef enum { @@ -123,6 +124,7 @@ struct TSLanguage { #define START_LEXER() \ bool result = false; \ bool skip = false; \ + bool eof = false; \ int32_t lookahead; \ goto start; \ next_state: \